/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.team-block {
  margin-bottom: clamp(30px, 22.3529411765px + 0.0196078431 * 100vw, 60px);
}
.team-block .teams-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 4.9019607843px + 0.0130718954 * 100vw, 30px);
}
.team-block .teams-wrapper .team {
  width: calc(25% - 22.5px);
}
@media (max-width: 1440px) {
  .team-block .teams-wrapper .team {
    width: calc(25% - 18px);
  }
}
@media (max-width: 1024px) {
  .team-block .teams-wrapper .team {
    width: calc(25% - 14px);
  }
}
@media (max-width: 992px) {
  .team-block .teams-wrapper .team {
    width: calc(33.33% - 12px);
  }
}
@media (max-width: 768px) {
  .team-block .teams-wrapper .team {
    width: calc(50% - 8px);
  }
}
@media (max-width: 512px) {
  .team-block .teams-wrapper .team {
    width: 100%;
  }
}
.team-block .teams-wrapper .image {
  height: clamp(260px, 247.2549019608px + 0.0326797386 * 100vw, 310px);
  margin-bottom: clamp(15px, 12.4509803922px + 0.0065359477 * 100vw, 25px);
}
@media (max-width: 992px) {
  .team-block .teams-wrapper .image {
    height: clamp(290px, 274.7058823529px + 0.0392156863 * 100vw, 350px);
  }
}
@media (max-width: 512px) {
  .team-block .teams-wrapper .image {
    height: 290px;
  }
}
.team-block .teams-wrapper .image picture {
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.team-block .teams-wrapper .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.team-block .teams-wrapper .name {
  font-size: clamp(16px, 14.9803921569px + 0.0026143791 * 100vw, 20px);
  font-weight: 700;
  margin-bottom: clamp(5px, 3.7254901961px + 0.0032679739 * 100vw, 10px);
}
.team-block .teams-wrapper .position {
  margin-bottom: clamp(10px, 7.4509803922px + 0.0065359477 * 100vw, 20px);
  display: block;
}
.team-block .teams-wrapper .link {
  display: flex;
  color: var(--161616);
  gap: clamp(5px, 3.7254901961px + 0.0032679739 * 100vw, 10px);
  align-items: center;
}
.team-block .teams-wrapper .link svg {
  width: clamp(20px, 18.4705882353px + 0.0039215686 * 100vw, 26px);
  min-width: clamp(20px, 18.4705882353px + 0.0039215686 * 100vw, 26px);
  height: auto;
}
.team-block .teams-wrapper .link:hover {
  color: var(--338-af-4);
}
.team-block .teams-wrapper .link.phone {
  margin-bottom: clamp(5px, 3.7254901961px + 0.0032679739 * 100vw, 10px);
}
