    /*Banner Carousel Styles*/

.banner {
    overflow: hidden;
    position: relative;
    background-image: linear-gradient(to right,#a8e5ee73 7%,#cbf0f5 29%,rgba(239,250,252,.97) 61%,#f2f2f2 100%,rgba(255,255,255,.94) 100%);
    /* background-image: linear-gradient( to right, #a8e5ee 7%, #cbf0f5 29%, rgba(239, 250, 252, 0.97) 61%, #f2f2f2 100%, rgba(255, 255, 255, 0.94) 100% );*/
}

    .banner::before {
        content: "";
        background-image: url("/-/media/Feature/Page Content/images/banner-bg-webp.webp");
        background-size: 70%;
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        opacity: 0.25;
    }

.btn-learn-more, .btn-learn-more:hover {
    min-width: 200px;
    background: rgba(50, 200, 33,1);
    background: var(--primary-green);
    border: none;
    color: white;   
    font-weight: 550;
    margin: 0 auto;
}
a.btn.btn-learn-more{
    margin-bottom: 10px;
}
.banner-image-text {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 50px 5px 30px;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    background-image: linear-gradient( 91deg, rgba(0, 160, 200, 0.99) 0%, rgba(129, 208, 228, 0.8) 65%, rgba(255, 255, 255, 0) 101% );
}

.banner-left {
    position: relative;
    width: 40%;
    overflow: auto;
}

.about-banner-seperator {
    display: none;
}



.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    -webkit-mask: linear-gradient(110deg,#fff 73%,transparent 73%) top right;
    -webkit-mask-size: 2000px 2000px; /* width = height and big enough to consider all the cases */
    -webkit-mask-repeat: no-repeat;
    mask: linear-gradient(110deg,#fff 73%,transparent 73%) top right;
    mask-size: 2000px 2000px; /* width = height and big enough to consider all the cases */
    mask-repeat: no-repeat;
}

.home-page-carousel .banner-image {
    clip-path: unset;
    -webkit-mask: linear-gradient(110deg,transparent 27%, #fff 27%) bottom left;
    -webkit-mask-size: 2000px 2000px;
    -webkit-mask-repeat: no-repeat;
    mask: linear-gradient(110deg,transparent 27%, #fff 27%) bottom left;
    mask-size: 2000px 2000px;
    mask-repeat: no-repeat;
}

.banner-text {
    width: 80%;
    margin-left: 20%;
}

    .banner-text h3 {
        font-family: var(--font-noto);
        color: #002f6d;
        font-size: 38px;
        padding: 20px 0px;
    }

    .banner-text h1 {
        color: #254d81;
        font-family: var(--font-noto);
        font-weight: 500;
    }

    .banner-text p {
        color: #444444;
        font-size: 22px;
        padding: 5px 0px;
        font-weight: 400;
    }



.bannercarousel .custom-indicators {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 19%;
    margin-left: 19%;
}

    .bannercarousel .custom-indicators li {
        height: auto;
        width: 20px;
        text-indent: 0;
        font-size: 24px;
        font-weight: 600;
        color: #fff;
        background-color: inherit;
        opacity: 1;
        display: inline;
    }

    .bannercarousel .custom-indicators .active {
        font-size: 32px;
        color: var(--primary-green);
        line-height: 32px;
        background-color: inherit;
    }

.bannercarousel .progress-indicator {
    width: 50px;
    height: 50px;
}

.bannercarousel .custom-indicators svg {
    transform: rotate(-90deg);
    stroke-dasharray: 113;
    /* 12 x 3.14(PI) x 2*/
    stroke-dashoffset: 113;
    /*bottom circle*/
    background: radial-gradient( circle at 25px 25px, transparent 14px, white 20px, white 20px, transparent 20px );
    animation: offsettozero 7s forwards;
    /*we canget rid of [circle at 20px 20px] since it's the center by default*/
}




.banner-right {
    width: 60%;
    overflow: hidden;
    height: 46vh;
    max-height: 450px;
}

@media (max-width: 3048px) {
    .banner-right {
        height: 70vh;
        max-height:1510px;
    }
}

@media (max-width: 2048px) {
    .banner-right {
        height: 70vh;
        max-height: 1000px;
    }
}


@media (max-width: 1920px) {
    .banner-right {
        height: 70vh;
        max-height: 750px;
    }
}




@media (max-width: 1536px) {
    .banner-right {
        /* height: 70vh; */
        height: 60vh;
        max-height:750px;
    }
    .banner-text p {
        font-size: 18px;
    }
    .banner-text h3 {
        font-size: 32px;
    }
}

@keyframes offsettozero {
    from {
        stroke-dashoffset: 113;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 1536px) {
    .banner-text h3 {
        font-size: 32px;
    }
}

        @media (max-width: 1366px) {
            .banner-text h3 {
                font-size: 25px;
                line-height: 36px;
            }

            .banner-text p {
                font-size: 18px;
            }

            .banner-image-text {
                font-size: 22px;
            }
        }

        @media (max-width: 1024px) {
            .banner {
                /*height: 400px;*/
            }

            .banner-left {
                width: 50%;
            }

            .banner-right {
                width: 50%;
                /* height: 400px; */
                height: 350px;
            }

            .banner-text {
                width: 90%;
            }

                .banner-text h3 {
                    font-size: 34px;
                    padding: 15px 0px;
                }

                .banner-text h1 {
                    color: #002f6d;
                }

                .banner-text p {
                    font-size: 16px;
                }

            .custom-indicators li {
                font-size: 14px;
            }

            .custom-indicators .active {
                font-size: 16px;
            }
        }

        @media (max-width: 991px) {

            .banner-text {
                width: 90%;
                margin-left: 10%;
            }

                .banner-text h3 {
                    font-size: 25px;
                    padding: 16px 0px 0 0;
                    margin-bottom: 7px;
                }

                .banner-text h1 {
                    color: #002f6d;
                    font-size: 20px;
                }

                .banner-text p {
                    font-size: 16px;
                    padding: 0px 0px;
                    line-height: 22px;
                    margin-bottom: 5px;
                }

            .banner button {
                width: 70%;
                font-size: 16px;
            }

            .banner-left {
                width: 45%;
            }

            .banner-right {
                width: 55%;
                /* height: 350px; */
                height: 280px;
            }

            .progress-indicator {
                display: none;
            }



            .custom-indicators li {
                font-size: 16px;
            }

            .custom-indicators .active {
                font-size: 20px;
            }

            .banner-image-text {
                font-size: 20px;
                padding: 5px;
            }
        }


        @media (max-width: 800px) {
            .banner-text h3 {
                font-size: 21px;
            }

            .banner-text p {
                font-size: 14px;
                line-height: 20px;
            }
        }
        /*About West - Landing page Carousel Styles*/

        .about-landing-carousel .banner-left {
    position: relative;
    width: 50%;
}

.about-landing-carousel .banner-right {
    width: 50%;
    position: relative;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    box-sizing: border-box;
    filter: drop-shadow(-50px 0px 25px #fff);
}

.about-landing-carousel .banner-image {
    position: absolute;
    left: 25px;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}

.about-landing-carousel .banner-image-text {
    display: none;
}

.about-landing-carousel .banner-text {
    justify-content: center;
}

    .about-landing-carousel .banner-text h3 {
        display: none;
    }

.about-landing-carousel .about-banner-seperator {
    display: block;
    width: 30px;
    background-color: white;
    transform: scale(1.2) rotate(19deg) translate(85px, 0px);
}

@media (max-width: 991px) {
    .about-landing-carousel .banner {
        height: 220px;
    }

    .about-landing-carousel .custom-indicators {
        right: -60%;
        bottom: 0%;
    }

    .about-landing-carousel .banner-image {
        position: absolute;
        left: 5px;
    }
}



/*------  blog banner  -------*/
.blog-banner {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(0, 243, 255, .32)), url("/-/media/Feature/Blog/Images/banner-bg-3.png");
    background-size: cover;
}

.blog-banner-img {
    min-height: 509px;
    /* max-height: 510px; */
    /* height: fit-content; */
    width: 100%;
    -webkit-clip-path: polygon(45% 0%, 0% 100%, 100% 100%, 100% 0, 0 0%);
    clip-path: polygon(45% 0%, 0% 100%, 100% 100%, 100% 0, 0 0%);
}

.blog-banner-right {
    padding-right: 35px;
}

.custom-indicators-blog {
    display: inline-flex;
    align-items: center;
    /* position: absolute;
    right: -65%; */
}

    .custom-indicators-blog li {
        height: auto;
        text-indent: 0;
        font-size: 24px;
        font-weight: 600;
        color: rgba(59, 59, 59, 1);
        background-color: inherit;
        opacity: 1;
        display: inline;
        padding: 10px;
    }

    .custom-indicators-blog .active {
        font-size: 32px;
        color: var(--primary-green);
        line-height: 32px;
    }

.progress-indicator-blog {
    width: 50px;
    height: 50px;
}

.custom-indicators-blog svg {
    transform: rotate(-90deg);
    stroke-dasharray: 113;
    /* 12 x 3.14(PI) x 2*/
    stroke-dashoffset: 113;
    animation: offsettozero 10s infinite forwards;
    /*bottom circle*/
    background: radial-gradient( circle at 25px 25px, transparent 14px, white 20px, white 20px, transparent 20px );
    /*we canget rid of [circle at 20px 20px] since it's the center by default*/
}


.eclips-dot-banner-blog {
    overflow: hidden !important;
    width: 250px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 85px;
}

.top--5 {
    bottom: -5px;
}



.banner-carousel.home-page-carousel .carousel-indicators {
    width: 60%;
    margin-left: 40%;
}

    .banner-carousel.home-page-carousel .carousel-indicators li {
        position: relative;
        height: 12px;
        width: 12px;
        border-radius: 50%;
        opacity: 1;
        background: #002f6d;
        border: 1px solid #002f6d;
        text-indent: 0;
        font-size: 9px;
        color: #002f6d;
    }

    .banner-carousel.home-page-carousel .carousel-indicators .active {
        background-color: transparent;
        opacity: 1;
        width: 16px;
        height: 16px;
    }

    .banner-carousel.home-page-carousel .carousel-indicators li .play-icon {
        display: none;
    }

    .banner-carousel.home-page-carousel .carousel-indicators li.paused .play-icon {
        display: block;
        margin-left: 2px;
    }

    .banner-carousel.home-page-carousel .carousel-indicators .progress-parent {
        position: absolute;
        top: -1px;
        left: -1px;
    }

.banner-carousel.home-page-carousel .svg-banner-progress {
    display: none;
    position: absolute;
    transform: rotate( -90deg );
    stroke-dasharray: 57;
    stroke-dashoffset: 57;
    animation: bannerloadersmall 7s infinite forwards;
    background: radial-gradient( circle at 9px 9px, transparent 14px, white 10px, white 10px, transparent 10px );
}

    .banner-carousel.home-page-carousel .svg-banner-progress circle {
        stroke: #002f6d;
        stroke-width: 2;
        fill: transparent;
    }

.banner-carousel.home-page-carousel .carousel-indicators .active .svg-banner-progress {
    display: block;
}

@keyframes bannerloadersmall {
    from {
        stroke-dashoffset: 57;
    }

    to {
        stroke-dashoffset: 0;
    }
}


/*home page mobile styles*/
/* mobile styles  */
.home-page-mobile-carousel .carousel-inner {
    padding: 10px;
}
.home-page-mobile-carousel .carousel-item {
    box-shadow: 0 3px 6px 0 rgba(0 0 0 / 16%);
}

.home-page-mobile-carousel .mobile-banner-image {
    width: 100%;
    /* height:320px; */
    height:220px;    
    object-fit: cover;
}

.home-page-mobile-carousel .mobile-carousel-container {
    padding: 10px 20px 20px;
    position: relative;
}

    .home-page-mobile-carousel .mobile-carousel-container:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("/-/media/Feature/Page Content/images/banner-bg-webp.webp");
        background-size: cover;
        z-index: -2;
        -webkit-mask: linear-gradient( 287deg,transparent 24%, #fff 24%) top right;
        -webkit-mask-size: 2000px 2000px;
        -webkit-mask-repeat: no-repeat;
        mask: linear-gradient(290deg,transparent 27%, #fff 27%) top right;
        mask-size: 2000px 2000px;
        mask-repeat: no-repeat;
    }

    .home-page-mobile-carousel .mobile-carousel-container:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(90deg,rgba(203,240,245,1) 50%,rgba(250,252,253,1) 100%);
        opacity: 70%;
        z-index: -1;
        -webkit-mask: linear-gradient( 287deg,transparent 24%, #fff 24%) top right;
        -webkit-mask-size: 2000px 2000px;
        -webkit-mask-repeat: no-repeat;
        mask: linear-gradient(290deg,transparent 27%, #fff 27%) top right;
        mask-size: 2000px 2000px;
        mask-repeat: no-repeat;
    }

    .home-page-mobile-carousel .mobile-carousel-container h3 {
        font-family: var(--font-noto);
        font-stretch: normal;
        font-style: normal;
        line-height: 1.32;
        letter-spacing: normal;
        text-align: center;
        color: #254d81;
        margin-bottom: 15px;
        font-size: 22px;
    }

.home-page-mobile-carousel p {
    padding: 0px 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.home-page-mobile-carousel .mobile-carousel-btns.carousel-control-next {
    right: -30px;
    opacity:1;
}
.home-page-mobile-carousel .mobile-carousel-btns.carousel-control-prev {
    left: -30px;
    opacity:1;
}
.home-page-mobile-carousel .mobile-carousel-btns img {
    width: 50px;
    height: 50px;
}

/* Static content with Image carousel */

.hero-image-img-carousel .intro-banner {
    height: 70vh;
    max-height: 1510px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 1);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 25%, rgba(239, 250, 252, 0.8) 45%, rgba(227, 242, 251, 0.8) 100%);
}

    .hero-image-img-carousel .intro-banner::before {
        content: "";
        background-image: url("/-/media/Feature/Page Content/images/banner-bg-webp.webp");
        background-size: 70%;
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        opacity: 0.25;
    }

.hero-image-img-carousel .intro-banner .row {
    align-items: center;
}

.hero-image-img-carousel .intro-banner-left {
    text-align: center;
    width: 60%;
    margin: auto;
}

.hero-image-img-carousel .intro-banner-left .cover-image {
    width: 100%;
    object-fit: cover;
    padding-top: 0rem !important;
    max-width: 350px;
}

.hero-image-img-carousel .intro-banner h1 {
    font-size: 38px;
    font-family: var(--font-noto);
    font-weight: 400;
}

.hero-image-img-carousel .field-subtitle {
    font-size: 20px;
}

.primary-blue-text {
    color: #002f6d !important;
}

.primary-black-text {
    color: #444444 !important;
}

.hero-image-img-carousel .banner-sub-text {
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: normal;
    padding-right: 2rem !important;
    font-size: 16px;
}

.hero-image-img-carousel .intro-banner .btn {
    background: var(--primary-green);
    border: none;
    color: white;
    font-weight: 600;
    margin: 0 auto;
    font-size: 16px;
    min-width: 200px;
}

.hero-image-img-carousel .intro-banner a {
    color: white;
}

.hero-image-img-carousel .hero-banner-product-carousel .carousel-indicators {
    width: 60%;
    bottom: -50px;
}

.hero-image-img-carousel .hero-banner-product-carousel .carousel-indicators li {
    position: relative;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    opacity: 1;
    background: #00a0c8;
    border: 1px solid #00a0c8;
    text-indent: 0;
    font-size: 9px;
    color: #00a0c8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-img-carousel .hero-banner-product-carousel .carousel-indicators .active {
    background-color: transparent;
    opacity: 1;
    width: 16px;
    height: 16px;
}

.hero-image-img-carousel .hero-banner-product-carousel .carousel-indicators li .play-icon {
    display: none;
}

.hero-image-img-carousel .hero-banner-product-carousel .carousel-indicators li.paused .play-icon {
    display: block;
    margin-left: 2px;
    font-size: 8px;
}

.hero-image-img-carousel .hero-banner-product-carousel .carousel-indicators .progress-parent {
    position: absolute;
    top: -1px;
    left: -1px;
}

.hero-image-img-carousel .hero-banner-product-carousel .svg-banner-progress {
    display: none;
    position: absolute;
    transform: rotate( -90deg);
    stroke-dasharray: 57;
    stroke-dashoffset: 57;
    animation: bannerloadersmall 6s infinite forwards;
    background: radial-gradient( circle at 9px 9px, transparent 14px, white 10px, white 10px, transparent 10px);
}

.hero-image-img-carousel .hero-banner-product-carousel .svg-banner-progress circle {
    stroke: #00a0c8;
    stroke-width: 2;
    fill: transparent;
}

.hero-image-img-carousel .hero-banner-product-carousel .carousel-indicators .active .svg-banner-progress {
    display: block;
}

@keyframes bannerloadersmall {
    from {
        stroke-dashoffset: 57;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@media (orientation: portrait) {
    .hero-image-img-carousel .intro-banner {
        min-height: unset!important;
    }
}

@media only screen and (min-width: 1920px) {
    .hero-image-img-carousel .intro-banner h1 {
        font-size: 55px;
    }
    .hero-image-img-carousel .field-subtitle {
        font-size: 30px;
    }
    .hero-image-img-carousel .banner-sub-text {
        font-size: 22px;
    }
    .hero-image-img-carousel .intro-banner h1.hd-h1 {
        font-size: 38px !important;
    }
    .hero-image-img-carousel .banner-sub-text.hd-p {
        font-size: 18px !important;
    }
    .hero-image-img-carousel .intro-banner {
        height: 550px;
        max-height: 600px;
    }
  }

@media (max-width:1536px) {
    .hero-image-img-carousel .intro-banner h1 {
        font-size: 36px;
    }
    .hero-image-img-carousel .intro-banner {
        height: 500px;
        max-height: 550px;
    }
}

@media (max-width:1366px) {
    .hero-image-img-carousel .intro-banner h1 {
        font-size: 34px;
    }
    .hero-image-img-carousel .banner-sub-text {
        font-size: 14px;
    }
    .hero-image-img-carousel .intro-banner {
        height: 450px;
        max-height: 550px;
    }
}

@media (max-width:1199.98px) {
    .hero-image-img-carousel .intro-banner h1 {
        font-size: 32px;
    }
    .hero-image-img-carousel .intro-banner {
        height: auto;
        padding: 2rem 0;
    }
}

@media (max-width:991.98px) {
    .hero-image-img-carousel .intro-banner {
        height: 45vh;
        max-height:500px;
    }
}

@media (max-width:767.98px) {
    .hero-image-img-carousel .intro-banner::before {
        background-size: 100%;
    }
    .hero-image-img-carousel .intro-banner .row {
        margin: 0;
    }
    .hero-image-img-carousel .intro-banner h1 {
        font-size: 30px;
    }
    .hero-image-img-carousel .intro-banner {
        height: auto;
        justify-content: center;
        padding: 0;
        max-height:max-content;
    }
    .hero-image-img-carousel .intro-banner .row .col-lg-7 {
        background: #fff;
        background-image: none;
    }
    .hero-image-img-carousel .intro-banner-left {
         margin-bottom: 50px;
    }
}

@media (max-width:480px) {
    .hero-image-img-carousel .intro-banner h1 {
        font-size: 25px;
    }
    .hero-image-img-carousel .banner-sub-text {
        padding-right: 0 !important;
    }
}
