/*
Theme Name: LAttelier V3
Author: Max
Version: 0.011
*/
/* ALL */
html {
 		scroll-behavior: smooth;
}
    * {
        font-family: "Neucha", cursive;
        font-weight: normal;
        font-style: normal;
        margin: 0px;
        padding: 0px;
        outline: none;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .mobile {
        display: none;
    }
    strong {
        font-weight: 700;
    }
    button {
        cursor: poNeucha;
    }
    @media (min-width: 1300px) {
        .container,.container-lg,.container-md,.container-sm,.container-xl {
            max-width:1376px
        }
    }
/* ALL */
/* HEADER */
    header {
        background-color: #F7F7F7;
        position: sticky;
        width: 100%;
        height: 100px;
        top: 0px;
        left: 0px;
        z-index: 99;
    }
    .admin-bar header {
        top: 32px;
    }
    header>.container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: 100%;
        padding-left: 47px;
        padding-right: 28px;
        padding-top: 18px;
        padding-bottom: 18px;
        gap: 20px;
    }
    header .logo_block {

    }
    header .logo_block a {
        text-decoration: none;
    }
    header .logo_block a img {
        display: block;
		max-width: 200px;
        height: auto;
    }
    header .menu_block {
        margin: 0px auto;
    }
    header .menu_block ul {
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 42px;
    }
    header .menu_block ul li {

    }
    header .menu_block ul li a {
        color: #1C1C1C;
        font-family: 'Neucha';
        font-size: 26px;
        line-height: 1;
        font-weight: 600;
        text-decoration: none;
        transition: 0.3s;
    }
    header .menu_block ul li a:hover {
        color: #FF765E;
    }
    header .contact_block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-line-pack: end;
        align-content: flex-end;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        gap: 1px;
    }
    header .contact_block .phone_block {

    }
    header .contact_block .phone_block a {
        font-family: 'Neucha';
        color: #1C1C1C;
        font-size: 26px;
        line-height: 1;
        font-weight: 600;
        text-decoration: none;
    }
    header .contact_block .phone_block a:hover {

    }
    header .contact_block .adress_block {

    }
    header .contact_block .adress_block span {
        font-family: 'Neucha';
        color: #1C1C1C;
        font-size: 24px;
        line-height: 1;
        font-weight: 400;
    }
    header .button_block {

    }
    header .button_block a {
        background: -webkit-gradient(linear, left bottom, left top, from(#F3547A), to(#EE567C));
        background: -o-linear-gradient(0deg, #F3547A, #EE567C);
        background: linear-gradient(0deg, #F3547A, #EE567C);
        -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
        border-bottom: solid 3px #EA4D94;
        border-radius: 40px;
        padding: 6px 26px;
        text-decoration: none;
        color: #FFFFFF;
        font-family: 'Bad Script';
        font-size: 24px;
        line-height: 1;
        font-weight: 700;
        transition: 0.3s;
    }
    header .button_block a:hover {
        -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
		background: #04AFD9;
    	color: #fff;
		transition:0.3s;
		box-shadow: 0px 0px 8px #333;
    }
    header .mobile_menu {
        display: none;
    }
    header .mobile_menu .button {
        width: 27px;
    }
    header .mobile_menu .button span {
        width: 27px;
        height: 2px;
        display: block;
        background: #1C1C1C;
        margin-bottom: 5px;
    }
    header .mobile_menu .button span:last-child {
        margin-bottom: 0px;
    }
    header .mobile_menu .button.open span:nth-child(1) {
        transform: rotate(-45deg);
        margin-bottom: -2px;
    }
    header .mobile_menu .button.open span:nth-child(2) {
        transform: rotate(45deg);
    }
    header .mobile_menu .button.open span:nth-child(3) {
        display: none;
    }
    header .mobile_menu .menu_body {
        position: absolute;
        top: 100%;
        left: 0px;
        width: 100%;
        display: none;
        background: #ffffff;
        padding-top: 32px;
        max-height: 72vh;
        overflow: auto;
    }
    header .mobile_menu .menu_body.active {
        display: block;
    }
    header .mobile_menu .menu_body .menu_block {
        display: block;
        margin-bottom: 32px;
    }
    header .mobile_menu .menu_body .menu_block ul {
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 32px;
    }
    header .mobile_menu .menu_body .menu_block ul li {
        width: 100%;
    }
    header .mobile_menu .menu_body .menu_block ul li a {
        color: #1C1C1C;
        font-family: 'Neucha';
        font-size: 18px;
        line-height: 1;
        font-weight: 600;
        text-decoration: none;
        transition: 0.3s;
    }
    header .mobile_menu .menu_body .menu_block ul li a:hover {
        color: #FF765E;
    }
    header .mobile_menu .menu_body .contact_block {
        display: block;
        margin-bottom: 32px;
    }
    header .mobile_menu .menu_body .contact_block .phone_block {

    }
    header .mobile_menu .menu_body .contact_block .phone_block a {
        font-family: 'Neucha';
        color: #1C1C1C;
        font-size: 22px;
        line-height: 1;
        font-weight: 700;
        text-decoration: none;
    }
    header .mobile_menu .menu_body .contact_block .phone_block a:hover {

    }
    header .mobile_menu .menu_body .contact_block .adress_block {

    }
    header .mobile_menu .menu_body .contact_block .adress_block span {
        font-family: 'Neucha';
        color: #1C1C1C;
        font-size: 17px;
        line-height: 1;
        font-weight: 400;
    }
    header .mobile_menu .menu_body .button_block {
        display: flex;
        margin-bottom: 32px;
    }
    header .mobile_menu .menu_body .button_block a {
        background: -webkit-gradient(linear, left bottom, left top, from(#F3547A), to(#EE567C));
        background: -o-linear-gradient(0deg, #F3547A, #EE567C);
        background: linear-gradient(0deg, #F3547A, #EE567C);
        -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
        border-bottom: solid 3px #EA4D94;
        border-radius: 40px;
        padding: 8px 26px;
        text-decoration: none;
        color: #FFFFFF;
        font-family: 'Bad Script';
        font-size: 28px;
        line-height: 1;
        font-weight: 700;
        transition: 0.3s;
    }
    header .mobile_menu .menu_body .button_block a:hover {
        -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
    }
/* HEADER */
/* HOME PAGE */
    /* FIRST SECTION */
        #home_hero_section {
            position: relative;
            padding-bottom: 170px;
            padding-top: 48px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }
        #home_hero_section:before {
            content: '';
            background: rgba(31, 104, 133, 0.9);
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
        }
        #home_hero_section .container {
            position: relative;
            z-index: 3;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: end;
            -ms-flex-align: end;
            align-items: flex-end;
        }
        #home_hero_section .left_block {
            width: 65%;
            padding-bottom: 60px;
        }
        #home_hero_section .left_block .title {
            font-size: 70px;
            line-height: 1.043;
            font-weight: 500;
            color: #FFFFFF;
            margin-bottom: 35px;
        }
        #home_hero_section .left_block .title span {
            font-family: "Bad Script";
            font-style: italic;
            font-weight: 400;
            font-size: 56px;
            color: #6BDBF8;
            padding-left: 20px;
        }
        #home_hero_section .left_block .text {
            margin-bottom: 43px;
            padding-left: 20px;
            position: relative;
        }
        #home_hero_section .left_block .text svg {
            position: absolute;
            left: 0px;
            top: 16px;
            height: 82px;
            width: 8px;
        }
        #home_hero_section .left_block .text p {
            font-size: 36px;
            line-height: 1.4;
            font-weight: 300;
            color: #ffffff;
        }
        #home_hero_section .left_block .stitle {
            font-family: Bad Script;
            font-size: 36px;
            line-height: 1.4;
            color: #ffffff;
            margin-bottom: 18px;
        }
        #home_hero_section .left_block .stitle span {
            font-family: Bad Script;
            font-size: 36px;
            line-height: 1.4;
            color: #ffffff;
            display: block;
            margin-left: 90px;
        }
        #home_hero_section .left_block .button {
            display: flex;
        }
        #home_hero_section .left_block .button a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 10px;
        background: -webkit-gradient(linear, left bottom, left top, from(#F3547A), to(#EE567C));
        background: -o-linear-gradient(0deg, #F3547A, #EE567C);
        background: linear-gradient(0deg, #F3547A, #EE567C);
            -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
            border-bottom: solid 3px #EA4D94;
            border-radius: 40px;
            padding: 17px 26px;
            text-decoration: none;
            color: #FFFFFF;
            font-family: 'Bad Script';
            font-size: 26px;
            line-height: 1;
            font-weight: 700;
            transition: 0.3s;
        }
        #home_hero_section .left_block .button a:hover {
            -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
			background: #04AFD9;
    		color: #fff;
			transition:0.3s;
			box-shadow: 0px 0px 8px #333;
        }
        #home_hero_section .img_block {
            width: 35%;
        }
        #home_hero_section .img_block img {
            display: block;
            margin-left: -15%;
        }
    /* FIRST SECTION */
    /* ADVANCE SECTION */
        #home_advans_section {
            position: relative;
            z-index: 4;
            margin-top: -170px;
        }
        #home_advans_section .container {
            background: #04AFD9;
            border-radius: 20px;
            padding-top: 60px;
            padding-bottom: 58px;
            padding-left: 88px;
            padding-right: 88px;
        }
        #home_advans_section .list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 30px;
        }
        #home_advans_section .list .ittem_block {
    		width: 25%;
        }
        #home_advans_section .list .ittem_block .icon {
            margin-bottom: 30px;
        }
        #home_advans_section .list .ittem_block .icon img {
            display: block;
            max-width: 100%;
            height: auto;
			margin: auto;
        }
        #home_advans_section .list .ittem_block .text p {
            font-size: 23px;
            line-height: 1.1;
            font-weight: 400;
            color: #ffffff;
			text-align: center;
        }
        #home_advans_section .list .ittem_block .text strong {
            font-weight: 700;
        }
    /* ADVANCE SECTION */
    /* JOIN SECTION */
        #home_join_section {
            padding-top: 73px;
            padding-bottom: 86px;
            overflow: hidden;
        }
        #home_join_section .container {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: stretch;
            -ms-flex-align: stretch;
            align-items: stretch;
        }
        #home_join_section .left_block {
            width: 45%;
        }
        #home_join_section .left_block .title {
            font-size: 66px;
            line-height: 1.05;
            font-weight: 500;
            color: #1C1C1C;
            margin-bottom: 32px;
        }
        #home_join_section .left_block .num {
            padding-left: 63px;
            color: #ffffff;
            font-size: 200px;
            line-height: 1;
            font-weight: 900;
            text-shadow: -1px -1px 0 #04AFD9, 1px -1px 0 #04AFD9, -1px  1px 0 #04AFD9, 1px  1px 0 #04AFD9;
        }
        #home_join_section .left_block .text {
            padding-left: 0px;
            padding-top: 32px;
            font-size: 64px;
            line-height: 1.1;
            font-weight: 600;
            color: #EA4D94;
            max-width: 503px;
			font-family: 'Bad Script';
        }
        #home_join_section .button_block {
            padding-top: 40px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
			margin: auto;
        }
        #home_join_section .button_block a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 10px;
			background: linear-gradient(0deg, #F3547A, #EE567C);
			-webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
			box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
			border-bottom: solid 3px #EA4D94;
			border-radius: 40px;
			padding: 17px 26px;
			text-decoration: none;
			color: #FFFFFF;
			font-family: 'Bad Script';
			font-size: 26px;
            line-height: 1;
            font-weight: 700;
            transition: 0.3s;
        }
        #home_join_section .button_block a:hover {
            -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
			background: #04AFD9;
    		color: #fff;
			transition:0.3s;
			box-shadow: 0px 0px 8px #333;
        }
        #home_join_section .text_block {
            width: 55%;
            background-image: url(imgs/text_bg_img.png);
            background-size: 100% 100%;
            position: relative;
            padding-top: 70px;
            padding-left: 84px;
            padding-bottom: 25px;
            padding-right: 122px;
        }
        #home_join_section .text_block p {
            font-size: 24px;
            line-height: 1.5;
            font-weight: 400;
            color: #000000;
            max-width: 500px;
			margin-bottom: 10px;
        }
        #home_join_section .text_block strong {
            font-weight: 700;
            background-image: url(imgs/text_bg.png);
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center;
        }
        #home_join_section .text_block:after {
            content: '';
            display: block;
            position: absolute;
            right: -61px;
            top: 106px;
            width: 165px;
            height: 169px;
            background-image: url(imgs/OBJECTS.png);
        }
    /* JOIN SECTION */
    /* SCOOL SECTION */
        #home_scool_section {
            padding-top: 10px;
            padding-bottom: 113px;
            background-image: url(/wp-content/uploads/2025/06/footer_bg.png);
            background-position: bottom center;
            background-size: contain;

        }
        #home_scool_section .container {

        }
        #home_scool_section .title_block {
            font-size: 66px;
            line-height: 1.05;
            font-weight: 500;
            color: #1C1C1C;
            margin-bottom: 30px;
            max-width: 1200px;
            position: relative;
        }
        #home_scool_section .title_block b {
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        
        #home_scool_section .text_block {
            font-size: 36px;
            line-height: 1.4;
            font-weight: 400;
            color: #000000;
            /*max-width: 882px;*/
        }
        #home_scool_section .list {
            margin-top: 47px;
        }
        #home_scool_section .list .ittem_block {
            padding-top: 32px;
            padding-bottom: 32px;
        }
        #home_scool_section .list .ittem_block .block {
            background: #ffffff;
            border-radius: 20px;
            padding: 10px;
            width: 546px;
            height: 376px;
            transform: rotate(3deg);
        }
        #home_scool_section .list .ittem_block:nth-child(even) .block {
            transform: rotate(-3deg);
        }
        #home_scool_section .list .ittem_block .block img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 20px;
        }
        #home_scool_section .list .slick-dots {
            list-style: none;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 22px;
            margin-top: 33px;
        }
        #home_scool_section .list .slick-dots li {
            display: block;
        }
        #home_scool_section .list .slick-dots li button {
            display: block;
            width: 15px;
            height: 15px;
            background: unset;
            border-radius: 100%;
            border: solid 3px #04AFD9;
            font-size: 0px;
        }
        #home_scool_section .list .slick-dots li.slick-active button {
            background: #04AFD9;
        }
    /* SCOOL SECTION */
    /* ADDIONAL SECTION */
        #home_addional_section {
            background: #2C4595;
        }
        #home_addional_section .container {
            position: relative;
            min-height: 580px;
            padding-top: 86px;
            padding-bottom: 86px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }
        #home_addional_section .title_block {
            position: relative;
            z-index: 1;
            max-width: 58.4%;
        }
        #home_addional_section .title_block span:nth-child(1) {
            color: #FFFFFF;
            font-size: 54px;
            line-height: 1.4;
            font-weight: 700;
        }
        #home_addional_section .title_block span:nth-child(2) {
            color: #FFFFFF;
            font-size: 54px;
            line-height: 1.4;
            font-weight: 300;
        }
        #home_addional_section .title_block span:nth-child(3) {
            color: #F6CE3B;
            font-size: 54px;
            line-height: 1.4;
            font-weight: 700;
        }
        #home_addional_section .image {
            position: absolute;
            bottom: 0;
            right: 0;
            z-index: 0;
        }
        #home_addional_section .image img {
            display: block;
            max-width: 100%;
            height: auto;
        }
    /* ADDIONAL SECTION */
    /* DAYS SECTION  */
        #days_section {
            padding-top: 89px;
            padding-bottom: 115px;
        }
        #days_section .container {

        }
        #days_section .list_day {

        }
        #days_section .list_day .day_ittem {
            min-height: 112px;
            padding-left: 49px;
            padding-right: 107px;
            border-top: solid 1px #DFE4E7;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            transition: 0.3s;
        }
        #days_section .list_day .day_ittem:hover {
            background: #F3F7FA;
        }
        #days_section .list_day .day_ittem:last-child {
            border-bottom: solid 1px #DFE4E7;
        }
        #days_section .list_day .day_ittem .name {
            font-family: "Bad Script";
            font-size: 34px;
            line-height: 1;
            font-weight: 400;
            font-style: italic;
            width: 22%;
            padding: 16px 0px;
            transition: 0.3s;
        }
        #days_section .list_day .day_ittem:hover .name {
            color: #04AFD9;
        }
        #days_section .list_day .day_ittem .text {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.1;
            color: #9DA4BB;
            width: 55%;
            transition: 0.3s;
        }
        #days_section .list_day .day_ittem:hover .text {
            color: #000000;
        }
        #days_section .button_block {
            margin-top: 64px;
            display: flex;
			justify-content: center;
        }
        #days_section .button_block a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 10px;
            background: -webkit-gradient(linear, left bottom, left top, from(#FB4424), to(#FF765E));
            background: -o-linear-gradient(bottom, #FB4424, #FF765E);
            background: linear-gradient(0deg, #FB4424, #FF765E);
            -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
            border-bottom: solid 3px #e33c1e;
            border-radius: 40px;
            padding: 17px 26px;
            text-decoration: none;
            color: #FFFFFF;
            font-family: "Neucha";
            font-size: 18px;
            line-height: 1;
            font-weight: 700;
            transition: 0.3s;
        }
        #days_section .button_block a:hover {
            -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
        }
    /* DAYS SECTION */
    /* TEAM SECTION */
        #team_section {
            padding-top: 113px;
            padding-bottom: 123px;
            background-image: url(imgs/scool_bg-min.jpg);
            background-position: top center;
            background-size: 625px;
        }
        #team_section .container {

        }
        #team_section .head_block {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 32px;
        }
        #team_section .head_block .title {
            font-size: 70px;
            line-height: 1;
            font-weight: 700;
            color: #000000;
        }
        #team_section .head_block .arrows {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 20px;
        }
        #team_section .head_block .arrows button {
            background: unset;
            border: unset;
            cursor: poNeucha;
        }
        #team_section .list  {
            padding: 0px 48px;
            padding-top: 80px;
        }
        #team_section .list .ittem  {
            padding-top: 30px;
        }
        #team_section .list .ittem .block {

        }
        #team_section .list .ittem .head_block {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -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;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            gap: 32px;
        }
        #team_section .list .ittem .avatar {
            position: relative;
        }
        #team_section .list .ittem .avatar:after {
            content: '';
            display: block;
            width: 146px;
            height: 51px;
            position: absolute;
            top: -20px;
            left: 41px;
            background-image: url(imgs/image_slick.png);
        }
        #team_section .list .ittem:nth-child(2) .avatar:after,
        #team_section .list .ittem:nth-child(7) .avatar:after,
        #team_section .list .ittem:nth-child(5) .avatar:after,
        #team_section .list .ittem:nth-child(10) .avatar:after {
            transform: rotate(-35deg);
            left: -26px;
            top: 0;
        }
        #team_section .list .ittem:nth-child(3) .avatar:after,
        #team_section .list .ittem:nth-child(8) .avatar:after {
            transform: rotate(13deg);
            top: -16px;
            left: 84px;
        }
        #team_section .list .ittem .avatar img {
            display: block;
        }
        #team_section .list .ittem .text {

        }
        #team_section .list .ittem .text .titl {
            font-size: 24px;
            line-height: 1.1;
            font-weight: 700;
            color: #000000;
            display: block;
            text-align: center;
            max-width: 180px;
        }
        #team_section .list .ittem .text .stitle {
            font-size: 18px;
            line-height: 1.4;
            font-weight: 400;
            color: #000000;
            display: block;
            text-align: center;
        }
        #team_section .list .slick-dots {
            list-style: none;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 22px;
            margin-top: 33px;
        }
        #team_section .list .slick-dots li {
            display: block;
        }
        #team_section .list .slick-dots li button {
            display: block;
            width: 15px;
            height: 15px;
            background: unset;
            border-radius: 100%;
            border: solid 3px #04AFD9;
            font-size: 0px;
        }
        #team_section .list .slick-dots li.slick-active button {
            background: #04AFD9;
        }
    /* TEAM SECTION */
    /* PRISE CECTION */
        #prise_section {
            padding-top: 91px;
            padding-bottom: 125px;
            position: relative;
            background-position: center;
            background-size: cover;
        }
        #prise_section:before {
            content: '';
            /*background: rgba(44, 69, 149, 0.9);*/
			background: #04AFD9;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: 2;

            position: absolute;
            z-index: 1;
        }
        #prise_section .container {
            position: relative;
            z-index: 2;
        }
        #prise_section .title {
            color: #FFFFFF;
            font-size: 70px;
            line-height: 1;
            font-weight: 300;
            margin-bottom: 22px;
        }
        #prise_section .title b {
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
       /* #prise_section .title:before {
            content: '';
            background-image: url(imgs/price_title_bg.png);
            width: 437px;
            height: 112px;
            display: block;
            position: absolute;
            z-index: 1;
            left: -15px;
            top: -15px;
        }*/
        #prise_section .text_icon {
            margin-bottom: 50px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 24px;
        }
        #prise_section .text_icon svg {
            display: block;
        }
        #prise_section .text_icon span {
            font-size: 36px;
            font-weight: 400;
            line-height: 1.2;
            color: #FFFFFF;
            /*max-width: 790px;*/
        }
        #prise_section .text_icon span b {
            font-weight: 700;
        }
        #prise_section .blocks_price {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: start;
            align-content: flex-start;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: stretch;
            -ms-flex-align: stretch;
            align-items: stretch;
            gap: 30px;
        }
        #prise_section .blocks_price .block_price {
            background-image: url(imgs/price_block_bg.png);
            background-size: cover;
            position: relative;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: start;
            align-content: flex-start;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -webkit-box-align: stretch;
            -ms-flex-align: stretch;
            align-items: stretch;
            border-radius: 25px;
            width: 50%;
        }
        #prise_section .blocks_price .block_price:after {
            content: '';
            width: 104px;
            height: 104px;
            display: block;
            position: absolute;
            top: -40px;
            right: 20px;
            background-image: url(imgs/price_ico.png);
        }
        #prise_section .blocks_price .block_price:last-child:after {
            transform: rotate(-15deg);
        }
        #prise_section .blocks_price .block_price .titl {
            background: #F3547A;
            font-family: "Bad Script";
            font-size: 46px;
            line-height: 1;
            font-weight: 400;
            font-style: italic;
            color: #ffffff;
            padding: 30px;
            text-align: center;
            border-top-left-radius: 25px;
            border-top-right-radius: 25px;
        }
        #prise_section .blocks_price .block_price .text {
            padding: 32px;
            padding-bottom: 0;
        }
        #prise_section .blocks_price .block_price .text ul {
            padding-left: 18px;
        }
        #prise_section .blocks_price .block_price .text ul li {
   			font-size: 24px;
    		line-height: 1.25;
            font-weight: 400;
            color: #000000;
            margin-bottom: 15px;
        }
        #prise_section .blocks_price .block_price .text p {
			font-size: 24px;
			line-height: 1;
			font-weight: 600;
			color: #000000;
			margin-bottom: 15px;
        }
        #prise_section .blocks_price .block_price .sub_text {
            font-size: 22px;
            line-height: 1;
            font-weight: 700;
            color: #000000;
            margin-top: 21px;
            padding: 0px 32px;
            margin-bottom: auto;
			text-align: center;
        }
        #prise_section .blocks_price .block_price .button_block {
            margin-top: 37px;
            padding: 0px 32px;
            padding-bottom: 32px;
            display: flex;
        }
        #prise_section .blocks_price .block_price .button_block a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 10px;
    		background: linear-gradient(0deg, #F3547A, #EE567C);
		    border-bottom: solid 3px #EA4D94;
            -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
            border-radius: 40px;
            padding: 18px 40px;
            text-decoration: none;
            color: #FFFFFF;
            font-family: 'Bad Script';
            font-size: 26px;
            line-height: 1;
            font-weight: 700;
            transition: 0.3s;
        }
        #prise_section .blocks_price .block_price .button_block a:hover {
            -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
			background: #04AFD9;
    		color: #fff;
			transition:0.3s;
			box-shadow: 0px 0px 8px #333;
        }
    /* PRISE CECTION */
    /* ERQUEST SECTION */
        #home_request_section {
            padding-top: 111px;
            padding-bottom: 111px;
        }
        #home_request_section .container {

        }
        #home_request_section .head_block {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 32px;
            margin-bottom: 25px;
        }
        #home_request_section .head_block .title {
            font-size: 70px;
            line-height: 1;
            font-weight: 300;
            color: #000000;
            position: relative;
        }
        /*#home_request_section .head_block .title:before {
            content: '';
            position: absolute;
            top: -15px;
            left: 4px;
            z-index: 1;
            display: block;
            background-image: url(imgs/request_title_bg.png);
            width: 267px;
            height: 102px;
        }*/
        #home_request_section .head_block .title b {
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        #home_request_section .head_block .arrows {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 20px;
        }
        #home_request_section .head_block .arrows button {
            background: unset;
            border: unset;
            cursor: poNeucha;
        }
        #home_request_section .list {

        }
        #home_request_section .list .ittem {
            padding: 25px;
            transform: rotate(3deg);
        }
        #home_request_section .list .ittem:nth-child(even) {
            transform: rotate(-3deg);
        }
        #home_request_section .list .ittem .block {
            background-image: url(imgs/request_bg.png);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            border-radius: 25px;
            padding: 30px;
        }
        #home_request_section .list .ittem .head_block {
            gap: 16px;
        }
        #home_request_section .list .ittem .head_block .avatar {
            margin-right: 16px;
        }
        #home_request_section .list .ittem .head_block .avatar img {
            width: 72px;
            height: 72px;
            border-radius: 100%;
            object-fit: cover;
            object-position: center;
        }
        #home_request_section .list .ittem .head_block .text {
            margin-right: auto;
        }
        #home_request_section .list .ittem .head_block .text .titl {
            font-size: 26px;
            line-height: 1;
            font-weight: 700;
            color: #1C1C1C;
        }
        #home_request_section .list .ittem .head_block .text .stitle {
            font-size: 16px;
            line-height: 1;
            font-weight: 400;
            color: #1C1C1C;
        }
        #home_request_section .list .ittem .head_block .video_b {
            display: flex;
        }
        #home_request_section .list .ittem .head_block .video_b a {
            text-decoration: none;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
            gap: 8px;
        }
        #home_request_section .list .ittem .head_block .video_b a svg {
            display: block;
        }
        #home_request_section .list .ittem .head_block .video_b a span {
            font-size: 16px;
            line-height: 1;
            font-weight: 400;
            color: #1C1C1C;
            max-width: 129px;
        }
        #home_request_section .list .ittem .text_block {
            margin-bottom: 17px;
            max-height: 205px;
            overflow: hidden;
        }
        #home_request_section .list .ittem .text_block p {
            font-size: 20px;
            line-height: 1.5;
            font-weight: 400;
            color: #1C1C1C;
        }
        #home_request_section .list .ittem .button_block {

        }
        #home_request_section .list .ittem .button_block a {
            font-size: 20px;
            line-height: 1.4;
            font-weight: 400;
            color: #04AFD9;
            text-decoration: underline;
        }
        #home_request_section .list .ittem .button_block a:hover {
            text-decoration: none;
        }
        #home_request_section .list .slick-dots {
            list-style: none;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 22px;
            margin-top: 33px;
        }
        #home_request_section .list .slick-dots li {
            display: block;
        }
        #home_request_section .list .slick-dots li button {
            display: block;
            width: 15px;
            height: 15px;
            background: unset;
            border-radius: 100%;
            border: solid 3px #04AFD9;
            font-size: 0px;
        }
        #home_request_section .list .slick-dots li.slick-active button {
            background: #04AFD9;
        }
        #home_request_section .modal-body .head_block {
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
        }
        #home_request_section .modal-body .text_block p {
            font-size: 18px;
            line-height: 1.5;
            font-weight: 400;
            color: #1C1C1C;
        }
    /* ERQUEST SECTION */
    /* CONTACT SECTION */
        #home_form_section {
            overflow: hidden;
            background-color: #2C4595;
            position: relative;
            min-height: 651px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }
        #home_form_section .container {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding-top: 32px;
            padding-bottom: 32px;
        }
        #home_form_section .left_block .title {
            font-size: 70px;
            line-height: 1.1;
            font-weight: 300;
            color: #FFFFFF;
            position: relative;
            margin-bottom: 30px;
            max-width: 750px;
        }
        #home_form_section .left_block .title b {
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        /*#home_form_section .left_block .title:after {
            content: '';
            display: block;
            position: absolute;
            z-index: 1;
            bottom: -15px;
            right: 30px;
            width: 267px;
            height: 102px;
            background-image: url(imgs/form_title_bg.png);
        }*/
        #home_form_section .left_block .form {
            max-width: 544px;
        }
        #home_form_section .left_block .form input[type="text"],
        #home_form_section .left_block .form input[type="tel"],
        #home_form_section .left_block .form input[type="email"] {
            width: 100%;
            padding: 18px;
            background: unset;
            border: unset;
            border-bottom: solid 1px #ffffff;
            color: #FFFFFF;
            font-size: 16px;
            line-height: 1;
            font-weight: 400;
            margin-bottom: 24px;
        }
        #home_form_section .left_block .form input[type="text"]::placeholder,
        #home_form_section .left_block .form input[type="tel"]::placeholder,
        #home_form_section .left_block .form input[type="email"]::placeholder {
            color: #FFFFFF;
        }
        #home_form_section .left_block .form .wpcf7-acceptance {

        }
        #home_form_section .left_block .form .wpcf7-acceptance .wpcf7-list-item {
            margin: 0;
        }
        #home_form_section .left_block .form .wpcf7-acceptance .wpcf7-list-item label {

        }
        #home_form_section .left_block .form .wpcf7-acceptance .wpcf7-list-item input {

        }
        #home_form_section .left_block .form .wpcf7-acceptance .wpcf7-list-item span {
            font-size: 18px;
            line-height: 1;
            font-weight: 400;
            color: #FFFFFF;
        }
        #home_form_section .left_block .form .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
          opacity: 0;
          position: absolute;
          width: 0;
          height: 0;
        }
        #home_form_section .left_block .form .wpcf7-form-control.wpcf7-acceptance label {
          position: relative;
          padding-left: 30px;
          cursor: poNeucha;
          display: inline-block;
          user-select: none;
          color: #fff;
        }
        #home_form_section .left_block .form .wpcf7-form-control.wpcf7-acceptance label::before {
          content: '';
          position: absolute;
          left: 0;
          top: 10px;
          width: 20px;
          height: 20px;
          border: 2px solid #fff;
          background-color: transparent;
          box-sizing: border-box;
        }
        #home_form_section .left_block .form .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"]:checked + span::after {
          content: '';
          position: absolute;
          left: 7px;
          top: 12px;
          width: 6px;
          height: 12px;
          border: solid #fff;
          border-width: 0 2px 2px 0;
          transform: rotate(45deg);
          poNeucha-events: none;
        }
        #home_form_section .left_block .form button {
    		background: linear-gradient(0deg, #F3547A, #EE567C);
    		-webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    		box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
		    border-bottom: solid 3px #EA4D94;
            -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
            border: unset;
            border-radius: 40px;
            padding: 17px 26px;
            text-decoration: none;
            color: #FFFFFF;
            font-family: "Neucha";
            font-size: 18px;
            line-height: 1;
            font-weight: 700;
            transition: 0.3s;
            margin-top: 52px;
            cursor: poNeucha;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 10px;
        }
        #home_form_section .left_block .form button:hover {
            -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
			background: #04AFD9;
    		color: #fff;
			transition:0.3s;
			box-shadow: 0px 0px 8px #333;
        }
        #home_form_section .left_block .form .wpcf7-spinner {
            margin-bottom: -7px;
        }
        #home_form_section .left_block .form .wpcf7-response-output {
            background: #fff;
            border-radius: 25px;
            padding: 16px 32px;
        }
        #home_form_section .right_block {
            position: absolute;
            width: 50%;
            right: 0;
            bottom: 0;
            height: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: end;
            -ms-flex-align: end;
            align-items: flex-end;
        }
        #home_form_section .right_block img {
            position: absolute;
            width: 100%;
            height: auto;
            right: 0;
            bottom: 0;
            z-index: 2;
            display: block;
        }
        #home_form_section .right_block svg {
            position: relative;
            z-index: 1;
        }
    /* CONTACT SECTION */
/* HOME PAGE */
/* FOOTER */
    footer {
        padding: 24px 0px;
        /*background-image: url(imgs/footer_bg-min.png);*/
        background-position: center;
        background-size: cover;
		background-color: #F7F7F7;
    }
    footer>.container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    footer .left_block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-line-pack: start;
        align-content: flex-start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 18px;
    }
    footer .left_block .logo_block {

    }
    footer .left_block .logo_block a {
        display: block;
        text-decoration: none;
    }
    footer .left_block .logo_block img {
        display: block;
        max-width: 230px;
		height:auto;
    }
    footer .left_block .pol {
        padding-top: 8px;
    }
    footer .left_block .pol a {
        font-size: 15px;
        line-height: 32px;
        font-weight: 400;
        color: #1C1C1C;
        text-decoration: underline;
    }
    footer .left_block .pol a:hover {
        text-decoration: none;
    }
    footer .left_block .cop {
        display: block;
    }
    footer .left_block .cop p {
        font-size: 15px;
        line-height: 1;
        font-weight: 400;
        color: #1C1C1C;
    }
    footer .menu_block {

    }
    footer .menu_block ul {
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-line-pack: start;
        align-content: flex-start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    footer .menu_block ul li {
        display: block;
    }
    footer .menu_block ul li a {
        text-decoration: none;
        font-size: 18px;
        line-height: 33px;
        font-weight: 700;
        color: #1C1C1C;
        transition: 0.3s;
    }
    footer .menu_block ul li a:hover {
        color: #EA4D94;
    }
    footer .contact_block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-line-pack: end;
        align-content: flex-end;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    footer .contact_block .phone_block {
        padding-bottom: 12px;
    }
    footer .contact_block .phone_block a {
        text-decoration: none;
        font-size: 24px;
        line-height: 1;
        font-weight: 700;
        color: #1C1C1C;
        transition: 0.3s;
    }
    footer .contact_block .phone_block a:hover {
        color: #FB4424;
    }
    footer .contact_block .email_block {
        margin-bottom: 8px;
    }
    footer .contact_block .email_block a {
        text-decoration: none;
        font-size: 24px;
        line-height: 1;
        font-weight: 400;
        color: #04AFD9;
    }
    footer .contact_block .email_block a:hover {
        text-decoration: underline;
    }
    footer .contact_block .adress_block {
        margin-bottom: 28px;
    }
    footer .contact_block .adress_block span {
        display: block;
        font-size: 20px;
        line-height: 1;
        font-weight: 400;
        color: #1C1C1C;
    }
    footer .contact_block .button_block {

    }
    footer .contact_block .button_block a {
        display: block;
    background: linear-gradient(0deg, #F3547A, #EE567C);
    -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    border-bottom: solid 3px #EA4D94;
        -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
        border-radius: 40px;
        padding: 16px 36px;
        text-decoration: none;
        color: #FFFFFF;
        font-family: 'Bad Script';
        font-size: 26px;
        line-height: 1;
        font-weight: 700;
        transition: 0.3s;
    }
    footer .contact_block .button_block a:hover {
        -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
		background: #04AFD9;
    	color: #fff;
		transition:0.3s;
		box-shadow: 0px 0px 8px #333;
    }
/* FOOTER */
/* Modal */
    .modal-open {
        overflow: hidden;
    }
    .modal-open .modal {
        overflow-x: hidden;
        overflow-y: auto;
    }
    .modal {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1050;
        display: none;
        overflow: hidden;
        outline: 0;
    }
    .modal-dialog {
        position: relative;
        width: auto;
        margin: 0.5rem;
        poNeucha-events: none;
    }
    .modal.fade .modal-dialog {
        transition: -webkit-transform 0.3s ease-out;
        transition: transform 0.3s ease-out;
        transition: transform 0.3s ease-out, 
        -webkit-transform 0.3s ease-out;
        -webkit-transform: translate(0, -25%);
        transform: translate(0, -25%);
    }
    @media screen and (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
    }
    .modal.show .modal-dialog {
        -webkit-transform: translate(0, 0);transform: translate(0, 0);
    }
    .modal-dialog-centered {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        min-height: calc(100% - (0.5rem * 2));
        max-width: 442px;
        margin: auto;
    }
    .modal-dialog-centered::before {
        display: block;
        height: calc(100vh - (0.5rem * 2));
        content: "";
    }
    .modal-content {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        poNeucha-events: auto;
        background-color: #fff;
        background-clip: padding-box;
        outline: 0;
        box-shadow: 0px 10px 50px rgb(36 37 44 / 30%);
        border-radius: 25px;
    }
    .modal-backdrop {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1040;
        background-color: #000;
    }
    .modal-backdrop.fade {
        opacity: 0;
    }
    .modal-backdrop.show {
        opacity: 0.5;
    }
    .modal-content .head_block .titl {
        font-size: 23px;
        line-height: 1;
        font-weight: 700;
        color: #1C1C1C;
    }
    .modal-content .close {
        border: none;
        background: none;
        color: #b2b2b2;
        font-weight: 700;
        font-size: 30px;
        cursor: poNeucha;
        line-height: 18px;
        padding: 20px 20px;
        transition: 0.3s;
        position: absolute;
        right: 10px;
        top: 5px;
        z-index: 1;
    }
    .modal-content .close:hover {
        color: #ff0000;
        transition: 0.3s;
    }
    .modal-body {
        position: relative;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        padding: 32px;
        padding-bottom: 40px;
    }
    .modal-body form {
        padding-top: 20px;
    }
    .modal-body form input[type="text"] {
        width: 100%;
        font-weight: 400;
        font-size: 18px;
        line-height: 26px;
        color: #333333;
        background: unset;
        border: unset;
        padding: 18px 0px;
        border-bottom: solid 1px #333333;
        margin-bottom: 26px;
        display: block;
    }
    .modal-body form input[type="email"] {
        width: 100%;
        font-weight: 400;
        font-size: 18px;
        line-height: 26px;
        color: #333333;
        background: unset;
        border: unset;
        padding: 18px 0px;
        border-bottom: solid 1px #333333;
        margin-bottom: 26px;
        display: block;
    }
    .modal-body form input[type="tel"] {
        width: 100%;
        font-weight: 400;
        font-size: 18px;
        line-height: 26px;
        color: #333333;
        background: unset;
        border: unset;
        padding: 18px 0px;
        border-bottom: solid 1px #333333;
        margin-bottom: 26px;
        display: block;
    }
    .modal-body form textarea {
        width: 100%;
        font-weight: 400;
        font-size: 18px;
        line-height: 26px;
        color: #333333;
        background: unset;
        border: unset;
        padding: 18px 0px;
        border-bottom: solid 1px #333333;
        margin-bottom: 29px;
        max-width: 100%;
        min-width: 100%;
        height: 63px;
        min-height: 63px;
        max-height: 300px;
        display: block;
    }
    .modal-body form input[type="text"]::placeholder,
    .modal-body form input[type="email"]::placeholder,
    .modal-body form input[type="tel"]::placeholder,
    .modal-body form textarea::placeholder {
        color: #333333;
    }
    .modal-body form .wpcf7-acceptance {
        margin-bottom: 49px;
        display: block;
    }
    .modal-body form .wpcf7-list-item {
        padding-left: 0;
        margin-left: 0;
    }
    .modal-body form .wpcf7-list-item label .wpcf7-list-item-label {
        font-weight: 400;
        font-size: 13px;
        line-height: 1;
        color: #333333;
    }
    .modal-body form br {
        display: none;
    }
    .modal-body form .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
          opacity: 0;
          position: absolute;
          width: 0;
          height: 0;
    }
    .modal-body form .wpcf7-form-control.wpcf7-acceptance label {
          position: relative;
          padding-left: 30px;
          cursor: poNeucha;
          display: inline-block;
          user-select: none;
          color: #1C1C1C;
    }
    .modal-body form .wpcf7-form-control.wpcf7-acceptance label::before {
          content: '';
          position: absolute;
          left: 0;
          top: 10px;
          width: 20px;
          height: 20px;
          border: 2px solid #1C1C1C;
        background-color: transparent;
        box-sizing: border-box;
    }
    .modal-body form .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"]:checked + span::after {
      content: '';
      position: absolute;
      left: 7px;
      top: 12px;
      width: 6px;
      height: 12px;
      border: solid #000000;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
      poNeucha-events: none;
    }
    .modal-body form input[type="submit"],
    .modal-body form button[type="submit"] {
    background: linear-gradient(0deg, #F3547A, #EE567C);
    -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    border-bottom: solid 3px #EA4D94;
        -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
        border: unset;
        border-radius: 40px;
        padding: 17px 26px;
        text-decoration: none;
        color: #FFFFFF;
        font-family: "Neucha";
        font-size: 18px;
        line-height: 1;
        font-weight: 700;
        transition: 0.3s;
        margin-top: 52px;
        cursor: poNeucha;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
    }
    .modal-body form .wpcf7-response-output {
        border-radius: 8px;
        padding: 8px 32px;
        text-align: center;
        color: #333333;
    }
    .modal-body form .wpcf7-not-valid-tip {
        display: none!important;
    }
    .modal-scrollbar-measure {
        position: absolute;top: -9999px;
        width: 50px;
        height: 50px;
        overflow: scroll;
    }
/* Modal */
.cf7-thankyou-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.cf7-popup-content {
	position:relative;
    background: white;
    padding: 30px 40px;
    max-width: 400px;
    text-align: center;
    border-radius: 10px;
    font-family: sans-serif;
}
.cf7-close-btn 
{
    position: absolute;
    right: 8px;
    top: -5px;
    font-size: 30px;
    background: transparent;
    border: none;
}
.cf7-popup-content h2 {
    margin-top: 0;
}
.copy_block {
    text-align: center;
    padding: 10px 0;	
}
.copy_block a {
    color: #000;
}
/*---Политика---*/
.police {
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    flex-direction: column;
}
.police a {
	color:#000;
	padding:5px 0;
}
body main h1, body main h2, body main h3, body main h4 {
	padding: 15px 0;
	line-height: 1.4;	
}
main .container p {
	padding: 5px 0;
	line-height: 1.3;
}
#home_form_section .left_block .form input[type="text"], #home_form_section .left_block .form input[type="tel"], #home_form_section .left_block .form input[type="email"], #wpcf7-f62-o1 form p {font-size: 24px;}
#wpcf7-f62-o1 form p a {
    font-size: 18px!important;
}
.modal-body form input[type="submit"]:hover, .modal-body form button[type="submit"]:hover {
			background: #04AFD9;
    		color: #fff;
			transition:0.3s;
			box-shadow: 0px 0px 8px #333;
}