.banner-slider {
    position: relative;
    width: 100%;
}

.banner-slide {
    width: 100%;
    position: relative;
    padding: 50px 0px 170px;
}

.banner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/*=====================================
=            Left Content             =
=====================================*/

.banner-content {
    width: 50%;
}

.banner-subtitle {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #ff0515;
    margin-bottom: 12px;
    font-family: "Roboto";
    line-height: 30px;
}

.banner-heading {
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Poppins';
    max-width: 675px;
    text-transform: capitalize;
}

.banner-description {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 500;
    max-width: 740px;
}

/*=====================================
=              Button                 =
=====================================*/

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    text-decoration: none;
    transition: .3s;
    font-weight: 700;
    background-color: #ff0515;
    color: #fff;
    font-size: 15px;
    font-family: "Roboto";
    text-transform: uppercase;

}

.banner-btn:hover {
    background-color: #fff;
    color: #000;
}

.banner-btn.icon-left {
    flex-direction: row;
}

.banner-btn.icon-right {
    flex-direction: row-reverse;
}

/*=====================================
=            Right Image              =
=====================================*/

.banner-image {
    width: 50%;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

.banner-image img {
    width: auto !important;
    max-width: unset !important;
}

/*=====================================
=             Owl Dots                =
=====================================*/

.banner-slider .owl-dots {
    margin-top: 40px;
    text-align: center;
}

.banner-slider .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
}

.banner-slider .owl-dot.active span {
    transform: scale(1.2);
}



/* Animation */

.banner-subtitle,
.banner-heading,
.banner-description,
.banner-btn,
.banner-image img{
    opacity:0;
}

.owl-item.active .banner-subtitle{
    animation:fadeInUp .6s ease forwards;
}

.owl-item.active .banner-heading{
    animation:fadeInUp .8s ease forwards;
}

.owl-item.active .banner-description{
    animation:fadeInUp 1s ease forwards;
}

.owl-item.active .banner-btn{
    animation:fadeInUp 1.2s ease forwards;
}

.owl-item.active .banner-image img{
    animation:fadeInRight 1s ease forwards;
}


.banner-slider .owl-nav {
    position: absolute;
    top: 20%;
    left: 5%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
}
.banner-slider .owl-nav button {
    width: 40px;
    height: 40px;
    background-color: #fff !important;
    border-radius: 100%;
    transition: all 0.5s ease;
}





.banner-slider .owl-nav button span{
    display:none;
}

/* Previous */

.banner-slider .owl-prev::before{
    content:"\f104";
    font-family:"Font Awesome 5 Free";
    font-weight:900;
    font-size:20px;
    transition: all 0.5s ease;
}

/* Next */

.banner-slider .owl-next::before{
    content:"\f105";
    font-family:"Font Awesome 5 Free";
    font-weight:900;
    font-size:20px;
    transition: all 0.5s ease;
}

.banner-slider .owl-nav button:hover {
    background-color: #ff0515 !important;
}
.banner-slider .owl-nav button:hover::before {
    color: #fff;
}




/*=====================================
=            Responsive               =
=====================================*/ 


@media (min-width: 320px) and (max-width: 767px) {

    .banner-image {
        position: unset;
        width: 100%;
        margin-top: 48px;
    }
    .banner-row {
        gap: 0px;
        flex-direction: column;
    }
    .banner-slider .owl-nav {
        flex-direction: row;
        justify-content: center;
        top: auto;
        left: 0px;
        right: 0px;
        bottom: 0px;
    }
    .banner-content {
        width: 100%;
    }
    .banner-subtitle {
        font-size: 14px;
        line-height: 20px;
    }
    .banner-heading {
        font-size: 24px;
        line-height: 38px;
        margin-bottom: 12px;
    }
    .banner-description {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    .banner-slide {
        padding: 40px 0px 50px;
    }
    .banner-image img {
        width: 100% !important;
        max-width: 392px !important;
        margin: 0px auto 0px;
    }
    .banner-btn {
        font-size: 14px;
        padding: 12px 20px;
    }

}