*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

header{
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 4;
}

header.sticky{
    position: fixed;
    top: 0;
    width: 100%;
}

#logo{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 20%;
    height: 20vh;
  
}

#logo .text{
    padding-left: 1px;
    color: rgb(131, 48, 131);
    text-align: center;
}

#logo .p1{
    font-size: 1.2em;
    font-weight: bold;
}


#logo .p2{
    font-size: 0.7em;
    font-weight:100;
}

#logo img{
    width: 67px;
}

#student-portal{
    display: flex;
    justify-content: end;
    width: 75%;
    height: 30%;
    margin-right: 3px;
    align-items: center;
}


#student-portal h3{
     text-transform: capitalize;
    font-size: 0.9em;
    color: rgb(131, 48, 131);
    cursor: pointer;
    border-radius: 3px;
    padding: 3px 2px;
    text-align: center;
    transform: 1s ease;
}

#student-portal a{
    border-color: #b15bb1;
}

#student-portal img{background-color: #fff;
    cursor: pointer;
    margin: 0 10px;
    width: 23px;
    filter: invert(0);
    transform: scale(0.9);
    transition: 0.5s;
}

#student-portal img:hover{
    transform: scale(0.9) translateY(-12px);
}

#student-portal h3:hover{
    box-shadow: 0 0 0 1px rgb(131, 48, 131);
}

#school-portal{
    display: none;
}

#school-portal.dropdown{
    display: flex;
    top: 18vh;
    right: 45px;
    position: absolute;
    width: 90%;
    height: calc(95vh - 18vh);
    background-color: rgba(0, 0, 0, 0.96);
    justify-content: center;
    align-items: center;
    border-radius: 0 0 5px 5px;  
    transition: 0.5s;
}



#school-portal li{
    font-size: 1.7em;
    line-height: 2.1em;
    color: #fff;
    text-align: left;
    padding: 0 4px 0 8px;
    list-style: none;
}

#school-portal li:hover{
    box-shadow: 0px 0px 0 1px rgb(255, 255, 255);
    cursor: pointer;
    border-radius: 5px;
}

#landing-page{ 
    position: absolute;
    top: 0;
    width: 100%;
    height: calc(100% );
    background-color: #fff;
    z-index: 0;
    align-items: center;
    justify-content: center;
}




.home-btn{
    transform: scale(0.63);
}

.main-gallery{
    display: grid;
    width: 100%;
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 15%;
    position: absolute;

}

main{
    display: grid;
    width: 100%;
    height: 160vh;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10%;
    position: absolute;
}

.admission-main{
    background-color: #ddd;
    top: 20%;
    height: 100vh;
}

.admission-main h1{
    color: #945994;
    text-align: center;
}

.admission-main h3{
    color: #945994;
    text-align: center;
}

.admission-main .form-data{
    color: #945994;
    margin-bottom: 10px;
    font-size: 0.8em;
    border: none;
    display: flex
    align-items: center;
}

.form-data label{
    margin-right: 3px;
}

.form-data input{
    border-radius: 5px;
    border: none;
    padding: 2px 5px;
    font-size: 0.7em;
    margin: 0;
}


.form-data #text{
    border-radius: 5px;
    border: none;
    width: 100%;
    padding: 2px 5px;
    font-size: 0.7em;
    margin: 0;
    
}

.form-data #radio{
    width: 9px;
}

.about-content{
    box-shadow: 0 0 4px 0 rgba(34, 68, 123, 0.5);
    padding: 60px 40px;
    max-width: 700px;
    max-height: 80%;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
}

.about-content p{
    font-size: 0.75em;
    text-align: justify;
    color: purple;
}

.main-gallery{
    background-color: #111;
}

.gallery-container{
    background-color: #b15bb1;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: inherit;
    position: absolute;
    z-index: 1;
}
.gallery{
    box-sizing: border-box;
    background-color: inherit;
    right: 0;
    width: 90%;
    height: 100%;
    border-radius: 5px;
    overflow: auto;
}

.gallery img{
    width: 23%;
    height: 20%;
    align-self: center;
    border-radius: 10px;
    transition: 1s;
    transform: scale(0.86);
    box-shadow: 0 0 0px 6px rgba(255, 255,255, 0.1);
}

.gallery a{
    text-decoration: none;
}

.gallery img:hover{
    filter: grayscale(100%);
    transform: scale(1);
   
}

/* gallery buttons */

button{
    position: absolute;
    color: #fff;
    background-color: inherit;
}

.next{
    right: 20px;
}

.prev{
    left: 0;
}


footer{background-color: #b15bb1;
    width: 100%;
    min-height: calc(80vh);
    position: absolute;
    top: 150%;
    padding-top: 13px;
    box-sizing: border-box;

}

.admission-footer{
    top: 190%;
}

.footer-gallery{
    top: 135%;
}

.footer-line{
    height: 3%;
}

.footer-logo{
    background-color: #fff;
    width: 100%;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.endorsed{
    width: calc(100% - 80px);
    height: 20vh;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax( 150px, 1fr));
    gap: 2rem;
}

.basic-edu{
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 5px 0 5px 0px;
    align-items: center;
    justify-content: center;
}

.lagos-schoolonline{
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 8px 0;
    align-items: center;
    justify-content: center;
}

#ng-check{
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0px 0px;
    align-items: center;
    justify-content: center;
}


.universal-basic-edu{display: flex;
    width: 3.6em;
   height: 4.2em;
   justify-content: center;

}

.lag-sch-online{
    width: 10em;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
}

.ng-check{display: flex;
    flex-wrap: wrap;
    filter: invert(1);
    width: 8em;
    cursor: pointer;
}

.footer-summary-container{
    max-width: calc(100%);
    height: 90%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 20px 40px;
}

.footer-summary-container ul{
    color: #fff;
    list-style: none;
    line-height: 1.5em;
}

.footer-summary-container h1{
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.footer-summary-container p{
    display: flex;
    position: absolute;
    left: 0;
    padding: 0 5px;
    justify-content: center;
    color: #fff;
    font-size: 1em;
    text-align: center;
    width: 100%;
}

.phone-email{
    display: flex;
    justify-content: space-evenly;
    margin-top: 30px;
    width: 100%;
    position: absolute;
    left: 0;
}

.links-colaborations .links-img{
    position: absolute;
    margin-top: 90px;
    width: 100%;
    display: flex;
    justify-content: center;
    left: 0;
}

.footer-summary-container .developer{
    font-size: 0.6em;
    position: absolute;
    margin-top: 140px;
    background-color: #000;
    width: 100%;
    left: 0;
}

.links-colaborations .email{
    display: flex;
    padding-left: 10px;
    margin-top: 20px;
}

.links-colaborations .email img{
    width: 1.3em;
    height: 1.3em;
    display: flex;
    align-items: center;
}

.links-colaborations .email h6{
    font-size: 0.9em;   
    text-decoration: none;
    color: blue;
}

.links-colaborations .phone{
    display: flex;
    align-items: center;
    position: absolute;
    transform: scale(1);
    padding-left: 10px;
}

.links-colaborations .phone img{
    width: 1em;
    height: 1.2em;
}

.links-colaborations .phone h6{
    font-size: 0.9em;
    font-weight: 100;
}

.links-colaborations{
    padding: 20px 0;
    position: absolute;
    display: flex;
    left: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}

.links-colaborations img{
    filter: invert(1);
    transform:g;
    width: 1.3em;
    margin-right: 12px;
}


.links-colaborations ul li{
    font-size: 0.8em;
}

.footer-summary-container .copyright ul li{
    font-size: 0.9em;
    font-weight: 100;
}

@media(max-width: 610px) {
    #logo{
        width: 70px;
    }

    #logo .p1{
        font-size: 1.1em;
        font-weight: bold;
    }

    #logo .p2{
        font-size: 0.65em;
        font-weight:100;
    }
    

    #student-portal h3{
        font-size: 0.8em;
        font-weight: 100;
    }

    main{
        display: grid;
        width: 100%;
        height: 160vh;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 15%;
        position: absolute;
    }

    .about-content{
        box-shadow: 0 0 4px 0 rgba(34, 68, 123, 0.5);
        padding: 60px 40px;
        max-width: 440px;
        max-height: 80%;
        background-color: #fff;
        display: flex;
        flex-wrap: wrap;
    }

    
}

@media (max-width: 455px) {

    main{
        display: grid;
        width: 100%;
        height: 220vh;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 15%;
        position: absolute;
    }

    .about-content{
        box-shadow: 0 0 4px 0 rgba(34, 68, 123, 0.5);
        padding: 60px 40px;
        max-width: 300px;
        max-height: 80%;
        background-color: #fff;
        display: flex;
        flex-wrap: wrap;
        
    }

    footer{
        background-color: #b15bb1;
        width: 100%;
        min-height: calc(85vh);
        position: absolute;
        top: 230%;
        padding-top: 13px;
    }
    
    .footer-summary-container{
        background-color: #945994;
        width: 100%;
        min-height: calc(85vh);
        position: relative;
        top: 29%;
        padding-top: 13px;
    }
    
    .endorsed{
        width: calc(100% - 20px);
        height: 20vh;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax( 40px, 1fr));
        gap: 1rem;
    
    }
    
    .endorsed img{
        transform: scale(0.98);
    }
    
    .universal-basic-edu{
        width: 2.5em;
    }
    
    .lag-sch-online{
        width: 7em;
       
    }
    
    .ng-check{
        width: 5em;
    }
    
    .footer-summary-container{
        width: 100%;
        height: 40vh;
        position: absolute;
        display: flex;
        padding: 20px 20px;
    }
    
    .links-colaborations{
        max-width: 100%;
        min-height: 41vh;
    }

    .phone-email{
        display: flex;
        justify-content: space-evenly;
        margin-top: 60px;
        width: 100%;
        position: absolute;
        left: 0;
    }

    .links-colaborations .links-img{
        position: absolute;
        margin-top: 120px;
        width: 100%;
        display: flex;
        justify-content: center;
        left: 0;
    }
    


}



