/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    z-index: 1;
}

.brand-one .brand-bg-img {
    background-size: cover;
    background-position: right bottom;
    z-index: 1;
    position: relative;
    background-color: var(--crank-base);
    border-radius: 20px;
    padding: 12rem 0;
}

.brand-one__inner {
    z-index: 2;
    width: 40%;
    position: absolute;
    right: 30px;
    transform: translateY(-50%);
}
@media (max-width: 767px) {
    .brand-one .brand-bg-img {
        background-image: none !important;
        background-color: #f4f4f4;
        padding: 2rem;
    }

    .brand-one__inner {
        position: static;
        width: 100%;
        right: auto;
        transform: none;
        text-align: center;
    }
}

.brand-one__carousel {
    position: relative;
    display: block;
}

.brand-one__single {
    position: relative;
    display: block;
    text-align: center;
}

.brand-one__img {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.brand-one__img > img {
    width: auto !important;
    margin: 0 auto 0;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
    object-fit: contain;
}

.brand-one__single:hover .brand-one__img > img {
    transform: scale(1.08);
}

/*--------------------------------------------------------------
# Brand Three
--------------------------------------------------------------*/
.brand-three {
    padding: 90px 0px 0px;
}

/* The End */
