:root {
    --primary-color: #002776;
    --secondary-color: #ff6319;
    --tertiary-color: #b9d9eb;
    --white: #FFFFFF;
}

.text-orange {
    color: var(--secondary-color);
}

.text-blue {
    color: var(--primary-color);
}

.button-cta {
    min-width: 150px;
    padding: 0 25px;
    text-align: center;
    line-height: 39px !important;
    height: 36px !important;
    font-size: 15px;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
    z-index: 2;
    position: relative;

    @media screen and (min-width: 1800px) {
        min-width: 200px;
        line-height: 39px !important;
        height: 50px !important;
        font-size: 20px;
    }
}

.button-cta:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: -1;
    -webkit-transition: .3s;
    transition: .3s;
}

.button-cta:hover:before {
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.orange-button-white-hover .button-cta {
    background-color: var(--secondary-color);
    color: #fff;
    -webkit-box-shadow: inset 0 0 0 1px var(--secondary-color);
    box-shadow: inset 0 0 0 1px var(--secondary-color);
    font-family: "NeueHelvetica75Bold", Helvetica, Arial, sans-serif;
}



.orange-button-white-hover .button-cta:before {
    background-color: #fff;
    left: -1px;
}

.orange-button-white-hover .button-cta:hover, .orange-button-white-hover .button-cta:focus, .orange-button-white-hover .button-cta:active {
    color: var(--primary-color);
    box-shadow: none;
    border: 1px solid var(--primary-color);
}

.white-button-blue-hover .button-cta {
    background-color: #ffffff;
    color: var(--primary-color);
    -webkit-box-shadow: inset 0 0 0 1px #ffffff;
    box-shadow: inset 0 0 0 1px #ffffff;
}



.white-button-blue-hover .button-cta:before {
    background-color: var(--primary-color);
}

.white-button-blue-hover .button-cta:hover, .white-button-blue-hover .button-cta:focus {
    color: #fff;
}


.custom-hero-banner .carousel-indicators .active {
    background-color: var(--secondary-color);
}

.custom-hero-banner .carousel-indicators {
    width: 100%;
    margin: 0 auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    bottom: 20px;
    padding: 0 3%;
}

.custom-hero-banner .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border: 1px solid #c3c3c3;
    margin: 0 12px 0 0;
    opacity: 1
}

.custom-hero-banner .carousel-item {
    transform: none;
    height: 0;
    padding-top: 42.7%;
    position: relative;
    overflow: hidden;

    @media screen and (max-width: 991px) {
        padding-top: 133.3%;
    }

    picture {
        display: block;
        width: 100%;

        img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
    }

    .carousel-caption {
        position: absolute;
        top: 13%;
        left: 3%;
        right: auto;
        bottom: auto;
        padding: 0;
        width: 100%;
        transform: translate(0%, 13%);

        @media screen and (max-width: 575px) {
            top: 9%;
            transform: translate(0%, 9%);
        }

        @media screen and (max-width: 400px) {
            top: 5%;
            transform: translate(0%, 5%);
        }

        .banner-caption {
            width: 33%;
            padding: 0;

            @media screen and (max-width: 991px) {
                width: 55%;
            }

            @media screen and (max-width: 575px) {
                width: 53%;
            }

            .banner-title {
                font-size: clamp(18px, 2.45vw, 3vw) !important;
                line-height: clamp(24px, 2.75vw, 3.5vw) !important;
                margin: 0 0 5% 0;
                  @media screen and (max-width:340px) {
                font-size: 16px !important;
            }
            &.f-lg {
                       font-size: calc(clamp(18px, 2.45vw, 3vw) * 1.3) !important;  
                        line-height: calc(clamp(24px, 2.75vw, 3.5vw) * 1.3) !important;
                }
            }

            .banner-subtitle {
                font-size: clamp(15px, 1.75vw, 2.5vw);
                margin: 0 0 7% 0;
                line-height: clamp(18px, 2vw, 2.75vw);
                  @media screen and (max-width:340px) {
                font-size: 14px !important;
            }
            }
        }

        .banner-caption.caption-with-logo {
            @media screen and (max-width: 575px) {
                transform: translate(0%, -5%);
            }
        }
    }
}

@media screen and (max-width: 991px) {
    .custom-hero-banner .carousel-indicators {
        justify-content: flex-end;
        width: 100%;
        margin-right: 0;
    }
}