

/* Start:/local/templates/html/assets/components-template/team/style.css?177712409310627*/
.team-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1299px) {
  .team-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1099px) {
  .team-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .team-list {
    grid-template-columns: 1fr;
  }
}
.team-list .show-all-team {
  display: none;
}
@media (max-width: 767px) {
  .team-list.more-than-max .show-all-team {
    display: flex;
    justify-content: center;
  }
}
.team-list__item {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .team-list:not(.show-all) .team-list__item:nth-child(n+4) {
    display: none;
  }
}

.team-card {
  height: 500px;
  display: block;
  border-radius: 5px;
}
@media (max-width: 1699px) {
  .team-card {
    height: 475px;
  }
}
@media (max-width: 1499px) {
  .team-card {
    height: 450px;
  }
}
@media (max-width: 1099px) {
  .team-card {
    width: 100%;
    max-width: 450px;
    height: auto;
  }
}
.team-card__inner {
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e4e4e4;
  background-color: #fff;
}
.team-card__photo {
  position: relative;
  background: linear-gradient(180deg, rgb(246, 246, 246) 0%, rgb(239, 239, 239) 42.19%, rgb(236, 236, 236) 100%);
}
.team-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 16px 20px;
  text-align: center;
  background-color: #fff;
}
@media (max-width: 1099px) {
  .team-card__content {
    gap: 16px;
  }
}
.team-card__front {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.team-card__back {
  max-height: 0px;
  display: flex;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
@media (max-width: 1099px) {
  .team-card__back {
    max-height: none;
  }
}
.team-card__overflow {
  position: relative;
  z-index: 2;
}
.team-card__social {
  position: absolute;
  z-index: 1;
  bottom: 100%;
  right: 0;
  display: none;
  padding: 7px 15px;
  transform: translateY(100%);
  border-radius: 8px 0px 0px 0px;
  background-color: #fff;
}
@media (max-width: 1099px) {
  .team-card__social {
    transform: none;
  }
}
.team-card__phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.team-card__position {
  color: #969696;
}
.team-card__link {
  display: inline-block;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .team-card:hover .team-card__inner {
    height: auto;
    display: block;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  }
  .team-card:hover .team-card__back {
    max-height: 200px;
  }
  .team-card:hover .team-card__content {
    height: auto;
    gap: 16px;
  }
  .team-card:hover .team-card__social {
    transform: translateY(0%);
  }
}
.team-card .social-list__item {
  max-width: 34px;
  max-height: 34px;
}

.team-row {
  width: 100%;
  padding: 19px 19px 19px 15px;
  transition: all ease 0.3s;
  border: 1px solid #e4e4e4;
  border-left-width: 4px;
  background: #fff;
}
@media (min-width: 1300px) {
  .team-row {
    padding-right: 40px;
  }
  .team-row:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  }
}
@media (min-width: 1100px) {
  .team-row:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 767px) {
  .team-row {
    padding: 17px;
    padding-left: 13px;
  }
}
.team-row__inner {
  display: grid;
  gap: 30px;
  grid-template-columns: 65% auto;
}
@media (max-width: 1499px) {
  .team-row__inner {
    grid-template-columns: 60% auto;
  }
}
@media (max-width: 767px) {
  .team-row__inner {
    gap: 16px;
    grid-template-columns: 1fr;
  }
}
.team-row__left {
  display: flex;
  gap: 28px;
}
@media (max-width: 767px) {
  .team-row__left {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}
.team-row__photo {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.team-row__image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-row__image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: top center;
}
.team-row__title {
  margin-bottom: 14px;
  font-weight: 600;
}
.team-row__position {
  color: #F6F6F6;
}
.team-row__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1299px) {
  .team-row__right {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .team-row__right {
    align-items: flex-start;
  }
}
.team-row__social {
  flex-shrink: 0;
}
.team-row__phones {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.team-head {
  padding-top: 94px;
  padding-bottom: 150px;
}
@media (max-width: 1299px) {
  .team-head {
    padding: 60px 0 100px;
  }
}
@media (max-width: 767px) {
  .team-head {
    padding: 0 0 54px;
  }
}
.team-head__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1299px) {
  .team-head__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1099px) {
  .team-head__inner {
    grid-template-columns: 220px auto;
  }
}
@media (max-width: 767px) {
  .team-head__inner {
    max-width: 450px;
    margin: 0 auto;
    gap: 24px;
    grid-template-columns: 1fr;
  }
}
.team-head__img {
  z-index: 1;
  align-self: center;
}
@media (max-width: 1099px) {
  .team-head__img {
    align-self: start;
  }
}
.team-head__img .team-card__social {
  top: auto;
  bottom: 0;
  display: none;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .team-head__img .team-card__social {
    display: flex;
  }
}
.team-head__descr {
  display: flex;
  flex-direction: column;
  padding-left: 70px;
  grid-column: span 3;
}
@media (max-width: 1299px) {
  .team-head__descr {
    padding-left: 50px;
    grid-column: span 2;
  }
}
@media (max-width: 1099px) {
  .team-head__descr {
    padding-left: 30px;
    grid-column: span 1;
  }
}
@media (max-width: 767px) {
  .team-head__descr {
    padding: 0;
  }
}
.team-head__descr-bottom {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
@media (max-width: 1099px) {
  .team-head__descr-bottom {
    margin-left: calc(-1 * 220px);
  }
}
@media (max-width: 767px) {
  .team-head__descr-bottom {
    margin-left: 0;
  }
}
.team-head__descr .social-list__list {
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .team-head__descr .social-list__list {
    display: none;
  }
}
.team-head__text {
  position: relative;
  padding: 54px 70px 54px 0;
  border-right: 6px solid #e4e4e4;
  background: #fafafb;
}
@media (max-width: 767px) {
  .team-head__text {
    padding: 18px 20px 24px;
    border-top: 6px solid #e4e4e4;
    border-right: none;
  }
}
.team-head__text:before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 100vw;
  content: "";
  background: #fafafb;
}
@media (max-width: 767px) {
  .team-head__text:before {
    content: none;
  }
}
.team-head__title {
  margin-bottom: 21px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .team-head__title {
    margin-bottom: 12px;
  }
}
.team-head__subtitle {
  margin-bottom: 36px;
  color: #F6F6F6;
  font-weight: 600;
}
@media (max-width: 1099px) {
  .team-head__subtitle {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .team-head__subtitle {
    margin-bottom: 16px;
  }
}
.team-head__social {
  display: flex;
  margin-bottom: 21px;
}
@media (max-width: 1099px) {
  .team-head__social {
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .team-head__social {
    flex-direction: column;
  }
  .team-head__social span {
    display: none;
  }
}
.team-head__social-item {
  margin-right: 2.5vw;
}

.team-head--row {
  overflow: hidden;
  padding: 30px 0 80px;
}
@media (max-width: 767px) {
  .team-head--row {
    position: relative;
    padding: 19px 0 54px;
  }
  .team-head--row:before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    height: 75%;
    content: "";
    background: #f6f6f6;
  }
}
.team-head--row .team-row {
  position: relative;
  border-left-color: #CB460E;
}
.team-head--row .team-row:before, .team-head--row .team-row:after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 50%;
  content: "";
  transform: translateY(50%);
  background: #f6f6f6;
}
@media (max-width: 767px) {
  .team-head--row .team-row:before, .team-head--row .team-row:after {
    content: none;
  }
}
.team-head--row .team-row:after {
  right: 0;
  left: auto;
}

.team-col .team-row:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .team-col .team-row:not(:last-child) {
    margin-bottom: 20px;
  }
}

.team-section {
  position: relative;
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .team-section {
    padding: 19px 0 54px;
  }
}
.team-section:before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 360px;
  content: "";
  background: #f6f6f6;
}
.team-section--gradient:before {
  bottom: 0;
  height: auto;
  background: linear-gradient(180deg, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
}
@media (max-width: 767px) {
  .team-section--gradient:before {
    bottom: auto;
    height: 60vw;
    background: #f6f6f6;
  }
}
.team-section__title {
  margin-bottom: 40px;
  font-weight: 600;
}

.join-team {
  max-width: calc(50% - 12px);
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  padding: 30px 56px;
  gap: 15px;
  border: 1px solid #e4e4e4;
  border-radius: 2px;
  background: #fafafb;
}
@media (max-width: 1299px) {
  .join-team {
    max-width: calc(66.66% - 12px);
  }
}
.join-team--full {
  max-width: 100%;
}

.team-sections__links {
  display: flex;
  gap: 12px;
  overflow: auto;
  margin-right: -10px;
}
.team-sections__links .team-section__title {
  background-color: #F6F6F6;
  color: #2B2B2B;
  flex: 0 0 auto;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 22px;
  font-weight: 400;
}
.team-sections__links .team-section__title:last-child {
  margin-right: 10px;
}
@media (min-width: 1300px) {
  .team-sections__links .team-section__title:hover {
    color: #CB460E;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 1px #CB460E inset;
  }
}
@media (max-width: 1299px) {
  .team-sections__links .team-section__title {
    font-size: 18px;
  }
}
@media (max-width: 1099px) {
  .team-sections__links .team-section__title {
    font-size: 16px;
  }
}
/* End */
/* /local/templates/html/assets/components-template/team/style.css?177712409310627 */
