/*! 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;
    background: #F4F6FF;
    color: #161616;
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1750px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    position: fixed;
    top: 20px;
    width: 100%;
    max-width: 1780px;
    background-color: #fff;
    right: 50%;
    transform: translateX(50%);
    padding: 30px;
    z-index: 10;
    border-radius: 30px;
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_catalog {
    position: relative;
}

.header_catalog-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px #1616160D;
    border-radius: 15px;
    padding: 20px 15px 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.header_catalog::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 100%;
    left: 0;
}

.header_catalog-dropdown a:hover {
    background: #1364F3;
    color: #fff;
}

.header_catalog:hover .header_catalog-dropdown {
    opacity: 1;
    visibility: visible;
}

.header_catalog-dropdown a {
    padding: 7px 15px;
    white-space: nowrap;
    font-size: 16px;
    line-height: 130%;
    display: block;
    border-radius: 100px;
    transition: all 0.3s;
    color: #434343;
    width: fit-content;
    margin-bottom: 10px;
}



.header_catalog-btn {
    background: #1364F3;
    padding: 14px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 500px;
    font-weight: 600;
    font-size: 16px;
    gap: 15px;
    color: #fff;
    transition: all 0.3s;
}

.header_catalog:hover .header_catalog-btn {
    opacity: 0.8;
}



.menu {
    display: flex;
    gap: 20px;
}

.menu li {
    display: flex;
    position: relative;
}

.menu_dropdown {
    position: absolute;
    top: calc(100% + 10px);
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px #1616160D;
    border-radius: 15px;
    padding: 20px 15px 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.menu_dropdown.big {
    right: 50%;
    transform: translateX(50%);
    padding: 30px;
}

.menu li::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 100%;
    left: 0;
}

.menu_dropdown>ul a:hover {
    background: #1364F3;
    color: #fff;
}

.menu li:hover .menu_dropdown {
    opacity: 1;
    visibility: visible;
}

.menu_dropdown>ul a {
    padding: 7px 15px;
    white-space: nowrap;
    font-size: 16px;
    line-height: 130%;
    display: block;
    border-radius: 100px;
    transition: all 0.3s;
    color: #434343;
    width: fit-content;
    margin-bottom: 10px;
}

.menu>li>a {
    padding: 13px 24px;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #161616;
    transition: all 0.3s;
    border-radius: 500px;
}

.menu>li>a:hover {
    background: #1364F31A;
    color: #1364F3;
}

.menu a path {
    transition: all 0.3s;
}

.menu a:hover path {
    stroke: #1364F3;
}

.header_messages {
    display: flex;
    gap: 10px;
}

.header_message {
    display: flex;
    transition: all 0.3s;
}

.header_message:hover {
    opacity: 0.8;
}

.header_number {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    transition: all 0.3s;
    color: #0D1114;
}

.header_number:hover {
    color: #1364F3;

}

.header_order {
    display: block;
    font-weight: 500;
    font-size: 16px;
    text-decoration: underline;
    color: #1364F3;
    margin-left: auto;
    width: fit-content;
}

.header_links {
    position: relative;
    padding-left: 65px;
}

.header_links::before {
    position: absolute;
    content: "";
    background-image: url(../img/header_number.svg);
    background-size: cover;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
}

.menu_dropdown-items {
    display: flex;
    gap: 80px;
}

.menu_dropdown-item {
    position: relative;
}

.menu_dropdown-item:nth-child(2) ul {
    columns: 3;
}

.menu_dropdown-item:last-child::before {
    display: none;
}

.menu_dropdown-item::before {
    position: absolute;
    content: "";
    border: 1px solid #EAEEF3;
    right: -40px;
    top: 0;
    height: 100%;
    width: 1px;
}

.menu_dropdown-title {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 20px;
}

.menu_dropdown-item a {
    display: block;
    white-space: nowrap;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #434343;
    margin-bottom: 4px;
}

section {
    margin: 120px 0;
}

.main {
    position: relative;
    margin-top: 192px;
    z-index: 1;
}

.main_img {
    position: absolute;
    display: flex;
    top: 46px;
    right: 45px;
    z-index: -1;
}

.main_img img:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    animation: circleAnim 10s linear infinite;
}

@keyframes circleAnim {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.main_img img:nth-child(2) {
    z-index: 2;
}

.main_title {
    font-weight: 500;
    font-size: 64px;
    line-height: 120%;
    max-width: 1100px;
    margin-bottom: 95px;
}

.main_title span {
    color: #1364F3;
}

.main_subtitle {
    font-weight: 500;
    font-size: 36px;
    max-width: 800px;
    line-height: 130%;
    margin-bottom: 45px;
}

.main_subtitle span {
    color: #1364F3;
}

.main_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 95px;
}

.main_text {
    font-weight: 500;
    font-size: 26px;
    line-height: 130%;
    margin-bottom: 80px;
    max-width: 890px;
}

.main_text span {
    color: #1364F3;
}

.service_page .main_img {
    top: -30px;
    right: 100px;
}

.service_page {
    z-index: 1;
    position: relative;
}

.service_page::before {
    position: absolute;
    content: "";
    background-image: url(../img/service_page.svg);
    background-size: cover;
    top: 114px;
    left: 0;
    width: 515px;
    height: 382px;
    z-index: -1;
}

.main_desc {
    font-size: 18px;
    line-height: 130%;
    text-align: right;
    max-width: 834px;
}

.main_desc span {
    color: #1364F3;
}

.main_options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main_option {
    background: #FFFFFF;
    border-radius: 500px;
    padding: 15px 30px;
    color: #1364F3;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
}

.main_option::before {
    position: relative;
    content: "";
    width: 30px;
    height: 1px;
    background-color: #1364F3;
    display: block;
}

.main_options-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    margin-right: 20px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1364F3;
    border-radius: 500px;
    padding: 18px 30px;
    font-weight: 600;
    gap: 10px;
    font-size: 18px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    width: fit-content;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
    right: 0;
    opacity: 0;
    transition: all 0.3s;
    background: linear-gradient(180deg, #1465F4 0%, #2238F2 100%);
}

.btn:hover::before {
    opacity: 1;
}

.btn_white {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 500px;
    padding: 21px 30px;
    font-weight: 600;
    gap: 10px;
    border: 2px solid #FFFFFF !important;
    font-size: 18px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #1364F3;
    transition: all 0.3s;
    width: fit-content;
}

.btn_white:hover {
    color: #fff;
    background: #1364F3;
}

.btn_white path {
    transition: all 0.3s;
}

.btn_white:hover path {
    fill: #fff;
}

.main_btns {
    display: flex;
    gap: 40px;
}

.block_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.subtitle {
    background: #FFFFFF;
    border-radius: 500px;
    padding: 15px 30px;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    display: flex;
    align-items: center;
    color: #1364F3;
    gap: 10px;
}

.subtitle::before {
    position: relative;
    content: "";
    width: 30px;
    display: block;
    height: 1px;
    background-color: #1364F3;
}

.block_top-right {
    width: 1140px;
}

.block_top {
    margin-bottom: 60px;
}

.title {
    font-weight: 500;
    font-size: 48px;
    line-height: 130%;
    margin-bottom: 20px;
}

.title span {
    color: #1364F3;
}

.block_top-text {
    font-size: 20px;
    line-height: 130%;
    color: #434343;
}

.block_top-text p:not(:last-child) {
    margin-bottom: 20px;
}

.buy_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.buy_item {
    width: calc(50% - 10px);
    display: flex;
    justify-content: space-between;
}

.buy_item-img {
    width: calc(50% - 10px);
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    height: 510px;
}

.buy_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.buy_item-info {
    width: calc(50% - 10px);
    border-radius: 15px;
    padding: 30px;
    background: #FFFFFF;
}

.buy_item-info p {
    font-size: 18px;
    line-height: 130%;
    color: #434343;
}

.buy_item-info p:not(:last-child) {
    margin-bottom: 20px;
}

.category_item {
    width: calc(33.333% - 13.333px);
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    display: flex;
    transition: all 0.3s;
    flex-direction: column;
}

.category_item:hover {
    box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.1);
}

.category_item-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
}

.category_item-img {
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.category_item-img img {
    max-width: 100%;
    max-height: 100%;
}

.category_item-subtitle {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 15px;
    margin-top: auto;
}

.category_item-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.category_item-option {
    background: #F4F6FF;
    padding: 15px;
    border-radius: 500px;
    font-weight: 450;
    font-size: 14px;
    line-height: 130%;
    color: #1364F3;
    transition: all 0.3s;
}

.category_item-option:hover {
    background-color: #1364F3;
    color: #fff;
}

.category_item-desc {
    font-size: 14px;
    line-height: 130%;
    color: #434343;
}

.category_item-link {
    position: absolute;
    background: #F4F6FF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 30px;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.category_item-link:hover {
    background: #1364F3;
    transform: rotate(45deg);
}

.category_item-link:hover path {
    fill: #fff;
}

.why_wrapper {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(180deg, #1465F4 0%, #2238F2 100%);
    border-radius: 20px;
    padding: 60px;
    z-index: 1;
    position: relative;
}

.why_wrapper::before {
    position: absolute;
    content: "";
    background-image: url(../img/why_wrapper.svg);
    background-size: cover;
    bottom: 0;
    left: 0;
    width: 435px;
    height: 435px;
    animation: circleAnim 10s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.why_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 745px;
}

.why_left .title {
    color: #fff;
}

.why_items {
    width: 725px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.why_item {
    width: calc(50% - 10px);
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
}

.why_item-number {
    background: #F4F6FF;
    margin-bottom: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 24px;
    color: #1364F3;
}

.why_item-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
}

.why_item-text span {
    color: #1364F3;
}

.why_links {
    display: flex;
    gap: 10px;
}

.why_message {
    display: flex;
    transition: all 0.3s;
}

.why_message:hover {
    opacity: 0.8;
}

.why_link {
    margin-right: 40px;
}

.why_link-title {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
    display: block;
}

.why_link-text {
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFFE5;
}

.chose_wrapper {
    display: flex;
    justify-content: space-between;
}

.chose_left {
    width: calc(50% - 10px);
    background: linear-gradient(180deg, #1465F4 0%, #2238F2 100%);
    padding: 40px;
    border-radius: 15px;
    color: #fff;
}

.chose_left .title span {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.chose_subtitle {
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    text-align: right;
    margin-bottom: 60px;
}

.chose_right {
    width: calc(50% - 10px);
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    z-index: 1;
    position: relative;
}

.chose_text {
    font-size: 18px;
    line-height: 130%;
    color: #434343;
}

.chose_btn {
    margin-top: auto;
}

.chose_right-img {
    position: absolute;
    right: 10px;
    bottom: 0;
    display: flex;
    z-index: -1;
}

.works_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.works_left {
    width: 935px;
    display: flex;
    justify-content: space-between;
}

.works_right {
    width: 765px;
    background: linear-gradient(180deg, #1465F4 0%, #2238F2 100%);
    padding: 40px;
    color: #fff;
    border-radius: 15px;
    position: relative;
}

.works_tabs {
    display: flex;
    margin-bottom: 60px;
    padding-bottom: 15px;
    border-bottom: 1px solid #FFFFFF66;
    justify-content: space-between;
}

.works_tab {
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFFE5;
    opacity: 0.8;
    position: relative;
}

.works_tab.active {
    color: #FFFFFF;
    opacity: 1;
}

.works_tab.active::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fff;
    bottom: -15px;
    right: 0;
}

.works_subtitle {
    background: #FFFFFF33;
    padding: 10px 15px;
    border-radius: 500px;
    width: fit-content;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.works_title {
    font-weight: 500;
    font-size: 36px;
    line-height: 130%;
    margin-bottom: 60px;
    color: #fff;
}

.works_options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 60px;
    margin-bottom: 60px;
}

.works_option {
    width: calc(50% - 30px);
    display: flex;
    justify-content: space-between;
}

.works_option::after {
    position: relative;
    content: "";
    flex: auto;
    border-bottom: 1px dashed #FFFFFF66;
}

.works_option span {
    order: 1;
    margin: 0 5px;
}

.works_dots {
    width: 150px;
}

.works_dot {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 108px !important;
    cursor: pointer;
}

.works_img img,
.works_dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works_imgs {
    width: 765px;
}

.works_img {
    border-radius: 15px;
    overflow: hidden;
    height: 624px;
}

.works_content {
    display: none;
}

.works_content.active {
    display: block;
}

.works_arrows {
    display: flex;
    position: absolute;
    bottom: 40px;
    right: 40px;
    gap: 10px;
}

.works_arrow {
    cursor: pointer;
    display: flex;
}

.need_item {
    height: 750px;
    margin: 0 10px;
    padding: 30px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex !important;
    align-items: flex-end;
    color: #fff;
}

.need_item-img {
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.need_item-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(33, 31, 48, 0) 42.31%, rgba(33, 31, 48, 0.56) 78.75%, rgba(33, 31, 48, 0.7) 100%);
}

.need_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.need_item-info {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: all 0.3s;
    background: linear-gradient(180deg, #1465F4 0%, #2238F2 100%);
}

.need_item-info::before {
    position: absolute;
    content: "";
    background-image: url(../img/link2.svg);
    background-size: cover;
    top: 40px;
    right: 30px;
    width: 40px;
    height: 40px;
}

.need_item-info .need_item-title {
    margin-bottom: auto;

}

.need_item-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
}

.need_item-info .need_item-title {
    padding-right: 50px;
}

.need_item-info p {
    line-height: 150%;
    margin-bottom: 15px;
}

.need_item-info ul {
    line-height: 150%;
    margin-bottom: 15px;
    padding-left: 30px;
    list-style: disc;
}

.need_item:hover .need_item-info {
    opacity: 1;
}

.need_arrows {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.need_arrow {
    cursor: pointer;
    display: flex !important;
}

.sale_wrapper {
    background: linear-gradient(180deg, #1465F4 0%, #2238F2 100%);
    border-radius: 15px;
    color: #fff;
    text-align: center;
    padding: 100px;
    overflow: hidden;
    position: relative;
    background-image: url(../img/sale_wrapper.jpg);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.sale_wrapper::before {
    position: absolute;
    content: "";
    background-image: url(../img/sale_wrapper.svg);
    background-size: cover;
    width: 386px;
    height: 386px;
    left: -82px;
    bottom: -86px;
    z-index: -1;
    animation: circleAnim 10s linear infinite;
}

.sale_wrapper-img {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    z-index: -1;
}

.sale_title {
    font-weight: 500;
    font-size: 48px;
    line-height: 130%;
    margin-bottom: 20px;
}

.sale_title span {
    text-decoration: underline;
    text-underline-offset: 8px;
}

.sale_text {
    max-width: 940px;
    margin: 0 auto 60px;
    font-size: 24px;
    line-height: 130%;
}

.sale_btn {
    margin: 0 auto;
}

.advantages_wrapper {
    display: flex;
    align-items: flex-start;
    position: relative;
    justify-content: space-between;
    min-height: 580px;
}

.advantages_left {
    background: linear-gradient(180deg, #1465F4 0%, #2238F2 100%);
    padding: 50px;
    border-radius: 15px;
    color: #fff;
}

.advantages_left-inner {
    width: 560px;
}

.advantages_form-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 60px;
}

.inp {
    width: 100%;
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    margin-bottom: 20px;
    padding-left: 30px;
    height: 60px;
    background: none;
    color: #fff;
}

.inp::placeholder {
    color: #FFFFFF99;
}

.advantages_form-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 40px 0 20px;
}

.form_ok input {
    display: none;
}

.form_ok {
    display: block;
    cursor: pointer;
    font-size: 14px;
    line-height: 150%;
    padding-left: 35px;
    position: relative;
    color: #FFFFFF99;
}

.form_ok a {
    color: #fff;
    text-decoration: underline;
}

.form_ok span {
    background: #FFFFFF;
    border-radius: 2px;
    width: 20px;
    height: 20px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.form_ok input:checked+span {
    background-image: url(../img/check.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.advantages_right {
    width: 1140px;
}

.advantages_item {
    background: #FFFFFF;
    border-radius: 15px;
    margin-bottom: 20px;
}

.advantages_item:last-child {
    margin-bottom: 0;
}

.advantages_item-title {
    padding: 30px;
    gap: 20px;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.advantages_item-title span {
    background: #F4F6FF;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    min-width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 24px;
    color: #1364F3;
}

.advantages_item-text {
    padding: 0 30px 30px;
    display: none;
}

.advantages_item-text p {
    line-height: 150%;
    margin-bottom: 10px;
}

.advantages_item-text p:last-child {
    margin-bottom: 0;
}

.advantages_item-text ul {
    line-height: 150%;
    margin-bottom: 10px;
    padding-left: 30px;
    list-style: disc;
}

.advantages_item-desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #1364F3;
}

.reviews .title {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.reviews .title span {
    display: contents;
}

.reviews_slider .slick-track {
    display: flex;
}

.reviews_slider-wrapper {
    position: relative;
}

.reviews_slider-arrows {
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url(../img/reviews_slider-arrows.svg);
    background-size: cover;
    background-position: center;
    z-index: 2;
    display: flex;
    gap: 10px;
    width: 155px;
    height: 85px;
    align-items: flex-end;
    justify-content: flex-end;
}

.reviews_slider-arrow {
    display: flex;
}

.reviews_slider {
    width: 100%;
}

.reviews_slide {
    margin: 0 10px;
    background: #FFFFFF;
    height: inherit;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    padding: 90px 30px 30px;
}

.reviews_slide::before {
    position: absolute;
    content: "";
    background-image: url(../img/reviews_slide-bef.svg);
    background-size: cover;
    display: block;
    width: 39px;
    height: 30px;
    top: 30px;
    left: 30px;
}

.reviews_slide:has(img)::before {
    display: none;
}

.reviews_slide img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    object-fit: cover;
}

.reviews_slide-text {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 30px;
    color: #434343;
}

.reviews_slide-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 5px;
    color: #1364F3;
}

.reviews_slide-subtitle {
    font-size: 16px;
    line-height: 140%;
    color: #434343;
}

.reviews_btn {
    margin-top: 60px;
    margin-left: auto;
}

.steps_items {
    display: flex;
    gap: 20px;
}

.steps_item {
    width: calc(25% - 15px);
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
}

.steps_item-number {
    background: #F4F6FF;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 24px;
    color: #1364F3;
}

.steps_item-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 15px;
}

.steps_item-text {
    font-size: 16px;
    line-height: 130%;
    color: #434343;
}

.steps_item-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 6px;
}

.why_form {
    width: 725px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.why_form-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 20px;
    color: #FFFFFF;
    width: 100%;
}

.why_form .inp {
    margin: 0;
    width: calc(50% - 10px);
}

.why_form .advantages_form-btn {
    margin: 0;
    width: calc(50% - 10px);
}

.why_wrapper-calc::before {
    background-image: url(../img/why_wrapper2.svg);
    width: 933px;
    height: 382px;
    top: 42px;
    left: -20px;
    animation: none;
}

.faq_items {
    columns: 2;
    gap: 20px;
}

.faq_item {
    background: #FFFFFF;
    border-radius: 15px;
    margin-bottom: 20px;
    page-break-inside: avoid;
    break-inside: avoid;
}

.faq_item-title {
    padding: 30px 60px 30px 30px;
    font-weight: 500;
    cursor: pointer;
    font-size: 20px;
    position: relative;
    line-height: 130%;
}



.faq_item-title span {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.faq_item-title span::before {
    position: absolute;
    content: "";
    background: #1364F3;
    width: 2px;
    height: 100%;
    transition: all 0.3s;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

.faq_item-title span::after {
    position: absolute;
    content: "";
    background: #1364F3;
    width: 100%;
    height: 2px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

.faq_item-title.active span::before {
    transform: translate(50%, -50%) rotate(90deg);
}

.faq_item-text {
    padding: 0 30px 30px;
    display: none;
}

.faq_item-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 130%;
    color: #434343;
}

.faq_item-text ul {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 130%;
    color: #434343;
    list-style: disc;
    padding-left: 30px;
}

.faq_item-text p:last-child {
    margin-bottom: 0;
}

.contacts_left {
    background: linear-gradient(180deg, #1465F4 0%, #2238F2 100%);
    border-radius: 15px;
    padding: 50px;
    width: 560px;
    color: #fff;
}

.contacts_title {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    display: block;
    margin-bottom: 20px;
    color: #fff;
}

.contacts_links {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contacts_number {
    display: block;
    margin-right: 60px;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
}

.contacts_number span {
    display: block;
    font-size: 14px;
}

.contacts_messages {
    display: flex;
    gap: 10px;
}

.contacts_message {
    display: flex;
}

.contacts_times {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.contacts_time {
    width: calc(50% - 15px);
    color: #FFFFFFE5;
}

.contacts_time span {
    display: block;
    font-weight: 500;
    font-size: 20px;
    margin-top: 10px;
    color: #fff;
}

.contacts_btn {
    width: 100%;
}

.contacts_wrapper {
    display: flex;
    justify-content: space-between;
}

.contacts_form {
    border-top: 1px solid #FFFFFF33;
    padding-top: 40px;
    margin-top: 40px;
}

.contacts_form-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 20px 0;
}

.contacts_map {
    width: 1140px;
    height: 800px;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
}

.contacts_map iframe {
    display: flex;
    width: 100%;
    height: 100%;
    border: none;
}

.blog_item {
    background: #FFFFFF;
    border-radius: 15px;
    margin: 0 10px;
    overflow: hidden;
}

.blog_item-img {
    height: 300px;
    display: flex;
}

.blog_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_item-info {
    padding: 30px;
}

.blog_item-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 15px;
}

.blog_item-text {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 30px;
    color: #434343;
}

.blog_item-link {
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    color: #1364F3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog_slider .slick-arrow {
    position: absolute;
    bottom: -90px;
    background: none;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    z-index: 1;
    width: 60px;
    height: 60px;
    border: none;
    font-size: 0;
}

.blog_slider .slick-next {
    background-image: url(../img/arrow_right2.svg);
    left: 70px;
}

.blog_slider .slick-prev {
    background-image: url(../img/arrow_left2.svg);
    left: 0;
}

.blog_btn {
    margin-left: auto;
    margin-top: 30px;
}

.footer {
    background: linear-gradient(180deg, #1465F4 0%, #2238F2 100%);
    padding: 60px;
    max-width: 1880px;
    margin: 0 auto 20px;
    border-radius: 20px;
}

.footer_wrapper {
    display: flex;
    justify-content: space-between;
}

.footer_left {
    width: 380px;
}

.footer_item {
    width: 400px;
    padding-left: 60px;
    border-left: 1px solid #FFFFFF33;
}

.footer_logo {
    display: flex;
    margin-bottom: 30px;
}

.footer_item-title {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
}

.footer_menu a {
    color: #FFFFFFE5;
    display: block;
    margin-bottom: 20px;
    display: block;
}

.footer_inner {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    margin-top: 60px;
    border-top: 1px solid #FFFFFF33;
}

.footer_inner-item {
    color: #FFFFFFE5;
}

.aside_links {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #FFFFFF;
    border-radius: 30px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 4;
}

.aside_link {
    transition: all 0.3s;
}

.aside_link:hover {
    opacity: 0.8;
}

.popup_body {
    background: linear-gradient(180deg, #1465F4 0%, #2238F2 100%);
    width: 600px;
    border-radius: 15px;
    padding: 50px;
    overflow: visible;
}

.popup_body-title {
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 60px;
}

.popup_body .fancybox-close-small svg {
    display: none;
}

.popup_body .fancybox-close-small {
    width: 52px;
    height: 52px;
    top: -26px;
    background-image: url(../img/close.svg);
    right: -26px;
    opacity: 1;
}

.popup_body-text {
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

#popup_thanks .popup_body-title {
    margin-bottom: 15px;
}

.form_file {
    display: flex;
    cursor: pointer;
    align-items: center;
    gap: 20px;
    width: calc(50% - 10px);
}

.form_file span {
    color: #FFFFFF99;
}

.form_file input {
    display: none;
}

#popup_calc .popup_body-title {
    text-align: left;
    margin-bottom: 40px;
}

#popup_cart {
    background: #fff;
    padding: 30px;
}

#popup_cart .contacts_form-btn {
    margin-bottom: 0;
}

.popup_cart-item {
    display: flex;
    border-bottom: 1px solid #EAEEF3;
    padding-bottom: 20px;
    align-items: center;
    margin-bottom: 20px;
    gap: 30px;
}

.popup_cart-img {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100px;
}

.popup_cart-img img {
    max-width: 100%;
    max-height: 100%;
}

.popup_cart-delete {
    display: flex;
    background: none;
    width: 52px;
    min-width: 52px;
    height: 52px;
    border: none;
    cursor: pointer;
}

.popup_cart-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 20px;
}

.popup_cart-options {
    display: flex;
    gap: 20px;
}

.popup_cart-count {
    color: #434343;
}

.popup_cart-price {
    font-weight: 500;
    line-height: 130%;
}

.popup_cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.popup_cart-value {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #434343;
}

.popup_cart-value span {
    color: #1364F3;
    font-size: 24px;
    margin-left: 10px;
}

.header_catalog-back,
.header_inner .header_catalog-btn,
.menu_burger {
    display: none;
}


.page_default {
    margin-top: 162px;
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.crumb {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #161616;
}

.crumb::after {
    position: relative;
    content: "";
    background-color: #161616;
    width: 20px;
    height: 1px;
}

.crumb:last-child {
    color: #434343;
    opacity: 0.5;
}

.crumb:last-child::after {
    display: none;
}

.page_default-title {
    font-weight: 500;
    font-size: 48px;
    line-height: 130%;
    margin-bottom: 20px;
}

.page_default-text {
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 40px;
    color: #434343;
}

.catalog_wrapper {
    display: flex;
    justify-content: space-between;
}

.catalog_aside {

    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
}

.catalog_left {
    width: 415px;
}

.catalog_aside-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 25px;
}

.catalog_aside-range_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px 20px;
}

.catalog_aside-inp {
    width: calc(50% - 10px);
    border: 1px solid #EAEEF3;
    border-radius: 12px;
    position: relative;
    height: 54px;
}

.catalog_aside-inp input {
    width: 100%;
    height: 100%;
    text-align: right;
    padding: 0 20px;
    border: none;
    background: none;
}

.catalog_aside-placeholder {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #7E8794;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield;
    /* Firefox */
}

.catalog_aside-range {
    background: #EAEEF3;
    border-radius: 2px;
    height: 2px;
    position: relative;
    width: 100%;
}

.ui-slider-range {
    position: absolute;
    height: 100%;
    background: #1364F3;
    background: #1364F3;
    border-radius: 2px;
}

.ui-slider-handle {
    background: #FFFFFF;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: 2px solid #1364F3;
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
}

.ui-slider-handle:last-child {
    transform: translate(-50%, -50%);

}

.catalog_aside-check {
    display: block;
    cursor: pointer;
}

.catalog_aside-check input {
    display: none;
}

.catalog_aside-check span {
    background: #F4F6FF;
    border-radius: 100px;
    padding: 7px 15px;
    display: block;
    color: #434343;
}

.catalog_aside-check input:checked+span {
    background: #1364F3;
    color: #FFFFFF;
}

.catalog_aside-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog_aside-item {
    margin-bottom: 35px;
    padding-bottom: 40px;
    border-bottom: 1px solid #EAEEF3;
    position: relative;
}

.catalog_aside-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.catalog_aside-title {
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

.catalog_aside-title::before {
    position: absolute;
    content: "";
    background-image: url(../img/aside_arrow.svg);
    background-size: cover;
    width: 12px;
    height: 6px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.catalog_aside-title.active::before {
    transform: translateY(-50%) rotate(180deg);
}

.catalog_aside-title.active {
    margin-bottom: 0;
}

.catalog_sale {
    background: linear-gradient(180deg, #1465F4 0%, #2238F2 100%);
    margin-top: 20px;
    border-radius: 15px;
    padding: 30px;
    color: #fff;
}

.catalog_sale-tegs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 10px;
}

.catalog_sale-teg {
    background: #FFFFFF33;
    border-radius: 20px;
    color: #FFFFFFE5;
    padding: 12px 15px;
    font-size: 14px;
}

.catalog_sale-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 10px;
}

.catalog_sale-text {
    line-height: 150%;
    margin-bottom: 30px;
}

.catalog_sale-btn {
    width: 100%;
}

.catalog_content {
    width: calc(100% - 435px);
}

.catalog_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.catalog_item {
    width: calc(50% - 10px);
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.catalog_item:hover {
    box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.1);

}

.catalog_item-left {
    width: 260px;
}

.catalog_item-tegs {
    display: flex;
    gap: 10px;
}

.catalog_item-teg {
    background: #1364F3;
    border-radius: 500px;
    padding: 6px 12px;
    font-weight: 450;
    font-size: 13px;
    color: #fff;
    line-height: 130%;
}

.catalog_item-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    align-items: center;
}

.catalog_item-favorite {
    padding: 0;
    cursor: pointer;
    background: none;
    border: none;
    background: #F4F6FF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog_item-right {
    width: 292px;
}

.catalog_item-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 256px;
}

.catalog_item-img img {
    max-width: 100%;
    max-height: 100%;
}

.catalog_item-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 130%;
    color: #434343;
}

.catalog_item-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 10px;
    display: block;
    color: #161616;
}

.catalog_item-subtitle {
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #434343;
}

.catalog_item-options {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
}

.catalog_item-option {
    background: #F4F6FF;
    border-radius: 100px;
    padding: 7px 10px;
    font-weight: 450;
    font-size: 14px;
    line-height: 130%;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1364F3;
}

.catalog_item-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #161616;
}

.catalog_item-price .old {
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    opacity: 0.5;
    text-decoration: line-through;
    color: #434343;
}

.catalog_item-bot {
    display: flex;
    justify-content: space-between;
}

.catalog_item-btn {
    width: calc(50% - 10px);
    border: none;
    cursor: pointer;
    height: 45px;
    font-size: 16px;
}

.catalog_item-btn img {
    transition: all 0.3s;
}

.catalog_item-btn:hover img {
    transform: rotate(45deg);
}

.catalog_item-coutner {
    width: calc(50% - 10px);
    display: flex;
    user-select: none;
    height: 45px;
    border: 1px solid #EAEEF3;
    padding: 4px 8px;
    align-items: center;
    border-radius: 100px;
}

.count-inp {
    width: calc(100% - 60px);
    border: none;
    background: none;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    height: 100%;
}

.count-arrow {
    display: flex;
    cursor: pointer;
}

.pagin {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.pagin a {
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #434343;
    font-weight: 500;
    border-radius: 50%;
}

.pagin a.active {
    background: #1364F3;
    color: #fff;
}

.catalog_aside-close,
.catalog_filter-open {
    display: none;
}

.card_wrapper {
    display: flex;
    margin-bottom: 30px;
    justify-content: space-between;
}

.card_center {
    width: 633px;
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
}

.card_left {
    width: 632px;
    display: flex;
    justify-content: space-between;
}

.card_dots {
    width: 150px;
}

.card_dot {
    display: flex !important;
    justify-content: center;
    height: 145px !important;
    margin-bottom: 10px;
    align-items: center;
    border-radius: 15px;
    cursor: pointer;
    background: #fff;
    overflow: hidden;
}

.card_dot img {
    max-width: 100%;
    max-height: 100%;
}

.card_imgs {
    width: 472px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
}

.card_img {
    display: flex !important;
    justify-content: center;
    height: 451px;
    align-items: center;
}

.card_img img {
    max-width: 100%;
    max-height: 100%;
}

.card_right {
    width: 415px;
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.card_title {
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 20px;
}

.card_inner {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 40px;
}

.card_status {
    font-size: 14px;
    line-height: 130%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #434343;
}

.card_art {
    font-size: 14px;
    line-height: 130%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #434343;
}

.card_favorite {
    font-size: 14px;
    line-height: 130%;
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    padding: 0;
    cursor: pointer;
    border: none;
    color: #434343;
}

.card_sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.card_sizes-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 10px;
    width: 100%;
}

.card_size {
    display: block;
    cursor: pointer;
}

.card_size input {
    display: none;
}

.card_size span {
    background: #F4F6FF;
    padding: 8px 15px;
    border-radius: 100px;
    display: flex;
    font-weight: 450;
    font-size: 14px;
    line-height: 130%;
    color: #7E8794;
}

.card_size input:checked+span {
    color: #1364F3;
}

.card_total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.card_total .catalog_item-coutner {
    width: 167px;
}

.card_price {
    display: flex;
    gap: 20px;
    align-items: center;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #1364F3;
}

.card_price .old {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    text-decoration: line-through;
    color: #434343;
}

.card_btn {
    border: none;
    cursor: pointer;
    height: 50px;
    width: calc(50% - 10px);
}

.card_bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card_select {
    height: 50px;
    width: 100%;
    border-radius: 100px;
    border: 1px solid #EAEEF3;
    padding: 0 25px;
    color: #434343;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.card_select-wrapper {
    width: calc(50% - 10px);
    position: relative;
}

.card_select-wrapper::before {
    position: absolute;
    content: "";
    background-image: url(../img/select_arrow.svg);
    background-size: cover;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 8px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.card_option {
    line-height: 130%;
    color: #434343;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card_map-btn {
    width: 100%;
    height: 45px;
    margin-top: auto;
}

.card_tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.card_tab {
    background: #FFFFFF;
    border-radius: 100px;
    padding: 14px 24px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #434343;
}

.card_tab.active {
    background: #1364F3;
    color: #fff;
}


.card_content {
    display: none;
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
}

.card_content.active {
    display: block;
}

.card_content-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 20px;
}

.card_content-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 40px;
}

.card_content-option {
    color: #434343;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: calc(33.333% - 26.666px);
}

.card_content-option::after {
    position: relative;
    content: "";
    flex: auto;
    margin: 0 5px;
    border-bottom: 1px dashed #EAEEF3;
}

.card_content-option span {
    order: 1;
}

.other_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.other_items .catalog_item {
    width: calc(25% - 15px);
    flex-direction: column;
}

.other_items .catalog_item-left {
    position: relative;
    width: 100%;
}

.other_items .catalog_item-right {
    width: 100%;
}

.other_items .catalog_item-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1;
}

.three_items .steps_item {
    width: calc(33.333% - 13.333px);
    position: relative;
}

.steps_item-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
}

.helps_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.helps_item {
    height: 300px;
    border-radius: 15px;
    width: calc(20% - 16px);
    padding: 30px;
    position: relative;
    display: flex;
    align-items: flex-end;
    border-radius: 15px;
    z-index: 1;
    overflow: hidden;
    font-weight: 500;
    line-height: 130%;
    color: #fff;
    transition: all 0.3s;
}

.helps_item:hover {
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.4);
}

.no_fix {
    position: relative !important;
    inset: auto !important;
}

.helps_item-img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    right: 0;
    display: flex;
}

.helps_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.helps_item-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(33, 31, 48, 0) 42.31%, rgba(33, 31, 48, 0.56) 78.75%, rgba(33, 31, 48, 0.7) 100%);
}

.need_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.need_wrapper .need_item {
    width: calc(25% - 15px);
    height: 560px;
    margin: 0;
}

.need_wrapper .need_item-info p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 150%;
    color: #FFFFFFCC;
}

.need_wrapper .need_item-info::before {
    display: none;
}

.need_item-desc {
    font-weight: 500;
    font-style: Italic;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFFCC;
    position: relative;
    margin-bottom: 20px;
}

.need_item-desc::before {
    position: absolute;
    content: "";
    background-image: url(../img/need_item.svg);
    background-size: cover;
    width: 39px;
    height: 30px;
    top: 0;
    left: 0;
}

.need_wrapper .need_item-info .need_item-title {
    padding: 0;
}

.need_wrapper+.why_wrapper {
    margin-top: 60px;
}

.why_consult-right {
    width: 725px;
}

.why_consult .title {
    width: 725px;
    font-size: 40px;
}

.why_consult-right p {
    color: #fff;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 15px;
}

.why_consult-btn {
    width: 100%;
    margin-top: 30px;
}

.why_consult::before {
    background-image: url(../img/why_wrapper2.svg);
    width: 933px;
    height: 382px;
    top: 42px;
    left: -20px;
    animation: none;
}

.cases_slide {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
}

.cases_info {
    width: 765px;
    background: #FFFFFF;
    padding: 50px;
    border-radius: 15px;
    position: relative;
}

.cases_arrows {
    position: absolute;
    display: flex;
    bottom: 50px;
    right: 50px;
    gap: 10px;
}

.cases_arrow {
    display: flex;
    cursor: pointer;
}

.cases_title {
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 20px;
}

.cases_subtitle {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #434343;
    margin-bottom: 30px;
}

.cases_options {
    margin-bottom: 30px;
}

.cases_option {
    padding-left: 52px;
    position: relative;
    padding-bottom: 20px;
}

.cases_option::before {
    position: absolute;
    content: "";
    width: 32px;
    height: 32px;
    background-image: url(../img/cases_option.svg);
    background-size: cover;
    left: 0;
    top: 0;
}

.cases_option::after {
    position: absolute;
    content: "";
    border: 1px solid #1364F31A;
    width: 1px;
    left: 15px;
    top: 32px;
    height: calc(100% - 32px);
}

.cases_option:last-child::after {
    display: none;
}

.cases_option:last-child {
    padding-bottom: 0;
}

.cases_option-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 10px;
    color: #1364F3;
}

.cases_option ul {
    line-height: 130%;
    color: #434343;
    list-style: disc;
    padding-left: 30px;
}

.cases_option p {
    line-height: 130%;
    color: #434343;
}

.cases_price-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 10px;
    color: #434343;
}

.cases_price {
    display: flex;
    gap: 20px;
    align-items: center;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #1364F3;
}

.cases_price .old {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    text-decoration: line-through;
    color: #434343;
}

.cases_left {
    width: 935px;
    justify-content: space-between;
    display: flex;
}

.cases_dots {
    width: 150px;
}

.cases_imgs {
    width: 765px;
}

.cases_img {
    display: flex;
    height: 727px;
    border-radius: 15px;
    overflow: hidden;
}

.cases_dot {
    margin-bottom: 20px;
    height: 129px !important;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.cases_dot img,
.cases_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why_text {
    font-size: 24px;
    line-height: 130%;
    color: #fff;
}

.home_title {
    font-weight: 500;
    font-size: 64px;
    line-height: 130%;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.home_title span {
    color: #1364F3;
}

.home_text {
    font-size: 24px;
    margin-bottom: 60px;
    color: #434343;
}

.home_dot {
    background: #FFFFFF;
    border-radius: 100px;
    padding: 15px 30px;
    gap: 15px;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    display: flex;
    align-items: center;
    color: #1364F3;
    position: absolute;
    width: fit-content;
}

.home_dot:nth-child(1) {
    transform: rotate(-8deg);
    left: 140px;
    top: -30px;
}

.home_dot:nth-child(2) {
    transform: rotate(5deg);
    left: 595px;
    top: -30px;
}

.home_dot:nth-child(3) {
    transform: rotate(-5deg);
    right: 165px;
    top: -30px;
}

.home_dot:nth-child(4) {
    transform: rotate(-8deg);
    bottom: 18px;
    left: 206px;
}

.home_dot:nth-child(5) {
    transform: rotate(8deg);
    bottom: 40px;
    right: 186px;
}

.seo_block-item {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
}

.seo_block-item:nth-child(2n) {
    flex-direction: row-reverse;
}

.seo_block-item:last-child {
    margin-bottom: 0;
}

.seo_block-info {
    width: calc(50% - 10px);
    background: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
}

.seo_block-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 20px;
}

.seo_block-info p {
    color: #434343;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 130%;
}

.seo_block-info p:last-child {
    margin-bottom: 0;
}

.seo_block-info ul {
    color: #434343;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 130%;
    list-style: disc;
    padding-left: 30px;
}

.seo_block-img {
    width: calc(50% - 10px);
    border-radius: 15px;
    display: flex;
    overflow: hidden;
}

.seo_block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantages_form-text {
    font-size: 20px;
    line-height: 130%;
    margin-top: -30px;
    margin-bottom: 30px;
}

.advantages_links {
    border-bottom: 1px solid #FFFFFF33;
    border-top: 1px solid #FFFFFF33;
    padding: 40px 0 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.advantages_form-subtitle {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 30px;
    width: 100%;
    line-height: 130%;
}






@media (max-width: 1760px) {
    .container {
        max-width: 1180px;
    }

    .header {
        padding: 20px 0;
        width: calc(100% - 30px);
    }

    .menu {
        gap: 10px;
    }

    .header_message {
        width: 40px;
    }

    .header_message img {
        width: 100%;
        height: auto;
    }

    .menu>li>a {
        gap: 10px;
        padding: 12px 14px;
        font-size: 14px;
    }

    .header_number {
        font-size: 18px;
    }

    .header_links {
        padding-left: 55px;
    }

    .header_links::before {
        width: 40px;
        height: 40px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header_logo {
        width: 82px;
    }

    .header_logo img {
        width: 100%;
        height: auto;
    }

    .header_catalog-btn {
        padding: 14px 16px;
    }

    .main_title {
        font-size: 52px;
    }

    .main_img {
        width: 800px;
        top: 120px;
    }

    .btn {
        font-size: 16px;
    }

    .main_img img {
        width: 100%;
        height: auto;
    }

    .main_subtitle {
        font-size: 28px;
        max-width: 640px;
    }

    .main_options {
        flex-wrap: wrap;
    }

    .main_options-title {
        width: 100%;
        margin-right: 0;
    }

    .main_desc {
        max-width: 640px;
    }

    .main {
        margin-top: 140px;
    }

    .subtitle {
        font-size: 18px;
        max-width: 400px;
    }

    .why_consult .title {
        width: 100%;
    }

    .why_consult-right {
        width: 510px;
    }

    .why_consult .title {
        font-size: 32px;
    }

    .block_top-right {
        width: 730px;
    }

    .block_top-right br {
        display: none;
    }

    .title {
        font-size: 32px;
        line-height: 120%;
    }

    .category_item-img {
        height: 240px;
    }

    .category_item-option {
        padding: 12px;
        font-size: 12px;
    }

    .why_items,
    .why_left {
        width: calc(50% - 10px);
    }

    .why_links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .why_item {
        padding: 20px;
    }

    .why_item-number {
        width: 60px;
        height: 60px;
        margin-bottom: 14px;
    }

    .why_item-text {
        font-size: 18px;
    }

    .chose_subtitle {
        font-size: 28px;
    }

    .chose_right-img {
        width: 420px;
    }

    .chose_right-img img {
        width: 100%;
        height: auto;
    }

    .works_right {
        padding: 20px;
        width: 550px;
    }

    .works_tab {
        font-size: 15px;
    }

    .works_tabs {
        margin-bottom: 30px;
    }

    .works_left {
        width: 580px;
        flex-direction: column-reverse;
    }

    .works_imgs {
        width: 100%;
        margin-bottom: 10px;
    }

    .works_option {
        width: 100%;
    }

    .works_dots {
        width: 100%;
    }

    .works_dot {
        margin: 0 5px;
        height: 84px !important;
    }

    .need_item-info {
        padding: 20px;
    }

    .need_item-info ul:last-child {
        margin-bottom: 0;
    }

    .need_item {
        height: 640px;
    }

    .sale_wrapper-img {
        width: 560px;
    }

    .sale_wrapper-img img {
        width: 100%;
        height: auto;
    }

    .sale_wrapper {
        padding: 100px 200px;
    }

    .advantages_right {
        width: 720px;
    }

    .advantages_left {
        padding: 30px;
    }

    .advantages_left-inner {
        width: 420px;

    }

    .advantages_item-title {
        font-size: 20px;
    }

    .advantages_form-title {
        margin-bottom: 30px;
    }

    .steps_item {
        padding: 20px;
        width: calc(50% - 10px);
    }

    .steps_items {
        flex-wrap: wrap;
    }

    .steps_item-number {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
        font-size: 20px;
    }

    .steps_item-title {
        font-size: 18px;
    }

    .why_form {
        width: 500px;
    }

    .contacts_left {
        width: 420px;
        padding: 20px;
    }

    .contacts_map {
        width: 710px;
        height: 700px;
    }

    .contacts_form {
        padding-top: 20px;
        margin-top: 20px;
    }

    .blog_item-img {
        height: 195px;
    }

    .blog_item-info {
        padding: 20px;
    }

    .footer {
        margin: 0 20px 20px;
        padding: 30px;
    }

    .footer_item {
        padding-left: 30px;
        width: 260px;
    }

    .footer_left {
        width: 280px;
    }

    .contacts_times {
        gap: 20px;
        flex-direction: column;
    }

    .contacts_time {
        width: 100%;
    }

    .contacts_links {
        gap: 20px;
        align-items: flex-start;
        flex-direction: column;
    }

    .btn_white {
        font-size: 16px;
    }

    .catalog_left {
        width: 320px;
    }

    .catalog_content {
        width: calc(100% - 330px);
    }

    .catalog_item {
        width: 100%;
    }

    .catalog_item-right {
        width: calc(100% - 280px);
    }

    .catalog_sale-btn {
        font-size: 16px;
        padding: 10px;
    }

    .buy_item {
        flex-direction: column;
        gap: 10px;
    }

    .buy_item-img {
        width: 100%;
        height: 320px;
    }

    .buy_item-info {
        width: 100%;
    }

    .card_wrapper {
        flex-wrap: wrap;
        gap: 20px;
        align-items: flex-start;
    }

    .card_right {
        width: 100%;
        order: 1;
    }

    .card_center,
    .card_left {
        width: calc(50% - 10px);
    }

    .card_total {
        flex-wrap: wrap;
        gap: 20px;
    }

    .card_bot {
        flex-wrap: wrap;
        gap: 20px;
    }

    .card_btn,
    .card_select-wrapper {
        width: 100%;
    }

    .card_title {
        font-size: 24px;
    }

    .card_dots {
        width: 110px;
    }

    .card_imgs {
        width: 440px;
    }

    .card_dot {
        height: 117px !important;
    }

    .card_img {
        height: 340px;
    }

    .other_items .catalog_item {
        width: calc(33.333% - 13.333px);
    }

    .steps_item-icon {
        top: 20px;
        right: 20px;
    }

    .helps_item {
        width: calc(25% - 15px);
    }

    .need_wrapper .need_item {
        width: calc(33% - 13.333px);
        height: 420px;
    }

    .cases_left {
        width: 630px;
    }

    .cases_info {
        width: 500px;
        padding: 30px;
    }

    .cases_dots {
        width: 100px;
    }

    .cases_imgs {
        width: 518px;
    }

    .cases_img {
        height: 492px;
    }

    .cases_dot {
        margin-bottom: 10px;
        height: 115px !important;
    }

    .home_dot:nth-child(1) {
        left: 120px;
    }

    .home_dot:nth-child(2) {
        left: 390px;
    }

    .home_dot:nth-child(4) {
        left: 40px;
    }

    .home_dot:nth-child(5) {
        right: 120px;
    }

    .advantages_form-text {
        margin-top: 0;
    }

    .cases_arrows {
        bottom: 30px;
        right: 30px;
    }

    .cases_price {
        font-size: 22px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 950px;
    }

    .advantages_left {
        position: relative !important;
        inset: auto !important;
    }

    .header_order {
        display: none;
    }

    .header_number {
        font-size: 0;
        margin: 0;
        width: 40px;
        height: 40px;
        background-image: url(../img/header_number.svg);
        background-size: cover;
    }

    .header_links::before {
        display: none;
    }

    .header_links {
        padding: 0;
        margin-left: 10px;
    }

    .menu>li>a {
        padding: 0;
    }

    .menu {
        gap: 16px;
    }

    .main_img {
        width: 600px;
    }

    .main_title {
        margin-bottom: 42px;
    }

    .main_inner {
        flex-direction: column;
        margin-bottom: 40px;
        align-items: flex-start;
        gap: 20px;
    }

    .main_desc {
        text-align: left;
    }

    .main_btns {
        flex-direction: column;
        gap: 10px;
    }

    .block_top {
        flex-direction: column;
        gap: 20px;
    }

    .block_top-right {
        width: 100%;
    }

    .category_item {
        width: calc(50% - 10px);
    }

    .why_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .why_left {
        width: 100%;
    }

    .why_items {
        width: 100%;
    }

    .chose_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .chose_right,
    .chose_left {
        width: 100%;
    }

    .works_right,
    .works_left {
        width: calc(50% - 10px);
    }

    .works_title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .works_tabs {
        overflow: auto;
        width: calc(100% + 20px);
        gap: 14px;
        padding-right: 20px;
    }

    .works_tabs::-webkit-scrollbar {
        display: none;
    }

    .works_tab {
        white-space: nowrap;
    }

    .works_img {
        height: 370px;
    }

    .works_options {
        gap: 10px;
        margin-bottom: 20px;
    }

    .works_arrows {
        bottom: 20px;
        right: 20px;
    }

    .need_item-info {
        display: none;
    }

    .need_item {
        height: 520px;
    }

    .need_item-info ul,
    .need_item-info p {
        font-size: 14px;
    }

    .sale_wrapper {
        padding: 60px;
    }

    .sale_wrapper-img {
        width: 360px;
    }

    .advantages_wrapper {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .advantages_right {
        width: 100%;
    }

    .advantages_left-inner {
        width: 100%;
    }

    .steps_items {
        flex-wrap: wrap;
    }

    .steps_item {
        width: calc(50% - 10px);
    }

    .why_form {
        width: 100%;
    }

    .faq_item {
        width: 100%;
    }

    .faq_items {
        columns: unset;
    }

    .contacts_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contacts_left {
        width: 100%;
    }

    .contacts_map {
        width: 100%;
        height: 420px;
    }

    .footer_wrapper {
        flex-wrap: wrap;
    }

    .footer_left {
        width: 100%;
        margin-bottom: 30px;
    }

    .contacts_btn {
        width: 320px;
    }

    .contacts_times,
    .contacts_links {
        flex-direction: row;
        justify-content: flex-start;
    }

    .footer_inner {
        flex-wrap: wrap;
    }

    .contacts_time {
        width: auto;
    }

    .catalog_item-btn {
        width: calc(50% - 5px);
        font-size: 14px;
    }

    .card_left {
        flex-direction: column-reverse;
    }

    .other_items .catalog_item {
        padding: 20px;
    }

    .card_dots {
        width: 100%;
        margin-top: 10px;
    }

    .card_dot {
        margin: 0 10px 0 0;
    }

    .service_page .main_img {
        right: 0;
    }

    .helps_item {
        width: calc(33.333% - 13.333px);
    }

    .need_wrapper .need_item {
        width: calc(50% - 10px);
    }

    .why_consult-right {
        width: 100%;
    }

    .cases_left {
        flex-direction: column-reverse;
    }

    .cases_dots {
        width: 100%;
        margin-top: 10px;
    }

    .cases_left {
        width: calc(50% - 10px);
    }

    .cases_info {
        width: calc(50% - 10px);
    }

    .cases_imgs {
        width: 100%;
    }

    .cases_img {
        height: 430px;
    }

    .cases_dot {
        margin: 0 5px;
    }

    .cases_title {
        font-size: 24px;
    }

    .home_dot:nth-child(1) {
        left: 20px;
    }

    .home_dot:nth-child(2) {
        left: 280px;
    }

    .home_dot:nth-child(3) {
        right: 20px;
    }

    .home_dot:nth-child(4) {
        left: 0;
        bottom: 30px;
    }

    .home_dot:nth-child(5) {
        right: 20px;
    }

    .seo_block-info ul,
    .seo_block-info p {
        font-size: 16px;
    }

    .cases_info {
        padding-bottom: 120px;
    }
}

@media (max-width: 991.98px) {
    .container {
        max-width: 730px;
    }

    section {
        margin: 60px 0;
    }

    .main {
        margin-top: 120px;
    }

    .main_title {
        margin-bottom: 160px;
    }

    .main_img {
        top: 150px;
    }

    .why_wrapper {
        padding: 60px 20px;
    }

    .works_wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .works_right,
    .works_left {
        width: 100%;
    }

    .need_item {
        height: 410px;
        padding: 20px;
    }

    .sale_title {
        font-size: 32px;
    }

    .sale_wrapper-img {
        display: none;
    }

    .sale_wrapper {
        padding: 60px 20px;
    }

    .block_top {
        margin-bottom: 30px;
    }

    .reviews_slide {
        padding: 20px;
    }

    .reviews_slide::before {
        display: none;
    }

    .reviews_slide-text {
        font-size: 14px;
        line-height: 130%;
        margin-bottom: 10px;
    }

    .reviews_slide-title {
        font-size: 20px;
    }

    .reviews_slide-subtitle {
        font-size: 14px;
    }

    .blog_item-img {
        height: 172px;
    }

    .footer_inner {
        padding-top: 20px;
        gap: 20px;
    }

    .aside_links {
        bottom: 0;
        transform: none;
        top: auto;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        right: 0;
        border-radius: 10px 10px 0 0;
    }

    .header_inner {
        position: fixed;
        width: 100vw;
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        background-color: #fff;
        top: 0;
        overflow: auto;
        padding-bottom: 40px;
        right: 0;
        transition: all 0.3s;
        padding-top: 100px;
    }

    .header_messages,
    .header_logo {
        position: relative;
        z-index: 1;
    }

    .header_inner.active {
        opacity: 1;
        visibility: visible;
    }

    .header_messages {
        margin-left: auto;
        margin-right: 0px;
    }

    .header {
        top: 0px;
        padding: 10px 0;
        width: 100%;
        border-radius: 0;
    }

    .header_catalog .header_catalog-btn {
        display: none;
    }

    .header_messages,
    .header_logo,
    .header_links {
        z-index: 2;
    }

    .menu_burger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 1;
        margin-left: 20px;
    }

    .menu_burger::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        top: 0;
        right: 0;
        border-radius: 2px;
        transition: all 0.3s;
        background: #1364F3;
    }

    .menu_burger.active::before {
        transform: rotate(45deg);
        top: 9px;
    }

    .menu_burger::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        bottom: 0;
        right: 0;
        border-radius: 2px;
        transition: all 0.3s;
        background: #1364F3;
    }

    .menu_burger.active::after {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .menu_burger span {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        top: 9px;
        right: 0;
        border-radius: 2px;
        transition: all 0.3s;
        background: #1364F3;
    }

    .menu_burger.active span {
        transform: scale(0);
    }

    .chose_text {
        margin-bottom: 20px;
    }

    .menu {
        flex-direction: column;
        max-width: 700px;
        margin: 0 auto;
    }

    .menu>li>a {
        font-size: 18px;
    }

    .menu li {
        width: 100%;
        justify-content: space-between;
        position: relative;
        flex-wrap: wrap;
    }

    .menu li svg {
        right: 0;
        position: absolute;
        pointer-events: none;
        top: 10px;
        transition: all 0.3s;
    }

    .menu li.active svg {
        transform: rotate(180deg);
    }

    .menu li::before {
        display: none;
    }

    .menu_dropdown {
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        position: relative;
        width: 100%;
        inset: auto;
        padding: 20px 10px;
        display: none;
        transform: none;
        transition: none;
    }

    .menu_dropdown.big {
        padding: 20px 10px;
        inset: auto;
        transform: none;
    }

    .menu_dropdown-items {
        flex-wrap: wrap;
        gap: 30px;
    }

    .menu_dropdown-item::before {
        display: none;
    }

    .menu_dropdown-item a {
        white-space: normal;
    }

    .header_inner .header_catalog-btn {
        width: 200px;
        margin-left: calc((100vw - 700px) / 2);
        display: flex;
        margin-bottom: 20px;
    }

    .header_catalog-dropdown {
        z-index: 1;
        width: 100%;
        height: 100vh;
        top: 0;
        right: 0;
        padding-top: 100px;
        position: fixed;
    }

    .header_catalog:hover .header_catalog-dropdown {
        opacity: 0;
        visibility: hidden;
    }

    .header_catalog-dropdown.active {
        opacity: 1 !important;
        visibility: visible !important;

    }



    .header_catalog-back {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        gap: 10px;
    }

    .header_catalog-back img {
        width: 40px;
        height: auto;
    }

    .page_default {
        margin-top: 100px;
    }

    .page_default-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .catalog_sale {
        display: none;
    }

    .catalog_aside {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        opacity: 0;
        overflow: auto;
        z-index: 11;
        padding-top: 80px;
        visibility: hidden;
        transition: all 0.6s;
    }

    .catalog_aside.active {
        opacity: 1;
        visibility: visible;
    }

    .catalog_aside-close {
        position: absolute;
        display: flex;
        top: 20px;
        right: 20px;
        width: 40px;
    }

    .catalog_aside-close img {
        width: 100%;
        height: auto;
    }

    .catalog_left {
        width: 100%;
    }

    .catalog_wrapper {
        flex-direction: column;
    }

    .catalog_content {
        width: 100%;
    }

    .catalog_filter-open {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        gap: 10px;
        font-size: 18px;
        font-weight: 500;
        background: #1364F3;
        width: fit-content;
        color: #fff;
        padding: 6px 20px;
        border-radius: 100px;
    }

    .catalog_filter-open img {
        width: 32px;
        height: auto;
    }

    .card_center {
        width: 100%;
        order: -1;
    }

    .card_right,
    .card_left {
        width: 100%;
    }

    .card_imgs {
        width: 100%;
    }

    .card_tabs {
        overflow: auto;
        width: calc(100% + ((100vw - 700px) / 2));
        padding-right: calc((100vw - 700px) / 2);
    }

    .card_tabs::-webkit-scrollbar {
        display: none;
    }

    .card_tab {
        white-space: nowrap;
    }

    .card_content-options {
        gap: 20px;
    }

    .card_content-option {
        width: calc(50% - 10px);
    }

    .other_items .catalog_item {
        width: calc(50% - 10px);
    }

    .service_page::before {
        display: none;
    }

    .service_page .main_img {
        top: 150px;
    }

    .main_text {
        margin-bottom: 30px;
    }

    .three_items .steps_item {
        width: calc(50% - 10px);
    }

    .helps_item {
        width: calc(50% - 10px);
    }

    .need_wrapper .need_item {
        height: 380px;
    }

    .why_consult-right p {
        font-size: 16px;
    }

    .cases_slide {
        flex-direction: column;
        gap: 30px;
    }

    .cases_info {
        width: 100%;
    }

    .cases_left {
        width: 100%;
    }

    .home_title {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        line-height: 1.2;
        font-size: 32px;
    }

    .home_text {
        font-size: 20px;
    }

    .home_dot {
        position: relative;
        inset: auto !important;
        transform: none !important;
        order: 1;
    }

    .seo_block-item {
        flex-direction: column-reverse !important;
        gap: 20px;
    }

    .seo_block-img {
        width: 100%;
        height: auto;
    }

    .seo_block-info {
        width: 100%;
    }

    .cases_arrows {
        right: 50%;
        transform: translateX(50%);
    }

    .footer_item {
        padding-left: 0;
        width: 200px;
        border: none;
    }

    .footer {
        margin-bottom: 80px;
    }
}

@media (max-width: 767.98px) {
    .container {
        max-width: 100%;
    }

    .aside_links {
        padding: 10px 15px;
        gap: 14px;
    }

    .aside_link {
        width: 40px;
    }

    .aside_link img {
        width: 100%;
        height: auto;
    }

    .main_title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .main {
        margin-top: 100px;
    }

    .main_subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .main_img {
        position: relative;
        transform: none;
        inset: auto;
        width: 100%;
        margin-bottom: 20px;
    }

    .main_options-title {
        font-size: 18px;
    }

    .main_option {
        font-size: 14px;
        padding: 12px 20px;
    }

    .main_option::before {
        width: 12px;
    }

    .main_desc {
        font-size: 14px;
    }

    .btn_white,
    .btn {
        font-size: 14px;
    }

    .header_inner .header_catalog-btn {
        margin-left: 15px;
    }

    .menu_dropdown-item:nth-child(2) ul {
        columns: unset;
    }

    .menu {
        padding: 0 15px;
    }

    .menu_dropdown-title {
        font-size: 16px;
    }

    .subtitle {
        font-size: 16px;
        padding: 12px 20px;
    }

    .subtitle::before {
        width: 14px;
    }

    .title {
        font-size: 24px;
    }

    .block_top-text {
        margin-top: 20px;
        font-size: 16px;
    }

    .category_item {
        width: 100%;
        padding: 20px;
    }

    .category_items {
        gap: 10px;
    }

    .why_link-title {
        font-size: 18px;
    }

    .why_link {
        width: 100%;
        margin-right: 0;
    }

    .why_item {
        width: 100%;
    }

    .why_items {
        gap: 10px;
    }

    .chose_left {
        padding: 40px 20px;
    }

    .chose_subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .btn_white,
    .btn {
        padding: 14px 20px;
    }

    .chose_btn {
        width: 100%;
    }

    .chose_right {
        padding: 40px 20px;
    }

    .chose_text {
        font-size: 16px;
    }

    .chose_right-img {
        width: 100%;
    }

    .works_img {
        height: 300px;
    }

    .works_option {
        font-size: 14px;
    }

    .works_arrows {
        display: none;
    }

    .works_btn {
        width: 100%;
    }

    .need_arrows {
        display: none;
    }

    .need_item {
        width: 280px;
        height: 320px;
    }

    .need_items {
        width: calc(100% + 15px);
    }

    .need_item-title {
        font-size: 20px;
    }

    .sale_title {
        font-size: 24px;
    }

    .sale_text {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .sale_btn {
        width: 100%;
    }

    .block_top .title {
        margin-bottom: 0;
    }

    .advantages_item-title {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 10px;
    }

    .advantages_item-title span {
        width: 40px;
        height: 40px;
        font-size: 14px;
        min-width: 40px;
    }

    .advantages_item-text {
        padding: 0 20px 20px;
    }

    .advantages_item {
        margin-bottom: 10px;
    }

    .advantages_form-title {
        font-size: 28px;
    }

    .advantages_form-btn {
        margin-top: 20px;
    }

    .advantages_left {
        padding: 30px 20px;
    }

    .block_top .title {
        flex-direction: column;
        gap: 10px;
    }

    .block_top .title img {
        width: 90px;
        height: auto;
    }

    .reviews_slider-arrows {
        display: none;
    }

    .reviews_slider {
        width: calc(100% + 15px);
    }

    .reviews_slide {
        width: 280px;
    }

    .reviews_slide {
        height: auto;
    }

    .reviews_slide img {
        position: relative;
    }

    .reviews_slide:has(img) {
        padding: 0;
    }

    .reviews_btn {
        margin-top: 30px;
        width: 100%;
    }

    .reviews_slider .slick-track {
        display: block;
    }

    .steps_item {
        width: 100%;
    }

    .steps_items {
        gap: 10px;
    }

    .why_form-title {
        font-size: 24px;
    }

    .form_file,
    .why_form .inp {
        width: 100%;
    }

    .why_form .advantages_form-btn {
        width: 100%;
    }

    .faq_item-title {
        font-size: 18px;
        padding: 20px 50px 20px 20px;
    }

    .faq_item-text {
        padding: 0 20px 20px;
    }

    .faq_item-title span {
        right: 20px;
    }

    .faq_item {
        margin-bottom: 10px;
    }

    .contacts_title {
        font-size: 20px;
    }

    .contacts_times,
    .contacts_links {
        flex-direction: column;
    }

    .contacts_btn {
        width: 100%;
    }

    .contacts_map {
        height: 320px;
    }

    .blog_item {
        width: 280px;
    }

    .blog_slider {
        width: calc(100% + 15px);
    }

    .blog_item-title {
        font-size: 18px;
    }

    .blog_item-link {
        font-size: 16px;
    }

    .blog_item-img {
        height: 150px;
    }

    .blog_slider .slick-arrow {
        display: none;
    }

    .blog_btn {
        width: 100%;
    }

    .footer {
        margin: 0;
        border-radius: 0;
        padding: 30px 0 100px;
    }

    .footer_item {
        padding-left: 0;
        border: none;
        width: calc(50% - 10px);
        flex: auto;
    }

    .footer_item:nth-child(3) {
        order: 1;
    }

    .footer_item-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer_wrapper {
        gap: 20px;
    }

    .footer_inner {
        margin-top: 20px;
    }

    .crumb {
        font-size: 14px;
        gap: 10px;
    }

    .crumbs {
        gap: 10px;
    }

    .page_default-title {
        font-size: 32px;
    }

    .catalog_item {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    .catalog_item-left {
        width: 100%;
        position: relative;
    }

    .catalog_item-top {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
    }

    .catalog_item-status {
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .catalog_item-right {
        width: 100%;
    }

    .catalog_items {
        gap: 10px;
    }

    .pagin {
        margin-top: 20px;
        gap: 10px;
    }

    .pagin a {
        width: 40px;
        height: 40px;
    }

    .buy_item {
        width: 100%;
    }

    .buy_item-img {
        height: 280px;
    }

    .buy_item-info {
        padding: 20px;
    }

    .buy_item-info p {
        font-size: 16px;
    }

    .card_img {
        height: 280px;
    }

    .card_dots {
        width: calc(100% + 10px);
    }

    .card_dot {
        height: 104px !important;
    }

    .card_center {
        padding: 30px 20px;
    }

    .card_title {
        font-size: 24px;
    }

    .catalog_item-subtitle .catalog_item-status {
        position: relative;
    }

    .card_inner {
        gap: 20px;
        margin-bottom: 20px;
    }

    .card_total {
        flex-direction: column;
        margin-bottom: 20px;
        align-items: flex-start;
        gap: 16px;
    }

    .card_price .old {
        font-size: 16px;
    }

    .card_price {
        font-size: 20px;
    }

    .card_bot {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .card_select-wrapper {
        width: 100%;
    }

    .card_btn {
        width: 100%;
    }

    .card_tabs {
        overflow: auto;
        width: calc(100% + 15px);
        padding-right: 15px;
        gap: 10px;
    }

    .card_tab {
        font-size: 14px;
    }

    .card_content {
        padding: 30px 20px;
    }

    .card_content-option {
        width: 100%;
    }

    .other_items .catalog_item {
        width: 100%;
    }

    .other_items {
        gap: 10px;
    }

    .service_page .main_img {
        top: 0;
    }

    .main_text {
        font-size: 20px;
    }

    .three_items .steps_item {
        width: 100%;
    }

    .three_items {
        gap: 10px;
    }

    .helps_items {
        flex-wrap: nowrap;
        gap: 10px;
        overflow: auto;
        padding-right: 15px;
        width: calc(100% + 15px);
    }

    .helps_items::-webkit-scrollbar {
        display: none;
    }

    .helps_item {
        padding: 20px;
        width: 280px;
        min-width: 280px;
        height: 260px;
    }

    .need_wrapper {
        gap: 10px;
    }

    .need_wrapper .need_item {
        width: 100%;
        height: 320px;
    }

    .why_consult .title {
        font-size: 24px;
        margin-bottom: 0;
    }

    .cases_img {
        height: 280px;
    }

    .cases_slide {
        gap: 10px;
    }

    .cases_dot {
        height: 100px !important;
    }

    .cases_price {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .home_title {
        font-size: 24px;
        text-align: left;
        margin-bottom: 20px;
    }

    .home_text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .steps_item-icon {
        width: 40px;
    }

    .steps_item-icon img {
        width: 100%;
        height: auto;
    }

    .home_title span {
        display: contents;
    }

    .home_dot {
        font-size: 12px;
        padding: 10px 20px;
        gap: 10px;
    }

    .home_dot img {
        width: 20px;
        height: auto;
    }

    .seo_block-info {
        padding: 20px;
    }

    .advantages_form-text {
        font-size: 16px;
    }

    .advantages_form-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .contacts_number {
        margin-right: 0;
    }

    .advantages_links {
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .why_text {
        font-size: 16px;
    }

    .cases_arrows {
        display: none;
    }

    .cases_info {
        padding-bottom: 20px;
    }

    .cases_slider {
        width: calc(100% + 15px);
    }

    .cases_slide {
        width: 300px;
        margin-right: 10px;
    }

    .cases_title {
        font-size: 20px;
    }

    .cases_subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .popup_body {
        padding: 40px 20px;
    }

    .popup_body-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .popup_body .fancybox-close-small {
        right: 0;
        width: 42px;
        height: 42px;
        background-size: cover;
        top: -21px;
    }

    .contacts_form-btn {
        margin-top: 10px;
    }

    .page_default-text {
        display: none;
    }

    .cases_option::before {
        width: 24px;
        height: 24px;
    }

    .cases_option::after {
        left: 11px;
        top: 24px;
        height: calc(100% - 24px);
    }

    .cases_option {
        padding-left: 36px;
        padding-bottom: 10px;
    }

    .cases_option p {
        font-size: 14px;
    }

    .cases_option ul {
        padding-left: 20px;
        font-size: 14px;
    }

    .cases_info {
        padding: 20px;
    }

    .cases_option-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
}