.sd-block-team {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 30px;
  justify-content: right;
}
.sd-block-team .team-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.sd-block-team .team-message p {
  color: #FFF;
  text-align: center;
}
.sd-block-team .team-message svg {
  width: 25px;
  height: 25px;
  color: #00968f;
}
.sd-block-team .team-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 120px;
  background-color: #FFF;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.sd-block-team .team-card.opened .team-front {
  opacity: 0;
}
.sd-block-team .team-card.opened .team-back {
  opacity: 1;
  z-index: unset;
}
.sd-block-team .team-card.opened .team-back a {
  pointer-events: all;
}
.sd-block-team .team-card .team-back {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  z-index: -100;
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
}
.sd-block-team .team-card .team-back a {
  pointer-events: none;
  display: flex;
  align-items: center;
  flex-direction: row;
  column-gap: 10px;
  width: fit-content;
  color: #00968f;
}
.sd-block-team .team-card .team-back .team-close {
  position: absolute;
  top: 0;
  right: 0;
  height: 13px;
  width: 13px;
  cursor: pointer;
}
.sd-block-team .team-card .team-back .team-close svg {
  width: 13px;
  height: 13px;
  color: #1c1c1c;
  -webkit-transition: color 0.3s ease-out;
  -moz-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.sd-block-team .team-card .team-back .team-close:hover svg {
  color: #00968f;
}
.sd-block-team .team-card .team-front {
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 20px;
  padding: 10px 20px 10px 10px;
}
.sd-block-team .team-card .team-front-left {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 80px;
  height: 80px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #f4f4f4;
  border: 1px solid #dadada;
  overflow: hidden;
}
.sd-block-team .team-card .team-front-left img {
  width: 80px;
  height: 80px;
}
.sd-block-team .team-card .team-front-right {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.sd-block-team .team-card .team-front-right .team-name {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #1c1c1c;
}
.sd-block-team .team-card .team-front-right .team-job {
  font-size: 16px;
  line-height: 21px;
  color: #1c1c1c;
}
.sd-block-team .team-card .team-front-right .team-ask-question {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #00968f;
  cursor: pointer;
}
.sd-block-team .team-card .team-front-right .team-ask-question:after {
  display: block;
  content: "";
  height: 13px;
  width: 13px;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14.6 10.7' width='15px' height='15px' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.1,6.1H0.8C0.5,6.1,0.4,6,0.2,5.9C0.1,5.7,0,5.5,0,5.3s0.1-0.4,0.2-0.5c0.1-0.1,0.3-0.2,0.5-0.2h11.4 L8.8,1.3C8.7,1.1,8.6,1,8.6,0.8c0-0.2,0.1-0.4,0.2-0.5C9,0.1,9.2,0,9.4,0c0.2,0,0.4,0.1,0.5,0.2l4.5,4.5c0.1,0.1,0.2,0.2,0.2,0.3 c0,0.1,0.1,0.2,0.1,0.3c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.2-0.2,0.3l-4.5,4.5c-0.1,0.1-0.3,0.2-0.5,0.2c-0.2,0-0.4-0.1-0.5-0.2 c-0.1-0.2-0.2-0.3-0.2-0.5c0-0.2,0.1-0.4,0.2-0.5L12.1,6.1z' fill='%2300968f' /%3E%3C/svg%3E");
}

@media screen and (max-width: 1600px) {
  .sd-block-team {
    column-gap: 25px;
  }
  .sd-block-team .team-message svg {
    width: 21px;
    height: 21px;
    color: #00968f;
  }
  .sd-block-team .team-card {
    min-height: 100px;
  }
  .sd-block-team .team-card .team-back {
    top: 17px;
    right: 17px;
    bottom: 17px;
    left: 17px;
  }
  .sd-block-team .team-card .team-back .team-close svg {
    width: 11px;
    height: 11px;
  }
  .sd-block-team .team-card .team-front {
    column-gap: 17px;
  }
  .sd-block-team .team-card .team-front-left {
    width: 66px;
    height: 66px;
  }
  .sd-block-team .team-card .team-front-left img {
    width: 62px;
    height: 62px;
  }
  .sd-block-team .team-card .team-front-right .team-name {
    font-size: 16px;
    line-height: 21px;
  }
  .sd-block-team .team-card .team-front-right .team-job {
    font-size: 14px;
    line-height: 19px;
  }
  .sd-block-team .team-card .team-front-right .team-ask-question:after {
    height: 11px;
    width: 11px;
  }
  .sd-block-team .team-card .team-front-right .team-ask-question {
    font-size: 14px;
    line-height: 19px;
  }
}
@media screen and (max-width: 1400px) {
  .sd-block-team {
    column-gap: 22px;
  }
  .sd-block-team .team-message svg {
    width: 20px;
    height: 20px;
  }
  .sd-block-team .team-card .team-back {
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
  }
  .sd-block-team .team-card .team-back .team-close svg {
    width: 10px;
    height: 10px;
  }
  .sd-block-team .team-card .team-front {
    column-gap: 15px;
  }
  .sd-block-team .team-card .team-front-left {
    width: 58px;
    height: 58px;
  }
  .sd-block-team .team-card .team-front-left img {
    width: 55px;
    height: 55px;
  }
  .sd-block-team .team-card .team-front-right .team-ask-question:after {
    height: 10px;
    width: 10px;
  }
}
@media screen and (max-width: 991px) {
  .sd-block-team.mobile_hide-yes {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
