:root {
    --dark-blue: #17306D;
    --light-blue: #283C8B;
    --accent-blue: #6477b2;
    --accent-blue-2: #6b6d84;
    --accent-blue-3: #a8b5dd;
    --accent-dark-blue: #071f4f;
    --accent-dark-blue-2: #172A49;
    --red: #BC1E2A;
    --dark-red: #c0392b;
    --dark-grey: #7C7C7C;
    --light-grey: #CFD1D2;
    --accent-grey: #dadbda;
    --section-bg-color: #f0f0f1;
    --white: #FFFFFF;
}

.bg-primary {
    background-color: var(--light-blue) !important;
}

.btn-mis-red {
    background-color: var(--red);
    font-family: "MontSerratBold";
    border-radius: 2rem;
    font-size: 1rem;
    color: var(--white);
}

.btn-mis-red:hover {
    background-color: var(--dark-red);
    color: var(--white);
}

.nav-link {
    color: var(--white) !important;
    border-bottom: none;
    text-transform: uppercase;
    font-family: "MontSerratSemiBold";
    font-size: .9rem;
}

.navbar {
    font-family: "MontSerratRegular" !important;
    padding: 1rem 4rem !important;
}

.nav-link-cta {
    background-color: var(--red);
    border-radius: 24px;
}

.navbar .dropdown-item {
    color: var(--dark-blue);
}

.navbar .dropdown-item:active {
    background-color: var(--dark-blue);
    color: var(--white);
}

.nav-item.active,
.nav-link.active,
.nav-link:hover {
    border-bottom: 1px solid var(--white);
    /* border-radius: .5rem; */
}

.nav-link-cta:hover,
.nav-link-cta.active {
    border-bottom: none;
    background-color: var(--white) !important;
    color: var(--dark-blue) !important;
}

.home-hero-mobile {
    display: none;
}

.hero-title {
    color: var(--white);
    width: 50%;
    text-align: center;
    text-transform: uppercase;
    font-family: "MontSerratSemiBold";
}

.hero-btn {
    font-size: 1rem;
    color: var(--dark-blue);
    border-radius: 2rem;
    padding: 0.6rem 1rem;
    font-family: 'MontSerratMedium';
    margin-top: .5rem;
    text-transform: uppercase;
    background-color: var(--white);
    text-decoration: none;
    z-index: 3;
}

.home-hero-1-title {
    color: var(--light-blue);
    width: 50%;
    text-transform: uppercase;
    font-family: "MontSerratSemiBold";
    text-align: start;
    font-size: 2rem;
}

.home-hero-1-subtitle {
    color: var(--dark-blue);
    font-family: "MontSerratRegular";
    width: 40%;
    text-align: start;
}

.home-hero-2-title {
    color: var(--white);
    width: 50%;
    text-transform: uppercase;
    font-family: "MontSerratSemiBold";
    text-align: center;
    margin: 1rem auto;
}

.home-hero-2-title.arabic-font {
    font-family: "GESSTwoLight" !important;
    max-width: 50ch;
    font-size: 3.5rem;
}

.home-hero-2-subtitle {
    color: var(--white);
    font-family: "MontSerratRegular";
    width: 50%;
    text-align: center;
    margin: 0 auto;
    font-size: 1.6rem;
}

.home-hero-3-title {
    color: var(--white);
    width: 40%;
    font-family: "MontSerratSemiBold";
    text-align: center;
    margin: 1rem auto;
}

.home-hero-3-subtitle {
    color: var(--white);
    width: 50%;
    font-family: "MontSerratSemiBold";
    text-align: center;
    margin: 1rem auto;
}

.home-hero-4-title {
    font-family: 'MontSerratSemiBold';
    text-align: left;
    width: 30%;
    color: var(--white);
}

.home-hero-4-subtitle {
    font-family: 'MontSerratRegular';
    text-align: left;
    width: 30%;
    color: var(--white);
    z-index: 10;
}

.slideshow {
    position: relative;
    width: 100vw;
    height: 90vh;
    overflow: hidden;
}

/* OPTION 2 */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
}

.slide.last-slide,
.slide.first-slide {
    justify-content: center;
    align-items: flex-start;
}

.slide.last-slide h2,
.slide.last-slide a,
.slide.last-slide .home-hero-4-subtitle,
.slide.first-slide h1,
.slide.first-slide h5 {
    margin-left: 5%;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}


@media (max-width: 768px) {
    .home-hero {
        display: none !important;
    }

    .home-hero-mobile {
        display: block !important;
        height: 290px;
    }

    .home-hero-mobile .swiper.mobile-carousel {
        width: 430px;
        height: 290px;
    }

    .home-hero-mobile .swiper.mobile-carousel img {
        width: 100% !important;
        height: 100%;
        object-fit: contain !important;
    }

    .first-swiper-slide {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        padding-left: 8%;
    }

    .home-hero-1-title {
        font-size: 1rem;
    }

    .home-hero-1-subtitle {
        font-size: .6rem;
    }

    .home-hero-2-title,
    .home-hero-3-title,
    .home-hero-3-subtitle,
    .home-hero-4-title,
    .home-hero-4-subtitle {
        font-size: 1rem !important;
        margin-bottom: .5rem !important;
        margin-right: unset;
        margin-left: unset;
        width: 80%;
        text-align: center;
    }

    .home-hero-3-title,
    .home-hero-4-title {
        width: 60%;
    }

    .home-hero-2-title.arabic-font {
        font-size: 1.5rem;
    }

    .home-hero-3-subtitle {
        margin-top: .5rem;
    }

    .hero-btn {
        font-size: .8rem;
        padding: .3rem .6rem;
    }
}

@media (min-width: 1200px) {
    .navbar-collapse {
        display: flex !important;
        justify-content: flex-end;
    }
}