.int-manufacturer-tags{
    display: flex;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
}
.int-manufacturer-tag{
    border-radius: 8px;
    border: 2px solid var(--cl-light);
    color: var(--cl-brown);
    font-size: 16px;
    padding: 8px 11px;
    background-color: transparent;
    transition: background-color 300ms ease-in-out,
    border-color 300ms ease-in-out;
}
.int-manufacturer-tag:hover{
    background-color: var(--cl-semi-light);
    border-color: transparent;
    color: var(--cl-brown);
}
.int-manufacturer-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.int-manufacturer-letters{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0 0 30px 0;
    border-bottom: 2px solid var(--cl-semi-light);
    margin-top: 50px;
}
.int-manufacturer-carousel-wrap .int-slider-wrapper .swiper-pager{
    top: calc(50% - 10px);
}
.int-manufacturer-carousel-wrap .swiper-container-horizontal>.swiper-pagination-bullets{
    position: static;
}
.int-manufacturer-carousel-wrap .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
    margin-top: 24px;
}
.int-manufacturer-carousel-wrap .swiper-viewport,
.int-manufacturer-carousel-wrap{
    background: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
    border-radius: 0;
    border: none;
}
.int-product-manufacturer-list{
    margin-bottom: 100px;
}
.int-product-manufacturer-list-title{
    font-size: 20px;
    font-weight: 600;
    font-family: 'Roboto Flex', sans-serif;
    text-transform: uppercase;
    margin-top: 50px;
    margin-bottom: 30px;
}
.int-manufacturer-letters a{
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -2px;
    font-family: 'Roboto Flex', sans-serif;
}
.int-manufacturer-letter-title{
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -2px;
    font-family: 'Roboto Flex', sans-serif;
    margin: 0;
    scroll-margin-top: var(--v-header-p);
}
.int-manufacturer-letter-group{
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 24px 0;
    width: 100%;
}
.int-manufacturer-letter-group:not(:last-of-type){
    border-bottom: 2px solid var(--cl-semi-light);
}
.int-manufacturer-letter-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    width: 100%;
}
.int-manufacturer-letter-grid a{
    font-size: 16px;
    font-family: 'Roboto Flex', sans-serif;
}
.int-manufacturer-grid-wrap{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.int-manufacturer-grid-top{
    display: flex; 
    align-items: center;
    /* margin-bottom: 40px; */
    margin-top: 50px;
}
.int-manufacturer-grid-top .int-droplist-list a{
    white-space: nowrap;
}
.int-manufacturer-grid-top .int-manufacturer-grid-title{
    margin: 0 auto 0 0;
    font-size: 28px;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    text-transform: uppercase;
}

.int-manufacturer-info{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 100px;
    margin-bottom: 100px;
    justify-content: start;
    align-items: start;
}
.int-manufacturer-info ul li{ 
    font-size: 16px; 
    color: var(--cl-brown);
}
.int-manufacturer-info .int-manufacturer-info-logo{
    max-width: 200px;
    max-height: 120px;
    width: auto;
    margin-bottom: 30px;
}
.int-manufacturer-info-text{
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
}


@media (max-width: 1200px) {
    .int-manufacturer-info ul li{ 
        font-size: 14px; 
    }
    .int-manufacturer-letter-grid{
        grid-template-columns: repeat(5, 1fr);
    }
    .int-manufacturer-info{
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .int-manufacturer-info-text{
        font-size: 14px;
    }
    .int-manufacturer-info-logo{
        margin-bottom: 20px;
    }
}

@media (max-width: 1024px) {
    .int-manufacturer-letter-grid{
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .int-manufacturer-tag{
        padding: 6px 8px;
        font-size: 14px;
    }
    .int-product-manufacturer-list-title{
        margin-top: 30px;
        margin-bottom: 24px;
    }
    .int-manufacturer-letters{
        margin-top: 30px;
    }
    .int-manufacturer-letter-grid{
        grid-template-columns: repeat(3, 1fr);
    }
    .int-manufacturer-grid-top .int-manufacturer-grid-title{
        margin-left: auto;
    }
    .int-manufacturer-grid-top{
        text-align: center;
        flex-direction: column;
        gap: 24px;
        /* justify-content: stretch; */
        align-items: stretch;
        margin-top: 30px;
        margin-bottom: 24px;
    }
    .int-manufacturer-info{
        margin-top: 40px;
    }
}

@media (max-width: 520px) {
    .int-manufacturer-letter-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
/*--- product grid ---*/ 
@media (max-width: 1200px) {
    .int-manufacturer-grid{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .int-manufacturer-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .int-manufacturer-grid{
        display: flex;
        flex-direction: column;
    }
}