

/* Start:/local/templates/landing_oano/assets/css/template_styles.css?178888174119103*/
@charset "UTF-8";
@font-face {
  font-family: "Inter";
  src: url("/local/templates/landing_oano/assets/css/../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-bold";
  src: url("/local/templates/landing_oano/assets/css/../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*-------------------------------------------------*/
:root {
  --color-light: #FFFFFF;
  --color-dark: #25282B;
  --color-accent-dark: #538d9a;
  --color-accent-light: #f6f5e9;
  --color-alt-text: #a49e5b;
  --color-header: #9abbbf;
  --font-family-regular: 'Inter', sans-serif;
  --font-family-bold: 'Inter-bold', sans-serif;
  --container-width: 80rem;
  --container-padding-x: 1.6666666667rem;
  --container-padding-x-mob: 0.6666666667rem;
  --transition-duration: 0.2s;
  --border: none;
  --100vw: calc(100vw - var(--scrollbar-width));
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}
@media (max-width: 480.98px) {
  .container {
    padding-inline: var(--container-padding-x-mob);
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (max-width: 767.98px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 767.98px) {
  .visible-mobile {
    display: none !important;
  }
}

.circle-icon {
  --circleSize: 2.8888888889rem;
  --circleMarginLeft: 1.1111111111rem;
  position: relative;
  min-height: var(--circleSize);
  padding-right: calc(var(--circleSize) + var(--circleMarginLeft));
}
@media (max-width: 1440.98px) {
  .circle-icon {
    --circleSize: 2.4444444444rem;
    --circleMarginLeft: 0.7777777778rem;
  }
}
@media (max-width: 767.98px) {
  .circle-icon {
    --circleSize: 2.2222222222rem;
  }
}

html {
  font-size: 18px;
}

body {
  font-size: clamp(0.7777777778rem, 0.7333333333rem + 0.25vw, 1rem);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-family-regular);
  line-height: 1.5;
  color: var(--color-dark);
}

.wrapper {
  position: relative;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  flex: 1;
}

.wrapper > * {
  min-width: 0;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
main.main-page {
  background-color: var(--color-light);
}

section {
  padding-block: clamp(2.6666666667rem, 2.1555555556rem + 2.875vw, 5.2222222222rem);
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  color: var(--color-accent-dark);
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  font-family: var(--font-family-bold);
}

h1, .h1 {
  font-size: clamp(1.3333333333rem, 1.2rem + 0.75vw, 2rem);
  line-height: 1.5;
}

h2, .h2 {
  font-size: clamp(1rem, 0.8888888889rem + 0.625vw, 1.5555555556rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

h3, .h3 {
  font-size: clamp(0.8888888889rem, 0.8444444444rem + 0.25vw, 1.1111111111rem);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

[class*=-ibg] {
  position: relative;
}
[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg] {
  position: relative;
}
[class*=-ibg] svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

li::marker {
  color: var(--color-accent-dark);
  font-size: 1.2em;
}

.header {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 106.6666666667rem;
  height: auto;
  margin-inline: auto;
}
.header-title {
  margin-block: clamp(0.5555555556rem, 0.3555555556rem + 1.125vw, 1.5555555556rem);
  color: var(--color-light);
  font-size: clamp(1rem, 0.8rem + 1.125vw, 2rem);
}
.header-wrapper {
  background-color: var(--color-header);
}
.header-banner {
  position: relative;
}

@media (min-width: 767.98px) {
  img.header-banner__image {
    display: block;
    max-width: 100%;
    object-fit: cover;
    height: 43.8333333333rem;
  }
}

.header__body {
  align-content: center;
  height: auto;
  text-align: center;
}

.logo {
  width: clamp(2.6666666667rem, 2.2888888889rem + 2.125vw, 4.5555555556rem);
  height: clamp(2.2777777778rem, 1.9555555556rem + 1.8125vw, 3.8888888889rem);
}

@media (min-width: 767.98px) {
  .header-note__body {
    position: absolute;
    inset: 0;
  }
}
@media (max-width: 767.98px) {
  .header-note__body.container {
    padding-inline: 0.8888888889rem;
  }
}
@media (min-width: 767.98px) {
  .header-note__block {
    padding: 1.7777777778rem;
    border-radius: 0.8888888889rem;
    width: 100%;
  }
}
.header-note__block {
  padding-top: 1.7777777778rem;
  padding-bottom: 2.6666666667rem;
  background-color: var(--color-light);
}
.header-note__title {
  margin-bottom: clamp(0.4444444444rem, 0.3555555556rem + 0.5vw, 0.8888888889rem);
}
@media (max-width: 480.98px) {
  .header-note__title {
    line-height: 1.3;
  }
}
.header-note__description {
  margin-bottom: clamp(1.7777777778rem, 1.5111111111rem + 1.5vw, 3.1111111111rem);
  max-width: 27.7777777778rem;
}
.header-note__description span {
  color: var(--color-accent-dark);
  font-family: var(--font-family-bold);
}
.header-note__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 84px 14px;
  background-color: var(--color-accent-dark);
  color: var(--color-light);
  font-family: var(--font-family-bold);
  line-height: 1.2;
  letter-spacing: 0.02em;
  border-radius: 0.4444444444rem;
  text-decoration: none;
  transition-duration: var(--transition-duration);
}
@media (max-width: 480.98px) {
  .header-note__btn {
    width: 100%;
  }
}
@media (any-hover: hover) {
  .header-note__btn:hover {
    background-color: #68a7b5;
  }
}
@media (any-hover: none) {
  .header-note__btn:active {
    background-color: #68a7b5;
  }
}

@media (max-width: 767.98px) {
  section.math-club {
    padding-inline: unset;
    padding-block: unset;
    padding-bottom: clamp(2.6666666667rem, 2.1555555556rem + 2.875vw, 5.2222222222rem);
  }
}

.math-club {
  max-width: 106.6666666667rem;
  width: 100%;
  margin-inline: auto;
  background-color: var(--color-accent-light);
}
.math-club__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1.3333333333rem;
}
@media (max-width: 767.98px) {
  .math-club__inner {
    flex-direction: column;
  }
}
.math-club__description {
  display: flex;
  max-width: 35.6666666667rem;
  max-height: 100%;
  flex-direction: column;
}
@media (min-width: 767.98px) {
  .math-club__description {
    padding-left: 1.7777777778rem;
  }
}
@media (max-width: 767.98px) {
  .math-club__description {
    margin-bottom: clamp(0.6666666667rem, 0.5333333333rem + 0.75vw, 1.3333333333rem);
  }
}
.math-club__block-text {
  padding-right: clamp(0rem, -2.5185185185rem + 5.9027777778vw, 3.7777777778rem);
  padding-block: 1.7777777778rem;
}
.math-club__title {
  margin-bottom: clamp(0.8888888889rem, 0.8rem + 0.5vw, 1.3333333333rem);
}
.math-club__text {
  line-height: 1.5;
}
.math-club__text:not(:last-child) {
  margin-bottom: clamp(0.8888888889rem, 0.8rem + 0.5vw, 1.3333333333rem);
}
.math-club__image {
  flex: 1 0 54%;
}
.math-club__image img {
  border-radius: clamp(0.4444444444rem, 0.3555555556rem + 0.5vw, 0.8888888889rem);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 767.98px) {
  .math-classes__title, .accordion__title {
    padding-left: 1.7777777778rem;
  }
}
.math-classes__title, .accordion__title {
  line-height: 1.3;
  margin-bottom: clamp(1.7777777778rem, 1.5111111111rem + 1.5vw, 3.1111111111rem);
}

@media (min-width: 767.98px) {
  .math-classes__subtitle {
    padding-left: 1.7777777778rem;
  }
}
.math-classes__subtitle {
  position: relative;
  color: var(--color-alt-text);
  margin-bottom: clamp(1.8888888889rem, 1.8rem + 0.5vw, 2.3333333333rem);
}
@media (min-width: 767.98px) {
  .math-classes__subtitle:after {
    left: 1.7777777778rem;
  }
}
.math-classes__subtitle:after {
  content: "";
  position: absolute;
  bottom: -0.5555555556rem;
  left: 0;
  width: 6.6666666667rem;
  height: 0.2222222222rem;
  background-color: var(--color-alt-text);
}

.action-block {
  display: flex;
  column-gap: 1.3333333333rem;
}
.action-block__text, .action-block__images {
  width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: clamp(0.8888888889rem, 0.8rem + 0.5vw, 1.3333333333rem);
}
.action-block__item {
  border: 1.5px solid var(--color-dark);
  border-radius: clamp(0.4444444444rem, 0.3555555556rem + 0.5vw, 0.8888888889rem);
  padding: clamp(0.6666666667rem, 0.4444444444rem + 1.25vw, 1.7777777778rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.action-block__item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.8888888889rem;
}
.action-block__item-header svg {
  width: 3.1111111111rem;
  height: 3.1111111111rem;
}
.action-block__item_img img {
  border-radius: clamp(0.4444444444rem, 0.3555555556rem + 0.5vw, 0.8888888889rem);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .action-block {
    flex-direction: column;
    row-gap: 1.3333333333rem;
  }
  .action-block__text, .action-block__images {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .action-block__text, .action-block__images {
    grid-template-columns: 1fr;
  }
}
.full-width {
  grid-row: span 2;
}

.whom {
  max-width: 106.6666666667rem;
  width: 100%;
  margin-inline: auto;
  background-color: var(--color-accent-dark);
}
.whom__subtitle {
  position: relative;
  color: var(--color-light);
  margin-bottom: clamp(2.3333333333rem, 2.1777777778rem + 0.875vw, 3.1111111111rem);
}
@media (min-width: 767.98px) {
  .whom__subtitle {
    padding-left: 1.7777777778rem;
  }
}
@media (min-width: 767.98px) {
  .whom__subtitle:after {
    left: 1.7777777778rem;
  }
}
.whom__subtitle:after {
  content: "";
  position: absolute;
  bottom: -0.5555555556rem;
  left: 0;
  width: 6.6666666667rem;
  height: 0.2222222222rem;
  background-color: var(--color-light);
}

.whom__cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3333333333rem;
}
@media (max-width: 767.98px) {
  .whom__cards {
    flex-direction: column;
    row-gap: clamp(0.8888888889rem, 0.8rem + 0.5vw, 1.3333333333rem);
  }
}

.whom-card {
  position: relative;
  background: linear-gradient(167deg, #fff 0%, #538d9a 100%);
  border-radius: clamp(0.4444444444rem, 0.3555555556rem + 0.5vw, 0.8888888889rem);
  overflow: hidden;
}
.whom-card__title {
  position: absolute;
  left: clamp(0.6666666667rem, 0.4444444444rem + 1.25vw, 1.7777777778rem);
  top: clamp(0.6666666667rem, 0.4444444444rem + 1.25vw, 1.7777777778rem);
  right: clamp(0.6666666667rem, 0.4444444444rem + 1.25vw, 1.7777777778rem);
  color: var(--color-accent-dark);
  max-width: 22.2222222222rem;
}

@media (max-width: 1200px) {
  .whom__cards {
    flex-wrap: wrap;
    gap: 1.2222222222rem;
  }
  .whom-card {
    width: 48%;
  }
  .whom-card img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .whom-card {
    width: 100%;
    max-height: 19.2222222222rem;
  }
  .whom-card__title {
    max-width: 100%;
  }
  .whom-card img {
    width: 100%;
    max-height: 19.2222222222rem;
    object-fit: cover;
  }
}
.main-spoller.main-spoller_accordion {
  background-color: var(--color-accent-light);
  column-gap: 0.7777777778rem;
  padding: clamp(0.6666666667rem, 0.4444444444rem + 1.25vw, 1.7777777778rem);
}
.main-spoller.main-spoller_accordion__body {
  display: flex;
  align-items: center;
  column-gap: clamp(0.6666666667rem, 0.5333333333rem + 0.75vw, 1.3333333333rem);
}
@media (max-width: 767.98px) {
  .main-spoller.main-spoller_accordion__body {
    align-items: start;
  }
}

.main-spoller-body.main-spoller-body_accordion {
  background-color: var(--color-accent-light);
  padding: clamp(0.6666666667rem, 0.4444444444rem + 1.25vw, 1.7777777778rem);
}

.accordion-block__title {
  color: var(--color-dark);
}

.s-down-spoller-svg.s-down-spoller-svg_accordion {
  min-width: clamp(1.2222222222rem, 1.1333333333rem + 0.5vw, 1.6666666667rem);
  min-height: clamp(1.2222222222rem, 1.1333333333rem + 0.5vw, 1.6666666667rem);
}

.main-spoller__wrapper {
  margin-bottom: clamp(0.6666666667rem, 0.5333333333rem + 0.75vw, 1.3333333333rem);
  border-radius: clamp(0.4444444444rem, 0.3555555556rem + 0.5vw, 0.8888888889rem);
}

.main-spoller {
  display: flex;
  background-color: var(--color-light);
  width: 100%;
  border-radius: clamp(0.4444444444rem, 0.3555555556rem + 0.5vw, 0.8888888889rem);
  padding: clamp(0.6666666667rem, 0.5333333333rem + 0.75vw, 1.3333333333rem);
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: border-radius 0.5s ease-in-out, background-color 0.2s ease;
  cursor: pointer;
  outline: none;
  touch-action: manipulation;
  will-change: border-radius;
  pointer-events: auto;
}

.main-spoller:active {
  background-color: rgba(0, 178, 181, 0.1); /* Visual feedback on touch */
}

.spoller-no-radius {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.s-down-spoller-svg {
  min-width: clamp(1.3333333333rem, 1.2444444444rem + 0.5vw, 1.7777777778rem);
  min-height: clamp(1.3333333333rem, 1.2444444444rem + 0.5vw, 1.7777777778rem);
  transition: transform 0.5s ease;
  color: transparent;
  transform-origin: center;
  will-change: transform;
}

.spoller-arrow-rotate {
  transform: rotate(180deg);
}

.main-spoller__list {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  background-color: #fff;
  border-radius: 0 0 0.8888888889rem 0.8888888889rem;
  will-change: max-height, opacity;
  display: none;
}

.spoller-active .main-spoller__list {
  opacity: 1;
  height: auto;
  display: block;
}

.main-spoller-body {
  padding: clamp(0.6666666667rem, 0.5333333333rem + 0.75vw, 1.3333333333rem);
}

/*# sourceMappingURL=template_styles.css.map */

/* End */
/* /local/templates/landing_oano/assets/css/template_styles.css?178888174119103 */
