#gd_expert_form {
	display:flex;
	justify-content: center;
	align-items: center;
}
/* ---------- TEAM MEMBER CONTENT ---------- */
.team-member-content {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: bottom -30px right -45px;
  background-size: auto 100%;
  border: 1px solid #ececec;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  line-height: normal;
  min-height: 260px;
  position: relative;
}

@media (max-width: 480px) {
  .team-member-content {
    width: 100%;
    margin: 0 auto;
  }
}

.team-member-content .job-title {
  color: #757575;
  font-size: 13px;
  margin-bottom: 13px;
  display: block;
}

.team-member-content .name {
  color: #001f3f;
  font-size: 16px;
  margin-bottom: 13px;
  display: block;
  font-weight: 500;
}

.team-member-content .location {
  color: #4c4c4c;
  font-size: 13px;
  display: block;
}

.team-member-content .contact-wrapper {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .team-member-content .contact-wrapper {
    padding: 10px;
  }
}

.team-member-content .contact-wrapper ul li {
  font-size: 13px;
  margin-bottom: 5px;
}

.team-member-content .contact-wrapper ul li:last-child {
  margin-bottom: 0;
}

.team-member-content .contact-wrapper ul li a {
  color: #757575;
  text-decoration: none;
  height: 13px;
  overflow: hidden;
  display: block;
  line-height: 13px;
  word-break: break-all;
  text-overflow: ellipsis;
}

.team-member-content .contact-wrapper ul li a:hover {
  color: #001f3f;
}

.team-member-content .contact-wrapper ul li a .fa {
  color: #8B4513;
  margin-right: 5px;
}

/* ---------- TEAM MEMBERS SLIDER ---------- */
#team-members-slider {
  margin: 0 -50px;
}

@media (max-width: 1024px) {
  #team-members-slider {
    margin: 0 -15px;
  }
}

@media (max-width: 480px) {
  #team-members-slider {
    margin: 0;
  }
}

#team-members-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 28px;
  color: #001f3f;
  z-index: 10;
}

#team-members-slider .slick-arrow.slick-prev {
  left: 0;
}

@media (max-width: 1024px) {
  #team-members-slider .slick-arrow.slick-prev {
    left: -15px;
  }
}

#team-members-slider .slick-arrow.slick-next {
  right: 0;
}

@media (max-width: 1024px) {
  #team-members-slider .slick-arrow.slick-next {
    right: -15px;
  }
}

#team-members-slider .slick-track {
  min-width: 100%;
}

#team-members-slider .item {
  margin: 0 50px;
}

@media (max-width: 1024px) {
  #team-members-slider .item {
    margin: 0 15px;
  }
}

@media (max-width: 480px) {
  #team-members-slider .item {
    margin: 0;
  }
}

/* ---------- TEAM MEMBERS GRID ---------- */
#team-members-grid::after {
  content: "";
  display: table;
  clear: both;
}

#team-members-grid {
  padding: 40px;
}

#team-members-grid ul {
	margin: inherit;
}
#team-members-grid ul li a {
	font-size: 13px;
}

/* user-requested breakpoint */
@media (max-width: 767px) {
  #team-members-grid {
    background-color: #fff;
  }
}

/* retained smaller breakpoints too */
@media (max-width: 360px) {
  #team-members-grid {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  #team-members-grid {
    background-color: #fff;
  }
}

#team-members-grid .item {
  width: 25%;
  float: left;
  padding: 12px;
}

@media (max-width: 1024px) {
  #team-members-grid .item {
    width: 33.3%;
  }
}

@media (max-width: 768px) {
  #team-members-grid .item {
    width: 50%;
  }
}

@media (max-width: 600px) {
  #team-members-grid .item {
    width: 50%;
  }
  #team-members-grid .item:nth-child(2n+1) {
    clear: both;
  }
}

@media (max-width: 360px) {
  #team-members-grid .item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #team-members-grid .item .team-member-content {
    background-position: top -10px left -10px;
    background-size: 100px auto;
    padding: 0 20px 20px 100px;
    height: auto;
    box-shadow: none;
    border: 0 none;
    min-height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  #team-members-grid .item .team-member-content .job-title {
    margin-bottom: 5px;
    font-style: italic;
  }

  #team-members-grid .item .team-member-content .name {
    margin-bottom: 5px;
  }

  #team-members-grid .item .team-member-content .location {
    margin-bottom: 10px;
  }

  #team-members-grid .item .team-member-content .contact-wrapper {
    position: inherit;
    left: auto;
    bottom: auto;
    padding: 0;
    box-shadow: none;
    width: 100%;
  }
}

/* Static version inside grid */
#team-members-grid .item.static .body-wrapper {
  height: 260px;
  position: relative;
}

@media (max-width: 480px) {
  #team-members-grid .item.static .body-wrapper {
    height: auto;
    padding: 20px 20px;
  }
}

#team-members-grid .item.static .body-wrapper .body {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

@media (max-width: 480px) {
  #team-members-grid .item.static .body-wrapper .body {
    position: relative;
    bottom: auto;
    left: auto;
  }
  #team-members-grid .item.static .body-wrapper .body::after {
    content: "";
    display: table;
    clear: both;
  }
  #team-members-grid .item.static .body-wrapper .body img {
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    width: 60px;
  }
  #team-members-grid .item.static .body-wrapper .body .text {
    font-size: 16px;
    line-height: normal;
    float: right;
    padding: 0;
    width: calc(100% - 80px);
  }
}

#team-members-grid .item.static .body-wrapper .body .text {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 20px;
  padding-top: 20px;
}

/* ---------- TEAM SEARCH ---------- */
#team-search::after,
#team-search form::after {
  content: "";
  display: table;
  clear: both;
}

#team-search {
  border-bottom: 1px solid #ececec;
  padding: 25px 0;
}
#team-search a.btn, input[type="submit"] {
    display: inline-block;
    padding: 8px 36px;
    color: #051e44;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    -webkit-transition: all .3s 
ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s 
ease-in-out;
    background: #997005;
    -webkit-border-radius: 80px;
    border-radius: 80px;
    background-clip: padding-box;
    
    cursor: pointer;
	
	line-height: 1.1;
    overflow: hidden;
}
#team-search a.btn:hover, input[type="submit"]:hover {
    background: #001433;
	color: #fff;
}

#team-search .item {
  float: left;
  width: 16.6%;
}

@media (max-width: 768px) {
  #team-search .item {
    width: 20%;
  }
  
  #gd_expert_form {
	  flex-direction: column;
  }
}

@media (max-width: 480px) {
  #team-search .item {
    width: 47.5%;
    margin-bottom: 10px;
  }
}

#team-search .item.form-title {
  font-size: 24px;
  color: #001f3f;
  font-weight: 700;
}

@media (max-width: 768px) {
  #team-search .item.form-title {
    width: 100%;
    margin-bottom: 20px;
    float: none;
  }
}

@media (max-width: 480px) {
  #team-search .item.form-title {
    width: 100%;
    margin-bottom: 20px;
    float: none;
  }
}

@media (max-width: 480px) {
  #team-search .item.item-submit {
    width: 100%;
    float: none;
  }

  #team-search .item.item-even {
    float: right;
  }
}

#team-search .item select,
#team-search .item input[type="search"] {
  width: 90%;
  height: 40px;
  border: 1px solid #001f3f;
  font-weight: 500;
  color: #001f3f;
  font-size: 16px;
  padding: 0 10px;
  outline: none;
}

@media (max-width: 480px) {
  #team-search .item select,
  #team-search .item input[type="search"] {
    width: 100%;
  }
}

#team-search .item input[type="submit"] {
  border: none;
  height: 40px;
  width: 100%;
  text-transform: uppercase;
}

#team-search .reset {
  text-transform: uppercase;
  color: #333;
  opacity: 0.7;
  display: block;
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}

#team-search .reset:hover {
  opacity: 1;
}
@media (max-width: 767px) {
    #team-members-grid .item.static .body-wrapper {
        height: auto;
        padding: 20px 20px;
    }
	    #team-members-grid .item.static .body-wrapper .body .text {
        font-size: 16px;
        line-height: normal;
        float: right;
        padding: 0;
        width: calc(100% - 80px);
    }
#team-members-grid .item.static .body-wrapper .body::before, #team-members-grid .item.static .body-wrapper .body::after {
        content: ' ';
        display: table;
    }
}
@media (max-width: 479px) {
    #team-members-grid .item {
        width: 100%;
    }
	.team-member-content .contact-wrapper ul li {
		padding-left: inherit;
	}
	#team-members-grid {
        padding: 20px 0;
    }
}