/*-------------------------------------*/
/* manufacturers page */
/*-------------------------------------*/
.bgbanner.carmanu {
    background-image: url(/images/carmanu-banner.webp);
}
.manu-bg {
    background: #EAEAEA;
    border-radius: 5px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 100%;
    box-shadow: 0px 3px 6px #00000080;
    position: relative;
    z-index: 1;
    width: 100%;
}
.manu-bg:hover {
	color:#232D30;
	text-decoration:none;
}
.manu-bg-hover {
    background: transparent linear-gradient(
	133deg, #78D3EB 0%, #FFAD48 50%, #BBD353 100%) 0% 0% no-repeat padding-box;
    color: #232D30;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    z-index: 3;
    opacity: 0;
    transition: opacity 1s;
}
.manu-bg:hover .manu-bg-hover {
    opacity: 1;
}
.manu-bg img {
    width: 80px;
    z-index: 3;
}
.manu-bg .manu-name {
    z-index: 3;
}

/*adaptive changes*/
@media screen and (max-width:1050px) { /* Tablet Landscape */
}
@media screen and (max-width:767px) { /* Mobile Large */
}
@media not all and (min-resolution:.001dpcm) { 
    @supports (-webkit-appearance:none) {      
        .bgbanner.carmanu {background-image: url(/images/carmanu-banner.png);}
    }
}