*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
#banner {
    background:  #002d61;
    background-size: cover;
    background-position: center;
    height: 100vh;
}
.logo{
    width: 140px;
    position: absolute;
    top: 4%;
    left: 10%;
   }
 
.banner-text{
    text-align: center;
    color: #fff;
    padding-top: 180px;
}

.banner-text h1 {
    font-size: 90px;
    /* font-family: 'kaushan script', cursive; */
}

.banner-text p {
    font-size: 20px;
    font-style: italic;
}

.banner-btn {
    margin: 50px auto 0;
}

.banner-btn a{
    width: 150px;
    height: 20px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 0;
    color: orangered;
    border: .5px solid orangered;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
    font-size: larger;
}

.banner-btn a span {
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: orangered;
    z-index: -1;
    transition: 0.5s;
    border-radius: 10px;
} 

.banner-btn a:hover span {
    width: 100%;
}

.banner-btn a:hover {
    color: #fff;
}

#sideNav {
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 0;
    background: #002d61;
    z-index: 2;
    transition: 0.5s;
}

nav ul li {
    list-style: none;
    margin: 50px 20px;
}

nav ul li a{
    text-decoration: none;
    color: #fff;
}

#menuBtn {
    width: 50px;
    height: 50px;
    background: #002d61;
    text-align: center;
    position: fixed;
    right: 30px;
    top: 20px;
    border-radius: 3px;
    z-index: 3;
    cursor: pointer;
}

#menuBtn img{
    width: 20px;
    margin-top: 15px;
}

@media screen and (max-width: 770px){
    .banner-text h1 {
        font-size: 44px;
        /* font-family: 'kaushan script', cursive; */
    }
    .banner-btn a{
        display: block;
        margin: 20px auto;
    }
}

/*--Activities--*/

#features {
    width: 100;
    padding: 10px;
}

.title-text{
    text-align: center;
    
}

.title-text p {
    margin: auto;
    font-size: 14 px;
    color: #002d61;
  /*  font-weight: bold; */
    position: relative;
    z-index: 1;
    display: inline-block;
    line-height: 1.5;
}

/* .title-text p::after{
    content: "";
    width: 50px;
    height: 35px;
    background: linear-gradient(#019587, #fff);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
} */

.title-text h1{
    font-size: 50px;
}

.feature-box{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}

.features{
    flex-basis: 50%;
}

.features-img { 
    flex-basis: 50%;
    margin: auto;
}

.features-img img{
    width: 70%;
    border-radius: 10px; 
}

.features h1 {
    text-align: left;
    margin-bottom: 10px;
    font-weight: 100;
    color: #002d61;
}

.features-desc {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
   
}

.feature-icon img {
    padding: 10px;
    width: 50px;
    height: 50px;
    font-size: 30%;
    line-height: 50px;
    border-radius: 8px;
    background: #002d61;;
    border: 1px solid #002d61;
}

.feature-text p{
    padding: 0 20px;
    text-align: initial;
    color: #002d61;
}

.feature-text h1, h2, h3, h4, h5, h6 {
    color: #002d61;
    text-align: center;
}

@media screen and (max-width: 770px){
    .title-text h1{
        font-size: 35px;
    }
    .features{
        flex-basis: 100%;
    }
    .features-img{
        flex-basis: 100%;
    }
    .features-img img{
        width: 100%;
       /* display: none; */
    }
}
    /*--SERVICE--*/

#service{
    width: 100%;
    padding: 10px;
    background: #efefef;
}

.service-box{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}

.single-service{
    flex-basis: 48%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.single-service img{
    width: 100%;
    border-radius: 7px;
}

.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 7px;
    cursor: pointer;
    background: linear-gradient(rgba(0,0,0,0.5), #002d61);
    opacity: 0;
    transition: 1s;
}

.single-service:hover .overlay {
    opacity: 1;
}

.service-desc{
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
    transition: 1s;
}

hr {
    background: #fff;
    height: 2px;
    border: 0;
    margin: 15px auto;
    width: 60%;
}

.service-desc p {
    font-size: 14px;
}

.single-service:hover .service-desc {
    bottom: 40%;
    opacity: 1;
}

@media screen and (max-width:770px) {
    .single-service {
        flex-basis: 100%;
        margin-bottom: 30px;
    }
    .service-desc p {
        font-size: 12px;
    }
    hr {
        margin: 5px auto;
    }
    .single-service:hover .service-desc{
        bottom: 25% !important;
    }
}

    /*--testimonial--*/

    #testimonial {
        width: 100%;
        padding: 70px 0;
    }

    .testimonial-row {
        width: 80%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }
        
    .testimonial-col {
        flex-basis: 28%;
        padding: 10px;
        margin-bottom: 30px;
        border-radius: 5px;
        box-shadow: 0 10px 20px 3px #002d61;
        cursor: pointer;
        transition: transform .5s;
    }

    .testimonial-col p{
        font-size: 15px;
        padding: 0px 20px 10px;
    }
    .user {
        display: flex;
        align-items: center;
        margin: 20px o;
    }

    .user img{
        width: 40px;
        margin-right: 3px;
        border-radius: 3px;
    }

    .user-info img{
        margin-left: 10px;
        color: #002d61;
        font-size: 20px;
    }

    .testimonial-col:hover {
        transform: translateY(-7px);
    }

    @media screen and (max-width: 770px){
        .testimonial-col{
            flex-basis: 100%;
        }
    }

    /*--footer--*/

    #footer{
        padding: 100px 0 20px;
        background: #fff;
        position: relative;
    }

    .footer-row {
        width: 80%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding-top: 0;
    }

    .footer-left, .footer-right {
        flex-basis: 45%;
        padding: 10px;
        margin-bottom: 20px;
    }

    .footer-left, .footer-right p{
        color: #002d61;
    }

    .footer-right {
        text-align: right;
    }

    .footer-row h1 {
        margin: 10px 0;
    }

    .footer-row p{
        line-height: 35px;
    }

    .footer-left .fa, .footer-right .fa {
        font-size: 20px;
        color: #002d61;
        margin: 10px;
    }

    .footer-img{
        max-width: 370px;
        opacity: 0.1;
        position: absolute;
        left: 50%;
        top: 35%;
        transform: translate(-50%, -50%);
    }

    .social-links{
        text-align: center;
    }

    .social-links img {
        height: 40px;
        width: 40px;
        font-size: 20px;
        line-height: 40px;
        border: 1px solid #009688; 
        margin: 40px 5px 0;
        /**color: #dfeceb; **/
        cursor: pointer;
        transition: .5s;
    }

    .social-links #fb-icon{
        background-color: #0e28b8;
    }

    .social-links #youtube-icon{
        background-color: red;
    }

    .social-links img:hover{
        background: #002d61;
        color: #fff;
        transform: translateY(-7px);
    }

    .social-links p{
        font-size: 12;
        margin-top: 20px;
    }

    
    .second-footer{
        background:  #002d61;;
        border: 20px 40px; 
        padding: 20px;
        margin-bottom: 0;
    }

    .copyright1 {
        font-size: 14px;
        font-family: Arial, Helvetica, sans-serif;
        color: #ffffff;
        display: inline;
        text-align: center;
        font-weight: 300;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .copyright1 a{
        color: rgb(230, 193, 28)
    }

    @media screen and (max-width: 770px) {
        .footer-right, .footer-left .copyright1{
            flex-basis: 100%;
            font-size: 14px;
        }
        .footer-img{
            top: 25%;
        }

        .copyright1{
            display: flex;
            flex-direction: column;
            line-height: 1.5;
        }
    }

    /**image gallery css**/

    
.img-gallery {
    width: 80%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.img-gallery img {
    width: 100%;
    cursor: pointer;
    border: #fff 3px solid;
}

.img-gallery img:hover {
    transform: scale(0.8) rotate(-15deg);
    border-radius: 20px;
    box-shadow: 0 32px 75px rgba(68,77,136, 0.2);
}

.full-img {
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    position: fixed;
    top: o;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.full-img img {
    width: 90%;
    max-width: 500px;
}

.full-img span {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

#gallery-sec {
  /*  background: #002d61;      */
    background: #efefef;
    padding: 10px;
}

#gallery-sec h2{
    color: #002d61;
}

/***results table styling***/

#background-img{
    background: url(Photos/beautiful.JPG);
    background-size: cover;
    margin: 40px ;
    padding: 15px;
}

#congrats{
 
    margin: auto;
    display: block;
    flex-basis: 30%;
    padding: 20px;
    margin-bottom: px;
    background-color:  #002d61;
    padding-top: 0;
}

#congrats p {
  /**  line-height: 1.5;  **/
    padding: 15px;
    color: #fff;
    text-align: center;
}

.appreciation h3 {
    text-align: center; 
    background-color:  #002d61;
    color: rgb(230, 193, 28);
    padding-top: 20px;
    padding-bottom: 0;
}

#result-tb {
    border-collapse: collapse;
    border-color: #0e28b8 20px solid;
    margin: auto;
    padding: auto;
    height: 320px;
    width: 60%;
 /**   box-shadow: 0 5px 10px 5px #009688; */
    background-color: #e2dddd;
}

@media screen and (max-width: 1080px){
    #result-tb tr{
        width: 100px;
        
    }
}

#result-tb tr {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    height: 25px;
}

.tb-container {
   
    background: no-repeat;
    background-position: relative;
    text-align: center;
    font-weight: 150px bold;
    font-size: 15px;
   
}



.tb-container h3{
    font-size: 15px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 10px;
    color:  #009688;
    background-color: rgb(249, 252, 247);
}
 th {
    padding: 5px 37px;
 }
 #td-span {
    font-weight: bold;
    text-align: right;
    padding-right: 24%;
 }

 /***contact us styling***/

 .contactus {
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(Photos/smilingkids.JPG);
    background-size: cover;
 }



 .ct-content{
   font-size: medium;
   font-family: Verdana, Geneva, Tahoma, sans-serif;
 }


 .contactus .ct-content{
    max-width: 800px;
    text-align: center;
 }

 .contactus .ct-content h3 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
 }

 .contactus .ct-content p {
    font-size: 20px;
    font-weight: 300;
    color: #f4f6f7;
 }

 .ct-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
 }

/*
 .ct-container .contactinfo {
    width: 50%;
    display: flex;
    flex-direction: column;
 }
*

 .ct-container .contactinfo .ct-box {
    position: relative;
    padding: 20px 0;
    display: flex;
 }
 */

 .ct-container .contactinfo .ct-box .ct-icon {
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
 }
 .ct-container .contactinfo .ct-box .ct-text {
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
 } 

 .ct-text {
    display: flex;
  
    font-size: 16px;
    color: #002d61;
    flex-direction: column;
    text-align: center;
    font-weight: 300;
    box-shadow: 0 5x 20px 5px #009688;
    padding: 20px;
    background-color: #d3d1d1be;
    border-radius: 5px;
 }

 .ct-box {
    display: flex;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
    width: 400px;
    padding: 10px;
    position: relative;
    
 }

 .ct-container .contactinfo .ct-box .ct-text h3 {
    font-weight: 500;
    color: #00bcd4;
 }

 .contactform {
    width: 40%;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
 }

 .contactform h2 {
    font-size: 30px;
    color: #333;
    font-weight: 500;
 }

.inputbox {
    padding-left: 10px;
}

 .contactform .inputbox {
    position: relative;
    width: 100%;
    margin-top: 10px;
 }

 .contactform .inputbox input, .contactform .inputbox textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
 }

 .contactform .inputbox span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
 }

 .contactform .inputbox input:focus~span, 
 .contactform .inputbox input:valid~span
 .contactform .inputbox textarea:focus~span,
 .contactform .inputbox textarea:valid~span 
 {
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
 }

 .contactform .inputbox input[type="submit"] {
    width: 100px;
    background: #00bcd4;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
 }

 @media (max-width: 991px) {
    .contactus{
        padding: 50px;
    }


    .ct-container {
        flex-direction: column;
    }
    .ct-container .contactinfo {
        margin-bottom: 40px;
    }
    .ct-container .contactinfo, .contactform{
        width: 100%;
    }

 } 
  
 /***ernrollment form styling***/



 .en-container {
    width: 60%;
    margin: 50px auto 0px;
    color: #fff;
    background-color: #5f9ea0;
    text-align: center;
    border: 1px solid #b0c4de;
    border-bottom: none;
    border-radius: 10px 10px 0px 0px;
    padding: 50px;
 }

 #heading-one {
    color: #fff;
    text-align: center;
    padding-top: 20px;
 }



 .input-group {
    margin: 10px 0px 10px 0px;
 }

 .input-group label {
    display: block;
    text-align: left;
    margin: 3px;
 }

 .input-group input {
    height: 30px;
    width: 93%;
    padding: 5px 5px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid gray;
 }

 #btn {
    padding: 15px;
    font-size: 15px;
    color: white;
    background: #5f9ea0;
    border: none;
    border-radius: 5px;
    width: 100px;
    cursor: pointer;

 }

 /**************more info styling************************/
/*******table styling begins***********/

.results {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 15px;
    background-color:  #efefef;
    border-radius: 20px;
}


@media screen and (max-width: 760px){
    .results{
        display: flex;
        flex-direction: column;
        
    }
    
}

@media screen and (max-width: 500px){
    .results{
        display: flex;
        flex-direction: column;
        
    }
    
}

/**********************************school fees*********************************************/

.school-fees {
    padding: 20px;
}

@media screen and (max-width: 500px){
    .school-fees {
        padding: 0;
    }
}


/******************fees rquirements styling begins*********************************/

.fees-requirements  {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-color:  #002d61;
    color: #beb9b9;
    padding: 2%;
    line-height: 1.5;
}

.fees-requirements p {
   /** color: rgb(243, 105, 243);**/
   color: rgb(230, 227, 28);
    font-size: large;
    margin-top: 50px;
}

.fees-requirements h3{
    color: rgb(230, 227, 28);
}

@media screen and (max-width: 760px){
    .fees-requirements{
        display: flex;
        flex-direction: column;
        
    }
    
}

@media screen and (max-width: 500px){
    .fees-requirements{
        display: flex;
        flex-direction: column;
        padding-left: 20px;
        
    }
    
}



/******************************************Login***************************************************/

.login {
    width: 280px;
    height: 370px;
    background: rgb(9, 96, 209);
    color: whitesmoke;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 40px 25px;
    border-radius: 10px;
    background-color: #009688;
}

#login-bg {
    background-color: #efefef;
}

h1 {
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
    font-size:  22px;
}

.login h1{
    background-color: rgb(243, 239, 31);
    border-radius: 6px;
    margin: 0;
    padding: 10px;
    font-weight: bold;
}

.login input {
    width: 100%;
    margin-bottom: 18px;
    border-radius: 4px;
}

.login input[type="text"], input[type="password"] {
    border: none;
    border-bottom: 2px solid #000;
    background: transparent;
    color: #000;
    outline: none;
    height: 20px;
    font-size: 17px;
}

.login input[type="submit"] {
border: none;
outline: none;
height: 30px;
color: black;
background:rgb(9, 96, 209);
font-size: 17px;
border-radius: 20px;
}

.login input[type="submit"]:hover {
    cursor: pointer;
    background: whitesmoke;
    color: #000;
    font-weight: bold;
}

.login a {
    text-decoration: none;
    font-size: 14px;
    line-height: 18px;
    color:rgb(243, 239, 31)
}

.login a:hover {
    color: white;
}

/******************************************end of login****************************************************/
 
 #remove{
    list-style-type: none;
 }
 

 /*************************more info************/
 #mid{
    background-color: #fff;
    border-radius: 10px;
 }

 #mid p{
    color:rgb(61, 75, 77);
    text-decoration: solid;
    font-size: 20px;
    text-align: center;
 }

 /************* index bcakground row*****************/
 #background-row{
        background: #fff;
        position: relative;
        padding: 20px 10px;
 }


