/*! 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: #FFFFFF;
    color: #1B1B1D;
    font-family: "Inter Tight", sans-serif;
}

a {
    text-decoration: none;
}

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

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

.header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    background-color: #fff;
    transition: all 0.3s;
}

.header.fixed {
    box-shadow: 0px 8px 25px 0px #0000000D;
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_logo-img {
    display: flex;
    margin-bottom: 5px;
}

.header_logo-title {
    width: 138px;
    font-size: 14px;
    line-height: 120%;
    color: #8A8A8A;
}

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

.menu>li {
    display: flex;
    position: relative;
    align-items: center;
    gap: 5px;
    padding: 40px 0;
}



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

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

.menu li svg path,
.menu li svg {
    transition: all 0.3s;
}

.menu li:hover svg {
    transform: rotate(180deg);
}

.menu li:hover svg path {
    fill: #000;
}

.menu>li:hover .menu_dropdown {
    opacity: 1;
    visibility: visible;
}

.menu_dropdown {
    position: absolute;
    background: #FFFFFF;
    box-shadow: 0px 15px 25px 0px #0000000D;
    width: 280px;
    top: 100%;
    left: -50px;
    border-radius: 0 0 20px 20px;
    padding: 0 50px 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.menu_dropdown a {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 20px;
    color: #000000;
    display: block;
}

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

.header_message {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header_message-link {
    display: flex;
    transition: all 0.3s;
}

.header_message-link:hover {
    opacity: 0.6;
}

.header_message-title {
    font-size: 14px;
    line-height: 120%;
    color: #8A8A8A;
}

.header_message-title span {
    font-weight: 500;
    color: #1B1B1D;
    display: block;
}

.header_number-title {
    font-size: 14px;
    line-height: 120%;
    color: #8A8A8A;
    margin-bottom: 5px;
}

.header_number-title span {
    color: #1B1B1D;
}

.header_number-link {
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    color: #1B1B1D;
    transition: all 0.3s;
}

.header_number-link:hover {
    opacity: 0.6;
}

.main {
    margin-bottom: 123px;
    margin-top: 120px;
}

.main_wrapper {
    background-image: url(../img/main_wrapper.jpg);
    background-size: cover;
    background-position: center;
    padding: 90px;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 80px;
    border-radius: 30px;
    z-index: 1;
}

.main_subtitle {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 20px;
    flex-wrap: wrap;
    color: #8A8A8A;
}


.main_title {
    font-weight: 600;
    font-size: 52px;
    line-height: 110%;
    margin: 0 auto 60px;
    max-width: 864px;
}

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

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

.main_btn {
    position: relative;
}

.main_btn:nth-child(1)::before {
    position: absolute;
    content: "";
    background-image: url(../img/main_btn1.svg);
    background-size: cover;
    width: 60px;
    height: 39px;
    top: -42px;
    left: -64px;
}

.main_btn:nth-child(2)::before {
    position: absolute;
    content: "";
    background-image: url(../img/main_btn2.svg);
    background-size: cover;
    width: 48px;
    height: 33px;
    bottom: -40px;
    right: -54px;
}

.main_anim {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 420px;
    height: 400px;
    pointer-events: none;
}

.main_anim-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#imgTwo {
    opacity: 0;
}

.btn_orange {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFC83C;
    border-radius: 12px;
    font-weight: 600;
    font-size: 17px;
    line-height: 120%;
    text-align: center;
    color: #000;
    padding: 25px 40px;
    transition: all 0.3s;
}

.btn_orange:hover {
    background: #000;
    color: #fff;
}

.btn_black {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    border-radius: 12px;
    font-weight: 600;
    font-size: 17px;
    line-height: 120%;
    text-align: center;
    color: #fff;
    padding: 25px 40px;
    transition: all 0.3s;
}

.btn_black:hover {
    background: #FFC83C;
    color: #000;
}

.main_desc {
    max-width: 514px;
    margin: 0 auto;
    color: #8A8A8A;
    font-size: 18px;
    line-height: 130%;
}

.main_desc span {
    color: #1B1B1D;
}

.main_img {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.main_items {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 160px;
}

.main_item {
    width: calc(33.333% - 106.666px);
    position: relative;
}

.main_item:last-child::before {
    display: none;
}

.main_item::before {
    position: absolute;
    content: "";
    background-color: #F2F2F2;
    height: 160px;
    right: -80px;
    width: 2px;
    bottom: 0;
}

.main_item-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.main_item-icon img {
    width: 80px;
    height: auto;
}

.main_item-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 120%;
    margin-bottom: 10px;
}

.main_item-text {
    font-size: 18px;
    line-height: 130%;
    color: #8A8A8A;
}

.advance {
    margin-bottom: 130px;
}

.title {
    font-weight: 600;
    font-size: 52px;
    line-height: 110%;
    text-align: center;
    margin-bottom: 40px;
}

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

.advance_item {
    background: #F2F2F2;
    border-radius: 30px;
    width: calc(33.333% - 20px);
    padding: 0 30px 30px;
    height: 320px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.advance_item:nth-child(1):before {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, #FFFFFF 10.5%, rgba(255, 255, 255, 0) 100%);
    width: 200px;
    height: 100%;
    left: 0;
    top: 0;
}

.advance_item:nth-child(3):before {
    position: absolute;
    content: "";
    background: linear-gradient(-90deg, #FFFFFF 10.5%, rgba(255, 255, 255, 0) 100%);
    width: 200px;
    height: 100%;
    right: 0;
    top: 0;
}

.advance_item-title {
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    position: relative;
    z-index: 2;
    color: #8A8A8A;
    margin-top: 24px;
}

.know {
    margin-bottom: 120px;
}

.know_body {
    background: #F2F2F2;
    border-radius: 30px;
    max-width: 1560px;
    margin: 0 auto;
    padding: 120px 0;
}

.know_wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

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

.know_teg {
    background: #FFFFFF;
    border-radius: 25px;
    padding: 26px 40px;
    margin-bottom: 15px;
    cursor: pointer;
    font-weight: 500;
    font-size: 22px;
    position: relative;
    line-height: 120%;
}

.know_teg.active {
    background: #FFC83C;
}

.know_teg.active svg {
    transform: translateY(-50%) rotate(180deg);
}

.know_teg.active path {
    stroke: #000000;
}

.know_teg:nth-last-child(2) {
    margin-bottom: 0;
}

.know_teg svg {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
}

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

.know_content {
    width: calc(50% - 15px);
    background: #FFFFFF;
    border-radius: 25px;
    padding: 40px 40px 0;
    z-index: 1;
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
    display: none;
}

.know_content.active {
    display: block;
}

.know_content-img {
    display: flex;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
}

.know_content:nth-child(3) .know_content-img {
    right: 55%;
}

.know_content:nth-child(5) .know_content-img {
    bottom: 20px;
}

.know_content:nth-child(7) .know_content-img {
    bottom: 40px;
}

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

.know_inner {
    background: #FFFFFF;
    border-radius: 25px;
    padding: 80px 125px;
}

.know_options {
    display: flex;
    gap: 50px;
}

.know_option {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    line-height: 130%;
    color: #8A8A8A;

}

.know_option img {
    width: 80px;
    height: auto;
}

.know_content-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #8A8A8A;
}

.price {
    margin-bottom: 130px;
}

.price_items {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.price_item:nth-child(1) {
    border: 2px solid #F2F2F2;
}

.price_item:nth-child(2) {
    background: #F2F2F2;
}

.price_item:nth-child(2) .price_item-title {
    border-bottom: 2px solid #FFFFFF;
}

.price_item:nth-child(3) {
    background: #1B1B1D;
    position: relative;
    z-index: 1;
}

.price_item:nth-child(3)::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 412px;
    background-image: url(../img/price_item3.svg);
    background-size: cover;
    top: 0;
    right: 0;
    z-index: -1;
}

.price_item:nth-child(3) .price_item-title {
    border-bottom: 2px solid #404040;
    color: #fff;
}

.price_item:nth-child(3) .price_item-price {
    color: #FFFFFF;
}

.price_item:nth-child(3) .price_item-value {
    color: #C0C0C0;
}

.price_item:nth-child(3) .price_item-value span {
    color: #fff;
}

.price_item:nth-child(3) .price_item-list {
    color: #C0C0C0;
}

.price_item:nth-child(3) .price_item-option {
    color: #000000;
    background: #FFC83C;
}

.price_item {
    width: calc(33.333% - 26.666px);
    padding: 40px 50px 50px;
    border-radius: 20px;
}

.price_item-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 10px;
    color: #8A8A8A;
}

.price_item-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #F2F2F2;
    width: 218px;
}

.price_item-price {
    font-weight: 600;
    font-size: 26px;
    line-height: 120%;
    margin-bottom: 5px;
}

.price_item-price span {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
}

.price_item-btn {
    height: 60px;
    width: 220px;
    margin-bottom: 30px;
}

.price_item:nth-child(3) .price_item-btn {
    background: #FFC83C;
    color: #000;
}

.price_item:nth-child(3) .price_item-btn:hover {
    background-color: #fff;
}

.price_item-value {
    line-height: 130%;
    margin-bottom: 20px;
    color: #8A8A8A;
}

.price_item-value span {
    color: #1B1B1D;
}

.price_item-list {
    font-size: 14px;
    line-height: 120%;
    list-style: disc;
    padding-left: 26px;
    margin-bottom: 15px;
    color: #8A8A8A;
}

.price_item-list li {
    margin-bottom: 6px;
}

.price_item-option {
    background: #1B1B1D;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 14px;
    line-height: 120%;
    color: #fff;
    margin-bottom: 5px;
    width: fit-content;
}

.price_item-option:last-child {
    margin-bottom: 0;
}

.tarif {
    margin-bottom: 130px;
}

.tarif_wrapper {
    background: #F2F2F2;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.tarif_left {
    width: 620px;
    display: flex;
    justify-content: space-between;
}

.tarif_info {
    width: 580px;
}

.tarif_img {
    background-image: url(../img/tarif_img.jpg);
    background-size: cover;
    background-position: center;
    width: 390px;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.tarif_img img {
    position: absolute;
    bottom: 0;
    width: 100%;
    right: 0;
    transition: all 0.3s;
    height: auto;
    opacity: 0;
}

.tarif_img img.active {
    opacity: 1;
}

.tarif_info .title {
    text-align: left;
    font-size: 30px;
}

.tarif_subtitle {
    font-weight: 500;
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 130%;
}

.tarif_left-inner {
    width: 210px;
}

.tarif_left-top {
    background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    height: 350px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.tarif_left-text {
    line-height: 130%;
    margin-top: auto;
}

.tarif_left-btn {
    background: #1B1B1D;
    border-radius: 20px;
    padding: 30px;
    height: 130px;
    display: flex;
    font-weight: 600;
    font-size: 16px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    line-height: 120%;
    color: #fff;
    transition: all 0.3s;
}

.tarif_left-btn:hover {
    background: #FFC83C;
    color: #000;
}

.tarif_text {
    font-size: 15px;
    line-height: 130%;
    margin-bottom: 15px;
    color: #8A8A8A;
}

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

.tarif_options {
    display: flex;
    margin-bottom: 30px;
    gap: 28px;
}

.tarif_option {
    font-size: 15px;
    line-height: 130%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.resalts {
    margin-bottom: 130px;
}

.resalts_item {
    margin-bottom: 20px;
}

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

.resalts_item-top {
    background: #F2F2F2;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
}

.resalts_item-optinos {
    display: flex;
    gap: 20px;
}

.resalts_item-option {
    background: #FFFFFF;
    padding: 20px 30px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #8A8A8A;
}

.resalts_item-top.active .resalts_item-arrow {
    background: #FFC83C;
}

.resalts_item-top.active .resalts_item-arrow img {
    transform: rotate(180deg);
}

.resalts_item-option span {
    display: block;
    margin-top: 5px;
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    color: #1B1B1D;
}

.resalts_item-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 110%;
    margin-bottom: 10px;
}

.resalts_item-subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: #8A8A8A;
}

.resalts_item-arrow {
    background: #FFFFFF;
    border-radius: 16px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.resalts_item-arrow img {
    transition: all 0.3s;
}

.resalts_item-info {
    width: 274px;
}

.resalts_item-icon {
    display: flex;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 20px;
}

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

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

.resalts_item-img {
    display: none;
    margin: 10px auto 0;
    width: fit-content;
}

.works {
    margin-bottom: 130px;
}

.works_wrapper {
    background-image: url(../img/works_wrapper.jpg);
    background-size: cover;
    padding: 80px 90px 0;
    background-position: center;
    display: flex;
    border-radius: 30px;
    justify-content: space-between;
    align-items: flex-end;
}

.works_info {
    width: 430px;
    padding-bottom: 80px;
}

.works_info .title {
    margin-bottom: 40px;
    text-align: left;
}

.works_text {
    font-size: 18px;
    line-height: 130%;
    color: #8A8A8A;
    margin-bottom: 100px;
}

.works_inner {
    display: flex;
    gap: 30px;
    align-items: center;
}

.works_desc {
    width: 162px;
    font-size: 14px;
    line-height: 130%;
    color: #8A8A8A;
}

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

.works_arrow {
    cursor: pointer;
    display: flex;
    transition: all 0.3s;
}

.works_arrow:hover {
    opacity: 0.8;
}

.works_slider {
    width: 585px;
}

.works_slide {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.works_slide-img {
    display: flex;
}

.works_slide-dots {
    width: 214px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
}

.works_slide-dot {
    width: 100%;
    height: 194px;
    border: 7px solid #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
}

.works_slide-dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.why {
    margin-bottom: 123px;
}

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

.why_item {
    width: calc(33.333% - 20px);
    background: #F2F2F2;
    border-radius: 25px;
    padding: 40px;
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why_item-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 110%;
}

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

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

.why_item-text {
    font-size: 16px;
    line-height: 130%;
    color: #8A8A8A;
}

.why_options {
    width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why_option {
    background: #F2F2F2;
    border-radius: 25px;
    padding: 30px 30px 30px 110px;
    position: relative;
    min-height: 165px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.why_option-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    margin-bottom: 10px;
}

.why_option-text {
    font-size: 16px;
    line-height: 130%;
    color: #8A8A8A;
}

.why_option-icon {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.reviews {
    margin-bottom: 130px;
}

.reviews .title {
    text-align: left;
}

.reviews_top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    align-items: center;
}

.reviews_top .title {
    margin-bottom: 0;
}

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

.reviews_arrow {
    background: #F2F2F2;
    border-radius: 12px;
    width: 76px;
    height: 56px;
    cursor: pointer;
    transition: all 0.3s;
}

.reviews_arrow:hover {
    opacity: 0.8;
}

.reviews_slide {
    margin: 0 15px;
    padding: 18px;
    border-radius: 25px;
    position: relative;
    height: 400px;
    display: flex !important;
    align-items: flex-end;
    z-index: 1;
    overflow: hidden;
    display: block;
    color: #000;
}

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

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

.reviews_slide-bot {
    gap: 5px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.reviews_slide-play {
    display: flex;
}

.reviews_slide-play img {
    pointer-events: none;
}

.reviews_slide-info {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 10px 15px;
    flex: auto;
}

.reviews_slide-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
}

.reviews_slide-text {
    font-size: 14px;
    line-height: 130%;
    color: #8A8A8A;
}

.faq {
    margin-bottom: 130px;
}

.faq_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.faq_left {
    width: 580px;
    background: #F2F2F2;
    border-radius: 30px;
    padding: 60px;
    background-image: url(../img/faq_left.jpg);
    background-size: cover;
    background-position: center;
}

.faq_left .title {
    text-align: left;
    margin-bottom: 62px;
}

.faq_items {
    width: 656px;
}

.faq_left-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
}

.faq_item {
    background: #F2F2F2;
    border-radius: 20px;
    margin-bottom: 10px;
}

.faq_item-title {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    padding: 20px 60px 20px 30px;
}

.faq_item-title.active svg path {
    stroke: #000000;
}

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

.faq_item-title svg {
    position: absolute;
    right: 30px;
    top: 50%;
    transition: all 0.3s;
    transform: translateY(-50%);
}

.faq_item-content {
    padding: 0 30px 20px;
    font-size: 14px;
    line-height: 140%;
    display: none;
    color: #8A8A8A;
}

.faq_item-content ol {
    padding-left: 22px;
    margin: 0;
}

.order {
    margin-bottom: 130px;
}

.order_wrapper {
    border-radius: 30px;
    padding: 80px 120px;
    background-image: url(../img/order_wrapper.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    width: 1560px;
    margin: 0 auto;
}

.order_img {
    position: absolute;
    width: 412px;
    height: 597px;
    left: 251px;
    bottom: 24px;
}

.order_info {
    width: 600px;
    margin-left: auto;
}

.order_info .title {
    color: #fff;
    text-align: left;
    margin-bottom: 30px;
}

.order_text {
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 30px;
    color: #C0C0C0;
}

.order_btn {
    width: fit-content;
}

.order_btn:hover {
    color: #000;
    background-color: #fff;
}

.footer {
    background: #EDEDED;
    padding: 120px 0 40px;
}

.footer a {
    transition: all 0.3s;
}

.footer a:hover {
    color: #FFC83C;
}

.footer_wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
    align-items: flex-start;
}

.footer_links {
    width: 276px;
}

.footer_inner {
    width: 360px;
    background: #FFFFFF;
    border-radius: 25px;
    padding: 40px;
}

.footer_left-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    margin-bottom: 20px;
}

.footer_left-list a {
    font-size: 15px;
    line-height: 130%;
    margin-bottom: 15px;
    display: block;
    color: #8A8A8A;
}

.footer_menu a {
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    margin-bottom: 20px;
    color: #1B1B1D;
    display: block;
}

.footer_links-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    margin-bottom: 20px;
}

.footer_link {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    color: #1B1B1D;
    display: block;
}

.footer_links-desc {
    font-size: 14px;
    line-height: 120%;
    margin: 35px 0 10px;
    color: #ACACAC;
}

.footer_polit {
    font-size: 14px;
    line-height: 120%;
    color: #ACACAC;
}

.footer_logo {
    display: flex;
    justify-content: center;
}

.footer_desc {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 10px;
    display: block;
    color: #8A8A8A;
}

.footer_prom {
    text-align: center;
    font-size: 14px;
    line-height: 120%;
    color: #ACACAC;
}

.footer_inner-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 120%;
    margin-bottom: 10px;
}

.footer_inner-text {
    font-size: 16px;
    line-height: 130%;
    color: #8A8A8A;
    margin-bottom: 20px;
}

.footer_inner-bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_inner-bot.active {
    display: none;
}

.footer_inner-btn {
    width: fit-content;
    cursor: pointer;
}

.footer_inner-form {
    display: none;
    justify-content: space-between;
}

.footer_inner-form.active {
    display: flex;
}

.footer_form-btn {
    border: none;
    cursor: pointer;
    width: 60px;
    height: 64px;
    padding: 0;
}

.inp {
    background: #EDEDED;
    border-radius: 12px;
    border: none;
    height: 64px;
    font-size: 14px;
    padding-left: 20px;
}

.menu_burger {
    display: none;
}

#imgThree,
#imgFour {
    display: none;
}

.header_inner-left {
    display: none;
}


.header_inner .header_number {
    display: none;
}


.header_inner .header_inner-btn {
    display: none;
}

.price_text {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: #8A8A8A;
}

.price_item-more {
    display: none;
}

.know_content:nth-child(4) .know_content-img,
.know_content:nth-child(8) .know_content-img {
    margin-bottom: 30px;
}



.advance_item:nth-child(1) .advance_item-img {
    width: 310px;
}

.advance_item:nth-child(2) .advance_item-img {
    width: 400px;
}

.advance_item:nth-child(3) .advance_item-img {
    width: 248px;
}

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

.footer_mobile {
    display: none;
}







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

    .menu {
        gap: 30px;
    }

    .main_img {
        width: 360px;
    }

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

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

    .know_inner {
        padding: 60px;
    }

    .know_options {
        gap: 23px;
    }

    .price_item-text br {
        display: none;
    }

    .tarif_info {
        width: 480px;
    }

    .tarif_left {
        width: 590px;
    }

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

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

    .tarif_img {
        width: 360px;
    }

    .resalts_item-option {
        padding: 20px;
    }

    .resalts_item-option span {
        font-size: 28px;
    }

    .works_wrapper {
        padding: 60px 60px 0;
    }

    .works_slider {
        width: 560px;
    }

    .reviews_slide {
        height: 360px;
    }

    .reviews_slide-play {
        width: 60px;
    }

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

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

    .faq_items {
        width: 590px;
    }

    .faq_left {
        width: 530px;
    }

    .know_body {
        width: 1200px;
    }

    .know_body {
        width: 1200px;
    }

    .order_wrapper {
        width: 1200px;
        padding: 60px;
    }

    .order_img {
        left: 60px;
    }

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

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

    .header_message-title {
        display: none;
    }

    .menu {
        gap: 20px;
    }

    .main_wrapper {
        padding: 80px 60px 120px;
    }

    .main_title {
        font-size: 46px;
        margin-bottom: 20px;
    }

    .main_text {
        margin-bottom: 120px;
    }

    .main_btns {
        gap: 20px;
    }

    .main_btn {
        padding: 24px 30px;
    }

    .main_desc {
        max-width: 420px;
        font-size: 16px;
    }

    .main_items {
        gap: 60px;
    }

    .main_item {
        width: calc(33.333% - 40px);

    }

    .main_item::before {
        right: -30px;
    }

    .advance_item-img {
        justify-content: center;
        display: flex;
    }

    .advance_item:nth-child(2) .advance_item-img {
        margin-bottom: auto;
    }

    .advance_item-title {
        margin-top: 12px;
    }

    .advance_item {
        padding: 0 20px 20px;
        height: 260px;
    }


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

    .advance_item-title br {
        display: none;
    }

    .know_body {
        width: 100%;
    }

    .know_content-img {
        width: calc(100% - 40px);
    }

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

    .know_options {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .price_items {
        gap: 20px;
    }

    .price_item {
        width: calc(33.333% - 13.333px);
        padding: 20px;
    }

    .price_item-title {
        font-size: 32px;
    }

    .price_item-btn {
        margin-bottom: 20px;
    }

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

    .tarif_info,
    .tarif_left {
        width: 100%;
    }

    .tarif_left {
        gap: 30px;
    }

    .tarif_option br {
        display: none;
    }

    .tarif_left-inner {
        flex: auto;
        width: 360px;
    }

    .resalts_item-top {
        flex-wrap: wrap;
        gap: 20px;
    }

    .works_wrapper {
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }

    .works_text {
        margin-bottom: 30px;
    }

    .works_inner {
        justify-content: center;
    }

    .works_info {
        width: 100%;
        padding: 0;
    }

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

    .why_options {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        gap: 30px;
    }

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

    .reviews_slide {
        margin: 0 10px;
    }

    .faq_left {
        width: calc(50% - 15px);
        padding: 30px;
    }

    .title {
        font-size: 42px;
    }

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

    .order_wrapper {
        max-width: 100%;
    }

    .order_info {
        width: 460px;
    }

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

    .footer_inner {
        width: 460px;
    }

    .footer_links {
        width: 360px;
    }
}


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

    .header_inner {
        position: fixed;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        overflow: auto;
        max-height: calc(100% - 76px);
        padding-bottom: 50px;
        top: 76px;
        right: 0;
        background-color: #fff;
        padding-top: 25px;
        box-shadow: 0px 8px 25px 0px #0000000D;
        border-bottom: 1px solid #F2F2F2;
        transition: all 0.3s;
    }

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

    .menu {
        flex-direction: column;
        gap: 15px;
    }

    .menu li {
        padding: 0;
    }

    .menu li:first-child {
        display: none;
    }

    .menu a {
        color: #1B1B1D;
    }

    .header_wrapper {
        padding: 15px 0;
    }

    .header_number {
        display: none;
    }

    .header_message {
        order: -1;
    }

    .menu_burger {
        display: flex;
        width: 46px;
        height: 46px;
        background: #F2F2F2;
        border-radius: 50%;
        background-image: url(../img/menu_burger.svg);
        background-repeat: no-repeat;
        background-position: center;
        transition: all 0.3s;
    }

    .menu_burger.active {
        background-image: url(../img/close.svg);
    }

    .header_logo-title {
        width: auto;
        text-align: center;
    }

    .header_logo-img {
        margin: 0 auto 5px;
        justify-content: center;
    }

    .main_wrapper {
        padding: 40px;
    }

    .main_title {
        font-size: 36px;
        margin-bottom: 250px;
    }

    .main_text {
        margin-bottom: 15px;
    }

    .main_img {
        display: none;
    }

    #imgTwo,
    #imgOne {
        display: none;
    }


    #imgThree,
    #imgFour {
        display: block;
    }

    #imgFour {
        opacity: 0;
    }

    .main_anim {
        width: 704px;
        height: 360px;
        bottom: 150px;
    }

    .main_items {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main_item:nth-child(2)::before {
        display: none;
    }

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

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

    .advance_items {
        justify-content: center;
    }

    .know_content {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .know_content-img {
        justify-content: center;
        margin-top: 20px;
        position: relative;
        transform: none !important;
        inset: auto !important;
    }

    .know_tegs {
        width: 100%;
    }

    .know_teg svg {
        transform: translateY(-50%) rotate(90deg);
    }

    .know_teg.active svg {
        transform: translateY(-50%) rotate(270deg);
    }

    .know_option {
        width: 100%;
    }

    .price_items {
        justify-content: center;
    }

    .tarif_left-inner {
        width: 210px;
    }

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

    .resalts_item-optinos {
        gap: 10px;
    }

    .resalts_item-option span {
        font-size: 26px;
    }

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

    .resalts_item-img img {
        max-width: 100%;
    }

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

    .faq_left {
        width: 100%;
    }

    .faq_items {
        width: 100%;
    }

    .order_wrapper {
        padding-bottom: 580px;
    }

    .order_info {
        width: 100%;
    }

    .order_img {
        right: 50%;
        left: auto;
        transform: translateX(50%);
        width: 360px;
        height: 520px;
    }

    .footer_links {
        width: 270px;
    }

    .footer {
        padding-top: 60px;
    }

    .footer_inner {
        width: 100%;
    }

    .footer_inner-bot {
        justify-content: flex-start;
        gap: 30px;
    }

    .header_inner-wrapper {
        display: flex;
        justify-content: center;
        width: 700px;
        gap: 52px;
        margin: 0 auto 30px;
    }

    .header_inner-left {
        display: block;
    }

    .header_inner-subtitle {
        font-weight: 600;
        font-size: 14px;
        line-height: 110%;
        margin-bottom: 18px;
    }

    .header_inner-menu a {
        display: block;
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 130%;
        color: #8A8A8A;
    }

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


    .header_inner .header_inner-btn {
        display: flex;
        width: 277px;
        height: 57px;
        margin: 0 auto;
    }

}

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

    .header_message-link {
        width: 38px;
        min-width: 38px;
    }

    .header_message-link img {
        width: 100%;
    }

    .menu_burger {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .header_logo-title {
        font-size: 11px;
    }

    .header_logo-img {
        display: flex;
        width: 113px;
    }

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

    .main {
        margin-top: 83px;
        margin-bottom: 80px;
    }

    .header_inner-wrapper {
        width: 100%;
        padding: 0 15px;
    }

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

    .main_wrapper {
        width: 100vw;
        margin-left: -15px;
        border-radius: 15px;
    }

    .main_subtitle {
        width: 100%;
        font-size: 14px;
        margin-bottom: 10px;
        display: block;
    }

    .main_subtitle svg {
        width: 20px;
        display: inline;
        vertical-align: middle;
        height: auto;
    }

    .main_title {
        font-size: 24px;
        margin-bottom: 150px;
    }

    .main_title br {
        display: none;
    }

    .main_anim {
        width: 370px;
        bottom: 250px;
        height: 190px;
    }

    .main_text {
        font-size: 13px;
        margin: 0 auto 15px;
        max-width: 210px;
    }

    .main_btns {
        flex-direction: column;
        align-items: center;
        gap: 86px;
        margin-bottom: 0;
    }

    .main_btn {
        padding: 20px 60px;
        font-size: 14px;
        width: fit-content;
    }

    .main_desc {
        position: absolute;
        bottom: 112px;
        max-width: 270px;
        font-size: 13px;
        right: 50%;
        transform: translateX(50%);
        line-height: 130%;
        width: 100%;
    }

    .main_btn:nth-child(1)::before {
        width: 30px;
        height: 32px;
        left: -20px;
    }

    .main_btn:nth-child(2)::before {
        width: 28px;
        height: 19px;
        top: -24px;
        bottom: auto;
        right: -42px;
        background-image: url(../img/main_btn3.svg);
    }

    .main_wrapper {
        margin-bottom: 50px;
    }

    .main_item {
        padding-left: 100px;
        position: relative;
        width: 100%;
        text-align: left;
    }

    .main_item-icon {
        position: absolute;
        margin: 0;
        left: 0;
        top: 0;
        width: 80px;
        height: 80px;
    }

    .main_item:nth-child(1)::before,
    .main_item:nth-child(2)::before {
        width: 160px;
        height: 2px;
        background-color: #F2F2F2;
        bottom: -30px;
        display: block;
        left: 100px;
        right: auto;
    }

    .main_items {
        gap: 60px;
    }

    .main_item-title {
        font-size: 18px;
        line-height: 110%;
        margin-bottom: 8px;
    }

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

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

    .advance_item {
        width: 100%;
        border-radius: 20px;
    }

    .advance_items {
        gap: 20px;
    }

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

    .advance {
        margin-bottom: 60px;
    }

    .advance_item:nth-child(1):before {
        width: 100%;
        height: 90px;
        bottom: auto;
        top: 0;
        background: linear-gradient(180deg, #FFFFFF 10.5%, rgba(255, 255, 255, 0) 100%);
    }

    .advance_item:nth-child(3):before {
        width: 100%;
        height: 90px;
        bottom: 0;
        top: auto;
        background: linear-gradient(0deg, #FFFFFF 10.5%, rgba(255, 255, 255, 0) 100%);
    }

    .know_body {
        padding: 60px 0 20px;
        border-radius: 20px;
    }

    .know_teg {
        font-size: 16px;
        border-radius: 15px;
        padding: 16px 40px 16px 20px;
        margin-bottom: 5px;
    }

    .know_content {
        padding: 15px 20px 0;
        border-radius: 20px;
    }

    .know_content-title {
        font-size: 14px;
        line-height: 130%;
    }

    .know_inner {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .know_options {
        gap: 15px;
    }

    .know_option {
        gap: 15px;
        font-size: 14px;
    }

    .know_option br {
        display: none;
    }

    .know_option img {
        width: 70px;
        height: auto;
    }

    .know {
        margin-bottom: 80px;
    }

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

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

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

    .price_item-title {
        font-size: 28px;
    }

    .price_item-price {
        font-size: 20px;
    }

    .price_item-price span {
        font-size: 14px;
    }

    .price_item-value {
        font-size: 14px;
    }

    .price_item-bot {
        display: none;
        margin-top: 20px;
    }

    .price_item-btn {
        margin-bottom: 0;
        font-size: 14px;
        padding: 20px 40px;
        width: calc(100% - 67px);
        height: 57px;
    }

    .price {
        margin-bottom: 80px;
    }

    .price_item {
        overflow: hidden;
    }

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

    .price_item-more {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #F2F2F2;
        width: 57px;
        height: 57px;
        border-radius: 12px;
    }

    .price_item:nth-child(2) .price_item-more,
    .price_item:nth-child(3) .price_item-more {
        background: #FFFFFF;
    }

    .price_item-more img {
        transition: all 0.3s;
    }

    .price_item-more.active img {
        transform: rotate(180deg);
    }

    .tarif_wrapper {
        width: 100vw;
        margin-left: -20px;
        border-radius: 20px;
        padding: 60px 40px;
        padding-bottom: 411px;
        position: relative;
    }

    .tarif_info .title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px;
    }

    .tarif_subtitle {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: center;
    }

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

    .tarif_img {
        height: 360px;
        width: 100%;
    }

    .tarif_left-inner {
        width: 100%;
    }

    .tarif_option {
        width: 100%;
    }

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

    .tarif_options {
        gap: 10px;
        margin-bottom: 20px;
    }

    .tarif_left-top {
        border-radius: 15px;
        padding: 20px;
        height: auto;
        margin-bottom: 10px;
    }

    .tarif_left-icon {
        width: 92px;
        margin-bottom: 20px;
    }

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

    .tarif_left-text {
        font-size: 14px;
        line-height: 130%;
    }

    .tarif_left-btn {
        flex-direction: row-reverse;
        height: auto;
        padding: 16px 20px;
        border-radius: 15px;
        font-size: 14px;
    }

    .tarif_info-inner {
        position: absolute;
        width: calc(100% - 80px);
        bottom: 60px;
        left: 40px;
    }

    .tarif_wrapper {
        gap: 0;
    }

    .tarif {
        margin-bottom: 60px;
    }

    .resalts_item-top {
        padding: 15px;
        gap: 10px;
        border-radius: 20px;
        position: relative;
    }

    .resalts_item-arrow {
        position: absolute;
        bottom: 15px;
        width: 54px;
        height: 54px;
        right: 15px;
    }

    .resalts_item-info {
        width: auto;
    }

    .resalts_item-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
        border-radius: 15px;
    }

    .resalts_item-title {
        font-size: 18px;
        margin-bottom: 5px;
    }

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

    .resalts_item-optinos {
        flex-wrap: wrap;
    }

    .resalts_item-option {
        padding: 15px;
        border-radius: 12px;
        font-size: 12px;
        flex: auto;
    }

    .resalts_item-option:last-child {
        width: calc(100% - 64px);
        flex: none;
        display: flex;
        align-items: center;
        gap: 15px;
        height: 54px;
    }

    .resalts_item-option span {
        font-size: 20px;
    }

    .resalts_item-option:last-child span {
        margin-top: 0;
    }

    .resalts {
        margin-bottom: 80px;
    }

    .works_wrapper {
        padding: 60px 20px 0;
        width: 100vw;
        margin-left: -15px;
        border-radius: 20px;
    }

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

    .works_text {
        font-size: 14px;
        line-height: 130%;
        text-align: center;
        margin-bottom: 30px;
    }

    .works_slider {
        width: 100%;
    }

    .know_content-img {
        margin: 20px auto;
    }

    .works_slide-img {
        width: 191px;
        height: auto;
    }

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

    .works_slide-dots {
        gap: 24px;
        width: 124px;
    }

    .works_slide-dot {
        height: 113px;
        border-width: 4px;
        border-radius: 4px;
    }

    .works_slide-dot img {
        border-radius: 4px;
    }

    .works {
        position: relative;
        margin-bottom: 150px;
    }

    .works_inner {
        bottom: -70px;
        position: absolute;
        gap: 20px;
        right: 50%;
        transform: translateX(50%);
    }

    .works_arrow {
        width: 63px;
    }

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

    .works_arrows {
        gap: 15px;
    }

    .works_desc {
        font-size: 12px;
        width: 127px;
    }

    .why_wrapper {
        gap: 20px;
    }

    .why_item {
        height: 300px;
        width: 100%;
        padding: 30px;
    }

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

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

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

    .why_option {
        width: 100%;
    }

    .why_option {
        padding: 30px;
        height: auto;
        border-radius: 20px;
        min-height: 1px;
    }

    .why_option-title {
        font-size: 18px;
        padding-left: 55px;
        min-height: 40px;
        display: flex;
        align-items: center;
    }

    .why_option-icon {
        top: 30px;
        left: 30px;
        width: 40px;
        transform: none;
    }

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

    .why_option-text {
        font-size: 14px;
        line-height: 130%;
    }

    .why {
        margin-bottom: 80px;
    }

    .reviews_arrows {
        position: absolute;
        bottom: 0;
        right: 50%;
        justify-content: center;
        gap: 15px;
        transform: translateX(50%);
        width: 100%;
    }

    .reviews_arrow {
        width: 63px;
    }

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

    .reviews_wrapper {
        position: relative;
        padding-bottom: 70px;
    }

    .reviews {
        margin-bottom: 80px;
    }

    .reviews_top {
        margin-bottom: 20px;
        justify-content: center;
    }

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

    .reviews_slide {
        height: 400px;
        padding: 18px;
    }

    .reviews_slide-play {
        width: 50px;
    }

    .faq_left .title {
        margin-bottom: 20px;
    }

    .faq_btn {
        padding: 20px 30px;
        font-size: 14px;
    }

    .faq_left-wrapper {
        gap: 20px;
    }

    .faq_tg {
        width: 50px;
        display: flex;
    }

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

    .faq_left {
        border-radius: 20px;
    }

    .faq_wrapper {
        gap: 10px;
    }

    .faq_item {
        border-radius: 15px;
    }

    .faq_item-title svg {
        right: 20px;
    }

    .faq_item-title {
        font-size: 14px;
        padding: 13px 68px 13px 20px;
    }

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

    .faq {
        margin-bottom: 60px;
    }

    .order_wrapper {
        width: calc(100% - 40px);
        padding: 50px 15px 430px;
        border-radius: 20px;
    }

    .order_info .title {
        margin-bottom: 20px;
    }

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

    .order_img {
        width: 260px;
        height: 380px;
    }

    .order {
        margin-bottom: 60px;
    }

    .order_btn {
        font-size: 14px;
        padding: 20px 30px;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer_desc,
    .footer_logo {
        display: none;
    }

    .footer_left-title {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .footer_left-list a {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer_menu a {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer_menu {
        width: 112px;
    }

    .footer_wrapper {
        gap: 40px 10px;
    }

    .header_inner {
        top: 68px;
        max-height: calc(100% - 68px);
    }

    .footer_links-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer_link {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer_links {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .footer_links-desc {
        font-size: 10px;
        margin-top: 0;
        margin-bottom: 20px;
        line-height: 120%;
    }

    .footer_polit {
        font-size: 10px;
        line-height: 120%;
        display: block;
    }

    .footer_links-right {
        width: 112px;
    }

    .footer_inner {
        padding: 30px;
        border-radius: 20px;
    }

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

    .footer_inner-text {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .footer_inner-btn {
        font-size: 14px;
        padding: 20px 30px;
    }

    .footer_wrapper {
        margin-bottom: 20px;
    }

    .footer_inner-bot {
        gap: 30px;
    }

    .footer_prom {
        font-size: 12px;
    }

    .order_wrapper {
        background-image: url(../img/order_wrapper2.jpg);
    }

    .footer_mobile .footer_desc,
    .footer_mobile .footer_logo,
    .footer_mobile {
        display: block;
    }

    .footer_mobile .footer_desc {
        text-align: left;
        font-size: 14px;
    }
}