/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    background-color: var(--erepair-extra);
    padding: 0 0 120px;
    z-index: 1;
}

.brand-one__inner {
    position: relative;
    display: block;
    background-color: #c3dcfb;
    border-radius: 20px;
    padding: 53px 65px 53px;
}

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

.brand-one__single {
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 25px;
    min-height: 160px;
}

.brand-one__img {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
}

.brand-one__img>img {
    position: relative;
    max-width: 250px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0.9;
    filter: brightness(1.1);
}

.brand-one__single:hover .brand-one__img>img {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.2);
}

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
    position: relative;
    display: block;
    padding: 120px 0 118px;
    border-top: 1px solid var(--erepair-bdr-color);
    z-index: 1;
}

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

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

.brand-two__single {
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 25px;
    min-height: 160px;
}

.brand-two__img {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
}

.brand-two__img>img {
    position: relative;
    max-width: 250px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0.8;
    filter: grayscale(0%);
}

.brand-two__single:hover .brand-two__img>img {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1.1);
}






/*--------------------------------------------------------------
# Responsive Styles for Brand One and Brand Two
--------------------------------------------------------------*/
/* Brand One Responsive */
@media (max-width: 991px) {
    .brand-one {
        padding: 0 0 80px;
    }
    
    .brand-one__inner {
        padding: 40px 50px 40px;
    }
    
    .brand-one__img {
        height: 100px;
    }
    
    .brand-one__img>img {
        max-width: 200px;
        max-height: 100px;
    }
    
    .brand-one__single {
        padding: 20px;
        min-height: 130px;
    }
}

@media (max-width: 767px) {
    .brand-one {
        padding: 0 0 60px;
    }
    
    .brand-one__inner {
        padding: 30px 30px 30px;
    }
    
    .brand-one__img {
        height: 80px;
    }
    
    .brand-one__img>img {
        max-width: 160px;
        max-height: 80px;
    }
    
    .brand-one__single {
        padding: 15px;
        min-height: 100px;
    }
}

@media (max-width: 479px) {
    .brand-one__inner {
        padding: 20px 20px 20px;
    }
    
    .brand-one__img>img {
        max-width: 130px;
        max-height: 70px;
    }
    
    .brand-one__img {
        height: 70px;
    }
}

/* Brand Two Responsive */
@media (max-width: 991px) {
    .brand-two {
        padding: 80px 0 78px;
    }
    
    .brand-two__img {
        height: 100px;
    }
    
    .brand-two__img>img {
        max-width: 200px;
        max-height: 100px;
    }
    
    .brand-two__single {
        padding: 20px;
        min-height: 130px;
    }
}

@media (max-width: 767px) {
    .brand-two {
        padding: 60px 0 58px;
    }
    
    .brand-two__img {
        height: 80px;
    }
    
    .brand-two__img>img {
        max-width: 160px;
        max-height: 80px;
    }
    
    .brand-two__single {
        padding: 15px;
        min-height: 100px;
    }
}

@media (max-width: 479px) {
    .brand-two__img>img {
        max-width: 130px;
        max-height: 70px;
    }
    
    .brand-two__img {
        height: 70px;
    }
}

/*--------------------------------------------------------------
# Projects Page Logo Fix
--------------------------------------------------------------*/
.projects-page .main-menu-two__logo img {
    max-width: 140px !important;
    height: auto;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/