.header_catalog {
    padding-bottom: 80px;
    padding-top: 40px;
}


.header_catalog h1 {
    display: inline-block; /* чтобы линия была только под текстом */
    position: relative;
}

.header_catalog h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0; /* отступ вниз от текста */
    width: 200%;
    height: 2px;   /* толщина линии */
    background-color: #000; /* цвет линии */
    border-radius: 5px;
}

.header_catalog__text{
    width: 80%;
    padding-bottom: 80px;
}

.header_catalog__text h2{
    padding-top: 30px;
    color: #494949;
    padding-bottom: 30px;
}


.header_catalog a {
    color: #ffffff;
    background: black;
    padding: 15px;
    border-radius: 5px;
    font-size: 25px;
    display: inline-block;   /* чтобы вёл себя как блок */
    box-sizing: border-box;  /* учитываем padding внутри */
    text-decoration: none;   /* если не нужна подчёркивающая линия */
}

.header_catalog__img {
    position: relative;
    display: inline-block; /* чтобы контейнер подстраивался */

}

.header_catalog__img .header_img_blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(10px);
    z-index: 1;
}

.header_catalog__img .header_img {
    position: relative;
    z-index: 2;
    width: 100%;
}


/*=====================================*/

.category_contaner > h1 {
    text-align: center;
    margin-bottom: 30px;
}

.category_content {
    position: relative;
    padding-bottom: 50px;
    gap: 5px;
    display: flex;
    align-items: center
}

.logo_brend{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    left: 0;
}


.category_items > div{
    padding: 10px 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
    flex-direction: column;
    background: #D9D9D9;
    border-radius: 10px;
}


.category_items h1{
    font-size: 25px;
}
.category_items h2{
    font-size: 20px;
    color: #3e3e3e;
}

.category_items a {
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    background: #000000;
    margin: 15px;
    display: inline-block;   /* чтобы вёл себя как блок */
    box-sizing: border-box;  /* учитываем padding внутри */
    text-decoration: none;   /* если не нужна подчёркивающая линия */
    width: 30%;
    text-align: center;
    font-size: 20px;
}


.geography_supplies {
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.geography_supplies h1 {
    text-align: center;

}


.geography_supplies h2 {
    font-size: 25px;
    position: relative;
    padding-left: 20px;
}

.geography_supplies h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;              /* толщина линии */
    background-color: #000;  /* цвет линии */
}



.always_touch{
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-bottom: 50px;
    max-width: 600px;
}

.always_touch h1 {
    text-align: center;
}
.always_touch__contaner_2 > div,
.always_touch__contaner_1 {
    padding: 20px;
    background: #D9D9D9;
    border-radius: 10px;
    position: relative;
}

.feedback-container{
    margin-bottom: 50px;
}

.always_touch__contaner_2 > div a.call_but,
.always_touch__contaner_1 a {
    text-decoration: none;
    display: flex;
    align-items: center;
    border-radius: 10px;
    background: #000000;
    color: #fff;
    position: absolute;
    padding: 10px;
    gap: 10px;
    right: 0;

    transform: translateY(-10%) translateX(5%);
}

.always_touch__contaner_1 a img {
    width: 50px;
}

.always_touch__contaner_2 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
}

.always_touch__contaner_2 > div{
    width: 90%;
}

.always_touch__contaner_2 > div a.call_but{
    background: #000000;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    position: absolute;
    right: 0;
}

div.container.touch{
    display: flex;

    align-items: center;
}
.logo_brend img {
    transform: rotate(90deg);
    max-height: 100px;
}




.category_content{
    flex-direction: column;
}

.logo_brend_container {
    width: 100%;
    overflow: hidden;

    mask-image: linear-gradient(
            90deg,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%
    );
}
.logo_brend_track {
    display: flex;
    gap: 15px; /* без промежутков */
    animation: scroll 7s linear infinite; /* скорость можно регулировать */
}

.logo_brend_track img {
    flex: 0 0 auto; /* фиксируем размер слайда */
    max-height: 80px; /* регулируем размер */
    object-fit: contain;
}







@media (max-width: 768px) {



    .logo_brend {
        width: 100%;
        overflow: hidden;
    }
    .logo_brend .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .logo_brend img {
        max-height: 80px; /* или подгонять под контейнер */
        object-fit: contain;
        margin: 0 15px;
        transition: transform 0.3s;
    }


    .logo_brend{
        flex-direction: row;
    }

    .always_touch__contaner_2{
        flex-direction: column;

    }

    .always_touch__contaner_2 > div{
        width: 100%;
    }

    .category_items a{
        width: 60%;
    }

    .header_catalog{
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .header_catalog__text{
        width: 100%;
        padding-bottom: 40px;
    }
    .header_catalog__text h2{
        padding-top: 20px;
    }

    div.container{
        width: 100%;
    }
    
}

