/*top_block*/
.top_block {
    position: relative;
    background: url("/htdocs/img/content/top/top_bg1.png") no-repeat top center;
    background-size: cover;
}
.top_block .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.top_block .top_left {
    margin-right: auto;
    width: 480px;
    padding: 20px 0;
    position: relative;
    z-index: 3;
}
.top_block .top_title {
    line-height: 0;
    margin-bottom: 30px;
}
.top_block .top_ads_list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.top_block .top_ads_item {
    width: calc(100%/3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
}
.top_block .top_ads_item .image {
    height: 35px;
    margin-bottom: 10px;
}
.top_block .top_ads_item .title {
    font-weight: bold;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #141414;
}
.top_block .top_right {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 360px;
    padding: 0 30px 30px;
    border-radius: 100px 100px 0 0;
    background: #242423;
    overflow: hidden;
    margin-top: 30px;
}
.top_block .top_logo {
    height: 180px;
    width: 190px;
    background: #F2EBD4;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    line-height: 1;
    border-radius: 0 0 50% 50%;
    margin-bottom: 20px;
}
.top_block .top_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
}
.top_block .top_btns_text {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #DCBB61;
    margin-bottom: 10px;
}
.top_block .top_btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.top_block .top_btn_link {
    width: 100%;
    height: auto;
    padding: 10px 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: #101010;
}
.top_block .top_btn_link:last-child {
    margin-bottom: 0;
}
.top_block .top_partners {
    width: 480px;
    height: 100%;
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: calc(50% - 350px);
    background: url("/htdocs/img/content/top/top_partners.png") no-repeat bottom center;
    background-size: contain;
}
.top_block .top_bg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/htdocs/img/content/top/top_bg2.png") no-repeat center center;
    background-size: cover;

}

@media (max-width: 1200px) {
    .top_block .top_partners {
        width: 380px;
        right: 335px;
    }
}
@media (max-width: 1024px) {
    .top_block .container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    .top_block .top_left {
        width: 100%;
    }
    .top_block .top_title {
        line-height: 0;
        margin: 0 auto 10px;
        width: 360px;
        max-width: 100%;
    }
    .top_block .top_ads_list {
        margin: 0 auto;
        max-width: 600px;
    }
    .top_block .top_ads_item {
        padding: 5px;
    }
    .top_block .top_ads_item .image {
        height: 20px;
        margin-bottom: 5px;
    }
    .top_block .top_ads_item .title {
        font-size: 16px;
        line-height: 1.2;
    }
    .top_block .top_right {
        max-width: 100%;
        padding: 0 30px 30px;
        margin: 0 auto;
    }
    .top_block .top_bg,
    .top_block .top_partners
    {
        display: none;
    }
}
/*end top_block*/

/*callback_form*/
.callback_form {
    margin-top: 30px;
}
.callback_form .callback_form_container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #fff;
    box-shadow: 0 4px 59px 0 rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}
.callback_form h2 {
    font-size: 32px;
    color: #0a142f;
    font-weight: bold;
    margin-right: 80px;
    padding-bottom: 45px;
    margin-bottom: 0;
}
.callback_form .callback_form_main {
    width: 510px;
    max-width: 100%;
}
.callback_form .callback_form_block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px;
    border: 2px solid rgba(10, 20, 47, 0.1);
    border-radius: 4px;
}
.callback_form .callback_form_block input {
    font-size: 20px;
    color: #0a142f;
    width: 100%;
    height: 56px;
    padding: 16px;
    font-weight: bold;
}
.callback_form .callback_form_block input::placeholder {
    color: rgba(43, 61, 81, 0.5);
}
.callback_form .callback_form_block button {
    background: #242423;
    border-radius: 4px;
    width: 180px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #fff;
    border: 1px solid #242423;
    flex-shrink: 0;
}
.callback_form .personal {
    font-size: 14px;
    margin-top: 10px;
}
.callback_form .personal a {
    color: #DCBB61;
}

@media (max-width: 768px) {
    .callback_form .callback_form_container {
        flex-direction: column;
        padding: 30px 20px;
    }
    .callback_form h2 {
        font-size: 24px;
        width: 100%;
        text-align: center;
        margin: 0 0 20px;
        padding: 0;
    }
}
@media (max-width: 600px) {
    .callback_form .callback_form_block input {
        font-size: 14px;
        padding: 10px;
        height: 46px;
    }
    .callback_form .callback_form_block button {
        width: 120px;
        font-size: 14px;
    }
    .callback_form .callback_form_block {
        padding: 4px;
    }
}
/*end_callback_form*/

/*howwork*/
.howwork {
    padding: 36px 0;
}
.howwork h2 {
    font-size: 40px;
    margin-bottom: 20px;
}
.howwork .text {
    font-size: 20px;
    color: #DCBB61;
    font-weight: bold;
    margin-bottom: 20px;
}
.howwork .howwork_list {
    margin-bottom: 20px;
    column-count: 2;
    column-gap: 10px;
}
.howwork .howwork_item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.howwork .howwork_item:last-child {
    margin-bottom: 0;
}
.howwork .howwork_item .num {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 32px;
    color: #DCBB61;
    background: #101010;
    border-radius: 8px;
    flex-shrink: 0;
    margin-right: 16px;
}
.howwork .howwork_item .title {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .howwork .howwork_list {
        column-count: auto;
        column-gap: 0;
    }
}
@media (max-width: 600px) {
    .howwork h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    .howwork .text {
        text-align: center;
    }
}
/*end howwork*/

/*worktypes*/
.worktypes {
    padding: 36px 0;
}
.worktypes h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    padding: 5px;
    border: 5px solid #DCBB61;

}
.worktypes .worktypes_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.worktypes .worktypes_item {
    width: 25%;
    padding: 10px;
}
.worktypes .worktypes_item_container {
    /*border-top: 2px solid #DCBB61;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}
.worktypes .worktypes_item .image {
    height: 100px;
    margin-bottom: 10px;
}
.worktypes .worktypes_item .info {
    text-align: center;
}
.worktypes .worktypes_item .title {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .worktypes .worktypes_item {
        width: calc(100%/3);
    }
}
@media (max-width: 600px) {
    .worktypes h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    .worktypes .worktypes_item {
        width: 50%;
    }
    .worktypes .worktypes_item .image {
        height: 60px;
    }
    .worktypes .worktypes_item .title {
        font-size: 16px;
    }
    .worktypes .worktypes_item .desc {
        font-size: 14px;
    }
}
/*end worktypes*/

/*scammers_block*/
.scammers_block {
    padding: 36px 0;
    background: #242423;
}
.scammers_block .container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.scammers_block .image {
    height: 160px;
    width: 160px;
    margin-right: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scammers_block .info {
    max-width: 640px;
    color: #DCBB61;
}
.scammers_block .title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}
.scammers_block .desc {
    font-size: 24px;
}

@media (max-width: 1024px) {
    .scammers_block .title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .scammers_block .image {
        margin-right: 24px;
    }
    .scammers_block .desc {
        font-size: 18px;
    }
}
@media (max-width: 600px) {
    .scammers_block {
        text-align: center;
    }
    .scammers_block .container {
        flex-direction: column;
    }
    .scammers_block .image {
        height: 100px;
        margin: 0 0 16px
    }
    .scammers_block .title {
        font-size: 24px;
    }
    .scammers_block .desc {
        font-size: 16px;
    }
}
/*end scammers_block*/

/*whywe*/
.whywe {
    padding: 36px 0;
    background: #101010;
}
.whywe h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #DCBB61;
}
.whywe .whywe_list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.whywe .whywe_item {
    width: calc(100%/3);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    color: #DCBB61;
    text-align: center;
    padding: 15px;
}
.whywe .whywe_item .image {
    height: 120px;
    margin-bottom: 10px;
}
.whywe .whywe_item .title {
    font-size: 20px;
    font-weight: bold;
    color: #DCBB61;
}
@media (max-width: 1024px) {
    .whywe .whywe_item .image {
        height: 80px;
    }
    .whywe .whywe_item .title {
        font-size: 16px;
    }
}
@media (max-width: 600px) {
    .whywe h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    .whywe .whywe_item {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
    .whywe .whywe_item:last-child {
        margin-bottom: 0;
    }
}

/*end whywe*/

/*advantages*/
.advantages {
    padding: 36px 0;
}
.advantages h2 {
    font-size: 40px;
    margin-bottom: 20px;
}
.advantages_list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.advantages_item {
    width: calc(50% - 10px);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.advantages_item:nth-child(odd) {
    margin-right: 20px;
}
.advantages_item:last-child {
    margin-right: 0;
}
.advantages_item .image {
    width: 100px;
    margin-right: 20px;
    flex-shrink: 0;
}
.advantages_item .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #DCBB61;
}
.advantages_item a {
    color: #DCBB61;
    text-decoration: underline;
}
.advantages_item a:hover {
    text-decoration: none;
}


@media (max-width: 1024px) {
    .advantages_item .image {
        width: 80px;
        margin-right: 10px;
    }
    .advantages_item .title {
        font-size: 20px;
        margin-bottom: 6px;
    }
}
@media (max-width: 600px) {
    .advantages h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    .advantages_item {
        width: 100%;
    }
    .advantages_item:nth-child(odd) {
        margin-right: 0;
    }
    .advantages_item .title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .advantages_item .desc {
        font-size: 14px;
    }
}
/*end advantages*/

/*problem_form*/
.problem_form {
    padding: 36px 0;
    background: #101010;
    color: #DCBB61;
}
.problem_form .container {
    max-width: 700px;
}
.problem_form h2 {
    font-size: 40px;
    margin-bottom: 10px;
    text-align: center;
}
.problem_form .desc {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}
.problem_form .problem_form_block {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}
.problem_form input {
    width: 100%;
    height: 60px;
    background: #ffffff;
    border: 1px solid #DCBB61;
    border-radius: 8px;
    padding: 20px;
    font-weight: 400;
    font-size: 18px;
    color: #DCBB61;
    margin-bottom: 10px;
}
.problem_form .problem_form_block .input {
    width: calc(50% - 5px);
    margin-right: auto;
}
.problem_form .problem_form_block .input:last-child {
    margin-right: 0;
}
.problem_form textarea {
    width: 100%;
    height: 120px;
    background: #ffffff;
    border: 1px solid #DCBB61;
    border-radius: 8px;
    padding: 20px;
    font-weight: 400;
    font-size: 18px;
    color: #DCBB61;
    margin-bottom: 10px;
}
.problem_form button {
    margin-bottom: 20px;
}
.problem_form .personal {
    color: rgba(255, 255, 255, 0.7);
}
.problem_form .personal a {
    color: #DCBB61;
}
.problem_form .personal a:hover {
    color: #ffffff;
}

@media (max-width: 600px) {
    .problem_form h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .problem_form .desc {
        font-size: 16px;
    }
    .problem_form .problem_form_block {
        flex-direction: column;
    }
    .problem_form .problem_form_block .input {
        width: 100%;
        margin-right: 0;
    }
    .problem_form input {
        padding: 10px;
        height: 36px;
        margin-bottom: 5px;
        font-size: 14px;
    }
    .problem_form textarea {
        padding: 10px;
        height: 36px;
        font-size: 14px;
    }
    .problem_form button {
        margin: 0 auto 20px;
    }
    .problem_form .personal {
        font-size: 14px;
    }
}
/*end problem_form*/

/*newlife*/
.newlife {
    padding: 36px 0;
    background: #101010;
    color: #DCBB61;
}
.newlife h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    color: #DCBB61;
    padding: 5px;
    border: 5px solid #DCBB61;
}
.newlife .newlife_list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.newlife .newlife_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    text-align: center;
    width: calc(100%/3);
    margin-bottom: 20px;
    color: #DCBB61;
}
.newlife .newlife_item .image {
    height: 100px;
    line-height: 0;
    margin-bottom: 10px;
}
.newlife .newlife_item .title {
    font-size: 20px;
    font-weight: bold;
    max-width: 320px;
    margin-bottom: 5px;
}
.newlife .newlife_item .desc {
    font-size: 16px;
}
.newlife .text {
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
}
.newlife .text span{
    font-weight: bold;
}

@media (max-width: 600px) {
    .newlife h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    .newlife .newlife_item {
        padding: 10px;
        width: 100%;
        margin-bottom: 10px;
    }
    .newlife .newlife_item .title {
        font-size: 16px;
        max-width: 100%;
    }
    .newlife .text {
        font-size: 18px;
        text-align: center;
    }
}
/*end newlife*/

/*reviews_block*/
.reviews_block {
    padding: 36px 0;
    overflow: hidden;
}
.reviews_block h2 {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 40px;
}
.reviews_block_container {
    padding: 0 80px;
    position: relative;
}
.reviews_slider {
    position: relative;
    overflow: hidden;
}
.reviews_item {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.reviews_item_container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    width: 100%;
    transition: all 0.5s ease 0s;
    min-height: 300px;
    padding: 30px;
    border-radius: 40px;
    border: 1px solid #DCBB61;
    background: #E3D4C1;
    color: #101010;
}
.reviews_item .top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 61px;
    margin-bottom: 5px;
    width: 100%;
}
.reviews_item .top_info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.reviews_item .top_info .options {
    margin: 0 auto;
}
.reviews_item .top .image {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-right: 17px;
}
.reviews_item .top .title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 5px;
}
.reviews_item .text {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 21px;
}
.reviews_item.big_text .text {
    height: 135px;
    overflow: hidden;
}
.reviews_item .info {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: auto;
}
.reviews_item .date {
    font-weight: 400;
    font-size: 14px;
}
.reviews_item .open_text {
    display: none;
    font-weight: 400;
    font-size: 14px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #101010;
    cursor: pointer;
    margin-left: auto;
}
.reviews_item .open_text:hover {
    text-decoration: none;
}
.reviews_item.big_text .open_text {
    display: block;
}
.reviews_item .stars {
    margin-top: 10px;
}
@media (max-width: 1024px) {
    .reviews h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .reviews_item_container {
        padding: 16px;
        border-radius: 30px;
    }
    .reviews_slider {
        padding: 0;
    }
    .reviews_item .text {
        font-size: 14px;
    }
    .reviews_item .open_text {
        font-size: 12px;
    }
    .reviews_item .top .title {
        font-size: 16px;
    }
    .reviews_item .top .image {
        margin-right: 10px;
    }
}
@media (max-width: 768px) {
    .reviews_item_container {
        min-height: 240px;
    }
    .reviews_item.big_text .text {
        height: 74px;
        margin-bottom: 10px;
        overflow: hidden;
    }
    .reviews_block_container {
        padding: 0;
    }
    .reviews_item {
        width: 241px;
    }
    .reviews_block .swiper_control {
        display: none;
    }
}
@media (max-width: 600px) {
    .reviews_block h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
}
/*end reviews_block*/

/*faq_block*/
.faq_block {
    padding: 36px 0;
}
.faq_block h2 {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 24px;
}
.faq_block .faq_block_item {
    width: 100%;
    margin-bottom: 5px;
}
.faq_block .faq_block_item:last-child {
    margin-bottom: 0;
}
.faq_block .faq_block_item .question {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    background: #101010;
    color: #DCBB61;
    font-size: 20px;
    cursor: pointer;
    border: 2px solid #101010;
}
.faq_block .faq_block_item:hover .question {
    border-color: #DCBB61;
}
.faq_block .faq_block_item.open .question {
    border-radius: 15px 15px 0 0;
}
.faq_block .faq_block_item .answer {
    display: none;
    width: 100%;
    font-size: 16px;
    background: #DCBB61;
    color: #101010;
    padding: 15px;
    border-radius: 0 0 15px 15px;
}
.faq_block .faq_block_item.open .answer {
    display: block;
}

@media (max-width: 600px) {
    .faq_block h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    .faq_block .faq_block_item .question {
        font-size: 16px;
    }
    .faq_block .faq_block_item .answer {
        font-size: 14px;
    }
}
/*end faq_block*/

/*consult_popup_form*/
.consult_popup_form {
    width: 100%;
    height: 100%;
    background: rgba(70, 70, 70, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    z-index: 999;
    display: none;
}
.consult_popup_form.open {
    display: flex;
}
.consult_popup_form_container {
    max-width: calc(100% - 20px);
    box-shadow: 0 81px 106px 0 rgba(51, 51, 51, 0.1);
    background: #fff;
    border-radius: 20px;
    max-height: 100vh;
    width: 560px;
    overflow: auto;
    padding: 40px;
    position: relative;
}
.consult_popup_form .close {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}
.consult_popup_form .title {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    color: #0a142f;
    margin-bottom: 15px;
}
.consult_form_default input.input_text {
    border: 1px solid #0a142f;
    border-radius: 5px;
    width: 100%;
    height: 50px;
    font-weight: bold;
    font-size: 16px;
    color: #0a142f;
    padding: 15px 25px;
    margin-bottom: 15px;
}
.consult_form_default input.input_text::placeholder {
    font-weight: 400;
    color: rgba(10, 20, 47, 0.6);
}
.consult_form_default .checkbox_label {
    font-weight: 400;
    font-size: 16px;
    color: rgba(10, 20, 47, 0.6);
    margin-bottom: 10px;
}
.consult_form_default .checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 5px;
}
.consult_form_default .checkbox:last-child {
    margin-bottom: 0;
}
.consult_form_default input[type="checkbox"] {
    border: 1px solid #dcbb61;
    border-radius: 3px;
    width: 15px;
    height: 15px;
    background: #fff;
    margin-right: 20px;
}
.consult_form_default input[type="checkbox"]:checked {
    background: #dcbb61;
}
.consult_form_default .checkbox label {
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    color: #303030;
}
.consult_form_default .btn_submit {
    text-transform: none;
    margin: 20px auto 10px 0;
    color: #fff;
}
.consult_form_default .btn_submit:hover {
    color: #dcbb61;
}
.consult_form_default .personal {
    font-size: 14px;
}
.consult_form_default .personal a {
    color: #dcbb61;
}

@media (max-width: 600px) {
    .consult_popup_form_container {
        padding: 20px;
    }
    .consult_popup_form .title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .consult_form_default input.input_text {
        height: 40px;
        font-size: 14px;
        padding: 10px 15px;
        margin-bottom: 5px;
    }
    .consult_form_default .checkbox_label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .consult_form_default .checkbox label {
        cursor: pointer;
        font-size: 14px;
    }
    .consult_form_default .btn_submit {
        margin: 10px auto 5px 0;
    }
    .consult_form_default .personal {
        font-size: 12px;
    }
}
/*end consult_popup_form*/

/*popup_form*/
.popup_form {
    width: 100%;
    height: 100%;
    background: rgba(70, 70, 70, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    z-index: 999;
    display: none;
}
.popup_form.open {
    display: flex;
}
.popup_form_container {
    max-width: calc(100% - 20px);
    border: 1px solid #DCBB61;
    background: #101010;
    border-radius: 16px;
    filter: drop-shadow(0px 20px 46.974px #524C54);
    max-height: 100vh;
    width: 360px;
    overflow: auto;
    padding: 36px 24px;
    position: relative;
}
.popup_form .close {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}
.popup_form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.popup_form .title {
    font-size: 24px;
    text-align: center;
    text-transform: uppercase;
    color: #DCBB61;
    margin-bottom: 16px;
}
.popup_form input {
    width: 100%;
    height: 60px;
    background: #ffffff;
    border: 1px solid #DCBB61;
    border-radius: 8px;
    padding: 20px;
    font-weight: 400;
    font-size: 18px;
    color: #DCBB61;
}
.popup_form form {
    width: 100%;
}
.popup_form form button {
    margin-top: 10px;
}
.popup_form form .personal {
    font-size: 14px;
    text-align: center;
    color: #DCBB61;
    margin-top: 10px;
}
.popup_form form .personal a {
    color: #DCBB61;
    text-decoration: underline;
}
.popup_form form .personal a:hover {
    text-decoration: none;
}
/*end popup_form*/

/*fiveyears*/
.fiveyears {
    padding: 36px 0;
    background: #101010;
    color: #ffffff;
}
.fiveyears .top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.fiveyears .ben {
    width: 320px;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    border: 5px solid #DCBB61;
    color: #DCBB61;
    flex-shrink: 0;
    margin-right: 40px;
}
.fiveyears .ben .title {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}
.fiveyears .ben .desc {
    font-size: 20px;
}
.fiveyears .info {
    width: 100%;
    text-align: center;
}
.fiveyears h2 {
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 16px;
}
.fiveyears .info .desc {
    font-size: 24px;
}
.fiveyears .fiveyears_list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.fiveyears .fiveyears_item {
    width: 50%;
    padding: 20px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}
.fiveyears .fiveyears_item .image {
    margin-bottom: 5px;
    line-height: 0;
}
.fiveyears .fiveyears_item .title {
    color: #DCBB61;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
}
.fiveyears .fiveyears_item .desc {
    font-size: 18px;
}

@media (max-width: 1024px) {
    .fiveyears .top {
        flex-direction: column;
    }
    .fiveyears .ben {
        width: 100%;
        padding: 10px;
        margin: 0 0 20px;
    }
    .fiveyears h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .fiveyears .info .desc {
        font-size: 18px;
    }
    .fiveyears .ben .title {
        font-size: 28px;
        margin-bottom: 5px;
    }
    .fiveyears .ben .desc {
        font-size: 18px;
    }
    .fiveyears .fiveyears_item .title {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .fiveyears .fiveyears_item .desc {
        font-size: 16px;
    }
}
@media (max-width: 600px) {
    .fiveyears .fiveyears_list {
        flex-wrap: wrap;
    }
    .fiveyears .fiveyears_item {
        width: 100%;
    }
}

/*comrades*/
.comrades {
    padding: 36px 0;
    overflow: hidden;
    background: #101010;
}
.comrades h2 {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 40px;
    color: #DCBB61;
}
.comrades_container {
    padding: 0 80px;
    position: relative;
}
.comrades_slider {
    position: relative;
    overflow: hidden;
}
.comrades_item {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5px;
}
.comrades_item_container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    width: 100%;
    transition: all 0.5s ease 0s;
    border-radius: 40px;
    border: 1px solid #DCBB61;
    color: #DCBB61;
}
.comrades_item .image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
    line-height: 0;
}
.comrades_item .info {
    width: 100%;
}
.comrades_item .position {
    font-size: 20px;
    text-align: center;
    width: 100%;
    height: 60px;
}
.comrades_item .title {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    width: 100%;
    height: 60px;
}

@media (max-width: 1024px) {
    .comrades_slider {
        overflow: visible;
    }
    .comrades_item_container {
        border-radius: 30px;
    }
    .comrades_slider {
        padding: 0;
    }
    .comrades_item .title {
        font-size: 20px;
    }
    .comrades .swiper_control {
        display: none;
    }
}
@media (max-width: 600px) {
    .comrades_container {
        padding: 0;
    }
    .comrades h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
}
/*end comrades*/


/*comrades*/
.deals {
    padding: 36px 0;
    overflow: hidden;
}
.deals h2 {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 40px;
}
.deals_container {
    padding: 0 80px;
    position: relative;
}
.deals_slider {
    position: relative;
    overflow: hidden;
}
.deals_item {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5px;
}
.deals_item_container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    width: 100%;
    transition: all 0.5s ease 0s;
    border-radius: 40px;
    border: 1px solid #DCBB61;
    color: #DCBB61;
    background: #101010;
}
.deals_item .image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
    line-height: 0;
}
.deals_item .info {
    width: 100%;
}
.deals_item .status {
    font-size: 20px;
    text-align: center;
    width: 100%;
    margin-bottom: 10px
}
.deals_item .price {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    width: 100%;
    margin-bottom: 10px
}
.deals_item .btn {
    border-radius: 0;
}

@media (max-width: 1024px) {
    .deals_slider {
        overflow: visible;
    }
    .deals_item_container {
        border-radius: 30px;
    }
    .deals_slider {
        padding: 0;
    }
    .deals_item .title {
        font-size: 20px;
    }
    .deals .swiper_control {
        display: none;
    }
    .deals_container {
        padding: 0;
    }
    .deals_item .price {
        font-size: 18px;
    }
    .deals_item .status {
        font-size: 16px;
    }
}
@media (max-width: 600px) {
    .deals h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    .deals_item_container {
        border-radius: 20px;
    }
}
/*end comrades*/

/*faq*/
.faq {
    background: #F5EFE9;
    padding: 60px 0;
}
.faq_container {
    position: relative;
    padding-right: 430px;
}
.faq_list {
}
.faq_item {
    margin-bottom: 40px;
}
.faq_item:last-child {
    margin-bottom: 0;
}
.faq_item_question {
    margin-bottom: 10px;
    background: #E3D4C1;
    padding: 25px;
    font-size: 20px;
    color: #212121;
    border-radius: 40px;
    margin-right: 40px;
}
.faq_item_answer {
    font-size: 20px;
    background: #E6B77C;
    color: #212121;
    padding: 25px;
    border-radius: 40px;
    margin-left: 40px;
}

@media (max-width: 1024px) {
    .faq_container {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-right: 0;
    }
    .faq h2 {
        font-size: 40px;
        margin-bottom: 20px;
    }
}
@media (max-width: 600px) {
    .faq_item_question {
        margin-bottom: 5px;
        padding: 15px;
        font-size: 16px;
        border-radius: 20px;
        margin-right: 20px;
    }
    .faq_item_answer {
        font-size: 16px;
        padding: 15px;
        border-radius: 20px;
        margin-left: 20px;
    }
    .faq_item {
        margin-bottom: 25px;
    }
}
/*end faq*/

/*side_form*/
.side_form {
    width: 420px;
    padding: 24px;
    border-radius: 24px;
    position: absolute;
    top: 0;
    right: 0;
    background: #F1F1F1;
    color: #212121;
    box-shadow: inset 0 4px 4px 0 #ddc078, 0 4px 4px 0 #e6b77c;
}
.side_form form label {
    color: #fff;
}
.side_form .title {
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    color: #1d1d1f;
    margin-bottom: 25px;
}
.side_form .alert-danger {
    color: red;
    font-weight: bold;
    background: #fff;
}
.side_form.fixed {
    position: fixed;
    top: 20px;
    right: calc(50% - 1474px/2 + 17px);
}
.side_form.fixed.stop {
    position: absolute;
    bottom: 0;
    right: 0;
    top: auto;
}
.side_form form {
    position: relative;
    z-index: 2;
}
.side_form form label {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #212121;
    margin-bottom: 8px;
}
.side_form form input {
    border: 1px solid #333;
    border-radius: 10px;
    height: 48px;
    width: 100%;
    background: #E3D4C1;
    margin-bottom: 20px;
    padding: 0 15px;
}
.side_form form textarea {
    border: 1px solid #333;
    border-radius: 10px;
    width: 100%;
    background: #E3D4C1;
    margin-bottom: 20px;
    padding: 15px;
    height: 100px;
    display: block;
}
.side_form .personal {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: #e6b77c;
    margin-bottom: 10px;
}
.side_form .personal a {
    color: #b22626;
}
.side_form .personal a:hover {
    text-decoration: underline;
}
.side_form .side_form_mess {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: #634520;
}
.side_form .side_form_mess span {
    color: #b22626;
}
.side_form form button[type='submit'] {
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 1473px) {
    .side_form.fixed {
        position: fixed;
        top: 20px;
        right: 17px;
    }
}
@media (max-width: 1024px) {
    .side_form {
        width: 100%;
        position: static;
        margin-top: 30px;
    }
}
@media (max-width: 600px) {
    .side_form .title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .side_form form input {
        border-radius: 6px;
        height: 36px;
        margin-bottom: 15px;
        padding: 0 10px;
    }
}
/*end side_form*/

/*reviews*/
.reviews {
    padding: 30px 0;
    background: #F5EFE9;
}
.reviews h1 {
    margin-bottom: 24px;
}
.reviews .desc {
    color: #212121;
    font-size: 20px;
}
.reviews .afterdesc {
    text-transform: uppercase;
    color: #a35041;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: bold;
}
.reviews_page_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.reviews .reviews_item {
    width: calc(100%/3);
    padding: 10px;
}
.reviews_container {
    position: relative;
    padding-right: 350px;
}
.reviews_container .side_form {
    width: 330px;
}
.review_service_list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 15px;
}
.review_service_item {
    width: calc(50% - 1px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 5px;
}
.review_service_item:nth-child(odd) {
    margin-right: 2px;
}
.review_service_item .image {
    width: 16px;
    margin-right: 5px;
    flex-shrink: 0;
    line-height: 0;
}
.review_service_item .ser_title {
    font-weight: bold;
    font-size: 12px;
    color: #dcbb61;
}
.review_service_item .ser_title:hover {
    text-decoration: underline;
}
@media (max-width: 1366px) {
    .reviews .reviews_item {
        width: 50%;
    }
}
@media (max-width: 1024px) {
    .reviews_container {
        padding-right: 0;
    }
    .reviews_container .side_form {
        width: 100%;
    }
    .reviews h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .reviews .desc {
        font-size: 16px;
    }
    .reviews .afterdesc {
        font-size: 16px;
        margin-bottom: 20px;
    }
}
@media (max-width: 600px) {
    .reviews .reviews_item {
        width: 100%;
    }
}
/*end reviews*/

/*services*/
.services {
    padding: 60px 0;
    background: #F5EFE9;
}
.services h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}
.services .descr {
    font-size: 20px;
    margin-bottom: 30px;
}
.services .services_item {
    display: flex;
    width: 100%;
    margin-bottom: 50px;
}
.services .services_item .info {
    width: calc(100% - 500px);
    margin-right: auto;
    border-radius: 40px;
    padding: 30px 60px;
    box-shadow: inset -1px -1px 3px 0 rgba(211, 222, 226, 0.9), inset 1px 1px 2px 0 rgba(255, 255, 255, 0.9), inset -1px 1px 2px 0 rgba(211, 222, 226, 0.2), inset 1px -1px 2px 0 rgba(211, 222, 226, 0.2);
    background: #e3d4c1;
}
.services .services_item .title {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 24px;
}
.services .services_item .list {
    display: flex;
    flex-wrap: wrap;
}
.services .services_item .item {
    width: 50%;
    padding: 0 10px 0 36px;
    font-weight: 400;
    font-size: 18px;
    color: rgba(33, 33, 33, 0.7);
    margin-bottom: 40px;
    position: relative;
}
.services .services_item .item:last-child {
    margin-bottom: 0;
}
.services .services_item .item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: url("/htdocs/img/icons/check_2.svg") no-repeat center;
    background-size: contain;
}
.services .services_item .price {
    width: 410px;
    box-shadow: inset -5px -5px 13px 0 #dcbb61, inset 5px 5px 10px 0 #dcbb61, inset -5px 5px 10px 0 #dcbb61, inset 5px -5px 10px 0 #dcbb61;
    background: #e3d4c1;
    padding: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.services .services_item .price_sale {
    font-weight: bold;
    font-size: 32px;
    text-decoration: line-through;
    color: rgba(33, 33, 33, 0.7);
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.services .services_item .price_main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
}
.services .services_item .cost {
    font-weight: bold;
    font-size: 32px;
    color: rgba(33, 33, 33, 0.7);
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .services .services_item .info {
        width: calc(100% - 400px);
        padding: 30px;
    }
    .services .services_item .price {
        width: 360px;
        padding: 30px;
    }
}
@media (max-width: 1024px) {
    .services .services_item {
        margin-bottom: 30px;
    }
    .services .services_item .item {
        width: 100%;
        font-size: 16px;
        margin-bottom: 20px;
        padding: 0 0 0 20px;
    }
    .services .services_item .item:before {
        width: 16px;
        height: 16px;
    }
    .services h1 {
        font-size: 24px;
    }
    .services .descr {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .services .services_item .title {
        margin-bottom: 15px;
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .services .services_item {
        flex-wrap: wrap;
    }
    .services .services_item .info {
        width: 100%;
        padding: 20px;
    }
    .services .services_item .price {
        padding: 20px;
        border-radius: 20px;
        width: 100%;
    }
    .services .services_item .cost,
    .services .services_item .price_sale
    {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .services {
        padding: 30px 0;
    }
}
/*end services*/

/*question_form*/
.question_form {
    background: #E3D4C1;
    position: relative;
}
.question_form .container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}
.question_form h2 {
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 15px;
}
.question_form .desc {
    font-weight: bold;
    font-size: 24px;
    color: #5b5751;
}
.question_form .image {
    width: 300px;
    height: calc(100% - 20px);
    background: url("/htdocs/img/content/top.png") no-repeat left bottom;
    background-size: contain;
    position: absolute;
    left: 0;
    bottom: 0;
}
.question_form .info {
    width: 100%;
    padding-left: 320px;
}
.question_form .form {
    flex-shrink: 0;
    width: 380px;
    margin-left: 20px;
}
.question_form input {
    width: 100%;
    height: 60px;
    background: #ffffff;
    border: 1px solid #DCBB61;
    border-radius: 8px;
    padding: 20px;
    font-weight: 400;
    font-size: 18px;
    color: #DCBB61;
    margin-bottom: 10px;
}
.question_form .question_form_form_block {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}
.question_form input {
    width: 100%;
    height: 60px;
    background: #ffffff;
    border: 1px solid #DCBB61;
    border-radius: 8px;
    padding: 20px;
    font-weight: 400;
    font-size: 18px;
    color: #DCBB61;
    margin-bottom: 10px;
}
.question_form .question_form_form_block .input {
    width: 100%;
    margin-bottom: 40px;
}
.question_form button {
    margin-bottom: 20px;
}
.question_form .personal a {
    color: #DCBB61;
}
.question_form .personal a:hover {
    color: #212121;
}

@media (max-width: 1024px) {
    .question_form .container {
        flex-direction: column;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .question_form .form {
        width: 100%;
        margin: 0 0 20px;
        padding-left: 300px;
    }
    .question_form .info {
        padding-left: 300px;
    }
    .question_form .image {
        width: 300px;
    }
    .question_form h2 {
        font-weight: bold;
        font-size: 24px;
        margin-bottom: 10px;
    }
    .question_form .desc {
        font-size: 16px;
        margin-bottom: 10px;
    }
}
@media (max-width: 600px) {
    .question_form .container {
        padding-top: 20px;
    }
    .question_form .image {
        display: none;
    }
    .question_form .form,
    .question_form .info
    {
        padding-left: 0;
    }
    .question_form .question_form_form_block {
        flex-direction: column;
    }
    .question_form input {
        padding: 10px;
        height: 36px;
        margin-bottom: 5px;
        font-size: 14px;
    }
    .question_form button {
        margin: 0 auto 20px;
    }
    .question_form .personal {
        font-size: 14px;
    }
}
/*end question_form*/

/*about_page*/
.about_page {
    background: #F5EFE9;
    padding: 60px 0;
}
.about_page h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}
.about_page .about_page_container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.about_page .about_info {
    width: 600px;
    flex-shrink: 0;
    margin-right: 40px;
}
.about_page .about_desc {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}
.about_page .about_quote {
    box-shadow: inset -5px -5px 13px 0 #dcbb61, inset 5px 5px 10px 0 #dcbb61, inset -5px 5px 10px 0 #dcbb61, inset 5px -5px 10px 0 #dcbb61;
    background: #e3d4c1;
    padding: 30px 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    border-radius: 40px;
    margin-bottom: 30px;
}
.about_page .about_advantages {
    width: 100%;
    background: #ffffff;
    padding: 20px;
}
.about_page .advantages_item .image {
    width: 60px;
    margin-right: 10px;
}
.advantages_item .title {
    font-size: 18px;
    margin-bottom: 5px;
}
@media (max-width: 1024px) {
    .about_page {
        padding: 30px 0;
    }
    .about_page h1 {
        font-size: 24px;
    }
    .about_page .about_desc {
        font-size: 20px;
    }
    .about_page .about_page_container {
        flex-direction: column;
    }
    .about_page .about_info {
        width: 100%;
        margin: 0 0 30px;
    }
}
/*end about_page*/

/*about_garanty*/
.about_garanty {
    padding: 40px 0;
    background: #e3d4c1;
}
.about_garanty .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.about_garanty .image {
    width: 100px;
    margin-right: 20px;
    flex-shrink: 0;
}
.about_garanty .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.about_garanty .title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}
.about_garanty .desc {
    font-size: 20px;
    margin-bottom: 5px;
}
.about_garanty .link {
    font-size: 20px;
    text-decoration: underline;
    cursor: pointer;
}
.about_garanty .link:hover {
    text-decoration: none;
}
@media (max-width: 1024px) {
    .about_garanty .title {
        font-size: 24px;
        margin-bottom: 5px;
    }
    .about_garanty .link,
    .about_garanty .desc
    {
        font-size: 16px;
    }
}
/*end about_garanty*/

/*contacts*/
.contacts {
    background: #F5EFE9;
    padding: 60px 0;
}
.contacts h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #DCBB61;
}
.contacts .contacts_container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.contacts .info {
    flex-shrink: 0;
    width: 520px;
    margin-right: 15px;
    border-radius: 40px;
    padding: 30px;
    box-shadow:
            inset -3px -3px 8px 0 rgba(201, 212, 216, 0.9),
            inset 3px 3px 6px 0 rgba(255, 255, 255, 0.9),
            inset -3px 3px 6px 0 rgba(201, 212, 216, 0.2),
            inset 3px -3px 6px 0 rgba(201, 212, 216, 0.2);
    background: #e3d4c1;
}
.contacts .contacts_block {
    padding-left: 35px;
    position: relative;
    margin-bottom: 35px;
}
.contacts .contacts_block svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
}
.contacts .contacts_block .title {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 15px;
}
.contacts .contacts_text {
    font-size: 24px;
}
.contacts a.contacts_text {
    text-decoration: underline;
    display: block;
}
.contacts a.contacts_text:hover {
    text-decoration: none;
}
.contacts .contacts_text_phone,
.contacts .contacts_text_email
{
    position: relative;
}
.contacts .contacts_text_phone:before {
    content: url("/htdocs/img/icons/phone_contacts.png");
    position: absolute;
    top: 0;
    left: -40px;
}
.contacts .contacts_text_email:before {
    content: url("/htdocs/img/icons/mail_contacts.png");
    position: absolute;
    top: 0;
    left: -40px;
}
.contacts .contacts_work {
    font-weight: bold;
    font-size: 35px;
    color: #b3554a;
    margin: 0 0 35px;
}
.contacts .map_container {
    width: 100%;
}
.contacts .map_text {
    font-weight: bold;
    font-size: 36px;
    color: #b68a68;
    margin-top: 20px;
}
.contacts .map {
    height: 420px;
    width: 100%;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 40px;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .contacts {
        padding: 30px 0;
    }
    .contacts h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .contacts .contacts_container {
        flex-direction: column;
    }
    .contacts .info {
        width: 100%;
        margin-right: 0;
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 25px;
    }
    .contacts .contacts_block .title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .contacts .contacts_block svg {
        width: 20px;
        height: 20px;
    }
    .contacts .contacts_text {
        font-size: 16px;
    }
    .contacts .contacts_block {
        margin-bottom: 20px;
    }
    .contacts .contacts_work {
        font-size: 24px;
        margin: 0 0 20px;
    }
    .contacts .map {
        height: 360px;
        border-radius: 20px;
    }
    .contacts .map_text {
        font-size: 24px;
        margin-top: 10px;
    }
}
/*end contacts*/

/*garanty_block*/
.garanty_block {
    padding: 30px 0;
}
.garanty_block .garanty_container {
    padding: 60px 30px;
    box-shadow: 0 4px 46px 0 rgba(0, 0, 0, 0.71);
    background: #242423;
    border-radius: 30px;
}
.garanty_block h2 {
    font-weight: 600;
    font-size: 56px;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}
.garanty_block .garanty_block_desc {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    color: #fff;
    width: 600px;
    margin: 0 auto 20px;
}
.garanty_block .garanty_block_list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.garanty_block .garanty_block_item {
    width: calc(100%/3);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 12px;
    color: #fff;
}
.garanty_block .garanty_block_item .image {
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.garanty_block .garanty_block_item .title {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}
.garanty_block .garanty_block_item .desc {
    font-weight: 300;
    font-size: 16px;
    line-height: 144%;
    text-align: center;
    color: #fff;
}
@media (max-width: 1024px) {
    .garanty_block h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .garanty_block .garanty_block_desc {
        font-size: 16px;
        width: 100%;
        margin: 0 auto 10px;
    }
    .garanty_block .garanty_block_item {
        width: 50%;
    }
    .garanty_block .garanty_block_item .image {
        height: 50px;
        margin-bottom: 10px;
    }
    .garanty_block .garanty_block_item .title {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .garanty_block .garanty_block_item .desc {
        font-size: 14px;
    }
}
@media (max-width: 600px) {
    .garanty_block .garanty_container {
        padding: 30px 15px;
    }
    .garanty_block .garanty_block_item {
        width: 100%;
    }
}
/*end garanty_block*/

/*stages_block*/
.stages_block {
    padding: 30px 0;
}
.stages_block h2 {
    font-weight: 700;
    font-size: 42px;
    text-align: center;
    color: #242423;
    margin-bottom: 20px;
}
.stages_block .stages_block_desc {
    font-weight: 400;
    font-size: 20px;
    margin: 0 auto 40px;
    text-align: center;
    color: #000;
    width: 870px;
}
.stages_block .stages_block_list {

}
.stages_block .stages_block_item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 163%;
    color: #000;
}
.stages_block .stages_block_item:nth-child(odd) {
    background: rgba(222, 194, 103, 0.5);
}
.stages_block .stages_block_item .num {
    width: 36px;
    text-align: center;
    flex-shrink: 0;
}
.stages_block .stages_block_item .title {
    color: rgba(40, 39, 39, 0.85);
    margin-right: 20px;
    width: calc(50% - 18px);
}
.stages_block .stages_block_item .desc {
    width: calc(50% - 18px);
}
@media (max-width: 1024px) {
    .stages_block h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .stages_block .stages_block_desc {
        font-size: 16px;
        width: 100%;
        margin: 0 auto 10px;
    }
}
@media (max-width: 1024px) {
    .stages_block .stages_block_item {
        flex-wrap: wrap;
        padding: 10px;
        font-size: 14px;
    }
    .stages_block .stages_block_item .num {
        text-align: left;
        width: 20px;
    }
    .stages_block .stages_block_item .title {
        margin-right: 0;
        width: calc(100% - 36px);
        margin-bottom: 5px;
    }
    .stages_block .stages_block_item .desc {
        width: 100%;
    }
}
/*end stages_block*/
.sanctions_block {
    padding: 30px 0;
    box-shadow: 0 4px 59px 0 rgba(0, 0, 0, 0.25);
    background: #f5f5f6;
    width: calc(100% - 36px);
    margin: 0 auto;
}
.sanctions_block h2 {
    font-weight: 700;
    font-size: 42px;
    text-align: center;
    color: #242423;
    margin-bottom: 30px;
}
.sanctions_block .sanctions_block_list {
    display: flex;
}
.sanctions_block .sanctions_block_item {
    width: calc(100%/3 - 10px);
    margin-right: 15px;
    border-radius: 10px;
    border: 2px solid rgba(36, 36, 35, 0.2);
    padding: 20px 30px;
}
.sanctions_block .sanctions_block_item:last-child {
    margin-right: 0;
}
.sanctions_block .sanctions_block_item .title {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #242423;
    margin-bottom: 20px;
}
.sanctions_block .sanctions_block_item .desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 163%;
    color: #242423;
    opacity: 0.7;
}
@media (max-width: 1024px) {
    .sanctions_block h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .sanctions_block .sanctions_block_item {
        padding: 10px 20px;
    }
}
@media (max-width: 600px) {
    .sanctions_block .sanctions_block_list {
        flex-wrap: wrap;
    }
    .sanctions_block .sanctions_block_item {
        width: 100%;
        margin: 0 0 10px;
    }
    .sanctions_block .sanctions_block_item:last-child {
        margin: 0;
    }
    .sanctions_block .sanctions_block_item .title {
        margin-bottom: 5px;
    }
    .sanctions_block .sanctions_block_item .desc {
        font-size: 14px;
    }
}
/*end stages_block*/

/*future_block*/
.future_block {
    padding: 30px 0;
}
.future_block h2 {
    font-weight: 700;
    font-size: 42px;
    text-align: center;
    color: #242423;
    margin-bottom: 20px;
}
.future_block .future_block_list {
    display: flex;
}
.future_block .future_block_item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    overflow: hidden;
    width: calc(100%/3 - 20px);
    margin-right: 30px;
}
.future_block .future_block_item:last-child {
    margin: 0;
}
.future_block .future_block_item .image {
    width: 100%;
    height: 230px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px 10px 0 0;
}
.future_block .future_block_item .info {
    width: 100%;
    padding: 16px 24px;
    border: 2px solid #ebeaed;
    border-radius: 0 0 10px 10px;
    min-height: 180px;
}
.future_block .future_block_item .title {
    font-weight: 500;
    font-size: 22px;
    color: #242423;
    margin-bottom: 10px;
}
.future_block .future_block_item .desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 163%;
    color: #d3af37;
}
@media (max-width: 1024px) {
    .future_block h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .future_block .sanctions_block_item {
        padding: 10px 20px;
    }
    .future_block .future_block_item {
        width: calc(100% / 3 - 10px);
        margin-right: 15px;
    }
}
@media (max-width: 600px) {
    .future_block .future_block_list {
        flex-wrap: wrap;
    }
    .future_block .future_block_item {
        width: 100%;
        margin: 0 0 15px;
    }
    .future_block .future_block_item .title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .future_block .future_block_item .desc {
        font-size: 14px;
    }
    .future_block .future_block_item .info {
        min-height: 0;
    }
}
/*end future_block*/

/*consult_form*/
.consult_form {
    padding: 10px 0 30px;
}
.consult_form .consult_form_container {
    padding: 0 120px 80px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: url("/htdocs/img/content/consult_bg.svg") no-repeat left bottom;
    background-size: contain;
}
.consult_form .info {
    width: 100%;
    color: #fff;
    font-weight: 700;
    padding: 0 20px 100px 0;
    max-width: 450px;
    margin-right: auto;
}
.consult_form .title {
    font-size: 40px;
    margin-bottom: 20px;
}
.consult_form .desc {
    font-size: 20px;
}
.consult_form .form {
    width: 564px;
    flex-shrink: 0;
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 81px 106px 0 rgba(51, 51, 51, 0.1);
    background: #fff;
}
@media (max-width: 1024px) {
    .consult_form .info {
        color: #000;
        padding: 30px 20px 0 0;
        width: 100%;
        max-width: none;
        text-align: center;
    }
    .consult_form .title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .consult_form .desc {
        font-size: 16px;
    }
    .consult_form .consult_form_container {
        padding: 0 0 40px;
        flex-direction: column;
    }
    .consult_form .form {
        margin: 0 auto;
    }
}
@media (max-width: 600px) {
    .consult_form .form {
        width: 100%;
        padding: 16px;
    }
}

/*end consult_form*/
