.brand_logo_section {
    padding-top: 5vh;
    padding-bottom: 5vh;
    position: relative;
    width: 100%
}

.brand-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: clamp(50px, 10vh, 150px)
}

@media(min-width: 700px) {
    .brand {
        padding-top: calc(var(--height-nav-md) + 30px);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: clamp(50px, 10vh, 150px)
    }
}

.brand .banner {
    display: none
}

@media(min-width: 0)and (max-width: 979px) {
    .brand_logo_section {
        padding-top: var(--pd-mobile-top, 50px);
        padding-bottom: var(--pd-mobile-bottom, 50px)
    }
}

.brand_logo_section .container_inside {
    margin: 0 auto;
    padding: 0 var(--pd-inside-md, 5vw)
}

.brand_logo_list {
    display: grid;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px
}

@media(min-width: 940px) {
    .brand_logo_list {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px
    }
}

.brand_logo_list.--center {
    display: grid;
    grid-template-columns: repeat(auto-fit, 30%);
    justify-content: center;
    gap: 30px
}

@media(min-width: 0)and (max-width: 979px) {
    .brand_logo_list.--center {
        grid-template-columns: repeat(1, 100%);
    }
}

.brand_logo_list li {
    position: relative;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 30px;
    box-sizing: border-box
}

.brand_logo_list li .box {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid var(--color-border, #e5e5e5);
    transition: all .35s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.brand_logo_list li .box:after {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
}

.brand_logo_list li .box .img_container {
    position: absolute;
    width: 70%;
    height: 70%;
    left: 15%;
    top: 15%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all .35s ease
}

.brand_logo_list li .box:hover {
    border-color: var(--color-main, #000)
}

/*# sourceMappingURL=brand.css.map */