/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: 0.35em 0.75em 0.625em
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}


p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    outline: none;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    overflow-x: hidden;
    font-family: "Rubik", sans-serif;
    color: #262728;
    background: #F6F4F2;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    position: fixed;
    background: #FFFFFF;
    width: 100%;
    top: 0;
    right: 0;
    box-shadow: 0px 4px 16px 0px #0000000D;
    z-index: 10;
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #E4E5E6;
    padding: 20px 0;
    align-items: center;
}

.header_logo {
    display: flex;
    align-items: center;
}

.header_logo-img {
    display: flex;
}

.header_logo-text {
    font-weight: 300;
    font-size: 16px;
    width: 175px;
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid #E4E5E6;
    line-height: 140%;
}

.header_time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
}

.header_number {
    font-weight: 500;
    font-size: 20px;
    color: #D96F32;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_order {
    background: #F8F9FA;
    border-radius: 15px;
    width: 179px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #262728;
    transition: all 0.3s;
}

.header_order:hover {
    background: #D96F32;
    color: #fff;
}

.header_messages {
    display: flex;
    gap: 20px;
}

.header_message {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #D96F32;
    border: 1px solid #D96F32;
    border-radius: 15px;
    transition: all 0.3s;
}

.header_message:hover {
    background: #d96f3200;

}

.header_message path {
    transition: all 0.3s;

}

.header_message:hover path {
    fill: #D96F32;
}

.header_btn {
    background: #D96F32;
    border-radius: 15px;
    cursor: pointer;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #fff;
    position: relative;
}

.header_btn::before {
    position: relative;
    content: "";
    background-image: url(../img/menu.svg);
    display: block;
    width: 24px;
    height: 24px;
    transition: all 0.3s;
}

.header_btn.active::before {
    background-image: url(../img/menu2.svg);
}

.header_dropdown {
    left: 0;
    top: calc(100% + 5px);
    background: #FFFFFF;
    box-shadow: 0px 5px 25px 0px #0000001A;
    padding: 16px 0;
    position: absolute;
    z-index: 2;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.header_dropdown.active {
    opacity: 1;
    visibility: visible;
}

.header_dropdown li:hover ul {
    opacity: 1;
    visibility: visible;
}

.header_dropdown a {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #262728;
    margin-bottom: 12px;
    padding: 0 20px;
    display: block;
}

.header_dropdown a:hover {
    color: #D96F32;
}

.header_dropdown li:last-child>a {
    margin-bottom: 0;
}

.header_dropdown ul {
    position: absolute;
    left: 100%;
    background: #FFFFFF;
    box-shadow: 0px 5px 25px 0px #0000001A;
    top: 0;
    width: max-content;
    padding: 16px 20px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.header_dropdown ul a {
    font-weight: 300;
    display: block;
    margin-bottom: 12px;
}

.menu {
    display: flex;
    padding: 16px 0;
    justify-content: space-between;
    align-items: center;
}

.menu a {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    transition: all 0.3s;
    color: #262728;
}

.menu a:hover {
    color: #D96F32;
}

section {
    margin: 108px 0;
}

.main {
    padding-top: 230px;
    position: relative;
    margin-top: 0;
}

.main_wrapper {
    width: 760px;
    margin: 0 auto;
    position: relative;
}

.main_wrapper h1,
.inner_title {
    font-weight: 500;
    font-size: 50px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 36px;
}

.main_wrapper h1 span {
    color: #D96F32;
}

.main_items {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 46px;
}

.main_item {
    font-weight: 300;
    font-size: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.main_inner {
    background: #262728;
    border-radius: 20px;
    padding: 24px 30px 30px;
}

.main_inner-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    text-align: center;
    color: #fff;
    margin-bottom: 2px;
}

.main_inner-subtitle {
    font-weight: 300;
    color: #fff;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}

.main_inner-subtitle::before {
    position: absolute;
    content: "";
    background-image: url(../img/main_inner-subtitle.svg);
    background-size: cover;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 70px;
    height: 2px;
}

.main_form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.main_form-inp {
    width: calc(33.333% - 13.333px);
    background: #FFFFFF0D;
    border: 2px solid #FFFFFF1A;
    border-radius: 100px;
    height: 50px;
    padding-left: 25px;
}

.main_form-file {
    width: calc(33.333% - 13.333px);
}

.main_form-file span {
    border-radius: 100px;
    background: #FFFFFF0D;
    height: 50px;
    border: 2px dashed #FFFFFF1A;
    cursor: pointer;
    display: flex;
    position: relative;
    padding: 0 25px;
    justify-content: space-between;
    align-items: center;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
}

.main_form-file span::before {
    position: absolute;
    content: "";
    background-image: url(../img/file.svg);
    background-size: cover;
    width: 17px;
    height: 20px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.main_form-file input {
    display: none;
}

.main_img {
    border-radius: 20px;
    width: 500px;
    overflow: hidden;
    display: flex;
    position: absolute;
}

.main_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_img:nth-child(1) {
    left: -550px;
    top: 0;
    height: 450px;
}

.main_img:nth-child(2) {
    left: -550px;
    top: 466px;
    height: 300px;
}

.main_img:nth-child(3) {
    right: -550px;
    height: 300px;
    top: 0;
}

.main_img:nth-child(4) {
    right: -550px;
    height: 450px;
    top: 320px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #D96F32;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    border: none;
    border: 1px solid #D96F32;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background: #d96f3200;
    color: #D96F32;
}

.title {
    font-weight: 500;
    font-size: 50px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 33px;
    padding-bottom: 20px;
    position: relative;
}

.title::before {
    position: absolute;
    content: "";
    background-image: url(../img/title.svg);
    background-size: cover;
    width: 146px;
    height: 3px;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
}

.title span {
    color: #D96F32;
}

.main_form-btn {
    width: 220px;
    height: 50px;
}

.main_form-ok {
    display: block;
    width: 324px;
    font-weight: 300;
    font-size: 14px;
    color: #ffffff87;
    padding-left: 30px;
    cursor: pointer;
    position: relative;
}

.main_form-ok input {
    display: none;
}

.main_form-ok input:checked+span {
    background-image: url(../img/check.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.main_form-ok a {
    color: #ffffff87;
    text-decoration: underline;
}

.main_form-ok span {
    border: 2px solid #FFFFFF1A;
    background: #FFFFFF0D;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.advantages_text {
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 16px;
    text-align: center;
}

.advantages_items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 33px;
}

.advantages_item {
    width: calc(50% - 15px);
    border-radius: 20px;
    height: 400px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #fff;
}

.advantages_item-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.advantages_item-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
    top: 0;
    right: 0;
}

.advantages_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantages_item-title {
    font-weight: 500;
    font-size: 30px;
    padding-right: 60px;
    position: relative;
    transition: all 0.3s;
    line-height: 120%;
    margin-bottom: 18px;
}

.advantages_item.active .advantages_item-title {
    color: #D96F32;
}

.advantages_item.active .advantages_item-info {
    transform: translateY(0);
    background: #000000bc;

}

.advantages_item-info {
    height: 100%;
    padding: 22px 30px;
    transform: translateY(calc(100% - 116px));
    transition: all 0.3s;
}

.advantages_item-text {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
}

.advantages_item-more {
    position: absolute;
    background: #D96F32;
    width: 50px;
    cursor: pointer;
    height: 50px;
    border-radius: 50%;
    right: 30px;
    bottom: 30px;
    background-image: url(../img/more.svg);
    background-repeat: no-repeat;
    transition: all 0.3s;
    background-position: center;
}

.advantages_item-more.active {
    background-color: #FFFFFF;
    background-image: url(../img/more2.svg);
}

.services_items {
    display: grid;
    gap: 30px;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

.services .title span {
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
    display: block;
}

.services_item {
    min-height: 300px;
    padding: 32px;
    display: flex;
    overflow: hidden;
    overflow: hidden;
    border-radius: 20px;
    align-items: flex-end;
    position: relative;
}

.services_item-img {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
}

.services_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services_item-title {
    background: #D96F32;
    border: 2px solid #FFFFFF;
    border-radius: 100px;
    height: 50px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}

.services_item-title:hover {
    background: #D96F321A;
    border: 2px solid #D96F3266;
    color: #D96F32;
}

.services_item:nth-child(1) {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-column-end: 2;
}

.services_item:nth-child(2) {
    grid-row-start: 1;
    grid-column-start: 2;
    grid-row-end: 2;
    grid-column-end: 3;
}

.services_item:nth-child(3) {
    grid-row-start: 2;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-column-end: 3;
}

.services_item:nth-child(4) {
    grid-row-start: 1;
    grid-column-start: 3;
    grid-row-end: 3;
    grid-column-end: 4;
}



.inspiration .title span {
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
    display: block;
}

.inspiration_text,
.inner_description {
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 32px;
}

.inspiration_tegs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.inspiration_teg {
    background: #0000000D;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.inspiration_teg:hover,
.inspiration_teg.active {
    background: #262728;
    color: #FFFFFF;
}

.inspiration_item-img {
    position: relative;
    height: 308px !important;
    border-radius: 20px;
    overflow: hidden;
}

.twentytwenty-after-label,
.twentytwenty-before-label {
    display: none;
}

.twentytwenty-overlay:hover {
    background: none;
}

.inspiration_content {
    display: none;
}

.inspiration_content.active {
    display: block;
}

.inspiration_item-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.inspiration_items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.inspiration_item {
    width: calc(33.333% - 20px);
}

.twentytwenty-container {
    touch-action: pan-y;
}

.twentytwenty-handle {
    touch-action: none;
}

.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after {
    width: 2px;
}

.twentytwenty-handle {
    box-shadow: 0px 4px 16px 0px #0000001A;
    background: #FFFFFF;
    width: 42px;
    height: 42px;
    background-image: url(../img/handle.svg);
    background-size: cover;
    background-position: center;
}

.twentytwenty-handle span {
    display: none;
}

.inspiration_btn {
    border: 1px solid #C6C7C8;
    border-radius: 100px;
    margin-top: 30px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #262728;
}

.consult_wrapper {
    display: flex;
    background: #262728;
    border-radius: 20px;
    overflow: hidden;
}

.consult_img {
    width: 440px;
    display: flex;
}

.consult_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.consult_info {
    width: calc(100% - 440px);
    padding: 56px 50px;
}

.consult_text {
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.consult_subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 24px;
    color: #D96F32;
}

.consult_btn {
    width: 363px;
    height: 50px;
}

.chose_slide {
    margin: 0 15px;
}

.chose_slide-img {
    border-radius: 20px;
    height: 300px;
    display: flex;
    overflow: hidden;
    margin-bottom: 15px;
}

.chose_slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chose_slide-title {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}

.chose_slider {
    margin-bottom: 45px;
}

.chose_slider .slick-arrow {
    background: #FFFFFF;
    box-shadow: 0px 4px 16px 0px #0000000D;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 0;
    border: none;
    cursor: pointer;
    z-index: 1;
    top: 125px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}

.chose_slider .slick-arrow:hover {
    background-color: #F8F9FA;

}

.chose_slider .slick-next {
    right: -10px;
    background-image: url(../img/arrow_right.svg);
}

.chose_slider .slick-prev {
    left: -10px;
    background-image: url(../img/arrow_left.svg);
}

.info_block-wrapper {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;
}

.info_block-wrapper:last-child {
    margin-bottom: 0;
}

.info_block-img {
    width: 520px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    position: relative;
}

.info_block-img::before {
    position: absolute;
    content: "";
    width: 22px;
    height: 100%;
    right: 0;
    top: 0;
    background-image: url(../img/info_block-img.svg);
}

.info_block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info_block-right {
    width: calc(100% - 570px);
}

.info_block-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    margin-bottom: 18px;
}

.info_block-text {
    font-weight: 300;
    color: #262728;
    line-height: 150%;
}

.info_block-text p:not(:last-child) {
    margin-bottom: 20px;
}

.info_block-wrapper:nth-child(2n) {
    flex-direction: row-reverse;
}

.info_block-wrapper:nth-child(2n) .info_block-img::before {
    background-image: url(../img/info_block-img2.svg);
    left: 0;
    right: auto;
}

.steps .title span.title_text {
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
    display: block;
    color: #262728;
}

.steps_items {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 30px;
    margin-top: 70px;
}

.steps_item {
    position: relative;
    width: calc(25% - 22.5px);
    height: 316px;
}

.steps_item:hover {
    z-index: 1;
}

.steps_item:hover .steps_item-text {
    display: block;
}

.steps_item:hover .steps_item-number {
    display: none;
}

.steps_item-info {
    background: #FFFFFF;
    box-shadow: 0px 4px 16px 0px #0000000D;
    padding: 153px 30px 24px;
    border-radius: 20px;
    width: 100%;
    min-height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #fff;
}

.steps_item-info::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 100%;
    border-bottom: 2px solid #D96F32;
    bottom: 0;
    right: 0;
    border-radius: 0 0 20px 20px;
}

.steps_item:hover .steps_item-info {
    border: 1px solid #D96F32;
}

.steps_item:hover .steps_item-info::before {
    display: none;
}

.steps_item-img {
    position: absolute;
    width: 160px;
    height: 160px;
    top: -30px;
    right: 50%;
    border-radius: 50%;
    display: flex;
    overflow: hidden;
    transform: translateX(50%);
    border: 3px solid #D96F32;
}

.steps_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.steps_item-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: solid;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.steps_item:hover .steps_item-title {
    color: #D96F32;
}

.steps_item-text {
    font-weight: 300;
    line-height: 150%;
    text-align: center;
    display: none;
}

.steps_item-number {
    padding-top: 24px;
    border-top: 1px solid #E4E5E6;
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    margin-top: auto;
    text-align: center;
    color: #D96F32;
}

.rewievs .title span {
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
    display: block;
    color: #262728;
}

.rewievs_top {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 60px;
}

.rewievs_icon {
    display: flex;
}

.rewievs_rating {
    font-size: 24px;
    line-height: 120%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rewievs_rating img {
    transform: translateY(-2px);
}

.rewievs_rating span {
    color: #8A8B8C;
}

.rewievs_more {
    border: 1px solid #C6C7C8;
    border-radius: 100px;
    margin-top: 30px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #262728;
    transition: all 0.3s;
}

.rewievs_more:hover {
    border: 1px solid #D96F32;
    color: #D96F32;
}

.rewievs_slide {
    margin: 0 15px;
    background: #FFFFFF;
    box-shadow: 0px 4px 16px 0px #0000000D;
    border-radius: 20px;
    padding: 30px;
}

.rewievs_slide-top {
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.rewievs_slide-text {
    font-weight: 300;
    line-height: 150%;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 9px;
}

.rewievs_slide-link {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    color: #D96F32;
}

.rewievs_slide-link:hover {
    opacity: 0.5;
}

.rewievs_slide-link img {
    transform: translateY(1px);
}

.rewievs_slide-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
}

.rewievs_slide-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rewievs_slide-title {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 7px;
}

.rewievs_slide-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rewievs_slide-date {
    font-weight: 300;
    font-size: 16px;
    color: #8A8B8C;
}

.rewievs_slide-stars {
    display: flex;
    margin-bottom: 3px;
}

.rewievs_slide-imgs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rewievs_slide-img {
    width: 107px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    overflow: hidden;
}

.rewievs_slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rewievs_slider .slick-arrow {
    background: #FFFFFF;
    box-shadow: 0px 4px 16px 0px #0000000D;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 0;
    border: none;
    cursor: pointer;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}

.rewievs_slider .slick-arrow:hover {
    background-color: #F8F9FA;

}

.rewievs_slider .slick-next {
    right: -10px;
    background-image: url(../img/arrow_right.svg);
}

.rewievs_slider .slick-prev {
    left: -10px;
    background-image: url(../img/arrow_left.svg);
}

.cause_items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cause_item {
    width: calc(33.333% - 20px);
    box-shadow: 0px 4px 16px 0px #0000000D;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.cause_item-icon {
    background: #D96F32;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cause_item-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 18px;
}

.cause_item-text {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 24px;
}

.cause_item-number {
    background: #F8F9FA;
    border-radius: 100px;
    width: 80px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto auto 0;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}

.price_wrapper {
    display: flex;
    background: #262728;
    border-radius: 20px;
    overflow: hidden;
}

.price_img {
    width: 440px;
    display: flex;
}

.price_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.price_info {
    padding: 52px 50px;
    width: calc(100% - 440px);
}

.price_text {
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 22px;
    color: #fff;
}

.price_links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.price_link path {
    transition: all 0.3s;
}

.price_link:nth-child(1) {
    margin-right: 50%;
    background: #D96F32;
    border: 1px solid #D96F32;
}

.price_link svg {
    min-width: 24px;
}

.price_link:nth-child(1):hover path {
    fill: #D96F32;
}

.price_link:nth-child(1):hover {
    background: #d96f3200;
    color: #D96F32;
}

.price_link:nth-child(2) {
    border: 1px solid #2CB742;
    background: #2CB742;
}

.price_link:nth-child(2):hover path {
    fill: #2CB742;
}

.price_link:nth-child(2):hover {
    background: #2cb74100;
    color: #2CB742;
}

.price_link:nth-child(3) {
    border: 1px solid #27A7E7;
    background: #27A7E7;
}

.price_link:nth-child(3):hover path {
    fill: #27A7E7;
}

.price_link:nth-child(3):hover {
    background: #27a7e700;
    color: #27A7E7;
}

.price_link {
    border-radius: 100px;
    padding: 13px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    width: fit-content;
    transition: all 0.3s;
}

.faq_item {
    background: #FFFFFF;
    box-shadow: 0px 4px 16px 0px #0000000D;
    border-radius: 20px;
    page-break-inside: avoid;
    break-inside: avoid;
    width: calc(50% - 10px);
}

.faq_item-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    padding: 24px 80px 24px 30px;
    min-height: 104px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq_item-title.active span {
    transform: translateY(-50%) rotate(45deg);
}

.faq_item-title.active span {
    background: #D96F32;
}

.faq_item-title.active span path {
    stroke: #fff;
}

.faq_item-title span {
    border-radius: 50%;
    position: absolute;
    background: #FFFFFF;
    width: 44px;
    transition: all 0.3s;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.faq_item-text {
    font-weight: 300;
    line-height: 150%;
    display: none;
    padding: 0 23px 30px;
}

.faq_items {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer {
    background: #262728;
    padding: 50px 0;
}

.footer_menu {
    display: flex;
    justify-content: space-between;
    padding-bottom: 26px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_menu a {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s;
}

.footer_menu a:hover {
    color: #D96F32;
}

.footer_wrapper {
    display: flex;
    justify-content: space-between;
}

.footer_logo {
    display: flex;
    align-items: center;
}

.footer_logo-img {
    display: flex;
}

.footer_logo-text {
    font-weight: 300;
    font-size: 16px;
    width: 175px;
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 140%;
    color: #fff;
}



.footer_time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    line-height: 100%;
}

.footer_number {
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.footer_order {
    border-radius: 15px;
    width: 179px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
    background: #FFFFFF0D;
}

.footer_order:hover {
    background: #D96F32;
    color: #fff;
}

.footer_messages {
    display: flex;
    gap: 20px;
}

.footer_message {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #FFFFFF0D;
    border: 1px solid #FFFFFF0D;
    border-radius: 15px;
    transition: all 0.3s;
}

.footer_message:hover {
    background: #d96f3200;

}

.footer_message path {
    transition: all 0.3s;

}

.footer_message:hover path {
    fill: #D96F32;
}


.footer_links {
    display: flex;
    gap: 20px;
}


.popup_body {
    background: #262728;
    border-radius: 20px;
    padding: 50px 30px;
    width: 600px;
}

.popup_body-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    padding-bottom: 14px;
    position: relative;
}

.popup_body-title::before {
    position: absolute;
    content: "";
    background-image: url(../img/popup_body-title.svg);
    background-size: cover;
    width: 70px;
    height: 2px;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
}

.popup_form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.popup_body .fancybox-close-small {
    color: #fff;
    opacity: 1;
}

.popup_form .main_form-file,
.popup_form .main_form-ok,
.popup_form .main_form-btn,
.popup_form .main_form-inp {
    width: calc(50% - 10px);
}

#popup_thanks {
    padding: 65px 30px;
}

#popup_thanks .popup_body-title {
    padding-bottom: 0;
    margin-bottom: 12px;
}

#popup_thanks .popup_body-title::before {
    display: none;
}

.popup_body-subtitle {
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: #D96F32;
}

.popup_checks {
    display: flex;
    justify-content: space-between;
}

.popup_checks-row {
    width: calc(50% - 5px);
}

.popup_checks-inner {
    background: #2D2E2F;
    border-radius: 10px;
    padding: 15px 20px 20px;
    margin-bottom: 10px;
}

.popup_checks-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #fff;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup_check {
    display: flex;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.popup_check span {
    background: #FFFFFF0D;
    border: 2px solid #FFFFFF1A;
    width: 20px;
    height: 20px;
    position: relative;
    border-radius: 5px;
}

.popup_check:last-child {
    margin-bottom: 0;
}

.popup_check input {
    display: none;
}

.popup_check input:checked+span {
    background-color: #D96F32;
    background-image: url(../img/check.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.popup_checks-row:nth-child(1) .popup_checks-inner:nth-child(2) {
    padding-bottom: 60px;
}

.menu_burger {
    display: none;
}

.header_bot .header_btn {
    display: none;
}

.about, .inner {
    margin-top: 170px;
}

.crumbs {
    display: flex;
    margin-bottom: 44px;
    gap: 10px;
    flex-wrap: wrap;
}

.crumb {
    font-weight: 300;
    font-size: 14px;
    color: #8A8B8C;
    display: flex;
    align-items: center;
}

.crumb::after {
    position: relative;
    content: "—";
    margin-left: 10px;
}

.crumb:last-child {
    color: #262728;
}

.crumb:last-child::after {
    display: none;
}

.restore_items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.restore_item {
    width: calc(33.333% - 20px);
    padding: 24px 30px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 20px;
    overflow: hidden;
    height: 510px;
    color: #fff;
}

.restore_item-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
}

.restore_item-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.restore_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restore_item-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 18px;
}

.restore_item-text {
    font-weight: 300;
    line-height: 140%;
}

.mission_wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 4px 16px 0px #0000000D;
    position: relative;
    z-index: 1;
    padding: 45px 50px 45px 450px;
}

.mission_wrapper::before {
    position: absolute;
    content: "";
    top: 50px;
    left: 50px;
    background-image: url(../img/mission_wrapper.svg);
    background-size: cover;
    width: 109px;
    height: 90px;
}

.mission_text {
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 18px;
}

.mission_title {
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 4px;
}

.mission_subtitle {
    font-weight: 300;
    font-size: 20px;
    color: #D96F32;
}

.mission_img {
    left: 153px;
    position: absolute;
    display: flex;
    bottom: 0;
}

.team_items {
    display: flex;
    background: #262728;
    padding: 30px;
    border-radius: 20px;
    gap: 30px;
}

.team_item {
    width: calc(33.333% - 20px);
    background: #2D2E2F;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    color: #fff;
}

.team_item::before {
    position: absolute;
    content: "";
    background-image: url(../img/team_item.svg);
    background-size: cover;
    bottom: 0;
    left: 0;
    height: 12px;
    width: 100%;
}

.team_item-title {
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    margin-bottom: 4px;
    color: #F8F9FA;
}

.team_item-subtitle {
    font-weight: 300;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    color: #D96F32;
}

.team_item-text {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
}

.team_item-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 23px;
    border-radius: 50%;
    display: flex;
    overflow: hidden;
}

.team_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why .cause_item {
    width: calc(25% - 22.5px);
}

.why_text {
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 32px;
}

.partners_items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.partners_item {
    width: calc(25% - 22.5px);
    background: #FFFFFF;
    box-shadow: 0px 4px 16px 0px #0000000D;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    padding: 20px;
}

.partners_item img {
    max-width: 100%;
    max-height: 100%;
}

.price_about .price_text {
    font-size: 30px;
}

.main_inner-links {
    display: flex;
    margin-top: 22px;
    gap: 20px;
}

.main_inner-links .price_link {
    margin-right: 0;
    padding: 12px 26px;
}

.main_inner:has(.main_inner-links) {
    padding-top: 50px;
    padding-bottom: 50px;
}

.service_main .main_img:nth-child(2) {
    left: auto;
    right: -550px;
    top: 0;
    height: 440px;
}

.service_main {
    padding-top: 170px;
    margin-top: 0;
}

.profitable .info_block-img {
    width: 470px;
    height: 353px;
}

.profitable .info_block-img::before {
    display: none;
}

.profitable .info_block-right {
    width: 770px;
}


.payment_table th {
    background: #D96F32;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: #fff;
    padding: 14px 20px;
}

.payment_table th:nth-child(1) {
    width: 850px;
    border-right: 1px solid #FFFFFF;
}

.payment_table th:nth-child(2) {
    width: 439px;
}

table {
    border-spacing: 0px;
    border-collapse: collapse;
}

.payment_table td:nth-child(1) {
    width: 850px;
    border-right: 1px solid #E4E5E6;
}

.payment_table td:nth-child(2) {
    width: 439px;
    font-weight: 500;
}

.payment_table td {
    background: #FFFFFF;
    box-shadow: 0px 1px 0px 0px #E4E5E6 inset;
    padding: 14px 20px;
    font-size: 20px;
    text-align: center;
}

tbody tr:nth-child(2n) td {
    background: #F8F9FA;
}

.payment_btn {
    width: 520px;
    height: 50px;
    margin: 30px auto 0;
}

.works_slider .inspiration_item {
    margin: 0 15px;
}

.works_slider .slick-arrow {
    background: #FFFFFF;
    box-shadow: 0px 4px 16px 0px #0000000D;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 0;
    border: none;
    cursor: pointer;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}

.works_slider .slick-arrow:hover {
    background-color: #F8F9FA;

}

.works_slider .slick-next {
    right: -10px;
    background-image: url(../img/arrow_right.svg);
}

.works_slider .slick-prev {
    left: -10px;
    background-image: url(../img/arrow_left.svg);
}

.works_slider .slick-arrow.slick-disabled {
    display: none !important;
}

.works_more {
    border: 1px solid #C6C7C8;
    border-radius: 100px;
    margin-top: 30px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #262728;
    transition: all 0.3s;
}

.works_more:hover {
    border: 1px solid #D96F32;
    color: #D96F32;
}

.how .steps_item {
    width: calc(20% - 24px);
    height: auto;
}

.how .steps_item-info {
    padding-left: 20px;
    padding-right: 20px;
}

.how .steps_item-text {
    display: block;
    margin-bottom: 23px;

}

.how .steps_item-title {
    text-decoration: none;
}

.how .steps_item:hover .steps_item-number {
    display: block;
}

.inspiration_item-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    margin-top: 14px;
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contacts p {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    transition: all 0.3s;
    color: #262728;
}

.contacts a {
    font-weight: 500;
    font-size: 20px;
    color: #D96F32;
}

.portfolio {
    display: flex;
    gap: 37px;
    flex-wrap: wrap;
}

.portfolio .chose_slide {
    margin: 0;
    max-width: 293px;
}

.portfolio .chose_slide .chose_slide-img{
    aspect-ratio: 1/1;
    
}

.inner_description a {
    color: #D96F32;
}

@media (max-width: 1320px) {
    .container {
        max-width: 950px;
    }

    .header_logo-text,
    .header_time {
        display: none;
    }

    .main_wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 420px;
    }

    .main_wrapper h1,
    .inner_title {
        font-size: 32px;
    }

    .main_items {
        flex-wrap: wrap;
        gap: 40px;
    }

    .main_item {
        width: calc(50% - 20px);
    }

    .main_img:nth-child(2) {
        left: -300px;
        top: 260px;
        height: 168px;
    }

    .main_img:nth-child(1) {
        left: -300px;
        height: 250px;
    }

    .main_img:nth-child(3) {
        right: -300px;
        height: 168px;
    }

    .main_img:nth-child(4) {
        right: -300px;
        top: 180px;
        height: 250px;
    }

    .header_wrapper {
        padding: 10px 0;
    }

    .main_img {
        width: 280px;
    }

    .main_item {
        font-size: 14px;
    }

    .main {
        padding-top: 180px;
    }

    .main_inner {
        width: 930px;
    }

    .main_item img {
        width: 60px;
        height: auto;
    }

    .advantages_item-title {
        font-size: 19px;
    }

    .advantages_item-info {
        transform: translateY(calc(100% - 90px));
    }

    .advantages_item-text {
        font-size: 14px;
    }

    .services_item {
        padding: 20px;
        min-height: 220px;
    }

    .inspiration_text,
    .inner_description {
        font-size: 18px;
    }

    .inspiration_item-img {
        height: 240px !important;
    }

    .consult_img {
        width: 320px;
    }

    .consult_info {
        width: calc(100% - 320px);
        padding: 30px;
    }

    .consult_text {
        font-size: 16px;
    }

    .chose_slide-img {
        height: 277px;
    }

    .info_block-img {
        width: 400px;
        height: 230px;
    }

    .info_block-right {
        width: calc(100% - 420px);
    }

    .info_block-title {
        font-size: 26px;
    }

    .info_block-wrapper {
        margin-bottom: 40px;
    }

    .info_block-img::before {
        display: none;
    }

    .steps_item {
        width: calc(33.333% - 20px);
    }

    .cause_item-icon {
        width: 80px;
        height: 80px;
    }

    .cause_item-icon img {
        width: 42px;
        height: auto;
    }

    .price_img {
        width: 320px;
    }

    .price_info {
        padding: 30px;
        width: calc(100% - 320px);
    }

    .price_text {
        font-size: 18px;
    }

    .price_link {
        padding: 13px 16px;
        font-size: 14px;
    }

    .footer_wrapper {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer_body {
        padding-top: 90px;
        position: relative;
    }

    .footer_logo {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
    }

    .restore_item {
        width: calc(50% - 15px);
    }

    .mission_text {
        font-size: 18px;
    }

    .mission_title {
        font-size: 26px;
    }

    .mission_wrapper {
        padding-left: 380px;
    }

    .mission_img {
        left: 100px;
    }

    .team_item-img {
        width: 160px;
        height: 160px;
    }

    .team_item-title {
        font-size: 26px;
    }

    .why .cause_item {
        width: calc(33.333% - 20px);
    }

    .price_about .price_text {
        font-size: 22px;
    }

    .main_inner:has(.main_inner-links) {
        width: 100%;
    }

    .main_inner-links {
        flex-direction: column;
    }

    .main_inner-links .price_link {
        width: 100%;
    }

    .service_main .main_img:nth-child(2) {
        right: -300px;
        height: 250px;
    }

    .profitable .info_block-right {
        width: calc(100% - 420px);
    }

    .profitable .info_block-img {
        width: 400px;
        height: 230px;
    }

    .how .steps_item {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 991.98px) {
    .container {
        max-width: 730px;
    }

    .main_inner {
        width: 700px;
    }

    .header_bot {
        position: fixed;
        opacity: 0;
        visibility: hidden;
        background-color: #fff;
        width: 100%;
        height: 100%;
        top: 71px;
        transition: all 0.6s;
        padding-top: 50px;
        right: 0;
    }

    .header_bot.active {
        opacity: 1;
        visibility: visible;
    }

    .menu {
        width: 700px;
        flex-direction: column;
        margin: 0 auto;
        padding: 0;
        align-items: flex-start;
        gap: 24px;
    }

    .menu a {
        font-size: 18px;
    }

    .header_btn {
        display: none;
    }

    .menu_burger {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
    }

    .menu_burger::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #D96F32;
        top: 0;
        right: 0;
        transition: all 0.3s;
    }

    .menu_burger::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #D96F32;
        bottom: 0;
        right: 0;
        transition: all 0.3s;
    }

    .menu_burger span {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #D96F32;
        top: 9px;
        right: 0;
        transition: all 0.3s;
    }

    .menu_burger.active::before {
        transform: rotate(45deg);
        top: 9px;
    }

    .menu_burger.active::after {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .menu_burger.active span {
        transform: scale(0);
    }

    .main {
        padding-top: 110px;
    }

    .title {
        font-size: 36px;
    }

    .advantages_text {
        font-size: 16px;
    }

    .advantages_item-info {
        transform: none;
        display: flex;
        align-items: flex-end;
        padding: 20px;
    }

    .advantages_item-more {
        display: none;
    }

    .advantages_item {
        height: 280px;
    }

    .advantages_item-text {
        display: none;
    }

    .services_items {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .services_item {
        width: calc(50% - 10px);
        height: 340px;
    }

    .inspiration_text,
    .inner_description {
        font-size: 16px;
    }

    .inspiration_teg {
        font-size: 14px;
        padding: 10px 12px;
    }

    .inspiration_item:nth-child(n+7) {
        display: none;
    }

    .inspiration_items {
        gap: 20px;
    }

    .inspiration_item {
        width: calc(50% - 10px);
    }

    .consult_img {
        width: 240px;
    }

    .consult_info {
        width: calc(100% - 240px);
    }

    .consult_img img {
        object-position: center;
    }

    .info_block-wrapper {
        flex-direction: column !important;
        align-items: flex-start;
        gap: 20px;
    }

    .info_block-right {
        width: 100%;
    }

    .steps_items {
        gap: 60px 20px;
    }

    .steps_item {
        width: calc(50% - 10px);
    }

    .cause_items {
        gap: 20px;
    }

    .cause_item {
        width: calc(50% - 10px);
    }

    .price_img img {
        object-position: center;
    }

    .price_img {
        width: 240px;
    }

    .price_info {
        width: calc(100% - 240px);
    }

    .price_link:nth-child(1) {
        margin-right: 0;
    }

    .price_text {
        font-size: 16px;
    }

    .price_links {
        gap: 10px;
    }

    .faq_items {
        gap: 10px;
    }

    .faq_item {
        width: 100%;
    }

    .faq_item-title {
        min-height: 1px;
    }

    .header_bot .header_btn {
        display: flex;
        width: 700px;
        margin: 0 auto 32px;
    }

    .header_dropdown {
        position: fixed;
        top: 71px;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 60px;
        overflow: auto;
        padding-bottom: 120px;
        transition: all 0.6s;
    }

    .header_dropdown li {
        width: 700px;
        position: relative;
        cursor: default;
        margin: 0 auto 20px;
    }

    .header_dropdown li a {
        margin-bottom: 0;
    }

    .header_dropdown>li::before {
        position: absolute;
        content: "";
        background-image: url(../img/menu_arrow.svg);
        background-size: cover;
        width: 13px;
        height: 8px;
        right: 0;
        transition: all 0.3s;
        top: 6px;
    }

    .header_dropdown>li.active::before {
        transform: rotate(180deg);
    }

    .header_dropdown ul {
        position: relative;
        opacity: 1;
        visibility: visible;
        inset: auto;
        width: 100%;
        display: none;
        transition: none;
        padding-bottom: 0;
        box-shadow: none;
    }

    .header_dropdown a {
        padding: 0;
    }

    .about, .inner {
        margin-top: 110px;
    }

    .restore_item {
        height: 420px;
    }

    .mission_wrapper {
        padding: 30px 30px 240px;
    }

    .mission_img {
        left: auto;
        right: 60px;
        width: 220px;
    }

    .mission_img img {
        width: 100%;
        height: auto;
    }

    .mission_wrapper::before {
        top: auto;
        bottom: 200px;
        left: auto;
        right: 30px;
    }

    .team_items {
        flex-wrap: wrap;
    }

    .team_item::before {
        height: 9px;
    }

    .why_text {
        font-size: 18px;
    }

    .team_item {
        width: calc(50% - 15px);
    }

    .why .cause_item {
        width: calc(50% - 10px);
    }

    .partners_item {
        width: calc(33.333% - 20px);
    }

    .profitable .info_block-right {
        width: 100%;
    }

    .how .steps_item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 767.98px) {
    .container {
        max-width: 100%;
    }

    .header_order {
        display: none;
    }

    .main_wrapper {
        width: 100%;
    }

    .main_imgs {
        display: none;
    }

    .main_wrapper h1,
    .inner_title {
        font-size: 24px;
    }

    .header_logo-img {
        width: 52px;
    }

    .header_logo-img img {
        width: 100%;
        height: auto;
    }

    .header_message {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .header_messages {
        gap: 10px;
    }

    .header_message svg {
        width: 18px;
        height: auto;
    }

    .header_number {
        font-size: 0;
        background: #D96F32;
        border: 1px solid #D96F32;
        width: 36px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        height: 36px;
        border-radius: 10px;
        margin-left: auto;
        margin-right: 10px;
    }

    .header_number path {
        fill: #fff;
    }

    .menu_burger {
        margin-left: 30px;
    }

    .main {
        padding-top: 90px;
    }

    .main_items {
        gap: 30px 20px;
        margin-bottom: 20px;
    }

    .main_inner {
        width: 100%;
    }

    .main_inner-title {
        font-size: 24px;
    }

    .main_item {
        width: calc(50% - 10px);
    }

    .main_inner-subtitle {
        font-size: 16px;
    }

    .main_form-file,
    .main_form-inp {
        width: 100%;
    }

    .main_form-btn {
        width: 100%;
    }

    .main_form-ok {
        width: 100%;
        font-size: 12px;
    }

    section {
        margin: 60px 0;
    }

    .title {
        font-size: 24px;
    }

    .title br {
        display: none;
    }

    .advantages_item {
        width: 100%;
    }

    .services_items,
    .advantages_items {
        gap: 10px;
    }

    .advantages_item-title {
        padding-right: 0;
        margin-bottom: 0;
    }

    .rewievs .title span,
    .inspiration .title span,
    .services .title span {
        font-size: 18px;
    }

    .services_item {
        width: 100%;
        height: 260px;
    }

    .advantages_text,
    .inspiration_text,
    .inner_description {
        font-size: 14px;
    }

    .inspiration_tegs {
        flex-wrap: nowrap;
        overflow: auto;
        padding-right: 15px;
        justify-content: flex-start;
        width: calc(100% + 15px);
    }

    .inspiration_teg {
        min-width: fit-content;
    }

    .inspiration_item {
        width: 100%;
    }

    .inspiration_item:nth-child(n+4) {
        display: none;
    }

    .consult_wrapper {
        flex-direction: column;
    }

    .consult_info {
        width: 100%;
        padding: 20px;
    }

    .consult_img {
        height: 78vw;
        width: 110%;
    }

    .consult_subtitle {
        font-size: 16px;
    }

    .consult_btn {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 0 10px;
    }

    .chose_slide-title {
        font-size: 16px;
    }

    .info_block-img {
        width: 100%;
        height: auto;
    }

    .info_block-title {
        font-size: 20px;
    }

    .steps_item {
        width: 100%;
    }

    .steps_item-number {
        font-size: 24px;
        padding-top: 20px;
    }

    .rewievs_top {
        flex-direction: column;
        gap: 20px;
    }

    .rewievs_icon {
        width: 200px;
    }

    .rewievs_icon img {
        width: 100%;
        height: auto;
    }

    .rewievs_rating {
        font-size: 20px;
    }

    .rewievs_slide-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 14px;
    }

    .rewievs_slide-img {
        width: 60px;
        height: 44px;
        border-radius: 6px;
    }

    .cause_item {
        width: 100%;
        padding: 20px;
    }

    .cause_items {
        gap: 10px;
    }

    .price_wrapper {
        flex-direction: column;
    }

    .price_info {
        width: 100%;
        padding: 20px;
    }

    .price_img {
        height: 78vw;
        width: 110%;
    }

    .price_link {
        width: 100%;
    }

    .faq_item-title {
        font-size: 18px;
        line-height: 130%;
        padding: 18px 60px 18px 20px;
    }

    .faq_item-title span {
        right: 10px;
    }

    .faq_item-text {
        padding: 0 20px 20px;
    }

    .footer_logo-text {
        font-size: 14px;
    }

    .footer_menu {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer_time,
    .footer_number {
        font-size: 18px;
        width: 100%;
        justify-content: center;
    }

    .header_dropdown,
    .header_bot {
        top: 60px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .header_dropdown li {
        width: 100%;
    }

    .menu,
    .header_bot .header_btn {
        width: 100%;
    }

    .about, .inner {
        margin-top: 80px;
    }

    .restore_items {
        gap: 10px;
    }

    .restore_item {
        width: 100%;
        padding: 20px;
        height: 320px;
    }

    .restore_item-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .restore_item-text {
        font-size: 14px;
    }

    .mission_wrapper {
        padding: 20px 20px 240px;
    }

    .mission_text {
        font-size: 16px;
    }

    .mission_img {
        width: 186px;
    }

    .mission_title {
        font-size: 22px;
    }

    .mission_subtitle {
        font-size: 16px;
    }

    .mission_wrapper::before {
        width: 72px;
        height: 59px;
        bottom: 180px;
    }

    .team_items {
        padding: 20px;
        gap: 10px;
    }

    .team_item {
        width: 100%;
        padding: 20px;
    }

    .team_item-img {
        width: 120px;
        height: 120px;
    }

    .team_item-title {
        font-size: 22px;
    }

    .team_item-subtitle {
        font-size: 16px;
    }

    .why .cause_item {
        width: 100%;
    }

    .partners_items {
        gap: 10px;
    }

    .partners_item {
        width: calc(50% - 5px);
    }

    .crumbs {
        margin-bottom: 30px;
    }

    .crumb {
        font-size: 12px;
    }

    .profitable .info_block-img {
        width: 100%;
        height: auto;
    }

    .price_about .price_text {
        font-size: 20px;
    }

    .payment_btn {
        width: 100%;
        padding: 10px 15px;
        text-align: center;
    }

    .payment_table td,
    .payment_table th {
        font-size: 16px;
        padding: 12px 14px;
    }

    .how .steps_item {
        width: 100%;
    }
}