﻿
/*Hero Image  - Product Landing Page*/

.intro-banner {
    min-height: 450px;
    /*max-height:700px;*/
    background-color: #005596;
    align-items: center;
    overflow: hidden;
    position: relative;
    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%);
}

@media (orientation: portrait) {
    .intro-banner {
        min-height: unset !important;
    }
}

.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;
}

.intro-banner .row {
    align-items: center
}

.intro-banner-left {
    text-align: center;
    width: 60%;
    margin: auto;
}

.cover-image {
    width: 100%;
    object-fit: cover;
    padding-top: 0rem !important;
    max-width: 350px
}

.banner-sub-text {
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: normal;
    padding-right: 2rem !important;
}

    .banner-sub-text span {
        white-space: no-wrap;
    }

.primary-blue-text {
    color: #002f6d;
}

.primary-black-text {
    color: #444444;
}

.intro-banner h1 {
    font-size: 38px;
    font-family: var(--font-noto);
    font-weight: 400;
}

.intro-banner .btn {
    background: var(--primary-green);
    border: none;
    color: white;
    font-weight: 600;
    margin: 0 auto;
    font-size: 16px;
    min-width: 200px;
}

.intro-banner a {
    color: white;
}

@media (max-width: 480px) {

    .intro-banner h1 {
        text-align: center !important;
    }
}

@media (max-width: 1536px) {
    .intro-banner h1 {
        font-size: 36px;
    }

    .intro-banner {
        min-height: 450px;
       /* max-height:600px;*/
    }
}

@media (max-width: 1366px) {
    .intro-banner {
        min-height: 420px;
    }
    .intro-banner h1 {
        font-size: 24px;
        line-height:36px;
    }
    .intro-banner p.mobile-h5{
        margin-bottom:0;
    }
    .banner-sub-text {
        padding-right: 1rem !important;
        font-size: 14px;
    }
    .intro-banner .section-description-button-text{
        margin-top:0 !important;
    }
}

@media (max-width: 1199.98px) {
    .intro-banner {
        height: auto
    }

        .intro-banner h1 {
            font-size: 32px;
        }

    .banner-sub-text {
        padding-right: 1rem !important;
        font-size: 12px;
    }
    .intro-banner-left {
        width: 75%;
    }
    .intro-banner-left .cover-image {
        object-fit: contain !important;
    }
}

@media (max-width: 991.98px) {
    .intro-banner {
        height:auto;
        max-height:fit-content;
    }

        .intro-banner h1 {
            font-size: 30px;
        }

    .banner-sub-text {
        padding-right: 1rem !important;
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .intro-banner {
        height: auto;
        justify-content: center;
        padding: 0px;
        max-height:max-content;
    }

        .intro-banner::before {
            background-size: 100%;
        }

        .intro-banner .row {
            margin: 0px;
        }

            .intro-banner .row .col-lg-7 {
                background: #fff;
                background-image: none;
            }

    .banner-sub-text {
        padding-right: 0rem !important;
        padding: 0px !important;
        margin: 0px !important
    }

    .mobile-h1 {
        font-size: 22px;
    }

    .mobile-h4 {
        font-size: 18px;
    }

    .mobile-h5 {
        font-size: 16px;
    }

    .mobile-p {
        font-size: 16px;
    }

    .px-7 {
        padding: 0px !important;
    }

    .product-overview-banner-image {
        min-height: 220px;
    }

    .cover-image {
        padding-top: 1rem !important;
    }

    .product-overview-banner-row {
        padding: 15px 11px;
    }

    .intro-banner .btn {
        margin-bottom: 1rem;
    }
}









.intro-banner .btn.btn-outline-success {
    background: #ffffff;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    font-weight: 600;
    margin: 0 auto;
    font-size: 16px;
    min-width: 200px;
}

    .intro-banner .btn.btn-outline-success:hover {
        background: #ffffff;
        border: 1px solid var(--primary-green);
        color: var(--primary-green);
        font-weight: 600;
        margin: 0 auto;
        font-size: 16px;
        min-width: 200px;
    }

    .intro-banner .btn.btn-outline-success a {
        color: var(--primary-green);
    }

