/*! 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: "Manrope", sans-serif;
    color: #1E1E1E;
}

a {
    text-decoration: none;
}

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

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

.header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
}

.header_wrapper {
    background: #F6F6F6;
    border-radius: 0 0 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.header_logo {
    display: flex;
}

.menu {
    display: flex;
    gap: 12px;
}

.menu a {
    background: #FFFFFF;
    border-radius: 6px;
    padding: 8px 12px;
    display: block;
    font-weight: 500;
    font-size: 15px;
    line-height: 130%;
    color: #1E1E1E;
    transition: all 0.3s;
}

.menu a:hover {
    background: #E6963E;
    color: #fff;
}

.header_links {
    display: flex;
    gap: 8px;
}

.header_link {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #38495B;
    border-radius: 6px;
    width: 42px;
    height: 42px;
}

.header_number {
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    background: #38495B;
    padding: 14px 15px 7px 38px;
    position: relative;
    display: block;
    border-radius: 6px;
}

.header_number::before {
    position: absolute;
    content: "";
    background-image: url(../img/header_number.svg);
    background-size: cover;
    width: 18px;
    height: 18px;
    bottom: 8px;
    left: 15px;
}

.header_number-wrapper {
    position: relative;
}

.header_time {
    position: absolute;
    font-weight: 600;
    font-size: 11px;
    line-height: 130%;
    background: #E6963E;
    padding: 1px 7px;
    z-index: 1;
    border-radius: 3px;
    top: -5px;
    right: 50%;
    transform: translateX(50%);
    color: #fff;
    width: max-content;
}

.main {
    margin-top: 86px;
    margin-bottom: 16px;
}

section {
    margin-bottom: 120px;
}

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

.main_left {
    width: calc(50% - 8px);
    background-image: url(../img/main_left.jpg);
    background-size: cover;
    padding: 60px 50px 50px;
    border-radius: 20px;
    background-position: center;
    color: #fff;
}

.main_img {
    width: calc(50% - 8px);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
}

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

.main_title {
    font-weight: 700;
    font-size: 44px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.main_text {
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 40px;
}

.main_options {
    margin-bottom: 52px;
}

.main_option {
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.main_inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main_desc {
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    color: #E6963E;
    margin-top: 10px;
}

.btn_white {
    padding: 4px;
    padding-left: 20px;
    background: #FFFFFF;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    font-weight: 600;
    line-height: 130%;
    color: #000000;
    transition: all 0.3s;
}

.btn_white:hover {
    background: #E6963E;
    color: #fff;
}

.btn_orange {
    padding: 4px;
    padding-left: 20px;
    background: #E6963E;
    width: fit-content;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    font-weight: 600;
    line-height: 130%;
    color: #FFFFFF;
    transition: all 0.3s;
}

.btn_orange:hover {
    background: #FFFFFF;
    color: #E6963E;
}


.btn_gray {
    padding: 4px;
    padding-left: 20px;
    background: #38495B;
    width: fit-content;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    font-weight: 600;
    line-height: 130%;
    color: #FFFFFF;
    transition: all 0.3s;
}

.btn_gray:hover {
    background: #FFFFFF;
    color: #38495B;
}

.main_more {
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    text-decoration: underline;
    color: #fff;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    width: 142px;
    text-decoration-style: dotted;
    text-underline-offset: 4px;
    transition: all 0.3s;
}

.main_more:hover {
    color: #E6963E;
}

.main_bot {
    display: flex;
    justify-content: space-between;
    padding: 60px 50px;
    gap: 16px;
    background: #F6F6F6;
    margin-top: 16px;
    border-radius: 20px;
}

.main_item {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 20px;
    width: calc(33.333% - 10.666px);
}

.main_item-title {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}

.main_item-img {
    height: 280px;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
}

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

.main_bot-options {
    width: calc(33.333% - 10.666px);
    padding: 50px 60px;
    background-image: url(../img/main_bot.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    color: #fff;
}

.main_bot-option {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px dashed #FFFFFF66;
}

.main_bot-option:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.main_bot-option img {
    display: block;
    margin-bottom: 20px;
}

.catalog_warpper {
    background: #F6F6F6;
    border-radius: 20px;
    padding: 60px 50px;
    margin-bottom: 16px;
}

.subtitle {
    padding-left: 24px;
    position: relative;
    margin-bottom: 30px;
}

.subtitle::before {
    position: absolute;
    content: "";
    background: #E6963E;
    width: 14px;
    height: 14px;
    border-radius: 2px;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
}

.title {
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 40px;
}

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

.catalog_item {
    width: calc(50% - 8px);
    position: relative;
}

.catalog_item-img {
    height: 420px;
    margin-bottom: 20px;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
}

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

.catalog_item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.catalog_item-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 30px;
}

.catalog_item-options {
    position: absolute;
    right: 20px;
    top: 277px;
}

.catalog_item-option {
    background: #FFFFFF;
    gap: 10px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 6px;
    width: fit-content;
    margin-left: auto;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
}

.catalog_inner {
    background: #38495B;
    border-radius: 16px;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(../img/catalog_inner.jpg);
    color: #fff;
    background-size: cover;
    background-position: center;
}

.catalog_inner-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.catalog_inner-info {
    text-align: center;
    color: #fff;
    width: 490px;
}

.catalog_inner-img {
    width: 100px;
    height: 100px;
    display: flex;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
}

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

.catalog_inner_left {
    padding-left: 116px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
}

.catalog_inner-name {
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
}

.catalog_inner-prof {
    font-size: 14px;
}

.possibilities .subtitle {
    text-align: center;
    width: fit-content;
    margin: 0 auto 30px;
}

.possibilities .title {
    text-align: center;
}

.possibilities_slider .slick-track {
    display: flex;
    align-items: flex-end;
    padding-left: 140px !important;
}

.possibilities_slider .slick-list {
    padding-left: 180px !important;
}

.possibilities_slide {
    margin: 0 10px;
}

.possibilities_slide-img {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.possibilities_slide-img img {
    width: auto;
    height: auto;
}

.possibilities_slide-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    text-transform: uppercase;
}

.ways_subtitle {
    font-size: 16px;
    margin-bottom: 40px;
}

.ways_items {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 16px;
}

.ways_item {
    width: calc(33.333% - 10.666px);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

.ways_item-teg {
    left: 16px;
    top: -10px;
    position: absolute;
    background: #E6963E;
    padding: 3px 8px;
    font-weight: 600;
    font-size: 11px;
    line-height: 130%;
    color: #fff;
    border-radius: 3px;
}

.ways_item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ways_item-subtitle {
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 10px;
}

.ways_item-list {
    padding-left: 20px;
    list-style: disc;
    font-size: 14px;
    margin-bottom: 20px;
}

.ways_item-inner {
    display: flex;
    margin-top: auto;
    align-items: center;
    gap: 20px;
}

.ways_item-price {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
}

.ways_item-btn {
    width: 200px;
    height: 46px;
    padding: 0;
    font-size: 14px;
}

.ways_item-time {
    position: absolute;
    left: 16px;
    top: 250px;
    background: #FFFFFF;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    padding: 10px 12px;
}

.ways_inner {
    width: calc(33.333% - 10.666px);
    position: relative;
    background-image: url(../img/ways_inner.jpg);
    background-size: cover;
    background-position: center;
    padding: 50px 40px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.ways_inner-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ways_inner-text {
    font-size: 16px;
    margin-bottom: 20px;
}

.ways_inner-btn {
    width: fit-content;
}

.ways_inner-btn.btn_orange img {
    transform: rotate(-90deg);
}

.ways_inner-subtitle {
    margin-top: auto;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.individual_wrapper {
    background: #F6F6F6;
    padding: 60px 50px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.individual_wrapper::before {
    position: absolute;
    content: "";
    background-image: url(../img/individual_wrapper.svg);
    z-index: -1;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 1180px;
}

.individual_wrapper-img {
    position: absolute;
    z-index: -1;
    display: flex;
    bottom: 0;
    right: 0;
}

.individual_text {
    margin-bottom: 20px;
}

.individual_tegs {
    display: flex;
    margin-bottom: 70px;
    gap: 10px;
}

.individual_teg {
    background: #FFFFFF;
    border-radius: 6px;
    font-weight: 600;
    line-height: 130%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
}

.individual_inner {
    background: linear-gradient(58.7deg, #E6963E 5.68%, #F3710D 98.72%);
    border-radius: 16px;
    padding: 30px;
    width: 460px;
    position: relative;
}

.individual_inner-img {
    position: absolute;
    display: flex;
    bottom: 44px;
    right: 30px;
}

.individual_inner-btn {
    width: fit-content;
}

.individual_inner-btn:hover {
    background: #38495B;
}

.individual_inner-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 130%;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 108px;
}

.advantages_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.advantages_info {
    width: 480px;
}

.advantages_text {
    margin-bottom: 30px;
}

.advantages_options {
    margin-bottom: 30px;
}

.advantages_option {
    font-weight: 600;
    line-height: 130%;
    background: #F6F6F6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    margin-bottom: 8px;
}

.advantages_btn {
    padding-left: 36px;
}

.advantages_btn img {
    transform: rotate(-90deg);
}

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

.advantages_img {
    width: 420px;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    height: 435px;
    position: relative;
}

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

.advantages_img-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #FFFFFF;
    border-radius: 6px;
    padding: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 130%;
}

.why_wrapper {
    border-radius: 20px;
    overflow: hidden;
    background-image: url(../img/why_wrapper.jpg);
    background-size: cover;
    background-position: center;
    padding: 40px 40px 0;
}

.why_info {
    width: 600px;
    background: #23293199;
    backdrop-filter: blur(40px);
    color: #fff;
    border-radius: 16px 16px 0 0;
    padding: 40px;
}

.why_option {
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.why_option img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.why_option span {
    font-weight: 700;
    font-size: 16px;
    display: block;
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.why_bot {
    display: flex;
    align-items: center;
    gap: 16px;
}

.why_bot-text {
    font-weight: 500;
    line-height: 130%;
}

.why_bot-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    min-width: 100px;
    display: flex;
}

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

.steps_text {
    margin-bottom: 40px;
}

.steps_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    z-index: 1;
    position: relative;
    gap: 70px;
}

.steps_items.scroll::after {
    width: 100%;
}

.steps_items::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 4px;
    background: #F6F6F6;
    z-index: -1;
    left: 0;
    bottom: 18px;
}

.steps_items::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 4px;
    background: #38495B;
    transition: all 3s ease-in-out;
    z-index: -1;
    left: 0;
    bottom: 18px;
}

.steps_item {
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.steps_item-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.steps_item-number {
    background: #38495B;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    margin-top: auto;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    text-transform: uppercase;
    color: #fff;
}

.steps_item:last-child .steps_item-number {
    margin-left: auto;
}

.approach_wrapper {
    background: linear-gradient(180deg, #F6F6F6 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 60px 50px 0;
}

.approach_wrapper .title {
    text-align: center;
}

.approach_text {
    text-align: center;
    margin-bottom: 40px;
}

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

.approach_item {
    width: calc(50% - 10px);
    display: flex;
    border-radius: 16px;
    overflow: hidden;
}

.approach_item-info {
    width: calc(100% - 260px);
    padding: 40px;
}

.approach_item-img {
    width: 260px;
    display: flex;
}

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

.approach_item:nth-child(1) {
    background-image: url(../img/approach_item.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.approach_item:nth-child(2) {
    background: #FFFFFF;
}

.approach_item-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.approach_item-option {
    display: flex;
    background: #FFFFFF;
    font-weight: 600;
    font-size: 15px;
    line-height: 130%;
    padding: 12px;
    gap: 10px;
    align-items: center;
    width: fit-content;
    border-radius: 6px;
    margin-bottom: 10px;
    color: #1E1E1E;
}

.approach_item:nth-child(2) .approach_item-option {
    background: #F6F6F6;
    font-weight: 400;
}

.works_item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 16px;
}

.works_item-info {
    width: calc(50% - 8px);
    background: #F6F6F6;
    padding: 50px;
    border-radius: 20px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
}

.works_item-title {
    font-weight: 700;
    font-size: 26px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.works_item-subtitle {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 16px;
}

.works_item-text {
    font-size: 14px;
    margin-bottom: 10px;
}

.works_item-right {
    width: calc(50% - 8px);
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.works_item-right div {
    height: 100%;
}

.works_item-list {
    list-style: disc;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 20px;
}

.works_item-btn {
    margin-top: auto;
}

.works_item-btn img {
    transform: rotate(-90deg);
}

.works_item-tegs {
    position: absolute;
    display: flex;
    gap: 12px;
    top: 20px;
    left: 20px;
    z-index: 1;
    height: auto !important;
}

.works_item-teg {
    background: #FFFFFF;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border-radius: 6px;
}

.works_item-adres {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1;
    height: auto !important;
}

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

.works_item-imgs .slick-arrow {
    position: absolute;
    background: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 1;
    font-size: 0;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
}

.works_item-imgs .slick-prev {
    left: 20px;
    background-image: url(../img/arrow_left.svg);
}

.works_item-imgs .slick-next {
    right: 20px;
    background-image: url(../img/arrow_right.svg);
}

.works_item-adres {
    background: #FFFFFF;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border-radius: 6px;
}

.consult .subtitle {
    width: fit-content;
    margin: 0 auto 30px;
}

.consult .title {
    text-align: center;
}

.consult_text {
    text-align: center;
    margin-bottom: 30px;
}

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

.consult_item {
    background: #F6F6F6;
    padding: 10px;
    gap: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    text-transform: uppercase;
    border-radius: 10px;
}

.consult .catalog_inner-text {
    text-transform: uppercase;
    font-size: 18px;
    max-width: 484px;
}

.consult .catalog_inner-btn img {
    transform: rotate(-90deg);
}

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

.faq_item {
    width: calc(50% - 8px);
    background: #F6F6F6;
    border-radius: 10px;
}

.faq_item-title {
    cursor: pointer;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;
    padding: 22px 40px;
    position: relative;
}

.faq_item-title::before {
    position: absolute;
    content: "";
    background-image: url(../img/faq_item.svg);
    background-size: cover;
    width: 40px;
    height: 40px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.faq_item-title.active ::before {
    transform: translateY(-50%) rotate(180deg);

}

.faq_item-text {
    padding: 0 40px 30px;
    display: none;
}

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

.calculation_img {
    width: calc(50% - 8px);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
}

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

.calculation_right {
    width: calc(50% - 8px);
    border-radius: 20px;
    color: #fff;
    background-image: url(../img/calculation_right.jpg);
    background-size: cover;
    background-position: center;
    padding: 65px 50px;
}

.calculation_text {
    font-size: 14px;
    margin-bottom: 10px;
}

.calculation_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.calculation_options {
    margin-bottom: 92px;
}

.calculation_option {
    background: #FFFFFF;
    border-radius: 6px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    color: #1E1E1E;
    line-height: 130%;
    width: fit-content;
}

.calculation_btn {
    width: fit-content;
    margin-top: 20px;
}

.calculation_inner-right {
    width: 210px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.calculation_manager {
    border: 1px solid #FFFFFF33;
    background: #FFFFFF1A;
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 10px;
}

.calculation_manager-img {
    display: flex;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

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

.calculation_manager-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
}

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

.calculation_link {
    width: calc(50% - 5px);
    background: #FFFFFF1A;
    border: 1px solid #FFFFFF33;
    backdrop-filter: blur(5px);
    padding: 25px;
    border-radius: 10px;
}

.footer_wrapper {
    background: #F6F6F6;
    border-radius: 20px 20px 0 0;
    padding: 60px 50px;
    display: flex;
    justify-content: space-between;
}

.footer_title {
    font-size: 16px;
    margin-bottom: 32px;
    position: relative;
    padding-left: 24px;
}

.footer_title::before {
    position: absolute;
    content: "";
    background: #E6963E;
    width: 14px;
    height: 14px;
    border-radius: 2px;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
}

.footer_right {
    display: flex;
    gap: 100px;
}

.footer_menu a {
    font-weight: 600;
    display: block;
    font-size: 16px;
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #1E1E1E;
}

.footer_logo {
    display: flex;
    margin-bottom: 55px;
}

.footer_link {
    background: #FFFFFF;
    border-radius: 6px;
    padding: 6px;
    padding-left: 30px;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    color: #1E1E1E;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}

.footer_desc {
    width: 290px;
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
    color: #1E1E1E80;
}


.popup_body {
    background: #FFFFFF;
    width: 1200px;
    border-radius: 20px;
    padding: 20px;
}

.popup_body-wrapper {
    display: flex;
    justify-content: space-between;

}

.popup_body-info {
    width: 620px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup_body-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.popup_body-text {
    font-size: 14px;
    margin-bottom: 30px;
}

.popup_body-form .inp {
    width: 305px;
}

.inp {
    background: #F6F6F6;
    border-radius: 6px;
    margin-bottom: 10px;
    height: 56px;
    padding-left: 20px;
    border: none;
    font-size: 14px;
}

.popup_body-btn {
    width: 305px;
    height: 56px;
    margin-bottom: 15px;
    border: none;
    position: relative;
    padding-right: 60px;
    cursor: pointer;
}

.popup_body-btn img {
    transform: rotate(-90deg);
    position: absolute;
    right: 4px;
    top: 4px;
}

.form_ok {
    font-size: 10px;
    line-height: 120%;
    color: #9D9D9D;
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    padding-left: 26px;
    position: relative;
}

.form_ok a {
    color: #9D9D9D;

}

.main_radio {
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    margin-bottom: 20px;
    cursor: pointer;
    line-height: 1;
    font-size: 18px;
}

.main_btn {
    width: fit-content;
}

.main_radio span {
    display: block;
    width: 30px;
    height: 30px;
    min-width: 20px;
    border-radius: 50%;
    border: 1px solid #fff;
    position: relative;
}

.main_radio input {
    display: none;
}

.main_radio input:checked+span::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

.form_ok span {
    border: 2px solid #9D9D9D;
    width: 17px;
    height: 17px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
}

.form_ok input {
    display: none;
}

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

.popup_body-inner {
    position: absolute;
    left: 365px;
    bottom: 100px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.popup_form-link {
    display: flex;
}

.popup_form-desc {
    width: 104px;
    font-size: 14px;
    line-height: 120%;
}

.menu_burger {
    display: none;
}

.header_inner .header_number-wrapper {
    display: none;
}

.header_inner-btn {
    display: none;
}



.trigger_scroll {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.scroll_up.active {
    transform: scale(1);
}

.scroll_up {
    border-radius: 8px;
    background-color: #E6963E;
    width: 46px;
    height: 46px;
    z-index: 8;
    position: fixed;
    padding: 6px;
    bottom: 50px;
    right: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    transform: scale(0);
}


.page_default {
    margin-top: 160px;
}

.page_default h2 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}

.page_default p {
    line-height: 130%;
    margin-bottom: 20px;
}



.page_default table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}



.page_default table th {
    font-weight: bold;
    padding: 5px;
    background: #efefef;
    border: 1px solid #dddddd;
}

.page_default table td {
    border: 1px solid #dddddd;
    padding: 10px;
}

.footer_map-title {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
}

.footer_map_body {
    width: 100%;
    height: 300px;
    display: flex;
}

.footer_map {
    width: 420px;
}

.footer_map_body iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.cookies {
    position: fixed;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    background: #38495B;
    width: 780px;
    color: #fff;
    margin: 0 auto;
    max-width: calc(100% - 40px);
    padding: 20px 30px;
    border-radius: 10px;
    z-index: 9;
}

.cookies_text {
    margin-bottom: 20px;
}

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


.cookies_more {
    text-decoration: underline;
    color: #fff;
}

.cookies_done,
.cookies_none {
    width: 180px;
    cursor: pointer;
    height: 52px;
    padding-left: 4px;
}

.cookies_none {
    background: #FFFFFF;
    color: #252525;
}

.cookies_none:hover {
    color: #fff;
}

.cookies_done:hover {
    color: #252525;
    background: #fff;
}


@media (max-width: 767.98px) {
    .cookies {
        width: 100%;
        bottom: 0;
        left: 0;
        transform: none;
        max-width: 100%;
        border-radius: 10px 10px 0 0;
        padding: 14px;
    }

    .cookies_btns {
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookies_text {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .cookies_done,
    .cookies_none {
        font-size: 14px;
        width: calc(50% - 5px);
        height: 40px;
    }

    .cookies_more {
        width: 100%;
        text-align: center;
        font-size: 14px;
    }
}




@media (max-width: 1540px) {
    .container {
        max-width: 1180px;
    }

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

    .header_number {
        font-size: 14px;
        padding-right: 10px;
        padding-left: 32px;
    }

    .header_number::before {
        left: 10px;
    }

    .header_logo {
        width: 110px;
    }

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

    .menu {
        gap: 10px;
    }

    .main_left {
        padding: 30px;
    }

    .main_title {
        font-size: 32px;
    }

    .main_text {
        margin-bottom: 30px;
    }

    .main_options {
        margin-bottom: 30px;
    }

    .main_btn {
        gap: 16px;
    }

    .main_item-img {
        height: 204px;
    }

    .main_bot-options {
        padding: 30px;
    }

    .main_bot-option {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .catalog_inner {
        padding: 30px;
    }

    .possibilities_slide-img img {
        max-width: 320px;
    }

    .possibilities_slider .slick-list {
        padding-left: 50px !important;
    }

    .ways_inner {
        padding: 30px;
    }

    .ways_inner-subtitle {
        font-size: 20px;
    }

    .individual_teg {
        font-size: 14px;
    }

    .individual_wrapper-img {
        width: 740px;
    }

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

    .advantages_img {
        width: 342px;
    }

    .advantages_img-title {
        max-width: calc(100% - 40px);
        font-size: 14px;
    }

    .advantages_info {
        width: 430px;
    }

    .steps_items {
        gap: 40px;
    }

    .approach_item-img {
        width: 180px;
    }

    .approach_item-info {
        width: calc(100% - 180px);
        padding: 30px;
    }

    .consult .catalog_inner-text {
        max-width: 420px;
    }

    .catalog_inner-info {
        width: 420px;
    }

    .faq_item-title {
        font-size: 18px;
    }

    .calculation_right {
        padding: 30px;
    }

    .calculation_inner-right {
        width: 190px;
    }

    .calculation_inner-left {
        width: 280px;
    }

    .calculation_manager {
        padding: 16px;
    }

    .calculation_link {
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 90px;
    }

    .calculation_btn {
        font-size: 14px;
    }

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

    .footer_map {
        width: 714px;
    }


}

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

    .header_time {
        display: none;
    }

    .header_number {
        width: 32px;
        padding: 0;
        height: 32px;
        font-size: 0px;
        position: relative;
    }

    .header_link {
        width: 32px;
        height: 32px;
    }

    .header_link img {
        width: 16px;
    }

    .header_number::before {
        right: 50%;
        top: 50%;
        left: auto;
        bottom: auto;
        transform: translate(50%, -50%);
    }

    .header_logo {
        width: 100px;
    }

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

    .main_wrapper {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .main_img {
        width: 100%;
        height: 540px;
    }

    .main_left {
        width: 100%;
    }

    .main_bot {
        padding: 30px;
        flex-wrap: wrap;
    }

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

    .main_bot-options {
        order: 1;
        width: 100%;
    }

    .catalog_item-img {
        height: 248px;
    }

    .catalog_item-option {
        font-size: 14px;
    }

    .catalog_item-options {
        position: absolute;
        right: 20px;
        top: 108px;
    }

    .catalog_warpper {
        padding: 30px;
    }

    .catalog_inner {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .catalog_inner-info {
        width: 100%;
    }

    .possibilities_slide-img img {
        max-width: 280px;
    }


    .ways_inner,
    .ways_item {
        width: calc(50% - 8px);
    }

    .individual_tegs {
        flex-wrap: wrap;
    }

    .individual_wrapper-img {
        width: 680px;
    }

    .advantages_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .advantages_info {
        width: 100%;
    }

    .advantages_option {
        width: fit-content;
    }

    .advantages_imgs {
        width: 100%;
    }

    .advantages_img {
        width: calc(50% - 8px);
    }

    .why_info {
        width: 520px;
        padding: 30px;
    }

    .steps_items::after,
    .steps_items::before {
        display: none;
    }

    .steps_items {
        gap: 50px 20px;
    }

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

    .steps_item:last-child .steps_item-number {
        margin: 0;
    }

    .approach_wrapper {
        padding: 30px 30px 0;
    }

    .approach_item {
        width: 100%;
    }

    .approach_items {
        flex-wrap: wrap;
    }

    .approach_item-img {
        width: 260px;
    }

    .approach_item-info {
        width: calc(100% - 260px);
    }

    .works_item-info {
        padding: 30px;
    }

    .works_item {
        flex-direction: column-reverse;
    }

    .works_item-right {
        width: 100%;
        height: 520px;
    }

    .consult .catalog_inner-text {
        max-width: 100%;
    }

    .works_item-info {
        width: 100%;
    }

    .faq_item {
        width: 100%;
    }

    .calculation_wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .calculation_img {
        width: 100%;
        height: 520px;
    }

    .footer_right {
        gap: 50px;
    }

    .calculation_right {
        width: 100%;
    }

    .footer_wrapper {
        padding: 30px;
    }

    .footer_link {
        gap: 14px;
        padding-left: 20px;
    }

    .footer_wrapper {
        padding-top: 120px;
        position: relative;
        flex-direction: column-reverse;
    }

    .footer_logo {
        position: absolute;
        margin: 0;
        top: 30px;
        left: 30px;
    }

    .footer_desc {
        width: 100%;
    }

    .footer_map {
        width: 100%;
        order: 1;

    }
}

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

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

    .header_inner {
        position: fixed;
        opacity: 0;
        visibility: hidden;
        transition: all 0.6s;
        background: #F6F6F6;
        width: 700px;
        z-index: 1;
        top: 66px;
        right: 50%;
        transform: translateX(50%);
        border-radius: 0 0 15px 15px;
        padding: 50px;
    }

    .header_wrapper:has(.header_inner.active) {
        border-radius: 0;
    }

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

    .header_inner .header_time {
        display: block;
    }

    .header_inner .header_number {
        font-size: 16px;
        width: fit-content;
        position: relative;
        height: auto;
        padding: 14px 15px 7px 38px;
    }

    .header_inner .header_number-wrapper {
        width: fit-content;
        margin: 0 auto 30px;
        display: block;
    }

    .header_inner .header_number::before {
        bottom: 8px;
        left: 15px;
        top: auto;
        transform: none;
    }

    .header_inner-btn {
        margin: 0 auto;
        display: flex;
    }

    .menu {
        flex-direction: column;
        margin-bottom: 35px;
        align-items: center;
    }

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

    .menu_burger {
        display: block;
        background: #E6963E;
        width: 36px;
        height: 36px;
        border-radius: 6px;
        position: relative;
    }

    .menu_burger::before {
        position: absolute;
        content: "";
        width: 17px;
        height: 3px;
        background-color: #fff;
        border-radius: 2px;
        top: 13px;
        left: 9px;
        transition: all 0.3s;
    }

    .menu_burger::after {
        position: absolute;
        content: "";
        width: 11px;
        height: 3px;
        background-color: #fff;
        border-radius: 2px;
        top: 20px;
        left: 9px;
        transition: all 0.3s;
    }

    .menu_burger.active::after {
        transform: rotate(45deg);
        top: 16px;
        width: 17px;
    }

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

    .header_links {
        margin-left: auto;
        margin-right: 10px;
    }

    .main_img {
        height: 420px;
    }

    .main_item-img {
        height: 186px;
    }

    .catalog_item-options {
        right: 10px;
        top: 120px;
    }

    .catalog_item-option {
        font-size: 12px;
        gap: 8px;
        padding: 8px;
    }

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

    .possibilities_slide {
        margin: 0 5px;
    }

    .individual_inner {
        padding: 20px;
        width: 390px;
    }

    .individual_inner-title {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .individual_wrapper-img {
        width: 520px;
    }

    .advantages_img {
        height: 320px;
    }

    .title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .steps_item-title {
        font-size: 18px;
    }

    .consult_item {
        font-size: 14px;
        gap: 10px;
        width: 100%;
    }

    .consult_items {
        gap: 10px;
    }

    .consult_item img {
        width: 32px;
        height: auto;
    }

    .calculation_img {
        height: 420px;
    }

    .footer_right {
        width: 100%;
        justify-content: space-between;
    }

    .popup_body-img {
        display: none;
    }

    .popup_body-info {
        padding: 20px;
    }
}

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

    section {
        margin-bottom: 80px;
    }

    .header_wrapper {
        padding: 12px 15px;
    }

    .header_logo {
        width: 107px;
    }

    .main {
        margin-top: 70px;
        margin-bottom: 10px;
    }

    .main_img {
        height: 190px;
        border-radius: 15px;
    }

    .main_left {
        border-radius: 15px;
        padding: 40px 25px;
    }

    .main_title {
        font-size: 26px;
    }

    .main_text {
        font-size: 14px;
    }

    .main_option {
        font-size: 14px;
        gap: 10px;
    }

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

    .main_btn {
        font-size: 14px;
    }

    .main_desc {
        font-size: 12px;
    }

    .main_more {
        justify-content: center;
        width: 100%;
        font-size: 14px;
    }

    .main_desc {
        text-align: center;
    }

    .main_bot {
        padding: 50px 25px;
        border-radius: 15px;
    }

    .main_item {
        width: 100%;
        border-radius: 10px;
        padding: 10px;
    }

    .main_item-img {
        height: 184px;
        margin-bottom: 20px;
    }

    .main_item-title {
        font-size: 14px;
    }

    .main_bot-options {
        order: 0;
        padding: 30px 20px;
    }

    .main_bot-option img {
        width: 40px;
        margin-bottom: 10px;
    }

    .main_bot-option {
        font-size: 14px;
    }

    .catalog_warpper {
        padding: 50px 25px;
        border-radius: 15px;
    }

    .subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .subtitle::before {
        width: 10px;
        height: 10px;
    }

    .title {
        font-size: 26px;
    }

    .catalog_item {
        width: 100%;
    }

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

    .catalog_item-img {
        height: 180px;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .catalog_item-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .catalog_item-option {
        font-size: 11px;
        gap: 5px;
        padding: 4px 6px;
        border-radius: 4px;
        margin-bottom: 4px;
    }

    .catalog_item-option img {
        width: 8px;
        height: auto;
    }

    .catalog_item-options {
        top: 90px;
        right: 5px;
    }

    .catalog_item-btn {
        font-size: 14px;
        width: 100%;
    }

    .possibilities {
        margin-bottom: 10px;
    }

    .catalog_inner {
        padding: 50px 25px;
        border-radius: 15px;
        background-image: url(../img/catalog_inner2.jpg);
    }

    .catalog_inner-info {
        order: -1;
    }

    .catalog_inner-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

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

    .catalog_inner_left {
        padding-left: 0;
    }

    .catalog_inner-img {
        width: 80px;
        height: 80px;
        position: relative;
        margin: 0 auto 10px;
    }

    .catalog_inner-name {
        font-size: 16px;
        text-align: center;
    }

    .catalog_inner-prof {
        font-size: 12px;
    }

    .possibilities_wrapper {
        background: linear-gradient(180deg, #F6F6F6 0%, #FFFFFF 100%);
        border-radius: 15px;
        padding: 50px 25px;
    }

    .possibilities .subtitle {
        margin-bottom: 20px;
    }

    .catalog {
        margin-bottom: 10px;
    }

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

    .possibilities_slide {
        width: calc(50% - 5px);
        margin: 0;
    }

    .possibilities_slide-img {
        width: 100%;
        margin-bottom: 5px;
        border-radius: 5px;
        height: auto;
    }

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

    .possibilities_slide-title {
        font-size: 12px;
    }

    .possibilities_slide:nth-child(6) {
        order: -1;
    }

    .possibilities_slide:nth-child(2) {
        margin-top: -47px;
    }

    .possibilities_slide:nth-child(4) {
        margin-top: -57px;
    }

    .ways_subtitle {
        font-size: 14px;
    }

    .ways_inner,
    .ways_item {
        width: 100%;
    }

    .ways_item-img {
        height: 200px;
    }

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

    .ways_item-time {
        top: 165px;
        left: 10px;
        font-size: 12px;
        padding: 4px 6px;
        border-radius: 4px;
    }

    .ways_item-subtitle {
        font-size: 14px;
    }

    .ways_item-list {
        font-size: 12px;
    }

    .ways_item-price {
        font-size: 14px;
    }

    .ways_items {
        gap: 40px 0;
    }

    .ways_inner {
        padding: 50px 20px;
    }

    .ways_inner-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

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

    .ways_inner-btn {
        font-size: 14px;
        margin-bottom: 60px;
    }

    .ways {
        margin-bottom: 10px;
    }

    .ways_inner-btn:last-child {
        margin-bottom: 0;
    }

    .individual_wrapper {
        padding: 50px 25px;
        overflow: hidden;
    }

    .individual_text {
        font-size: 14px;
    }

    .individual_wrapper::before {
        width: 780px;
        height: 640px;
        top: 0;
        right: -280px;
    }

    .individual_teg {
        padding: 4px 8px;
        gap: 5px;
    }

    .individual_teg img {
        width: 8px;
        height: auto;
    }

    .individual_wrapper-img {
        width: 315px;
    }

    .individual_inner {
        width: 100%;
        padding: 30px;
    }

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

    .advantages_text {
        font-size: 14px;
    }

    .advantages_img {
        width: 100%;
    }

    .advantages_imgs {
        flex-direction: column;
        gap: 10px;
    }

    .individual_tegs {
        gap: 5px;
    }

    .why_wrapper {
        border-radius: 10px;
        padding: 0;
    }

    .why_option span {
        font-size: 14px;
    }

    .why_option {
        font-size: 12px;
        margin-bottom: 15px;
        padding-left: 34px;
    }

    .why_option img {
        width: 16px;
        height: auto;
        top: 0;
        transform: none;
    }

    .why_info {
        width: 100%;
        padding: 50px 25px;
    }

    .why_bot-img {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

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

    .steps_text {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .steps_items {
        gap: 30px;
    }

    .steps_item {
        width: 100%;
        flex-direction: row-reverse;
        gap: 16px;
        justify-content: flex-end;
        align-items: center;
    }

    .steps_item-title {
        margin-bottom: 0;
        font-size: 16px;
    }

    .steps_item-title br {
        display: none;
    }

    .steps_items::after,
    .steps_items::before {
        display: block;
        height: 100%;
        width: 2px;
        left: 14px;
        top: 0;
    }

    .steps_items::after {
        height: 0;
    }

    .steps_items.scroll::after {
        height: 100%;
        width: 2px;
    }

    .steps_item-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .approach_wrapper {
        padding: 50px 25px;
        border-radius: 15px;
    }

    .approach_wrapper .title {
        text-align: left;
        margin-bottom: 20px;
    }

    .approach_text {
        font-size: 14px;
        text-align: left;
        margin-bottom: 30px;
    }

    .approach_item {
        flex-direction: column;
        border-radius: 10px;
    }

    .approach_items {
        flex-direction: column-reverse;
    }

    .approach_item-option {
        font-size: 14px;
        gap: 10px;
        padding: 4px 6px;
    }

    .approach_item-img {
        width: 100%;
        height: 200px;
    }

    .approach_item-info {
        width: 100%;
        padding: 30px 20px;
    }

    .works_item-right {
        border-radius: 15px;
        height: 262px;
    }

    .works_item-tegs {
        top: 10px;
        left: 10px;
        flex-wrap: wrap;
        gap: 5px;
    }

    .works_item-teg {
        font-size: 12px;
        padding: 4px 6px;
        border-radius: 4px;
        gap: 5px;
    }

    .works_item-imgs .slick-arrow {
        width: 30px;
        height: 30px;
    }

    .works_item-imgs .slick-next {
        right: 10px;
    }

    .works_item-imgs .slick-prev {
        left: 10px;
    }

    .works_item-adres {
        font-size: 12px;
        bottom: 10px;
        right: 14px;
        gap: 5px;
    }

    .works_item-info {
        padding: 30px 20px;
        border-radius: 15px;
    }

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

    .works_item-text {
        font-size: 12px;
    }

    .btn_orange {
        font-size: 14px;
        gap: 12px;
    }

    .consult .catalog_inner-text {
        font-size: 16px;
    }

    .faq_item-title {
        font-size: 14px;
        padding: 20px 15px;
        padding-right: 60px;
    }

    .faq_item-title::before {
        width: 30px;
        height: 30px;
        right: 15px;
    }

    .faq_item-text {
        font-size: 13px;
        padding: 0 15px 15px;
    }

    .works_item-subtitle {
        font-size: 14px;
    }

    .consult .subtitle {
        margin-bottom: 30px;
    }

    .faq_items {
        gap: 10px;
    }

    .calculation_img {
        height: 310px;
        border-radius: 15px;
    }

    .calculation_right {
        border-radius: 15px;
        padding: 50px 25px;
    }

    .calculation_inner {
        flex-direction: column;
        gap: 60px;
    }

    .calculation_inner-left {
        width: 100%;
    }

    .calculation_options {
        margin-bottom: 30px;
    }

    .calculation_btn {
        gap: 10px;
    }

    .calculation_inner-right {
        width: 100%;
    }

    .calculation_link {
        width: 88px;
        height: 88px;
    }

    .calculation_link img {
        width: 40px;
        height: auto;
    }

    .calculation_manager {
        width: 100%;
    }

    .footer_right {
        flex-direction: column-reverse;
    }

    .footer_link {
        font-size: 16px;
        gap: 20px;
    }

    .footer_item {
        display: flex;
        flex-wrap: wrap;
        gap: 0 10px;
    }

    .footer_title {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer_menu {
        width: 100%;
    }

    .footer_menu a {
        font-size: 12px;
    }

    .footer_left {
        margin-top: 30px;
    }

    .footer_desc {
        font-size: 12px;
    }

    .header_inner {
        top: 60px;
        width: calc(100% - 30px);
    }

    .footer_link img {
        width: 40px;
        height: auto;
    }

    .scroll_up {
        right: 20px;
        bottom: 30px;
    }

    .page_default {
        margin-top: 90px;
    }

    .default_page table {
        display: block;
        overflow: auto;
    }

    .main_text br {
        display: none;
    }

    .footer_wrapper {
        padding-left: 20px;
        gap: 30px;
        padding-right: 20px;
    }

    .footer_right {
        gap: 30px;
    }

    .footer_left {
        margin-top: 0;
    }

    .footer_map_body {
        height: 260px;
    }

    .footer_logo {
        left: 20px;
    }

    .popup_body-inner {
        position: relative;
        inset: auto;
    }

    .popup_body-info {
        padding: 20px 0;
    }

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

    .popup_body-text br {
        display: none;
    }
}