    /* ===== RESET & BASE ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Rubik', sans-serif;
        font-size: 18px;
        line-height: 1.2;
        color: #000;
        background-color: #fff;
    }

    .container {
        max-width: 1556px;
        margin: 0 auto;
        padding: 0 0px;
    }

    h1,
    h2,
    h3,
    h4 {
        font-weight: normal;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    ::-webkit-input-placeholder {
        /* WebKit, Blink, Edge */
        color: #BBBBBB;
    }

    :-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #BBBBBB;
        opacity: 1;
    }

    ::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #BBBBBB;
        opacity: 1;
    }

    :-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #BBBBBB;
    }

    ::-ms-input-placeholder {
        /* Microsoft Edge */
        color: #BBBBBB;
    }

    ::placeholder {
        /* Most modern browsers support this now. */
        color: #BBBBBB;
    }

    .checkbox-def {
        display: inline-block;
        height: 28px;
        line-height: 28px;
        margin-right: 10px;
        position: relative;
        vertical-align: middle;
        font-size: 14px;
        user-select: none;
    }

    .checkbox-def .checkbox-def-switch {
        position: relative;
        display: inline-block;
        box-sizing: border-box;
        width: 56px;
        height: 28px;
        border: 1px solid rgba(0, 0, 0, .1);
        border-radius: 25%/50%;
        vertical-align: top;
        background: #eee;
        transition: .2s;
    }

    .checkbox-def .checkbox-def-switch:before {
        content: '';
        position: absolute;
        top: 1px;
        left: 1px;
        display: inline-block;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: white;
        box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
        transition: .15s;
    }

    .checkbox-def input[type=checkbox] {
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        z-index: -1;
        opacity: 0;
    }

    .checkbox-def input[type=checkbox]:not(:disabled):active+.checkbox-def-switch:before {
        box-shadow: inset 0 0 2px rgba(0, 0, 0, .3);
    }

    .checkbox-def input[type=checkbox]:checked+.checkbox-def-switch {
        background: #FF0000;
    }

    .checkbox-def input[type=checkbox]:checked+.checkbox-def-switch:before {
        transform: translateX(28px);
    }

    /* Hover */
    .checkbox-def input[type="checkbox"]:not(:disabled)+.checkbox-def-switch {
        cursor: pointer;
        border-color: rgba(0, 0, 0, .3);
    }

    /* Disabled */
    .checkbox-def input[type=checkbox]:disabled+.checkbox-def-switch {
        filter: grayscale(70%);
        border-color: rgba(0, 0, 0, .1);
    }

    .checkbox-def input[type=checkbox]:disabled+.checkbox-def-switch:before {
        background: #eee;
    }

    /* Focus */
    .checkbox-def.focused .checkbox-def-switch:before {
        box-shadow: inset 0px 0px 4px #FF0000;
    }

    span.t-red {
        color: #FF0000;
    }

    p {
        color: #767E86;
    }

    /* ===== HEADER ===== */
    @font-face {
        font-family: 'Rubik';
        src: url('./fonts/rubik/Rubik-Bold.eot');
        src: local('Rubik Bold'), local('Rubik-Bold'),
            url('./fonts/rubik/Rubik-Bold.eot?#iefix') format('embedded-opentype'),
            url('./fonts/rubik/Rubik-Bold.woff2') format('woff2'),
            url('./fonts/rubik/Rubik-Bold.woff') format('woff'),
            url('./fonts/rubik/Rubik-Bold.ttf') format('truetype');
        font-weight: bold;
        font-style: normal;
    }

    @font-face {
        font-family: 'Rubik';
        src: url('./fonts/rubik/Rubik-Medium.eot');
        src: local('Rubik Medium'), local('Rubik-Medium'),
            url('./fonts/rubik/Rubik-Medium.eot?#iefix') format('embedded-opentype'),
            url('./fonts/rubik/Rubik-Medium.woff2') format('woff2'),
            url('./fonts/rubik/Rubik-Medium.woff') format('woff'),
            url('./fonts/rubik/Rubik-Medium.ttf') format('truetype');
        font-weight: 500;
        font-style: normal;
    }

    @font-face {
        font-family: 'Rubik';
        src: url('./fonts/rubik/Rubik-Regular.eot');
        src: local('Rubik Regular'), local('Rubik-Regular'),
            url('./fonts/rubik/Rubik-Regular.eot?#iefix') format('embedded-opentype'),
            url('./fonts/rubik/Rubik-Regular.woff2') format('woff2'),
            url('./fonts/rubik/Rubik-Regular.woff') format('woff'),
            url('./fonts/rubik/Rubik-Regular.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }

    header {
        background-color: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 0px;
    }

    .burger-checkbox-wrapper {
        display: none;
    }

    .logo {
        height: 40px;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 32px;
    }

    .nav-menu li {}

    .nav-menu a {
        text-decoration: none;
        color: #172432;
        transition: color 0.2s;
        position: relative;
    }

    .nav-menu a:hover {
        color: #E30613;
    }

    .nav-menu a.active {
        font-weight: 500;
    }

    .nav-menu a.active:after {
        content: "";
        display: block;
        width: 100%;
        height: 3px;
        background-color: #E30613;
        left: 0;
        bottom: -2px;
        position: relative;
    }

    .contact-info {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .phone-link {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 5px;
        color: #000;
        text-decoration: none;
    }

    .btn-primary {
        background-color: #E30613;
        color: white;
        padding: 10px 20px;
        border-radius: 12px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: background-color 0.2s;
    }

    .callback-btn .l-icon {
        height: 34px;
    }

    .btn-primary:hover {
        background-color: #c53030;
    }

    .btn-secondary {
        background-color: #48bb78;
        color: white;
        padding: 8px 16px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .btn-secondary:hover {
        background-color: #38a169;
    }

    .section-title {
        font-size: 64px;
        padding-bottom: 30px;
        margin-bottom: 30px;
        position: relative;
        color: #000;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 231px;
        height: 3px;
        background-color: #E30613;
    }

    .section-subtitle {
        color: #767E86;
        font-size: 24px;
    }

    .section-desc {
        color: #767E86;
        font-size: 24px;
    }

    .sw-slider-btn-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .sw-slider-btn-prev,
    .sw-slider-btn-next {
        width: 66px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #E30613;
        border-radius: 12px;
        cursor: pointer;
    }

    .sw-slider-btn-next svg {
        transform: rotate(180deg);
    }

    .sw-slider-btn-prev.swiper-button-disabled,
    .sw-slider-btn-next.swiper-button-disabled {
        background-color: #172432;
    }

    /* ===== HERO SECTION ===== */
    .hero {
        background: #F8F8F8;
        padding: 60px 0;
        position: relative;
    }

    .hero-slider {
        height: 700px;
        position: relative;
    }

    .hero-slider-list {
        height: 100%;
        list-style: none;

    }

    .hero-slider-btn-wrapper {
        position: absolute;
        right: -120px;
        top: calc(50% - 60px);
        transform: rotate(90deg);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 15px;
    }

    .hero-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
        background: #fff;
        opacity: 1;
    }

    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #E30613;
    }

    .hero-slider-button-next,
    .hero-slider-button-prev {
        height: 22px;
        cursor: pointer;
    }

    .hero-slider-button-next svg {
        transform: rotate(180deg);
    }

    .hero-slider-button-next.swiper-button-disabled svg path,
    .hero-slider-button-prev.swiper-button-disabled svg path {
        stroke: #fff;
    }

    .hero-slider-item {
        position: relative;
        height: 100%;
        max-height: 615px;
    }

    .hero-slider-item-inner {
        height: 100%;
        background: url("/assets/img/bg-slider.png");
        background-repeat: no-repeat;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: #F8F8F8;
    }

    .hero-slider-item-content {
        width: 100%;
        padding: 0 40px 40px;
    }

    .hero-image {
        position: absolute;
        top: -25px;
        right: 0;
        max-height: 445px;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        max-height: 100%;
    }

    .hero-image-mob {
        display: none;
    }

    .hero-slider-title {
        padding-left: 40px;
        margin: 70px 0;
    }

    .hero-slider-title .hero-title {
        color: #fff;
        font-size: 75px;
        font-weight: bold;
        max-width: 523px;
        line-height: 1.2;
    }

    .hero-slider-action {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        background: #fff;
        border-radius: 20px;
    }

    .hero-slider-action-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 35px 35px 35px 40px;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .hero-slider-action-desc {
        font-size: 28px;
        max-width: 750px;
    }

    .hero-slider-action-type-item {
        background: #E0F5EB;
        padding: 15px 15px 15px 50px;
        border-radius: 10px;
        margin-bottom: 20px;
        position: relative;
    }

    .hero-slider-action-type .hero-slider-action-type-item:last-child {
        margin-bottom: 0px;
    }

    .hero-slider-action-type-item:before {
        content: "";
        display: block;
        border: 6px solid #00B383;
        width: 8px;
        height: 8px;
        position: absolute;
        left: 19px;
        top: 15px;
        border-radius: 50%;
    }

    .hero-slider-action-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: #E30613;
        width: 100%;
        max-width: 311px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        font-size: 36px;
        font-weight: bold;
        color: #fff;
        outline: none;
        border: none;
        border-radius: 0 20px 20px 0;
        text-decoration: none;
    }

    .hero-slider-action-btn .b-icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    /* ===== WHY US SECTION ===== */
    .why-us {
        padding: 60px 0;
    }

    .why-us-content {
        display: flex;
        gap: 68px;
    }

    .why-us-desc {
        max-width: 443px;
        width: 100%;
        color: #767E86;
    }

    .why-us-text h4 {
        font-size: 26px;
        color: #767E86;
        margin-bottom: 20px;
    }

    .why-us-text p {
        margin-bottom: 20px;
    }

    .why-us-text .promo-tizer-text {
        font-size: 26px;
        color: #767E86;
        margin: 15px 0 0;
    }

    .why-us-list {
        list-style: none;
        margin-bottom: 20px;
    }

    .why-us-list li {
        margin-bottom: 8px;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .why-us-list li::before {
        content: '•';
        color: #E30613;
        font-weight: bold;
    }

    .why-us-cards-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 80px 32px;
        list-style: none;
    }

    .why-card {
        width: 31%;
    }

    .why-card h4 {
        font-size: 18px;
        color: #767E86;
    }

    .why-card img {
        width: 100%;
        max-height: 183px;
        object-fit: cover;
        border-radius: 26px;
        margin-bottom: 15px;
    }

    /* ===== SERVICES SECTION ===== */
    .services {
        padding: 60px 0 40px;
        background-color: white;
    }

    .services-header {
        margin-bottom: 50px;
        position: relative;
    }

    .services-header .section-title::after {
        left: 0;
    }

    .services .section-subtitle {
        color: #172432;
        font-size: 32px;
        margin-bottom: 20px;
    }

    .services-tabs-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 60px 0 10px;
    }

    .services-tabs .services-slider {
        display: none;
    }

    .services-tabs .services-slider.active {
        display: block;
    }

    .services-tabs-item {
        width: 100%;
    }

    .services-tabs-item-img {
        cursor: pointer;
    }

    .services-tabs-item-btn {
        background: #F8F8F8;
        border-radius: 10px;
        border-color: #767E86;
        width: 100%;
        padding: 13px;
        font-size: 22px;
        line-height: 1;
        color: #767E86;
        cursor: pointer;
    }

    .services-tabs-item.active .services-tabs-item-btn,
    .services-tabs-item:hover .services-tabs-item-btn {
        background-color: #FF0000;
        border-color: #FF0000;
        color: #fff;
    }

    .services-tabs-item-hidden-desc {
        display: none;
    }

    .services-quiz-type {
        display: none;
    }

    .services-quiz.open .services-quiz-type {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 30px;
        color: #767E86;
        margin: 35px 0;
    }

    .services-quiz-type-var {
        font-size: 24px;
    }

    .services-quiz-type-var span.active {
        color: #FF0000;
    }

    .services-quiz-type-desc {
        font-size: 20px;
    }

    .services-tab-slider-desc {
        display: none;
    }

    .services-quiz.open .services-tab-slider-desc {
        display: block;
        font-size: 24px;
        margin: 40px 0;
    }

    .services-quiz.open .services-slider-wrapper {
        position: relative;
        padding-top: 100px;
    }

    .services .sw-slider-btn-wrapper {
        position: absolute;
        top: 0;
        right: 0;
    }

    .services-grid {
        /*    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;*/
    }

    .service-card {
        background: white;
        border: 1px solid #BBBBBB;
        border-radius: 24px;
        height: auto;
        overflow: hidden;
    }

    .service-card:hover {}

    .service-img {
        width: 100%;
        overflow: hidden;
        border-radius: 24px 24px 0 0;
    }

    .service-img img {
        width: 100%;
    }

    .service-content {
        border-top: 1px solid #BBBBBB;
        background-color: #F6F6F6;
        padding: 20px;
        border-radius: 0 0 24px 24px;
        min-height: 200px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .service-content-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .service-content .service-item-name {
        color: #767E86;
        font-size: 24px;
    }

    .service-price {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #E30613;
        font-size: 20px;
    }

    .service-price-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 15px;
        min-width: 130px;
    }

    .service-price .total-t {
        color: #767E86;
    }

    .service-price .total-i {
        height: 29px;
    }

    .service-content .total-v-premium {
        display: none;
    }

    .services-premium .service-content .total-v {
        display: none;
    }

    .services-premium .service-content .total-v-premium {
        display: block;
    }

    .service-btn {
        color: white;
        border: none;
        border-radius: 12px;
        width: 100%;
        height: 62px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        cursor: pointer;
        background-color: #E30613;
        -webkit-transition: background-color 0.2s;
        -o-transition: background-color 0.2s;
        transition: background-color 0.2s;
    }

    .service-btn:hover {
        background-color: #c53030;
    }

    .service-card.active .service-btn {
        background-color: #624b4b;
    }

    .service-btn span.text {
        font-size: 24px;
        text-transform: uppercase;
        margin-left: 40px;
    }

    .services-quiz-total {
        display: none;
    }

    .services-quiz.open .services-quiz-total {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border: 1px solid #8F9BB3;
        border-radius: 10px;
        overflow: hidden;
        margin-top: 30px;
    }

    .services-quiz-total-content {
        background-color: #F8F8F8;
        padding: 20px 0 20px 20px;
        font-size: 20px;
        color: #767E86;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .services-quiz-total-type {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .services-quiz-total-type span {
        color: #000000;
    }

    .services-quiz-total-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 20px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .services-quiz-total-list-item {
        border: 1px solid #8F9BB3;
        border-radius: 7px;
        color: #8F9BB3;
        font-size: 20px;
        height: auto;
        min-height: 40px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 5px 0 15px;
        margin-right: 15px;
        margin-bottom: 15px;
    }

    .services-quiz-total-item-name {
        line-height: 1;
        display: block;
        padding: 10px 0;
    }

    .services-quiz-total-item-del {
        background-color: #FF0000;
        padding: 2px;
        border-radius: 7px;
        display: inline-block;
        line-height: 1;
        margin-left: 20px;
        height: 25px;
        cursor: pointer;
        width: 25px;
        text-align: center;
    }

    .services-quiz-total-item-del span.svg-cross {
        background-image: url('/assets/img/cross.svg');
        background-position: center;
        display: inline-block;
        width: 20px;
        height: 22px;
        line-height: 1;
    }

    .services-quiz-total-price .service-price-inner {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        font-size: 24px;
    }

    .services-quiz-total-price .total-v {
        color: #E30613;
        font-size: 36px;
    }

    .services-quiz-form {
        background: #EAEBED;
        padding: 20px;
        border-left: 1px solid #8F9BB3;
        min-width: 496px;
    }

    .services-quiz-form form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: 100%;
    }

    /* ===== PHOTO ESTIMATE SECTION ===== */
    .photo-estimate {
        padding: 60px 0;
    }

    .photo-estimate-header {
        margin-bottom: 40px;
    }

    .photo-estimate-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 40px;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        background: url("/assets/img/bg-form.jpg");
        padding: 45px 30px;
        border-radius: 26px;
    }

    .photo-form {
        padding: 20px;
        border-radius: 26px;
        flex: 0 0 497px;
        background: #F6F6F6;
        border: 1px solid #bbb;
    }

    .photo-form-title {
        color: #767E86;
        margin-bottom: 12px;
    }

    .form-field input,
    .form-field textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        min-height: 55px;
        font-size: 18px;
        font-family: inherit;
    }

    .form-field input::-webkit-input-placeholder,
    .form-field input::-moz-placeholder,
    .form-field input::-ms-input-placeholder,
    .form-field input::placeholder {
        color: #BBBBBB;
    }

    .form-field textarea::-webkit-input-placeholder,
    .form-field textarea::-moz-placeholder,
    .form-field textarea::-ms-input-placeholder,
    .form-field textarea::placeholder {
        color: #BBBBBB;
    }

    .form-field textarea {
        min-height: 110px;
    }

    .form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
    }

    .form-field {
        width: 100%;
    }

    .file-upload {
        margin-bottom: 30px;
        margin-top: 15px;
        width: 100%;
    }

    .file-upload .input-file {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .file-upload div.fileButton {
        background-color: transparent;
        color: white;
        border: none;
        outline: none;
        cursor: pointer;

    }

    .file-upload span {
        color: #E30613;
        text-decoration: underline;
    }

    .file-upload span small {
        color: #999999;
        text-decoration: none !important;
    }

    .file-uploaded {
        font-size: 12px;
        margin: 5px;
    }

    .form-action {
        width: 100%;
    }

    .form-action .btn-primary {
        width: 100%;
        margin-top: 15px;
        display: flex;
        justify-content: space-between;
        padding: 0 15px;
        align-items: center;
        height: 55px;
        outline: none;
        border: none;
        font-size: 24px;
        font-weight: 400;
        cursor: pointer;
    }

    .photo-form-social-desc {
        color: #767E86;
        margin: 20px 0;
    }

    .photo-form .social-buttons {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .social-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .whatsapp-btn {
        color: #00B383;
    }

    .telegram-btn {
        color: #46C8F5;
    }

    .photo-image {
        flex: 1;
    }

    .photo-image h2 {
        font-size: 58px;
        margin: 0 0 100px 50px;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        font-weight: bold;
    }

    /* ===== WORK EXAMPLES SECTION ===== */
    .work-examples {
        padding: 75px 0;
        overflow: hidden;
    }

    .examples-slider-wrapper {
        position: relative;
    }

    .work-examples .sw-slider-btn-wrapper {
        position: absolute;
        right: 0;
        top: -160px;
    }

    .work-examples .swiper {
        overflow: inherit;
    }

    .examples-slider {
        margin: 100px 0 0;
        /*    display: flex;
    gap: 32px;
    overflow-x: auto;
    margin: 100px 0 0;
    scrollbar-width: thin;
    scrollbar-color: #E30613 #f7fafc;*/
    }

    .examples-slider::-webkit-scrollbar {
        height: 8px;
    }

    .examples-slider::-webkit-scrollbar-track {
        background: #f7fafc;
    }

    .examples-slider::-webkit-scrollbar-thumb {
        background-color: #E30613;
        border-radius: 10px;
    }

    .example-card {
        min-width: 497px;
        border-radius: 26px;
        overflow: hidden;
        position: relative;
    }

    .example-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .example-caption {
        position: absolute;
        bottom: 40px;
        left: 20px;
    }

    .example-caption p {
        font-size: 28px;
        color: #fff;
    }

    /* ===== REVIEWS SECTION ===== */
    .reviews {
        padding: 75px 0;
        overflow: hidden;
    }

    .reviews-slider-wrapper {
        position: relative;
    }

    .reviews .sw-slider-btn-wrapper {
        position: absolute;
        right: 0;
        top: -60px;
    }

    .reviews .swiper {
        overflow: inherit;
    }

    .reviews-slider {
        /*    display: flex;
    gap: 32px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #E30613 #f7fafc;*/
        padding-top: 100px;
    }

    .reviews-slider::-webkit-scrollbar {
        height: 8px;
    }

    .reviews-slider::-webkit-scrollbar-track {
        background: #f7fafc;
    }

    .reviews-slider::-webkit-scrollbar-thumb {
        background-color: #E30613;
        border-radius: 10px;
    }

    .review-card {
        min-width: 300px;
        width: 100%;
        max-width: 663px;
        background: #F5F6F7;
        padding: 60px 40px 40px;
        border-radius: 12px;
        position: relative;
        color: #718096;
        margin-top: 60px;
    }

    .review-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        position: absolute;
        left: 40px;
        top: -60px;
    }

    .review-name {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .review-role {
        color: inherit;
    }

    .review-stars {
        margin: 15px 0;
    }

    .review-stars-item {
        background-image: url("/assets/img/star.svg");
        height: 24px;
        width: 24px;
        display: inline-block;
        background-repeat: no-repeat;
        background-position: center;
    }

    .review-text {
        line-height: 1.6;
    }

    /* ===== CONTACTS & FORM SECTION ===== */

    .contacts-form {
        padding: 80px 0;
    }

    .contacts-form-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 40px;
    }

    .contacts-info {
        flex: 1;
    }

    .contacts-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .contacts-phone {
        font-size: 54px;
        font-weight: 700;
        color: #8F9BB3;
        margin-bottom: 30px;
    }

    .contacts-social {
        display: flex;
        gap: 15px;
        margin-bottom: 50px;
    }

    .contacts-social .whatsapp-btn {
        background: #36AA00;
        color: #fff;
        font-weight: 400;
    }

    .contacts-social .telegram-btn {
        background: #18A3E3;
        color: #fff;
        font-weight: 400;
    }

    .contacts-address {
        font-size: 26px;
        margin-bottom: 50px;
    }

    .contacts-hours {
        font-size: 26px;
    }

    .contacts-address span,
    .contacts-hours span {
        font-size: 20px;
        color: #767E86;
    }

    .form-section {
        flex: 1;
    }

    .form-section h2 {
        text-align: right;
        margin-bottom: 20px;
    }

    .form-section .section-title:after {
        left: auto;
        right: 0;
    }

    .form-section .form-field {
        margin-bottom: 10px;
    }

    .form-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-full {
        grid-column: 1 / -1;
    }

    .form-date-time {
        display: flex;
        gap: 20px;
    }

    .form-date {
        flex: 1;
        position: relative;
    }

    .form-time {
        flex: 1;
        position: relative;
    }


    /* ===== MAP SECTION ===== */
    .map-section {
        padding: 20px 0 60px;
    }

    .map-container {
        height: 566px;
        margin-top: 75px;
    }

    .map-button {
        width: 100%;
        margin-top: 50px;
        display: flex;
        justify-content: center;
        padding: 0 15px;
        align-items: center;
        gap: 20px;
        height: 55px;
        outline: none;
        border: none;
        font-size: 24px;
        font-weight: 400;
        cursor: pointer;
        background-color: #E30613;
        border-radius: 12px;
        color: #fff;
        text-decoration: none;
        font-weight: normal;
        max-width: 340px;
    }

    .map-button:hover {
        background-color: #c53030;
    }

    /* ===== FOOTER ===== */
    footer {
        background-color: #172432;
        padding: 40px 0;
        border-top: 1px solid #e2e8f0;
    }

    .footer-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .footer-logo {
        height: 74px;
        margin-bottom: 16px;
    }

    footer .copyright {
        color: #fff;
        font-size: 16px;
        line-height: 1;
    }

    .footer-middle {
        text-align: center;
    }

    .footer-phone {
        display: block;
        text-decoration: none;
        font-size: 64px;
        color: #fff;
        margin-bottom: 32px;
        line-height: 1;
    }

    .footer-address {
        color: #fff;
        font-size: 16px;
        line-height: 1;
    }

    .footer-social-title {
        font-size: 24px;
        font-weight: 500;
        color: #fff;
        margin-bottom: 15px;
    }

    .footer-social {
        display: flex;
        gap: 15px;
    }

    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        text-decoration: none;
    }

    /* MODAL */
    .modalOverlay {
        display: none;
    }
    .modalOverlay.active {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.5);
        left: 0;
        top: 0;
        z-index: 111;
    }
    .modal {
        display: none;
    }
    .modal.active {
        display: block;
        position: fixed;
        margin: 0 auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        max-width: 1280px;
        width: 100%;
        background: #fff;
        z-index: 111;
    }
    .popapMap {
        padding: 30px;
    }
    /* ===== MOBILE ADAPTIVE ===== */
    @media (max-width: 1556px) {
        .container {
            max-width: 100%;
            padding: 0 70px;
        }

        .container.header-content {
            padding: 10px 70px;
        }

        .hero-image {
            right: 50px;
        }

        .hero-slider-btn-wrapper {
            right: -50px;
            z-index: 11;
        }

        .hero-slider-action {
            position: relative;
        }

        .service-img img {
            width: 100%;
        }

        .services-tabs-item-img img {
            width: 100%;
        }

        .services-tabs-item-btn {
            font-size: 20px;
        }

        .example-card {
            min-width: calc(100% / 3 - 64px);
        }
    }

    @media (max-width: 1440px) {
        .container.header-content {
            padding: 10px 20px;
        }

        .nav-menu a {
            font-size: 16px;
        }

        .hero-slider {
            height: 620px;
        }

        .hero-image {
            max-height: 400px;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            max-height: inherit;
        }

        .hero-slider-title .hero-title {
            position: relative;
            text-shadow: 3px 3px 4px rgba(0, 0, 0, .5);
        }

        .hero-slider-action-desc {
            font-size: 25px;
            max-width: 510px;
        }

        .why-card {
            width: calc(100% / 2 - 32px);
        }

        .services-tabs-item-btn {
            font-size: 18px;
        }
    }

    @media (max-width: 1351px) {
        .nav-menu {
            gap: 18px;
        }

        .phone-link {
            font-size: 16px;
            line-height: 1.2;
        }

        .callback-btn .l-icon {
            height: 24px;
        }

        .callback-btn .l-icon svg {
            height: 24px;
            width: 30px;
        }

        .hero-slider-title .hero-title {
            font-size: 58px;
        }

        .hero-slider-action-desc {
            font-size: 22px;
            max-width: 420px;
        }

        .section-title {
            font-size: 48px;
        }

        .services .section-subtitle {
            font-size: 28px;
        }

        .section-desc {
            font-size: 20px;
        }

        .services-tabs-item-btn {
            font-size: 16px;
        }

        .service-content-top {
            min-height: 80px;
        }

        .service-content .service-item-name {
            font-size: 22px;
        }

        .service-btn span.text {
            font-size: 20px;
        }
    }

    @media (max-width: 1281px) {
        .nav-menu a {
            font-size: 15px;
        }

        .btn-primary {
            font-size: 16px;
        }

        .hero-slider-action-desc {
            font-size: 18px;
            max-width: 370px;
        }

        .why-us-desc {
            min-width: 330px;
        }

        .services-quiz-type-var {
            font-size: 20px;
            min-width: 174px;
        }

        .services-quiz-type-desc {
            font-size: 18px;
        }

        .service-content .service-item-name {
            font-size: 20px;
        }

        .service-btn {
            height: 50px;
        }

        .footer-content {
            gap: 15px;
        }

        footer .copyright {
            font-size: 14px;
        }

        .footer-address {
            font-size: 14px;
        }

        .footer-phone {
            font-size: 52px;
            margin-bottom: 44px;
        }
    }

    @media (max-width: 1152px) {
        .container {
            padding: 0 20px;
        }

        .callback-btn .l-text {
            display: none;
        }

        .hero-slider-title {
            margin: 70px 0 100px;
        }

        .hero-slider-action-text {
            padding: 25px 23px 25px 30px;
        }

        .hero-slider-action-btn {
            max-width: 250px;
        }

        .hero-slider-item-content {
            height: 100%;
        }

        .why-us-content {
            gap: 40px;
        }

        .services-tabs-item-btn {
            font-size: 15px;
            padding: 13px 0px;
        }

        .service-content .service-item-name {
            font-size: 18px;
        }
    }

    @media (max-width: 1080px) {
        .phone-link .p-text {
            display: none;
        }

        body {
            font-size: 16px;
        }

        .section-title {
            font-size: 40px;
        }

        .why-us-text h4 {
            font-size: 22px;
        }

        .why-us-text .promo-tizer-text {
            font-size: 22px;
        }

        .services .section-subtitle {
            font-size: 24px;
        }

        .services-quiz.open .services-tab-slider-desc {
            font-size: 18px;
        }

        .photo-image h2 {
            font-size: 40px;
        }

        .photo-estimate-content {
            background-position: center;
        }

        .contacts-phone {
            font-size: 48px;
        }

        .footer-social-title {
            font-size: 22px;
        }
    }

    @media (max-width: 1024px) {
        .hero {
            padding: 35px 0;
        }

        .hero-slider-action-text {
            display: block;
        }

        .hero-slider-action-desc {
            font-size: 16px;
            max-width: 100%;
            margin-bottom: 18px;
        }

        .hero-slider-action-btn {
            font-size: 30px;
        }

        .section-title {
            padding-bottom: 10px;
            margin-bottom: 25px;
        }

        .section-subtitle {
            font-size: 22px;
        }

        .section-desc {
            font-size: 18px;
        }

        .form-action .btn-primary {
            font-size: 22px;
        }

        .file-upload {
            margin-bottom: 10px;
        }

        .why-us {
            padding: 35px 0;
        }

        .why-us-text h4 {
            font-size: 20px;
        }

        .why-us-text .promo-tizer-text {
            font-size: 20px;
        }

        .why-us-content {
            display: block;
        }

        .why-us-desc {
            min-width: 100%;
            margin-bottom: 30px;
        }

        .why-us-cards-list {
            gap: 32px;
        }

        .why-card {
            width: calc(100% / 3 - 22px);
        }

        .why-card h4 {
            font-size: 16px;
            text-align: center;
        }

        .sw-slider-btn-wrapper {
            gap: 20px;
        }

        .sw-slider-btn-prev,
        .sw-slider-btn-next {
            width: 50px;
            height: 50px;
        }

        .services {
            padding: 35px 0 20px;
        }

        .services .section-subtitle {
            font-size: 22px;
        }

        .services-tabs-nav {
            margin: 40px 0 10px;
        }

        .services-quiz.open .services-quiz-type {
            gap: 0px;
            flex-wrap: wrap;
        }

        .services-quiz-type-var {
            margin-right: 30px;
        }

        .services-quiz-type-desc {
            width: 100%;
            margin-top: 20px;
        }

        .services-quiz.open .services-slider-wrapper {
            padding-top: 80px;
        }

        .service-content-top {
            display: block;
        }

        .service-btn span.text {
            font-size: 18px;
        }

        .services-quiz-total-type {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .services-quiz-total-price .total-v {
            font-size: 30px;
        }

        .services-quiz.open .services-quiz-total {
            display: block;
        }

        .services-quiz-form {
            border-left: none;
        }

        .service-price {
            padding-top: 10px;
        }

        .photo-estimate {
            padding: 35px 0;
        }

        .photo-estimate-content {
            -webkit-box-orient: vertical;
            -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
        }

        .photo-form {
            flex: none;
            width: 100%;
        }

        .photo-image h2 {
            font-size: 58px;
            margin: 0 0 0px 0px;
        }

        .photo-estimate-content {
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start;

            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        .work-examples {
            padding: 35px 0 0;
        }

        .examples-slider {
            margin: 50px 0 0;
            gap: 20px;
        }

        .reviews {
            padding: 35px 0;
        }

        .reviews-slider {
            padding-top: 50px;
        }

        .review-name {
            font-size: 22px;
        }

        .contacts-form {
            padding: 20px 0;
        }

        .contacts-social {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .contacts-address {
            font-size: 22px;
            margin-bottom: 20px;
        }

        .contacts-hours {
            font-size: 24px;
        }

        .contacts-address span,
        .contacts-hours span {
            margin-bottom: 10px;
            display: block;
        }

        .contacts-hours {
            font-size: 24px;
        }

        .contacts-hours br {
            display: none;
        }

        .contacts-form-inner {
            display: block;
        }

        .contacts-info {
            width: 100%;
        }

        #contact-form {
            padding-top: 50px;
        }

        .form-section h2 {
            text-align: left;
            margin-bottom: 20px;
        }

        .form-section .section-title::after {
            left: 0;
            right: auto;
        }

        .form-grid {
            grid-template-columns: 1fr;
        }

        .form-date-time {
            flex-direction: column;
        }

        .map-section {
            padding: 20px 0 35px;
        }

        .map-container {
            height: 400px;
            margin-top: 40px;
        }

        .map-button {
            width: 100%;
            margin-top: 30px;
            font-size: 22px;
        }

        .contacts-address br {
            display: none;
        }

        .footer-phone {
            font-size: 40px;
            margin-bottom: 55px;
        }
    }

    @media (max-width: 960px) {
        .logo {
            margin-left: 0px;
        }

        .header-content .contact-info {
            margin-right: 60px;
        }

        .phone-link .p-text {
            display: block;
        }

        .burger-checkbox-wrapper {
            display: block;
            position: absolute;
            right: 20px;
        }

        .burger-checkbox {
            position: absolute;
            visibility: hidden;
        }

        .burger {
            cursor: pointer;
            display: block;
            position: relative;
            border: none;
            background: transparent;
            width: 40px;
            height: 26px;
            margin: 0px auto;
            z-index: 11;
        }

        .burger::before,
        .burger::after {
            content: '';
            left: 0;
            position: absolute;
            display: block;
            width: 100%;
            height: 4px;
            border-radius: 10px;
            background: #E30613;
        }

        .burger::before {
            top: 0;
            box-shadow: 0 11px 0 #E30613;
            transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
        }

        .burger::after {
            bottom: 0;
            transition: bottom .3s .15s, transform .3s;
        }

        .burger-checkbox:checked+.burger::before {
            top: 11px;
            transform: rotate(45deg);
            box-shadow: 0 6px 0 rgba(227, 6, 19, 0);
            transition: box-shadow .15s, top .3s, transform .3s .15s;
        }

        .burger-checkbox:checked+.burger::after {
            bottom: 11px;
            transform: rotate(-45deg);
            transition: bottom .3s, transform .3s .15s;
        }

        .nav-menu {
            position: fixed;
            top: 0;
            left: -100%;
            display: flex;
            flex-direction: column;
            width: 100%;
            height: 100vh;
            background: #fff;
            justify-content: center;
            z-index: 1;
            padding-left: 50px;
            transition: left .3s;
        }

        .nav-menu.open {
            left: 0;
        }

        .nav-menu a {
            font-size: 40px;
        }

        .nav-menu a.active {
            color: #E30613;
        }

        .nav-menu a.active:after {
            display: none;
        }

        .services-tabs-nav {
            gap: 10px;
            flex-wrap: wrap;
        }

        .services-tabs-item {
            width: calc(100% / 4 - 8px);
        }
    }

    @media (max-width: 768px) {
        .hero-slider {
            height: 510px;
        }

        .hero-image {
            right: 0px;
            top: -16px;
        }

        .hero-slider-title {
            margin: 0px 0;
            padding-left: 0;
        }

        .hero-slider-item-inner {
            background-size: contain;
            background-position: center top;
        }

        .hero-slider-item-content {
            padding: 0 30px 0px;
        }

        .hero-slider-title {
            margin: 40px 0 100px;
            padding-left: 0;
        }

        .hero-slider-title .hero-title {
            font-size: 40px;
        }

        .hero-slider-action {
            display: block;
        }

        .hero-slider-item-content {
            padding: 0 40px 0px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -ms-flex-pack: distribute;
            justify-content: space-around;
        }

        .hero-slider-action-btn {
            font-size: 24px;
            max-width: 100%;
            border-radius: 0px 0px 20px 20px;
            padding: 15px;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            gap: 10px;
        }

        .hero-slider-btn-wrapper {
            position: absolute;
            right: auto;
            transform: translateX(-50%);
            top: auto;
            bottom: -20px;
            left: 50%;
        }

        .hero-pagination {
            order: 2;
        }

        .hero-slider-button-prev {
            order: 1;
        }

        .hero-slider-button-next {
            order: 3;
        }

        .hero-slider-action-type {
            display: flex;
            gap: 10px;
        }

        .hero-slider-action-type-item {
            padding: 7px 40px;
            border-radius: 10px;
            margin-bottom: 0px;
            width: 100%;
        }

        .hero-slider-action-type-item::before {
            left: 10px;
            top: 7px;
        }

        .section-title {
            font-size: 32px;
        }

        .services-tabs .services-slider.active {
            margin-right: 1px;
        }

        .why-us-cards-list {
            gap: 20px;
        }

        .why-card {
            width: calc(100% / 2 - 10px);
        }

        .photo-image h2 {
            font-size: 34px;
        }

        .review-card {
            padding: 55px 25px 25px;
        }

        .footer-content {
            flex-direction: column;
            gap: 30px;
            text-align: center;
        }

        .footer-logo {
            height: 65px;
            margin-bottom: 16px;
        }

        .footer-middle {
            order: 1;
            width: 100%;
        }

        .footer-right {
            order: 2;
            text-align: center;
            width: 100%;
        }

        .footer-left {
            order: 3;
            width: 100%;
        }

        .footer-phone {
            font-size: 40px;
            margin-bottom: 10px;
        }

        .footer-social {
            justify-content: center;
        }

        .example-caption {
            bottom: 30px;
        }

        .example-caption p {
            font-size: 22px;
        }
    }

    @media (max-width: 600px) {
        .hero-slider-item-inner {
            background: none;

        }

        .hero-image {
            display: none;
        }

        .hero-slider-title {
            display: none;
        }

        .hero-image-mob {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
        }

        .hero-image-mob img {
            height: 100%;
            width: 100%;
        }

        .hero-slider-action {
            margin-top: 205px;
        }

        .hero-slider-item-content {
            -webkit-box-pack: normal;
            -ms-flex-pack: normal;
            justify-content: normal;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 15px;
        }

        .hero-slider-btn-wrapper {
            bottom: -10px;
        }

        .hero-slider-action-type {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }

        .hero-slider-title {
            margin: 0;
            padding-left: 15px;
        }

        .hero-slider-item-content {
            padding: 0 5px 0px;
        }

        .why-card {
            width: 100%;
        }

        .services-tabs-nav {
            margin: 20px 0 10px;
        }

        .services-tabs-item {
            width: calc(100% / 3 - 7px);
        }

        .services-tabs .services-slider.active {
            margin-right: 0px;
            padding: 0 1px 5px;
        }

        .services-quiz-form {
            min-width: 100%;
        }

        .form-group {
            display: block;
        }

        .photo-estimate-content {
            padding: 30px 20px;
        }

        .examples-slider-wrapper {
            margin-top: 100px;
        }

        .work-examples .sw-slider-btn-wrapper {
            top: -80px;
        }

        .reviews-slider-wrapper {
            margin-top: 15px;
        }

        .reviews .sw-slider-btn-wrapper {
            top: 10px;
            z-index: 11;
        }

        .contacts-phone {
            font-size: 40px;
            text-align: center;
        }

        .footer-address {
            font-size: 14px;
            line-height: 1.3;
        }

        .nav-menu a {
            font-size: 30px;
        }

        .phone-link .p-text {
            display: none;
        }

        .map-button {
            width: 100%;
            margin-top: 20px;
            font-size: 18px;
            max-width: 100%;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
        }

        .photo-estimate-content {
            background: #dfdfdf;
        }
    }

    @media (max-width: 431px) {
        body {
            font-size: 14px;
        }

        .callback-btn {
            padding: 5px 10px;
            border-radius: 5px;
            margin-top: -3px;
        }

        .callback-btn .l-icon {
            height: 17px;
        }

        .callback-btn .l-icon svg {
            height: 16px;
            width: 22px;
        }

        .section-title {
            font-size: 25px;
        }

        .section-subtitle {
            font-size: 16px;
        }

        .why-card {
            width: 47%;
        }

        .why-card h4 {
            font-size: 14px;
        }

        .services-tabs-nav {
            margin: 10px 0 10px;
        }

        .services .section-subtitle {
            font-size: 14px;
            font-style: italic;
        }

        .services .section-desc {
            font-size: 16px;
        }

        .services-quiz .section-subtitle {
            font-style: normal;
            font-size: 16px;
        }

        .services-tabs-item {
            width: calc(100% / 4 - 5px);
        }

        .services-tabs-nav {
            gap: 6px;
            flex-wrap: wrap;
        }

        .services-tabs-item-btn {
            font-size: 11px;
            padding: 9px 0px;
            border-color: #999;
            border: none;
        }

        .services-quiz-type-desc {
            font-size: 16px;
        }

        .services-quiz-total-type {
            font-size: 18px;
        }

        .photo-image h2 {
            font-size: 24px;
        }

        .form-action .btn-primary {
            font-size: 18px;
            height: 50px;
        }

        .review-name {
            font-size: 20px;
        }

        .contacts-phone {
            font-size: 30px;
        }

        .contacts-address,
        .contacts-hours {
            font-size: 18px;
        }

        .footer-phone {
            font-size: 30px;
            margin-bottom: 18px;
        }

        .services-quiz-total-price .service-price-inner {
            font-size: 22px;
        }

        .service-price-inner .total-i {
            width: 25px;
            height: 25px;
        }

        .service-price-inner .total-i svg {
            width: 100%;
        }

        /**/
        .hero-slider-action-btn {
            font-size: 14px;
        }

        .social-btn {
            font-size: 13px;
        }

        .services-quiz.open .services-tab-slider-desc {
            font-size: 12px;
            font-style: italic;
        }
    }