/**
 * Product ID 7453 Banner Styles
 * Loaded on single product page for product 7453
 */

.banner {
    display: flex;
    background-color: #002d5c;
    color: white;
    padding: 0 20px;
    align-items: center;
    margin: 0 auto 20px;
    max-width: 1160px;
    position: relative;
    cursor: pointer;
}
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background-image: url('https://heavydutymobility.com/wp-content/uploads/2024/05/Isolation_Mode.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.banner .left-section {
    padding-right: 20px;
    width: 25%;
    position: relative;
}
.banner .left-section h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
}
.banner .right-section {
   display: grid;
    flex: 2;
    grid-template-columns: repeat(5, 1fr);
}
.banner .right-section .item {
    text-align: left;
    padding: 20px 10px;
}
.banner .right-section .item img {
    width: 100%;
    height: auto;
    max-height: 90px;
    border-bottom: 5px solid #3367EF;
    object-fit: cover;
}
.banner .right-section .item h3 {
    margin: 0px 0 5px;
    font-size: 15px;
    color: #Fff;
}
.banner .right-section .item p {
    margin: 0;
    font-size: 15px;
}

.banner .right-section .item:nth-child(odd) {
    background-color: #20355D;
}
@media(max-width: 1000px){
    .banner{
        padding: 20px 0px !important;
        flex-direction: column;
    }
    .banner::before {
        width: 100%;
         height: 140px;
    }
    .banner .left-section{
        text-align: center;
        width: 80% !important;
    }
    .banner .right-section {
        margin-top: 20px;
        grid-template-columns: repeat(1, 1fr);
    }
    .banner .right-section .item{
        display: flex;
        gap: 20px;
    }
    .banner .right-section .item img{
        width: 140px !important;
        border-bottom: 0px;
        border-left: 5px solid #3367EF;;
    }
}
