@font-face {
    font-family: 'Georgia';
    src: url('../fonts/Georgia-BoldItalic.eot');
    src: local('Georgia Bold Italic'), local('Georgia-BoldItalic'),
        url('../fonts/Georgia-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Georgia-BoldItalic.woff') format('woff'),
        url('../fonts/Georgia-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Georgia';
    src: url('../fonts/Georgia-Italic.eot');
    src: local('Georgia Italic'), local('Georgia-Italic'),
        url('../fonts/Georgia-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Georgia-Italic.woff') format('woff'),
        url('../fonts/Georgia-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Georgia';
    src: url('../fonts/Georgia-Bold.eot');
    src: local('Georgia Bold'), local('Georgia-Bold'),
        url('../fonts/Georgia-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Georgia-Bold.woff') format('woff'),
        url('../fonts/Georgia-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Georgia';
    src: url('../fonts/Georgia.eot');
    src: local('Georgia'),
        url('../fonts/Georgia.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Georgia.woff') format('woff'),
        url('../fonts/Georgia.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}



* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

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

body {
    line-height: 1.5em;
}

ol,
ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

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

img {
    max-width: 100%;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Georgia',
        sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    background: #fff;
    overflow-x: hidden;
    color: #5D5D61;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
}

.no-scroll_pop {
    overflow: hidden !important;
}

.title {
    font-size: 37px;
    font-weight: 700;
    line-height: 50px;
    max-width: 700px;
    color: #353540;
}

.btn {
    display: inline-flex;
    align-items: center;
    position: relative;
    background: #EE4F3C;
    border-radius: 10px;
    font-style: italic;
    font-size: 19px;
    color: #fff;
    transition: all 0.3s ease 0s;
    padding: 15px 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    background: #25243A;
    color: #fff;
}

.btn:active {
    transform: scale(0.98);
}

.breadcrumbs {
    margin-bottom: 20px;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs__item:not(:last-child) {
    margin-right: 10px;
}

.breadcrumbs__item {
    position: relative;
}

.breadcrumbs__item:not(:last-child):after {
    content: "/";
    margin-left: 10px;
}

.breadcrumbs__link {
    transition: color 0.3s ease 0s;
}

.breadcrumbs__link:hover {
    color: #EE4F3C;
}

.breadcrumbs__text {
    color: #7e7e81;
    cursor: default;
}

.header {
    padding: 20px 0;
}

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

.header__logo {
    width: 140px;
    height: auto;
    display: block;
}

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

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

.header__phone:hover .header__icon {
    animation-play-state: paused;
}

.header__icon {
    animation: 3000ms ease 0s infinite shake;
    margin-right: 10px;
}

.header__icon:hover {
    animation-play-state: paused;
}

@keyframes shake {
    0% {
        transform: rotateZ(0deg);
    }

    10% {
        transform: rotateZ(-30deg);
    }

    20% {
        transform: rotateZ(15deg);
    }

    30% {
        transform: rotateZ(-10deg);
    }

    40% {
        transform: rotateZ(7.5deg);
    }

    50% {
        transform: rotateZ(-6deg);
    }

    60% {
        transform: rotateZ(5deg);
    }

    70% {
        transform: rotateZ(-4.28571deg);
    }

    80% {
        transform: rotateZ(3.75deg);
    }

    90% {
        transform: rotateZ(-3.33333deg);
    }

    100% {
        transform: rotateZ(0deg);
    }
}

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

.header__list li {
    padding-left: 0;
    position: relative;
}

.header__list li:before {
    content: none;
}

.header__list li:not(:last-child) {
    margin-right: 40px;
}

.header__list li:hover .header__sub-list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header__list li:hover .header__link {
    color: #EE4F3C;
}

.header__link {
    color: #353540;
    transition: color 0.3s ease 0s;
    padding: 20px 0;
}

.header__link:hover {
    color: #EE4F3C;
}

.header__sub-list {
    position: absolute;
    top: 45px;
    padding: 20px 30px;
    width: max-content;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
    background: #fff;
    box-shadow: 0px 30px 70px 0px #CCCCCC80;
    pointer-events: none;
    transition: all 0.3s ease 0s;
}

.header__sub-list li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
}

.header__sub-list:hover .header__link {
    color: #EE4F3C;
}

.header__sub-link {
    font-size: 15px;
    transition: color 0.3s ease 0s;
}

.header__sub-link:hover {
    color: #EE4F3C;
}

.hamburger {
    margin-left: 30px;
    width: 30px;
    height: 23px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 30px;
    background: #353540;
}

.header__top-mob {
    display: none;
    align-items: center;
    justify-content: space-between;
}

.header__close-mob {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 30;
    transition: all 0.3s ease 0.3s;
}

.header__close-mob span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 30px;
    background: #EE4F3C;
}

.header__close-mob span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}

.header__close-mob span:nth-child(2) {
    transform: translateY(-11px) rotate(45deg);
}

.main {
    min-height: 600px;
    position: relative;
    padding: 40px 0 0 0;
}

.main__title {
    font-size: 50px;
    line-height: 65px;
    font-weight: 700;
    color: #353540;
}

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

.main__content {
    max-width: 650px;
    margin-top: -70px;
}

.main__title {
    font-weight: 700;
    font-size: 52px;
    color: #353540;
    line-height: 70px;
}

.main__descr {
    margin-top: 40px;
    font-size: 18px;
    font-style: italic;
    line-height: 32px;
    max-width: 580px;
}

.main__form {
    margin-top: 50px;
    height: 60px;
    position: relative;
    width: fit-content;
}

.main__input {
    box-shadow: 0px 30px 70px 0px #CCCCCC80;
    border-radius: 10px 0 0 10px;
    height: 60px;
    padding: 15px 170px 15px 55px;
    font-style: italic;
    width: 420px;
    outline-width: 0;
    font-size: 15px;
}

.main__label {
    position: absolute;
    display: flex;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
}

.main__btn {
    border-radius: 0 10px 10px 0;
    height: 60px;
    padding: 15px 20px;
    box-shadow: 0px 30px 70px 0px #CCCCCC80;
    position: absolute;
    top: 0;
    right: 0;
}

.main__btn:active {
    transform: none;
}

.main__img {
    margin-right: -250px;
    margin-bottom: -70px;
    width: 700px;
    height: 688px;
    z-index: -1;
}

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

.services {
    padding: 80px 0;
    background: #242339 url('../img/bg-services.jpg') center center / cover no-repeat;
}

.services__title {
    color: #fff;
}

.services__wrapper {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -15px;
    margin-right: -15px;
}

.services__item {
    width: calc(33.3333% - 30px);
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 20px;
    padding: 25px 20px;
    background-color: #fff;
}

.services__item:not(:nth-last-child(-n+3)) {
    margin-bottom: 30px;
}

.services__item_red {
    background: rgba(238, 78, 60, 0.8);
}

.services__descr {
    margin-top: 15px;
    font-weight: 700;
    font-size: 20px;
}

.services__item_red .services__descr {
    color: #fff;
}

.benefits {
    padding: 80px 0 60px 0;
    position: relative;
}

.benefits__wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
}

.benefits__item {
    width: calc(25% - 30px);
    margin-left: 15px;
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0px 70px 70px 0px #EEEEEE;
}

.benefits__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits__icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #FFF8F8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits__descr {
    margin-top: 30px;
    font-size: 19px;
    font-weight: 700;
    text-align: center;
}

.benefits__sub-descr {
    margin-top: 10px;
    font-style: italic;
    text-align: center;
}

.reviews {
    position: relative;
    padding: 60px 0;
}

.reviews__wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.reviews__item {
    flex-shrink: 0;
    border: 1px solid #EEEEEE;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease 0s;
}

.reviews__item.swiper-slide-active {
    border: 1px solid #fff;
    box-shadow: 0px 50px 70px 0px #EEEEEE;
}

.reviews__item.swiper-slide-active .reviews__icon svg path {
    fill: #EE4F3C;
}

.reviews__item_full-width {
    width: 100%;
    border: 1px solid #fff;
    box-shadow: 0px 50px 70px 0px #EEEEEE;
}

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

.reviews__item_two-width:nth-child(1) {
    border: 1px solid #fff;
    box-shadow: 0px 50px 70px 0px #EEEEEE;
}

.reviews__icon svg path {
    transition: fill 0.3s ease 0s;
}

.reviews__content {
    color: #5D5D61;
    font-style: italic;
}

.reviews__bottom {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.reviews__avatar {
    margin-right: 20px;
    width: 100px;
    height: 100px;
}

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

.reviews__name {
    font-size: 20px;
    font-weight: 700;
    color: #353540;
}

.reviews__rating {
    margin-top: 10px;
    height: 24px;
}

.reviews__date {
    margin-top: 10px;
    font-size: 14px;
    font-style: italic;
}

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

.reviews__navigation {
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    width: fit-content;
    z-index: 1;
}

.reviews__arrow {
    width: 42px;
    height: 42px;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #EEEEEE;
    background: #fff;
    box-shadow: 0px 70px 70px 0px #EEEEEE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews__pag {
    width: fit-content !important;
    font-style: italic;
    margin: 0 12px;
}

.reviews__pag .swiper-pagination-current {
    font-size: 24px;
    width: 14px;
    display: inline-block;
}

.reviews__pag .swiper-pagination-total {
    font-size: 18px;
}

.reviews__leave-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-style: italic;
    color: #5D5D61;
    z-index: 1;
    background: #fff;
    border: 1px solid #EEEEEE;
    box-shadow: 0px 70px 70px 0px #EEEEEE;
}


.reviews__no-comments {
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
}

.reviews__no-comments svg {
    margin-right: 10px;
}

.reviews-popup,
.thank-you-popup {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    transition: all .5s ease 0s;
    overflow: hidden;
    opacity: 0;
    z-index: -1;
}

.reviews-popup.active,
.thank-you-popup.active {
    overflow: visible;
    opacity: 1;
    z-index: 15;
}

.reviews-popup__content,
.thank-you-popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 50px;
}

.reviews-popup__close,
.thank-you-popup__close {
    color: #aaa;
    font-size: 35px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.thank-you-popup__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
    color: #09aa2f;
    max-width: 400px;
}

.reviews-popup__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 38px;
}

.reviews-popup__form {
    margin-top: 30px;
    width: 500px;
}

.reviews-popup__item {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.reviews-popup__textarea {
    width: 100%;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    padding: 15px 20px;
    field-sizing: content;
    min-height: 6lh;
    resize: none;
    outline-width: 0;
    transition: all 0.3s ease 0s;
    font-style: italic;
}

.reviews-popup__textarea:focus {
    border: 1px solid #EE4F3C;
}

.reviews-popup__input {
    width: calc(50% - 10px);
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    padding: 15px 20px;
    outline-width: 0;
    transition: all 0.3s ease 0s;
    font-style: italic;
}

.reviews-popup__input:focus {
    border: 1px solid #EE4F3C;
}

.reviews-popup__rating {
    position: relative;
    margin-bottom: 30px;
    width: fit-content;
}

.reviews-popup__select {
    width: calc(50% - 10px);
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    padding: 15px 50px 15px 20px;
    appearance: none;
    outline-width: 0;
    background: url('../icons/arrow.svg') no-repeat right;
    background-position-x: calc(100% - 20px);
    background-position-y: 54%;
    cursor: pointer;
    font-style: italic;
}

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

/* .gallery {
    padding: 60px 0;
    position: relative;
}
.gallery__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery__slider {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}

.gallery__wrapper {
    display: flex;
}

.gallery__item {
    flex-shrink: 0;
    position: relative;
    height: 330px;
}

.gallery__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.gallery__nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery__bullet {
    width: 18px;
    height: 18px;
    background-color: #F1F1F1;
    border-radius: 50%;
    margin: 0 12px;
    cursor: pointer;
}

.gallery__bullet_active {
    background-color: #EE4F3C;
}

.gallery__content {
    width: calc(50% - 55px);
}

.gallery__descr {
    margin-top: 40px;
    font-style: italic;
}

.gallery__btn {
    margin-top: 50px;
    width: fit-content;
} */

.faq {
    padding: 60px 0;
}

.faq__wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

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

.faq__accordion {
    position: relative;
    border-radius: 15px;
    transition: all 0.2s ease 0s;
    background-color: #fff;
    box-shadow: 0px 70px 70px 0px #EEEEEE;
    border: 1px solid #EEEEEE;
}

.faq__accordion.active {
    box-shadow: 0px 50px 70px 0px #EEEEEE;
}

.faq__accordion:not(:last-child) {
    margin-bottom: 20px;
}

.faq__question {
    position: relative;
    font-weight: 700;
    padding: 20px 60px 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    color: #353540
}

.faq__question::before {
    content: url('../icons/arrow.svg');
    position: absolute;
    right: 30px;
    top: 55%;
    transform: translateY(-60%);
    transition: transform 0.2s ease 0s;
}

.faq__question.active::before {
    transform: translateY(-55%) rotate(-180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding: 0 30px 0 30px;
}

.faq__answer p {
    margin-top: 0;
    margin-bottom: 30px;
}

.text {
    padding: 60px 0;
    position: relative;
}

.text h2 {
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 50px;
    max-width: 700px;
    color: #353540;
}

.text h3 {
    margin-top: 30px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #353540;
}

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

.text a {
    color: #3c34da;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

.text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.text li {
    position: relative;
    list-style: none;
    padding-left: 17px;
}

.text li:not(:last-child) {
    margin-bottom: 10px;
}

.text li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #EE4F3C;
}

.text strong {
    font-weight: 700;
}

.text blockquote {
    margin: 20px 0;
    padding: 20px 25px;
    font-style: italic;
    background-color: #FFF8F8;
    border-radius: 20px;
    color: #353540
}

.text blockquote>p {
    margin-bottom: 0;
}

.text b {
    font-weight: 700;
}

.text em {
    font-style: italic;
}


.feedback {
    padding: 60px 0 80px 0;
}

.feedback__wrapper {
    background-color: #EE4F3C;
    border-radius: 20px;
    padding: 60px 100px 40px 140px;
    position: relative;
}

.feedback__wrapper::before {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 90px;
    height: 90px;
    background: url('../img/feedback-before.svg') center center / cover no-repeat;
}

.feedback__wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 360px;
    height: 400px;
    background: url('../img/feedback-after.svg') center center / cover no-repeat;
}

.feedback__content {
    max-width: 550px;
}

.feedback__title {
    color: #fff;
}

.feedback__form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

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

.feedback__item:not(:last-child) {
    margin-bottom: 13px;
}

.feedback__item .wpcf7-form-control-wrap {
    width: calc(50% - 10px);
}

.feedback__item_service .wpcf7-form-control-wrap {
    width: calc(65% - 10px);
}

.feedback__input {
    width: 100%;
    border-radius: 10px;
    padding: 15px 20px;
    outline-width: 0;
    transition: all 0.3s ease 0s;
    font-style: italic;
    border: 1px solid #fff;
}

.feedback__input:focus {
    border: 1px solid #25243A;
}

.feedback__btn {
    width: calc(35% - 10px);
    background-color: #fd7c6d;
}

.feedback__btn svg {
    margin-left: 10px;
    font-weight: 700;
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
}

.footer__descr {
    margin-top: 20px;
    font-style: italic;
    max-width: 300px;
}

.footer__addr {
    margin-top: 15px;
}

.footer__time {
    margin-top: 15px;
}

.footer__mail {
    display: block;
    margin-top: 10px;
    transition: all 0.3s ease 0s;
    text-align: right;
    color: #EE4F3C;
}

.footer__phone {
    display: block;
    margin-top: 20px;
    transition: all 0.3s ease 0s;
    text-align: right;
    color: #EE4F3C;
}

.footer__text {
    font-weight: 700;
    text-align: right;
}

.footer__info-list {
    margin-top: 20px;
    text-align: right;
    font-style: italic;
}

.footer__info-item:not(:last-child) {
    margin-bottom: 7px;
}

.footer__info-link {
    transition: color 0.3s ease 0s;
}

.footer__info-link:hover {
    color: #EE4F3C;
}

.footer__copy {
    border-top: 1px solid #EEEEEE;
    padding: 30px 0;
    text-align: center;
}

.footer__logo {
    width: 160px;
    height: auto;
    display: block;
}

.x404 {
    padding: 60px 0;
}

.x404__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.x404__title {
    text-align: center;
    font-size: 300px;
    line-height: 300px;
    font-weight: 700;
    color: #EE4F3C;
}

.x404__subtitle {
    margin-top: 50px;
    text-align: center;
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    font-style: italic;
}

.x404__btn {
    margin-top: 40px;
}

[data-name=agree] {
    display: none !important;
}

.wpcf7 form .wpcf7-response-output {
    border-radius: 10px;
    padding: 9px 20px !important;
    width: fit-content;
    max-width: 420px;
    margin: 20px 0 0 0 !important;
    line-height: 20px;
    font-style: italic;
    color: #353540
}

.wpcf7-not-valid-tip {
    margin-top: 10px;
    margin-left: 3px;
}

.wpcf7-not-valid-tip {
    color: #353540 !important;
}


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

    .hamburger {
        display: flex;
    }

    .header {
        padding: 10px 0;
    }

    .header__phone {
        padding: 12px 30px;
    }

    .header__top-mob {
        display: flex;
        align-items: flex-start;
    }

    .header__logo-mob {
        width: 130px;
    }

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

    .header__bg {
        width: 100%;
        height: 100%;
        background: rgba(32, 42, 54, .46);
        backdrop-filter: blur(3px);
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        z-index: 10;
        transition: all .3s ease 0s;
    }

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

    .header__menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 360px;
        height: 100%;
        z-index: 20;
        opacity: 0;
        visibility: hidden;
        overflow-y: scroll;
        transition: all 0.4s ease 0.1s;
        background: #242339;
        padding: 25px 25px 50px 25px;
    }

    .header__menu.active {
        visibility: visible;
        opacity: 1;
        left: 0;
    }

    .header__nav {
        margin-top: 70px;
    }

    .header__list {
        flex-direction: column;
        align-items: flex-start;
    }

    .header__list li {
        width: 100%;
    }

    .header__list li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .header__list li.menu-item-has-children:before {
        content: "";
        position: absolute;
        right: 12px;
        top: 20px;
        transform: rotate(45deg);
        border: solid #fff;
        border-width: 0 2px 2px 0;
        padding: 4px;
        transition: transform .2s ease 0s;
    }

    .header__list li:hover .header__sub-list {
        opacity: 0;
        visibility: hidden;
    }

    .header__list li.active::before {
        border-color: #EE4F3C;
    }

    .header__link {
        padding: 0;
        font-size: 17px;
        color: #fff;
        display: block;
        width: 80%;
        padding: 15px 0;
    }

    .header__list li:hover .header__link {
        color: #fff;
    }

    .header__list li.active .header__link {
        color: #EE4F3C;
    }

    .header__sub-list {
        position: static;
        max-height: 0;
        box-shadow: none;
        background: none;
        padding: 0;
        width: 100%;
        transition: all 0.6s ease 0s, opacity 0.3s ease 0.1s;
    }

    .header__sub-list.active {
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .header__sub-list li {
        border-left: 1px solid #253140;
        padding-left: 15px;
    }

    .header__sub-list li:not(:last-child) {
        margin-bottom: 0;
        padding-bottom: 25px;
    }

    .header__sub-link {
        color: #b4b9c9;
    }

    .main__content {
        max-width: 500px;
    }

    .main__title {
        font-size: 42px;
        line-height: 55px;
    }

    .main__descr {
        margin-top: 30px;
        font-size: 17px;
        line-height: 30px;
        max-width: 500px;
    }

    .main__img {
        margin-right: -180px;
        width: 600px;
        height: 590px;
    }

    .title {
        font-size: 35px;
        line-height: 47px;
    }

    .text h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .text h3 {
        font-size: 22px;
    }

    .feedback__wrapper::before {
        content: none;
    }

    .feedback__wrapper {
        padding: 50px 100px 40px 60px;
    }
}

@media (max-width: 992px) {

    .container {
        max-width: 760px;
    }

    .btn {
        font-size: 17px;
    }

    .title {
        font-size: 26px;
        line-height: 38px;
    }

    .main {
        min-height: auto;
    }

    .main__content {
        max-width: 400px;
        padding-bottom: 30px;
    }

    .main__title {
        font-size: 32px;
        line-height: 42px;
    }

    .main__descr {
        font-size: 16px;
        line-height: 28px;
        max-width: none;
    }

    .main__form {
        margin-top: 40px;
    }

    .main__input {
        width: 350px;
        height: 55px;
        padding: 15px 170px 15px 50px;
    }

    .main__label {
        left: 20px;
        transform: translateY(-65%);
        width: 15px;
        height: 15px;
    }

    .main__label svg {
        width: 15px;
        height: 15px;
    }

    .main__btn {
        height: 55px;
    }

    .main__img {
        width: 500px;
        height: 492px;
        margin-bottom: -30px;
    }

    .services {
        padding: 60px 0;
    }

    .services__wrapper {
        margin-left: -10px;
        margin-right: -10px;
    }

    .services__item {
        width: calc(33.3333% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        padding: 20px 20px;
    }

    .services__item:not(:nth-last-child(-n+3)) {
        margin-bottom: 20px;
    }

    .services__icon svg {
        width: 50px;
        height: 50px;
    }

    .services__descr {
        margin-top: 10px;
        font-size: 16px;
    }

    .benefits {
        padding: 60px 0 40px 0;
    }

    .benefits__wrapper {
        flex-wrap: wrap;
        margin-left: -10px;
        margin-right: -10px;
    }

    .benefits__item {
        background-color: #fff;
        width: calc(50% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        padding: 25px 20px;
    }

    .benefits__item:not(:nth-last-child(-n+2)) {
        margin-bottom: 20px;
    }

    .benefits__descr {
        margin-top: 20px;
    }

    .reviews {
        padding: 40px 0;
    }

    .reviews__item {
        padding: 20px;
    }

    .reviews__bottom {
        margin-top: 15px;
    }

    .reviews__avatar {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }

    .reviews__name {
        font-size: 16px;
    }

    .reviews__rating {
        margin-top: 5px;
        height: 18px;
    }

    .reviews__rating svg {
        width: 18px;
        height: 18px;
    }

    .reviews__date {
        margin-top: 2px;
    }

    .text {
        padding: 40px 0;
    }

    .text h2 {
        font-size: 24px;
        line-height: 34px;
    }

    .text h3 {
        font-size: 19px;
    }

    .text blockquote {
        padding: 15px 20px;
    }

    .faq {
        padding: 40px 0;
    }

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

    .faq__question {
        padding: 16px 55px 16px 25px;
    }

    .faq__question::before {
        right: 22px;
    }

    .faq__answer {
        padding: 0 25px 0 25px;
    }

    .faq__answer p {
        margin-bottom: 25px;
    }

    .feedback {
        padding: 40px 0 60px 0;
    }

    .feedback__wrapper {
        padding: 40px 220px 40px 50px;
    }

    .feedback__wrapper::after {
        right: -190px;
    }

    .feedback__input {
        padding: 13px 20px;
    }

    .feedback__btn {
        padding: 12px 30px;
    }
}

@media (max-width: 768px) {
    .main__wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .main__content {
        margin-top: 0;
        max-width: 600px;
    }

    .main__img {
        margin-bottom: -80px;
    }

    .services__wrapper {
        margin-top: 30px;
    }

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

    .services__item:not(:nth-last-child(-n+2)) {
        margin-bottom: 20px;
    }

    .benefits__wrapper {
        margin-top: 30px;
    }

    .benefits__icon {
        width: 80px;
        height: 80px;
    }

    .benefits__icon svg {
        width: 40px;
        height: 40px;
    }

    .benefits__descr {
        font-size: 17px;
    }

    .reviews__wrapper {
        margin-top: 30px;
    }

    .reviews__block {
        margin-top: 40px;
    }

    .faq__wrapper {
        margin-top: 30px;
        flex-direction: column;
    }

    .faq__col {
        width: 100%;
    }

    .faq__col:not(:last-child) {
        margin-bottom: 15px;
    }

    .faq__accordion:not(:last-child) {
        margin-bottom: 15px;
    }

    .feedback__wrapper {
        padding: 40px 50px 40px 50px;
    }

    .feedback__wrapper::after {
        top: -130px;
        right: -140px;
    }

    .reviews-popup__form {
        width: 450px;
    }

    .reviews-popup__content,
    .thank-you-popup__content {
        padding: 30px 40px;
    }

    .thank-you-popup__content {
        width: 400px;
        display: flex;
        justify-content: center;
        padding: 20px 40px;
    }

    .thank-you-popup__title {
        font-size: 20px;
        line-height: 28px;
        max-width: 300px;
    }

    .x404__title {
        font-size: 200px;
        line-height: 200px;
    }

    .x404__subtitle {
        margin-top: 40px;
        font-size: 28px;
        line-height: 37px;
    }

    .x404__btn {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .header__logo {
        width: 120px;
    }

    .header__phone {
        padding: 10px 20px;
    }

    .header__icon {
        margin-right: 5px;
    }

    .hamburger {
        width: 26px;
        height: 21px;
    }

    .main__img {
        width: 450px;
        height: 442px;
    }

    .feedback__wrapper {
        padding: 30px 40px 30px 40px;
    }

    .feedback__form {
        margin-top: 25px;
    }

    .reviews-popup__form {
        width: 320px;
    }

    .reviews-popup__item {
        flex-direction: column;
        margin-bottom: 15px;
    }

    .reviews-popup__input {
        width: 100%;
    }

    .reviews-popup__input:not(:last-child) {
        margin-bottom: 15px;
    }

    .reviews-popup__select {
        width: 100%;
        margin-bottom: 15px;
    }

    .reviews-popup__btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hamburger {
        margin-left: 20px;
        width: 22px;
        height: 19px;
    }

    .header__logo {
        width: 100px;
    }

    .header__phone {
        padding: 7px 10px;
    }

    .title {
        font-size: 24px;
        line-height: 34px;
    }

    .main__title {
        font-size: 28px;
        line-height: 38px;
    }

    .main__descr {
        margin-top: 20px;
    }

    .main__form {
        margin-top: 30px;
    }

    .main__input {
        width: 320px;
        padding: 15px 150px 15px 50px;
    }

    .main__img {
        width: 380px;
        height: 373px;
    }

    .services {
        padding: 40px 0;
    }

    .services__item {
        padding: 15px;
    }

    .services__descr {
        margin-top: 5px;
    }

    .benefits {
        padding: 40px 0 30px 0;
    }

    .benefits__wrapper {
        margin-left: 0;
        margin-right: 0;
    }

    .benefits__item {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .benefits__item:not(:last-child) {
        margin-bottom: 15px;
    }

    .reviews {
        padding: 30px 0;
    }

    .reviews__icon {
        display: none;
    }

    .reviews__block {
        margin-top: 25px;
        justify-content: center;
    }

    .reviews__leave-btn {
        display: none;
    }

    .text {
        padding: 30px 0;
    }

    .text h2 {
        font-size: 21px;
        line-height: 31px;
    }

    .text h3 {
        font-size: 17px;
    }

    .text ul {
        padding-left: 0;
    }

    .faq {
        padding: 30px 0;
    }

    .faq__question {
        padding: 15px 50px 15px 15px;
    }

    .faq__question::before {
        right: 17px;
    }

    .faq__answer {
        padding: 0 15px 0 15px;
    }

    .faq__answer p {
        margin-bottom: 15px;
    }

    .feedback {
        padding: 30px 0 40px 0;
    }

    .feedback__wrapper {
        padding: 25px 30px 20px 30px;
    }

    .feedback__item {
        flex-direction: column;
    }

    .feedback__item .wpcf7-form-control-wrap {
        width: 100%;
    }

    .feedback__item .wpcf7-form-control-wrap:not(:last-child) {
        margin-bottom: 15px;
    }

    .feedback__btn {
        width: 100%;
    }

    .footer__wrapper {
        flex-direction: column;
        padding: 40px 0;
    }

    .footer__block:not(:last-child) {
        margin-bottom: 20px;
    }

    .footer__logo {
        width: 120px;
    }

    .footer__text {
        text-align: left;
    }

    .footer__info-list {
        text-align: left;
    }

    .footer__phone {
        text-align: left;
    }

    .footer__mail {
        text-align: left;
    }

    .footer__copy {
        text-align: left;
    }

    .x404 {
        padding: 40px 0;
    }

    .x404__title {
        font-size: 150px;
        line-height: 150px;
    }

    .x404__subtitle {
        margin-top: 30px;
        font-size: 22px;
        line-height: 32px;
    }

    .x404__btn {
        margin-top: 30px;
    }
}