/* ABOUT HERO */

.about-hero {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.98) 44%,
      rgba(255, 255, 255, 0.72) 62%,
      rgba(255, 255, 255, 0.18) 100%
    ),
    url("../img/about/bg.jpg") right center / auto 100% no-repeat,
    var(--color-white);
}

.about-hero__container {
  min-height: 650px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.62fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);

  padding-top: 82px;
  padding-bottom: 82px;
}

.about-hero__content {
  position: relative;
  z-index: 2;

  max-width: 780px;
}

.about-hero__title {
  margin: 0;

  color: var(--color-deep-amethyst);

  font-size: var(--s-h1);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.about-hero__title span {
  color: var(--color-slate-blue);
}

.about-hero__text {
  max-width: 690px;
  margin: 34px 0 0;

  color: #4A4848;

  font-size: var(--fs-20);
  line-height: 1.5;
  font-weight: 400;
}

.about-hero__note {
  max-width: 680px;
  margin: 42px 0 0;
  padding-left: 20px;

  border-left: 3px solid var(--color-slate-blue);
}

.about-hero__note h2 {
  margin: 0 0 14px;

  color: var(--color-slate-blue);

  font-size: var(--fs-22);
  line-height: 1.3;
  font-weight: 500;
}

.about-hero__note p {
  margin: 0;

  color: #4A4848;

  font-size: var(--fs-18);
  line-height: 1.5;
  font-weight: 400;
}

.about-hero .hero__button {
  margin-top: 48px;
}

.about-hero__side {
  position: relative;
  z-index: 2;

  align-self: center;
}

.about-hero__features {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  padding: 44px 42px;

  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(30, 17, 27, 0.12);
  backdrop-filter: blur(10px);
}

.about-hero__feature {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;

  padding: 0 0 38px;
  margin-bottom: 38px;

  border-bottom: 1px solid rgba(98, 120, 144, 0.16);
}

.about-hero__feature:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.about-hero__feature-icon {
  width: 88px;
  height: 88px;

  display: grid;
  place-items: center;

  border-radius: 4px;
  background: rgba(98, 120, 144, 0.08);
}

.about-hero__feature-icon img {
  width: 56px;
  height: 56px;

  display: block;
  object-fit: contain;
}

.about-hero__feature h3 {
  margin: 0 0 10px;

  color: var(--color-slate-blue);

  font-size: var(--fs-22);
  line-height: 1.25;
  font-weight: 500;
}

.about-hero__feature p {
  margin: 0;

  color: #4A4848;

  font-size: var(--fs-16);
  line-height: 1.5;
  font-weight: 400;
}


/* ABOUT SUPPORT */

.about-support {
  position: relative;

  min-height: 760px;

  display: flex;
  align-items: center;

  overflow: hidden;
}

.about-support__image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;

  width: calc((100vw - var(--container-width)) / 2 + 500px);
  min-width: 500px;
  max-width: 680px;
  height: 100%;

  overflow: hidden;
}

.about-support__image::before,
.about-support__image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;

  height: 120px;
  pointer-events: none;
}

.about-support__image::before {
  top: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.88) 38%,
      rgba(255, 255, 255, 0) 100%
    );
}

.about-support__image::after {
  bottom: 0;
  background:
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.88) 38%,
      rgba(255, 255, 255, 0) 100%
    );
}

.about-support__image picture,
.about-support__image img {
  width: 100%;
  height: 100%;

  display: block;
}

.about-support__image img {
  object-fit: cover;
  object-position: center;
}

.about-support__container {
  position: relative;
  z-index: 2;

  min-height: 760px;

  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(620px, 1fr);
  align-items: center;
  gap: clamp(56px, 7vw, 120px);
}

.about-support__content {
  grid-column: 2 / 3;
  max-width: 860px;
}

.about-support .section-label {
  margin-bottom: 24px;
}

.about-support .section-head {
  margin-bottom: 44px;
}

.about-support .section-title {
  max-width: 820px;
}

.about-support .section-title span {
  color: var(--color-slate-blue);
}

.about-support__text {
  max-width: 860px;

  display: grid;
  gap: 20px;
}

.about-support__text p {
  margin: 0;

  color: #4A4848;

  font-size: var(--fs-18);
  line-height: 1.58;
  font-weight: 400;
}


/* ABOUT MISSION */

.about-mission {
  position: relative;
}

.about-mission__card {
  position: relative;

  min-height: 360px;
  padding: clamp(42px, 5vw, 72px) clamp(28px, 5vw, 66px);

  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 5vw, 62px);

  border-radius: 16px;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px),
    linear-gradient(135deg, rgba(98, 120, 144, 1), rgba(78, 103, 130, 1));

  background-size:
    10px 10px,
    10px 10px,
    cover;

  color: var(--color-white);

  overflow: hidden;
}

.about-mission__card::before,
.about-mission__card::after {
  content: "";
  position: absolute;
  z-index: 1;

  pointer-events: none;
}

.about-mission__card::before {
  left: -90px;
  bottom: -150px;

  width: 520px;
  height: 360px;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.03),
    0 0 0 20px rgba(255, 255, 255, 0.03),
    0 0 0 30px rgba(255, 255, 255, 0.03),
    0 0 0 40px rgba(255, 255, 255, 0.03);
}

.about-mission__card::after {
  right: -120px;
  bottom: -170px;

  width: 720px;
  height: 380px;

  border-radius: 52% 48% 0 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.18)
    );

  transform: rotate(-10deg);
}

.about-mission__left,
.about-mission__divider,
.about-mission__right {
  position: relative;
  z-index: 2;
}

.about-mission .section-label {
  margin-bottom: 28px;
}

.section-label--light {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-slate-blue);
}

.about-mission__title {
  margin: 0;

  color: var(--color-white);

  font-size: clamp(30px, 3.2vw, 45px);
  line-height: 1.28;
  font-weight: 500;
}

.about-mission__divider {
  width: 1px;
  min-height: 210px;
  background: rgba(255, 255, 255, 0.34);
}

.about-mission__right {
  display: grid;
  gap: 24px;
}

.about-mission__right p {
  margin: 0;

  color: rgba(255, 255, 255, 0.94);

  font-size: var(--fs-20);
  line-height: 1.55;
  font-weight: 400;
}


/* ABOUT STRONG */

.about-strong {
  position: relative;
}

.about-strong__head {
  max-width: 720px;
  margin-bottom: 56px;
}

.about-strong__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 32px;
}

.about-strong-card {
  min-height: 350px;
  padding: 28px 26px 30px;

  display: flex;
  flex-direction: column;

  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0 10px 28px rgba(30, 17, 27, 0.08);

  transition:
    translate var(--transition),
    box-shadow var(--transition);
}

.about-strong-card:hover {
  translate: 0 -6px;
  box-shadow: 0 18px 48px rgba(30, 17, 27, 0.12);
}

.about-strong-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;

  margin-bottom: 26px;
}

.about-strong-card__icon {
  width: 76px;
  height: 76px;

  display: grid;
  place-items: center;
  flex: 0 0 auto;

  border-radius: 50%;
  background: var(--color-burgundy-wine);
}

.about-strong-card__icon img {
  width: 38px;
  height: 38px;

  display: block;
  object-fit: contain;
}

.about-strong-card__number {
  color: var(--color-burgundy-wine);

  font-size: var(--fs-24);
  line-height: 1;
  font-weight: 700;
}

.about-strong-card__line {
  width: 100%;
  height: 1px;
  margin-bottom: 28px;

  background: rgba(100, 34, 38, 0.62);
}

.about-strong-card h3 {
  min-height: 66px;
  margin: 0 0 20px;

  color: var(--color-burgundy-wine);

  font-size: var(--fs-22);
  line-height: 1.28;
  font-weight: 500;
}

.about-strong-card p {
  margin: auto 0 0;
  padding-top: 18px;

  color: #4A4848;

  font-size: var(--fs-16);
  line-height: 1.5;
  font-weight: 400;
}


/* ABOUT PROCESS */

.about-process {
  position: relative;
}

.about-process__container {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1fr);
  gap: clamp(56px, 8vw, 140px);
  align-items: start;
}

.about-process__left {
  position: sticky;
  top: 120px;
}

.about-process__left .section-label {
  margin-bottom: 24px;
}

.about-process__left .section-title span {
  color: var(--color-slate-blue);
}

.about-process__left .section-text {
  max-width: 560px;
}

.about-process__right {
  display: grid;
  gap: 72px;
}

.about-process-item {
  display: grid;
  grid-template-columns: 96px 42px 1px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.about-process-item__icon {
  width: 92px;
  height: 92px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: rgba(98, 120, 144, 0.08);
}

.about-process-item__icon img {
  width: 46px;
  height: 46px;

  display: block;
  object-fit: contain;
}

.about-process-item__number {
  padding-top: 6px;

  color: var(--color-slate-blue);

  font-size: var(--fs-20);
  line-height: 1;
  font-weight: 700;
}

.about-process-item__line {
  width: 1px;
  min-height: 78px;

  background: rgba(98, 120, 144, 0.45);
}

.about-process-item__content h3 {
  margin: 0 0 12px;

  color: var(--color-slate-blue);

  font-size: var(--fs-24);
  line-height: 1.25;
  font-weight: 500;
}

.about-process-item__content p {
  max-width: 540px;
  margin: 0;

  color: #4A4848;

  font-size: var(--fs-16);
  line-height: 1.55;
  font-weight: 400;
}


/* DIRECTOR MESSAGE */

.director-message {
  position: relative;
}

.director-message__container {
  display: grid;
  grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(36px, 6vw, 84px);
}

.director-message__photo {
  position: relative;

  width: 100%;
  height: 100%;
  min-height: 0;

  border-radius: 18px;
  overflow: hidden;

  background: #d9d9d9;
}

.director-message__photo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;
}

.director-message__person-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;

  max-width: 280px;
  margin-left: auto;
  padding: 18px 20px 16px;

  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(30, 17, 27, 0.1);
  backdrop-filter: blur(8px);
}

.director-message__person-card h3 {
  margin: 0 0 10px;

  color: var(--color-burgundy-wine);

  font-size: var(--fs-20);
  line-height: 1.25;
  font-weight: 500;
}

.director-message__person-card p {
  margin: 0;

  color: #4A4848;

  font-size: var(--fs-14);
  line-height: 1.4;
  font-weight: 400;
}

.director-message__content {
  align-self: center;
}

.director-message__content .section-label {
  margin-bottom: 22px;
}

.director-message__content .section-title span {
  color: var(--color-slate-blue);
}

.director-message__text {
  margin-top: 40px;
  padding-left: 20px;

  border-left: 3px solid var(--color-burgundy-wine);

  display: grid;
  gap: 22px;
}

.director-message__text p {
  margin: 0;

  color: #4A4848;

  font-size: var(--fs-18);
  line-height: 1.62;
  font-weight: 400;
  font-style: italic;
}


/* ABOUT FACTS */

.about-facts {
  position: relative;
}

.about-facts__head {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.about-facts__head .section-label {
  margin: 0 auto 24px;
}

.about-facts__head .section-title span {
  color: var(--color-slate-blue);
}

.about-facts__head .section-text {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}


/* ADAPTIVE 1180 */

@media (max-width: 1180px) {
  .about-hero__container {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 44px;
  }

  .about-hero__features {
    padding: 34px 30px;
  }

  .about-hero__feature {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
  }

  .about-hero__feature-icon {
    width: 70px;
    height: 70px;
  }

  .about-hero__feature-icon img {
    width: 44px;
    height: 44px;
  }

  .about-support {
    min-height: 700px;
  }

  .about-support__image {
    width: 34vw;
    min-width: 360px;
    max-width: none;
  }

  .about-support__container {
    min-height: 700px;
    grid-template-columns: minmax(300px, 0.65fr) minmax(520px, 1fr);
    gap: 46px;
  }

  .about-support__text p {
    font-size: var(--fs-16);
  }

  .about-strong__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-strong-card {
    min-height: 320px;
  }

  .about-strong-card h3 {
    min-height: auto;
  }

  .about-process__container {
    grid-template-columns: minmax(340px, 0.8fr) minmax(460px, 1fr);
    gap: 56px;
  }

  .about-process-item {
    grid-template-columns: 82px 36px 1px minmax(0, 1fr);
    gap: 22px;
  }

  .about-process-item__icon {
    width: 78px;
    height: 78px;
  }

  .about-process-item__icon img {
    width: 40px;
    height: 40px;
  }

  .director-message__container {
    grid-template-columns: minmax(320px, 400px) minmax(0, 1fr);
    gap: 36px;
  }

  .director-message__person-card {
    max-width: 260px;
  }

  .director-message__person-card h3 {
    font-size: var(--fs-20);
  }

  .director-message__person-card p,
  .director-message__text p {
    font-size: var(--fs-16);
  }
}


/* ADAPTIVE 980 */

@media (max-width: 980px) {
  .about-hero {
    background: var(--color-white);
  }

  .about-hero__container {
    min-height: auto;
    grid-template-columns: 1fr;

    padding-top: 68px;
    padding-bottom: 68px;
  }

  .about-hero__content {
    max-width: 100%;
  }

  .about-hero__text {
    max-width: 760px;
  }

  .about-hero__features {
    max-width: 100%;
    margin-left: 0;
  }

  .about-support {
    min-height: auto;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    overflow: visible;
  }

  .about-support__container {
    order: 1;

    min-height: auto;
    grid-template-columns: 1fr;

    padding-top: 0;
    padding-bottom: 0;
  }

  .about-support__content {
    grid-column: auto;
    max-width: 100%;
  }

  .about-support__image {
    order: 2;

    position: relative;
    left: auto;
    top: auto;
    bottom: auto;

    width: 100%;
    min-width: 0;
    max-width: none;
    height: 420px;

    margin-top: 44px;
  }

  .about-support__image::before,
  .about-support__image::after {
    height: 80px;
  }

  .about-support__image img {
    object-fit: cover;
    object-position: center;
  }

  .about-support .section-head {
    margin-bottom: 34px;
  }

  .about-mission__card {
    min-height: auto;

    grid-template-columns: 1fr;
    gap: 34px;

    padding: 44px 34px;
  }

  .about-mission__divider {
    width: 100%;
    min-height: 1px;
    height: 1px;
  }

  .about-mission__right {
    max-width: 720px;
  }

  .about-process__container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-process__left {
    position: static;
  }

  .about-process__right {
    gap: 36px;
  }

  .director-message__container {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .director-message__photo {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    max-width: 560px;
  }

  .director-message__content {
    align-self: auto;
    max-width: 100%;
  }
}


/* ADAPTIVE 760 */
/* На маленьких устройствах заголовки не больше 30px */

@media (max-width: 760px) {
  .about-hero,
  .about-support {
  }

  .about-hero__container {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .about-hero__title,
  .about-mission__title,
  .about-strong .section-title,
  .about-process__left .section-title,
  .director-message__content .section-title,
  .about-facts__head .section-title {
    font-size: 30px;
    line-height: 1.18;
  }

  .about-hero__text {
    margin-top: 24px;

    font-size: var(--fs-16);
    line-height: 1.56;
  }

  .about-hero__note {
    margin-top: 30px;
  }

  .about-hero__note h2 {
    font-size: var(--fs-20);
  }

  .about-hero__note p {
    font-size: var(--fs-16);
    line-height: 1.56;
  }

  .about-hero .hero__button {
    width: 100%;
    margin-top: 34px;
  }

  .about-hero__features {
    padding: 28px 22px;
  }

  .about-hero__feature {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  .about-hero__feature-icon {
    width: 58px;
    height: 58px;
  }

  .about-hero__feature-icon img {
    width: 36px;
    height: 36px;
  }

  .about-hero__feature h3 {
    font-size: var(--fs-20);
  }

  .about-support .section-label,
  .about-process__left .section-label,
  .director-message__content .section-label {
    margin-bottom: 18px;
  }

  .about-support .section-head {
    margin-bottom: 30px;
  }

  .about-support__text {
    gap: 16px;
  }

  .about-support__text p {
    font-size: var(--fs-16);
    line-height: 1.56;
  }

  .about-support__image {
    height: 340px;
    margin-top: 34px;
  }

  .about-mission__card {
    padding: 34px 22px;
    border-radius: 14px;
  }

  .about-mission .section-label {
    margin-bottom: 22px;
  }

  .about-mission__right {
    gap: 18px;
  }

  .about-mission__right p {
    font-size: var(--fs-16);
    line-height: 1.56;
  }

  .about-strong__head {
    margin-bottom: 34px;
  }

  .about-strong__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-strong-card {
    min-height: auto;
    padding: 24px 20px 26px;
  }

  .about-strong-card__top {
    margin-bottom: 22px;
  }

  .about-strong-card__icon {
    width: 64px;
    height: 64px;
  }

  .about-strong-card__icon img {
    width: 32px;
    height: 32px;
  }

  .about-strong-card__line {
    margin-bottom: 22px;
  }

  .about-strong-card h3 {
    margin-bottom: 14px;

    font-size: var(--fs-20);
  }

  .about-process__container {
    gap: 34px;
  }

  .about-process-item {
    grid-template-columns: 62px 34px minmax(0, 1fr);
    gap: 16px;
  }

  .about-process-item__icon {
    width: 62px;
    height: 62px;
  }

  .about-process-item__icon img {
    width: 32px;
    height: 32px;
  }

  .about-process-item__number {
    padding-top: 4px;
    font-size: var(--fs-18);
  }

  .about-process-item__line {
    display: none;
  }

  .about-process-item__content h3 {
    margin-bottom: 8px;
    font-size: var(--fs-20);
  }

  .about-process-item__content p {
    font-size: var(--fs-16);
  }

  .director-message__container {
    gap: 26px;
  }

  .director-message__photo {
    max-width: none;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }

  .director-message__person-card {
    left: 16px;
    right: 16px;
    bottom: 16px;

    max-width: none;
    padding: 16px 16px 14px;
    border-radius: 14px;
  }

  .director-message__person-card h3 {
    margin-bottom: 8px;
    font-size: var(--fs-20);
  }

  .director-message__person-card p {
    font-size: var(--fs-16);
  }

  .director-message__text {
    margin-top: 28px;
    padding-left: 16px;
    gap: 18px;
  }

  .director-message__text p {
    font-size: var(--fs-16);
    line-height: 1.56;
  }

  .about-facts__head {
    margin-bottom: 36px;
  }

  .about-facts__head .section-label {
    margin-bottom: 18px;
  }
}


/* ADAPTIVE 480 */

@media (max-width: 480px) {
  .about-hero__container {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .about-hero__title,
  .about-mission__title,
  .about-strong .section-title,
  .about-process__left .section-title,
  .director-message__content .section-title,
  .about-facts__head .section-title {
    font-size: 28px;
  }

  .about-hero__title br,
  .about-mission__title br,
  .about-strong .section-title br,
  .about-process__left .section-title br,
  .director-message__content .section-title br,
  .about-facts__head .section-title br {
    display: none;
  }

  .about-hero__note {
    padding-left: 16px;
  }

  .about-hero__feature {
    grid-template-columns: 1fr;
  }

  .about-hero__feature-icon {
    width: 56px;
    height: 56px;
  }

  .about-support__image {
    height: 280px;
  }

  .about-support__image::before,
  .about-support__image::after {
    height: 60px;
  }

  .about-mission__card {
    padding: 30px 18px;
  }

  .about-process-item {
    grid-template-columns: 1fr;
  }

  .about-process-item__number {
    order: -1;
  }
}