body {
    font-family: 'Evolventa', serif;
    line-height: initial;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

input:hover,
input:active,
input:focus,
a:hover,
a:active,
a:focus,
button:hover,
button:active,
button:focus,
textarea:hover,
textarea:active,
textarea:focus {
    outline: none;
}

a,
a:hover {
    text-decoration: none;
}

/*
|------------------------------------------------------------------------------
| Header
|------------------------------------------------------------------------------
*/

header {
    background: url('../images/header.webp') center / cover no-repeat;
    padding: 0 0 90px;
    position: relative;
}

header:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    background: url('../images/header_line.webp') right top / contain no-repeat;
}

header:before {
    content: '';
    display: block;
    position: absolute;
    width: 954px;
    height: 671px;
    max-width: 50vw;
    bottom: 0;
    right: 0;
    z-index: 2;
    background: url('../images/header_img.png') bottom right / contain no-repeat;
}

header > div {
    position: relative;
    z-index: 4;
}

.header_top {
    padding: 10px 0;
    color: #ffffff;
}

.header_top .container {
    display: flex;
    align-items: center;
}

.header_logo {
    margin-right: auto;
}

.header_phone {
    margin: 0 26px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header_phone p {
    font-size: 14px;
    margin: 0;
}

.header_phone a {
    color: #ffffff;
    font-weight: bold;
    font-size: 30px;
    line-height: 30px;
    transition: color 0.5s ease;
}

.header_phone a:hover {
    color: #f48d21;
}

.header_btn a {
    transition: background 0.5s ease, color 0.5s ease;
    color: #ffffff;
    border: 2px solid #f48d21;
    border-radius: 100px;
    width: 174px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.header_btn a:hover {
    background: #f48d21;
    color: #000000;
}

.header_nav {
    padding: 16px 0 92px;
}

.header_nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.header_nav li {
    list-style: none;
    margin: 0 45px;
}

.header_nav a {
    display: block;
    color: #ffffff;
    padding: 5px;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.5s ease;
    text-align: center;
}

.header_nav a:hover {
    color: #f48d21;
}

.header_nav_btn {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
}

.header_nav_btn div,
.header_nav_btn:after,
.header_nav_btn:before {
    position: absolute;
    width: 34px;
    height: 4px;
    background: #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: 0;
    right: 0;
    margin: auto;
    content: '';
    display: block;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.header_nav_btn div {
    top: 0;
    bottom: 0;
}

.header_nav_btn:after {
    top: 10px;
}

.header_nav_btn:before {
    bottom: 10px;
}

.header_nav_btn.active div {
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: initial;
    top: 20px;
}

.header_nav_btn.active:before,
.header_nav_btn.active:after {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: initial;
    top: 20px;
}

.header_slide_cont {
    width: 510px;
}

.header_slide_tit {
    color: #ffffff;
}

.header_slide_tit span {
    color: #fecf31;
}

.header_slide_tit h1 {
    margin: 0;
    font-size: 60px;
    font-weight: bold;
    line-height: 74px;
}

.header_slide_list {
    margin: 15px 0 0;
    color: #ffffff;
}

.header_slide_list ul {
    padding: 0;
    margin: 0;
}

.header_slide_list li {
    list-style: none;
    padding: 0 0 0 24px;
    position: relative;
    font-size: 30px;
    line-height: 38px;
}

.header_slide_list li:before {
    border-radius: 100px;
    width: 10px;
    height: 10px;
    background: #ffffff;
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    display: block;
}

.header_slide_btn {
    margin: 42px 0 0;
}

.header_slide_btn a {
    border-radius: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    width: 470px;
    height: 100px;
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(to top, rgba(244, 118, 33, 1) 0%, rgba(244, 167, 33, 1) 100%);
}

.header_slide_btn a:before {
    background: url('../images/header_arrow.webp') center / contain no-repeat;
    width: 125px;
    height: 110px;
    position: absolute;
    content: '';
    display: block;
    left: -160px;
    top: -32px;
    transition: left 0.5s ease, top 0.5s ease, transform 0.5s ease;
}

.header_slide_btn a:hover:before {
    left: -130px;
    top: -22px;
    transform: rotate(-10deg);
}

.title {
    margin: 0 0 70px;
}

.title h2 {
    font-weight: bold;
    font-size: 60px;
    margin: 0;
    color: #000000;
}

/*
|------------------------------------------------------------------------------
| Where
|------------------------------------------------------------------------------
*/

.where {
    margin: 90px 0;
}

.where_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}

.where_item {
    padding: 0 15px 30px;
}

.where_item_in {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: #ffffff;
    position: relative;
}

.where_item_in:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    display: block;
    border-radius: 18px;
    transition: background 0.5s ease;
}

.where_item_in:hover:after {
    background: rgba(0, 0, 0, 0.5) !important;
}

.where_item_5 {
    width: 50%;
}

.where_item_5 .where_item_in {
    height: 360px;
}

.where_item_5 .where_item_in:after {
    background: rgba(0, 0, 0, 0.25);
}

.where_item_3 {
    width: 33.33%;
}

.where_item_3 .where_item_in {
    height: 250px;
}

.where_item_3 .where_item_in:after {
    background: rgba(0, 0, 0, 0.5);
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.where_item_tit,
.where_item_price {
    position: relative;
    z-index: 3;
}

.where_item_tit h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.where_item_price {
    margin: 20px 0 0;
}

.where_item_price span {
    padding: 0 16px;
    background: #eabf30;
    display: inline-flex;
    font-size: 18px;
    color: #000000;
    align-items: center;
    height: 46px;
}

/*
|------------------------------------------------------------------------------
| Decor
|------------------------------------------------------------------------------
*/

.decor {
    background: #000000;
    position: relative;
    padding: 140px 0 0;
    overflow: hidden;
}

.decor_in {
    width: 50%;
    margin-left: 50%;
    min-height: 460px;
    color: #ffffff;
    padding: 0 0 24px;
}

.decor .title h2 {
    color: #ffffff;
    text-transform: uppercase;
}

.decor .title {
    margin: 0 0 56px;
    line-height: 68px;
}

.decor .title h2 span {
    color: #eabf30
}

.decor_top {
    position: relative;
}

.decor_menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 48%;
    height: 100%;
    content: '';
    display: block;
    background-size: contain;
}

.decor_menu > div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.decor_menu img {
    max-width: 100%;

}

.decor_menu_item {
    position: absolute;
    background: #eabf30;
    width: 70px;
    border-radius: 100px;
    height: 70px;
    cursor: pointer;
    transition: background 0.5s ease;
}

.decor_menu_item:after,
.decor_menu_item:before {
    content: '';
    display: block;
    background: #000000;
    border-radius: 10px;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    transition: opacity 0.5s ease;
}

.decor_menu_item:after {
    width: 30px;
    height: 6px;
}

.decor_menu_item:before {
    height: 30px;
    width: 6px;
}

.decor_menu_item.active:before {
    opacity: 0;
}

.decor_menu_item.active {
    background: #f47621;
}

.decor_menu1 {
    left: 38%;
    top: 1%;
}

.decor_menu2 {
    left: 58%;
    top: 14%;
}

.decor_menu3 {
    left: 59%;
    top: 44%;
}

.decor_menu4 {
    left: 74%;
    top: 68%;
}

.decor_menu_item:not(.active) {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 191, 48, 0.5);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(234, 191, 48, 0);
    }
}

.decor_slide {
    display: none;
}

.decor_slide.active {
    display: block;
}

.decor_txt {
    font-size: 21vw;
    font-weight: bold;
    color: #363636;
    text-transform: uppercase;
    line-height: 400px;
    text-align: center;
    position: relative;
    bottom: -40px;
}

.decor_txt_mob {
    display: none;
}

.decor_cont_tit {
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 20px;
}

.decor_cont_txt {
    font-size: 24px;
    margin: 0 0 25px;
}

.decor_list {
    font-size: 24px;

}

.decor_list_tit {
    font-weight: bold;
}

.decor_list_ul {
    padding: 0;
    margin: 0;
}

.decor_list_ul li {
    list-style: none;
    line-height: 29px;
}

.decor_type {
    margin-top: -270px;
    position: relative;
    z-index: 2;
}

.decor_type_row {
    display: flex;
    margin: 0 -15px;
}

.decor_type_item {
    padding: 0 15px;
    width: 25%;
    text-align: center;
}

.decor_type_item img {
    margin: 0 0 20px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    top: 0;
    transition: top 0.5s ease;
}

.decor_type_item:hover img {
    top: -10px;
}

.decor_type_item p {
    margin: 0;
    font-size: 30px;
    font-weight: bold;
}

/*
|------------------------------------------------------------------------------
| Bonus
|------------------------------------------------------------------------------
*/

.bonus {
    margin: 150px 0;
}

.bonus_in {
    background: url('../images/bonus.webp') center / cover no-repeat;
    border-radius: 50px;
    color: #ffffff;
    padding: 50px 100px;
}

.bonus_in .title {
    margin: 0 0 30px;
    line-height: 64px;
}

.bonus_in .title h2 {
    color: #ffffff;
    font-size: 50px;
}

.bonus_in .title h2 span {
    color: #eabf30;
}

.bonus_txt {
    font-size: 24px;
    font-weight: bold;
}

.bonus_form {
    display: flex;
    margin: 60px 0 0;
}

.bonus_form .form_input {
    margin: 0 20px 0 0;
}

.form_input input {
    width: 272px;
    height: 82px;
    padding: 0 20px;
    background: #f1f1f1;
    border-radius: 10px;
    font-size: 18px;
    border: 0;
}

.form_submit input {
    width: 272px;
    height: 82px;
    padding: 0;
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
    border-radius: 100px;
    cursor: pointer;
    border: 0;
    transition: box-shadow 0.5s ease;
    box-shadow: 0 10px 29px 0 rgba(244, 118, 33, 0.35);
    background: linear-gradient(to bottom, rgba(244, 118, 33, 1) 0%, rgba(244, 167, 33, 1) 100%);
}

.form_submit input:hover {
    box-shadow: 0 0 0 0 rgba(244, 118, 33, 0.35);
}

/*
|------------------------------------------------------------------------------
| Advantages
|------------------------------------------------------------------------------
*/

.advantages {
    padding: 140px 0 0;
    background: url('../images/advantages.webp') bottom right no-repeat #f7f7f7;
}

.advantages .title {
    font-size: 60px;
    margin: 0 0 114px;
}

.advantages_row {
    display: flex;
    flex-wrap: wrap;
}

.advantages_item {
    padding: 0 15px 100px;
    width: 33.33%;
}

.advantages_item_in {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    height: 100%;
    padding: 40px;
    box-shadow: 0 8px 20px 0 rgba(186, 186, 186, 0.15);
    transition: box-shadow 0.5s ease;
}

.advantages_item_in:hover {
    box-shadow: 0 8px 20px 0 rgba(186, 186, 186, 0.65);
}

.advantages_item_in div {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #ffc400;
    margin: -75px auto 24px;
    transition: transform 0.5s ease;
}

.advantages_item_in:hover div {
    transform: scale(1.1);
}

.advantages_item_in h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 6px;
}

.advantages_item_in p {
    margin: 0;
    font-size: 20px;
}

/*
|------------------------------------------------------------------------------
| How
|------------------------------------------------------------------------------
*/

.how {
    padding: 60px 0 140px;
    background: url('../images/how.webp') center / cover no-repeat;
    position: relative;
}

.how .title {
    margin: 0 0 50px 24px;
}

.how .title h2 {
    color: #ffffff;
}

.how_t .container {
    max-width: 1560px;
}

.how_t_row {
    display: flex;
    border-right: 1px solid #7b7b7b;
}

.how_t_item {
    border-top: 1px solid #7b7b7b;
    border-bottom: 1px solid #7b7b7b;
    border-left: 1px solid #7b7b7b;
    padding: 30px 25px;
    width: 20%;
    color: #ffffff;
}

.hti_tit {
    display: flex;
}

.hti_tit b {
    font-size: 60px;
    width: 100px;
    min-width: 100px;
    color: #0097ff;
    position: relative;
    top: 0;
    transition: top 0.5s ease, text-shadow 0.5s ease, color 0.5s ease;
}

.hti_tit span {
    margin: 8px 0 0 8px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.hti_txt {
    font-size: 18px;
    color: #bfbfbf;
    margin: 10px 0 0;
    transition: color 0.5s ease, top 0.5s ease, text-shadow 0.5s ease;
}

.how_t_item:hover .hti_tit b {
    color: #eabf30;
    top: -22px;
    text-shadow: 0 7px 10px rgba(255, 196, 0, 0.5);
}

.how_c {
    display: flex;
    justify-content: center;
    padding: 60px 0 150px;
}

.how_c a {
    width: 370px;
    height: 100px;
    padding: 0;
    font-size: 24px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border-radius: 100px;
    cursor: pointer;
    border: 0;
    transition: box-shadow 0.5s ease;
    box-shadow: 0 10px 29px 0 rgba(244, 118, 33, 0.35);
    background: linear-gradient(to bottom, rgba(244, 118, 33, 1) 0%, rgba(244, 167, 33, 1) 100%);
}

.how_c a:hover {
    box-shadow: 0 0 0 0 rgba(244, 118, 33, 0.35);
}

.how_b_row {
    display: flex;
    margin: 0 -15px;
}

.hbr_i {
    color: #ffffff;
    text-align: center;
    width: 33.33%;
    padding: 0 15px;
}

.hbr_i div {
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #ffc400;
    margin: 0 auto 40px;
    transition: transform 0.5s ease;
}

.hbr_i:hover div {
    transform: scale(0.8);
}

.hbr_i h3 {
    font-weight: bold;
    margin: 0 0 16px;
    font-size: 30px;
}

.hbr_i p {
    font-size: 24px;
    margin: 0;
}

.how > div {
    position: relative;
    z-index: 2;
}

.how > .how_txt {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #363636;
    opacity: 0.5;
    right: 0;
    z-index: 1;
    line-height: 142px;
    font-weight: bold;
    text-transform: uppercase;
}

.how_txt b {
    font-size: 17vw;
    letter-spacing: 16px;
}

.how_txt span {
    font-size: 6vw;
    letter-spacing: 16px;
}

/*
|------------------------------------------------------------------------------
| Works
|------------------------------------------------------------------------------
*/

.works {
    margin: 140px 0 0;
    position: relative;
    z-index: 10;
}

.works_slider {
    border-radius: 50px;
    overflow: hidden;
}

.works_item {
    height: 600px;
}

.works_item img {
    max-height: 100%;
    margin: 0 auto;
}

.slick-arrow {
    position: absolute;
    bottom: 50px;
    width: 50px;
    height: 50px;
    border: 0;
    padding: 0;
    border-radius: 8px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 11 20"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Dribbble-Light-Preview" transform="translate(-345.000000, -6679.000000)" fill="%23000000"><g id="icons" transform="translate(56.000000, 160.000000)"><path d="M299.633777,6519.29231 L299.633777,6519.29231 C299.228878,6518.90256 298.573377,6518.90256 298.169513,6519.29231 L289.606572,6527.55587 C288.797809,6528.33636 288.797809,6529.60253 289.606572,6530.38301 L298.231646,6538.70754 C298.632403,6539.09329 299.27962,6539.09828 299.685554,6538.71753 L299.685554,6538.71753 C300.100809,6538.32879 300.104951,6537.68821 299.696945,6537.29347 L291.802968,6529.67648 C291.398069,6529.28574 291.398069,6528.65315 291.802968,6528.26241 L299.633777,6520.70538 C300.038676,6520.31563 300.038676,6519.68305 299.633777,6519.29231"></path></g></g></g></svg>') center no-repeat #ffffff;
    background-size: 14px;
    font-size: 0;
    cursor: pointer;
    z-index: 5;
}

.slick-prev {
    left: 50px;
}

.slick-next {
    left: 130px;
    transform: rotate(180deg);
}

/*
|------------------------------------------------------------------------------
| Values
|------------------------------------------------------------------------------
*/

.values {
    padding: 400px 0 100px;
    background: #f7f7f7;
    margin-top: -260px;
    position: relative;
    overflow: hidden;
}

.values .container {
    position: relative;
    z-index: 2;
}

.values_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.values_item {
    padding: 0 15px 50px;
    width: 33.33%;
}

.values_item h3 {
    font-size: 30px;
    color: #f47621;
    font-weight: bold;
    margin: 0 0 20px;
    transition: color 0.5s ease;
}

.values_item:hover h3 {
    color: #ffc400;
}

.values_item p {
    margin: 0;
    line-height: 24px;
    font-size: 20px;
}

.values_txt {
    text-align: center;
    position: absolute;
    left: -35%;
    font-size: 39vh;
    color: #e4e4e4;
    z-index: 1;
    line-height: 142px;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(-90deg);
    bottom: 43%;
}

/*
|------------------------------------------------------------------------------
| Partners
|------------------------------------------------------------------------------
*/

.partners {
    padding: 120px 0 160px;
}

.partner {
    display: flex !important;
    align-items: center;
    justify-content: center;
    float: none !important;
    height: auto !important;
}

.partners .slick-track {
    display: flex;
}

.partners .slick-prev {
    left: -50px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #eabf30;
}

.partners .slick-next {
    top: 0;
    bottom: 0;
    margin: auto;
    left: unset;
    right: -50px;
    background-color: #eabf30;
    transform: rotate(180deg);
}

.partners_txt {
    margin: 210px 0 0;
    font-size: 20px;
}

.partners_txt p {
    margin: 0 0 20px;
}

/*
|------------------------------------------------------------------------------
| Questions
|------------------------------------------------------------------------------
*/

.questions {
    background: url('../images/questions.webp') center / cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.questions .container {
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
    height: 770px;
}

.questions .container:after {
    background: url('../images/questions_i.webp') center / cover no-repeat;
    width: 678px;
    Height: 750px;
    position: absolute;
    bottom: 0;
    right: -184px;
    content: '';
    display: block;
}

.questions_in {
    width: 700px;
    position: relative;
    z-index: 2;
}

.questions .title {
    margin: 0 0 40px;
}

.questions .title h2 {
    color: #ffffff;
    font-size: 48px;
    line-height: 60px;
}

.questions .title h2 span {
    color: #ffc400;
}

.questions_txt {
    font-size: 30px;
    line-height: 46px;
}

.questions_form {
    width: 580px;
    margin: 40px 0 0;
}

.questions_form_row {
    display: flex;
    justify-content: space-between;
}

.questions_form .form_submit {
    display: flex;
    margin: 40px 0 0;
    justify-content: center;
}

/*
|------------------------------------------------------------------------------
| Content
|------------------------------------------------------------------------------
*/

.content {
    padding: 100px 0;
    background: #f7f7f7;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    font-weight: bold;
    font-size: 50px;
    margin: 0 0 30px;
    color: #000000;
}

.content p {
    margin: 0 0 30px;
    line-height: 24px;
    font-size: 20px;
}

.content p:last-of-type {
    margin-bottom: 0;
}

/*
|------------------------------------------------------------------------------
| Footer
|------------------------------------------------------------------------------
*/

footer {
    padding: 20px 0;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_logo {
    display: flex;
    align-items: center;
    width: 50%;
    font-size: 18px;
}

.footer_logo img {
    margin: 0 30px 0 0;
}

.footer_logo p {
    margin: 0;
}

.footer_info {
    text-align: end;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.footer_info b {
    font-size: 30px;
    display: block;
    margin: 0 0 10px;
}

.footer_info p {
    margin: 0;
    font-size: 20px;
}

.footer_info a,
.footer_info a:hover {
    color: #000000;
}

/*
|------------------------------------------------------------------------------
| Form
|------------------------------------------------------------------------------
*/

#form .form_inputs {
    width: 400px;
}

#form .form_input {
    margin: 0 0 10px;
}

#form .form_input input {
    width: 100%;
}

#form .form_submit input {
    width: 100%;
}

/*
|------------------------------------------------------------------------------
| max-width: 1600
|------------------------------------------------------------------------------
*/

@media all and (max-width: 1600px) {
    header:after {
        top: unset;
        height: 60%;
    }

    .decor_txt, .values_txt {
        display: none;
    }

    .decor_txt_mob {
        display: block;
        margin: 30px 0 30px !important;
    }

    .decor_txt_mob.title h2 {
        color: #ffffff;
    }

    .decor {
        padding: 140px 0 270px;
    }

    .how_t .container {
        max-width: 1200px;
    }

    .how_t_row {
        flex-wrap: wrap;
    }

    .how_t_item {
        width: 33.33%;
    }

    .how_t_item:nth-child(4),
    .how_t_item:nth-child(5) {
        width: 50%;
    }

    .parners_slider {
        width: calc(100% - 80px);
        margin: 0 auto;
    }
}

/*
|------------------------------------------------------------------------------
| max-width: 1199
|------------------------------------------------------------------------------
*/

@media all and (max-width: 1199px) {
    header:after {
        display: none;
    }

    .header_slide_cont {
        width: 100%;
    }

    .header_slide_list {
        width: 460px;
    }

    .header_slide_tit br {
        display: none;
    }

    .header_slide_list li {
        font-size: 26px;
    }

    .header_slide_btn a {
        width: 450px;
    }

    .header_nav {
        padding: 16px 0 32px;
    }

    .title {
        margin: 0 0 30px;
    }

    .advantages .title {
        margin: 0 0 50px;
    }

    .title h2,
    .bonus_in .title h2,
    .decor_in .title h2 {
        font-size: 40px;
        line-height: initial;
    }

    .where {
        margin: 60px 0;
    }

    .bonus {
        margin: 60px 0;
    }

    .decor {
        padding: 60px 0 170px;
    }

    .how_c {
        padding: 60px 0;
    }

    .how {
        padding: 60px 0;
    }

    .advantages {
        padding: 60px 0 0;
    }

    .decor:before {
        top: 60px;
        width: 40%;
    }

    .decor_in {

    }

    .decor_type_item img {
        height: 300px;
        max-width: 100%;
    }

    .decor_type {
        margin-top: -170px;
    }

    .advantages_item {
        width: 50%;
        padding: 0 15px 40px;
    }

    .advantages_item_in {
        padding: 30px;
    }

    .advantages_item_in div {
        margin: -60px auto 24px;
    }

    .hbr_i h3 {
        font-size: 26px;
    }

    .hbr_i p {
        font-size: 20px;
    }

    .works {
        margin: 60px 0 0;
    }

    .values {
        padding: 300px 0 30px;
    }

    .values_item {
        width: 50%;
    }

    .parners {
        padding: 60px 0;
    }

    .parners_txt {
        margin: 60px 0 0;
    }

    .questions .container:after {
        width: 478px;
        Height: 520px;
        background-size: contain;
    }

    .footer_logo {
        width: 60%;
    }
}

/*
|------------------------------------------------------------------------------
| max-width: 991
|------------------------------------------------------------------------------
*/

@media all and (max-width: 991px) {
    .header_nav_btn {
        display: block;
    }

    .header_nav > nav {
        position: absolute;
        top: 44px;
        left: 0;
    }

    .header_nav nav > ul {
        display: block;
    }

    .header_nav nav > ul > li {
        display: block;
        border: 0;
        margin: 0;
    }

    .header_nav nav > ul > li > a {
        line-height: 34px;
        border-top: 1px solid rgba(255, 255, 255, 0.4);
    }

    .header_nav nav > ul > li:last-child > a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }

    .header_nav nav > ul > li {
        overflow: hidden;
        height: 0;
        transition: height 200ms ease-in;
    }

    .header_nav.active nav > ul > li {
        height: 34px;
    }

    .header_btn a {
        display: none;
    }

    .header_nav a {
        padding: 0;
    }

    header:before {
        display: none;
    }

    .header_slide_list {
        width: 100%;
    }

    .header_slide_btn {
        display: flex;
        justify-content: center;
    }

    .where_item {
        width: 100% !important;
    }

    .decor_in {
        width: 100%;
        margin: 0;
    }

    .decor_in .title br {
        display: none;
    }

    .decor_in .title {
        margin: 0 0 400px;
        line-height: initial;
    }

    .decor:before {
        top: 170px;
        width: 67%;
    }

    .decor {
        padding: 60px 0 30px;
    }

    .decor_type {
        margin-top: 30px;
    }

    .decor_type_item img {
        height: 200px;
    }

    .decor_type_item p {
        font-size: 16px;
    }

    .bonus_in {
        padding: 30px;
    }

    .title h2, .bonus_in .title h2, .decor_in .title h2 {
        font-size: 34px;
    }

    .advantages_item_in h3 {
        font-size: 20px;
    }

    .advantages_item_in p {
        font-size: 16px;
    }

    .advantages {
        background-size: contain;
    }

    .how_txt {
        display: none;
    }

    .hbr_i h3 {
        font-size: 22px;
    }

    .hbr_i p {
        font-size: 16px;
    }

    .works_item {
        height: 400px;
    }

    .values {
        margin-top: 60px;
        padding-top: 60px;
    }

    .parners_txt {
        font-size: 18px;
    }

    .questions .container:after {
        display: none;
    }

    .questions_form {
        margin: 70px auto 0;
    }

    footer .container,
    .footer_logo {
        flex-direction: column;
    }

    .footer_logo p {
        margin: 16px 0;
        text-align: center;
    }

    .footer_info {
        align-items: center;
    }

    .how_t_item {
        width: 50%;
    }

    .how_t_item:nth-child(5) {
        width: 100%;
    }

    .decor_txt_mob.title h2 {
        color: #000000;
    }
}

/*
|------------------------------------------------------------------------------
| max-width: 767
|------------------------------------------------------------------------------
*/

@media all and (max-width: 767px) {
    .header_slide_tit h1 {
        font-size: 40px;
        line-height: initial;
    }

    .header_slide_list li {
        font-size: 20px;
    }

    .header_phone a {
        font-size: 22px;
    }

    .header_logo img {
        width: 140px;
        height: auto;
    }

    .decor_in .title {
        margin: 0 0 340px;
    }

    .decor_type_item {
        width: 50%;
        padding: 0 15px 30px;
    }

    .decor_type_row {
        flex-wrap: wrap;
    }

    .decor_type_item img {
        height: 300px;
    }

    .bonus_in .title h2 {
        font-size: 28px;
    }

    .bonus_txt {
        font-size: 20px;
    }

    .bonus_form {
        margin: 30px 0 0;
        flex-direction: column;
    }

    .bonus_form .form_input {
        margin: 0;
    }

    .bonus_form .form_input input {
        width: 100%;
    }

    .bonus_form .form_submit {
        margin: 20px 0 0;
    }

    .bonus_form .form_submit input {
        width: 100%;
    }

    .advantages_item {
        width: 100%;
    }

    .advantages_item_in div {
        margin: -60px auto 14px;
    }

    .advantages_item_in img {
        max-width: 40px;
        max-height: 40px;
    }

    .how_t_item {
        width: 100%;
    }

    .how_b_row {
        flex-wrap: wrap;
    }

    .hbr_i {
        width: 100%;
        margin: 0 0 30px;
    }

    .hbr_i br {
        display: none;
    }

    .hbr_i div {
        margin-bottom: 20px;
    }

    .values_item {
        width: 100%;
    }

    .slick-arrow {
        width: 40px;
        height: 40px;
    }

    .parners .slick-prev {
        left: -40px;
    }

    .parners .slick-next {
        right: -40px;
    }

    .parners_txt {
        font-size: 16px;
    }

    .questions_in,
    .questions_form {
        width: 100%;
    }

    .questions .title h2 {
        font-size: 34px;
        line-height: initial;
    }

    .questions_txt {
        font-size: 18px;
        line-height: initial;
    }

    .questions .title {
        margin: 0 0 30px;
    }

    .questions_form {
        margin: 30px 0 0;
    }

    .questions_form_row {
        flex-direction: column;
    }

    .questions_form_row .form_input {
        margin: 0 0 20px;
    }

    .questions_form_row .form_input input {
        width: 100%
    }

    .questions_form .form_submit {
        margin: 0;
    }

    .questions .container {
        height: auto;
        padding: 60px 15px;
    }

    .values_item h3 {
        font-size: 24px;
    }

    .values_item p {
        line-height: initial;
        font-size: 18px;
    }

    .how_t_item:nth-child(4), .how_t_item:nth-child(5) {
        width: 100%;
    }
}

/*
|------------------------------------------------------------------------------
| max-width: 567
|------------------------------------------------------------------------------
*/

@media all and (max-width: 567px) {
    .header_slide_btn a:before {
        display: none;
    }

    .header_slide_btn a {
        width: 100%;
    }

    .decor:before {
        top: 170px;
        width: 90%;
    }

    .header_top .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .header_logo {
        order: 1;
    }

    .header_nav_btn {
        order: 2;
    }

    .header_phone {
        width: 100%;
        margin: 10px 0 0;
        order: 3;
        text-align: center;
    }

    .header_logo {
    }

    .header_slide_tit h1 {
        font-size: 30px;
    }

    .header_slide_list li {
        font-size: 20px;
        line-height: initial;
    }

    .header_slide_list li:before {
        top: 6px;
    }

    .header_slide_btn a {
        width: 100%;
        height: 56px;
        font-size: 15px;
    }

    header {
        padding: 0 0 30px;
    }

    .header_nav {
        padding: 0;
    }

    .where_item_in {
        padding: 14px;
    }

    .where_item_tit h3 {
        font-size: 20px;
    }

    .where_item_tit h3 br {
        display: none;
    }

    .where_item_price span {
        padding: 0 6px;
        font-size: 16px;
        width: 100%;
    }

    .title h2, .bonus_in .title h2, .decor_in .title h2 {
        font-size: 28px;
    }

    .decor:before {
        display: none;
    }

    .decor_in .title {
        margin: 0 0 30px;
    }

    .decor_cont_tit {
        font-size: 26px;
    }

    .decor_cont_txt {
        font-size: 18px;
    }

    .decor_list {
        font-size: 18px;
    }

    .decor_type_item img {
        height: 200px;
    }

    .bonus_in {
        padding: 15px;
        border-radius: 16px;
    }

    .bonus_in .title h2 {
        font-size: 18px;
    }

    .bonus_txt {
        font-size: 16px;
    }

    .form_submit input,
    .form_input input {
        height: 56px;
    }

    .advantages_item_in {
        padding: 30px 15px;
    }

    .how_t_item {
        padding: 15px;
    }

    .how_t_item:nth-child(4), .how_t_item:nth-child(5) {
        width: 100%;
    }

    .how_c {
        padding: 30px 15px;
    }

    .how_c a {
        width: 100%;
        height: 56px;
    }

    .hti_tit span {
        margin: 0;
        font-size: 22px;
    }
}

/*
|------------------------------------------------------------------------------
| max-width: 1700
|------------------------------------------------------------------------------
*/

@media all and (max-width: 1700px) {
    .decor_menu1 {
        left: 38%;
        top: 1%;
    }

    .decor_menu2 {
        left: 58%;
        top: 14%;
    }

    .decor_menu3 {
        left: 59%;
        top: 44%;
    }

    .decor_menu4 {
        left: 74%;
        top: 68%;
    }
}

/*
|------------------------------------------------------------------------------
| max-width: 1400
|------------------------------------------------------------------------------
*/

@media all and (max-width: 1400px) {
    .decor_menu_item {
        width: 50px;
        height: 50px;
    }
}

/*
|------------------------------------------------------------------------------
| max-width: 991
|------------------------------------------------------------------------------
*/

@media all and (max-width: 991px) {
    .decor_menu {
        width: 80%;
        margin: 0 0 30px;
    }

    .decor_menu, .decor_menu > div {
        position: relative;
    }
}

/*
|------------------------------------------------------------------------------
| max-width: 1400
|------------------------------------------------------------------------------
*/

@media all and (max-width: 1400px) {
    .decor_menu_item {
        width: 30px;
        height: 30px;
    }

    .decor_menu_item:after {
        width: 15px;
        height: 2px;
    }

    .decor_menu_item:before {
        height: 15px;
        width: 2px;
    }
}
