@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    .header__slogan {
        font-size: 24px;
    }
    .hero__title {
        width: 80%;
        margin: 0 auto;
        font-size: 56px;
    }
    .hero__title br {
        display: none;
    }
    .hero__name {
        font-size: 34px;
    }
    .hero__text {
        font-size: 20px;
    }
    .hero__contact-wrapper div {
        width: fit-content;
        padding: 10px 18px;
    }
    .hero__phone {
        padding: 12px 0 12px 35px;
        font-size: 16px;
    }
    .repair__title, .area__title {
        font-size: 44px;
    }
    .brands__item {
        width: 48%;
        display: flex;
        flex-direction: column;
    }
    .brands__btn {
        margin-top: auto;
    }
    .brands__item img {
        max-width: 100%;
    }
    .main-content .gallery {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}
@media (max-width: 1100px) {
    .repair__item {
        height: 410px;
    }
}
@media (max-width: 991px) {
    .brands__btn {
        font-size: 20px;
    }
    .header__logo-wrapper {
        flex-direction: column;
    }
    .repair__list {
        flex-wrap: wrap;
        justify-content: center;
    }
    .repair__item {
        width: 48%;
    }
    .area__list {
        justify-content: space-between;
    }
    .area__item {
        width: 47%;
    }
    .footer__wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }
    .footer__logo-wrapper {
        width: 100%;
    }
    .header__contact-wrapper {
        gap: 30px;
        padding-left: 30px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}
@media (max-width: 768px) {
    .header__top {
        display: none;
    }
    .hero__title {
        width: 100%;
    }
    .hero__contact-wrapper {
        flex-wrap: wrap;
    }
    .brands__list {
        flex-wrap: wrap;
    }
    .brands__item {
        width: 100%;
    }
    .repair__logo img {
        width: 120px;
    }
    .area, .footer__top, .brands {
        padding: 50px 0;
    }
    .content__text {
        padding: 0 0 30px;
        font-size: 16px;
    }
}
@media (max-width: 600px) {
    .hero__title {
        font-size: 32px;
        line-height: 1.2;
    }
    .hero__name {
        font-size: 24px;
    }
    .hero__text {
        font-size: 16px;
    }
    .brands__title, .repair__title, .area__title {
        font-size: 24px;
        line-height: 1.2;
    }
    .brands__item-text {
        font-size: 14px;
    }
    .repair__item {
        width: 100%;
        height: auto;
    }
    .area__item {
        width: 100%;
    }
    .burger-menu {
        position: relative;
        width: 36px;
        height: 36px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        position: relative;
        background: #555;
        border-radius: 4px;
        z-index: 1000;
    }

    .burger-line {
        width: 18px;
        height: 2px;
        background-color: white;
        transition: all 0.3s ease;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .burger-line:nth-child(1) {
        top: 10px;
    }
    
    .burger-line:nth-child(2) {
        top: 17px;
    }
    
    .burger-line:nth-child(3) {
        top: 24px;
    }
    
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateX(-50%) rotate(45deg);
        top: 50%;
    }
    
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateX(-50%) rotate(-45deg);
        top: 50%;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100%;
        background-color: #fff;
        transition: all 0.5s ease;
        z-index: 99;
    }

    .main-navigation.active {
        right: 0;
    }
    .main-navigation ul {
        padding: 100px 50px 0;
        flex-direction: column;
        align-items: flex-start;
    }

}
@media (max-width: 425px) {
    .main-navigation ul {
        gap: 30px;
    }
    .footer__logo-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
}