@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap');

/*************************************************************/
/*         Clear All                                        */
/***********************************************************/

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;

}

/*************************************************************/
/*         Variables                                        */
/***********************************************************/

:root {
    --first-color: #004AAD;
    --second-color: #104573;
    --third-color: #F2BF27;
    --fourth-color: #F2AE2E;
    --White-color2: #F2F2F2;
    --white-color: #fff;
    --white-color3: #f7faff;
    --text-color: #555;
    --text-grey: #999;
    --black-color: #2d2e2e;
    --black-shades1: #3B3C36;
    --Primary-font: 'Roboto', sans-serif;
    --secondary-font: 'Quicksand', sans-serif;
    --Third-font: 'Merriweather', sans-serif;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--secondary-font);

}

/********************************************************/
/*         Clear Other Effects                         */
/******************************************************/

.section_margin {
    padding-top: 50px;
}

.div_center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.div_center2 {
    display: grid;
    place-items: center;
}

/***********************************************************/
/*         Custom Scrollbar                               */
/*********************************************************/
::-webkit-scrollbar {
    width: 0.625rem;
}

::-webkit-scrollbar-track {
    background: var(--fourth-color);
}

::-webkit-scrollbar-thumb {
    background: var(--first-color);
}





/***********************************************************/
/*        Text Style                                 */
/*********************************************************/
.text_style1 {
    font-weight: 200;
    font-size: 1.3rem;
    line-height: 2.2rem;
    color: var(--black-shades1);
    padding: 10px;
    word-spacing: 1px;
    word-wrap: normal;
    text-align: justify;
}

.text_style2 {
    font-weight: 600;
    line-height: 26px;
    word-spacing: 3px;
    word-wrap: normal;
    color: #004AAD;
    font-size: 3rem;
    line-break: normal;
}

.text_style3 {
    font-weight: 200;
    font-size: 1.3rem;
    line-height: 2.2rem;
    color: var(--first-color);
    font-family: var(--Third-font);
    word-spacing: 1px;
    word-wrap: normal;
    text-align: justify;
}

.text_style7 {
    font-weight: 200;
    font-size: 2rem;
    line-height: 2.2rem;
    color: var(--first-color);
    font-family: var(--Third-font);
    word-spacing: 1px;
    word-wrap: normal;
    text-align: justify;
}

.text_style4 {
    font-weight: 100;
    line-height: 26px;
    word-spacing: 3px;
    color: var(--first-color);
    font-family: var(--Third-font);
    font-size: 2rem;
}

.text_style5 {
    font-weight: 200;
    font-size: 1.5rem;
    line-height: 2.2rem;
    color: var(--black-shades1);
    font-family: var(--Third-font);
    word-spacing: 1px;
    word-wrap: normal;
    text-align: justify;
}

/****************************************************************/
/*        Horizontal Line                                      */
/**************************************************************/
.horizotal_line_center {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.horizontal_line1 {
    background-color: #004AAD;
    width: 75px;
    height: 1px;
    margin-bottom: 2px;

}

.horizontal_line2 {
    background-color: #004AAD;
    width: 50px;
    height: 1px;
    margin-bottom: 2px;
}

.horizontal_line3 {
    background-color: #004AAD;
    width: 25px;
    height: 1px;
    margin-bottom: 2px;
}

/****************************************************************/
/*         Custom Navigation bar                               */
/**************************************************************/
.navbar_desktop {
    width: 100%;
    height: 80px;
    background-color: var(--White-color2);
    z-index: 9999;
}

.desktop_logo {
    padding-top: 1px;
    height: 78px;
    width: 100px;
}

.desktop_space {
    display: flex;
    justify-content: space-between;
}

.menu_desktop li {
    display: inline-block;
    line-height: 80px;
    font-size: 16px;
    margin: 0 5px;
    text-transform: uppercase;

    color: #004AAD;
}

.menu_desktop li a {
    text-decoration: none;
    list-style: none;
}

.navbar_mobile {
    width: 100%;
    height: 60px;
    background-color: var(--White-color2);

}

.mobile_space {
    display: flex;
    justify-content: space-between;
}

.mobile_logo {
    padding-top: 1px;
    height: 58px;
    width: 100px;
}

.offcanavas_menu {
    z-index: 9999;
    position: fixed;
    top: 0;
    border-top-left-radius: 30px;
    right: 0;
    background: #fff;
    width: 60vw;
    height: 100vh;

    transform: translateX(100%);
    transition: all 0.4s ease;
}

.offcanavas_menu.active {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 30px;
    left: 30px;

}

.menu_mobile {
    padding-top: 80px;
    padding-left: 0px;
    padding-right: 0px;
    margin: 0px;
}


.menu_mobile li {
    line-height: 50px;
    font-size: 20px;
    margin: 0;
    width: 100%;
    text-transform: uppercase;
}

.menu_mobile li a {
    margin: 0;
    padding-left: 20px;
    color: #004AAD;
    display: block;
    text-decoration: none;
    list-style: none;

}

.menu_mobile li a:hover {
    background-color: #004AAD;
    color: white;

}




@media (max-width: 575px) {
    #navbar_desktop {
        display: none;
    }
}

@media (min-width: 576px) {
    #navbar_mobile {
        display: none;
    }
}


/****************************************************************/
/*         Header                                              */
/**************************************************************/
#wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#slider_area {
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

#slider_area::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;

}

#slider_area .owl-item div {
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.form_style {
    background-color: black;
    margin-top: 50px;
    padding: 10px 20px;
    width: 400px;
    border-radius: 5px;
}


input,
select,
textarea {
    padding: 10px 15px !important;
    font-size: 14px !important;
    height: 42px;
    margin: 10px 0px;
    font-family: var(--Third-font);

}


/****************************************************************/
/*         About Us                                            */
/**************************************************************/
.about_us_image_center {
    overflow: hidden;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 5px;
}



/****************************************************************/
/*         From The Desk Of Principal                          */
/**************************************************************/

.principal {
    background-image: url("../images/img/bg1.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
}

.text_center {
    text-align: center;
}

.center_principal_image {
    display: grid;
    place-items: center;
}

.Principal_image {
    overflow: hidden;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 50%;
    height: 400px;
    width: 400px;
    border: 6px solid #004AAD;
}

/****************************************************************/
/*         Thought Of the Day                                  */
/**************************************************************/
.text_center {
    text-align: center;
}

.thought_gap {
    margin-bottom: 50px;
}

.thought_msg {
    height: 400px;
}

.thought_section {
    padding-top: 100px;
    padding-bottom: 100px;
}

/****************************************************************/
/*         Class Topers                                        */
/**************************************************************/
.class_topper_text {
    text-align: center;
    padding-bottom: 30px;
}

.toppers_backgroud {
    background-image: url("../images/img/birthday_bg.gif");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px;
    border-radius: 15px;
}

.toppers_text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bd_padding {
    margin-bottom: 0px;
    padding-top: 20px;
}

/****************************************************************/
/*         Student Zone                                        */
/**************************************************************/
.student_zone_text {
    text-align: center;
    padding-bottom: 10px;
}

.student_zone_icon {
    border: 1px solid #004AAD;
    padding: 40px;
    border-radius: 50%;
}

.icon_animation {
    height: 100px;
    width: 100px;
    transform: scale(1);
    transition: all 0.3s;
}

.icon_animation:hover {
    transform: scale(1.2);
}


/****************************************************************/
/*        Map And Contact us                                   */
/**************************************************************/

.card1 {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 0px;
    border-radius: 15px;
    background-color: #fff;
}

.card1_textbox {
    height: 60px;
    padding: 15px 30px;
    color: #596190;
    margin-bottom: 20px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 0px;
    background-color: #fff;
    border: 0px !important;

}

.contact_text_style1 {
    font-weight: 100;
    line-height: 1.8;
    color: #004AAD;
    word-spacing: 3px;
    word-wrap: normal;
    line-break: auto;
    word-wrap: normal;
}

.contact_text_style2 {
    font-weight: 600;
    line-height: 26px;
    word-spacing: 3px;
    word-wrap: normal;
    color: #004AAD;
    font-size: 3rem;
    padding-bottom: 30px;
    line-break: normal;
}

.contact_style {
    padding: 80px;
    background: #f7faff;
    border-radius: 15px;
}

/********************************************************/
/*                     Media Queries                   */
/******************************************************/


@media (max-width: 576px) {
    .text_style2 {
        font-size: 2.0rem;
    }

    .principal {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .text_style5 {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .mb_principal_msg {
        padding-top: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .thought_msg {
        height: 100px;
    }

    .thought_section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .mob_padd {
        padding-top: 30px;
    }

    .bd_padding {
        margin-bottom: 0px;
        padding-top: 20px;
    }

    .text_style4 {
        font-size: 1.5rem;
    }

    .contact_style {
        padding: 10px;
    }

    /* .contact_text_style2{
        font-size: 1.5rem;
    } */

}

@media (max-width: 768px) {
    .text_style2 {
        font-size: 2.0rem;
    }
}

@media (max-width: 992px) {
    .text_style2 {
        font-size: 2.0rem;
    }
}

@media (min-width: 1200px) {}

@media (min-width: 1400px) {}

/****************************************************************/
/*         Footers                                             */
/**************************************************************/
.footer_background {
    background-color: var(--first-color);
}

.copyright {
    color: var(--white-color);
    text-align: center;
    font-size: 1.5rem;
    line-height: 60px;
    margin: 0px;
}



