

/* Start:/corporate/styles.css?177812714944429*/
:root {
  --container-max: 1264px;
  --gutter: clamp(16px, 2.4vw, 40px);
  --section-space: 86px;
  --card-radius: clamp(18px, 1.35vw, 24px);
  --bg-main: rgba(27, 29, 35, 1);
  --card: #3a414f;
  --text: #f5f7fa;
  --muted: #d1d8e2;
  --accent: #12b6df;
  --accent-soft: #6ccce7;
  --accent-green: #3eafa3;
  --line: #eef1f5;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  /* color: var(--text); */
  background: var(--bg-main);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
}

body.corporate-page {
  background: var(--bg-main);
}

.container {
  width: min(var(--container-max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.container.container--column {
  flex-direction: column;
}

.container.container--hero {
  padding-top: 92px;

  @media (max-width: 1280px) {
    padding-top: 64px;
  }
}

.section {
  padding: var(--section-space) 0;
}

.section h2 {
  font-size: clamp(2rem, 1.2rem + 2.65vw, 4.2rem);
  line-height: 1.04;
  font-weight: 700;
}

.section h2 span {
  color: var(--lab4u__brand_default);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(9px, 0.65vw, 12px);
  border: 0;
  border-radius: 999px;
  padding: clamp(13px, 0.95vw, 17px) clamp(18px, 1.7vw, 30px);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.95rem, 0.78rem + 0.45vw, 1.15rem);
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.button img {
  width: 14px;
  height: 12px;
}

.button--primary {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: #fff;
}

.application-form .button.button--primary:disabled {
  background: #ebebeb;
  color: #fff;

  .arrow-send {
    stroke: #fff;
  }
}

.button--secondary {
  background: linear-gradient(90deg, #35a097 0%, #43bcaa 100%);
  color: #fff;
}

.button--wide {
  width: 100%;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(12px, 1.05vw, 20px);
  margin-bottom: clamp(12px, 1.25vw, 22px);
}

@media (max-width: 1263px) {
  :root {
    --gutter: clamp(16px, 2.8vw, 24px);
    --section-space: 40px;
  }

  .section h2 {
    font-size: clamp(2rem, 1.32rem + 3.7vw, 3.55rem);
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 16px;
    --section-space: 24px;
  }

  .section h2 {
    font-size: clamp(1.9rem, 7.6vw, 2.45rem);
    line-height: 1.05;
  }

  .section-head {
    margin-bottom: 10px;
  }

  .button {
    padding: 14px 18px;
    font-size: 1rem;
  }
}
.hero {
  padding: 0;
}

.hero .container {
  width: 100%;
  max-width: none;
}

.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 0;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  overflow: visible;
}

.hero-media {
  position: relative;
  right: auto;
  top: auto;
  width: 100%;
  height: 204px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.hero-media picture,
.hero-media img {
  width: 260px;
  height: 204px;
  object-fit: cover;
  object-position: center center;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: none;
  min-height: 0;
  padding: 16px;
  border-radius: 22px;
  background: rgba(51, 56, 66, 0.5);
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-size: 32px;
  line-height: 1.17;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.hero-content p {
  margin-top: 24px;
  max-width: none;
  font-size: 16px;
  line-height: 1.17;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

.hero-content .button {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  padding: 16px;
  border-radius: 48px;
  background: #00aacc;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.hero-content .button img {
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .hero .container {
    width: calc(100% - 32px);
    max-width: none;
  }

  .hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 244px;
    column-gap: 16px;
    align-items: end;
    min-height: 0;
    height: auto;
    padding: 16px;
    border-radius: 22px;
    background: rgba(51, 56, 66, 0.5);
    backdrop-filter: blur(10px);
    overflow: hidden;
  }

  .hero-media {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    align-self: end;
    justify-self: end;
    width: 244px;
    height: 367px;
    margin-top: -16px;
    margin-bottom: -16px;
  }

  .hero-media picture,
  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    width: 100%;
    max-width: 451px;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    align-items: flex-start;
  }

  .hero-content h1 {
    font-size: 40px;
    text-align: left;
  }

  .hero-content p {
    margin-top: 24px;
    max-width: 393px;
    font-size: 20px;
    line-height: 1.6;
    text-align: left;
  }

  .hero-content .button {
    width: fit-content;
    margin-top: 40px;
    padding: 28px 40px;
    font-size: 20px;
    line-height: 24px;
  }
}

@media (min-width: 1264px) {
  .hero .container {
    width: min(1264px, calc(100% - 40px));
    max-width: none;
  }

  .hero-card {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 661px;
    column-gap: 0;
    height: 500px;
    padding: 0 0 0 40px;
  }

  .hero-content {
    align-self: center;
    width: 535px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    margin-top: 40px;
  }

  .hero-media {
    width: 661px;
    height: 515px;
    margin-top: 0;
    margin-bottom: 0;
    transform: translateY(-15px);
  }
}
.about h2 {
  margin-bottom: 48px;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

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

.about-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 380px;
  padding: 24px;
  background: #333842;
  border-radius: 22px;
}

.about-card img {
  width: 146px;
  height: 144px;
  object-fit: contain;
  align-self: center;
  order: 1;
  margin-top: auto;
}

.about-card img[src$="chart.svg"] {
  width: 143px;
}

.about-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 8px 0;
}

.about-card h3 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  line-height: 1.17;
  font-weight: 700;
  color: #fff;
}

.about-card--accent h3 {
  font-weight: 900;
}

.about-card p {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
}

.about-card p span {
  font-weight: 600;
}

@media (max-width: 1263px) {
  .about h2 {
    margin-bottom: 24px;
  }

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

  .about-card {
    flex-direction: row;
    align-items: center;
    min-height: auto;
    gap: 24px;
    padding: 24px;
  }

  .about-card img {
    width: 146px;
    height: 144px;
    margin-top: 0;
    align-self: center;
    order: 0;
    flex: 0 0 auto;
  }

  .about-card img[src$="chart.svg"] {
    width: 143px;
  }

  .about-card > div {
    flex: 1;
    justify-content: flex-end;
  }

  .about-card h3 {
    font-size: 32px;
  }

  .about-card p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .about h2 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.17;
  }

  .about-grid {
    gap: 12px;
  }

  .about-card {
    align-items: center;
    gap: 12px;
    padding: 16px;
  }

  .about-card img,
  .about-card img[src$="chart.svg"] {
    width: 72px;
    height: 72px;
  }

  .about-card img[src$="people.svg"] {
    height: 64px;
  }

  .about-card h3 {
    font-size: 20px;
  }

  .about-card p {
    font-size: 16px;
  }
}
.partners h2 {
  margin-bottom: 48px;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.partner-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 300px;
  padding: 24px;
  background: #333842;
  border-radius: 22px;
}

.partner-card h3 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  line-height: 1.17;
  font-weight: 700;
  color: #fff;
}

.partner-card ul {
  margin: 0;
  padding-left: 22px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.partner-card li {
  padding-left: 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
}

.partner-logos {
  margin: auto auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  gap: 60px;
}

.partner-card:nth-child(3) .partner-logos {
  gap: 50px;
}

.partner-logos img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.partner-logos img[src$="servier_logo.svg"] {
  width: 167px;
}

.partner-logos img[src$="tatneft_logo.svg"] {
  width: 268px;
}

.partner-logos img[src$="soglasie_logo.svg"] {
  width: 250px;
  filter: brightness(0) saturate(100%) invert(53%) sepia(99%) saturate(4429%)
    hue-rotate(2deg) brightness(104%) contrast(104%);
}

.partner-logos img[src$="ingosstrakh_logo.svg"] {
  width: 244px;
}

.partner-logos img[src$="sibur_logo.svg"] {
  width: 211px;
}

.partner-logos img[src$="city_logo.svg"] {
  width: 71px;
}

@media (max-width: 1263px) {
  .partners h2 {
    margin-bottom: 24px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .partner-card {
    height: auto;
    padding: 24px;
  }

  .partner-logos {
    justify-content: center;
    gap: 60px;
  }

  .partner-card:nth-child(3) .partner-logos {
    gap: 60px;
  }
}

@media (max-width: 767px) {
  .partners h2 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.17;
  }

  .partners-grid {
    gap: 12px;
  }

  .partner-card {
    gap: 12px;
    height: auto;
    padding: 16px;
  }

  .partner-card h3 {
    font-size: 20px;
  }

  .partner-card li {
    font-size: 16px;
  }

  .partner-logos {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin: 8px auto 0;
    gap: 16px;
  }

  .partner-card:nth-child(3) .partner-logos {
    gap: 12px;
  }

  .partner-card:nth-child(4) .partner-logos img[src$="city_logo.svg"] {
    order: -1;
  }

  .partner-logos img[src$="servier_logo.svg"] {
    width: 114px;
  }

  .partner-logos img[src$="tatneft_logo.svg"] {
    width: 167px;
  }

  .partner-logos img[src$="soglasie_logo.svg"] {
    width: 129px;
  }

  .partner-logos img[src$="ingosstrakh_logo.svg"] {
    width: 124px;
    max-height: none;
  }

  .partner-logos img[src$="merck.svg"] {
    width: 156px;
    max-height: none;
  }

  .partner-logos img[src$="bionmax_logo.svg"] {
    width: 44px;
    max-height: none;
  }

  .partner-logos img[src$="sibur_logo.svg"] {
    width: 132px;
    max-height: none;
  }

  .partner-logos img[src$="city_logo.svg"] {
    width: 54px;
    max-height: none;
  }
}
.benefits .section-head {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.benefits-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.benefits-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(to left, #69c9e1, #00a3cc);
  cursor: pointer;
  transition: opacity 0.15s ease;
  padding: 0;
}

.benefits-nav__btn:hover:not(:disabled) {
  opacity: 0.85;
}

.benefits-nav__btn:disabled {
  background: transparent;
  border: 1.5px solid #69c9e1;
  cursor: default;
}

.benefits-nav__icon--plain {
  display: block;
}
.benefits-nav__icon--grad {
  display: none;
}

.benefits-pager {
  display: flex;
  margin-top: 18px;
  gap: 0;
}

.benefits-pager__bar {
  height: 3px;
  width: 50%;
  background: #fff;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.benefits-pager__bar--active {
  background: #00aacc;
}
.benefits-nav__btn:disabled .benefits-nav__icon--plain {
  display: none;
}
.benefits-nav__btn:disabled .benefits-nav__icon--grad {
  display: block;
}

.benefits h2 {
  max-width: min(76%, 910px);
  font-size: 40px;
  line-height: 1.17;
  font-weight: 700;
  color: #fff;
}

.benefits-slider {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}

.benefits-mobile-toggle {
  display: none;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  background: #333842;
  border-radius: 22px 32px 22px 22px;
  min-height: 196px;
  padding: 0;
}

.benefit-card h3 {
  grid-column: 1;
  grid-row: 1;
  padding: 24px 0 0 24px;
  max-width: calc(100% - 80px);
  font-size: 32px;
  line-height: 1.06;
  font-weight: 700;
  color: #fff;
}

.benefit-card p {
  grid-column: 1 / span 2;
  grid-row: 2;
  padding: 10px 24px 16px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
}

.benefit-index {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  width: 64px;
  height: 64px;
  border-radius: 32px 32px 0 32px;
  background: #00aacc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.1em;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 1263px) {
  .benefits h2 {
    max-width: none;
  }

  .benefits-slider {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-card {
    min-height: 196px;
  }
}

@media (max-width: 767px) {
  .benefits .section-head {
    margin-bottom: 16px;
  }

  .benefits h2 {
    font-size: 24px;
    line-height: 1.17;
    color: #00aacc;
  }

  .benefits-slider {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefits-slider.is-collapsed .benefit-card:nth-child(n + 4) {
    display: none;
  }

  .benefit-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    border-radius: 22px;
    padding: 16px;
  }

  .benefit-card h3 {
    padding: 0;
    max-width: 100%;
    font-size: 20px;
    line-height: 1.17;
    font-weight: 600;
  }

  .benefit-card p {
    padding: 0;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.4;
  }

  .benefit-index {
    display: none;
  }

  .benefits-mobile-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
    margin: 12px 0 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 16px;
    line-height: 1.17;
    cursor: pointer;
    font-weight: 400;
    text-align: center;
  }

  .benefits-mobile-toggle__icon {
    display: block;
    width: 62px;
    height: 9px;
    transform-origin: center;
    transition: transform 0.2s ease;
  }

  .benefits-mobile-toggle.is-open {
    flex-direction: column-reverse;
  }

  .benefits-mobile-toggle.is-open .benefits-mobile-toggle__icon {
    transform: rotate(180deg);
  }
}
.programs h2 {
  margin-bottom: 28px;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.program-tabs {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  margin-bottom: 24px;
}

.program-tab {
  border: 0;
  background: transparent;
  border-radius: 999px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  padding: 18px 24px;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition: background 0.2s ease;
}

.program-tab.is-active {
  background: linear-gradient(
    -45deg,
    rgb(105 201 225 / 100%) 0%,
    rgb(0 163 204 / 100%) 100%
  );
}

.program-tab__short {
  display: none;
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 379px;
  gap: 24px;
  align-items: stretch;
}

.program-left-stack {
  display: grid;
  gap: 24px;
}

.program-main-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  background: #333842;
  border-radius: 22px;
}

.program-main-card h3 {
  font-size: 32px;
  line-height: 1.17;
  font-weight: 700;
  color: #fff;
}

.program-points {
  display: grid;
  gap: 18px;
  max-width: calc(100% - 188px);
}

.program-points li {
  display: flex;
  align-items: center;
  gap: 24px;
}

.program-step-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #00aacc;
}

.program-step-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.program-points h4 {
  font-size: 24px;
  line-height: 1.17;
  font-weight: 700;
  color: #fff;
}

.program-points p {
  font-size: 18px;
  line-height: 1.17;
  font-weight: 400;
  color: #fff;
}

.program-list-icon {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 156px;
  height: auto;
  pointer-events: none;
  transform: rotate(15deg);
}

.program-discount {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 30px;
  background: #333842;
  border-radius: 22px;
}

.program-discount img {
  width: 108px;
  height: 108px;
  flex: 0 0 auto;
}

.program-discount p {
  margin: 0;
}

.program-discount__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.program-discount__title {
  font-size: 32px;
  line-height: 1.17;
  font-weight: 700;
  color: #fff;
}

.program-discount__subtitle {
  font-size: 16px;
  line-height: 1.17;
  font-weight: 700;
  color: #fff;
}

.program-side-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  height: 100%;
  padding: 40px;
  border-radius: 22px;
  background-color: #333842;
  background-image: linear-gradient(90deg, #333842 0%, #00aacc 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
}

.program-side-card h3 {
  font-size: 32px;
  line-height: 1.17;
  font-weight: 700;
  color: #fff;
}

.program-logos {
  display: grid;
  align-content: start;
  gap: 22px;
}

.program-logos img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.program-logos img[src$="soglasie_logo.svg"] {
  filter: brightness(0) invert(1);
}

.program-side-card.wave-health .program-logos img[src$="servier_logo.svg"] {
  width: 166.66px;
  height: 60px;
}

.program-side-card.wave-health .program-logos img[src$="soglasie_logo.svg"] {
  width: 234px;
  height: 74.39px;
}

.program-side-card.wave-health .program-logos img[src$="ingosstrakh_logo.svg"] {
  width: 285px;
  height: 29px;
}

.program-side-card.wave-checkups .program-logos img[src$="tatneft_logo.svg"] {
  width: 285px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.program-side-card.wave-checkups
  .program-logos
  img[src$="ingosstrakh_logo.svg"] {
  width: 285px;
  height: 29px;
}

.program-side-card.wave-deposits
  .program-logos
  img[src$="region_trans_gas.svg"] {
  width: 299px;
  height: 63px;
}

.program-side-card.wave-deposits .program-logos img[src$="gigant.svg"] {
  width: 226px;
  height: 136px;
}

.program-side-card.wave-health {
  background-image:
    url("/corporate/./images/desktop_wave_1.png"),
    linear-gradient(90deg, #333842 0%, #00aacc 100%);
  background-repeat: no-repeat, no-repeat;
  background-size:
    196px auto,
    100% 100%;
  background-position:
    right top,
    0 0;
}

.program-side-card.wave-checkups {
  background-image:
    url("/corporate/./images/desktop_wave_2.png"),
    linear-gradient(90deg, #333842 0%, #00aacc 100%);
  background-repeat: no-repeat, no-repeat;
  background-size:
    134px auto,
    100% 100%;
  background-position:
    right top,
    0 0;
}

.program-side-card.wave-deposits {
  background-image:
    url("/corporate/./images/desktop_wave_3.png"),
    linear-gradient(90deg, #333842 0%, #00aacc 100%);
  background-repeat: no-repeat, no-repeat;
  background-size:
    118px auto,
    100% 100%;
  background-position:
    right top,
    0 0;
}

.program-side-card .button {
  width: 100%;
  margin-top: auto;
  padding: 18px 24px;
  border-radius: 30px;
}

.program-certificates {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.certificate-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  min-height: 168px;
  border-radius: 14px;
  padding: 14px;
}

.certificate-card--5000 {
  background-image:
    url("/corporate/./images/gift_box.png"),
    linear-gradient(112deg, #cb7dc0 0%, #ab7ed2 100%);
  background-repeat: no-repeat, no-repeat;
  background-size:
    150px auto,
    100% 100%;
  background-position:
    left bottom,
    0 0;
}

.certificate-card--10000 {
  background-image:
    url("/corporate/./images/gift_box.png"),
    linear-gradient(112deg, #7f8bd2 0%, #89bae3 100%);
  background-repeat: no-repeat, no-repeat;
  background-size:
    150px auto,
    100% 100%;
  background-position:
    left bottom,
    0 0;
}

.certificate-card__logo {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  width: 102px;
  height: auto;
}

.certificate-card__price {
  grid-column: 2;
  grid-row: 3;
  justify-self: end;
  align-self: end;
  margin: 0;
  color: #fff;
  font-size: 32.06px;
  line-height: 1.0435;
  font-weight: 700;
}

.program-side-card.is-cert {
  background-color: #333842;
  background-image: none;
}

@media (min-width: 1264px) {
  .program-side-card.wave-health .program-logos,
  .program-side-card.wave-checkups .program-logos,
  .program-side-card.wave-deposits .program-logos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 14px;
  }
}

@media (max-width: 1263px) {
  .programs h2 {
    margin-bottom: 12px;
  }

  .program-tabs {
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
  }

  .program-tab {
    font-size: 18px;
    padding: 12px 18px;
  }

  .program-tab__long {
    display: none;
  }

  .program-tab__short {
    display: inline;
  }

  .program-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .program-left-stack {
    gap: 24px;
  }

  .program-main-card {
    gap: 32px;
    padding: 40px;
  }

  .program-points {
    max-width: 100%;
    gap: 18px;
  }

  .program-list-icon {
    display: none;
  }

  .program-side-card {
    gap: 32px;
    padding: 40px;
  }

  .program-side-card.is-cert {
    background-image: linear-gradient(90deg, #333842 0%, #00aacc 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .program-side-card.wave-health .program-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: flex-start;
    align-items: center;
    column-gap: 18px;
    row-gap: 18px;
  }

  .program-side-card.wave-health .program-logos img[src$="servier_logo.svg"] {
    width: 166.66px;
    height: 34px;
  }

  .program-side-card.wave-health .program-logos img[src$="soglasie_logo.svg"] {
    width: 234px;
    height: 48px;
  }

  .program-side-card.wave-health
    .program-logos
    img[src$="ingosstrakh_logo.svg"] {
    grid-column: 1 / -1;
    width: 245px;
    height: 27px;
  }

  .program-side-card.wave-checkups .program-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 32px;
  }

  .program-side-card.wave-checkups .program-logos img[src$="tatneft_logo.svg"] {
    width: 285px;
    height: 32px;
    filter: brightness(0) invert(1);
  }

  .program-side-card.wave-checkups
    .program-logos
    img[src$="ingosstrakh_logo.svg"] {
    width: 245px;
    height: 29px;
  }

  .program-side-card.wave-deposits .program-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 32px;
  }

  .program-side-card.wave-deposits
    .program-logos
    img[src$="region_trans_gas.svg"] {
    width: 299px;
    height: 63px;
  }

  .program-side-card.wave-deposits .program-logos img[src$="gigant.svg"] {
    width: 226px;
    height: 136px;
  }

  .program-side-card.wave-health {
    background-image:
      url("/corporate/./images/tablet_wave_1.png"),
      linear-gradient(90deg, #333842 0%, #00aacc 100%);
    background-size:
      342px auto,
      100% 100%;
    background-position:
      right top,
      0 0;
  }

  .program-side-card.wave-checkups,
  .program-side-card.wave-deposits {
    background-image:
      url("/corporate/./images/tablet_wave_2_3.png"),
      linear-gradient(90deg, #333842 0%, #00aacc 100%);
    background-size:
      288px auto,
      100% 100%;
    background-position:
      right top,
      0 0;
  }

  .program-certificates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .certificate-card {
    min-height: 175px;
  }

  .certificate-card--5000,
  .certificate-card--10000 {
    background-size:
      140px auto,
      100% 100%;
    background-position:
      left bottom,
      0 0;
  }

  .certificate-card__logo {
    width: 86px;
  }

  .certificate-card__price {
    font-size: 33.35px;
    line-height: 1.0435;
  }
}

@media (max-width: 1263px) and (min-width: 768px) {
  .program-side-card.wave-health .program-logos {
    align-items: center;
  }

  .program-side-card.wave-health .program-logos img[src$="servier_logo.svg"] {
    transform: translateY(-2px);
  }
}

@media (max-width: 767px) {
  .programs h2 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.17;
  }

  .program-tabs {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .program-tab {
    min-height: 56px;
    padding: 16px;
    font-size: 16px;
    line-height: 1.5;
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .program-layout {
    gap: 12px;
  }

  .program-left-stack {
    gap: 12px;
  }

  .program-main-card,
  .program-discount,
  .program-side-card {
    border-radius: 22px;
  }

  .program-main-card {
    gap: 12px;
    padding: 16px;
  }

  .program-main-card h3 {
    font-size: 24px;
    line-height: 1.17;
  }

  .program-points {
    gap: 12px;
  }

  .program-points li {
    gap: 12px;
  }

  .program-step-text {
    gap: 2px;
  }

  .program-points h4 {
    font-size: 20px;
    line-height: 1.17;
  }

  .program-points p {
    font-size: 16px;
    line-height: 1.17;
  }

  .program-side-card {
    gap: 24px;
    padding: 16px;
  }

  .program-side-card h3 {
    font-size: 24px;
    line-height: 1.17;
  }

  .program-side-card.wave-health,
  .program-side-card.wave-checkups,
  .program-side-card.wave-deposits {
    background-image: linear-gradient(90deg, #333842 0%, #00aacc 100%);
    background-size: auto;
    background-position: 0 0;
  }

  .program-logos {
    row-gap: 12px;
  }

  .program-side-card.wave-health .program-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: center;
    align-items: center;
    column-gap: 12px;
    row-gap: 18px;
  }

  .program-side-card.wave-health .program-logos img[src$="servier_logo.svg"] {
    width: 137px;
    height: 28px;
  }

  .program-side-card.wave-health .program-logos img[src$="soglasie_logo.svg"] {
    width: 137px;
    height: 28px;
  }

  .program-side-card.wave-health
    .program-logos
    img[src$="ingosstrakh_logo.svg"] {
    grid-column: 1 / -1;
    width: 245px;
    height: 27px;
  }

  .program-side-card.wave-checkups .program-logos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
  }

  .program-side-card.wave-checkups .program-logos img[src$="tatneft_logo.svg"] {
    width: 234px;
    height: 26px;
    filter: brightness(0) invert(1);
  }

  .program-side-card.wave-checkups
    .program-logos
    img[src$="ingosstrakh_logo.svg"] {
    width: 245px;
    height: 27px;
  }

  .program-side-card.wave-deposits .program-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
  }

  .program-side-card.wave-deposits
    .program-logos
    img[src$="region_trans_gas.svg"] {
    width: 163px;
    height: 34px;
  }

  .program-side-card.wave-deposits .program-logos img[src$="gigant.svg"] {
    width: 114px;
    height: 68px;
  }

  .program-list-icon {
    display: none;
  }

  .program-certificates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .certificate-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto 1fr auto;
    align-items: start;
    min-height: 80px;
    border-radius: 5.333px;
    padding: 0;
  }

  .certificate-card--5000,
  .certificate-card--10000 {
    background-size:
      62px auto,
      100% 100%;
    background-position:
      left bottom,
      0 0;
  }

  .certificate-card__logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    width: 49px;
    margin-top: 8px;
    margin-right: 6.82px;
  }

  .certificate-card__price {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    align-self: end;
    margin: 0 6.67px 6.67px 0;
    font-size: 15.333px;
    line-height: 1.04;
  }

  .program-discount {
    padding: 12px;
    gap: 12px;
  }

  .program-discount img {
    width: 56px;
    height: 56px;
  }

  .program-discount__title {
    font-size: 28px;
  }
}
.bionmax .section-head {
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  border-radius: 40px;
}

.bionmax h2 {
  flex: 1;
  margin-bottom: 0;
  color: #35a097;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  line-height: 1.17;
  font-weight: 700;
}

.bionmax .section-head .button,
.bionmax-mobile-cta {
  width: 205px;
  height: 72px;
  padding: 24px 36px;
  border-radius: 40px;
  background: #35a097;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.bionmax .section-head .button img,
.bionmax-mobile-cta img {
  width: 18px;
  height: 18px;
}

.bionmax-grid {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.bionmax-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 22px;
  background: #333842;
}

.bionmax-card h3 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  line-height: 1.17;
  font-weight: 700;
  color: #fff;
}

.bionmax-card p {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
}

.bionmax-card--main {
  height: 300px;
  align-items: flex-start;
}

.bionmax-card--main h3,
.bionmax-card--main p {
  max-width: 100%;
}

.bionmax-card--advantage,
.bionmax-card--accent {
  gap: 16px;
}

.bionmax-card--accent {
  background: #35a097;
}

.bionmax-card--accent h3 {
  font-weight: 900;
}

.bionmax-mobile-cta {
  display: none;
}

@media (max-width: 1263px) {
  .bionmax .section-head {
    margin-bottom: 24px;
  }

  .bionmax-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bionmax-card {
    padding: 24px;
  }

  .bionmax-card--main {
    height: auto;
    align-items: stretch;
  }
}

@media (max-width: 767px) {
  .bionmax .section-head {
    margin-bottom: 24px;
  }

  .bionmax .section-head .button {
    display: none;
  }

  .bionmax h2 {
    font-size: 24px;
    line-height: 1.17;
    color: #fff;
  }

  .bionmax-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .bionmax-card {
    gap: 12px;
    height: auto;
    padding: 16px;
  }

  .bionmax-card h3 {
    font-size: 20px;
  }

  .bionmax-card p {
    font-size: 16px;
  }

  .bionmax-card--accent {
    order: -1;
  }

  .bionmax-mobile-cta {
    display: inline-flex;
    width: 100%;
    height: 72px;
    padding: 24px 36px;
    border-radius: 40px;
    margin-top: 12px;
  }
}
.route h2 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.17;
  font-weight: 700;
  color: #fff;
}

.route-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.route-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: #333842;
  border-radius: 22px;
}

.route-card h3 {
  display: none;
}

.route-card h4 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 1.17;
  font-weight: 700;
  color: #fff;
}

.route-card h4::before {
  content: attr(data-step-mobile) ". ";
}

.route-card p {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
}

.route-card--with-img {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 12px;
  row-gap: 12px;
}

.route-card--with-img .route-icon {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
}

.route-card--with-img h4 {
  grid-column: 1;
  grid-row: 1;
  padding-right: 12px;
}

.route-card--with-img p {
  grid-column: 1 / -1;
  grid-row: 2;
}

.route-icon[src$="people.svg"] {
  width: 52px;
  height: 47px;
}

.route-icon[src$="map_mark.svg"] {
  width: 32px;
  height: 48px;
}

.route-icon[src$="list.svg"] {
  width: 40px;
  height: 49px;
}

.route-icon[src$="heart.svg"] {
  width: 45px;
  height: 46px;
}

.route-icon {
  max-width: none;
  object-fit: contain;
  flex: 0 0 auto;
}

@media (min-width: 768px) and (max-width: 1263px) {
  .route h2 {
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 1;
  }

  .route-card {
    gap: 16px;
    padding: 24px;
  }

  .route-card h4 {
    font-size: 32px;
  }

  .route-card h4::before {
    content: attr(data-step) ". ";
  }

  .route-card p {
    font-size: 20px;
  }

  .route-card--with-img {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 24px;
    row-gap: 16px;
  }

  .route-card--with-img .route-icon {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .route-card--with-img h4 {
    grid-column: 1;
    grid-row: 1;
    padding-right: 12px;
  }

  .route-card--with-img p {
    grid-column: 1;
    grid-row: 2;
  }

  .route-icon[src$="people.svg"] {
    width: 113px;
    height: 100px;
  }

  .route-icon[src$="map_mark.svg"] {
    width: 73px;
    height: 105px;
  }

  .route-icon[src$="list.svg"] {
    width: 87px;
    height: 100px;
  }

  .route-icon[src$="heart.svg"] {
    width: 99px;
    height: 100px;
  }

  .route-card--wide.route-card--with-img p {
    max-width: none;
  }
}

@media (min-width: 1264px) {
  .route h2 {
    margin-bottom: 48px;
    font-size: 40px;
    line-height: 1;
  }

  .route-grid {
    --route-gap: 24px;
    --route-pair-width: calc(100% - var(--route-gap));
    display: flex;
    flex-wrap: wrap;
    gap: var(--route-gap);
  }

  .route-grid > .route-card {
    flex: 0 0 100%;
    min-height: 0;
  }

  .route-grid > .route-card:nth-child(1) {
    flex-basis: calc(var(--route-pair-width) * 0.3620968);
    min-height: 305px;
  }

  .route-grid > .route-card:nth-child(2) {
    flex-basis: calc(var(--route-pair-width) * 0.6379032);
    min-height: 305px;
  }

  .route-grid > .route-card:nth-child(3) {
    flex-basis: calc(var(--route-pair-width) * 0.4508065);
    min-height: 277px;
  }

  .route-grid > .route-card:nth-child(4) {
    flex-basis: calc(var(--route-pair-width) * 0.5491935);
    min-height: 277px;
  }

  .route-grid > .route-card:nth-child(5) {
    flex-basis: calc(var(--route-pair-width) * 0.3548387);
  }

  .route-grid > .route-card:nth-child(6) {
    flex-basis: calc(var(--route-pair-width) * 0.6451613);
  }

  .route-card--wide {
    flex-basis: 100% !important;
  }

  .route-card {
    gap: 16px;
    padding: 24px;
  }

  .route-card h3 {
    display: block;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 64px;
    line-height: 1.17;
    font-weight: 700;
    color: #fff;
  }

  .route-card h4 {
    font-size: 32px;
  }

  .route-card h4::before {
    content: none;
  }

  .route-card p {
    font-size: 20px;
  }

  .route-card--with-img {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 24px;
    row-gap: 16px;
  }

  .route-card--with-img .route-icon {
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: center;
  }

  .route-card--with-img h3,
  .route-card--with-img h4,
  .route-card--with-img p {
    grid-column: 2;
  }

  .route-card--with-img h3 {
    grid-row: 1;
  }

  .route-card--with-img h4 {
    grid-row: 2;
  }

  .route-card--with-img p {
    grid-row: 3;
  }

  .route-icon[src$="people.svg"] {
    width: 169px;
    height: 144px;
  }

  .route-icon[src$="map_mark.svg"] {
    width: 101px;
    height: 151px;
  }

  .route-icon[src$="list.svg"] {
    width: 123px;
    height: 143px;
  }

  .route-icon[src$="heart.svg"] {
    width: 141px;
    height: 144px;
  }

  .route-card--wide.route-card--with-img p {
    grid-column: 2;
    grid-row: 3;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .route-card--wide.route-card--with-img p {
    grid-column: 1;
    grid-row: 2;
    max-width: 230px;
  }
}
.application h2 {
  margin-bottom: 48px;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.application-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(90deg, #333842 0%, #00aacc 100%);
}

.application-info {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 120px;
  padding: 24px 0;
}

.application-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.application-info h3 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  line-height: 1.17;
  font-weight: 700;
  color: #fff;
}

.application-info p {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
}

.application-contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.contact-item img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.contact-item span {
  display: block;
  margin-bottom: 0;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}

.application-form {
  flex: 0 0 694px;
  width: 694px;
  max-width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  color: #000;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.application-form label {
  display: block;
}

.application-form .field {
  background-color: transparent;
}

.application-form .field-input-wrap {
  position: relative;
}

.application-form .field-input-wrap > svg {
  position: absolute;
  left: 27px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.application-form .field-input-wrap > input {
  padding-left: 54px;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"] {
  width: 100%;
  height: 44px;
  border-radius: 30px;
  border: 1px solid #e3e7ee;
  padding: 12px 24px 12px 56px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
  background: #fff;
}

.application-form input::placeholder {
  color: #667085;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

.form-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 66%;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
}

.application-form label.consent {
  display: flex;
}

.consent > span {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
}

.consent-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent input {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  border: 1px solid #e2e4e9;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.consent input:focus-visible {
  outline: 2px solid rgb(18 182 223 / 45%);
  outline-offset: 1px;
}

.consent input:checked {
  border-color: #00aacc;
  background-color: #00aacc;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 7.5l2.3 2.3L11 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.application-form .button {
  border-radius: 30px;
  min-width: 160px;
  padding: 18px 24px;
  background: linear-gradient(
    -45deg,
    rgb(105 201 225 / 100%) 0%,
    rgb(0 163 204 / 100%) 100%
  );
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.application-form .button img {
  width: 18px;
  height: 18px;
}

.form-status {
  margin-top: 10px;
  min-height: 20px;
  color: #8fe4fb;
  font-size: 0.95rem;
}

.disclaimer {
  padding-top: 8px;
  padding-bottom: 34px;
}

.disclaimer p {
  text-align: center;
  color: #98a1b3;
  font-size: clamp(1.35rem, 2vw, 2.9rem);
  line-height: 1.2;
}

@media (max-width: 1263px) {
  .application h2 {
    margin-bottom: 48px;
  }

  .application-card {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px;
  }

  .application-info {
    gap: 24px;
    padding: 0;
  }

  .application-contacts {
    flex-direction: row;
    gap: 24px;
  }

  .application-form {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }

  .consent {
    max-width: 72%;
  }
}

@media (max-width: 767px) {
  .application h2 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.17;
  }

  .application-info h3 {
    font-size: 24px;
    line-height: 1.17;
  }

  .application-card {
    padding: 24px 16px;
    gap: 24px;
  }

  .application-info {
    padding: 0;
  }

  .application-copy {
    gap: 16px;
  }

  .application-contacts {
    flex-direction: column;
    gap: 24px;
  }

  .application-form {
    padding: 16px;
    border-radius: 20px;
  }

  .form-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .consent {
    width: 100%;
    max-width: 100%;
  }

  .application-form .button {
    width: 100%;
  }

  .disclaimer {
    padding-top: 2px;
    padding-bottom: 20px;
  }
}

body.corporate-page .account-btn path,
body.corporate-page .basket-btn path {
  stroke: #fff !important;
}

.basket-btn__info {
  color: #fff;
}

.page-header2--type_on-content2 .account-btn .account-btn__info {
  color: #fff;
}

.page-header2--type_on-content2 .page-header2__nav-link {
  color: #fff !important;
}

.page-header2--type_on-content .account-btn {
  color: #fff !important;
}

.page-header2--type_on-content .page-header2__nav-link {
  color: #fff !important;
}

/* End */


/* Start:/local/components/lab4u/become.partner.form/templates/corporate/style.css?17821187251337*/
.field--error input {
  border-color: #e53935;
  outline-color: #e53935;
}

.field-error-text {
  display: block;
  font-size: 12px;
  color: #e53935;
  margin-top: 4px;
}

.page-footer-wrap .page-footer {
  background: var(--bg-main);
}

.corporate-page .page-footer .paragraph2 {
  color: #b1b7c3;
}
.page-footer-wrap .paragraph,
.page-footer-wrap .link2,
.page-footer-wrap .page-footer__list-title,
.page-footer-wrap .page-footer__list-title {
  color: #b1b7c3;
}

.corporate-page .select-town {
  color: black;
  &::before {
    color: balck;
  }
}

.page-header2.page-header2--type_on-search.page-header2--type_on-content2 {
  background-color: var(--bg-main);
}

.page-header2.page-header2--type_on-search.page-header2--type_on-content {
  background-color: var(--bg-main);
}

.secondary-social-link.secondary-social-link--tme {
  background: transparent;
}

.page-header2--type_on-content .page-header2__nav-link {
  color: #fff !important;
}

body.corporate-page .header_search_placeholder path {
  color: #fff !important;
}

.page-header2__inner .inner.body_md path {
  stroke: #fff !important;
}

.burger-btn__icon path {
  color: #fff !important;
  stroke: #fff !important;
}

.button--primary .arrow-send {
  stroke: #fff;
}

.contact-item .contact-bold {
  font-weight: 600;
}

.application-copy.hidden {
  display: none;
}

/* End */
/* /corporate/styles.css?177812714944429 */
/* /local/components/lab4u/become.partner.form/templates/corporate/style.css?17821187251337 */
