:root {
  --dark: #073B4C;
  --red: #E42129;
  --yellow: #FFD166;
  --font1: 'Nunito', sans-serif;
  --font2: 'Comfortaa', cursive;
}
@font-face {
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v24/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHc3ig.ttf) format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v24/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM.ttf) format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v24/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM.ttf) format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v24/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM.ttf) format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v24/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTM.ttf) format('truetype');
}
body {
  font-family: var(--font1);
  line-height: 150%;
  font-size: 18px;
  font-weight: 600;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
.wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body {
  color: var(--dark);
}
main {
  flex-grow: 1;
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
a:hover {
  opacity: 0.8;
  color: inherit;
}
.padding-mobile {
  padding-left: 20px;
  padding-right: 20px;
}
[class*="__container"] {
  width: 100%;
  max-width: 1118px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.heading {
  font-weight: 400;
  font-size: 108px;
  font-family: var(--font2);
  line-height: 149.5%;
  letter-spacing: 0.035em;
}
.heading.heading_light {
  color: var(--yellow);
}
.heading.heading_dark {
  color: var(--dark);
}
@media (max-width: 1365px) {
  .heading {
    font-weight: 400;
    font-size: 30px;
    line-height: 149.5%;
    letter-spacing: 0;
  }
}
.yellow-bg {
  background-color: var(--yellow);
  background-image: url(../img/index-yellow-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.expand-container .expand-content {
  display: none;
}
.expand-container.active .expand-content {
  display: block;
}
.header {
  background-color: var(--dark);
  color: var(--yellow);
  letter-spacing: 0.08em;
  font-weight: 400;
  font-size: 24px;
  position: relative;
}
.header__container {
  padding-top: 10px;
  padding-bottom: 8px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.header .header__logo_index {
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}
.header__section {
  justify-self: flex-end;
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}
.header__tel {
  position: relative;
  z-index: 6;
}
.header__hamburger {
  display: block;
  width: 81px;
  height: 81px;
  position: relative;
  z-index: 6;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url(../img/hamburger-icon.svg);
  transition: none;
}
.header__ul {
  display: none;
  position: absolute;
  list-style-type: none;
  margin: 0;
  min-width: 444px;
  background-color: var(--dark);
  z-index: 5;
  top: -25px;
  left: -48px;
  padding: 109px 59px 36px 44px;
  border: 4px solid var(--yellow);
  border-bottom-right-radius: 85px;
}
.header__li {
  display: flex;
  gap: 10px;
  padding: 15px 0;
  border-top: 2px solid var(--yellow);
  font-size: 24px;
}
.header__li:last-child {
  padding-bottom: 0;
}
.header__link {
  white-space: nowrap;
}
.header.menu_active .header__hamburger {
  background-image: url('../img/hamburger-cross-icon.svg');
  background-size: 30px 28px;
  background-position: center center;
}
.header.menu_active .header__ul {
  display: block;
}
@media (max-width: 1365px) {
  .header {
    letter-spacing: 0.08em;
    font-weight: 400;
    font-size: 16px;
    position: relative;
  }
  .header__container {
    padding-top: 10px;
    padding-bottom: 8px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
  }
  .header .header__logo_index {
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  .header__section {
    justify-self: flex-end;
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
  }
  .header__tel {
    position: relative;
    z-index: 6;
    font-size: 14px;
  }
  .header__tel img {
    width: 20px;
  }
  .header__hamburger {
    width: 51px;
    height: 51px;
  }
  .header__ul {
    display: none;
    position: absolute;
    list-style-type: none;
    margin: 0;
    min-width: 340px;
    background-color: var(--dark);
    z-index: 5;
    top: -25px;
    left: -48px;
    padding: 79px 20px 20px 43px;
    border: 4px solid var(--yellow);
    border-bottom-right-radius: 85px;
  }
  .header__li {
    display: flex;
    gap: 10px;
    padding: 15px 0;
    border-top: 2px solid var(--yellow);
    font-size: 14px;
  }
  .header__li img {
    width: 20px;
  }
  .header__li:last-child {
    padding-bottom: 0;
  }
  .header__link {
    white-space: nowrap;
  }
  .header.menu_active .header__hamburger {
    background-image: url('../img/hamburger-cross-icon.svg');
    background-size: 25px 25px;
    background-position: center center;
  }
  .header.menu_active .header__ul {
    display: block;
  }
}
@media (max-width: 520px) {
  .header__container {
    padding-top: 10px;
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
}
.footer {
  background-color: var(--dark);
  color: var(--yellow);
}
.footer__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}
.footer__logo {
  position: relative;
  transform: translateY(-20%);
}
.footer__phone {
  letter-spacing: 0.08em;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.36;
}
.footer__cta {
  font-weight: 400;
  font-size: 24px;
  font-family: var(--font2);
  background-color: var(--yellow);
  border-radius: 56.6333px;
  padding: 32px;
  position: relative;
  color: #fff;
}
.footer__cta:hover {
  color: #fff;
}
.footer__cta:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--red);
  border: 4px solid var(--yellow);
  border-radius: 56.6333px;
  transform: rotate(-4.55deg);
}
.footer__cta span {
  position: relative;
  z-index: 2;
}
@media (max-width: 1365px) {
  .footer {
    background-color: var(--dark);
    color: var(--yellow);
  }
  .footer__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }
  .footer__logo {
    position: relative;
    transform: translateY(-25%);
    margin-bottom: -5%;
  }
  .footer__phone {
    letter-spacing: 0.08em;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.36;
  }
  .footer__phone img {
    display: none;
  }
  .footer__cta {
    font-weight: 400;
    font-size: 24px;
    font-family: var(--font2);
    background-color: var(--yellow);
    border-radius: 56.6333px;
    padding: 16px 32px;
    position: relative;
    color: #fff;
    margin-bottom: 20px;
  }
  .footer__cta:hover {
    color: #fff;
  }
  .footer__cta:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--red);
    border: 4px solid var(--yellow);
    border-radius: 56.6333px;
    transform: rotate(-4.55deg);
  }
  .footer__cta span {
    position: relative;
    z-index: 2;
  }
}
.index-hero {
  background-image: url(../img/index-hero-bg.png);
  background-repeat: no-repeat;
  background-position: top -100px center;
  position: relative;
  z-index: 4;
}
.index-hero__holder {
  width: 100%;
  max-width: 1401px;
  margin: 0 auto;
  background-image: url(../img/index-hero-bg-inner.png);
  background-repeat: no-repeat;
  background-position-y: -80px;
  filter: shadow(0px 0px 1px rgba(0, 0, 0, 0.2));
  padding-bottom: 47px;
  border-bottom-right-radius: 150px;
}
.index-hero__container {
  max-width: 1181px;
}
.index-hero__top {
  width: 100%;
  max-width: 1072px;
  display: flex;
  gap: 48px;
  padding-top: 14px;
  padding-bottom: 14px;
  color: #fff;
  font-weight: 800;
}
.index-hero__logo {
  position: relative;
  display: block;
  transform: translateY(-45%);
}
.index-hero__text p {
  margin-bottom: 0;
}
.index-hero__text p:not(:last-child) {
  margin-bottom: 38px;
}
.index-hero__squares {
  display: flex;
  position: relative;
  transform: translate(10px, 20px);
  padding-bottom: 27px;
}
.index-hero__square {
  position: relative;
}
.index-hero__square:after {
  content: '';
  width: 280px;
  height: 280px;
  display: block;
  position: relative;
  bottom: 0;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.8;
  border: 4px solid var(--dark);
  border-radius: 6px;
}
.index-hero__square:nth-child(1) {
  transform: rotate(12deg);
}
.index-hero__square:nth-child(2) {
  transform: rotate(-8deg);
}
.index-hero__square:nth-child(3) {
  transform: rotate(5deg);
}
.index-hero__square:nth-child(4) {
  transform: rotate(-12deg) translateX(-15px);
}
.square {
  padding-bottom: 25px;
}
.square__text {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.375;
  opacity: 0.8;
}
.square:nth-child(1) .square__text {
  margin-left: 40px;
}
.square:nth-child(2) .square__text {
  margin-left: 94px;
}
.square:nth-child(3) .square__text {
  margin-left: 55px;
}
.square:nth-child(4) .square__text {
  margin-left: 105px;
}
.offer {
  display: flex;
  gap: 33px;
  align-items: flex-start;
}
.offer__text {
  font-weight: 700;
}
.offer__btn {
  background-color: var(--dark);
  border-radius: 56.6333px;
  padding: 23px 27px;
  position: relative;
}
.offer__btn span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: var(--font2);
  font-size: 24px;
  line-height: 1.125;
}
.offer__btn:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--red);
  border-radius: 56.6333px;
  transform: rotate(3.46deg);
  border: 4px solid var(--dark);
}
@media (max-width: 1365px) {
  .index-hero {
    background-image: none;
    background-color: var(--yellow);
  }
  .index-hero__holder {
    max-width: 320px;
    background-image: url(../img/index-hero-bg-mobile.png);
    background-repeat: no-repeat;
    background-position-y: -50px;
    background-position-x: center;
    filter: shadow(0px 0px 1px rgba(0, 0, 0, 0.2));
    padding-bottom: 0px;
    border-bottom-right-radius: 0;
  }
  .index-hero__container {
    max-width: 1181px;
  }
  .index-hero__top {
    width: 100%;
    max-width: 1072px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 0px;
    padding-bottom: 0px;
    color: #fff;
    font-weight: 800;
  }
  .index-hero__logo {
    position: relative;
    display: block;
    transform: translateY(-25%);
    margin-bottom: -10%;
    width: 156px;
    height: 105px;
    object-fit: contain;
  }
  .index-hero__text p {
    margin-bottom: 0;
    display: none;
    font-weight: 600;
    font-size: 11px;
    line-height: 142%;
  }
  .index-hero__text p:not(:last-child) {
    margin-bottom: 31px;
    display: block;
  }
  .index-hero__squares {
    display: flex;
    position: relative;
    transform: translate(-21px, -31px);
    padding-bottom: 9px;
  }
  .index-hero__square {
    position: relative;
  }
  .index-hero__square:after {
    content: '';
    width: 81px;
    height: 81px;
    display: block;
    position: relative;
    bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
    opacity: 0.8;
    border: 2px solid var(--dark);
    border-radius: 1.74333px;
  }
  .index-hero__square:nth-child(1) {
    transform: rotate(12deg);
  }
  .index-hero__square:nth-child(2) {
    transform: rotate(-8deg);
  }
  .index-hero__square:nth-child(3) {
    transform: rotate(5deg);
  }
  .index-hero__square:nth-child(4) {
    transform: rotate(-12deg) translateX(0);
  }
  .square {
    padding-bottom: 25px;
  }
  .square__text {
    font-weight: 600;
    font-size: 11px;
    line-height: 1.36;
    opacity: 1;
  }
  .square:nth-child(1) .square__text {
    margin-left: 16px;
  }
  .square:nth-child(2) .square__text {
    margin-left: 16px;
  }
  .square:nth-child(3) .square__text {
    margin-left: 16px;
  }
  .square:nth-child(4) .square__text {
    margin-left: 16px;
  }
  .offer {
    display: flex;
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
    margin-top: -50px;
    padding-bottom: 10px;
  }
  .offer__text {
    font-weight: 600;
    font-size: 11px;
    line-height: 1.45;
    margin-bottom: 0;
  }
  .offer__btn {
    background-color: var(--dark);
    border-radius: 34.2547px;
    padding: 15px 19px;
    position: relative;
    align-self: center;
  }
  .offer__btn span {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: var(--font2);
    font-size: 16px;
    line-height: 1.125;
  }
  .offer__btn:after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--red);
    border-radius: 56.6333px;
    transform: rotate(3.46deg);
    border: 4px solid var(--dark);
  }
}
.index-study {
  background-color: var(--dark);
  background-image: url('../img/index-study-bg.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -198px;
  padding-top: 236px;
  position: relative;
  z-index: 3;
}
.index-study:before {
  content: '';
  width: 630px;
  height: 630px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
  background-image: url(../img/red-lines-pseudo.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.index-study__container {
  padding-bottom: 101px;
}
.index-study__heading {
  margin-bottom: 48px;
}
.index-study__holder {
  display: flex;
  gap: 17px;
  margin-bottom: 95px;
}
.index-study__item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 27px;
  line-height: 1.37;
  color: var(--yellow);
  background-color: var(--yellow);
  width: 280px;
  height: 280px;
  border-radius: 6px;
  position: relative;
}
.index-study__item span {
  position: relative;
  z-index: 2;
}
.index-study__item:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--dark);
  border-radius: inherit;
  z-index: 2;
  border: 4px solid var(--yellow);
}
.index-study__item:nth-child(1):before {
  transform: rotate(-7.34deg);
}
.index-study__item:nth-child(2):before {
  transform: rotate(19.11deg);
}
.index-study__item:nth-child(3):before {
  transform: rotate(-17.33deg);
}
.index-study__item:nth-child(4):before {
  transform: rotate(8.8deg);
}
.index-study__text {
  color: var(--yellow);
}
.index-study__text strong {
  position: relative;
  font-size: 108px;
  letter-spacing: 0.03em;
  font-weight: 400;
  margin-right: 8px;
}
.index-study__text strong:before {
  content: attr(data-before);
  position: absolute;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.02em;
  top: 0;
  left: 0;
}
.index-study__text strong:after {
  content: attr(data-after);
  position: absolute;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.02em;
  bottom: 0;
  right: 0;
}
.index-study__text em {
  margin-right: 100px;
}
.index-study__text small {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.36;
  margin-right: 8px;
}
@media (max-width: 1365px) {
  .index-study {
    background-color: var(--dark);
    background-image: url('../img/index-study-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0px;
    padding-top: 22px;
    position: relative;
    z-index: 3;
  }
  .index-study:before {
    display: none;
  }
  .index-study__container {
    padding-bottom: 28px;
    max-width: 340px;
  }
  .index-study__heading {
    margin-bottom: 22px;
  }
  .index-study__holder {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 24px;
  }
  .index-study__item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.37;
    color: var(--yellow);
    background-color: var(--yellow);
    width: 130px;
    height: 130px;
    border-radius: 2.94838px;
    position: relative;
  }
  .index-study__item span {
    position: relative;
    z-index: 2;
  }
  .index-study__item:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--dark);
    border-radius: inherit;
    z-index: 2;
    border: 2px solid var(--yellow);
  }
  .index-study__item:nth-child(1) {
    z-index: 1;
  }
  .index-study__item:nth-child(1):before {
    transform: rotate(-7.34deg);
  }
  .index-study__item:nth-child(2) {
    z-index: 3;
  }
  .index-study__item:nth-child(2):before {
    transform: rotate(7.62deg);
  }
  .index-study__item:nth-child(3) {
    z-index: 2;
    transform: translateY(-20px);
  }
  .index-study__item:nth-child(3):before {
    transform: rotate(6.46deg);
  }
  .index-study__item:nth-child(4) {
    z-index: 1;
    transform: translateY(-20px);
  }
  .index-study__item:nth-child(4):before {
    transform: rotate(-4.68deg);
  }
  .index-study__text {
    color: var(--yellow);
  }
  .index-study__text strong {
    position: relative;
    font-weight: 400;
    font-size: 30px;
    margin-right: 0px;
  }
  .index-study__text strong:before {
    content: attr(data-before);
    position: absolute;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: -0.02em;
    top: 0;
    left: 0;
    transform: translateY(-60%);
  }
  .index-study__text strong:after {
    content: attr(data-after);
    position: absolute;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: -0.02em;
    bottom: 0;
    right: 0;
    transform: translateY(60%);
  }
  .index-study__text em {
    margin-right: 2px;
  }
  .index-study__text small {
    font-weight: 600;
    font-size: 11px;
    line-height: 1.36;
    margin-right: 0px;
  }
}
@media (max-width: 768px) {
  .index-study {
    background-image: url('../img/index-study-bg-mob.png');
  }
}
.index-expect {
  position: relative;
  z-index: 2;
}
.index-expect:after {
  content: '';
  display: block;
  position: absolute;
  width: 481px;
  height: 481px;
  background-image: url(../img/white-lines.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  right: 0;
  transform: translate(50%, 80%);
}
.index-expect__container {
  max-width: 1190px;
  padding-top: 106px;
  padding-bottom: 117px;
}
.index-expect__heading {
  margin-bottom: 80px;
}
.index-expect__holder {
  display: flex;
  flex-wrap: wrap;
}
.index-expect__item {
  background-color: var(--dark);
  mix-blend-mode: normal;
  border-radius: 10px;
  position: relative;
  padding: 59px 177px 62px 44px;
  width: 100%;
  max-width: 559px;
}
.index-expect__item:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 4px solid var(--dark);
  border-radius: 10px;
  background-color: var(--yellow);
}
.index-expect__item:after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  top: 14px;
  right: 30px;
  z-index: 3;
  pointer-events: none;
  width: 200px;
  height: 165px;
}
.index-expect__item:nth-child(1) {
  z-index: 1;
}
.index-expect__item:nth-child(1):before {
  transform: rotate(-5.5deg);
}
.index-expect__item:nth-child(1):after {
  background-image: url(../img/expect-i1.svg);
}
.index-expect__item:nth-child(2) {
  z-index: 3;
}
.index-expect__item:nth-child(2):before {
  transform: rotate(5.5deg) translateY(-10px);
}
.index-expect__item:nth-child(2):after {
  background-image: url(../img/expect-i2.svg);
}
.index-expect__item:nth-child(3) {
  z-index: 2;
  transform: translateY(-25px);
}
.index-expect__item:nth-child(3):before {
  transform: rotate(5.5deg);
}
.index-expect__item:nth-child(3):after {
  top: 40px;
  background-image: url(../img/expect-i3.png);
}
.index-expect__item:nth-child(4) {
  z-index: 4;
  transform: translateY(-10px) translateX(-25px);
}
.index-expect__item:nth-child(4):before {
  transform: rotate(5.5deg);
}
.index-expect__item:nth-child(4):after {
  background-image: url(../img/expect-i4.svg);
}
.index-expect__title {
  color: var(--dark);
  font-weight: 600;
  font-size: 36px;
  line-height: 117%;
  margin-bottom: 19px;
  position: relative;
  z-index: 2;
}
.index-expect__text {
  font-weight: 600;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
@media (max-width: 1365px) {
  .index-expect:after {
    display: none;
  }
  .index-expect__container {
    max-width: 340px;
    padding-top: 23px;
    padding-bottom: 17px;
  }
  .index-expect__heading {
    margin-bottom: 16px;
  }
  .index-expect__holder {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 9px;
  }
  .index-expect__item {
    background-color: var(--dark);
    mix-blend-mode: normal;
    border-radius: 5.04543px;
    position: relative;
    padding: 46px 14px;
    width: 100%;
    max-width: 300px;
  }
  .index-expect__item:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 2px solid var(--dark);
    border-radius: 5.04543px;
    background-color: var(--yellow);
  }
  .index-expect__item:after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    top: 14px;
    right: 30px;
    z-index: 3;
    pointer-events: none;
    width: 100px;
    height: 83px;
  }
  .index-expect__item:nth-child(1) {
    z-index: 1;
  }
  .index-expect__item:nth-child(1):before {
    transform: rotate(-5.5deg);
  }
  .index-expect__item:nth-child(1):after {
    background-image: url(../img/expect-i1.svg);
  }
  .index-expect__item:nth-child(2) {
    z-index: 2;
  }
  .index-expect__item:nth-child(2):before {
    transform: rotate(5.5deg) translateY(-10px);
  }
  .index-expect__item:nth-child(2):after {
    background-image: url(../img/expect-i2.svg);
  }
  .index-expect__item:nth-child(3) {
    z-index: 3;
    transform: translateY(-25px);
  }
  .index-expect__item:nth-child(3):before {
    transform: rotate(5.5deg);
  }
  .index-expect__item:nth-child(3):after {
    top: 40px;
    background-image: url(../img/expect-i3.png);
  }
  .index-expect__item:nth-child(4) {
    z-index: 4;
    transform: translateY(-50px) translateX(0px);
  }
  .index-expect__item:nth-child(4):before {
    transform: rotate(5.5deg);
  }
  .index-expect__item:nth-child(4):after {
    background-image: url(../img/expect-i4.svg);
  }
  .index-expect__title {
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    margin-bottom: 33px;
    position: relative;
    z-index: 2;
  }
  .index-expect__text {
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 11px;
    line-height: 124%;
    margin-bottom: 0;
  }
}
.index-steam {
  background-image: url(../img/index-stem-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--yellow);
}
.index-steam__container {
  padding-top: 79px;
  padding-bottom: 91px;
  max-width: 1168px;
}
.index-steam__heading {
  margin-bottom: 0;
}
.index-steam__sub-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1027px;
  margin-top: -20px;
  margin-bottom: -40px;
  position: relative;
  z-index: 2;
}
.index-steam__text {
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 117%;
}
.index-steam__day {
  margin-bottom: 0;
  padding: 29px 35px 39px 35px;
  background-color: var(--yellow);
  border-radius: 10px;
  transform: rotate(-0.17deg);
  position: relative;
  color: var(--yellow);
}
.index-steam__day span {
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 36px;
  line-height: 117%;
}
.index-steam__day:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  transform: rotate(-4.38deg);
  border: 4px solid var(--yellow);
  background-color: var(--dark);
}
.index-steam__holder {
  display: flex;
  align-items: center;
  gap: 10px;
}
.index-steam__item {
  background-color: var(--yellow);
  border-radius: 10px;
  position: relative;
}
.index-steam__item:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--dark);
  border: 4px solid var(--yellow);
  border-radius: 10px;
  z-index: 1;
}
.index-steam__item:nth-child(1) {
  padding: 116px 44px 177px 56px;
}
.index-steam__item:nth-child(1):before {
  transform: rotate(-7deg);
}
.index-steam__item:nth-child(2) {
  padding: 167px 85px 150px 69px;
}
.index-steam__item:nth-child(2):before {
  transform: rotate(5deg) translateX(-15px);
}
@media (max-width: 1365px) {
  .index-steam {
    background-image: url(../img/index-stem-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--yellow);
  }
  .index-steam__container {
    padding-top: 39px;
    padding-bottom: 50px;
    max-width: 340px;
  }
  .index-steam__heading {
    margin-bottom: 2px;
  }
  .index-steam__sub-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1027px;
    margin-top: 0px;
    margin-bottom: -10px;
    position: relative;
    z-index: 3;
  }
  .index-steam__text {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
  }
  .index-steam__day {
    margin-bottom: 0;
    padding: 10px 20px;
    z-index: 2;
  }
  .index-steam__day span {
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
  }
  .index-steam__day:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    transform: rotate(-4.38deg);
    border: 2px solid var(--yellow);
    background-color: var(--dark);
  }
  .index-steam__holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .index-steam__item {
    background-color: var(--yellow);
    border-radius: 5.18753px;
    position: relative;
  }
  .index-steam__item:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--dark);
    border: 2px solid var(--yellow);
    border-radius: 5.18753px;
    z-index: 1;
  }
  .index-steam__item:nth-child(1) {
    padding: 63px 40px 59px 25px;
    z-index: 2;
  }
  .index-steam__item:nth-child(1):before {
    transform: rotate(2.78deg);
  }
  .index-steam__item:nth-child(2) {
    padding: 39px 19px 46px 16px;
    z-index: 1;
    margin-top: -10px;
    margin-bottom: -10px;
  }
  .index-steam__item:nth-child(2):before {
    transform: rotate(-2.9deg) translateX(0px) translateY(0px);
  }
}
.index-box {
  display: flex;
  gap: 26px;
}
.index-box__title {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.index-box__title small {
  letter-spacing: -0.02em;
  font-weight: 400;
  font-size: 36px;
  display: block;
}
.index-box__title strong {
  letter-spacing: -0.04em;
  font-weight: 400;
  font-size: 108px;
  display: block;
  line-height: 100%;
}
.index-box__title em {
  display: block;
  font-style: normal;
  font-weight: 300;
  font-size: 54px;
  font-family: var(--font2);
}
.index-box__text {
  position: relative;
  z-index: 2;
  font-weight: 400;
  line-height: 200%;
}
@media (max-width: 1365px) {
  .index-box {
    display: flex;
    gap: 28px;
  }
  .index-box__title {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 85px;
  }
  .index-box__title small {
    letter-spacing: -0.02em;
    font-weight: 400;
    font-size: 16px;
    display: block;
  }
  .index-box__title strong {
    letter-spacing: -0.04em;
    font-weight: 400;
    font-size: 48px;
    display: block;
    line-height: 1.35;
  }
  .index-box__title em {
    display: block;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    font-family: var(--font2);
  }
  .index-box__text {
    position: relative;
    z-index: 2;
    font-weight: 400;
    line-height: 170%;
    font-size: 11px;
  }
}
.index-courses {
  position: relative;
  overflow: hidden;
}
.index-courses__container {
  max-width: 1198px;
  position: relative;
  color: var(--dark);
  padding-top: 97px;
  padding-bottom: 158px;
}
.index-courses__container:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-image: url(../img/index-courses-warm.svg);
  background-size: contain;
  background-position: top -50px right;
  background-repeat: no-repeat;
  transform: rotate(340deg);
  pointer-events: none;
}
.index-courses__days {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.index-courses__days span {
  display: block;
  background-color: var(--dark);
  padding: 31px 37px 37px 32px;
  border-radius: 10px;
  transform: rotate(-0.17deg);
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 36px;
  line-height: 117%;
  margin-top: -80px;
  margin-bottom: 20px;
  margin-right: 110px;
}
.index-courses__days span:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  transform: rotate(-4.38deg);
  background-color: var(--yellow);
  border: 4px solid var(--dark);
  z-index: -1;
}
.index-courses__holder {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.index-courses__item {
  padding: 54px 34px 35px 54px;
  background-color: var(--dark);
  border-radius: 10px;
  position: relative;
}
.index-courses__item:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--yellow);
  border: 4px solid var(--dark);
  border-radius: 10px;
}
.index-courses__item:nth-child(1) {
  z-index: 1;
}
.index-courses__item:nth-child(1):before {
  transform: rotate(-1.68deg);
}
.index-courses__item:nth-child(2) {
  padding-top: 84px;
  padding-bottom: 82px;
  transform: translateY(-5px);
  z-index: 3;
}
.index-courses__item:nth-child(2):before {
  transform: rotate(1.92deg);
}
.index-courses__item:nth-child(3) {
  z-index: 2;
}
.index-courses__item:nth-child(3):before {
  transform: rotate(0deg);
}
.index-courses__abs {
  position: absolute;
  top: 36px;
  right: 38px;
}
.index-courses__abs span {
  letter-spacing: 0.04em;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.index-courses__abs strong {
  display: block;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.36;
}
.index-courses__title {
  font-weight: 600;
  font-size: 36px;
  line-height: 117%;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.index-courses__text {
  position: relative;
  z-index: 2;
}
.index-courses__text p {
  margin-bottom: 0;
}
.index-courses__text p:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 1365px) {
  .index-courses {
    position: relative;
    overflow: hidden;
  }
  .index-courses__container {
    max-width: 340px;
    position: relative;
    color: var(--dark);
    padding-top: 28px;
    padding-bottom: 63px;
  }
  .index-courses__container:before {
    display: none;
  }
  .index-courses__days {
    padding-top: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -10px;
  }
  .index-courses__days span {
    padding: 13px;
    border-radius: 10px;
    transform: rotate(-0.17deg);
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 11px;
    line-height: 150%;
    margin: 0;
  }
  .index-courses__days span:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 3.3px;
    transform: rotate(-4.38deg);
    background-color: var(--yellow);
    border: 2px solid var(--dark);
    z-index: -1;
  }
  .index-courses__holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .index-courses__item {
    padding: 34px 21px 33px 31px;
    background-color: var(--dark);
    border-radius: 10px;
    position: relative;
  }
  .index-courses__item:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--yellow);
    border: 2px solid var(--dark);
    border-radius: 7.86701px;
  }
  .index-courses__item:nth-child(1) {
    z-index: 1;
  }
  .index-courses__item:nth-child(1):before {
    transform: matrix(1, 0.05, -0.04, 1, 0, 0);
  }
  .index-courses__item:nth-child(2) {
    padding-top: 20px;
    padding-bottom: 20px;
    transform: translateY(0px);
    z-index: 3;
  }
  .index-courses__item:nth-child(2):before {
    transform: matrix(1, -0.05, 0.06, 1, 0, 0);
  }
  .index-courses__item:nth-child(3) {
    z-index: 2;
  }
  .index-courses__item:nth-child(3):before {
    transform: matrix(1, 0.05, -0.04, 1, 0, 0);
  }
  .index-courses__abs {
    position: absolute;
    top: 21px;
    right: 26px;
  }
  .index-courses__abs span {
    letter-spacing: 0.04em;
    font-weight: 800;
    display: block;
    line-height: 1;
    font-size: 16px;
  }
  .index-courses__abs strong {
    display: block;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.36;
  }
  .index-courses__title {
    font-weight: 600;
    font-size: 30px;
    line-height: 110%;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
  }
  .index-courses__text {
    position: relative;
    z-index: 2;
    font-size: 11px;
    line-height: 1.45;
  }
  .index-courses__text p {
    margin-bottom: 0;
  }
  .index-courses__text p:not(:last-child) {
    margin-bottom: 15px;
  }
}
.faq {
  background-color: var(--yellow);
  background-image: url(../img/faq-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  position: relative;
}
.faq:before {
  content: '';
  width: 630px;
  height: 630px;
  display: block;
  background-image: url(../img/red-lines-pseudo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 10px;
  left: 0;
  transform: translateX(-50%);
}
.faq__container {
  max-width: 1140px;
  padding-top: 80px;
  padding-bottom: 112px;
}
.faq__holder {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq__item {
  position: relative;
}
.faq__item:before {
  content: '';
  width: 100%;
  height: 100%;
  max-height: 124px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--dark);
  border-radius: 20px;
  transform: rotate(-2deg);
}
.faq__inner {
  position: relative;
  z-index: 2;
  padding: 20px 46px 20px;
  border: 4px solid var(--dark);
  border-radius: 20px;
  background-color: var(--yellow);
}
.faq__title {
  font-size: 36px;
  line-height: 117%;
  font-weight: 600;
  margin-right: 20px;
}
.faq__title:after {
  content: '';
  width: 20px;
  height: 40px;
  background-image: url(../img/expand-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 20px;
  right: 40px;
  display: block;
  position: absolute;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.faq__content {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 4px solid var(--dark);
  font-weight: 600;
  font-size: 18px;
}
.faq__item.active .faq__title:after {
  transform: rotate(-90deg);
}
@media (max-width: 768px) {
  .faq:before {
    display: none;
  }
  .faq__container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .faq__holder {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .faq__item {
    position: relative;
  }
  .faq__item:before {
    content: '';
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--dark);
    border-radius: 20px;
    transform: rotate(-2deg);
  }
  .faq__inner {
    position: relative;
    z-index: 2;
    padding: 20px 40px 10px;
    border: 4px solid var(--dark);
    border-radius: 20px;
    background-color: var(--yellow);
  }
  .faq__title {
    font-size: 20px;
    line-height: 100%;
    font-weight: 600;
    margin-right: 20px;
  }
  .faq__title:after {
    content: '';
    width: 10px;
    height: 20px;
    background-image: url(../img/expand-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    top: 20px;
    right: 20px;
    display: block;
    position: absolute;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
  }
  .faq__content {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid var(--dark);
    font-weight: 600;
    font-size: 14px;
  }
  .faq__item.active .faq__title:after {
    transform: rotate(-90deg);
  }
}
.custom-page__container {
  padding-top: 30px;
  padding-bottom: 30px;
}
.custom-page__heading {
  margin-bottom: 30px;
}
.bg_light {
  background-color: var(--yellow);
}
.menu {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.menu__holder {
  position: relative;
  padding: 25px;
  background-color: var(--dark);
  border-radius: 10px;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.menu__holder:hover {
  transform: translateY(2px);
}
.menu__holder:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--yellow);
  border-radius: 10px;
  transform: rotate(-1.5deg);
  border: 2px solid var(--dark);
}
.menu__holder:nth-child(odd):after {
  transform: rotate(1.5deg);
}
.menu__holder > * {
  position: relative;
  z-index: 2;
}
.menu.no_hover .menu__holder:hover {
  transform: translate(0, 0);
}
@media (max-width: 768px) {
  .menu {
    justify-content: center;
    align-items: center;
    gap: 35px;
  }
  .menu__holder {
    padding: 15px;
    width: 100%;
    text-align: center;
  }
  .menu__holder ul {
    text-align: left;
  }
}
.heading_sm {
  font-size: 27px;
}
@media (max-width: 768px) {
  .heading_sm {
    font-size: 23px;
  }
  .heading_sm br {
    display: none;
  }
}
.border_bottom {
  border-bottom: 1px solid var(--dark);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.max-width-sm {
  max-width: 360px;
}
.common-table-wrapper {
  overflow: auto;
  width: 100%;
  height: auto;
}
.common-table {
  overflow: auto;
}
.common-table th,
.common-table td {
  border: 1px solid var(--dark);
  padding: 10px;
  vertical-align: top;
}
.common-table.th-nowrap th {
  white-space: nowrap;
}
.common-table.valign-center th,
.common-table.valign-center td {
  vertical-align: middle;
}
.common-table.p-sm th,
.common-table.p-sm td {
  padding: 5px;
}
.iframe-responsive {
  display: block;
  width: 100%;
  height: 315px;
}
/*# sourceMappingURL=styles.css.map */