/* =============================================================================
   PAGE: ABOUT US
   Figma: desktop node-id=127-2 | mobile node-id=117-3672
   ============================================================================= */

/* ---------------------------------------------------------------------------
   2. OUR PURPOSE — Mission + Vision cards + photo strip
   Figma node 127:177 — 1240×1231, top: 520px
--------------------------------------------------------------------------- */
.about-purpose {
  padding: var(--section-padding-y) 0;
  background-color: var(--color-white);
}

.about-purpose__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-sizing: border-box;
}

/* Two cards: Figma 600+40+600 at 1240 — fluid columns, fixed gap */
.about-purpose__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
  width: 100%;
}

.about-purpose__cards > * {
  min-width: 0;
}

.about-purpose__card {
  background-color: var(--color-bg-light);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* "our mission" / "Our Vision" label — Plus Jakarta Sans Medium 12px / #666 / 1.2px tracking */
.about-purpose__card-label {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: var(--fw-medium);
  line-height: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #666666;
  display: block;
}

/* SemiBold 32px / 38px — min-height = two lines so paired cards align body copy */
.about-purpose__card-heading {
  font-family: var(--font-primary);
  font-size: var(--fs-h3);       /* 32px */
  font-weight: var(--fw-semibold);
  line-height: var(--lh-h3);     /* 38px */
  color: var(--color-dark-text);
  margin-top: 5px;
  min-height: calc(2 * var(--lh-h3));
}

/* Regular 14px / 20px */
.about-purpose__card-text {
  font-family: var(--font-primary);
  font-size: var(--fs-body);     /* 14px */
  font-weight: var(--fw-regular);
  line-height: 20px;
  color: var(--color-dark-text);
}

/* Full-width photo strip: 1240×600px */
.about-purpose__photo {
  width: 100%;
  height: 600px;
  overflow: hidden;
  background-color: #d9d4cc;
}

.about-purpose__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Tablet alignment (<=1203px): keep Mission/Vision body copy aligned
   when one heading wraps to 3 lines. */
@media (max-width: 1203px) and (min-width: 769px) {
  .about-purpose__card-heading {
    min-height: calc(3 * var(--lh-h3));
  }
}

/* ---------------------------------------------------------------------------
   3. OUR VALUES — 3×2 grid of 6 cards
   Figma node 127:201 — 1241×650
--------------------------------------------------------------------------- */
.about-values {
  padding: var(--section-padding-y) 0;
  background-color: var(--color-white);
}

.about-values__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-sizing: border-box;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--col-gap);
  margin-top: 60px;
  width: 100%;
}

.about-values__grid > * {
  min-width: 0;
}

.about-values__card {
  background-color: var(--color-bg-light);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Bold 18px / 24px */
.about-values__card-title {
  font-family: var(--font-primary);
  font-size: var(--fs-subtitle); /* 18px */
  font-weight: var(--fw-bold);
  line-height: 24px;
  color: var(--color-dark-text);
}

/* Regular 14px / 20px */
.about-values__card-body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);     /* 14px */
  font-weight: var(--fw-regular);
  line-height: 20px;
  color: var(--color-dark-text);
}

/* ---------------------------------------------------------------------------
   4. TEAM BEHIND OURHAUS
   Figma node 127:232 — 1230×1078
   Each member: photo (295px) + bio (305px) = 600px card, 2 cols
--------------------------------------------------------------------------- */
.about-team {
  padding: var(--section-padding-y) 0;
  background-color: var(--color-white);
}

.about-team__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-sizing: border-box;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 60px;
  width: 100%;
}

.about-team__grid > * {
  min-width: 0;
}

/* Desktop team card: photo on top, bio below — grid stretch fills row; bio flexes so signatures align */
.about-team__member {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.about-team__photo {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 550px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #d0cbc4;
  border: 1px solid #e8e8e8;
}

.about-team__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Info overlay — mirrors .team-card__info from cards.css */
.about-team__info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

.about-team__info-name {
  position: relative;
}

/* Bold 18px / 49px line-height — white bg panel, leaves room for LinkedIn box */
.about-team__name {
  font-family: var(--font-primary);
  font-size: var(--fs-subtitle); /* 18px */
  font-weight: var(--fw-bold);
  line-height: 49px;
  color: var(--color-dark-text);
  background: var(--color-white);
  padding-left: 15px;
  padding-right: 25px;
  width: calc(100% - 48px);
  max-width: calc(100% - 48px);
  margin-bottom: -1px;
}

/* SemiBold 14px — white bg panel below name */
.about-team__role {
  font-family: var(--font-primary);
  font-size: var(--fs-body);     /* 14px */
  font-weight: var(--fw-semibold);
  line-height: 20px;
  color: var(--color-dark-text);
  background: var(--color-white);
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
}

/* LinkedIn icon: 44×44px white box, top-right of info area */
.about-team__linkedin {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.about-team__linkedin:hover {
  opacity: 0.8;
}

/* Bio panel below photo — grows to fill row so signatures can sit on one horizontal line */
.about-team__bio {
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
  min-height: 0;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

/* SemiBold 16px / 22px */
.about-team__bio-greeting {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  line-height: 22px;
  color: var(--color-dark-text);
  margin-bottom: 25px;
}

/* Regular 14px / 20px */
.about-team__bio-text {
  font-family: var(--font-primary);
  font-size: var(--fs-body);     /* 14px */
  font-weight: var(--fw-regular);
  line-height: 20px;
  color: var(--color-dark-text);
  margin: 0;
}

/* Signature image — Figma 127:240 (mobile: 117:3904+) — pinned to bottom of bio panel */
.about-team__bio-signature {
  margin-top: auto;
  padding-top: 25px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.about-team__bio-signature-img {
  display: block;
  height: 36px;
  width: auto;
}

/* ---------------------------------------------------------------------------
   5. EBK PARTNERSHIP — full-width bg #f5f6f8, image left + text right
   Figma node 127:368 — 1440×940
--------------------------------------------------------------------------- */
.about-ebk {
  background-color: var(--color-bg-light);
  padding: var(--section-padding-y) var(--container-padding); /* 120px 100px */
  scroll-margin-top: 90px; /* fixed nav (~70px) + buffer when using #about-ebk */
}

/* Two columns: image:text = 600:550 (Figma 1240 + 90 gap) */
.about-ebk__inner {
  display: grid;
  grid-template-columns: minmax(0, 600fr) minmax(0, 550fr);
  gap: 90px;
  align-items: start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.about-ebk__photo {
  width: 100%;
  min-width: 0;
  height: 700px;
  overflow: hidden;
  /* background-color: #d0cbc4; */
}

.about-ebk__photo-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-ebk__text {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 40px;
}

/* Eyebrow: Inter Medium 14px / #999 / 7px tracking */
.about-ebk__label {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);     /* 14px */
  font-weight: var(--fw-medium);
  line-height: 18px;
  letter-spacing: var(--ls-label); /* 7px */
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
  margin-bottom: 39px;
}

/* Light 60px / 68px */
.about-ebk__heading {
  font-family: var(--font-primary);
  font-size: var(--fs-h2);       /* 60px */
  font-weight: var(--fw-light);  /* 300 */
  line-height: var(--lh-h2);     /* 68px */
  color: var(--color-dark-text);
  margin-bottom: 39px;
}

/* Regular 14px / 20px */
.about-ebk__body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);     /* 14px */
  font-weight: var(--fw-regular);
  line-height: 20px;
  color: var(--color-dark-text);
  margin-bottom: 16px;
}

.about-ebk__body:last-of-type {
  margin-bottom: 39px;
}

/* CTA: dark bg, 50px height, Inter Medium 14px uppercase */
.about-ebk__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 30px;
  background-color: var(--color-dark-text);
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: var(--fs-body);     /* 14px */
  font-weight: var(--fw-medium);
  line-height: 18px;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  align-self: flex-start;
}

.about-ebk__cta:hover {
  opacity: 0.85;
}

/* ---------------------------------------------------------------------------
   6. WHY THIS PARTNERSHIP MATTERS — 3 feature cards + stats strip
   Figma node 127:384
--------------------------------------------------------------------------- */
.about-partnership {
  padding: var(--section-padding-y) 0;
  background-color: var(--color-white);
}

.about-partnership__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-sizing: border-box;
}

.about-partnership__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--col-gap);
  margin-top: 60px;
  margin-bottom: 60px;
  width: 100%;
}

.about-partnership__features > * {
  min-width: 0;
}

.about-partnership__feature-card {
  background-color: var(--color-bg-light);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Bold 18px / 24px */
.about-partnership__feature-title {
  font-family: var(--font-primary);
  font-size: var(--fs-subtitle); /* 18px */
  font-weight: var(--fw-bold);
  line-height: 24px;
  color: var(--color-dark-text);
}

/* Regular 14px / 20px */
.about-partnership__feature-body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);     /* 14px */
  font-weight: var(--fw-regular);
  line-height: 20px;
  color: var(--color-dark-text);
}

/* Stats strip: 1240×381px photo with 3 white stat boxes below */
.about-partnership__stats-wrap {
  position: relative;
}

.about-partnership__stats-photo {
  width: 100%;
  height: 381px;
  overflow: hidden;
  background-color: #d0cbc4;
}

.about-partnership__stats-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Stat + logo + stat: outer columns grow, centre column fixed width */
.about-partnership__stats-row {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 20px;
  width: 100%;
  max-width: 1240px;
  box-sizing: border-box;
}

.about-partnership__stat {
  width: 100%;
  max-width: 360px;
  height: 158px;
  justify-self: center;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.about-partnership__stat--logo {
  width: 158px;
  max-width: 158px;
  justify-self: center;
}

/* SemiBold 32px / 38px */
.about-partnership__stat-number {
  font-family: var(--font-primary);
  font-size: var(--fs-h3);       /* 32px */
  font-weight: var(--fw-semibold);
  line-height: var(--lh-h3);     /* 38px */
  color: var(--color-dark-text);
  text-align: center;
  white-space: nowrap;
}

/* Regular 18px / 20px / #797979 */
.about-partnership__stat-label {
  font-family: var(--font-primary);
  font-size: var(--fs-subtitle); /* 18px */
  font-weight: var(--fw-regular);
  line-height: 20px;
  color: var(--color-lighter-black); /* #797979 */
  text-align: center;
}

/* ---------------------------------------------------------------------------
   OUR STORY — full-width bg #f5f6f8, text left + image right (section 4 on page)
   Figma node 127:572 — 1440×940
--------------------------------------------------------------------------- */
.about-story {
  background-color: var(--color-bg-light);
  padding: var(--section-padding-y) var(--container-padding);
}

/* Text:photo = 550:600 (Figma) */
.about-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 550fr) minmax(0, 600fr);
  gap: 90px;
  align-items: start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.about-story__text {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}

/* Eyebrow: Inter Medium 14px / #999 / 7px tracking */
.about-story__label {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);     /* 14px */
  font-weight: var(--fw-medium);
  line-height: 18px;
  letter-spacing: var(--ls-label); /* 7px */
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
  margin-bottom: 39px;
}

/* Light 60px / 68px */
.about-story__heading {
  font-family: var(--font-primary);
  font-size: var(--fs-h2);       /* 60px */
  font-weight: var(--fw-light);  /* 300 */
  line-height: var(--lh-h2);     /* 68px */
  color: var(--color-dark-text);
  margin-bottom: 39px;
}

/* Regular 14px / 20px */
.about-story__body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);     /* 14px */
  font-weight: var(--fw-regular);
  line-height: 20px;
  color: var(--color-dark-text);
  margin-bottom: 16px;
}

.about-story__body:last-of-type {
  margin-bottom: 39px;
}

/* CTA: same style as EBK — dark bg, 50px, uppercase */
.about-story__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 30px;
  background-color: var(--color-dark-text);
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: var(--fs-body);     /* 14px */
  font-weight: var(--fw-medium);
  line-height: 18px;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  align-self: flex-start;
}

.about-story__cta:hover {
  opacity: 0.85;
}

.about-story__photo {
  width: 100%;
  min-width: 0;
  height: 700px;
  overflow: hidden;
  background-color: #d0cbc4;
}

.about-story__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---------------------------------------------------------------------------
   8. GET STARTED — bg #f5f6f8, centered header + 2 CTA cards
   Figma node 127:428 — 1440×697
--------------------------------------------------------------------------- */
.about-get-started {
  background-color: var(--color-bg-light);
  padding: var(--section-padding-y) 0;
}

.about-get-started__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-sizing: border-box;
}

.about-get-started__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 60px;
  width: 100%;
}

.about-get-started__cards > * {
  min-width: 0;
}

.about-get-started__card {
  background-color: var(--color-white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Bold 18px / 24px */
.about-get-started__card-title {
  font-family: var(--font-primary);
  font-size: var(--fs-subtitle); /* 18px */
  font-weight: var(--fw-bold);
  line-height: 24px;
  color: var(--color-dark-text);
  margin-bottom: 15px;
}

/* Regular 14px / 20px */
.about-get-started__card-body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);     /* 14px */
  font-weight: var(--fw-regular);
  line-height: 20px;
  color: var(--color-dark-text);
  flex: 1;
  margin-bottom: 25px;
}

/* CTA: dark bg, Inter Medium 12px uppercase */
.about-get-started__card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 30px;
  background-color: var(--color-dark-text);
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: var(--fs-label);    /* 12px */
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  align-self: flex-start;
}

.about-get-started__card-cta:hover {
  opacity: 0.85;
}

/* ---------------------------------------------------------------------------
   MOBILE — max-width 768px
   Figma node-id=117-3672 — 402px canvas, 20px side padding
--------------------------------------------------------------------------- */
@media (max-width: 768px) {

  /* ── Hero: landscape crop matching Figma node 206-1763 ── */
  .page-hero {
    height: 250px;
  }

  .page-hero__image {
    object-position: center 100%;
    transform: scaleX(-1);
  }

  /* ── Purpose ── */
  .about-purpose {
    padding: 60px 0;
  }

  .about-purpose__inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Stack cards vertically, full width */
  .about-purpose__cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .about-purpose__card {
    text-align: center;
  }

  .about-purpose__card-heading {
    font-size: 26px;
    line-height: 32px;
    min-height: 0;
  }

  .about-purpose__photo {
    height: 400px;
  }

  /* ── Values ── */
  .about-values {
    padding: 60px 0;
  }

  .about-values__inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* 1 column, full width */
  .about-values__grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .about-values__card {
    text-align: center;
  }

  /* ── Team ── */
  .about-team {
    padding: 60px 0;
  }

  .about-team__inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Stack team members vertically */
  .about-team__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  /* Each member: photo full-width stacked above bio */
  .about-team__member {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .about-team__photo {
    width: 100%;
    height: 491px;
  }

  /* Name: 16px on mobile */
  .about-team__name {
    font-size: 16px;
    line-height: 48px;
  }

  .about-team__bio {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    border-top: none;
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
  }

  .about-team__bio-text {
    font-size: var(--fs-body-mobile);
  }

  .about-team__bio-signature {
    margin-top: auto;
    padding-top: 25px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }

  /* ── EBK ── */
  .about-ebk {
    padding: 60px 20px;
  }

  /* Stack: text + CTA first, image below — Figma node 117:4021 */
  .about-ebk__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-ebk__text {
    order: 1;
    width: 100%;
    padding-top: 0;
    text-align: center;
  }

  .about-ebk__photo {
    order: 2;
    width: 100%;
    height: auto;
  }

  .about-ebk__heading {
    font-size: 36px;
    line-height: 42px;
  }

  .about-ebk__body {
    font-size: 16px;
    line-height: 22px;
  }

  .about-ebk__cta {
    align-self: center;
    width: 100%;
    max-width: 282px;
  }

  /* ── Partnership ── */
  .about-partnership {
    padding: 60px 0;
  }

  .about-partnership__inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-partnership__features {
    grid-template-columns: 1fr;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .about-partnership__feature-card {
    text-align: center;
  }

  .about-partnership__stats-photo {
    height: 640px;
  }

  /* Stack stat boxes vertically overlaid on photo on mobile */
  .about-partnership__stats-row {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    grid-template-columns: 1fr;
    justify-items: center;
    width: calc(100% - 40px);
    max-width: none;
    gap: 20px;
  }

  .about-partnership__stat {
    width: 100%;
    max-width: 322px;
    height: auto;
    min-height: 158px;
    padding: 20px;
  }

  .about-partnership__stat--logo {
    width: 100%;
    max-width: 324px;
  }

  .about-partnership__stat-number {
    white-space: initial;
  }

  .about-partnership__stat-label {
    font-size: 16px;
  }

  /* ── Story — text center (Figma 117:3820) ── */
  .about-story {
    padding: 60px 20px;
  }

  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story__text {
    width: 100%;
    padding-top: 0;
    text-align: center;
  }

  .about-story__heading {
    font-size: 36px;
    line-height: 42px;
  }

  .about-story__body {
    font-size: 16px;
    line-height: 22px;
  }

  .about-story__cta {
    align-self: center;
    width: 100%;
    max-width: 282px;
    font-size: var(--fs-label);
    line-height: var(--lh-label);
  }

  .about-story__photo {
    width: 100%;
    height: 300px;
  }

  /* ── Get Started ── */
  .about-get-started {
    padding: 60px 0;
  }

  .about-get-started__inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-get-started__cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .about-get-started__card {
    text-align: center;
  }

  .about-get-started__card-cta {
    align-self: center;
    width: 100%;
  }

}

/* ---------------------------------------------------------------------------
   Screen 1920px width and above
--------------------------------------------------------------------------- */
@media (min-width: 1920px) {
  .about-team__photo {
    height: 750px;
  }
}