#directory-results {
  display:flex;
  background-color:#f4f4f4;
  flex-wrap:wrap;
}
.employee-card{
  background-color:#FFF;
  padding:10px 10px 30px;
  margin:15px;
  width:380px;
  display:flex;
  flex-direction:column;
  border-left: 4px solid #92a1ae; 
  padding: 15px;
  margin-left: 0 !important;
}
.employee-card h3{
  font-family: Lora, serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #4f4f4f;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 0;
}
.employee-card h6{
  font-family: Roboto, sans-serif;
  text-transform: uppercase; 
  letter-spacing: 2px;
  font-weight: 500;
  color: #081e33;
  font-size: 16px;
  line-height: 30px;
  margin-top: 5px;
  margin-bottom: 0; 
}
.employee-card .contact-icon{
  margin-right: 8px;
}
.employee-card .phone .contact-icon{
  margin-right: 10px;
}
.employee-card a{
  font-size: 16px;
  line-height: 30px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  color: #ec5c32;
  position: relative;
  max-width: fit-content;
}

.employee-card a:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ec5c32;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.employee-card a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.employee-card .arrow-container{
  display: flex;
  justify-content: flex-end;
  transition: 0.3s;
  opacity: 0;
}

.employee-card .arrow-container .card-arrow{
  max-width: 35px; 
}

.employee-card:hover .arrow-container{
  opacity: 1; 
}

.directory-name-filter{
  position: relative;
  top: 0;
  right: 0;
}

.directory-wrapper {
  display:flex;
  align-items: center;
  flex-wrap:wrap;
}
.directory-wrapper .search-title{
  display: none; 
}

.directory-name-filter p{
  font-size: 18px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #92a1ae;
  margin-bottom: 8px;
  margin-left: 25px;
}

.directory-name-filter span{
  font-size: 18px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  line-height: 34px;
  text-transform: uppercase;
  color: #ec5c32;
  margin-right: 20px;
  display: inline-block;
  position: relative;
  cursor:pointer;

}

.directory-name-filter:hover{
  cursor: pointer;
}


.directory-name-filter span:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ec5c32;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.directory-name-filter span:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.directory-name-filter .letter-sort.active:after{
  content: '';
  position: absolute;
  width: 100%;
  /*   transform: scaleX(0); */
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ec5c32;
  transform: scaleX(1);
  transform-origin: bottom left;
}
.directory-container {
  padding:35px;
}
.directory-bottom {
  flex: 1 1 auto;
}
.directory-bottom .hs-search-field--open .hs-search-field__suggestions{
  background: #fff;
  padding: 15px;
  border: 1px solid #c5cdd4;
}

.directory-bottom .hs-search-field__suggestions #results-for{
  font-family: Roboto, sans-serif;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
}
.directory-bottom .hs-search-field__suggestions a{
  font-size: 16px;
  line-height: 30px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  color: #ec5c32;
  letter-spacing: 2px;
}

/* @media (max-width: 1015px){ */
@media (max-width: 1375px){
  .directory-name-filter{
    position: relative;
    margin-top: 30px;
    margin-bottom: 25px;
    top: unset;
    right: unset;
  }
}

@media (min-width: 1376px){
  .directory-results-container {
    padding-top: 0;
  }
}

.leadership-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  text-align:center;
/*   max-width: 1200px; */
  max-width:1600px;
  margin: 0 auto;
  margin-top: 50px;
}

.team-member {
/*   flex-basis:35%; */
  flex: 1 1 350px;
  margin-bottom: 50px;
  margin-right: 10px;
  margin-left: 10px;
}

.team-member .image-wrapper{
  width: 270px;
  height: 270px;
  overflow: hidden;
  border-radius: 50%;
  background: #f4f4f4;
  margin: 0 auto;
  position: relative;
}


.team-member .image-wrapper:hover .image-hover{
  opacity: .3;
  background: #77a8d2;
  z-index: 2; 
}

.team-member .image-wrapper: hover img{
  filter: grayscale(1);
}

.team-member .image-hover{
  width: 270px;
  height: 270px;
  position: absolute;
  transition: 0.3s;
  opacity: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(31,62,71,.4);
  border-radius: 50%;
}
.team-member .image-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leader-name{
  font-size: 24px; 
  line-height: 30px;
  font-family: Lora, serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #4f4f4f;
  margin-bottom: 10px;
  margin-top: 20px;
}
.leader-role{
  font-family: Roboto, sans-serif;
  letter-spacing: 2px; 
  font-weight: 500;
  font-size: 16px;
  color: #081e33;
  text-transform: uppercase;
}

