@import url(./blocks/global.css);
@import url(./blocks/intlTelInput.css);
@import url(./blocks/popup.css);

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-family-body: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
  --font-family-title: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
  --color-font-body: #000;
}
body {
  font-family: var(--font-family-body);
  color: var(--color-font-body);
  background-color: var(--color-white);
  font-size: 16px;
  line-height: 1.6;
}
.logo__wrapper {
  position: relative;
  background-color: var(--color-white);
  width: max-content;
}
.logo__wrapper::before {
  position: absolute;
  background: url(../svg/our-company/logo.svg) no-repeat;
  background-size: contain;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 28px;
  height: 30px;
}

p.error {
  color: red;
  padding: 0 12px;
  font-size: 12px;
}
.logo__link {
  display: flex;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.44px;
  padding: 0px 0 0px 36px;
  color: var(--color-accent2);
  font-family: var(--font-family-title);
}

.marker-border {
  width: 100%;
  height: 1px;
  background-color: var(--color-accent);
  opacity: 0.2;
}
.title-h1 {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; 
}
.title {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.title span {
  color: var(--color-accent);
}

.btn {
  background-color: #f87810;
  font-weight: 500;
  font-family: var(--font-family-title);
  line-height: 1;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  display: flex;
  padding: 18px 48px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: max-content;
  transition: var(--transition);
  font-size: 16px;
}
.btn:hover {
  background-color: var(--color-accent-btn-hover);
}

.btn svg {
  position: relative;
  top: -1px;
}
.btn--min {
  /* padding: 16px 32px;
  border-radius: 40px; */
}
.btn--border {
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  background-color: transparent;
  gap: 10px;
  justify-content: space-between;
  padding: 16px 24px;
}
.btn--border:hover {
  background-color: var(--color-accent-opacity);
}
.header {
  width: 100%;
  background: #fff;
  position: fixed;
  z-index: 10;
  border-bottom: 1px solid #eee;
}
.header__wrapper {
  display: flex;
  flex-direction: column;
  background: #61ce70;
}
.header__top-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  opacity: 1;
  padding: 17px 0;
  transition: opacity var(--transition), visibility var(--transition);
}

.header--hidden {
  opacity: 0;
  visibility: hidden;
}
.header__contact-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.header__copyright {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  color: var(--color-font-body);
  opacity: 0.5;
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.header__contact p {
  color: #fff;

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.header__bottom-block {
  width: 100%;
  background-color: var(--color-white);

  padding: 15px 0;
}
.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header__bottom-block-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header__list-wrapper {
  overflow: hidden;
  max-width: 100%;
}
.header__list {
  overflow: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 23px;
}
.header__list::-webkit-scrollbar {
  width: 6px;
  height: 10px;
  cursor: pointer;
}
.header__list::-webkit-scrollbar-track {
  background: var(--color-font-body);
  border-radius: 6px;
}
.header__list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}
.header__item {
  white-space: nowrap;
}
.header__item a {
  display: flex;
  background-color: transparent;
  transition: color var(--transition);
  color: var(--color-accent2);
}
.header__item a:hover {
  color: var(--color-accent);
}
.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 143px;
}
.hero__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  background-color: rgba(255, 255, 255, 1);
  max-width: 100%;
  width: 1200px;
  padding: 27px 24px;
  border-radius: 16px;
  border: 1px solid #eee;
}

.hero__inner .btn {
  width: 100%;
}

.hero__inner p {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgba(0, 0, 0, 1);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-accent2);
  border: 1px solid #fff;
  text-align: center;
}

.btn-white:hover {
  border: 1px solid #444;

  background: #efefef;
}

.hero__wrapper-info {
  padding: 148px 0 33px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 140px;
  flex-direction: column;
}
.hero__wrapper {
  margin: 0;
  width: 100%;
  padding: 0;
}
.hero__text-block {
  display: flex;
  flex-direction: column;
  gap: 49px;
  position: relative;
  z-index: 2;
  width: 850px;
  max-width: 100%;
  text-align: center;
  align-items: center;
}
.hero__text-block p {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

  color: var(--color-white);
  width: 573px;
  max-width: 100%;
}
.hero__inner_item {
  display: flex;
  width: 253px;
  max-width: 100%;
  gap: 15px;
  align-items: center;
}
.hero__inner_item:not(:last-child) {
  border-right: 1px solid #eee;
}
.hero__inner_item img {
  width: 24px;
  height: 24px;
}
.hero__dark {
  padding: 24px 32px;
  background: rgba(17, 17, 17, 0.2);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.8px;
  color: var(--color-white);

  text-align: right;
}

.hero__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid #eee;
  max-width: 480px;
  grid-column: span 1;
  grid-row: span 1;
}
.hero__list li {
  position: relative;
  padding-left: 16px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.hero__list li span {
  color: var(--color-accent);
}

.hero__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hero__background-block {
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.hero__background-block img {
  width: 100%;
  height: 100%;
}
.hero__background-block::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.5);
}

.hero--2 .hero__wrapper {
  position: relative;
}
.hero--2 .hero__background-block {
  right: 0;
  width: 66.7%;
}


.contact {
  position: relative;
  padding-top: 100px;
  padding-bottom: 61px;
  background: transparent;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f2fbf4;
  /* 101.566 / 1246 ≈ 8.15%  */
  clip-path: polygon(0 0, 100% 8.15%, 100% 100%, 0 100%);
}
.contact .container {
  position: relative;
  z-index: 1;
}

.contact__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
}
.contact__title {
  margin-top: 27px;
}
.contact__badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: #cff1dc;
  color: #12824f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.contact__lead {
  margin-top: 18px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.contact__grid {
  display: grid;
  grid-template-columns: 1fr 476px;
  gap: 24px;
  align-items: start;
  padding-top: 30px;
}
.contact__media {
  border-radius: 12px;
  overflow: hidden;
  background: #f2fbf4;
}
.contact__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.contact__card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 32px 32px 15px 28px;
  max-width: 480px;
}


.contact .popup__form-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact .popup__form-item {
  border: 0;
  border-radius: 10px;
}
.contact .popup__form-item input {
  width: 100%;
  padding: 17px 16px;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  background: #fff;
  color: rgba(34, 34, 34, 0.5);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.contact .popup__form-item input::placeholder {
  color: #9aa0a6;
}
.contact .popup__form-item input:focus {
  outline: none;
  border-color: #00a758;
  box-shadow: 0 0 0 3px rgba(0, 167, 88, 0.12);
}

.contact .popup__form-item---country .iti {
  width: 100%;
}
.contact .popup__form-item---country input {
  padding-left: 52px;
}

.popup__form-item.error input {
  border-color: #e95454 !important;
  box-shadow: 0 0 0 3px rgba(233, 84, 84, 0.12);
}

.popup__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
  margin-top: 24px;
}

.popup__checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.custom-checkbox {
  --cbx-blue: #2e64fe;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid #d0d5dd;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(16, 24, 40, 0.05);
  transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.custom-checkbox::after {
  content: none !important;
}

.popup__checkbox input[type="checkbox"]:checked + .custom-checkbox {
  border-color: var(--cbx-blue);
  background-color: var(--cbx-blue);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'><path d='M13.3334 4L6.00002 11.3333L2.66669 8' stroke='white' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.popup__checkbox input[type="checkbox"]:focus-visible + .custom-checkbox {
  box-shadow: 0 0 0 3px rgba(46, 100, 254, 0.25);
}
.popup__checkbox input[type="checkbox"]:disabled + .custom-checkbox {
  background: #f2f4f7;
  border-color: #e5e7eb;
  box-shadow: none;
  cursor: not-allowed;
}
.popup__checkbox.error .custom-checkbox {
  border-color: #e95454;
  box-shadow: 0 0 0 3px rgba(233, 84, 84, 0.12);
}
.popup__checkbox-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact__submit {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 10px;
  background: #f87810;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.04s ease, filter 0.15s ease;
}
.contact__submit:hover {
  filter: brightness(1.05);
}
.contact__submit:active {
  transform: translateY(1px);
}

.hidden {
  display: none !important;
}
.form__submit {
  text-align: center;
}
.form__submit h3 {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 20px;
  color: #00a758;
}
.form__submit p {
  margin: 0;
  color: #222;
}
.error {
  margin-top: 10px;
  color: #e95454;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .contact__card {
    max-width: 560px;
    margin: 0 auto;
  }
  .contact__media img {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 600px) {
  .contact {
    padding: 64px 0;
  }
}


.footer {
  background: #1f262b;
  color: #e5e7eb;
  padding: 41px 0 28px;
  line-height: 1.6;
  font-size: 14px;
}
.footer a {
  color: #fff;
  text-decoration: none;
  background-color: #1f262b;
}

.footer__top {
  display: grid;
  grid-template-columns: 166px 200px 272px minmax(300px, 1fr);
  column-gap: 60px;
  row-gap: 40px;
  align-items: start;
  padding-bottom: 46px;
  border-bottom: 1px solid #2d353b;
  justify-items: end;
}
.footer__top > * {
  min-width: 0;
}

.footer__brand {
  align-self: start;
}
.footer__brand .logo__wrapper {
  width: 166px;
  background-color: #1f262b;
}

.logo__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.48px;
}

.footer__nav ul {
  width: 155px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  display: block;
  padding: 5px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 0.95;
}

.footer__col {
  max-width: 300px;
}
.footer__col--right {
  margin-left: auto;
  justify-self: stretch;
}
.footer__dl {
  margin: 0;
}
.footer__dl dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}
.footer__dl dd {
  margin: 11px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
.phone {
  margin-top: 46px;
}
.registr {
  margin-top: 25px;
}
.email {
  margin-top: 27px;
}
.vat {
  margin-top: 25px;
}
.footer__dl a {
  text-decoration: none;
}

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 7px;
  margin-top: 18px;
}
.footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.7);

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__disclaimer {
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


@media (max-width: 1100px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 28px;
  }
}
@media (max-width: 640px) {
  .footer {
    padding: 28px 0 24px;
  }
  .footer__top {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .footer__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer__links {
    gap: 14px;
  }
}

.programs {
  padding: 187.6px 0 60px;
}
.programs__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.programs__title {
  font-size: 28px;
  font-weight: 600;
}
.programs__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.programs__item {
  background-color: var(--color-grey-light);
}
.programs__title-block {
  width: 100%;
}
.programs__top {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.programs__top-text-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 438px;
}
.programs__top-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.programs__top-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}
.programs__top-title h2 {
  font-size: 36px;
  color: var(--color-accent);
}
.programs__top-title span {
  font-size: 24px;
}
.programs__img-block {
  overflow: hidden;
  position: relative;
  width: 530px;
}
.programs__img-block::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background: var(--hero-photo-before-gradient);
  z-index: 2;
}
.programs__img-block img {
  width: 100%;
  height: 100%;
}
.programs__bottom {
  width: 100%;
  background-color: var(--color-grey-block);
  padding: 40px 0;
  position: relative;
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  will-change: max-height, opacity, transform;
}
.programs__bottom.active {
  max-height: 10000px;
  opacity: 1;
  transform: translateY(0);
  overflow: visible;
}
.js-program-toggle img {
  transition: transform var(--transition);
}
.js-program-toggle img.rotated {
  transform: rotate(180deg);
}
.programs__bottom::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-image: url(../svg/insurance-programs/icon-design.svg);
  width: 40px;
  aspect-ratio: 1 / 1;
}
.programs__bottom-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.programs__block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.programs__list-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.programs__list-block h5 {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 20px;
}
.programs__bottom-list {
  list-style: disc !important;
  padding: 0 0 0 25px;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  gap: 5px;
}
.programs__accent-block {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 4px;
  max-width: 498px;
  font-weight: 500;
}
.programs__accent-block h5 {
  opacity: 0.5;
  font-size: 18px;
}
.programs__accent-block p {
  font-size: 14px;
}
.programs__list-title-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.programs__list-title-block p {
  font-weight: 500;
  opacity: 0.5;
}

.journal__content-wrapper {
  width: 100%;
  display: flex;
}
.info {
  padding: 199.6px 0 80px;
}
.info__wrapper,
.info__content,
.info__block,
.info__text-block,
.info__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.info__wrapper h1 {
  font-size: 40px;
}
.info__block {
  gap: 24px;
}
.info__text-block {
  gap: 16px;
}
.info__text {
  gap: 10px;
}
.footer__copyright--mobil,
.burger__wrapper {
  display: none;
}

.support {
  padding: 50px 0;
}
.support__inner {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.support__list {
  width: 580px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 100%;
  padding: 0 20px;
}

.support__item {
  position: relative;
  padding-left: 20px;
}

.support__item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.support__item-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  font-family: var(--font-family-title);
}

.support__item-text {
  margin-top: 4px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.support__img {
  width: 580px;
  aspect-ratio: 290/173;
  max-width: 100%;
  border-radius: 24px;
}

.title__block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.title__block p {
  margin-top: 40px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.96px;
}
.title__mark {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.5;
}

.faq .support__item {
  padding-left: 0;
}

.faq .support__item::before {
  display: none;
}

.accent__title {
  margin-top: 186px;
  padding: 20px 40px;
  border-radius: 20px;
  background: #1879e6;
  color: var(--color-white);
}

.accent__title h1 {
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-family: var(--font-family-title);
}

.accent__title p {
  margin-top: 12px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero__light {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #eee;
  max-width: 480px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.5;
}

.hero2 .hero__inner {
  width: 380px;
}

.contact__banner {
  padding-top: 186px;
}

.contact__banner .hero__text-block p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.contact__banner .hero__text-block p span {
  color: var(--color-accent);
  font-weight: 600;
}

.contact__banner-subtitle {
  font-family: var(--font-family-title);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.contacts__bottom {
  padding: 60px 0 100px;
}

.contacts__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
  gap: 40px;
}

.contacts__bottom .contact__form-block {
  margin-top: 0;
}

.contacts__bottom .contact__text-block {
  text-align: left;
  margin: 0;
  width: 480px;
}

.contacts__bottom .contact__wrapper {
  align-items: stretch;
}

.contacts__bottom .title {
  font-size: 38px;
}

.toolkit {
  padding: 100px 0;
}
.toolkit_item {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 280px;
  border-radius: 16px;
  border: 1px solid rgba(97, 206, 112, 0.16);
  background: #fff;
  box-shadow: 0 0 15.6px 0 rgba(0, 0, 0, 0.04);
}

.toolkit__list {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.toolkit__item-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.toolkit__item-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.toolkit_item img {
  width: 32px;
}

.learn {
  position: relative;
  padding: 148px 0 126px;
  overflow: hidden;
}

.learn_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  top: -10%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.learn .container {
  position: relative;
  z-index: 1;
}

.learn-container {
}

.learn__list {
  display: flex;
  align-items: flex-end;
  align-content: flex-end;
  gap: 20px;

  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 56px;
}

.learn__item:not(:first-child) {
  display: flex;
  max-width: 580px;
  padding: 40px;
  flex-direction: column;
  gap: 23px;
  flex-shrink: 0;
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(97,206,112,.24);
  background: #fff;
  box-shadow: 0 0 15.6px 0 rgba(0,0,0,.04);
}
.learn__item:first-child {
  width: 580px;
  overflow: hidden;
  border-radius: 16px;
  display: flex;     
}

.learn__item:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;              
  display: block;
}
.learn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f2fbf4;
  z-index: 0;

  clip-path: polygon(100% 0, 0 6.5%, 0 93.6%, 100% 100%);
}

.learn__item-numeric {
  display: flex;
  width: 39px;
  padding: 4px 0;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #f87810;
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.learn__item-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
.learn__item p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.mentorship {
  padding: 118px 0 119px;
}
.mentorship__container {
  display: flex;
  gap: 20px;
  margin-top: 60px;
}
.mentorship__container img {
  object-fit: contain;
}
.mentorship__list {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mentorship__list-item {
  width: 100%;
  display: flex;
  padding: 24px 32px;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 15.6px 0 rgba(0, 0, 0, 0.08);
}

.mentorship__list-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.mentorship__list-item h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.mentorship__list-item p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 10px;
}

.programm {
  padding: 60px 0 80px;
  background: #f2fbf4;
}
.programm .title--min {
  margin-top: 27px;
}
.green_title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 21px 32px;
  margin: 0 auto;
  border-radius: 999px;
  background: #61ce70;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
}
.programm .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.programm__subtitle {
  margin-top: 18px;
  max-width: 760px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.programm_container {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  text-align: left;
}
.programm_item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.programm_card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.programm_card-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  display: inline;
  text-decoration-line: underline;
  text-decoration-color: #f87810;
  text-decoration-thickness: 4px;
  text-underline-offset: 10px;
  text-decoration-skip-ink: none;
}

.programm_card-sub {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.programm_card p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: auto;
}
.programm_media {
  overflow: hidden;
  border-radius: 12px;
}
.programm_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.programm__cta {
  margin-top: 31px;
  display: flex;
  justify-content: center;
}
.btn_programm__cta {
  background-color: #f87810;
  color: var(--color-white);
  border-radius: 8px;
  display: flex;
  padding: 19px 88px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: max-content;
  transition: var(--transition);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.faq {
  padding: 100px 0 80px;
}
.faq__title {
  margin-top: 28px;
}
.faq .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.faq__subtitle {
  margin-top: 15px;
  text-align: center;
}
.faq__list {
  margin-top: 57px;
  width: 100%;
  max-width: 978px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
}
.faq__item {
  background: #fff;
  border: 0;
  border-top: 1px solid #eee; 
}
.faq__item:first-child {
  border-top: 0; 
}
.faq__q {
  width: 100%;
  padding: 29px 32px 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: 0;
  cursor: pointer;
}
.faq__icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.faq__icon svg {
  transition: transform var(--transition);
  transform-origin: 50% 50%;
}
.faq__a {
  
  height: 0; 
  overflow: hidden;
  padding: 0 24px; 
  transition: height 0.35s ease, padding 0.2s ease;
  border-top: 0;
  box-sizing: content-box; 
  will-change: height;
}
.faq__item.is-open .faq__a {

  padding: 10px 31px 32px;
}
.faq__a p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

.faq__item.is-open .faq__icon svg {
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .faq .container {
    align-items: stretch;
    text-align: left;
  }
  .faq__list {
    max-width: 100%;
  }
}

.title__block {
  padding: 60px 0 45px;
}

.mentorship__item-img-mob-wrapper {
  overflow: hidden;
  width: 281px;
  aspect-ratio: 83/70;
  display: none;
}

.mentorship-practice .mentorship__item-img {
  width: 281px;
  aspect-ratio: 83/70;
  /* object-position: 10% 20%; */
}

.mentorship__item-img-mob-wrapper img {
  width: 100%;
  height: 100%;
}

.mentorship-practice .mentorship__item-wrapper {
  max-height: none;
  overflow: auto;
  opacity: 1;
}

.mentorship-practice .mentorship__item-info {
  padding-bottom: 40px;
}

.mentorship-practice .mentorship__item-num {
  opacity: 0.5;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.96px;
}

.toolkit-about {
  padding: 40px 0;
}

.toolkit-about .toolkit__list {
  margin-top: 30px;
  gap: 60px 0;
}

.banner__about .banner__light-img {
  width: 425px;
  max-width: 100%;
  object-fit: contain;
}

.our-title {
  color: #fff;
  line-height: 1.1;
}
.hero__wrapper-info-our {
  padding: 91px 0 96px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 140px;
  flex-direction: column;
}

.hero__text-block-our {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
  z-index: 2;
  max-width: 807px;
  width: 100%;
  text-align: center;
  align-items: center;
}
.hero__text-block-our p {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

  color: var(--color-white);
  width: 100%;
  max-width: 390px;
}

.mission {
  padding: 101px 0 64px;
  background: #fff;
}
.mission__title {
  text-align: center;
  margin-bottom: 28px;
}

.mission__grid {
  display: grid;
  grid-template-columns: 1fr 579px;
  gap: 28px 29px;
  align-items: stretch;
  padding-top: 34px;
}

.mission__headline {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 23px;
}

.mission__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.mission__card {
  margin-top: 18px;
  padding: 20px 40px;
  background: #eaf6ef; 
  border-radius: 14px;
}
.mission__card-title {
  padding-top: 7px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.mission__list {
  margin: 0;
  padding-left: 18px;
  padding-top: 17px;
}
.mission__list li {
  margin-left: 6px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  list-style: disc;
}
.mission__list li:not(:first-child) {
  padding-top: 1px;
}


.mission__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.mission__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}


@media (max-width: 1100px) {
  .mission__grid {
    grid-template-columns: 1fr;
  }
  .mission__media {
    order: 2;
  }
}
@media (max-width: 640px) {
  .mission {
    padding: 44px 0 52px;
  }
  .mission__headline {
    font-size: 24px;
  }
}

.story {
  margin-top: 30px;
  padding: 100px 0 80px;
  position: relative;
}
.story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f2fbf4;
  clip-path: polygon(0 0, 100% 4.03%, 100% 94.6%, 0 100%);
}
.story > .container {
  position: relative;
  z-index: 1;
}
.story__title {
  text-align: center;
  margin: 0 0 55px;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 580px;
  gap: 20px;
  align-items: center;
}

.story__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.story__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.story__content {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

@media (max-width: 1100px) {
  .story__grid {
    grid-template-columns: 1fr;
  }
  .story__media img {
    min-height: 300px;
    aspect-ratio: 16 / 9; 
  }
}


.leaders {
  padding-top: 108px;
  background: #fff;
}
.leaders .title.center {
  text-align: center;
  margin: 0 0 24px;
}

.leaders__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 36px;
}

.leaders__item {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 22px;
  align-items: stretch;
}
.leaders__item:first-child {
  border-top: 0;
}

.leaders__media {
  height: 100%;
  min-height: 260px;
  border-radius: 12px;
  overflow: hidden;
}
.leaders__media img {
  inset: 0;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.leaders__body {
  padding-top: 68px;
}

.leaders__name {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
}
.leaders__role {
  color: #707070;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
.leaders__bio {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 89px;
  letter-spacing: -0.04px;
}

.leaders__quote {
  position: relative;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  color: #252525;
  padding-left: 29px;
}
.leaders__quote::before {
  content: "";
  position: absolute;
  left: 0px;
  top: -42px;
  width: 130px;
  height: 75px;
  pointer-events: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='130' height='75' viewBox='0 0 130 75' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M28.511 2.07462C18.2788 6.37824 6.70259 21.0822 2.64245 34.9345C0.46445 42.3634 0.39276 56.1496 2.50817 60.5411C4.71121 65.1131 11.2133 70.6641 17.0623 72.9664C24.3166 75.8213 37.2276 75.6536 44.7755 72.6052C55.4333 68.3006 59.4662 61.7203 58.7698 49.7667C58.4011 43.4312 57.9072 42.0457 54.8382 38.7467C51.5917 35.2582 43.5681 30.9792 35.8245 28.6078C32.3106 27.5322 32.2628 27.7148 37.916 20.6648C47.0878 9.22528 49.3636 3.86179 46.2081 1.12528C44.0529 -0.7438 33.9185 -0.200051 28.511 2.07462ZM100.093 1.45192C89.8535 5.3085 77.4739 20.8394 73.2602 35.1161C70.6168 44.0717 70.8853 56.493 73.836 61.7796C78.5106 70.1539 88.5426 74.9529 101.304 74.9193C110.979 74.8937 117.166 72.8598 122.718 67.8773C127.794 63.323 129.505 59.2976 129.505 51.9023C129.505 40.0069 125.369 35.574 108.665 29.5601C102.671 27.4029 102.676 27.7098 108.509 20.6648C117.185 10.1845 119.872 3.82429 116.76 1.12528C114.889 -0.49709 104.74 -0.297748 100.093 1.45192Z' fill='%2361CE70' fill-opacity='0.16'/></svg>")
    no-repeat center/contain;
}


@media (max-width: 920px) {
  .leaders__item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .leaders__quote::before {
    left: 0;
  }
}


.facts {
  padding: 120px 0px;
  background: transparent;
}
.facts__title {
  text-align: center;
  margin-bottom: 18px;
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 59px;
}

.facts__card {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 14px;
  padding: 20px;

  text-align: center;
  box-shadow: 0 0 15.6px 0 rgba(0, 0, 0, 0.04);
  display: flex;
  height: 196px;
  padding: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
}

.facts__value {
  color: #f87810;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.facts__unit {
  font-size: 0.75em;
}

.facts__desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.programs-h1 p {
  max-width: 677px;
}

.bootcamp {
  padding: 100px 0 36px;
  background: transparent;
}

.bootcamp__title {
  display: block;
  text-align: center;
  width: fit-content;
  margin: 0 auto 39px;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-bottom: 4px solid #f87810;
  padding-bottom: 5px;
}

.bootcamp__grid {
  display: grid;
  grid-template-columns: 1fr 580px;
  gap: 24px;
  align-items: stretch;
}

.bootcamp__panel {
  border-radius: 16px;
  border: 1px solid rgba(97, 206, 112, 0.24);
  background: #fff;
  box-shadow: 0 0 15.6px 0 rgba(0, 0, 0, 0.08);
  padding: 32px 32px 27px 32px;
}

.bootcamp__panel p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: -0.09px;
}
.bootcamp__note {
  padding: 16px;
  border-radius: 8px;
  background: rgba(248, 120, 16, 0.04);
  margin-top: 48px;
}
.bootcamp__note p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 1.24;
  letter-spacing: -0.09px;
}

.bootcamp__note strong {
  font-weight: 500;
}


.bootcamp__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}
.bootcamp__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.margin_container {
  margin-top: 59px;
}
.bootcamp__note-Algorithms {
  margin-top: 41px;
}
.bootcamp__note-Automation {
  margin-top: 57px;
}
.bootcamp__note-Fundamentals {
  margin-top: 94px;
}
.contact-programs {
  margin-top: 141px;
}

@media (max-width: 980px) {
  .bootcamp__grid {
    grid-template-columns: 1fr;
  }
  .bootcamp__media {
    order: 2;
  }
  .bootcamp__panel {
    order: 1;
  }
}


@media (max-width: 1024px) {
  .facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .facts__grid {
    grid-template-columns: 1fr;
  }
}

.wins {
  background: #f2fbf4;
  padding: 60px 0;
  margin-top: 105px;
}


.wins__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}
.wins__title {
  margin: 0 0 6px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
}
.wins__lead {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 18px;
  padding-bottom: 32px;
}

.wins__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
}

.wins__grid-2 {
  margin-top: 40px;
}
.wins__card {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.wins__case {
  display: block;
  width: fit-content;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-bottom: 4px solid #f87810;
  padding-bottom: 6px;
}

.wins__person {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 43px;
}

.wins__path {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: #f87810;
  border-radius: 8px;
  width: fit-content;
  padding: 8px;
}
.wins__pill {
  background: rgba(255, 255, 255, 0.32);
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
  padding: 8px;
  border-radius: 4px;
}
.wins__pill--accent {
  background: rgba(255, 255, 255, 0.32);
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
}
.wins__arrow {
  color: #fff;
  font-size: 19px;
}


.wins__quote {
  margin: 34px 0 36px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.wins__bullets {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.wins__bullets li {
  list-style: disc;
}
.wins__bullets strong {
  font-weight: 600;
}


.wins__media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #eaf1f4;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.wins__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}


@media (max-width: 960px) {
  .wins__grid {
    grid-template-columns: 1fr;
  }
  .wins__media {
    order: -1;
  } 
}
@media (max-width: 560px) {
  .wins__title {
    font-size: 30px;
  }
  .wins__pill {
    font-size: 12px;
    padding: 7px 10px;
  }
}

.reviews {
  padding: 66px 0 48px;
  background: #fff;
}

.reviews__head {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 22px;
}
.reviews__title {
  margin: 0 0 6px;
  font-size: 32px;
  font-weight: 700;
}
.reviews__lead {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 446px;
  margin: 0 auto;
  padding-top: 17px;
}

.reviews__nav {
  position: absolute;
  right: 0;
  top: -50px;
  transform: translateY(-8px);
  display: flex;
  gap: 10px;
}
.reviews__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: #f87810;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  position: relative;
}
.reviews__btn--next {
  background: #f87810;
}
.reviews__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: #fff;
  transform: rotate(135deg);
}
.reviews__btn--next::before {
  color: #fff;
  transform: rotate(-45deg);
}
.reviews__btn.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
}


.reviews__slider {
  z-index: 5;
  overflow: visible;
  margin-top: 139px;
}


.rcard {
  background: #fff;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 14px;
  border-radius: 16px;
  border: 1px solid rgba(97, 206, 112, 0.16);
  background: #fff;
  box-shadow: 0 0 15.6px 0 rgba(0, 0, 0, 0.08);
}
.rcard__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: #e9edf1;
}
.rcard__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rcard__text {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.rcard__author {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.reviews__pagination {
  margin-top: 12px;
  position: static;
}
.reviews__slider .swiper-wrapper {
  align-items: stretch;
}
.reviews__slider .swiper-slide {
  height: auto;
  display: flex;
}
.reviews__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #ffb780;
  opacity: 1;
}
.reviews__pagination .swiper-pagination-bullet-active {
  background: #f87810;
}

@media (max-width: 960px) {
  .reviews__nav {
    position: static;
    transform: none;
    margin: 10px 0 20px;
    justify-content: center;
  }
  .wins__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    object-position: top;
  }
}

.blog-h1 {
  padding: 50px 0;
}
.our-title-blog {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 1200px) {
  .learn__list {
    justify-content: center;
  }
}


.blog {
  padding-top: 102px;
  background: #fff;
}
.blog-2 {
  padding-top: 61px;
}
.blog-3 {
  padding-top: 61px;
  padding-bottom: 100px;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
}


.post-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}


.post-card__media {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;

  height: 286px;
}
.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.35s ease;
}
.post-card__media:hover img {
  transform: scale(1.03);
}


.post-card__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 18px;
}

.post-card__lead {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.post-card__excerpt {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #606060;
  margin-top: 8px;
}

/* «Read More» */
.post-card__more {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f87810;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}
.post-card__more::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-top: -1px;
}


@media (max-width: 900px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
  .post-card__title {
    font-size: 22px;
  }
}



.hero__back {
  position: relative;
  top: 37px;
  left: 3px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  z-index: 5;
}
.hero__back-txt {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.hero__back-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f87810;
  position: relative;
  flex: 0 0 44px;
}
.hero__back-ico::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(135deg);
}
.hero__back:hover .hero__back-ico {
  filter: brightness(1.06);
}
.hero__back:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(248, 120, 16, 0.35);
  border-radius: 999px;
}

.course-h1 {
  padding: 43px 0 92px;
}
.description_course {
  display: flex;
  max-width: 779px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  margin: 0 auto;
  padding-top: 62px;
  padding-bottom: 118px;
}
.description_course p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 163%;
  letter-spacing: -0.02px;
}
.description_course img {
  width: 100%;
  max-height: 399px;
  border-radius: 16px;
}
.description_course .italic {
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
}
.advantage h3 {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  padding-bottom: 18px;
}

@media (max-width: 640px) {
  .hero__back {
    top: 12px;
    left: 12px;
    font-size: 13px;
  }
  .hero__back-ico {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}


.hero__wrapper-info-our-contact {
  padding: 106px 0 102px
}
.reach {
  padding: 24px 0;
  background: #fff;
}

.reach__wrap {
  display: grid;
  grid-template-columns: 580px 1fr; 
  gap: 20px; 
  align-items: stretch; 
  padding-top: 76px;
}


.reach__info {
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 0 15.6px 0 rgba(0, 0, 0, 0.08);
  padding: 40px 56px;
  display: grid;

  height: 100%;



}

.reach__row {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 31px;
}

.reach__icon {
  width: 39px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;

}

.reach__label {
  display: block;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: rgba(0, 0, 0, 0.60);

}

.reach__value {
  display: block;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #000;
margin-top: 16px;
}


.reach__media {
  margin: 0;
  border: 1px solid #e6edf2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.06);
  height: 100%; 
  background: #e9edf1;
}
.reach__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media (max-width: 900px) {
  .reach__wrap {
    grid-template-columns: 1fr;
  }
  .reach__info {
    padding: 28px 24px;
    gap: 28px;
  }
  .reach__value {
    font-size: 20px;
  }
  .reach__media {
    aspect-ratio: 16/9;
    height: auto;
  }
}

.visit { padding: 89px 0 38px; background:#fff; }


.visit__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-bottom: 37px;
}
.visit__title{
  margin:0;
  font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: normal;
}


.visit__badge{
  display:inline-flex;
  align-items:center;
  gap:16px;
  padding:4px 16px;
  background: #F2FBF4;
  border-radius: 8px;
background: #F2FBF4;

}
.visit__badge-icon{
  width:28px; height:28px;
  display:grid; place-items:center;
  background:#F6FFF9;
  border-radius:8px;
}
.visit__badge-text{
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width:254px;
}


.visit__map{
  margin:0;
  border:1px solid #E6EDF2;
  border-radius:16px;
  position: relative;
  display: inline-block;
  background:#e9edf1;
  box-shadow:0 0 16px rgba(0,0,0,.06);

}
.visit__map img{
  display: block;
  width:100%;
  height:100%;
  max-height: 438px;
  object-fit:cover;

}
.visit__map::before{
  content:"";
  position:absolute;
  left:var(--pin-left,50%);
  top:var(--pin-top,30%);
  transform:translate(-50%,-50%);
  width:12px; height:12px;
  border-radius:50%;
  box-shadow:0 0 0 0 rgba(248,120,16,.45); 
  animation:pulse-ring 1.8s ease-out infinite;
  pointer-events:none;
  z-index:2;
}


.visit__map::after{
  content:"";
  position:absolute;
  left:var(--pin-left,50%);
  top:var(--pin-top,30%);
  transform:translate(-50%,-50%);
  width:12px; height:12px;
  border-radius:50%;
  background:#F87810;      
  outline:2px solid #fff;   
  pointer-events:none;
  z-index:3;
}

@keyframes pulse-ring{
  0%   { transform:translate(-50%,-50%) scale(1);   opacity:.9;  box-shadow:0 0 0 0 rgba(248,120,16,.45); }
  70%  { transform:translate(-50%,-50%) scale(2.2); opacity:.15; box-shadow:0 0 0 14px rgba(248,120,16,0); }
  100% { transform:translate(-50%,-50%) scale(2.6); opacity:0;   box-shadow:0 0 0 18px rgba(248,120,16,0); }
}
.contact-us {
  padding: 79px 0 122px;
}
.contact-us-card {
  margin: 0 auto;
}

@media (max-width: 720px){
  .visit__head{ flex-direction:column; gap:12px; }
  .visit__title{ font-size:32px; }
  .visit__badge{ max-width:none; }
}


.policy {
  padding: 203px 0 64px;
  background: #fff;
}
.container__policy {
  max-width: 980px;
  margin: 0 auto;
}


.policy__title {
  margin: 0 0 23px;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}


.policy__intro {
  margin: 0 auto 36px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}


.policy__h2 {
  margin: 54px 0 41px;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.policy__h2:first-of-type {
  margin-top: 74px;
}


.policy__h3 {
  margin: 28px 0 23px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  padding-left: 24px; 
}


.policy__h3 + p {
  margin-top: 24px;      
  padding-left: 29px; 
}


.policy__h3 + ul,
.policy__h3 + p + ul {
  margin: 10px 0 18px 37px;  
  padding: 0;
}


.policy p {
  margin: 0 0 14px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}


.policy ul,
.policy ol {
  margin: 10px 0 18px 12px;
  padding: 0;
  list-style: none;
}
.policy li {
  position: relative;
  padding-left: 15px;
  margin: 8px 0;
  font-size: 18px;
  line-height: 150%;
}
.policy li ul,
.policy li ol {
  margin-top: 6px;
}


.policy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 2px;     
  height: 2px;
  border-radius: 50%;
  background: currentColor;
}


.policy h2 + p,
.policy h3 + p {
  margin-top: 0;
}

strong {
  font-weight: 600;
}

.policy .policy__h3{
  margin: 28px 0 12px;
  padding-left: 24px;       
}


.policy .policy__h3 + p{
  margin-left: 0px;
}


.policy .policy__h3 + ul,
.policy .policy__h3 + p + ul{
  margin-left: 35px;
}

a {
  color: inherit;
}

a:hover {
  transition: color var(--transition);
  color: #09e778;
}
@media (max-width: 1100px) {
  .hero__inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: auto;
  }
  .hero__inner_item {
    width: 375px;
    border-right-color: none;
    gap: 10px;
  }
  .hero__inner_item:not(:last-child) {
    border-right: none;
  }
  .toolkit__list {
    flex-direction: column;
    align-items: center;
  }
  .programm_card-title {
    font-size: 20px;
    line-height: 2;
  }
  .programm_card-sub {
    font-size: 16px;
  }
  .programm_card p {
    font-size: 14px;
  }
  .mentorship__container {
    flex-direction: column;
  }
  .footer__col--right {
    margin-left: 0;
  }
  .footer__top {
    justify-items: center;
  }
  .footer__top > :nth-child(2) {
    justify-self: start;
  }
}

.burger__wrapper {
  display: none;
}
.burger {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-top: 15px;
}
.burger:focus-visible {
  outline: 2px solid #222;
  outline-offset: 2px;
}
.header__cta--mobile {
  display: none;
}
.burger__bars {
  position: relative;
  width: 24px;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: background 0.2s ease;
}
.burger__bars::before,
.burger__bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}
.burger__bars::before {
  top: -7px;
}
.burger__bars::after {
  top: 7px;
}

.header.header--open .burger__bars {
  background: transparent;
}
.header.header--open .burger__bars::before {
  top: 0;
  transform: rotate(45deg);
}
.header.header--open .burger__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 910px) {
  .burger__wrapper {
    display: block;
  }

  .header {
    position: relative;
  }
  .hero {
    margin-top: 0;
  }

  .header__bottom-block-inner {
    position: relative;
    z-index: 20;
  }

  .header__list-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;

    padding: 16px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
    z-index: 15;
  }
  .header.header--open .header__list-wrapper {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

 
  .header__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .header__list a {
    color: #111;
  }

  .header__cta {
    display: none;
  }
  .header__cta--mobile {
    display: inline-flex;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
  }
  .faq__q {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .title-h1 {
    font-size: 32px;
  }

  .hero__text-block p {
    font-size: 16px;
  }
  .hero__inner p {
    font-size: 14px;
  }
  .hero__wrapper-info {
    padding: 32px 0 33px;
    gap: 50px;
  }
  .title {
    font-size: 32px;
  }
  .toolkit {
    padding: 40px 0;
  }
}

@media (max-width: 600px) {
  .learn__item:not(:first-child) {
    max-width: 360px;
    padding: 28px;
  }
  .learn__item:first-child {
    max-width: 360px;
    overflow: hidden;
    border-radius: 8px;
  }
  .programm_item {
    display: grid;
    grid-template-columns: 1fr;
  }
  .learn__item-title {
    font-size: 20px;
  }
  .contact__grid {
    grid-template-columns: 360px;
    justify-content: center;
  }
  .footer__top > :nth-child(2) {
    justify-self: unset;
  }
  .footer__nav ul {
    text-align: center;
  }
  .footer__dl {
    text-align: center;
  }
  .footer__col--right {
    margin: 0;
    justify-self: unset;
  }
  .header__contact p {
    font-size: 11px;
  }
  .story__content {
    font-size: 16px;
  }
  .leaders__media img {
    height: 300px;
  }
  .leaders__body {
    padding-top: 0;
  }
  .leaders__list {
    gap: 100px;
  }
  .bootcamp__title {
    font-size: 20px;
  }
  .title {
    font-size: 26px;
  }
  .contact__lead {
    font-size: 14px;
  }
  .wins__pill {
    font-size: 9px;
  }
  .green_title {
    font-size: 14px;
  }
  .post-card__media {
  height: auto;
  }
}

@media (max-width: 550px) {
  .learn {
 
    padding: 45px 0 9px;
  }
  .learn::before {
    clip-path: polygon(100% 0, 0 2.5%, 0 101.6%, 100% 100%);
  
  }
  .mentorship {
    padding: 29px 0 31px;
  }
  .programm {
    padding: 60px 0 37px;
    background: #f2fbf4;
}
.faq {
  padding: 12px 0 0px;
}
.hero__back {
  top: 30px;
}
.description_course {
  padding-bottom: 50px;
}
.blog {
  padding-top: 20px;
}
.blog-3 {
  padding-top: 37px;
  padding-bottom: 44px;
}
.reach__wrap {
  padding-top: 5px;
}
.visit {
  padding: 8px 0 0px;
}
.contact-us {
  padding: 34px 0 50px;
}
.reach__row {
  gap: 10px;
}
.reach__value {
  font-size: 18px;
}
.wins__path {
  flex-direction: column;
  width: 100%;
  padding: 16px;
}
.wins__pill {
  font-size: 14px;
}
.wins__arrow {
  rotate: 90deg;
}
.reviews__slider {
  margin-top: 27px;
}
.wins {

  margin-top: 0px;
}
.story {
  margin-top: 0px;
  padding: 22px 0 47px
}
.mission {
  padding: 44px 0 20px;
}
.leaders {
  padding-top: 0px;
}
.leaders__list {
  gap: 36px;
}
.facts {
  padding: 58px 0px;
}
.bootcamp {
  padding: 30px 0 36px;
}
.contact-programs {
  margin-top: 0px;
}
.contact {
  padding: 41px 0;
}
.policy {
  padding: 14px 0 43px;
}
}