.our-team {
  padding: clamp(0px, 40px - (40) * (100vw - 375px) / 1065, 40px) 0 80px;
}

.our-team__head {
  margin-bottom: 32px;
}

.our-team__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(40px, 12 * (100vw - 375px) / 1065 + 40px, 52px);
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--dark-text);
}

.our-team__founders {
  display: grid;
  gap: 24px;
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  .our-team__founders {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.our-team-founder {
  border-radius: 24px;
  background: #f6f6f6;
  padding: clamp(16px, 16 * (100vw - 375px) / 1065 + 16px, 32px);
}

.our-team-founder__grid {
  display: grid;
  gap: clamp(16px, 8 * (100vw - 375px) / 1065 + 16px, 24px);
}
@media (min-width: 568px) {
  .our-team-founder__grid {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.our-team-founder__media {
  border-radius: 16px;
  overflow: hidden;
  height: clamp(212px, 167 * (100vw - 375px) / 1065 + 212px, 379px);
}
@media (min-width: 568px) {
  .our-team-founder__media {
    height: 379px;
  }
}

.our-team-founder__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  border-radius: 16px;
}
@media (min-width: 568px) {
  .our-team-founder__img {
    -o-object-position: center;
    object-position: center;
  }
}

.our-team-founder__content {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.our-team-founder__name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.our-team-founder__role {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: var(--secondary-dark);
  margin-bottom: 20px;
}

.our-team-founder__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.our-team-founder__socials {
  display: flex;
  gap: 8px;
  align-items: center;
}

.our-team-founder__social {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s;
}

.our-team-founder__social-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.our-team-founder__social::before,
.our-team-founder__social::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--ico);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  transition: 0.5s;
  will-change: transform, opacity;
  pointer-events: none;
  opacity: 0;
}

@media (min-width: 1024px) {
  .our-team-founder__social[style*="--ico:"] .our-team-founder__social-icon {
    opacity: 0;
  }
  .our-team-founder__social[style*="--ico:"]::before,
  .our-team-founder__social[style*="--ico:"]::after {
    opacity: 1;
  }
  .our-team-founder__social::before {
    transform: translateX(0);
  }
  .our-team-founder__social::after {
    transform: translateX(-100%);
  }
  .our-team-founder__social:hover::before,
  .our-team-founder__social:focus-visible::before {
    transform: translateX(100%);
  }
  .our-team-founder__social:hover::after,
  .our-team-founder__social:focus-visible::after {
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .our-team-founder__social::before,
  .our-team-founder__social::after {
    transition: none;
  }
}
.our-team__team {
  margin-bottom: 80px;
}

.our-team__slider .swiper {
  width: 100%;
  min-width: 0;
}

.our-team__slider .swiper-wrapper {
  align-items: stretch;
}

.our-team__slider .swiper-slide {
  height: auto;
  display: flex;
  width: clamp(220px, 43 * (100vw - 375px) / 1065 + 220px, 263px);
}

.our-team__slider.is-locked .our-team__controls {
  display: none !important;
}

.our-team-list {
  display: grid;
  grid-gap: 16px;
}

.our-team-card {
  width: 100%;
  display: flex;
  min-width: 0;
  gap: 24px;
  border-radius: 24px;
  background: #f6f6f6;
  padding: clamp(16px, 16 * (100vw - 375px) / 1065 + 16px, 32px);
}
@media screen and (max-width: 549px) {
  .our-team-card {
    flex-direction: column;
    gap: 0;
  }
}

.our-team-card__media {
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
  min-width: 148px;
  max-width: 148px;
  height: 148px;
}
@media screen and (max-width: 549px) {
  .our-team-card__media {
    margin-bottom: 16px;
  }
}

.our-team-card__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.our-team-card__content {
  min-width: 0;
}

.our-team-card__name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.our-team-card__pos {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: var(--secondary-dark);
  margin-bottom: clamp(16px, 8 * (100vw - 375px) / 1065 + 16px, 24px);
}

.our-team__text { 
  margin: 0 auto;
}
.our-team__text h2,
.our-team__text h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--dark-text);
  margin-bottom: 16px;
}
.our-team__text p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: var(--dark-text);
}
.our-team__text p:not(:last-child) {
  margin-bottom: 16px;
}
/*# sourceMappingURL=our-team.css.map */