.brand_list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 80%;
    margin: 8px 0
}

.brand_list .list{
    width: 100%;
}

.brand_list .letter{
    width: 100%;
    padding: 1rem 0;
    border-top: 1px solid black;
}
.brand_list .letter:first-child{
    border-top: none;
}

.brand_list .table {
    padding-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 0;
    font-size: 22px
}

.brand_list .table a {
    width: 275px
}

@media (max-width: 1800px) and (min-width: 1400px) {
    .brand_list .table a {
        width:20%
    }
}

@media (max-width: 1400px) and (min-width: 1000px) {
    .brand_list .table a {
        width:25%
    }
}

@media (max-width: 1000px) and (min-width: 700px) {
    .brand_list .table a {
        width:33.3333333333%
    }
}

@media (max-width: 700px) and (min-width: 400px) {
    .brand_list .table a {
        width:50%
    }
}

@media (max-width: 400px) {
    .brand_list .table a {
        width:100%
    }
}

@media (max-width: 800px) {
    .brand_list {
        width:100%;
        padding: 0 1rem
    }

    .brand_list a {
        font-size: 18px
    }
}

.brand_list h3 {
    font-size: 54px;
    line-height: 60px
}

.brand_list .mobile {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: #0006
}

.brand_list .mobile .content {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 1rem;
    position: relative;
    bottom: -20%;
    left: 0;
    z-index: 10;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.brand_list .mobile .head {
    border-bottom: 2px solid black;
    padding: 10px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 30px;
    line-height: 32px
}

.brand_list .mobile .btns {
    margin-top: 1rem;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.brand_list .mobile .btns button {
    width: 25px;
    height: 25px;
    background-color: transparent;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center
}

.brand_list .mobile .btns button:disabled {
    color: #555
}

.brand_list .mobile_button {
    margin-left: auto;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    border: 2px solid var(--primary-color-1);
    color: var(--primary-color-1);
    background-color: transparent;
    position: sticky;
    bottom: 100px;
    right: 20px;
    z-index: 4;
    display: none;
    align-items: center;
    justify-content: center;
}

.brand_list .mobile_button span {
    z-index: 15;
    width: 30px;
    height: 30px;
    display: block;
}

@media (max-width: 767px) {
    .brand_list .mobile_button{
        display: flex;
    }
    .brand_list .mobile.active {
        display:unset;
    }

    .footer_button{
        bottom: 172px;
    }
}


