@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


:root {
    --primary-color: #d13438;
    --grey-color: #4d4d4d;

    --border-color: hsl(220, 68%, 97%);
    --body-color: hsl(220, 100%, 99%);

    --primary-shadow: 0 2px 8px hsla(220, 68%, 12%, .1);
}

body,
html {
    font-family: "Manrope", sans-serif;

}

.large-device-only {
    display: block;
}

.small-device-only {
    display: none;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
    padding-left: 0;
}

a {
    text-decoration: none;
}

input:focus,
textarea:focus,
select:focus {
    box-shadow: none !important;
    outline: none !important;
}



.main-btn {
    font-size: 14px !important;
    /* text-transform: uppercase; */
    font-weight: 500;
    padding: 12px 32px !important;
    height: 50px;
    /* line-height: 20px; */
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: var(--primary-color);
    color: #fff !important;

    border-radius: 50px;
    letter-spacing: .5px;
    position: relative;
    overflow: hidden;

    transition: all .3s ease;
}

/* hover shine effect */

.main-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.2;
    transition: left .6s ease;
}

.main-btn:hover::before {
    left: 100%;
}

.main-btn:hover {
    color: #fff;
}

/* icon */

.main-btn i {
    width: 28px;
    height: 28px;
    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #25D366;
}


.main_heading {
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: var(--secondary-font);
    color: #000;
}

section {
    padding: 70px 0;
}


/* Custom Css end */



nav.header-scrolled{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transform: translateY(0);
    animation: headerSlide 0.4s ease forwards;
}


/* smooth slide animation */

@keyframes headerSlide{

    from{
        transform: translateY(-100%);
        opacity:0;
    }

    to{
        transform: translateY(0);
        opacity:1;
    }

}

.top-bar {
    background: #222;
    font-size: 14px;
    padding: 8px 20px;
}

.top-bar .container {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
}

.top-right a {
    margin-left: 12px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.top-right a:hover {
    color: #e52323;
}

/* Mobile */

@media(max-width:768px) {

    .top-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

}








.header_top {
    /* background: var(--primary-color); */
    background: #fff;
    height: 35px;
    padding: 4px 0;
    border-bottom: .3px solid #8a8a8a;
}

.header_top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_top .social_icons {
    margin-right: 30px;
}

.header_top .social_icons .header_top .email-phone {
    display: flex;
    gap: 20px;
}

.header_top .email-phone a {
    display: inline-flex;
    gap: 5px;
    color: #000;
}

.header_top .social_icons a {
    display: inline-flex;
    gap: 5px;
    color: #000;
}

.header_top .social_icons {
    display: flex;
    gap: 10px;
}

.header_top .top_menu {
    display: flex;
    gap: 25px;
}

.header_top .top_menu a {
    color: #000;
}

.header_top .top_menu li {
    position: relative;
}

.header_top .top_menu li::after {
    position: absolute;
    content: '|';
    top: 0;
    right: -15px;
    color: #ffffff37;
}

.header_top .top_menu li:nth-child(5):after {
    display: none;
}

.header_top .cart-order {
    display: none;
}


header.active {
    visibility: visible;
    transform: translateX(300px);
}




nav {
    transition: all 0.4s ease;
    /* background: #000; */
    width: 100%;
    height: 100px;
    line-height: 85px;
    border-bottom:1px solid #eeeeee;
    /* box-shadow: var(--primary-shadow); */
}

nav .wrapper {
    position: relative;

    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .logo {
    /* width: 160px; */
    display: flex;
    align-items: center;
    gap: 20px;
}
.wrapper .logo  .logo-img{
    width: 140px;
}

.wrapper .nav-links {
    display: inline-flex;
    margin-bottom: 0;
    align-items: center;
}

.nav-links li a {
    color: #000;
    text-decoration: none;
    padding: 9px 20px;
    font-size: 18px;
}

.nav-links .drop-menu {
    background-color: #fff;
    width: 200px;
    top: 85px;
    line-height: 45px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--primary-shadow);
    /* border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; */
}

.nav-links .administration-menu {
    width: 250px !important;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    z-index: 9999;
    top: 100px;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
}

header .submenu {
    background-color: #fff;
    width: 200px;
    left: 250px;
    line-height: 45px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--primary-shadow);
}

.nav-links .submenu_link:hover .submenu {
    z-index: 9999;
    top: 0px;
    right: -200px;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
}

header li .desktop-item i,
header li .mobile-item i {
    float: right;
    /* margin-right: 15px; */
}

.drop-menu li:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.drop-menu li:hover {
    background-color: #f7f7f7;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
}

/* .mega-box .content .row{
    width: calc(25% - 30px);
    line-height: 45px;
} */
.nav-links .mobile-item {
    display: none;
}

.nav-links a {
    display: inline-flex;
    gap: 3px;
}

.wrapper .btn {
    color: var(--primary-color);
    font-size: 26px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.cancel-btn {
    position: absolute;
    right: 5px;
    top: 12px;
}



header .header_btns{
    display: flex;
    align-items: center;
    gap: 16px;
}

@media screen and (max-width:970px) {
    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        background-color: #fff;
        display: block;
        top: 0;
        left: -100%;
        line-height: 50px;
        overflow-y: auto;
        padding: 50px 10px;
        box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
        transition: all .3s ease-in;
        z-index: 99999;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    .nav-links::-webkit-scrollbar {
        width: 0px;
    }

    .nav-links li {
        margin: 5px;
    }

    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 16px;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        top: 65px;
        padding-left: 10px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        transition: all .5s ease-in;
        box-shadow: none;
    }

    .nav-links .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        top: 65px;
        padding-left: 10px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        transition: all .5s ease-in;
    }

    #showDrop:checked~.drop-menu,
    #showAcademics:checked~.drop-menu,
    #showAdministration:checked~.drop-menu,
    #showNews:checked~.drop-menu,
    #showConference:checked~.submenu {
        max-height: 100%;
    }

    .nav-links .drop-menu li {
        margin: 0;
    }

    .nav-links .drop-menu li a {
        font-size: 16px;
        border-radius: 5px;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        font-size: 16px;
        color: #000;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all .3s ease;
    }

    .top_menu.mobile-item {
        padding-left: 0;
    }

    .mega-box {
        position: static;
        top: 65px;
        width: 100%;
        opacity: 1;
        visibility: visible;
        max-height: 0px;
        overflow: hidden;
        transition: all .3s ease;
    }

    .mega-box .content {
        grid-template-columns: 1fr;
        padding: 20px 20px 0 20px;
    }

    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.wrapper input {
    display: none;
}




.page_banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .7), rgba(0, 0, 0, 0.3)), url(../img/banner-bg.jpg);

    background-size: cover;
    background-position: center;
    height: 300px;
    /* margin-top: 100px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page_banner h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    padding-top: 100px;
}



.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}