﻿.hero-carousel {
    position: relative;
    padding: 0;
    margin: 60px 0px 0px 0px;
    width: 100%;
    overflow: hidden;
    background: var(--navy-hex, #00313f);
}

@media (min-width: 768px) {
    .hero-carousel {
        margin: 75px 0px 0px 0px;
    }
}

@media (min-width: 992px) {
    .hero-carousel {
        margin: 85px 0px 0px 0px;
    }
}

.hero-carousel .bg-carousel-img {
    height: 500px;
}

.hero-carousel .hero-title-left-wrapper {
    height: 500px;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    z-index: 9;
}

.hero-carousel .hero-title-center-wrapper {
    height: 500px;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    z-index: 9;
}

.hero-carousel .hero-title-right-wrapper {
    height: 500px;
    align-items: center !important;
    justify-content: flex-end !important;
    text-align: right !important;
    z-index: 9;
}

@media (min-width: 768px) {
    .hero-carousel .bg-carousel-img,
    .hero-carousel .hero-title-left-wrapper,
    .hero-carousel .hero-title-center-wrapper,
    .hero-carousel .hero-title-right-wrapper {
        height: 600px;
    }
}

@media (min-width: 992px) {
    .hero-carousel .bg-carousel-img,
    .hero-carousel .hero-title-left-wrapper,
    .hero-carousel .hero-title-center-wrapper,
    .hero-carousel .hero-title-right-wrapper {
        height: 700px;
    }
}

.hero-carousel h1 {
    animation-delay: 0.8s;
}

.hero-carousel p {
    animation-delay: 1.2s;
}

.hero-carousel a {
    animation-delay: 1.6s;
}

.hero-carousel.owl-theme .owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
}

    .hero-carousel.owl-theme .owl-nav .owl-prev, .hero-carousel.owl-theme .owl-nav .owl-next {
        border-radius: 4px;
        box-shadow: none;
        transition: all 0.3s ease;
        background: #ffffff !important;
        line-height: 58px;
        width: 55px;
        height: 55px;
        display: block;
        margin: 30px 0;
    }

    .hero-carousel.owl-theme .owl-nav [class*='owl-']:hover {
        background: var(--teal-hex, #2eb5b2) !important;
    }

.hero-carousel.owl-carousel .owl-nav.disabled {
    display: none; /* carousel nav buttons */
}

.hero-carousel.owl-theme .owl-nav [class*='owl-']:hover i {
    color: #fff;
}

.hero-carousel.owl-theme .owl-nav [class*='owl-'] i {
    font-size: 18px;
}

@media screen and (max-width: 991px) {
    .hero-carousel.owl-carousel .owl-nav.disabled {
        display: none;
    }
}

.short-hero_banner {
    position: relative;
    padding: 0;
    margin: 60px 0px 0px 0px;
    background: var(--light-hex, #e3e3e3);
    overflow: hidden;
}

@media (min-width: 768px) {
    .short-hero_banner {
        margin: 75px 0px 0px 0px;
    }
}

@media (min-width: 992px) {
    .short-hero_banner {
        margin: 85px 0px 0px 0px;
    }
}

.short-hero_banner .section-title .header-text h1,
.short-hero_banner .section-title .header-text h2,
.short-hero_banner .section-title .header-text h3,
.short-hero_banner .section-title .header-text h4,
.short-hero_banner .section-title .header-text h5,
.short-hero_banner .section-title .header-text h6 {
    color: var(--white-hex, #ffffff);
}

.short-hero_banner .section-title .header-text p,
.short-hero_banner .section-title .header-text span,
.short-hero_banner .section-title .header-text a {
    color: var(--white-hex, #ffffff);
}

.short-hero_banner .banner-left,
.short-hero_banner .banner-right {
    width: 100%;
    height: 400px;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.short-hero_banner .banner-left {
    text-align: start;
    justify-content: start;
    align-content: center;
    align-items: center;
    vertical-align: middle;
    background-color: var(--navy-hex, #00313f);
}

.short-hero_banner .banner-right::after {
    position: absolute;
    *left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
}

@media (min-width: 768px) {
    .short-hero_banner .banner-left,
    .short-hero_banner .banner-right {
        height: 400px;
    }

        .short-hero_banner .banner-right::after {
            content: none;
            background: none;
        }
}

@media (min-width: 992px) {
    .short-hero_banner .banner-left,
    .short-hero_banner .banner-right {
        height: 500px;
    }

        .short-hero_banner .banner-right::after {
            content: '';
            background: -moz-linear-gradient(left, var(--navy-hex, #00313f) 0%, transparent 15%);
            background: -webkit-linear-gradient(left, var(--navy-hex, #00313f) 0%, transparent 15%);
            background: linear-gradient(to right, var(--navy-hex, #00313f) 0%, transparent 15%);
        }
}

.bg-img-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover !important;
    overflow: hidden !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}