
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #e03a3c; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}
    
/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #212529; /* The default color of the main navmenu links */
    --nav-hover-color: #e03a3c; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #e03a3c; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #1b1b1b;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #353535;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f3f3f3;
    background-image: url(../img/bg_alumni.svg);
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100% auto; 
} 
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px;
    }
}


a {
    color: #000000;
    text-decoration: none;
}

    a:hover {
        color: #bd2440;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    padding: 25px 0;
    overflow: hidden;
}
/*
.section-header {
    text-align: center;
    padding-bottom: 40px;
}

    .section-header h2 {
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: 700;
        margin: 0;
        color: #393185;
        text-transform: uppercase;
    }

    .section-header p {
        margin: 10px 0 0 0;
        padding: 0;
        font-size: 38px;
        line-height: 42px;
        font-weight: 700;
        color: #012970;
    }

@media (max-width: 768px) {
    .section-header p {
        font-size: 28px;
        line-height: 32px;
    }
}*/

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    /**/
    /* min-height: 40px;
  margin-top: 82px;*/
    color: #fff;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    /*   font-size: 14px;*/
    color: #fff !important
}

    .breadcrumbs ol a {
        color: #fff;
        transition: 0.3s;
    }

        .breadcrumbs ol a:hover {
            text-decoration: underline;
        }

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            content: "/";
        }


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #bd2440;
    width: 40px;
    height: 80px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 32px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #393185;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.dropdownSublist {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #393185;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        border-bottom: 1px dashed #ccc;
        transition: 0.3s;
    }

        .dropdown-content a:hover {
            padding: 10px 10px;
            text-transform: none;
            font-weight: 600;
            color: #ffffff;
            border-left: 5px solid #bd2440;
            transition: 0.3s;
        }

.dropdownSublist:hover .dropdown-content {
    display: block;
    position: fixed;
    z-index: 9999;
}

.customHeader {
    background-color: #e4f1ff;
    border-radius: 20px;
    padding: 10px 15px 10px 15px;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
    .customHeader  .header-scrolled {
        box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
        background: #fff !important;
        border-radius: 20px;
        padding: 15px 15px 10px 15px;
    }

#header {
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 0;
}

.sliderCustom {
    background: #ffcece;
    padding: 10px;
    border-radius: 50px;
    z-index: 9;
}
    .sliderCustom img {
        border-radius: 50px;
        z-index: 1;
    }
    .sliderCustom .carousel-inner {
        border-radius: 50px;
    }
/*#header .logo img {
    background: #fff;
}
*/
.header .logo img {
    margin-right: 6px;
}

.header .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    margin-top: 3px;
}


/*--------------------------------------------------------------
# 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: 5px;
        margin-left: 8px;
        font-size: 15px;
        font-weight: 500;
        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: #bd2440;
        }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        background: #393185;
        padding: 8px 20px;
        margin-left: 30px;
        border-radius: 4px;
        color: #fff;
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            color: #fff;
            background: #5969f3;
        }

    .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: #e4f1ff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 10px;
            /* font-size: 16px;*/
            text-transform: none;
            font-weight: 500;
            border-bottom: 1px dashed #ccc;
            color: #000000;
            margin: 0 auto;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover {
                border-left: 5px solid #bd2440;
                background: #2a2275;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #ffc107;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .megamenu {
        position: static;
    }

        .navbar .megamenu ul {
            margin-top: 0px;
            left: -68%;
            padding: 20px;
            display: flex;
            gap: 1rem;
            position: absolute;
            /* top: -90%; */
            /* backdrop-filter: blur(15px); */

            visibility: collapse;
            opacity: 0;
            width: 1270px;
            /* transition: .5s; */
            /* z-index: -1; */
        }

}

.navbar .megamenu ul li {
    flex: 1;
}

    .navbar .megamenu ul li a,
    .navbar .megamenu ul li:hover > a {
        color: #ffffff;
        border-bottom: 1px dashed #ccc;
    }

        .navbar .megamenu ul li a:hover {
            border-left: 5px solid #bd2440;
            background: #2a2275;
        }

        .navbar .megamenu ul li a:hover,
        .navbar .megamenu ul li .active,
        .navbar .megamenu ul li .active:hover {
            color: #ffc107;
        }

.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;
}

.megamenu .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background: #bd2440;
    color: #ffffff;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    border: 0;
    margin-right: 5px;
}

    .megamenu .nav-pills .nav-link.active,
    .nav-pills .show > .nav-link:hover {
        color: #ffffff !important;
    }

.megamenu .nav-pills .nav-link {
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #ffc107;
    margin-right: 5px;
}


@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        right: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        right: -110%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #012970;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 1200px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        width:100%;
        display: block;
    }
   /* .navbar ul {
        display: none;
    }*/
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #393185;
    transition: 0.3s;
    z-index: 9;
}

    .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;
        border-radius: 10px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 16px;
        color: #012970;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #393185;
        }

    .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: #393185;
        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;
        }

            .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 {
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }



/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

.MobileNone .custom-List {
    padding-left: 0px;
    list-style-type: none;
}

    .MobileNone .custom-List li::before {
        margin-left: 5px;
        margin-right: 5px;
        content: "|";
    }

    .MobileNone .custom-List .btn-group,
    .btn-group-vertical {
        position: absolute !important;
        display: inline-flex;
        vertical-align: middle;
        top: 4px;
    }

    .MobileNone .custom-List li a {
        font-size: 14px;
        font-weight: 500;
        color: #fff;
    }


.customRow {
    margin-right: 15px;
    margin-left: 15px;
}

@media (max-width: 991px) {
    .MobileNone {
        display: none !important;
    }
}

/*--------------------------------------------------------------
# Masterslider Section
--------------------------------------------------------------*/
.Masterslider {
    padding: 0;
    margin: 0 auto;
}

    .Masterslider .carousel-indicators {
        bottom: 0%;
        right: 0%;
        transform: translate(50%, 0%);
        display: flex;
    }

        .Masterslider .carousel-indicators .CircleBtn {
            width: 18px;
            height: 18px;
            background-color: #bd2440;
            border-radius: 50%;
            margin: 0 5px;
            outline-style: none;
        }


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background: #bd2440;
    padding: 0 0 0px 0;
}


    .footer .footer-top {
        background: #201c44 url(../img/footer-bg.png) no-repeat right top;
        background-position: bottom left;
        padding: 0px 0;
    }

@media (max-width: 992px) {
    .footer .footer-top {
        background-position: center bottom;
    }
}

.footer .footer-address {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,.2);
    padding: 25px;
}

.footer .footer-top .footer-info p {
    line-height: 24px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 400;
}

.footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-block;
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
    color: #fff;
}

    .footer .footer-top .social-links a:hover {
        color: #ffc107;
    }

.footer .footer-top h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffc107;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-top .footer-links {
    margin-bottom: 0px;
}

    .footer .footer-top .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer .footer-top .footer-links ul i {
            padding-right: 2px;
            color: #fff;
            line-height: 0;
        }

        .footer .footer-top .footer-links ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

            .footer .footer-top .footer-links ul li:first-child {
                padding-top: 0;
            }

        .footer .footer-top .footer-links ul a {
            color: #fff;
            transition: 0.3s;
            display: inline-block;
            line-height: 1;
            font-weight: 400;
        }

            .footer .footer-top .footer-links ul a:hover {
                color: #ffc107;
            }

.footer .footer-top .footer-contact p {
    line-height: 26px;
    color: #fff;
    font-weight: 600;
}

.footer .copyright {
    text-align: left;
    padding-top: 20px;
    color: #fff;
}


/* Tooltip on bottom */
.test + .tooltip.bottom > .tooltip-arrow {
    border-bottom: 5px solid blue;
}



.btn-warning-custom {
    background: #bd2440;
    padding: 5px 10px 5px 10px !important;
    border-radius: 5px;
    font-size: 14px;
}

.cdoe-navSection {
    padding: 4px 0;
    color: #fff;
    background-color: transparent !important;
    z-index: 99;
    top: 65px;
  
}
.bg_blue {
    background: #393185;
    border-radius: 20px;
    padding: 4px 0;
    border-bottom: 4px solid #bd2440;
}

    .cdoe-navSection p {
        margin-bottom: 0;
        font-size: 20px;
        font-weight: 700;
    }

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
    background-color: var(--surface-color);
    color: var(--accent-color);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    width: 54px;
    height: 54px;
    font-size: 24px;
    border-radius: 50px;
    border: 2px solid var(--background-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.stats .stats-item {
    background-color: var(--surface-color);
    margin-top: -27px;
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 0;
    border-radius: 25px;
}

    .stats .stats-item span {
        font-size: 24px;
        display: block;
        font-weight: 700;
        color: #bd2440;
    }

    .stats .stats-item p {
        padding: 0;
        margin: 0;
        font-weight: 500;
        font-size: 16px;
    }

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/

.recent-posts .nav-pills {
    padding: 10px;
    border-radius: 5px;
}

    .recent-posts .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        display: flex;
        align-items: center;
        padding: 10px;
        width: 100%;
        background: #393185;
        background: linear-gradient(90deg, #393185 0, #312393 100%, #8371ff 100%);
        box-shadow: 0 0 30px rgba(1, 41, 112, .08);
        border: none;
        color: #ffc107;
        font-weight: 600;
    }

.recent-posts .nav-item, .tabs-section1 .nav-item {
    margin-right: 15px;
}

.recent-posts .nav-pills .nav-link {
    display: flex;
    align-items: center;
    padding: 10px;
    width: 100%;
    background: #fee1df;
    -webkit-box-shadow: -3px 3px 6px 0 rgba(0, 0, 0, .16);
    box-shadow: -3px 3px 6px 0 rgba(0, 0, 0, .16);
    border: none;
    color: #000000;
    font-weight: 500;
}

.recent-posts .post-item {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
 
}

    .recent-posts .post-item .post-img img {
        transition: 0.5s;
    }

    .recent-posts .post-item .post-date {
        position: absolute;
        right: 0;
        bottom: 0;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        text-transform: uppercase;
        font-size: 13px;
        padding: 6px 12px;
        font-weight: 500;
    }

    .recent-posts .post-item .post-content {
        padding: 30px;
    }

    .recent-posts .post-item .post-title {
        color: #000000;
        font-size: 20px;
        font-weight: 700;
        transition: 0.3s;
        margin-bottom: 15px;
    }

    .recent-posts .post-item .meta i {
        font-size: 16px;
        color: #212529;
    }

    .recent-posts .post-item .meta span {
        font-size: 15px;
        color: #000000;
    }

    .recent-posts .post-item hr {
        color: #000000;
        margin: 20px 0;
    }

    .recent-posts .post-item .readmore {
        display: flex;
        align-items: center;
        font-weight: 600;
        line-height: 1;
        transition: 0.3s;
        color: #212529;
    }

        .recent-posts .post-item .readmore i {
            line-height: 0;
            margin-left: 6px;
            font-size: 16px;
        }

    .recent-posts .post-item:hover .post-title,
    .recent-posts .post-item:hover .readmore {
        color: var(--accent-color);
    }

    .recent-posts .post-item:hover .post-img img {
        transform: scale(1.1);
    }
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
    background-color: var(--surface-color);
    padding: 30px;
    margin: 60px 0 30px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.widget-item {
    margin-bottom: 20px;
}

    .widget-item:last-child {
        margin-bottom: 0;
    }

.recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 8px;
    border-radius:15px;
}

    .recent-posts-widget .post-item:last-child {
        margin-bottom: 0;
    }

    .recent-posts-widget .post-item img {
        width: 100%;
      /*  margin-right: 15px;*/
        border-radius: 10px;
    }

    .recent-posts-widget .post-item h4 {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 5px;
    }

        .recent-posts-widget .post-item h4 a {
            color: #000000;
            transition: 0.3s;
            font-weight: bold;
        }

            .recent-posts-widget .post-item h4 a:hover {
                color: #bd2440;
            }

    .recent-posts-widget .post-item time {
        display: block;
        font-style: italic;
        font-size: 14px;
        color: #000000;
    }

.tags-widget {
    margin-bottom: -10px;
}

    .tags-widget ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .tags-widget ul li {
            display: inline-block;
        }

        .tags-widget ul a {
            color: #bd2440;
            font-size: 14px;
            padding: 6px 14px;
            margin: 0 6px 8px 0;
            border: 1px solid #212529;
            display: inline-block;
            transition: 0.3s;
        }

            .tags-widget ul a:hover {
                background: var(--accent-color);
                color: #bd2440;
                border: 1px solid var(--accent-color);
            }

            .tags-widget ul a span {
                padding-left: 5px;
                color: #000000;
                font-size: 14px;
            }

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .card {
    background-color: transparent;
    border: 0;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative;
}

.events .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 25px;
}

    .events .card-img img {
        max-width: 100%;
        transition: all 0.3s ease-in-out;
    }

.events .card-body {
    z-index: 10;
    background: #ffffffd1;
    border-top: 4px solid var(--surface-color);
    padding: 15px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: -140px;
    transition: 0.3s;
    border-radius: 25px;
}

.events .card-title {
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
}

    .events .card-title a {
        color: var(--default-color);
        transition: 0.3s;
    }

.events .card-text {
    color: #000000;
}

.events .card:hover img {
    transform: scale(1.1);
}

.events .card:hover .card-body {
    border-color: var(--accent-color);
}

    .events .card:hover .card-body .card-title a {
        color: var(--accent-color);
    }


    .alumni-section .carousel-control-prev-icon, .alumni-section .carousel-control-next-icon {
        background-color: #bd2440;
        border-radius: 5px;
        width: 50px;
        height: 50px;
    }

    .alumni-section .main-title {
        position: relative;
        text-align: center;
        color: #000000;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 2rem;
     
    }

    .alumni-section .carousel-caption {
        position: relative;
        top: initial;
        right: initial;
        bottom: initial;
        left: initial;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        border-radius: 35px;
    }

        .alumni-section .carousel-caption  img{
            display: inline-block;
            border-radius: 100px;
            margin-bottom: 1.4rem;
            box-shadow: 0px 0px 8px -2px #0006;
        }

        .alumni-section .carousel-caption .carousel-title {
            font-size: 24px;
            font-weight: 700;
            color: #000000;
        }

        .alumni-section .carousel-caption .carousel-text {
            max-width: 650px;
            margin: auto;
            font-weight: 500;
            font-size: 16px;
            color: #000000;
        }

.gallery-section .main-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

.gallery-section .wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 0.5rem;
}

    .gallery-section .wrapper .gallery-item {
        cursor: pointer;
        overflow: hidden;
        border-radius: 25px;
    }

        .gallery-section .wrapper .gallery-item img {
            transform: scale(1);
            transition: ease 0.5s;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 25px;
        }

        .gallery-section .wrapper .gallery-item:hover img {
            transform: scale(1.08);
            transition: ease .5s;
         
        }

@media screen and (max-width:768px) {
    .gallery-section .wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
.btn {
    border-radius: 50px;
    font-size: 13px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    background: #bd2440 !important;
    margin-bottom: 2px;
}

.btn {
    position: relative;
    display: inline-block;
    text-decoration: none !important;
    transition: ease 0.3s;
    z-index: 1;
}

    .btn:hover {
        color: #000000 !important;
        transition: ease 0.3s;
    }

    .btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: auto;
        right: 0;
        bottom: 0;
        background-color: #393185;
        width: 0%;
        height: 100%;
        transition: ease 0.3s;
        z-index: -1;
    }

    .btn:hover.btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: auto;
        bottom: 0;
        background-color: #ffc107;
        width: 100%;
        height: 100%;
        transition: ease 0.3s;
        border-radius: 50px;
    }


/*css*/

.Common-Section .sticky-top1 {
    top: 110px;
    z-index: 5;
    position: -webkit-sticky;
    position: sticky;
}
.count .wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 789px) {
    .count .wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .count .border-end {
        border-right: none !important;
    }
}


.carouselTestimonials .owl-dots {
    text-align: right;
    margin-top: 5px;
    position: absolute;
    top: -15px;
    right: 0;
}


.carouselTestimonials .owl-dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    outline: none;
    border-radius: 14px;
    border: 2px solid #bd2440 !important;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    .carouselTestimonials .owl-dot.active,
    .carouselTestimonials .owl-dot:hover {
        background: #bd2440 !important;
    }


ol li, ul li, p {
    font-weight: 500 !important;
}

.contact .info-box i {
    font-size: 38px;
    line-height: 0;
    color: #bd2440;
}

.eventsList {
    list-style-type: none;
    padding: 0 1rem;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

    .eventsList h4,
    .eventsList1 h4 {
        font-size: 16px;
        font-weight: 600;
        color: #393185;
    }

    .eventsList p {
        font-size: 14px;
        font-weight: 500;
        color: #000;
    }

    .eventsList > .item {
        background-color: #ddd8ff;
        padding: 1rem;
        border-radius: 15px;
    }

        .eventsList > .item .icon {
            display: grid;
            place-items: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: #fff;
            margin-bottom: 1rem;
            color: #000;
            font-size: 20px;
        }

    .eventsList em {
        color: #838383;
        font-size: 13px;
    }

    .eventsList > .item .link {
        font-weight: 500;
        font-size: 14px;
        color: #bd2440;
        padding: 5px;
        border-radius: 5px;
        font-weight: 600;
    }

@media screen and (max-width:768px) {
    .eventsList {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}

.contact .info-box {
    padding: 20px;
    border-radius: 5px;
    background: #fff;
}

.eventsList1 {
    list-style-type: none;
    padding: 0 1rem;
    margin: 0;
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 1rem;
}

.eventsList1 > .item {
    background-color: #ddd8ff;
    padding: 1rem;
    border-radius: 15px;
}


.cut-text {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cut-text-notify {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.justify{
    text-align:justify;
}
/*css*/
 
.carouselAumni_New .owl-stage {
    display: flex; /* make items align in a row */
}

.carouselAumni_New .owl-item {
    display: flex; /* make each carousel item a flex container */
    height: auto;
}

.carouselAumni_New .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .carouselAumni_New .card img {
        height: 120px;
        width: 120px;
    }
     