@media (max-width: 1199px) {}
@media (max-width: 1023px) {}
@media(max-width: 767px) {}

@media screen and (min-width: 768px) {
    :root {
        --section-space: 60px
    }

    h1, .h1 {
        font-size: 48px;
    }

    .btn {
        padding: 15px 40px;
    }

    .feedback_body {
        padding: 40px;
    }

    .contact_map iframe {
        width: 100%;
        height: 100%;
    }

    .contact_text {
        padding: 30px;
    }

    .form-checkbox-label {
        font-size: 14px;
    }

    .intro_item {
        padding: 30px;
    }
    .service-card_prices {
        font-size: 36px;
        margin-bottom: 20px;
        gap: 20px;
    }

    .title {
        font-size: 38px;
    }

    .prices .title{
        text-align: left;
    }
    .prices .btn {
        width: auto;
    }
}

@media screen and (min-width: 1024px) {
    :root {
        --section-space: 80px
    }
    h1, .h1 {
        font-size: 58px;
    }
    .header .header_menu {
        display: flex;
        flex-direction: row;
    }
    .burger_btn {
        display: none;
    }
    .intro_box {
        padding: 60px 0;
    }
    .header_nav-mobile {
        display: none;
    }
    .before-after_item {
        display: flex;
    }
}

@media screen and (min-width: 1200px) {
    .intro_items {
        grid-template-columns: repeat(3, 1fr);
    }

    .why_us_title {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        margin: 0;
    }


    .why_us_title span {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        border: 2px solid var(--color-border);
        width: 20vw;
        height: 20vw;
        border-radius: 50%;
        z-index: -2;
    }

    .why_us_wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 100px 400px;
    }

    .feedback_img {
        display: block;
    }

    .feedback_wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .contact_wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (hover: hover) {
    .btn:not([disabled]):not(:disabled):not(.disabled):hover {
        background-position: right center;
    }

    .rte a:hover {
        color: #0056b3;
    }

    .pulse-button:hover::after {
        display: none;
    }

    .back-top-button:hover svg {
        scale: 1.15;
    }

    .why_us_item:hover {
        scale: 1.1;
    }

    .faq_item_title:hover .faq_item_icon{
        opacity: 1;
        scale: 1.06;
    }
}