@charset "UTF-8";
/* Указываем 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 {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Manrope";
}

/* Удаляем стандартную стилизацию для всех 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;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 1280px) {
  .container {
    padding: 0 15px;
  }
}

.main h1 {
  margin-bottom: 30px;
}
.main h2 {
  margin-bottom: 20px;
}
.main h3 {
  margin-bottom: 20px;
}
.main h4 {
  margin-bottom: 20px;
}
.main p {
  margin-bottom: 20px;
}

.header {
  padding: 28px 0;
}

.header__line {
  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;
}

.logo img {
  width: 300px;
}
@media screen and (max-width: 480px) {
  .logo img {
    width: 100px;
  }
}

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

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 60px;
  z-index: 1000;
}
.socials .social__link {
  margin-right: 40px;
}
.socials .social__link:nth-last-child(1) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .socials {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .socials .social__link {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .socials .social__link:nth-last-child(1) {
    margin-bottom: 0;
  }
}

.button1 {
  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;
  text-decoration: none;
  color: #000;
  padding: 11px 50px;
  border: 1px solid #000;
  border-radius: 16px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  font-weight: bold;
  margin-right: 60px;
}
.button1:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .button1 {
    margin-right: 20px;
    padding: 7px 10px;
    display: none;
  }
}

.lang__arrow {
  margin-left: 6px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.current__lang {
  font-weight: bold;
  color: #000;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.lang__hover {
  background: #e5f3ff;
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 2;
}
.lang__hover li a {
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
  font-weight: bold;
}

.opened {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  opacity: 1;
  visibility: visible;
}

.burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 30px;
  height: 30px;
  position: relative;
}
.burger span {
  width: 30px;
  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;
}
@media screen and (max-width: 1024px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.burger__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.burger__opened span:nth-child(2) {
  opacity: 0;
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.mobile__menu {
  background: #121212;
  position: fixed;
  top: 85px;
  left: 0;
  width: 80%;
  height: 100%;
  z-index: 1000;
  padding: 30px 15px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  -webkit-transform: translate(-150%, 0);
          transform: translate(-150%, 0);
}

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

.top__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top__menu .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__menu .menu .menu-item {
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .top__menu .menu .menu-item {
    margin-right: 0;
  }
}
.top__menu .menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.top__menu .menu .menu-item a {
  font-size: 18px;
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .top__menu .menu .menu-item a {
    font-size: 16px;
  }
}
.top__menu .menu .menu-item a:hover {
  color: #A142B5;
  text-decoration: underline;
}
.top__menu .menu .current-menu-item a {
  color: #A142B5;
  text-decoration: underline;
  font-weight: bold;
}

.section1 {
  padding-top: 36px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section1 {
    padding-bottom: 30px;
  }
}
.section1 .section1__decor {
  position: absolute;
  bottom: -285px;
  left: 0;
  z-index: 0;
}

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

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

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

.section1__title {
  font-weight: 900;
  font-size: 73.36px;
  line-height: 74.7px;
  margin-bottom: 30px;
}
.section1__title span {
  color: #A142B5;
}
@media screen and (max-width: 1024px) {
  .section1__title {
    font-size: 36px;
    line-height: 37px;
  }
}

.section1__content {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .section1__content {
    font-size: 16px;
    line-height: 26px;
    padding-right: 15px;
  }
}

.section1__buttons {
  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) {
  .section1__buttons {
    -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;
  }
}

.button2 {
  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;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  color: #FEFEFF;
  background: #000;
  padding: 18px 43px;
  border-radius: 16px;
  margin-right: 24px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.button2:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .button2 {
    margin-bottom: 24px;
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .button2 {
    width: 100%;
  }
}

.button3 {
  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;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  color: #000;
  background: transparent;
  border: 1px solid #000;
  padding: 18px 43px;
  border-radius: 16px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.button3:hover {
  opacity: 0.7;
}
@media screen and (max-width: 600px) {
  .button3 {
    width: 100%;
  }
}

.section2 {
  background: #f8f8f8;
  padding-top: 60px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .section2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.section2__title {
  font-size: 52.87px;
  line-height: 53.8px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 88px;
}
.section2__title span {
  color: #A142B5;
}
@media screen and (max-width: 1024px) {
  .section2__title {
    font-size: 30px;
    line-height: 31px;
    margin-bottom: 30px;
  }
}

.section2__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .section2__row {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 30px;
  }
}
@media screen and (max-width: 600px) {
  .section2__row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 480px) {
  .section2__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.section2__item {
  position: relative;
  background: #fff;
  padding: 60px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  background-size: contain;
}
.section2__item::before {
  content: "";
  width: 40px;
  height: 41px;
  background: url("../img/section2__ico2.jpg") no-repeat center;
  position: absolute;
  top: -16px;
}

.section2__item__ico {
  margin-bottom: 35px;
}

.section2__item__txt {
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.section3 {
  padding-top: 60px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.section3 .section3__decor {
  position: absolute;
  top: -285px;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .section3 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.section3__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .section3__row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .section3__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.c1 {
  background: #A142B5;
  width: 85px;
  height: 85px;
  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;
  border-radius: 100px;
}

.b1 {
  background: #ECE7E1;
  width: 70px;
  height: 70px;
  border-radius: 100px;
  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;
}

.video__block {
  position: relative;
}
.video__block video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 480px;
  border-radius: 24px;
  background: #F4F4F5;
}
@media screen and (max-width: 1024px) {
  .video__block video {
    height: 300px;
  }
}
.video__block .play {
  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;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.section4 {
  padding-top: 60px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.section4 .section4__decor {
  position: absolute;
  bottom: -285px;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .section4 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.section4__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-row-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .section4__row {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .section4__row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 480px) {
  .section4__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.section4__item {
  border-right: 1px solid #989898;
  padding: 50px 20px;
}
.section4__item:nth-last-child(1) {
  border-right: 0;
}
@media screen and (max-width: 600px) {
  .section4__item {
    padding: 30px 20px;
  }
  .section4__item:nth-last-child(1) {
    border-right: 1px solid #989898;
  }
}
@media screen and (max-width: 480px) {
  .section4__item {
    border-right: 0;
  }
  .section4__item:nth-last-child(1) {
    border-right: 0;
  }
}

.section4__item__number {
  color: #A142B5;
  font-size: 57px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 30px;
}

.section4__item__txt {
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.section5 {
  padding-top: 60px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #121212;
  padding-bottom: 60px;
}
.section5 .section2__title {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .section5 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.new__section5 {
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .new__section5 {
    padding-bottom: 30px;
  }
}

.swiper2 {
  overflow: hidden;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.swiper-slide img {
  width: 100%;
  height: 498px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider__row {
  position: relative;
  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;
  margin-top: 95px;
}
@media screen and (max-width: 1024px) {
  .slider__row {
    margin-top: 30px;
  }
}
.slider__row .sw__p {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  top: 0;
  bottom: 0;
  padding: 0;
  left: 0;
  right: 0;
  margin: 0 128px;
  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) {
  .slider__row .sw__p {
    margin: 0 28px;
  }
}
.slider__row .sw__p .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #CED7DA;
}
.slider__row .sw__p .swiper-pagination-bullet-active {
  width: 15px;
  height: 15px;
  background: #9F19AB;
}
.slider__row .arr__left {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 53px;
  height: 9px;
  cursor: pointer;
}
.slider__row .arr__right {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 53px;
  height: 9px;
  cursor: pointer;
}

.items-wrap {
  background: #121212;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  gap: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .items-wrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.items-wrap:before,
.items-wrap:after {
  content: "";
  height: 100%;
  top: 0;
  width: 10%;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.items {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  counter-reset: item;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  min-width: 100%;
}

.item {
  counter-increment: item;
  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;
  font-size: 25px;
  font-weight: bold;
  margin: 10px 0;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.item img {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

.marquee {
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
}

.items-wrap:hover .marquee {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.perfscan {
  margin: 20px 0;
  text-align: center;
  bottom: 0;
  background: #fff;
  padding: 5px;
}

.perfscan hr {
  border: solid #999;
  border-width: 1px 0 0 0;
  max-width: 50%;
  margin: 0 auto 20px;
}

.perfscan a {
  color: #000;
  font-weight: bold;
}

@-webkit-keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 20px));
            transform: translateX(calc(-100% - 20px));
  }
}

@keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 20px));
            transform: translateX(calc(-100% - 20px));
  }
}
.section6 {
  padding-top: 60px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.section6 .section6__decor1 {
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 1600px) {
  .section6 .section6__decor1 img {
    width: 180px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 1200px) {
  .section6 .section6__decor1 {
    display: none;
  }
}
.section6 .section6__decor2 {
  position: absolute;
  top: -285px;
  right: 0;
  z-index: 0;
}
.section6 .section6__decor3 {
  position: absolute;
  bottom: -285px;
  left: 0;
  z-index: 0;
}
.section6 .section2__title {
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .section6 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.section6__txt {
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 65px;
}

.section6__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .section6__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.section6__item {
  padding: 38px 24px;
  border-radius: 30px;
	position: relative;
}
.section6__item ul {
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .section6__item {
    padding: 30px 16px;
	  position: relative;
  }
}

.tarif__name {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 13px;
}

.tarif__content {
  margin-bottom: 34px;
}
.tarif__content li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 21px;
}
.tarif__content li:nth-last-child(1) {
  margin-bottom: 0;
}
.tarif__content li::before {
  content: "";
  min-width: 21px;
  min-height: 21px;
  background: url("../img/li.svg") no-repeat;
  display: block;
  margin-right: 9px;
}

.tarif__price {
  text-align: center;
  color: #A142B5;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}

.tarif__button {
  background: #111111;
  border-radius: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  width: 100%;
  height: 60px;
  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;
  margin: 0 auto;
}
.tarif__button:hover {
  opacity: 0.7;
}

.section6__txt2 {
  margin-top: 47px;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
}

.tariff1 {
  border: 1px solid #000;
}

.tariff2 {
  background: #F3F3F3;
}

.tariff3 {
  background: #A142B5;
}
.tariff3 .tarif__new__item {
  color: #fff;
}
.tariff3 .tarif__name {
  color: #fff;
}
.tariff3 .tarif__desc {
  color: #fff;
}
.tariff3 .tarif__content li {
  color: #fff;
}
.tariff3 .tarif__content li::before {
  background: url("../img/li__white.svg") no-repeat;
}
.tariff3 .tarif__price {
  color: #fff;
}
.tariff3 .tarif__button {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.tarif__desc {
  text-align: center;
  font-weight: 500;
  margin-bottom: 26px;
}

.tarif__new__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 21px;
}
.tarif__new__item:nth-last-child(1) {
  margin-bottom: 0;
}

.tarif__new__ico {
  margin-right: 9px;
}
.tarif__new__ico img {
  max-width: 30px;
  min-width: 30px;
}

.tarif__new__title {
  font-weight: 700;
}

.what {
  font-weight: bold;
  margin-bottom: 20px;
}

.section7 {
  padding-top: 60px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #F8F8F8;
}
@media screen and (max-width: 1024px) {
  .section7 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.section7__row {
  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;
}
@media screen and (max-width: 1024px) {
  .section7__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.section7__right {
  width: 48%;
}
.section7__right .tarif__price {
  text-align: left;
}
.section7__right .tarif__button {
  margin: inherit;
}
@media screen and (max-width: 1024px) {
  .section7__right {
    width: 100%;
  }
}

.section7__right__title {
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 30px;
}

.section7__right__content {
  margin-bottom: 30px;
}
.section7__right__content ul {
  padding: 0;
}
.section7__right__content li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 21px;
}
.section7__right__content li:nth-last-child(1) {
  margin-bottom: 0;
}
.section7__right__content li::before {
  content: "";
  min-width: 21px;
  min-height: 21px;
  background: url("../img/g.svg") no-repeat;
  display: block;
  margin-right: 9px;
}

.section8 {
  padding-top: 60px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .section8 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.section8__row {
  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;
}
@media screen and (max-width: 1024px) {
  .section8__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section8__left {
  width: 60%;
}
.section8__left .section2__title {
  text-align: left;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .section8__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.section8__right {
  width: 38%;
  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) {
  .section8__right {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.section8__content {
  font-size: 18px;
  line-height: 28px;
}
@media screen and (max-width: 1024px) {
  .section8__content {
    font-size: 16px;
    line-height: 26px;
  }
}

.o__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .o__item {
    margin-bottom: 50px;
  }
}

.o__item__img {
  margin-bottom: 13px;
}
.o__item__img img {
  width: 210px;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 400px;
}

.o__item__name {
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  color: #A142B5;
}

.o__item__txt {
  font-size: 20px;
  font-weight: 500;
}

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

.k__section2 {
  padding: 90px 0;
  background: #f8f8f8;
}

.resut__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}
@media screen and (max-width: 1024px) {
  .resut__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.result__img {
  margin-bottom: 16px;
}
.result__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 275px;
  border-radius: 12px;
}

.result__title {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 16px;
}

.result__txt {
  font-size: 18px;
  line-height: 28px;
}

.kurs .section6__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: spa;
      -ms-flex-align: spa;
          align-items: spa;
}
.kurs .tariff1 .kurs__img {
  position: absolute;
  left: -147px;
  top: -141px;
}
@media screen and (max-width: 1024px) {
  .kurs .tariff1 .kurs__img {
    position: relative;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.kurs .tariff2 .kurs__img {
  margin-top: -100px;
}
@media screen and (max-width: 1024px) {
  .kurs .tariff2 .kurs__img {
    position: relative;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
  }
}
.kurs .tariff3 .kurs__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kurs .tariff3 .tarif__name {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.kurs .tariff3 .kurs__img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.kurs .tariff3 .tarif__content {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.kurs .tariff3 .tarif__content span {
  display: block;
  font-size: 90px;
  color: #fff;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}

.after__curs {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .after__curs {
    margin-top: 30px;
  }
}

.after {
  font-weight: bold;
  font-size: 25px;
  text-align: center;
  color: #A142B5;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .after {
    font-size: 18px;
  }
}
.after p {
  margin-bottom: 20px;
}
.after p:nth-last-child(1) {
  margin-bottom: 0;
}

.k__section3 {
  padding: 90px 0;
  background: #f8f8f8;
}

.zapis {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .zapis {
    margin-top: 40px;
  }
}

.result__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.result__date img {
  margin-right: 10px;
}

.ch {
  margin-bottom: 30px;
}

.otz {
  padding-bottom: 80px;
}

.footer {
  background: #F8F8F8;
  padding-top: 60px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.footer .section2__title {
  text-align: left;
  margin-bottom: 38px;
}
.footer .tarif__button {
  margin: inherit;
  cursor: pointer;
  outline: none;
  border: none;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.footer__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) {
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

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

.footer__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  margin-bottom: 30px;
}
.footer__mail::before {
  content: "";
  min-width: 50px;
  min-height: 51px;
  background: url("../img/footer__mail.svg") no-repeat;
  display: block;
  margin-right: 27px;
}

.footer__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 18px;
}
.footer__tel::before {
  content: "";
  min-width: 50px;
  min-height: 51px;
  background: url("../img/footer__tel.svg") no-repeat;
  display: block;
  margin-right: 27px;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

.footer__social__link {
  margin-right: 17px;
}
.footer__social__link:nth-last-child(1) {
  margin-right: 0;
}

.form__input {
  margin-bottom: 20px;
}
.form__input input {
  border: none;
  outline: none;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  font-size: 16px;
  color: #000;
  width: 100%;
  background: transparent;
  border-radius: 0;
}
.form__input input::-webkit-input-placeholder {
  font-size: 16px;
  color: #000;
}
.form__input input::-moz-placeholder {
  font-size: 16px;
  color: #000;
}
.form__input input:-ms-input-placeholder {
  font-size: 16px;
  color: #000;
}
.form__input input::-ms-input-placeholder {
  font-size: 16px;
  color: #000;
}
.form__input input::placeholder {
  font-size: 16px;
  color: #000;
}
.form__input textarea {
  border: none;
  outline: none;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  font-size: 16px;
  color: #000;
  width: 100%;
  background: transparent;
  border-radius: 0;
  height: 100px;
}
.form__input textarea::-webkit-input-placeholder {
  font-size: 16px;
  color: #000;
}
.form__input textarea::-moz-placeholder {
  font-size: 16px;
  color: #000;
}
.form__input textarea:-ms-input-placeholder {
  font-size: 16px;
  color: #000;
}
.form__input textarea::-ms-input-placeholder {
  font-size: 16px;
  color: #000;
}
.form__input textarea::placeholder {
  font-size: 16px;
  color: #000;
}

.footer__line {
  font-size: 15px;
  padding: 20px 0;
}

.f__block {
  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) {
  .f__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f__block a {
  text-decoration: none;
  color: #000;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.copyright {
  margin-right: 30px;
}

#dialog-content {
  border-radius: 16px;
}

.tarif__new__content {
	margin-bottom: 20px;
}

.most {
    background: red;
    border-radius: 20px;
    text-align: center;
    width: max-content;
    padding: 10px 20px;
    color: #fff;
    position: absolute;
    top: -23px;
    left: 0;
    right: 0;
    margin: 0 auto;
	display: none;
}

.tariff3 .most {
	display:block;
}