@charset "UTF-8";
.container {
  max-width: 1256px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 1256px) {
  .container {
    padding: 0 0px;
  }
}

.content__page {
  padding-top: 140px;
}
.content__page h1, .content__page h2, .content__page h3, .content__page h4, .content__page h5, .content__page h6 {
  margin-bottom: 30px;
}
.content__page p {
  margin-bottom: 30px;
}

/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Rubik";
  color: #121212;
  background: #fff;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

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

.header {
  padding-top: 32px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  padding-bottom: 32px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  background: #471AC0;
}
.header .container {
  max-width: 1360px;
  padding: 0 40px;
}
@media screen and (max-width: 1600px) {
  .header .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .header .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__menu .menu .menu-item {
  margin-right: 7px;
}
.top__menu .menu .menu-item a {
  font-size: 14px;
  font-weight: 900;
  color: rgba(250, 250, 250, 0.7);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 21px;
  border-radius: 12px;
  border: 1px solid rgba(250, 250, 250, 0.35);
  padding: 11px 34px;
}
.top__menu .menu .menu-item a:hover {
  color: #FF8600;
}

.burger__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1200px) {
  .burger__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__button .button2 {
  font-size: 18px;
  color: #000;
  margin-bottom: 0;
}

.burger__name {
  font-size: 17px;
  color: #fff;
  line-height: 100%;
  margin-right: 11px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .burger__name {
    font-size: 14px;
  }
}

.burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 22px;
  height: 22px;
  position: relative;
}
.burger span {
  width: 22px;
  height: 2px;
  margin-bottom: 4px;
  background: #fff;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.burger span:nth-last-child(1) {
  margin-bottom: 0;
}
.burger span:nth-child(1) {
  width: 15px;
}
.burger__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 22px;
}
.burger__opened span:nth-child(2) {
  opacity: 0;
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.body__opened {
  overflow: hidden;
}

.mobile__menu {
  position: fixed;
  top: 92px;
  right: 0;
  width: 50%;
  height: 100vh;
  background: #471AC0;
  z-index: 99;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  padding: 20px 15px;
  height: 100%;
}
.mobile__menu .top__menu {
  margin-top: 0;
  background: transparent;
  padding: 0;
  margin-bottom: 20px;
}
.mobile__menu .top__menu .menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile__menu .top__menu .menu .menu-item {
  margin-right: 0;
  margin-bottom: 10px;
}
.mobile__menu .top__menu .menu .menu-item a {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .mobile__menu {
    width: 100%;
    overflow-y: scroll;
  }
}

.mobile__menu__opened {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.back {
  background: rgba(18, 18, 18, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
  visibility: hidden;
}

.body__opened .back {
  opacity: 1;
  visibility: visible;
}

.section1 {
  padding-top: 131px;
  background: #471AC0;
  padding-bottom: 214px;
}
.section1 .container {
  max-width: 1360px;
  padding: 0 40px;
}
@media screen and (max-width: 1600px) {
  .section1 .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .section1 .container {
    padding: 0 20px;
  }
}

#dialog-content2 {
  padding: 0;
  background: transparent;
}

.section1__block {
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 700px;
  border-radius: 38px;
  padding: 55px 40px;
}
@media screen and (max-width: 1024px) {
  .section1__block {
    padding: 20px 20px;
    height: 400px;
  }
}

.d1 {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.d1.fade-out {
  opacity: 0;
}

.video__back {
  border-radius: 38px;
  position: absolute !important;
  top: 0;
  left: 0;
}

.section1__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  pointer-events: none; /* Щоб відео не заважало клікам */
}

.section1__block > *:not(.section1__video) {
  position: relative;
  z-index: 2;
  color: white; /* або інший контрастний */
}

.section1__title {
  font-size: 127.66px;
  line-height: 115.5px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .section1__title {
    font-size: 55px;
    line-height: 55px;
  }
}
.section1__title span {
  color: #FF8600;
}

.section1__txt {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
}

.button3 {
  color: #000;
  font-size: 24px !important;
}

.watch {
  position: absolute !important;
  right: 40px;
  bottom: 55px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .watch {
    right: 20px;
    bottom: 20px;
  }
  .watch img {
    width: 100px;
  }
}

.fullscreen-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fullscreen-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

.section2 {
  padding: 117px 0;
  border-radius: 80px;
  background: #fff;
  margin-top: -130px;
  position: relative;
  z-index: 10;
  overflow-x: hidden;
  padding-bottom: 146px;
}
.section2 .container {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .section2 {
    padding: 60px 0;
    border-radius: 40px;
  }
}

.section2__title {
  margin-bottom: 27px;
  position: relative;
  color: #200076 !important;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 90px;
  margin-bottom: 27px;
}
@media screen and (max-width: 1600px) {
  .section2__title {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .section2__title {
    padding: 0 20px;
  }
}

.s2__decor1 {
  position: absolute;
  top: 0;
  right: 90px;
  -webkit-animation: levitate 3s ease-in-out infinite;
          animation: levitate 3s ease-in-out infinite;
  will-change: transform;
}
@media screen and (max-width: 1024px) {
  .s2__decor1 {
    top: 30px;
    right: 10px;
    z-index: -1;
  }
  .s2__decor1 img {
    width: 80px;
  }
}

.section2__txt {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 70px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 90px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1600px) {
  .section2__txt {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .section2__txt {
    font-size: 18px;
    padding: 0 20px;
  }
}

.swiper-slide {
  -webkit-transition: 1s ease 0s;
  transition: 1s ease 0s;
}

.video__item {
  position: relative;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.video__item:hover {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.video__item:hover .play {
  opacity: 1;
  visibility: visible;
}

.video__poster {
  border-radius: 20px;
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}

.video__logo {
  position: absolute;
  bottom: -30px;
  left: -30px;
}
.video__logo img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
}

.play {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
  visibility: hidden;
}

.slider1 {
  position: relative;
  margin-left: 90px;
}
@media screen and (min-width: 1600px) {
  .slider1 {
    margin-left: 360px;
  }
}
@media screen and (max-width: 1024px) {
  .slider1 {
    margin-left: 0;
    padding: 0 0px;
  }
}

.slider2 {
  position: relative;
  margin-right: 90px;
}
@media screen and (min-width: 1600px) {
  .slider2 {
    margin-right: 360px;
  }
}
@media screen and (max-width: 1024px) {
  .slider2 {
    margin-right: 0;
    padding: 0 0px;
  }
}

.video__swiper1 {
  background: #FF8600;
  border-radius: 44px;
  padding-top: 60px;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .video__swiper1 {
    border-radius: 0;
  }
}
.video__swiper1::after {
  content: "";
  width: 100%;
  height: 420px;
  background: #FF8600;
  position: absolute;
  right: -50%;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .video__swiper1::after {
    display: none;
  }
}

.video__swiper2 {
  background: #1B1F3B;
  border-radius: 0px 44px 44px 0px;
  padding-top: 60px;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .video__swiper2 {
    border-radius: 0px;
  }
}
.video__swiper2::after {
  content: "";
  width: 100%;
  height: 420px;
  background: #1B1F3B;
  position: absolute;
  left: -50%;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .video__swiper2::after {
    display: none;
  }
}

.arrows1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #1B1F3B;
  padding: 20px;
  border-radius: 16px;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: -27px;
  left: 40px;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .arrows1 {
    padding: 10px;
    top: -13.5px;
  }
}

.arrows2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FF8600;
  padding: 20px;
  border-radius: 16px;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  bottom: -27px;
  right: 40px;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .arrows2 {
    padding: 10px;
    bottom: -13.5px;
  }
}

.sw__left {
  cursor: pointer;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .sw__left img {
    width: 43px;
  }
}

.sw__right {
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .sw__right img {
    width: 43px;
  }
}

.tag {
  background: #FFFFFF;
  border: 8.50083px solid #1B1F3B;
  -webkit-box-shadow: -5.95058px 5.95058px 0px #000000, -5.1005px 5.1005px 0px #000000, -4.25041px 4.25041px 0px #000000, -3.40033px 3.40033px 0px #000000, -2.55025px 2.55025px 0px #000000, -1.70017px 1.70017px 0px #000000, -0.850083px 0.850083px 0px #000000, -6.80066px 6.80066px 0px #000000;
          box-shadow: -5.95058px 5.95058px 0px #000000, -5.1005px 5.1005px 0px #000000, -4.25041px 4.25041px 0px #000000, -3.40033px 3.40033px 0px #000000, -2.55025px 2.55025px 0px #000000, -1.70017px 1.70017px 0px #000000, -0.850083px 0.850083px 0px #000000, -6.80066px 6.80066px 0px #000000;
  border-radius: 8.50083px;
  -webkit-transform: rotate(-9.18deg);
          transform: rotate(-9.18deg);
  padding: 8.50083px 17.0017px;
  font-size: 37.4px;
  font-weight: bold;
  color: #000000;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  z-index: 100;
  top: 100px;
  left: -66px;
  -webkit-animation: floatUpDown 3s ease-in-out infinite;
          animation: floatUpDown 3s ease-in-out infinite;
}
@media screen and (max-width: 1024px) {
  .tag {
    top: -30px;
    left: initial;
    right: 20px;
    font-size: 17px;
    padding: 8.50083px 8px;
  }
}

.tag2 {
  background: #FFFFFF;
  border: 8.50083px solid #FF8600;
  -webkit-box-shadow: -5.95058px 5.95058px 0px #FF5100, -5.1005px 5.1005px 0px #FF5100, -4.25041px 4.25041px 0px #FF5100, -3.40033px 3.40033px 0px #FF5100, -2.55025px 2.55025px 0px #FF5100, -1.70017px 1.70017px 0px #FF5100, -0.850083px 0.850083px 0px #FF5100, -6.80066px 6.80066px 0px #FF5100;
          box-shadow: -5.95058px 5.95058px 0px #FF5100, -5.1005px 5.1005px 0px #FF5100, -4.25041px 4.25041px 0px #FF5100, -3.40033px 3.40033px 0px #FF5100, -2.55025px 2.55025px 0px #FF5100, -1.70017px 1.70017px 0px #FF5100, -0.850083px 0.850083px 0px #FF5100, -6.80066px 6.80066px 0px #FF5100;
  border-radius: 8.50083px;
  -webkit-transform: rotate(-9.18deg);
          transform: rotate(-9.18deg);
  padding: 8.50083px 17.0017px;
  font-size: 37.4px;
  font-weight: bold;
  color: #000000;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  z-index: 100;
  top: 100px;
  right: -66px;
  -webkit-animation: floatUpDown 3s ease-in-out infinite;
          animation: floatUpDown 3s ease-in-out infinite;
}
@media screen and (max-width: 1024px) {
  .tag2 {
    top: initial;
    bottom: -30px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    left: 20px;
    font-size: 17px;
    padding: 8.50083px 8px;
  }
}

@-webkit-keyframes floatUpDown {
  0%, 100% {
    -webkit-transform: rotate(-9.18deg) translateY(0);
            transform: rotate(-9.18deg) translateY(0);
  }
  50% {
    -webkit-transform: rotate(-9.18deg) translateY(-20px);
            transform: rotate(-9.18deg) translateY(-20px); /* піднімаємо вгору на 10px */
  }
}

@keyframes floatUpDown {
  0%, 100% {
    -webkit-transform: rotate(-9.18deg) translateY(0);
            transform: rotate(-9.18deg) translateY(0);
  }
  50% {
    -webkit-transform: rotate(-9.18deg) translateY(-20px);
            transform: rotate(-9.18deg) translateY(-20px); /* піднімаємо вгору на 10px */
  }
}
.fancybox__content {
  padding: 0;
  border-radius: 20px;
  background: transparent;
}
.fancybox__content video {
  width: 100%;
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .fancybox__content video {
    height: 400px;
	          width: 100%;
        object-fit: contain;
  }
}

.v__close {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
  width: 30px;
  z-index: 10000;
  cursor: pointer;
}

.section3 {
  padding-top: 250px;
  padding-bottom: 275px;
  background: #FF8600;
  margin-top: -130px;
}
.section3 .container {
  max-width: 1360px;
  padding: 0 107px;
}
@media screen and (max-width: 1600px) {
  .section3 .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .section3 .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .section3 {
    padding-top: 180px;
    padding-bottom: 215px;
  }
}

.section3__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .section3__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.s3__left {
  width: 48%;
  position: relative;
}
.s3__left img {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .s3__left {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.s3__right {
  width: 48%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .s3__right {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 30px;
  }
}

.s3__content h2 {
  font-weight: bold;
  font-size: 65px;
  line-height: 66.4px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 37px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .s3__content h2 {
    font-size: 46px;
    margin-bottom: 20px;
  }
}
.s3__content strong {
  font-size: 20px;
  font-family: "Rubik";
}
.s3__content p {
  font-family: "Montserrat";
  font-size: 16px;
  line-height: 23px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 30px;
}

.s3__txt1 {
  background: #471AC0;
  border: 11px solid #F4EFDC;
  border-radius: 20px;
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
  padding: 20px 20px 10px;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  max-width: 546px;
}
@media screen and (max-width: 1024px) {
  .s3__txt1 {
    font-size: 20px;
  }
}

.s3__decor1 {
  position: absolute;
  right: 230px;
  bottom: -90px;
  z-index: 0;
  -webkit-animation: levitate 3s ease-in-out infinite;
          animation: levitate 3s ease-in-out infinite;
  will-change: transform;
}
@media screen and (max-width: 1024px) {
  .s3__decor1 img {
    width: 80px;
  }
}

.s3__decor2 {
  position: absolute;
  right: 0;
  top: -50px;
  z-index: 0;
  -webkit-animation: levitate 3s ease-in-out infinite;
          animation: levitate 3s ease-in-out infinite;
  will-change: transform;
}
@media screen and (max-width: 1024px) {
  .s3__decor2 img {
    width: 80px;
  }
}

.section4 {
  border-radius: 80px;
  background: #471AC0;
  padding-top: 90px;
  padding-bottom: 275px;
  margin-top: -100px;
  overflow-x: hidden;
}
.section4 .container {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .section4 {
    border-radius: 40px;
    padding-top: 45px;
    padding-bottom: 220px;
  }
}

.section4__swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.section__title__new {
  position: relative;
  font-size: 65.49px;
  line-height: 66.4px;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}
.section__title__new span {
  color: #FF8600;
}
@media screen and (max-width: 1024px) {
  .section__title__new {
    font-size: 28px;
    line-height: 29px;
  }
}

.section4__title {
  max-width: 1360px;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .section4__title {
    max-width: 100%;
    padding: 0 90px;
  }
}
@media screen and (max-width: 1024px) {
  .section4__title {
    padding: 0 20px;
  }
}

.s4__decor1 {
  position: absolute;
  right: 0;
  top: 0;
  -webkit-animation: levitate 3s ease-in-out infinite;
          animation: levitate 3s ease-in-out infinite;
  will-change: transform;
}
@media screen and (max-width: 1600px) {
  .s4__decor1 {
    right: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .s4__decor1 {
    right: 20px;
  }
  .s4__decor1 img {
    width: 80px;
  }
}

.swiper-slide {
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}

.s4__item {
  background: #FFFFFF;
  border: 6.75612px solid #FFD000;
  -webkit-box-shadow: -4.72928px 4.72928px 0px #FFD000, -3.37806px 3.37806px 0px #84D100, -4.05367px 4.05367px 0px #FFD000, -2.70245px 2.70245px 0px #FFD000, -1.35122px 1.35122px 0px #FFD000, -2.02683px 2.02683px 0px #FFD000, -0.675612px 0.675612px 0px #FFD000, -5.40489px 5.40489px 0px #FFD000;
          box-shadow: -4.72928px 4.72928px 0px #FFD000, -3.37806px 3.37806px 0px #84D100, -4.05367px 4.05367px 0px #FFD000, -2.70245px 2.70245px 0px #FFD000, -1.35122px 1.35122px 0px #FFD000, -2.02683px 2.02683px 0px #FFD000, -0.675612px 0.675612px 0px #FFD000, -5.40489px 5.40489px 0px #FFD000;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 180px;
}
.s4__item img {
  width: 287px;
}
@media screen and (max-width: 1024px) {
  .s4__item img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 1024px) {
  .s4__item {
    padding: 20px;
    height: 100px;
  }
}

.section4__swiper {
  margin-top: 150px;
  margin-left: 90px;
}
@media screen and (max-width: 1024px) {
  .section4__swiper {
    margin-top: 75px;
  }
}

.section5 {
  border-radius: 80px;
  background: #fff;
  padding-top: 110px;
  padding-bottom: 130px;
  margin-top: -150px;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}
.section5 .container {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .section5 {
    border-radius: 40px;
    padding-top: 45px;
  }
}

.section5__swiper {
  margin-left: 360px;
}
@media screen and (max-width: 1600px) {
  .section5__swiper {
    margin-left: 90px;
  }
}

.section5__swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.section5__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
  max-width: 1360px;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 1600px) {
  .section5__header {
    margin: 0 90px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .section5__header {
    margin: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .section5__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.section5__txt1 {
  font-size: 20px;
  font-weight: bold;
  line-height: 100%;
}
@media screen and (max-width: 1024px) {
  .section5__txt1 {
    font-size: 18px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.section5__title {
  color: #200076;
}
@media screen and (max-width: 1024px) {
  .section5__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 10px;
  }
}

.s5__item {
  background: #471AC0;
  border: 1px solid #471AC0;
  border-radius: 23px;
  padding: 45px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .s5__item {
    padding: 20px;
  }
}

.review__ico {
  margin-bottom: 15px;
}

.review__text {
  font-family: "Montserrat";
  font-size: 16px;
  line-height: 23px;
  font-style: italic;
  font-weight: 500;
  width: 90%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .review__text {
    width: 100%;
  }
}

.review__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.review__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.review__img {
  margin-right: 12px;
}
.review__img img {
  width: 72px;
  height: 72px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 120px;
}

.review__name {
  font-weight: bold;
  margin-bottom: 3px;
}

.section6 {
  border-radius: 80px;
  background: #C6FF00;
  padding-top: 249px;
  padding-bottom: 255px;
  margin-top: -150px;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}
.section6 .container {
  max-width: 1360px;
  padding: 0 90px;
}
@media screen and (max-width: 1600px) {
  .section6 .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .section6 .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .section6 {
    border-radius: 40px;
    padding-top: 230px;
  }
}

.section6__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .section6__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.s6__left {
  width: 35%;
}
@media screen and (max-width: 1024px) {
  .s6__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.s6__right {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .s6__right {
    width: 100%;
  }
}

.s6__title {
  color: #200076;
  margin-bottom: 40px;
}

.s6__txt {
  color: #200076;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .s6__txt {
    font-size: 18px;
  }
}

.s6__decors {
  margin-top: 90px;
}
@media screen and (max-width: 1024px) {
  .s6__decors {
    margin-top: 45px;
    display: none;
  }
}

.s6__decor1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-animation: levitate 3s ease-in-out infinite;
          animation: levitate 3s ease-in-out infinite;
  will-change: transform;
}
@media screen and (max-width: 1024px) {
  .s6__decor1 img {
    width: 100px;
  }
}

.s6__decor2 {
  -webkit-animation: levitate 3s ease-in-out infinite;
          animation: levitate 3s ease-in-out infinite;
  will-change: transform;
}
@media screen and (max-width: 1024px) {
  .s6__decor2 img {
    width: 100px;
  }
}

.s6__decor3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-animation: levitate 3s ease-in-out infinite;
          animation: levitate 3s ease-in-out infinite;
  will-change: transform;
}
@media screen and (max-width: 1024px) {
  .s6__decor3 img {
    width: 100px;
  }
}

.s6__item {
  margin-bottom: 70px;
}
.s6__item:nth-last-child(1) {
  margin-bottom: 0;
}
.s6__item:nth-child(2n) .s6__item__title {
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}
@media screen and (max-width: 1024px) {
  .s6__item {
    margin-bottom: 35px;
  }
}

.s6__item__title {
  background: #FFFFFF;
  border: 5.99529px solid #84D100;
  -webkit-box-shadow: -4.1967px 4.1967px 0px #84D100, -3.59717px 3.59717px 0px #84D100, -2.99764px 2.99764px 0px #84D100, -2.39812px 2.39812px 0px #84D100, -1.79859px 1.79859px 0px #84D100, -1.19906px 1.19906px 0px #84D100, -0.599529px 0.599529px 0px #84D100, -4.79623px 4.79623px 0px #84D100;
          box-shadow: -4.1967px 4.1967px 0px #84D100, -3.59717px 3.59717px 0px #84D100, -2.99764px 2.99764px 0px #84D100, -2.39812px 2.39812px 0px #84D100, -1.79859px 1.79859px 0px #84D100, -1.19906px 1.19906px 0px #84D100, -0.599529px 0.599529px 0px #84D100, -4.79623px 4.79623px 0px #84D100;
  border-radius: 5.99529px;
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
  padding: 6.4px 12px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .s6__item__title {
    font-size: 20px;
  }
}

.s6__item__text {
  font-family: "Montserrat";
  font-size: 16px;
  line-height: 21px;
  color: #200076;
  font-weight: 500;
}

.section7 {
  border-radius: 80px;
  background: #fff;
  padding-top: 100px;
  padding-bottom: 84px;
  margin-top: -150px;
  overflow-x: hidden;
  position: relative;
  z-index: 10;
}
.section7 .container {
  max-width: 1360px;
  padding: 0 90px;
}
@media screen and (max-width: 1600px) {
  .section7 .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .section7 .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .section7 {
    border-radius: 40px;
    padding-top: 45px;
  }
}

.section7__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .section7__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.section7__txt1 {
  font-size: 20px;
  font-weight: bold;
  width: 48%;
  line-height: 100%;
}
@media screen and (max-width: 1024px) {
  .section7__txt1 {
    font-size: 18px;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.section7__title {
  color: #200076;
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .section7__title {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
  }
}

.section7__header2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .section7__header2 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.header2__content {
  width: 48%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header2__content {
    width: 100%;
  }
}

.section7__txt2 {
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
  color: #200076;
}

.section7__txt3 {
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  color: #200076;
}

.section7__items {
  margin-top: 70px;
}
@media screen and (max-width: 1024px) {
  .section7__items {
    margin-top: 35px;
  }
}

.s7__item {
  background: #FF8600;
  padding: 30px;
  border-radius: 17px;
  margin-bottom: 6px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
}
.s7__item:nth-last-child(1) {
  margin-bottom: 0;
}
.s7__item:nth-child(2n) .s7__item__title {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
@media screen and (max-width: 1024px) {
  .s7__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px;
    padding-left: 20px;
  }
}

.s7__item__left {
  width: 15%;
}
@media screen and (max-width: 1024px) {
  .s7__item__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.s7__item__title {
  background: #471AC0;
  border-radius: 8.43325px;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  padding: 12px 34px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: -34px;
  font-weight: bold;
  font-size: 20.24px;
}
@media screen and (max-width: 1024px) {
  .s7__item__title {
    margin-left: 0;
  }
}

.s7__item__text {
  width: 80%;
  font-size: 16px;
  line-height: 23px;
  font-family: "Montserrat";
  padding-left: 45px;
}
@media screen and (max-width: 1024px) {
  .s7__item__text {
    width: 100%;
  }
}

.s7__decor1 {
  position: relative;
  right: 485px;
  bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .s7__decor1 {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
  }
}

.s7__hand {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  -webkit-animation: levitate 3s ease-in-out infinite;
          animation: levitate 3s ease-in-out infinite;
  will-change: transform;
}
@media screen and (max-width: 1024px) {
  .s7__hand {
    top: 0%;
    left: 72%;
    width: 100px;
  }
}

.section8 {
  border-radius: 80px;
  background: #FFD000;
  padding-top: 268px;
  padding-bottom: 107px;
  margin-top: -150px;
  overflow-x: hidden;
  position: relative;
  z-index: 9;
}
.section8 .container {
  max-width: 1360px;
  padding: 0 90px;
}
@media screen and (max-width: 1600px) {
  .section8 .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .section8 .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .section8 {
    border-radius: 40px;
    padding-top: 230px;
  }
}

.section8__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section8__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.s8__left {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .s8__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.s8__right {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .s8__right {
    width: 100%;
  }
}

.section8__title {
  margin-bottom: 32px;
  color: #200076;
}

.section8__txt1 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 32px;
  color: #200076;
}

.section8__txt2 {
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  font-family: "Montserrat";
  color: #200076;
}

.section8__items {
  background: #FFFFFF;
  border: 11px solid #471AC0;
  border-radius: 20px;
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
  padding: 20px 20px 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 473px;
}

.s8__item {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 5px;
  color: #200076;
}
@media screen and (max-width: 1024px) {
  .s8__item {
    font-size: 18px;
  }
}
.s8__item:nth-last-child(1) {
  margin-bottom: 0;
}

.s8__decor1 {
  position: absolute;
  bottom: -50px;
  right: 0;
  z-index: 0;
  -webkit-animation: levitate 3s ease-in-out infinite;
          animation: levitate 3s ease-in-out infinite;
  will-change: transform;
}
@media screen and (max-width: 1024px) {
  .s8__decor1 {
    bottom: -100px;
  }
  .s8__decor1 img {
    width: 150px;
  }
}

.section9 {
  border-radius: 80px;
  background: #FF8600;
  padding-top: 260px;
  padding-bottom: 90px;
  margin-top: -150px;
  overflow-x: hidden;
  position: relative;
  z-index: 8;
}
.section9 .container {
  max-width: 1360px;
  padding: 0 90px;
}
@media screen and (max-width: 1600px) {
  .section9 .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .section9 .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .section9 {
    border-radius: 40px;
    padding-top: 230px;
  }
}

.s9__row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .s9__row1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.s9__row1__left {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .s9__row1__left {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.s9__row1__right {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .s9__row1__right {
    width: 100%;
    margin-bottom: 30px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.s9__block {
  background: #FFFFFF;
  border: 11px solid #FFD000;
  border-radius: 20px;
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 20px 20px 10px;
}
@media screen and (max-width: 1024px) {
  .s9__block {
    width: 100%;
  }
}

.s9__block__title {
  font-size: 26px;
  font-weight: 900;
  color: #FF8600;
  text-transform: uppercase;
}

.s9__block__item {
  font-weight: 500;
}

.section9__title {
  margin-bottom: 24px;
}

.section9__text1 {
  font-weight: bold;
  font-size: 20px;
  color: #fff;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 1024px) {
  .section9__text1 {
    font-size: 18px;
  }
}

.section9__text2 {
  font-size: 30px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .section9__text2 {
    font-size: 24px;
  }
}

.s9__row2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 27px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 27px;
  grid-row-gap: 6px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .s9__row2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.s9__row2__item {
  background: #471AC0;
  border-radius: 12px;
  padding: 14px 36px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .s9__row2__item {
    font-size: 18px;
  }
}

.s9__decor1 {
  position: absolute;
  right: 0;
  top: -260px;
  right: 145px;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .s9__decor1 {
    display: none;
  }
}

.s9__last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .s9__last {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.section9__text3 {
  font-size: 30px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: -25px;
  padding-left: 39px;
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .section9__text3 {
    margin-top: 30px;
    width: 100%;
    font-size: 24px;
  }
}

.section10 {
  border-radius: 80px;
  background: #fff;
  padding-top: 230px;
  padding-bottom: 90px;
  margin-top: -150px;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}
.section10 .container {
  max-width: 1360px;
  padding: 0 90px;
}
@media screen and (max-width: 1024px) {
  .section10 .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .section10 .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .section10 {
    border-radius: 40px;
    padding-top: 230px;
    padding-bottom: 0px;
  }
}

.section10__title {
  position: relative;
  color: #200076;
  margin-bottom: 32px;
  z-index: 1;
}

.s10__decor1 {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-animation: levitate 3s ease-in-out infinite;
          animation: levitate 3s ease-in-out infinite;
  will-change: transform;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .s10__decor1 img {
    width: 60px;
  }
}

.section10__text1 {
  font-weight: bold;
  font-size: 20px;
  color: #200076;
  margin-bottom: 65px;
}
@media screen and (max-width: 1024px) {
  .section10__text1 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.questions .active2 .question__plus::after {
  content: "-";
}

.question__item {
  border-bottom: 1px solid #471AC0;
  border-radius: 23px;
  margin-bottom: 20px;
  padding: 25px 15px;
  cursor: pointer;
}

.question__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.question__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.question__number {
  padding: 6px 13px;
  background: #471AC0;
  border-radius: 6px;
  margin-right: 20px;
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.question__title {
  font-size: 22px;
  font-weight: bold;
  color: #200076;
}
@media screen and (max-width: 1024px) {
  .question__title {
    font-size: 18px;
  }
}

.question__plus::after {
  content: "+";
  display: block;
  font-size: 38px;
  color: #FF8600;
  font-weight: bold;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.question__hidden {
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 500;
  margin-top: 30px;
}

.contacts__title1 {
  background: #FF8600;
  border: 11px solid #FF8600;
  border-radius: 10px;
  -webkit-transform: matrix(1, -0.02, 0.02, 1, 0, 0);
          transform: matrix(1, -0.02, 0.02, 1, 0, 0);
  padding: 20px 20px 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin: 0 auto;
  margin-bottom: -50px;
}
@media screen and (max-width: 1024px) {
  .contacts__title1 {
    width: 100%;
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 80px;
  margin-bottom: 67px;
}
@media screen and (max-width: 1024px) {
  .contacts__row {
    margin-bottom: 30px;
    border-radius: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contacts__left {
  width: 50%;
  background: #471AC0;
  border-radius: 80px 0px 0px 80px;
  padding: 112px 0;
  padding-left: 90px;
}
@media screen and (max-width: 1024px) {
  .contacts__left {
    width: 100%;
    border-radius: 40px;
    padding: 30px 0;
    padding-left: 20px;
    margin-bottom: 30px;
  }
}

.contacts__right {
  width: 50%;
  background: #1B1F3B;
  border-radius: 0px 80px 80px 0px;
  padding: 112px 0;
  padding-left: 90px;
  padding-right: 70px;
}
@media screen and (max-width: 1024px) {
  .contacts__right {
    width: 100%;
    border-radius: 40px;
    padding: 30px 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.contacts__title2 {
  margin-bottom: 30px;
  font-size: 120px;
  line-height: 114px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  padding-left: 25px;
}
@media screen and (max-width: 1024px) {
  .contacts__title2 {
    font-size: 80px;
    line-height: 74px;
    padding-left: 0;
  }
}

.contacts__text1 {
  margin-bottom: 50px;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .contacts__text1 {
    margin-bottom: 25px;
    font-size: 18px;
  }
}

.contacts__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 27px;
}
.contacts__link:nth-last-child(1) {
  margin-bottom: 0;
}
.contacts__link:hover {
  text-decoration: none;
}

.link__img {
  width: 69px;
  height: 69px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FF8600;
  border-radius: 6px;
}

.link__text {
  background: #fff;
  border-radius: 0px 6px 6px 0px;
  padding: 15px 30px;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  color: #200076;
}
@media screen and (max-width: 1024px) {
  .link__text {
    padding: 15px 15px;
    font-size: 14px;
  }
}

.contacts__title3 {
  font-size: 50px;
  line-height: 54px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .contacts__title3 {
    font-size: 40px;
    line-height: 44px;
  }
}

.form__input {
  margin-bottom: 18px;
}
.form__input input {
  border: none;
  outline: none;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid #fff;
  letter-spacing: -0.02em;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  background: transparent;
}
.form__input input::-webkit-input-placeholder {
  letter-spacing: -0.02em;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
.form__input input::-moz-placeholder {
  letter-spacing: -0.02em;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
.form__input input:-ms-input-placeholder {
  letter-spacing: -0.02em;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
.form__input input::-ms-input-placeholder {
  letter-spacing: -0.02em;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
.form__input input::placeholder {
  letter-spacing: -0.02em;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
.form__input textarea {
  border: none;
  outline: none;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid #fff;
  letter-spacing: -0.02em;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  background: transparent;
  height: 130px;
}
.form__input textarea::-webkit-input-placeholder {
  letter-spacing: -0.02em;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
.form__input textarea::-moz-placeholder {
  letter-spacing: -0.02em;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
.form__input textarea:-ms-input-placeholder {
  letter-spacing: -0.02em;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
.form__input textarea::-ms-input-placeholder {
  letter-spacing: -0.02em;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
.form__input textarea::placeholder {
  letter-spacing: -0.02em;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
.form__input:nth-last-child(1) {
  margin-bottom: 0;
}

.button2 {
  background: #FFFFFF;
  border: 3.95825px solid #FF8600;
  -webkit-box-shadow: -2.84994px 2.84994px 0px #FF8600, -2.4937px 2.4937px 0px #FF8600, -2.13745px 2.13745px 0px #FF8600, -1.78121px 1.78121px 0px #FF8600, -1.42497px 1.42497px 0px #FF8600, -1.06873px 1.06873px 0px #FF8600, -0.712485px 0.712485px 0px #FF8600, -0.356242px 0.356242px 0px #FF8600;
          box-shadow: -2.84994px 2.84994px 0px #FF8600, -2.4937px 2.4937px 0px #FF8600, -2.13745px 2.13745px 0px #FF8600, -1.78121px 1.78121px 0px #FF8600, -1.42497px 1.42497px 0px #FF8600, -1.06873px 1.06873px 0px #FF8600, -0.712485px 0.712485px 0px #FF8600, -0.356242px 0.356242px 0px #FF8600;
  border-radius: 3.95825px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  cursor: pointer;
  padding: 8px 9px;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  color: #000;
}
.button2:hover {
  opacity: 0.7;
}

.contacts__last {
  text-align: center;
  color: #471AC0;
  margin-bottom: 67px;
}

.section11 {
  margin-top: 40px;
}
.section11 .container {
  max-width: 1360px;
  padding: 0 30px;
}
@media screen and (max-width: 1600px) {
  .section11 .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .section11 .container {
    padding: 0 20px;
  }
}

.footer {
  background: #1B1F3B;
  border-radius: 22px 22px 0px 0px;
  padding: 24px 0;
}
@media screen and (max-width: 1024px) {
  .footer .container {
    padding: 0 20px;
  }
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.copyright {
  width: 33.3333333333%;
  font-size: 17px;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .copyright {
    width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    text-align: center;
  }
}

.footer__logo {
  width: 33.3333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    width: 48%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.footer__link {
  width: 33.3333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .footer__link {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 48%;
  }
}

.footer__link1 {
  font-size: 17px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.wpcf7-response-output {
  color: #fff;
}

@-webkit-keyframes levitate {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes levitate {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}