:root {
    --main-text: #242021;
    --second-text: #5c5c5c;
    --title-text: #635c7e;
    --light-text: #9b9ca0;
    --main-color: #dd2563;
    --second-color: #ff7845;
    --main-bg: #ece3e4;
    --second-bg: #6255a5;
    --grey: #686868;
    --ligh-gray: #B8B8B8;
    --orange: #FF7A3D;
    --yellow: #FFC331;
    --white: #fff;
    --violet: #846FF9;
    --green: #5CF35C;
}

* {
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: var(--main-text);
    font-family: 'Comic Helvetic', sans-serif;
    font-weight: 500;
    overflow-x: hidden;
    background-color: var(--main-bg);
}

h1 {
    font-weight: 500;
    font-size: 42px;
    line-height: 1.2em;
}

h2 {
    font-size: 42px;
    font-family: 'Comic Helvetic', sans-serif;
}


ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    display: inline-block;
}

button {
    border: none;
    outline: none;
    border-radius: 15px;
    width: 210px;
    padding: 15px 20px;
    box-sizing: border-box;
    background-color: var(--main-color);
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    font-family: 'Comic Helvetic', sans-serif;
    transition: 0.3s;
}

button:hover {
    background: #FF3C79;
    box-shadow: 0px 0px 10px 0px #FF2067;
}

button:active {
    background: #ED1156;
    box-shadow: 0px 0px 10px 0px #FF2067;
}

.container {
    width: 1170px;
    margin: 0 auto;
}



/* navbar */

nav {
    background-color: #fff;
}

.navbar {
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav_burger {
    display: none;
    background-color: var(--second-color);
    width: 36px;
    min-width: 36px;
    height: 36px;
    order: 2;
    padding: 0;
    border-radius:5px;
}
.nav_menu {
    flex-grow: 1;
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* align-self: flex-end; */
}

.nav_item {
    position: relative;
}

.nav_item::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%);
    width: calc(100% - 10px);
    height: 3px;
    background-color: var(--main-color);
    opacity: 0;
    transition: 0.3s;
}

.nav_item:hover::before {
    opacity: 1;
}

.nav_link {
    color: var(--main-text);
    display: inline-block;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 500;
    padding: 15px 20px;
}

.schedule {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule p {
    margin-right: 15px;
    color: var(--second-text)
}

.schedule span {
    color: var(--main-color)
}

.phone {
    color: var(--main-color)
}

.nav_btn {
    width: 150px;
    background-color: var(--second-color);
    font-size: 14px;
    padding: 10px 0;
    border-radius: 20px;
}

.nav_btn:hover {
    background: #FF5109;
    box-shadow: 0px 0px 10px 0px #FF7941;
}

.nav_btn:active {
    background: #DA4204;
    box-shadow: 0px 0px 10px 0px #FF7941;
}


.lang_switch ul {
    display: flex;
    flex-direction: column;
}

/* promo */

header {
    position: relative;
}

.promo_block {
    display: flex;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 300px;
}

.promo_text {
    flex-grow: 0.6;
    flex-basis: 40%;
    padding: 0 40px;
}

.promo_title {
    margin-bottom: 25px;
}

.promo_item::before {
    content: url(../img/star.png);
    margin-right: 10px;
}

.promo_description {
    color: var(--light-text);
    font-size: 17px;
    margin-bottom: 30px;
}

.promo_list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.promo_img {
    flex-grow: 1;
    flex-basis: 35%;
    display: flex;
    justify-content: center;
}

.promo_shape {
    position: absolute;
    bottom: 0;
    width: calc(100% + 200px);
    left: -100px;
    pointer-events: none;
}

/* way */

.way {
    position: relative;
    padding: 80px 0;
}

.way_title {
    background-color: var(--second-bg);
    width: 315px;
    height: 100px;
    margin: 0 auto 50px;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px 30px;
    /* font-family: 'Gilroy', sans-serif; */
    font-weight: 700;
    color: #fff;
    /* overflow: hidden; */
    position: relative;
}

.way_title h2 {
    font-size: 28px;
    line-height: 120%;

}

.way_title::before {
    content: '';
    background-color: #796db5;
    display: block;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    position: absolute;
    top: -57%;
    right: -10%;
    clip-path: polygon(70% 44%, 50% 100%, 0 100%, 0 44%);
}

.way_title::after {
    content: url(../img/fox.svg);
    position: absolute;
    right: -30px;
    top: -30px;
}

.way_cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.way_card {
    width: 350px;
    height: 165px;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 #bbb;
    padding: 15px;
    margin: 18px 30px;
}

.way_card_title {
    margin-bottom: 20px;
    vertical-align: middle;
    color: var(--title-text);
    display: flex;
    align-items: baseline;
}


.way_card_title .way_card_age {
    display: inline-block;
    padding: 0 10px;
    /* width: 90px; */
    height: 35px;
    text-align: center;
    background-color: #fff5f0;
    color: var(--white);
    font-size: 14px;
    line-height: 40px;
    margin-right: 12px;
    border-radius: 6px;
    box-sizing: border-box;
}

.way_card_tag span {
    font-size: 18px;
}

.way_card_item {
    display: block;
    color: var(--second-text);
    font-size: 14px;
}

.way_card_item:not(:last-child) {
    margin-bottom: 10px;
}

.way_card_item::before {
    content: '';
    display: inline-block;
    background-color: var(--second-bg);
    height: 5px;
    width: 5px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 15px;
}

.way_bush {
    position: absolute;
    bottom: 0;
    left: 0;
}

.way_tree {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* description */

.description {
    padding: 80px 0;
}
.description .swiper-wrapper {
    display: block;
}

.description__slide {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 0 100px;
}

.description__slide:nth-child(even) {
    flex-direction: row-reverse;
}

.description__image {
    flex-grow: 1;
}

.description__content {
    flex-grow: 1;
    flex-basis: 545px;
}

.description__title {
    margin-bottom: 25px;
    font-size: 42px;
}

.description__text {
    margin-bottom: 25px;
    color: var(--grey);
}

/* promo */

.promo {
    position: relative;
    z-index: 1;
}

.promo::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -200px;
    right: 0;
    left: 0;
    bottom: 0;
    background-image: url(../img/descript_bg.svg);
    background-size: cover;
    pointer-events: none;
}

.promo .description__slide {
    margin: 0;
}

.promo .description__text {
    color: var(--white);
}

/* promotion */

.promotion {
    padding: 40px 0;
}

.promotion__title {
    text-align: center;
    margin-bottom: 40px;
}

.promotion__title h2 {
    font-size: 42px;
}

.promotion__cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
}

.promotion__card {
    background-color: #fff;
    padding: 15px;
    border-radius: 15px;
    box-sizing: border-box;
    height: 300px;
    width: 230px;
    position: relative;
}

.promotion__card_content {
    background-color: var(--main-bg);
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.promotion__card_head {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    box-sizing: border-box;
    padding: 0 15px;
}

.promotion__card_head svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.promotion__card_head h3 {
    color: #fff;
    font-size: 24px;
    text-align: center;
}

.promotion__card_body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
}

.promotion__card_value {
    font-size: 40px;
    line-height: 1.15em;
}

.promotion__card_description {}

.promotion__description p {
    text-align: center;
    font-size: 12px;
    color: var(--grey);
}
.promotion__card_bg.mobile {
    display: none;
}

/* faq */

.faq {
    padding: 0 0 60px;
}

.faq__title {
    text-align: center;
    margin-bottom: 40px;
}

.faq__title h2 {
    font-size: 42px;
}

.faq__cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.faq__card {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    width: 900px;
}

.faq__card_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__card_label {
    margin-right: 30px;
    color: #fff;
    background-color: #FFC331;
    border-radius: 5px;
    padding: 6px 12px;
}

.faq__card_title {
    flex-grow: 1;
    margin-top: 5px;
    font-size: 18px;
}

.faq__card_btn {
    padding: 0;
    width: auto;
    background: transparent;
    font-size: 40px;
    line-height: 25px;
    color: var(--main-text);
    margin-right: 5px;
}

.faq__card_body {
    max-height: 0px;
    overflow: hidden;
    transition: 1s;
}

.faq__card_body p {
    padding-top: 20px;
    color: var(--grey);
}

.faq__card.active .faq__card_body {
    max-height: 200px;
}

/* contacts */

.contacts {
    position: relative;
    padding-top: 100px;
    background-color: var(--background);
    z-index: 2;
    /* background: radial-gradient(66.3% 66.3% at 50% 58.22%, #191C2A 0%, #231F3D 100%); */
}

.contacts__title {
    text-align: center;
}

.contacts__wrapper {
    display: flex;
    justify-content: space-between;
}

.contacts__form {
    margin-top: 45px;
    box-sizing: border-box;
    /* padding-right: 100px; */
    flex-basis: 40%;
    width: 40%;
    display: flex;
    flex-direction: column;
    flex-shrink: 1;
}

.contacts__form label {
    font-size: 16px;
    color: var(--yellow-background);
    margin-left: 15px;
    /* margin-bottom: 10px; */
}

.contacts__form input:not([type="checkbox"]) {
    display: block;
    border: 1px solid var(--ligh-gray);
    background: transparent;
    border-radius: 5px;
    padding: 18px 20px;
    width: 100%;
    margin-bottom: 30px;
    color: #B0B0B0;
    box-sizing: border-box;
}

.contacts__form textarea {
    display: block;
    border: 1px solid var(--ligh-gray);
    background: transparent;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 18px 20px;
    width: 100%;
    height: 180px;
    resize: none;
    color: #B0B0B0;
    outline: none;
}

.contacts__comment {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
}

.contacts__comment button {
    position: absolute;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-radius: 0;
    bottom: 0;
    right: 0;
    width: 47px;
    height: 47px;
}

.contacts__comment button img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contacts__copyright {
    display: flex;
    align-items: center;
}

.contacts__info {
    flex-basis: 45%;
    padding-left: 150px;
}

.contacts__info .section__heading {
    position: relative;
}

.contacts__info .section__heading h3 {
    margin-bottom: 35px;
}

.contacts__description {
    margin-bottom: 25px;
}

.contacts__info h3 {
    font-size: 16px;
    color: var(--yellow-background);
    margin-bottom: 15px;
}

.contacts__info ul {
    margin-bottom: 25px;
}

.contacts__info ul li {
    color: var(--main-color);
}

.contacts__info ul li:not(:last-child) {
    margin-bottom: 15px;
}

.contacts__phone a {
    color: var(--yellow-background);
}

.contacts__phone a:hover {
    color: var(--light-blue);
}

.contacts__phone a::before {
    content: '|';
    margin: 0 10px;

}

.contacts__links {
    display: flex;
    gap: 10px;
    margin-bottom: 0 !important;
}

.contacts__links a svg,
.contacts__links a svg path {
    transition: 0.3s;
}

.contacts__links a:hover svg path {
    fill: var(--yellow-background);
}

.contacts__links a:hover svg {
    filter: drop-shadow(0 0 30px rgba(255, 214, 0, 0.85));
}

.contacts__links a:active svg path {
    fill: var(--gold);
}

.contacts__info button {
    width: 270px;
}


/* forms */
footer {
    padding: 15px 0;
    position: relative;
    z-index: 1;
    margin-top: 90px;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form__wrapper {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #00000044;
    z-index: 1000;
}

.form__wrapper.active {
    display: block;
}

.form__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 405px;
    box-sizing: border-box;
    padding: 30px;
    border-radius: 20px;
    background-color: #fff;
    transition: 0.3s;
}

.form__wrapper.active .form__content {
    transform: translate(-50%, -50%);
}

.form__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.form__head h3 {
    font-size: 28px;
    font-weight: 500;
}

.form__head button {
    height: 30px;
    width: 30px;
    padding: 0;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
}

.form__body {
    text-align: center;
}

.form__body input {
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    padding: 0px 16px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #B8B8B8;
}

.form__body ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.form__body button {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.form__body p {
    text-align: left;
    color: var(--grey, #686868);
    font-family: 'Comic Helvetic';
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
}

.footer__blob {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.footer__boy {
    position: absolute;
    z-index: 2;
    bottom: 0;
    height: 420px;
    right: 0;
}

@media screen and (max-width:1200px) {
    .container {
        width: 960px;
    }

    .footer__boy {
        height: 300px;
    }

    footer {
        margin-top: 50px;
    }

    .promo {
        z-index: auto;
    }
}

@media screen and (max-width:992px) {
    .container {
        width: 750px;
    }
    .navbar .logo img {
        width: 120px;
    }
    .nav_menu {
        display: none;
        position: absolute;
        left: 0;
        top: 65px;
        width: 100%;
        background-color: #fff;
        z-index: 1;
        height: auto;
    }
    .nav_menu.active {
        display: flex;
        flex-direction: column;
    }
    .nav_menu.active .nav_list{
        display: flex;
        flex-direction: column;
    }
    .navbar .schedule {
        display: none;
    }
    .nav_btn {
        display: none;
    }
    .navbar .phone p{
        font-size: 12px;
    }
    .lang_switch {
        display: none;
    }
    .nav_burger {
        display: block;
    }

    .description__slide {
        flex-direction: column;
    }

    .description__slide:nth-child(even) {
        flex-direction: column;
    }

    .description__image {
        text-align: center;
    }

    .description__content {
        flex-basis: content;
    }

    .faq__card {
        width: auto;
    }

    .footer__boy {
        display: none;
    }
}

@media screen and (max-width:768px) {
    .container {
        width: 545px;
    }
}

@media screen and (max-width:545px) {
    .container {
        width: auto;
        padding: 0 15px;
    }
}

@media screen and (max-width: 425px) {
    h1 {
        font-size: 26px;
        line-height: 1.4;
    }
    .promo_block {
        justify-content: center;
        padding: 20px 0;
    }
    .promo_text {
        flex-basis: 100%;
        padding: 20px 15px;
        border-radius:12px;
        color:white;
        background: linear-gradient(194.84deg, #F5A547 0.54%, #F97E6E 52.67%, #FF9472 92.93%);
    }
    .promo_description {
        color:#fff;
        font-size: 14px;
        line-height: 1.4;
    }
    .promo_list {
        flex-direction: column;
        gap: 10px;
    }
    .promo_btn {
        width: 100%;
    }
    .promo_shape {
        display: none;
    }
    .promo_img {
        display: none;
    }

    .way {
        padding-top: 30px;
    }

    .way_title {
        margin: 0 0 50px;
    }
    .way_cards {
        width: 100%;
        gap: 15px;
    }

    .way_card {
        width: 100%;
        height: 180px;
        box-sizing:border-box;
        margin: 0;
    }
    .way_card_title {
        font-size: 16px;
    }

    .way_card_item {
        font-size: 14px;
    }
    .way_card_item:not(:last-child) {
        margin-bottom: 5px;
    }

    .way_bush,.way_tree {
        display: none;
    }
    .description .swiper-wrapper {
        display: flex;
        align-items:stretch;
        height: 100%;
    }
    .description__slide {
        position: relative;
        box-sizing:border-box;
        padding: 120px 15px 20px;
        min-height: 600px;
        border-radius:12px;
        color:white;
        background: linear-gradient(194.84deg, #F5A547 0.54%, #F97E6E 52.67%, #FF9472 92.93%);
        height: 100%;
       
    }

    .description__image {
        position: absolute;
        top: -100px;
        text-align: center;
        left: 50%;
        transform: translate(-50%) ;
    }
    .description__img {
        height: 200px;
    }
    .description__content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .description__title {
        font-size: 22px;
    }
    .description__text {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.3;
        color: #fff;
    }
    .description__button {
        width: 100%;
    }

    .promo {
        padding-bottom: 50px;
    }
    .promo .description__slide {
        padding-top: 20px;
        background: #fff;
        height: auto;
        min-height: auto;
    }
    .promo .description__image {
        display: none;
    }
    .promo .description__title {
        color: var(--main-text)
    }
    .promo .description__text {
        color: var(--grey)
    }
    .promo::before {
        bottom: 0;
        top: auto;
        height: 200px;
    }

    .promotion__cards {
        flex-direction: column;
    }
    .promotion__card {
        width: auto;
        height: 140px;
        padding: 5px;
    }
    .promotion__card_content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: auto;
    }
    .promotion__card_body {
        padding: 0;
        flex-grow: 1;
    }
    .promotion__card_head {
        width: 160px;
        height: 100%;
    }
    .promotion__card_head h3{
        font-size: 18px;
        font-weight: 500;
        text-align: left;
    }
    .promotion__card_head svg {
        display: none;
    }
    .promotion__card_bg.mobile {
        display: block;
        top: 0;
        bottom: 0;
    }
    .faq__card_label {
        display: none;
    }
    .contacts {
        padding-top: 40px;
    }

    .contacts .section__heading {
        margin-bottom: 15px;
    }

    .contacts__wrapper {
        width: auto;
    }
    .contacts__form {
        display: none;
    }
    .contacts__info {
        flex-basis: 100%;
        padding: 0;
    }

    .contacts h3 {
        margin-bottom: 10px;
    }

    .contacts__description {
        font-size: 12px;
    }

    .contacts__info .section__heading::after {
        display: none;
    }

    .contacts__phones_wrapper {
        border-radius: 12px;
        background: var(--white);
        padding: 15px;
        margin-bottom: 20px;
    }

    ul.contacts__phones {
        margin-bottom: 0;
    }

    .contacts__phone img {
        display: none;
    }

    .contacts__phone span {
        display: inline-block;
        width: 100%;
    }

    .contacts__phone a {
        color: var(--orange);
        font-feature-settings: 'clig' off, 'liga' off;
        font-family: Nunito;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 18px */
        letter-spacing: 1px;
        text-decoration-line: underline;
    }

    .contacts__phone a::before {
        display: none;
    }

    .contacts__info button {
        width: 100%;
    }
    .footer {
        display: none;
    }
    .form__content {
        width: 90%;
    }
}