/* Banner Section Start */
.home-banner-section {
    position: relative;
    z-index: 1;
    padding: 0;
}

.home-banner-section {
    position: relative;
    width: 100%;
    height: 100%;
    /* height: 100vh; */
    overflow: hidden;
}

.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.banner-text-container{
    width: 60%;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* height: 100vh; */
    background-size: cover;
    object-fit: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
    color: var(--white-color);
    padding: 150px 0px;
}   

.banner-heading {
    font-size: var(--font-65);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 106%;
}

.home-banner-section .banner-content .learn-more-button {
    padding: 15px 25px;
    background-color: var(--white-color);
    border-radius: 54px;
    color: var(--white-color);
    font-weight: 600;
    line-height: 1.4em;
    transition: 0.3s ease all;
}

.home-banner-section .banner-content .learn-more-button:hover {
    background-color: var(--white-color);
    /* border: 1px solid var(--secondary-color); */
    color: var(--secondary-color);
    transition: 0.3s ease all;
}

.home-banner-section .banner-content .learn-more-button .footer-detail-icon {
    transition: 0.3s ease all;
}

.home-banner-section .banner-content .learn-more-button:hover .footer-detail-icon {
    filter: brightness(0) invert(0);
    transition: 0.3s ease all;
}

.home-banner-section .banner-title-weight {
    font-weight: 700;
}

.banner-title-style {
    color: var(--secondary-color);
    font-weight: 700;
}

.background-video-section {
    position: relative;
    /* overflow: hidden; */
}

.background-video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.background-video-embed {
    width: 100%;
    height: 100%;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
}

.youtube-thumbnail-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    /* height: 100vh; */
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.youtube-thumbnail-cover.fade-out {
    opacity: 0;
}

.content-over-video {
    position: relative;
    z-index: 2;
    color: var(--white-color);
    top: 50%;
    transform-style: preserve-3d;
}

/* .home-banner-section .btn.btn-primary:hover{
    color: var(--white-color);
} */

.home-banner-section .btn.btn-primary img{
    filter: brightness(0) invert(1);
    transition: 0.3s ease all;
}

.home-banner-section .btn.btn-primary:hover img{
    filter: brightness(1) invert(0);
    transition: 0.3s ease all;
}

.embed-responsive {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    top: 0;
    left: 0;
}

.embed-responsive::before {
    padding-top: 56.25%;
    display: block;
    content: "";
}

.embed-responsive .embed-responsive-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.banner-content .banner-description {
    color: #000000;
    font-size: var(--font-24);
    line-height: 1em;
    width: 80%;
    font-family: var(--secondary-font);
}

@media screen and (max-width: 1440px){
    .banner-content{
            padding: 130px 0px;
    }
    .content-over-video{
        background-size: 55% !important;
    }
}

@media screen and (max-width: 1280px) {
    .banner-content {
        padding: 180px 0px;
    }
}

@media (max-width: 1024px) {
    .home-banner-section::after {
        height: 80px;
        clip-path: polygon(0 100%, 0% 100%, 70% 25%, 100% 100%, 0 100%);
    }

    .banner-content {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media screen and (max-width: 991px) {
    .content-over-video {
        background-size: 65% !important;
    }
}


@media (max-width: 767px) {
    .home-banner-section::after {
        height: 55px;
        clip-path: polygon(0 100%, 0% 100%, 70% 30%, 100% 100%, 0 100%);
    }

    .banner-content {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 640px) {
    .banner-text-container{
        width: 100%;
    }
    .banner-content .banner-description{
            width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .content-over-video {
        background-size: 60% !important;
    }
     .banner-content .banner-description{
            width: 100%;
    }
}
