@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@500;700&family=Roboto+Slab:wght@300;400;500;700&display=swap');

:root {
    --bg_color: white;
    --text_color: #000000;
    --style_hover_color: green;
    --style_hover_color2: #fb6f24; /*#07c4bd;*/
    --highlight_color: #ffb606;
}

html, body {
    position: relative;
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    background-color: var(--bg_color);
    background-image: url(/t/308/img/bg.jpg);
    background-size: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'EB Garamond', serif;
}

a {
    color: var(--text_color);
}

a:hover {
    text-decoration: none;
    color: var(--style_hover_color);
}

.section_padding_space {
    padding-top: 90px;
    padding-bottom: 90px;
}

.highlight_word {
    color: var(--highlight_color);
}

.section_heading {
    /*color: var(--text_color);*/
    /*position: relative;*/
}


/* Top Header Section */

#top_header_section {
    background-color: #ffffff;
}


#school_logo {
    width: 92px;
    margin-right: 8px;
}

#top_header_section.add_bg_solid {
    background-color: #ffffff;
    box-shadow: 0px 2px 9px 2px #ccc;
}

#top_header_section div.row {
    border-top: 7px solid green;
    background-color: #ffffffa1;
}

#marquee_section {
    background-color: #1e4a89;
    padding: 8px 0 6px 0;
    color: white;
}

#marquee_content_div p, #marquee_content_div h1, #marquee_content_div h2, #marquee_content_div h3, #marquee_content_div h4, #marquee_content_div h5 {
    margin: 0;
}

#top_header_section div.logo_name_div {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

/* Navigation Section */

#menu_toggle_div {
    cursor: pointer;
    width: 40px;
    background: none;
}

#menu_toggle_div #menu-btn {
    background: #008000;
    border: 1px solid #008000;
    color: #ffffff;
}

#menu_toggle_div #menu-btn .icon-bar {
    background-color: #ffffff;
}

div#menu_list_collapse {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
    /*margin: 0 30px;*/
}


#nav_section {
    position: relative;
}

#nav_section div.nav_div_fixed {
    position: absolute;
    top: 10px;
    width: 100%;
    z-index: 11;
}

ul#menu_list {
    background: transparent;
}

#menu_list li.menu_list_item a {
    color: var(--text_color);
    padding: 14px 8px;
    font-weight: 400;
    font-size: 14px;
    border: 1px solid transparent;
}

#menu_list li.menu_list_item a > .arrow:before {
    font-size: 12px;
    margin-left: 3px;
    content: '\f101';
}

#menu_list li.menu_list_item.menu-active > a {
    background-color: var(--bg_color);
    color: var(--text_color);
    border-top: 1px solid;
}

#menu_list li.menu_list_item ul.sub-menu {
    background-color: white;
    color: black;
    border-top: 1px solid var(--style_hover_color);
    border-bottom: 1px solid var(--style_hover_color);
    z-index: 99;
}

#menu_list li.menu_list_item ul.sub-menu li a {
    color: black;
    padding: 14px;
    font-size: 12px;
}

#menu_list li.menu_list_item ul.sub-menu li.menu-active {
    background-color: var(--bg_color);
    color: var(--style_hover_color);
}

#menu_list li.menu_list_item ul.sub-menu li.menu-active a {
    color: var(--style_hover_color);
}


/* Swiper slideshow */

#swiper_slide .swiper-button-next:hover:after, #swiper_slide .swiper-button-prev:hover:after {
    border-color: var(--style_hover_color);
    color: var(--style_hover_color);
}

#swiper_slide .swiper-button-next:after, #swiper_slide .swiper-button-prev:after {
    font-size: 15px;
    border: 1px solid #ffe3d2;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    height: 50px;
    width: 50px;
    font-weight: bold;
    color: var(--style_hover_color);
    background-color: white;
    opacity: 0;
    transition: opacity 0.3s linear;
}

#swiper_slide:hover .swiper-button-next:after, #swiper_slide:hover .swiper-button-prev:after {
    opacity: 1;
}

#swiper_slide .swiper-button-prev {
    left: 20px;
    height: auto !important;
    width: auto !important;
}

#swiper_slide .swiper-button-next {
    right: 20px;
    height: auto !important;
    width: auto !important;
}

/* Dialog boxes below slideshow*/


#dialog_box_section {
    position: relative;
    top: -62px;
    z-index: 12;
}

#dialog_box_section div.div_box {
    display: block;
    width: 100%;
    text-align: center;
    padding: 40px 20px;
    background-color: white;
}

#dialog_box_section div.div_box a {
    color: white;
    font-weight: bold;
}


/* Our Activities Section */

div#latest_news ul {
    padding: 0 0 0 16px;
    list-style-type: disclosure-closed;
}

div#latest_news ul li {
    padding-bottom: 6px;
}

#our_activities_section div.flex_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    padding: 40px 10px;
    background-color: #f7f7f7;
    /*margin-bottom: 25px;*/
    border: 1px solid #ccc;
}

#our_activities_section div.flex_wrapper div.image_div {
    margin-right: 15px;
}

#our_activities_section div.icon_div > div {
    background-color: brown;
    color: white;
    padding: 20px;
    font-size: 29px;
    margin-right: 15px;
}

#our_activities_section div.content_div h6 {
    color: green;
}

/* Apply Now Section */

section#bg_section {
    background-image: url(/t/308/img/4.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}

#bg_section div.bg_section_wrapper {
    display: flex;
    height: 300px;
    width: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
}

button.bg_button {
    padding: 10px 20px;
    background-color: white;
    margin: 8px;
}

/* Event Section */

#our_events_section div.event_div_wrapper {
    margin-bottom: 20px;
    background-color: #566573;
    color: white;
}

#our_events_section div.content_div {
    padding: 10px;
}

#our_events_section div.content_wrapper div.heading_div h1, 
#our_events_section div.content_wrapper div.heading_div h2, 
#our_events_section div.content_wrapper div.heading_div h3, 
#our_events_section div.content_wrapper div.heading_div h4, 
#our_events_section div.content_wrapper div.heading_div h5, 
#our_events_section div.content_wrapper div.heading_div h6 {
    margin: 0;
    padding: 10px;
    background-color: #465751;
}

/* Footer Section */

#footer_section {
    background-color: #495052;
    color: white;
}

#footer_section .section_heading {
    color: white;
}

#footer_section a {
    color: white;
}

#footer_section a:hover {
    color: var(--bg_color);
    text-decoration: underline;
}

#footer_section div.contact_info_div div.info_child_div i {
    margin-right: 5px;
}

#footer_section div.quick_links_div ul {
    line-height: 1.7;
}
    
#footer_section div.contact_info_div div.info_child_div {
    margin-bottom: 8px;
}

#copyright_section {
    border-top: 1px solid #ccc;
}

#cm_quick_links ul {
    list-style-type: none;
    padding: 0;
}

/* Media queries according to screen width */


@media only screen and (max-width: 991px) {
    #swiper_slide .swiper-button-next:after, #swiper_slide .swiper-button-prev:after {
        opacity: 1 !important;
    }
    #top_header_section div.logo_name_div {
        justify-content: center !important;
    }
    #top_header_section.fixed-top {
        position: sticky !important;
    }
    div#menu_list_collapse {
        justify-content: center !important;
    }
}


@media only screen and (max-width: 767px) {
    #menu_list > li {
        border-bottom: 1px solid #d3d3d3;
    }
    
    #menu_list > li.menu_list_item:first-child {
        border-top: 2px solid var(--style_hover_color2);
    }
    
    #menu_list li.menu_list_item.menu-active > a {
        background-color: var(--style_hover_color);
        color: white !important;
    }
    
    #menu_list li.menu_list_item a:hover {
        background-color: var(--style_hover_color);
        color: white !important;
    }
    
    #menu_list li.menu_list_item ul.sub-menu a:hover {
        background-color: var(--style_hover_color);
        color: white !important;
    }
    
    #dialog_box_section {
        top: 0px !important;
    }
    
    #our_activities_section div.col-12 {
        margin-bottom: 20px;
    }
    
}