@import url('_root.css');


/* Navbar CSS Start*/
/* https://codepen.io/KenanYusuf/pen/JKEjOR */
/* https://codepen.io/JacobLett/pen/QorEWd */
.navbar-custom .navbar-nav li>span {
    position: relative;
    display: block;
    padding: 10px 15px;
    background-color: var(--bs-blue);
    font-weight: bold;
}

/* adds some margin below the link sets */
.navbar-custom .dropdown-menu div[class*="col"] {
    margin-bottom: 1rem;
}

/* breakpoint and up - mega dropdown styles */
@media screen and (min-width: 767px) {

    /* remove the padding from the navbar so the dropdown hover state is not broken */
    .navbar-custom {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    /* remove the padding from the nav-item and add some margin to give some breathing room on hovers */
    .navbar-custom .nav-item {
        /* padding: .5rem .5rem; */
        margin: 0 .25rem;
    }

    /* makes the dropdown full width  */
    .navbar-custom .dropdown {
        position: static;
    }

    .navbar-custom .dropdown-menu {
        width: 100%;
        left: 0;
        right: 0;
        top: 45px;
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s, opacity 0.3s linear;
    }

    /* shows the dropdown menu on hover */
    .navbar-custom .dropdown:hover .dropdown-menu,
    .navbar-custom .dropdown .dropdown-menu:hover {
        display: block;
        visibility: visible;
        opacity: 1;
        transition: visibility 0s, opacity 0.3s linear;
    }

    .navbar-custom .dropdown-menu {
        border: 1px solid rgba(0, 0, 0, .15);
        background-color: #fff;
    }
}

/* Navbar CSS End */



.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}



/* Navbar Scrollable Start */

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

/* Navbar Scrollable End */


.carousel-background {
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.small-card-img {
    width: 200px;
    height: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}



/* announcements start */

.announcements {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 50px;
}

.announcements-news {
    width: 100%;
    background: var(--bs-yellow);
}

.announcements-news-title {
    width: 150px;
    text-align: center;
    position: absolute;
    z-index: 10;
    height: 50px;
}

.announcements-news-title:after {
    position: absolute;
    content: "";
    right: -39px;
    border-left: 20px solid var(--bs-blue);
    border-top: 28px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 21px solid transparent;
    top: 0px
}

.announcements-news-title h5 {
    font-size: 1.5vw;
    margin: 8% 0;
    color: #fff;
}

.announcements-news marquee {
    font-size: 18px;
    margin-top: 15px
}

.announcements-news-content p {
    margin-right: 41px;
    display: inline;
    color: #fff;
}

/* announcements end */



/* Owl Carousel Start*/

.post-slide .card-bg-image {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 200px;
}

.post-slide iframe {
    width: 100%;
    height: 200px;
}

.post-slide {
    /* background: #fff; */
    margin: 20px 15px 20px;
    border-radius: 15px;
    padding-top: 1px;
    /* box-shadow: 0px 14px 22px -9px #b8b8b8; */
}

.owl-controls .owl-buttons {
    text-align: center;
    margin-top: 20px;
}

.owl-controls .owl-buttons .owl-prev {
    background: #fff;
    position: absolute;
    top: -13%;
    left: 15px;
    padding: 0 18px 0 15px;
    border-radius: 0px;
    box-shadow: 3px 14px 25px -10px #b8b8b8;
    transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-next {
    background: #fff;
    position: absolute;
    top: -13%;
    right: 15px;
    padding: 0 15px 0 18px;
    border-radius: 0px;
    box-shadow: -3px 14px 25px -10px #b8b8b8;
    transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
    content: "<";
    font-family: FontAwesome;
    color: #333;
    font-size: 30px;
}

.owl-controls .owl-buttons .owl-next:after {
    content: ">";
}

@media only screen and (max-width: 1280px) {
    .post-slide .post-content {
        padding: 0px 15px 25px 15px;
    }
}


/* Owl Carousel End */

