/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.spanTitle {
    width: 80%;
    float: left;
    margin-left: 1px;
    word-wrap: break-word;
    line-height: 200%;
}

.hrefTitle {
    width: 70%;
    margin-bottom: 9px;
}
.hrefTitles {
    width: 50%;
    margin-bottom: 9px;
}
a.sr-only {
    padding: 0.5rem;
    background: #2b358c;
    color: #fff;
    position: absolute;
    top: -2.5rem;
    left: 0;
    -webkit-transition: top 1s ease-out;
    transition: top 1s ease-out;
    z-index: 999;
}

    #header {
        transition: all 0.5s;
        z-index: 997;
        padding: 15px 0;
    }

    #header.header-scrolled,
    #header.header-inner-pages {
        background: rgba(0, 0, 0, 0.5);
        height: 80px;
    }

    #header .logo {
        font-size: 32px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

        #header .logo a {
            color: #fff;
        }

        #header .logo a span {
            color: #ffc451;
        }

        #header .logo img {
            margin-top: 2px;
            max-height: 60px;
        }

@media screen and (max-width: 768px) {
    /*Disable aos animation delay on mobile devices*/
    [data-aos-delay] {
        transition-delay: 0 !important;
    }

    .hrefTitle {
        width: 90%;
        margin-bottom: 9px;
    }

    .spanTitle {
        width: auto;
        float: left;
        margin-left: 0px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #ffc451;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            text-transform: none;
            color: #151515;
            font-weight: 400;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                background-color: #ffc451;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #151515;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #151515;
            background-color: #ffc451;
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
            color: #151515;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                background-color: #ffc451;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: #EBD6D6;
    overflow: hidden;
    position: relative;
}

@media (max-height: 500px) {
    #hero {
        height: 150vh;
    }

}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    #hero .carousel-item::before {
        content: "";
        background-color: rgba(0, 0, 0, 0.3);
    }

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 50px;
    right: 50px;
}

#hero .container {
    text-align: center;
}

#hero h2 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 48px;
    font-weight: 700;
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
    #header .logo img {
        margin-top: -25px;
        max-height: 60px;
    }
}

#hero p {
    width: 80%;
    margin: 0 auto 5px auto;
    color: #fff;
}

@media (min-width: 1024px) {
    #hero p {
        width: 60%;
    }
}

#hero .carousel-fade {
    overflow: hidden;
}

    #hero .carousel-fade .carousel-inner .carousel-item {
        transition-property: opacity;
    }

    #hero .carousel-fade .carousel-inner .carousel-item,
    #hero .carousel-fade .carousel-inner .active.carousel-item-start,
    #hero .carousel-fade .carousel-inner .active.carousel-item-end {
        opacity: 0;
    }

    #hero .carousel-fade .carousel-inner .active,
    #hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
    #hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
        opacity: 1;
        transition: 0.5s;
    }

        #hero .carousel-fade .carousel-inner .carousel-item-next,
        #hero .carousel-fade .carousel-inner .carousel-item-prev,
        #hero .carousel-fade .carousel-inner .active.carousel-item-start,
        #hero .carousel-fade .carousel-inner .active.carousel-item-end {
            left: 0;
            transform: translate3d(0, 0, 0);
        }

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
}

@media (min-width: 1024px) {

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

#hero .carousel-indicators li {
    cursor: pointer;
}

#hero .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #18d26e;
}

    #hero .btn-get-started:hover {
        background: #fff;
        color: #18d26e;
    }


/*--------------------------------------------------------------
# TempletFourCard 
--------------------------------------------------------------*/


.TempletFourCard-0 .TempletFourCardImg, .TempletFourCard-0 .TempletFourCardImg--hover {
    background-image: url('/images/home/bg52.jpg');
}

.TempletFourCard-1 .TempletFourCardImg, .TempletFourCard-1 .TempletFourCardImg--hover {
    background-image: url('/images/home/bg8.jpg');
}

.TempletFourCard-2 .TempletFourCardImg, .TempletFourCard-2 .TempletFourCardImg--hover {
    background-image: url('/images/home/bg24.jpg');
}

.TempletFourCard-3 .TempletFourCardImg, .TempletFourCard-3 .TempletFourCardImg--hover {
    background-image: url('/images/home/bg42.jpg');
}

.TempletFourCard-4 .TempletFourCardImg, .TempletFourCard-4 .TempletFourCardImg--hover {
    background-image: url('/images/home/bg1.jpg');
}

.TempletFourCard-5 .TempletFourCardImg, .TempletFourCard-5 .TempletFourCardImg--hover {
    background-image: url('/images/home/bg30.jpg');
}

.TempletFourCard-6 .TempletFourCardImg, .TempletFourCard-6 .TempletFourCardImg--hover {
    background-image: url('/images/home/bg13.jpg');
}

.TempletFourCard-7 .TempletFourCardImg, .TempletFourCard-7 .TempletFourCardImg--hover {
    background-image: url('/images/home/bg26.jpg');
}
.TempletFourCard-8 .TempletFourCardImg, .TempletFourCard-8 .TempletFourCardImg--hover {
    background-image: url('/images/home/bg11.jpg');
}

.TempletFourCardImg {
    visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 235px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.TempletFourCardInfo-hover {
    position: absolute;
    padding: 16px;
    width: 100%;
    opacity: 0;
    top: 0;
}

.TempletFourCardImg--hover {
    transition: 1.5s all ease-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: absolute;
    height: 235px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    top: 0;
}

.TempletFourCard {
    margin-right: 25px;
    transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
    background-color: #fff;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 13px 10px -7px rgba(0, 0, 0, 0.1);
}

    .TempletFourCard:hover {
        box-shadow: 0px 30px 18px -8px rgba(0, 0, 0, 0.1);
        transform: scale(1.10, 1.10);
    }

.TempletFourCardInfo {
    z-index: 2;
    background-color: #F8F9FA;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 16px 24px 24px 24px;
}

    .TempletFourCardInfo h3 {
        font-size: 20px;
        font-weight: 600;
    }

.TempletFourCardCategory {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #868686;
}

.TempletFourCardTitle {
    margin-top: 5px;
    margin-bottom: 10px;
    font-family: 'Roboto Slab', serif;
}


.TempletFourCard:hover .TempletFourCardImg--hover {
    height: 100%;
    opacity: 0.3;
}

.TempletFourCard:hover .TempletFourCardInfo {
    background-color: transparent;
    position: relative;
}

.TempletFourCard:hover .TempletFourCardInfo-hover {
    opacity: 1;
}



.cardSpotlightImg {
    visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 235px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.cardSpotlightInfo-hover {
    position: absolute;
    padding: 16px;
    width: 100%;
    opacity: 0;
    top: 0;
}

.cardSpotlightImg--hover {
    transition: 1.5s all ease-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: absolute;
    height: 235px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    top: 0;
}

.cardSpotlight {
    margin-right: 25px;
    transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
    background-color: #fff;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 13px 10px -7px rgba(0, 0, 0, 0.1);
}

    .cardSpotlight:hover {
        box-shadow: 0px 30px 18px -8px rgba(0, 0, 0, 0.1);
        transform: scale(1.10, 1.10);
    }

.cardSpotlightInfo {
    z-index: 2;
    background-color: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 16px 24px 24px 24px;
}

    .cardSpotlightInfo h3 {
        font-size: 22px;
        font-weight: 600;
    }

.cardSpotlightCategory {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #545454;
}

.cardSpotlightTitle {
    margin-top: 5px;
    margin-bottom: 10px;
    font-family: 'Roboto Slab', serif;
}


.cardSpotlight:hover .cardSpotlightImg--hover {
    height: 100%;
    opacity: 0.3;
}

.cardSpotlight:hover .cardSpotlightInfo {
    background-color: transparent;
    position: relative;
}

.cardSpotlight:hover .cardSpotlightInfo-hover {
    opacity: 1;
}

.SpotlightTitle p {
    margin: 0;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #151515;
}

