/* Reset and base styles  */
* {
    margin: 0;
    padding: 0px;
    border: none;
  }
  
  /* Links */
  a,
  a:link,
  a:visited {
    text-decoration: none;
    color: inherit;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  /* Common */
  aside,
  nav,
  footer,
  header,
  section,
  main {
    display: block;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    font-size: inherit;
    font-weight: inherit;
  }
  
  ul,
  ul li {
    list-style: none;
  }
  
  img {
    vertical-align: top;
  }
  
  img,
  svg {
    max-width: 100%;
    height: auto;
  }
  
  address {
    font-style: normal;
  }
  
  /* Form */
  input,
  textarea,
  button,
  select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
  }
  
  input::-ms-clear {
    display: none;
  }
  
  button,
  input[type=submit] {
    display: inline-block;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
  }
  
  input:focus,
  input:active,
  button:focus,
  button:active {
    outline: none;
  }
  
  select {
    outline: none;
  }
  
  button::-moz-focus-inner {
    padding: 0;
    border: 0;
  }
  
  label {
    cursor: pointer;
  }
  
  legend {
    display: block;
  }
  
  button {
    border: 0;
    padding: 0;
    margin: 0;
    background: 0;
  }
  
  .header {
    background: #FC0;
    padding: 4px 0;
  }
  .header__inner {
    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;
  }
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__nav-item {
    position: relative;
    margin-right: 22px;
    padding: 5px 0;
  }
  .header__nav-item:hover .header__submenu {
    display: block;
  }
  .header__nav-item:last-child {
    margin-right: 0;
  }
  .header__nav-link {
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .header__nav-link:hover {
    color: #4251DB;
  }
  .header__submenu {
    display: none;
    width: 173px;
    background: #fff;
    position: absolute;
    top: 33px;
    border-radius: 5px;
  }
  .header__submenu-item {
    padding: 4px 9px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .header__submenu-item:hover {
    background: #FC0;
  }
  .header__submenu-item:last-child {
    border-radius: 0px 0px 5px 5px;
  }
  .header__submenu-link {
    font-size: 16px;
    font-weight: 700;
    display: block;
    text-transform: capitalize;
  }
  .header__button {
    font-size: 20px;
    font-weight: 700;
    max-width: 230px !important;
    border-radius: 10px;
    background: #0EEA24;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
            box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
    padding: 8px 12px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .header__button:hover {
    background: #04AF15;
    color: #fff;
  }
  .header__language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__language-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 24px;
  }
  
  .intro {

  }
  .intro__title {
    width: 100%;
    max-width: 590px;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%;
  }
  .intro__title span {
    color: #4251DB;
    font-size: 42px;
    font-weight: 800;
  }
  
  .classes {
    background: #FC0;
    padding: 32px 0;
  }
  .classes__slide {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
  .classes__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .classes__card {
    width: 377px !important;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    height: auto;
    text-align: center;
  }
  .classes__card.active .classes__card {
    height: 10px;
  }
  .classes__card-photo img {
    border-radius: 50%;
  }
  .classes__card-title {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 24px 0;
  }
  .classes__card-info {
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
  }
  .classes__card-text {
    font-size: 20px;
    font-weight: 600;
    position: relative;
    line-height: 27px;
  }
  .classes__card-text span::before {
    content: ".";
    display: block !important;
    width: 2px;
    height: 2px;
    position: absolute;
  }
  .classes__card-btn {
    margin: 0 auto;
  }
  
  .works {
    padding: 32px 0;
    background: #F6F6F6;
  }
  .works__item {
    background: #FFF;
    -webkit-box-shadow: 0px 5px 25px 0px rgba(54, 53, 53, 0.45);
            box-shadow: 0px 5px 25px 0px rgba(54, 53, 53, 0.45);
    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;
    padding: 24px 32px;
    border-radius: 15px;
    margin-bottom: 24px;
  }
  .works__item:last-child {
    margin-bottom: 0;
  }
  .works__item:nth-child(2n) {
    text-align: right;
  }
  .works__item:nth-child(2n) .works__item-btn {
    margin: 0 0 0 auto;
  }
  .works__item-photo {
    margin-right: 20px;
  }
  .works__item-photo img {
    border-radius: 50%;
  }
  .works__item-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 150%;
    margin-bottom: 16px;
  }
  .works__item-descr {
    width: 100%;
    max-width: 783px;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 24px;
  }
  .works__item-descr span {
    display: block;
  }
  
  .academy {
    background: #FC0;
    padding: 32px 0;
  }
  .academy__subtitle {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
  }
  .academy__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
    height: auto;
  }
  .academy__descr {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
  }
  .academy__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    width: 377px !important;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 30px;
  }
  .academy__card-photo {
    margin-bottom: 18px;
  }
  .academy__card-photo img {
    border-radius: 50%;
  }
  .academy__card-title {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .academy__card-descr {
    font-size: 20px;
    font-weight: 600;
  }
  
  .gallery {
    padding: 32px 0;
  }
  .gallery__wrapper {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .gallery__inner {
    margin-bottom: 30px;
    height: 582px;
  }
  .gallery__bottom {
    height: 256px;
  }
  .gallery__card img {
    max-width: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .gallery__card-item {
    width: 33% !important;
  }
  .gallery__card-item img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .about {
    background: #F6F6F6;
    padding: 32px 0;
  }
  .about__title {
    margin-bottom: 34px;
  }
  .about__wrapp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
  .about__photo {
    width: 32%;
  }
  .about__info {
    width: 68%;
    font-size: 21px;
    font-weight: 600;
  }
  
  .contacts {
    padding: 32px 0;
    background: #F6F6F6; 
  }
  .contacts__wrapp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .contacts__info {
    width: 100%;
    max-width: 407px;
  }
  .contacts__item {
    margin-bottom: 18px;
  }
  .contacts__item:nth-child(5) .contacts__item-descr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    gap: 17px;
  }
  .contacts__item:nth-child(4) .contacts__item-descr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contacts__item:last-child {
    margin-bottom: 0;
  }
  .contacts__item-title {
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contacts__item-title span {
    text-transform: none;
  }
  .contacts__item-title img {
    margin-left: 5px;
  }
  .contacts__item-descr {
    font-size: 20px;
    font-weight: 400;
  }
  .contacts__item-descr span {
    display: block;
  }
  .contacts__item-descr img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 5px;
  }
  .contacts__item-link {
    font-size: 20px;
    font-weight: 400;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .contacts__item-link:hover {
    color: #DB2E2E;
  }
  .contacts__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 18px;
    margin: 29px 0 24px 0;
  }
  .contacts__btn {
    width: 100%;
    max-width: 276px !important;
    padding: 12px 40px !important;
  }
  .contacts__map {
    width: 713px;
    height: 373px;
  }
  
  .prices {
    background: #F6F6F6;
    padding: 32px 0;
  }
  .prices__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .prices__title em {
    font-style: normal;
  }
  .prices__items {
    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;
    gap: 14px;
    margin: 70px 0 24px 0;
  }
  .prices__tabl {
    margin: 25px 0;
  }
  .prices__cards {
    margin-top: 70px;
  }
  .prices__cards .prices__item-die {
    width: 161px;
  }
  .prices__titles {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
  }
  .prices__item {
    border-radius: 15px;
  }
  .prices__item--yellow {
    width: 100%;
    max-width: 102px;
    background: #FC0;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
            box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
    padding: 45px 4px 10px 4px;
    text-align: center;
  }
  .prices__item--content {
    width: 100%;
    max-width: 716px;
  }
  .prices__item--right {
    width: 100%;
    max-width: 354px;
  }
  .prices__item-element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
    border-radius: 15px;
    margin-bottom: 10px;
  }
  .prices__item-element--top {
    background: #FC0;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
            box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
    padding: 30px 37px 20px 30px;
  }
  .prices__item-element--time {
    background: #FC0;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
            box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
    padding: 13px 20px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .prices__item-element--price {
    background: #FFF;
    padding: 20px;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
            box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .prices__item-element--intensive {
    background: #131313;
    text-align: center;
    padding: 45px 10px 24px 10px;
  }
  .prices__item-element--hours {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #131313;
    text-align: center;
    padding: 33px 10px;
  }
  .prices__item-element--coin {
    background: #FFF;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
            box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
    padding: 9px 10px;
  }
  .prices__item-element--bon {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 23px 20px 23px;
  }
  .prices__item-block {
    position: relative;
  }
  .prices__item-die {
    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;
    border-radius: 15px;
    background: #fff;
    width: 171px;
    height: 64px;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
            box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
    position: absolute;
    top: -77px;
    left: -31px;
    margin-right: 10px;
  }
  .prices__item-die--d {
    left: -45px;
  }
  .prices__item-die--t {
    left: -40px;
  }
  .prices__item-die--h {
    left: -35px;
  }
  .prices__item-die--p {
    left: -10px;
    top: -94px;
  }
  .prices__item-die--sh {
    left: -30px;
    top: -94px;
  }
  .prices__item-die--1 {
    left: -21px;
  }
  .prices__item-die--2 {
    left: -24px;
  }
  .prices__item-die--3 {
    left: -48px;
  }
  .prices__item-die--4 {
    left: -47px;
    top: -90px;
  }
  .prices__item-die--5 {
    left: -39px;
    top: -90px;
  }
  .prices__item-die--6 {
    left: -32px;
    top: -90px;
  }
  .prices__item-die--7 {
    left: -23px;
    top: -90px;
  }
  .prices__item-titles {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.42px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .prices__item-times {
    margin-bottom: 20px;
  }
  .prices__item-day {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.48px;
    margin-bottom: 20px;
  }
  .prices__item-day:last-child {
    margin-bottom: 0;
  }
  .prices__item-day span {
    display: block;
    font-size: 50px;
    font-weight: 800;
    line-height: 80%;
  }
  .prices__item-title {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.4px;
    text-transform: uppercase;
  }
  .prices__item-title span {
    display: block;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.36px;
    text-transform: lowercase;
  }
  .prices__item-time {
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.46px;
  }
  .prices__item-price {
    font-size: 40px;
    font-weight: 800;
  }
  .prices__item-titletop {
    color: #FC0;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.4px;
  }
  .prices__item-titletop span {
    display: block;
    font-size: 16px;
    font-weight: 800;
  }
  .prices__item-hours {
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    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;
    gap: 40px;
  }
  .prices__item-hours span {
    display: block;
  }
  .prices__item-coin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.8px;
  }
  
  .footer {
    background: #FC0;
    padding: 18px 0 157px 0;
  }
  .footer__wrapp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
  .footer__payment {
    display: grid;
    grid-template-columns: repeat(2, 3fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 18px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }
  .footer__nav-item {
    position: relative;
  }
  .footer__nav-link {
    font-size: 18px;
    font-weight: 700;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    text-transform: capitalize;
  }
  .footer__nav-link:hover {
    color: #DB2E2E;
  }
  .footer__sub {
    margin-top: 30px;
    position: absolute;
    left: 0;
  }
  .footer__sub-item {
    margin-bottom: 18px;
  }
  .footer__sub-item:last-child {
    margin-bottom: 0;
  }
  .footer__sub-link {
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .footer__sub-link:hover {
    color: #4251DB;
  }
  
  .gallery__next:after {
    content: "";
    background: url(../img/arrow-right.svg) no-repeat;
    width: 56px;
    height: 56px;
  }
  
  .gallery__prev:after {
    content: "";
    background: url(../img/arrow-prew.svg) no-repeat;
    width: 56px;
    height: 56px;
  }
  
  .slide__next:after {
    content: "";
    background: url(../img/right.svg) no-repeat;
    width: 56px;
    height: 56px;
  }
  
  .slide__prev:after {
    content: "";
    background: url(../img/left.svg) no-repeat;
    width: 56px;
    height: 56px;
  }
  
  .slide__prev,
  .slide__next {
    top: 350px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 56px;
    height: 56px;
  }
  
  .active .works__item {
    display: none;
  }
  
  .academy__button {
    top: 280px;
  }
  
  *,
  *::before,
  *::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    color: #131313;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
  }
  
  .btn {
    width: 100%;
    max-width: 234px;
    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: 20px;
    font-weight: 700;
    border-radius: 10px;
    background: #FC0;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
            box-shadow: 0px 5px 10px 0px rgba(54, 53, 53, 0.45);
    padding: 8px 73px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    margin-top: auto;
  }
  .btn:hover {
    background: #DA9F07;
    color: #fff;
  }
  
  .title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
  }
  
  .text {
    overflow: hidden;
  }
  
  .mobail {
    display: none;
  }
  
  .swiper-pagination {
    position: static;
    width: 100% !important;
    max-width: 1230px !important;
    margin-top: 24px;
  }
  .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background: #E2E2E2;
    opacity: 1;
  }
  
  .swiper-pagination-bullet-active {
    background: #FFF;
  }
  
  .header__burger {
    position: relative;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 200;
  }
  .header__burger.active .header__burger {
    position: fixed !important;
    right: 17px;
  }
  
  .header__menu {
    position: fixed;
    top: 0;
    right: -100%;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    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;
    text-align: center;
    z-index: 100;
  }
  
  .header__burger span {
    position: absolute;
    background-color: #131313;
    position: absolute;
    right: 0;
    width: 75%;
    height: 2px;
    top: 9px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border-radius: 5px;
  }
  
  .header__burger:before,
  .header__burger:after {
    content: "";
    background-color: #131313;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border-radius: 5px;
  }
  
  .header__burger:before {
    top: 0;
  }
  
  .header__burger:after {
    bottom: 0;
  }
  
  .header__burger.active span {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  
  .header__burger.active:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 9px;
  }
  
  .header__burger.active:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 9px;
  }
  
  .header__menu.active {
    right: 0;
  }
  
  .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
  }
  
  @media (max-width: 1130px) {
    .header .header__nav {
      display: none;
    }
    .header .header__burger {
      display: block;
    }
    .header .header__button {
      margin-left: auto;
    }
    .header .header__logo {
      margin-right: 25px;
    }
    .header .header__language {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 8px;
      margin-left: 30px;
    }
    .header__menu .header__nav {
      display: block !important;
    }
    .header__menu .header__nav-list {
      display: block;
      text-align: left;
    }
    .header__menu .header__nav-item {
      padding: 5px 10px;
    }
    .header__menu .header__nav-item:hover {
      background: #FC0;
      color: #131313;
    }
  }
  @media (max-width: 950px) {
    .classes__slide {
      display: none;
    }
    .works__item {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      text-align: center;
    }
    .works__item:nth-child(2n) {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      text-align: center;
    }
    .works__item:nth-child(2n) .works__item-btn {
      margin: 0 auto;
    }
    .works__item-photo {
      margin-bottom: 20px;
      margin-right: 0;
    }
    .works__item-btn {
      margin: 0 auto;
    }
    .footer {
      padding: 24px 0 74px 0;
    }
    .footer__wrapp {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
    }
    .footer__nav {
      display: none;
    }
    .footer__nav-m {
      display: block !important;
    }
    .footer__nav-list {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 10px;
    }
    .footer__sub {
      position: inherit;
      display: none;
    }
    .footer__payment {
      width: 100%;
      max-width: 202px;
    }
    .contacts__wrapp {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 20px;
    }
    .contacts__map {
      width: 100%;
    }
    .classes__card {
      width: 100% !important;
      max-width: 100%;
    }
    .classes__wrapp {
      display: none;
    }
    .classes__swiper {
      display: block;
    }
    .academy__swiper {
      display: block;
    }
    .academy__cards {
      display: none;
    }
    .academy__card {
      width: 100% !important;
      max-width: 100%;
    }
    .academy__swiper {
      display: block;
    }
  }
  @media (max-width: 600px) {
    .gallery__inner {
      height: 300px;
    }
    .gallery__bottom {
      height: 150px;
    }
    .title {
      font-size: 25px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 14px;
    }
    .title img {
      width: 57px;
      height: 57px;
    }
    .prices__titles {
      font-size: 25px;
    }
    .gallery__inner {
      margin-bottom: 10px;
    }
    .about {
      text-align: center;
    }
    .about__wrapp {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 0px;
    }
    .about__photo {
      width: 100%;
    }
    .about__info {
      width: 100%;
    }
    .slide__next:after {
      content: "";
      background: url(../img/mobail-right.svg) no-repeat;
      width: 12px;
      height: 12px;
    }
    .slide__prev:after {
      content: "";
      background: url(../img/mobail-left.svg) no-repeat;
      width: 12px;
      height: 12px;
    }
    .slide__prev,
    .slide__next {
      top: 290px;
      width: 12px;
      height: 12px;
    }
    .gallery__next:after {
      content: "";
      background: url(../img/mobail-right.svg) no-repeat;
      width: 12px;
      height: 12px;
    }
    .gallery__prev:after {
      content: "";
      background: url(../img/mobail-left.svg) no-repeat;
      width: 12px;
      height: 12px;
    }
    .swiper-button-next,
    .swiper-button-prev {
      width: 12px;
      height: 12px;
    }
    .swiper-pagination {
      margin-top: 24px;
    }
  }
  @media (max-width: 425px) {
    .gallery__inner {
      height: 230px;
    }
    .gallery__bottom {
      height: 71px;
    }
    .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
    }
    .title {
      font-size: 20px;
    }
    .btn {
      font-size: 16px;
      padding: 8px 50px !important;
    }
    .about {
      padding: 24px 0;
      text-align: center;
    }
    .about__title {
      margin-bottom: 5px;
    }
    .about__info {
      font-size: 14px;
    }
    .works {
      padding: 24px 0;
    }
    .works__item {
      padding: 18px 12px;
      margin-bottom: 14px;
    }
    .works__item:last-child {
      margin-bottom: 0;
    }
    .works__item-title {
      font-size: 18px;
      line-height: normal;
      margin-bottom: 8px;
    }
    .works__item-descr {
      font-size: 14px;
      margin-bottom: 12px;
    }
    .prices {
      padding: 24px 0;
    }
    .prices__title span {
      font-size: 16px;
    }
    .prices__titles {
      font-size: 16px;
    }
    .prices__tabl {
      margin: 14px 0;
    }
    .prices__tabl--item {
  
    }
    .prices__tabl img {
      width: 100%;
    }
    .prices__tabl.mobail {
      display: block !important;
    }
    .header__logo-link {
      display: block;
      width: 38px;
      height: 38px;
    }
    .header__language-link {
      width: 20px;
      height: 14px;
      display: block;
    }
    .header__language-link img {
      width: 20px;
      height: 14px;
    }
    .header__button {
      font-size: 14px;
      padding: 4px 10px;
      margin: 0 auto;
    }
    .intro { 

    }
    .intro__title {
      font-size: 15px;
      width: 166px;
    }
    .intro__title br {
      display: none;
    }
    .intro__title span {
      font-size: 15px;
    }
    .gallery {
      padding: 24px 0;
    }
    .contacts__item {
      margin-bottom: 14px;
    }
    .contacts__item-title {
      font-size: 18px;
      margin-bottom: 5px;
    }
    .contacts__item-descr {
      font-size: 14px;
    }
    .contacts__item-descr img {
      width: 19px;
      height: 14px;
    }
    .contacts__item-link {
      font-size: 14px;
    }
    .contacts__social-link img {
      width: 24px !important;
      height: 24px !important;
    }
    .contacts__btn {
      max-width: 230px !important;
      padding: 11px 35px !important;
    }
    .casses {
      padding: 24px 0;
    }
    .classes__card {
      padding: 15px 12px;
    }
    .classes__card-title {
      font-size: 18px;
      margin: 10px 0;
    }
    .classes__card-info {
      font-size: 14px;
      margin-bottom: 12px;
    }
    .classes__card-text {
      font-size: 14px;
    }
    .academy {
      padding: 24px 0;
    }
    .academy__title {
      margin-bottom: 8px;
    }
    .academy__subtitle {
      font-size: 18px;
      margin-bottom: 8px;
    }
    .academy__descr {
      font-size: 14px;
    }
    .academy__card {
      padding: 15px 12px;
    }
    .academy__card-title {
      font-size: 18px;
      margin: 10px 0;
    }
    .academy__card-info {
      margin-bottom: 12px;
    }
    .academy__card-descr {
      font-size: 14px;
    }
  }
  @media (max-width: 375px) {
    .header__logo {
      margin-right: 0 !important;
    }
    .header__button {
      margin: 0 !important;
    }
    .header__language {
      margin-left: 0 !important;
    }
    .header__language-link {
      margin-right: 0 !important;
    }
  }
  
  .revs{
    padding: 80px 0;
  }
  .rew_stat{
  
  }
  .rew_stat_top{
    display: flex;
    align-items: center;
  }
  .rew_stat_top .yb{
    background-color: #FFCC00;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 24px;
    font-weight: 900;
    margin-right: 20px;
  }
  .rew_stat_top .rev_st{ 
    font-size: 24px;
    font-weight: 900;
    margin-right: 40px;
  } 
  .rev_op{
    font-size: 24px;
    color: #616161;
  }
  .rew_stat_center{
  
  }
  .rew_stat_center h6{
    color: #131313;
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
  }
  .rew_stat_center_block{
    display: flex;
    justify-content: space-between;
  }
  .rewst_itm{
    margin-top: 30px; 
    width: 32%;
  }
  .rewst_itm_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #131313;
    font-size: 21px;
    font-weight: 600;
  }
  .rev_range_block{
    background-color: #D9D9D9;
    height: 8px;
    border-radius: 10px;
    margin-top: 11px;
  }
  .rev_range_block .rev_range{ 
    background-color: #FFCC00;
    width: 92%;
    height: 8px;
    border-radius: 10px;
  }
  .revi_itm_wrap{
  
  }
  .revi_itm_wrap h6{
    color: #131313;
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
  }
  .revi_itm_block{
    margin-top: 30px;
  }
  .revi_itm{
    padding: 15px;
    box-shadow: 0px 0px 4px #0000005e;
    border-radius: 8px;
    width: 31%;
  }
  .revi_itm_top{
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #131313;
    font-weight: 600;
  }
  .revi_itm_top img{
    margin-right: 10px;
  }
  .swipe_beetween{
    justify-content: space-between;
  }
  .revi_text{
    margin-top: 20px;
    -webkit-line-clamp: 5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    line-height: 23px;
    min-height: 115px;
  }
  .revi_itm_block .swiper-slide{
    padding: 10px;
    justify-content: space-between;
  }
  .revi_but{
    text-align: center;
  
  }
  .revi_but button{
    background-color: #FFCC00;
    border-radius: 10px;
    box-shadow: 0 2px 5px #00000069;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 3px 50px;
    margin-top: 20px;
  }
  .rev_modal{
    display: none;
    position: fixed;
    width: 50%;
    left: 25%;
    top: 20%;
    background-color: #fff;
    padding: 10px;
    z-index: 99;
    box-shadow: 0px 4px 5px #00000045;
    border-radius: 10px;
  }
  .back_modal{
    display: none;
    position: fixed;
    z-index: 98;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    background: #0000004d;
    padding-bottom: 15px;
  }
  .rev_modal_close{
    position: absolute;
    right: 12px;
    border: 1px solid #c0c0c0;
    color: #c0c0c0;
    width: 30px;
    height: 30px;
    border-radius: 50px;
  }
  .rev_modal .revi_text{
    -webkit-line-clamp: inherit;
  }
  .hero{
  
  }
  .hero h1{
    font-size: 50px;
    color: #fff;
    font-weight: 900;
    line-height: 70px;
  }
  .hero h1 span{
    color: #FFCC00;
    font-size: 60px;
  }
  .hero_but{
    background: #FF3087;
    padding: 5px 40px;
    margin-top: 20px;
    font-size: 26px;
    font-weight: 900;
    border-radius: 12px;
  
  }
  .price_butt{
    text-align: center;
    padding: 20px 0;
  }
  .price_butt .showFormular{
    background-color: #0CE2FF;
    padding: 7px 40px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 5px 5px #00000026;
  }
  
  
  .less_popup{
    display: none;
    position: fixed;
    top: 10%;
    left: 10%;
    width: 80%;
    padding: 30px;
    background-color: #fff;  
    z-index: 99;
    box-shadow: 0px 4px 5px #00000045;
    border-radius: 10px;
    max-height: 750px;
    overflow-y: auto;
  }
  .close_less_pop{
    position: absolute;
    right: 30px;
    border: 1px solid #aeaeae;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    cursor: pointer;
  }
  .less_popup_back{ 
    display: none;
    display: none;
    position: fixed;
    z-index: 98;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    background: #0000004d;
    padding-bottom: 15px;
  }
  .less_popup_body{
    padding: 30px 0;
  }
  .less_table{
    border-collapse: collapse;
    width: 100%;
    margin-top: 10px;
  }
  .less_table td{
  
    border: 1px solid #e4e4e4;
    text-align: center;
  
  }
  
  .ordButt{
    padding: 10px 5px;
  }
  .ordButt.green{
    background: #39b33e;
    color: #Fff;
    width: 100%;
  }
  td.closed{
    background: #F44336;
  }
  .ordButt.checked{
    background: #4936f4;
    color: #fff;
  }
  .form_order{
    padding: 10px;
    border: 1px solid #ddd;
    margin-top: 10px;
  }
  .form_order>.price{
    font-size: 36px;
    margin: 20px 0;
    font-weight: 600;
  }
  .orderSub{
    background-color: #0CE2FF;
      padding: 7px 40px;
      border-radius: 12px;
      font-size: 24px;
      font-weight: 900;
      box-shadow: 0 5px 5px #00000026;
  }
  
  .revi_itm_block .slide__prev, .revi_itm_block .slide__next {
    top: 125px;
  }
  .revi_itm_block .swiper-pagination-bullet-active {
    background: #c2c2c2;
  }
  .price_red_Title{
    text-transform: uppercase;
    color: #F44336;
    font-size: 26px;
    margin-top: 30px;
    text-align: center;
    font-weight: 900;
    margin-bottom: 40px;
  }
  #classes .classes__card-btn.btn{
    max-width: 304px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .foter_docs{
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: end;
  }
  .entry-title{
    font-size: 36px;
    margin-bottom: 20px;
  }
  .entry-content p{
    margin-bottom: 15px;
    line-height: 23px;
  }
  .entry-content ol{
    padding-left: 30px;
    margin-bottom: 15px;
  }
  .entry-content li{
    line-height: 23px;
    list-style: disc;
  }
  .page_def {
    margin: 50px 0;
  }
  .foter_docs.mobail{
    display: none;
  }
  #calendar{
    width: 100%;
    height: 600px;
    margin-top: 30px;
  }
  tr:first-child>td>.fc-day-grid-event {
    margin-top: 30px;
  }
  .dayButton{
    background: #FFEB3B;
    cursor: pointer;
    width: 100%;
  }
  .fc-row .fc-bg {
    z-index: 5;
  }
  .dayButton.checked{
    background: #2196F3;
    color: #fff;
  }
  .select_time_title{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
  
  }
  .form_itm{
    margin-bottom: 15px;
  }
  .form_itm label{
    display: block;
    width: 100%;
  }
  .form_control{
    width: 100%;
    border: 1px solid #dadada;
    padding: 10px;
    margin-top: 5px;
    border-radius: 7px;
  }
  .less_popup.mini{
    width: 30%;
    left: 35%;
  }
  #toCart{
    display: none;
    margin-top: 20px;
  }
  .tmpop_date_block{
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .ays-pb-modal{
  
  }
  .wpcf7 p{
    padding-bottom: 15px;
  }
  .wpcf7 p a{
    color: #2196F3;
  }
  input.wpcf7-submit {
    background: #fc0;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
  }
  .wpcf7-form-control-wrap{
  
  }
  .cont_title{
    font-size: 36px;
  }
  .skidka{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4CAF50;
  }
  .close_button{
    display: none;
  }
  .form_price_title{ 
    margin-bottom: 10px; 
    font-size: 18px;
    font-weight: 600;
  }
  .fc-unthemed td.fc-today {
    background: transparent!important;
  }
  .fixed_wats{
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
  }
  .auth_modal{
    position: fixed;
    width: 360px;
    background: #fff;
    top: 10%;
    z-index: 100;
    left: calc(50% - 180px);
    border-radius: 5px;
    box-shadow: 0px 0px 5px #333;
    display: none;
  }
  .auth_modal_over{
    position: fixed;
    background: #00000075;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: none;
  }
  .auth_tabs{
    padding: 15px;
    border-bottom: 1px solid #d8d8d8;
  }
  .auth_tabs a{
    margin-right: 20px;
  }
  .auth_tabs a.active{
    font-weight: 600;
  }
  .auth_pane{
    padding: 15px;
    display: none;
  }
  .auth_pane.active{
    display: block;
  }
  .auth_pane h4{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  .auth_form_itm{
    margin-bottom: 10px;
  }
  .auth_form_itm label{
    display: block;
    width: 100%;
  }
  .auth_form_itm input{
    width: 100%;
    border: 1px solid #d8d8d8;
    padding: 7px;
    border-radius: 5px;
    margin-top: 5px;
  }
  .auth_form_itm button{
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
    background: #FC0;
    padding: 5px 40px;
  }
  .auth_tabs a.auth_tabs_close{
    margin-right: 0;
    margin-left: auto;
    float: right;
    font-weight: 600;
    cursor: pointer;
  }
  .return_register, .return_login{
    color: #ff1212;
  }
  
.google_auth{
  display: flex;
  align-items: center;
  font-weight: 600;
  border: 1px solid #c1c1c1;
  border-radius: 7px;
  padding: 10px;
  justify-content: center;
}
.google_auth img{
  margin-right: 10px;
}
.price_table{
 
}
.price_table_row{
  display: flex;
  justify-content: space-between;
}
.price_table_itm{
  background: #999;
  border-radius: 12px;
  padding: 20px;
  width: 49%;
  margin-bottom: 30px;
}
.prti_title{
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}
.prti_body{

}
.prti_itm{
  display: flex;
  align-items: center;
  font-size: 22px;
  border-bottom: 1px solid #ffffff52;
  margin-bottom: 10px;
  justify-content: space-between;
  padding-bottom: 10px;
}
.prti_itm:last-child{
  border: none;
}
.prti_itm span{
  width: 33%;
}
.prti_itm span.anp{
  background: #FFCC00;
  color: #000;
  text-align: center;
  border-radius: 10px;
  display: inline-block;
  font-weight: 700;
  box-shadow: 0px 0px 5px #00000038;
  font-size: 16px;
  padding: 4px;
  cursor: pointer;
}

.prti_itm span b{
  font-size: 26px;
}








  @media only screen and (max-width: 900px) { 
    .foter_docs.mobail{
      display: block;
    }
   
    .hero h1 {
      font-size: 16px;
      color: #fff;
      line-height: 22px;
      width: 42%;
    }
    .hero h1 span{
      font-size: 16px;
    }
    .hero_but {
      font-size: 16px;
      padding: 5px 10px;
    }
    
    .rew_stat_top .rev_st {
        font-size: 19px;
    }
    .rew_stat_center_block {
      display: block; 
    }
    .rewst_itm{
      width: 100%;
    }
    .revi_itm{
      width: 100%;
    }
    .rev_modal {
      width: 96%;
      left: 2%;
    }
    .less_popup {
      top: 0;
      left: 0;
      width: 100%;
    }
    .less_table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
    }
    .price_red_Title {
      font-size: 9px;
      margin: 17px;
  
    }
    .revs {
      padding-bottom: 30px;
    }
    .slide__next{
      display: none!important;
    }
    .slide__prev{
      display: none!important;
    }
    .auth_modal{
      width: 100%;
      left: 0; 
    }
    .price_table_row{
      display: block;
    }
    .price_table_itm{
      width: 100%;
    }
    .prti_itm {
      font-size: 14px;
    }
    .prti_itm span b {
      font-size: 16px;
    }
  }
