/* banner-section-start */
:root {
    --color-black:#000000;
    --color-white:#fff ;
    --color-blue:#0078BF;
    --color-green:#00ACA2;
    --color-grey:#646464;
    --color-red:#FB2F34 ;
}
.banner-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}
.banner-content p {
    margin: 10px 0 25px;
    width: 40%;
    line-height: 160%;
    font-size: 18px;
}

.banner-section .owl-dots {
    position: absolute;
    bottom: 25px;
    text-align: center;
    left: 0;
    width: 100%;
}

.banner-section .owl-dots span {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: rgba(217, 217, 222, 1);
    border-radius: 50%;
    text-align: center;
}



.banner-section .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-section .owl-dots {
    position: absolute;
    bottom: 25px;
    text-align: center;
    left: 0;
    width: 100%;
}

.banner-section .owl-dots span {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: rgba(217, 217, 222, 1);
    border-radius: 50%;
    text-align: center;
}


.banner-section .owl-dots button.owl-dot {
    margin: 0 2px;
}

.banner-section .owl-nav button {
    position: absolute;
    height: 34px !important;
    width: 34px !important;
    background: var(--color-red)!important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.banner-section .owl-nav button.owl-next {
    right: 1rem;
}

.banner-section .owl-nav button.owl-prew {
    left: 1rem;
}

.banner-section .owl-nav button.owl-prev {
    left: 1rem;
}

.banner-section .owl-nav button i {
    font-size: 16px;
    color: var(--color-white);
}

.banner-section  .owl-dot.active  span{
    background-color: var(--color-red) !important;
}
/* banner-section-end */
@media (max-width: 767px){
    .banner-section .owl-dots {
        bottom: 10px;
    }
    .banner-card {
        height: 30vh;
    }
}


