/***
=============================================
Brand One
=============================================
***/
.brand-one {
    position: relative;
    display: block;
    background-color: var(--tanspot-primary);
    padding: 29px 0px;
    z-index: 2;
}

.brand-one__single {
    position: relative;
    display: block;
}

.brand-one__single-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 23px 24px;
    z-index: 1;
    border: 1px solid #062f3a4d;
    background: #fff;
    object-fit: contain;
    border-radius: 7px;
    margin: 0 7px;
}

.brand-one__single-inner::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--tanspot-white);
    transform: scaleX(0);
    transition: all 600ms ease 100ms;
    content: "";
    z-index: -1;
}

.brand-one__single:hover .brand-one__single-inner::before {
    transform: scaleY(1);
}

.brand-one__single-inner a {
    position: relative;
    display: block;
}

.brand-one__single-inner img {
    width: auto;
    transition: .7s ease;
    transform: scale(1.05);
}

.brand-one__single:hover .brand-one__single-inner img {
    transform: scale(1);
}

.brand-one__carousel.owl-carousel .owl-item img {
    width: 120px;
    height: 43px;
    object-fit: contain;
}


@media(max-width:767px){
    .brand-one__carousel.owl-carousel .owl-item img {
    width: 92px;
}
}