html {
    height: 100%;
    width: 100%;
}

body {
    margin: 0;
    background-color: peachpuff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 16px;
    
}

/* ---------------------------------------------AboutSchoolMainImg---------------------------------------------------- */

/* .AboutSchoolMainImg{
    position: relative;
}

.AboutSchoolMainImg img {
    width: 100%;
    height: 86vh;
    object-fit: cover;
    display: block;
}

.ASMITitle{
    position: absolute;
    bottom: 30px;
    left: 200px;
    background-color: peachpuff;
}

.ASMITitle h1{
    padding: 0px 10px;
}

@media (width<1280px) {
    .AboutSchoolMainImg img{
        height: 100%;
    }
}

@media only screen and (width<=1025px) {
    .ASMITitle{
        bottom: 200px;
    }
}

@media (width<769px) {
    .ASMITitle{
        bottom: 100px;
        left: 80px;
    }
    .ASMITitle h1{
        font-size: 20px;
    }
}

@media (width<569px) {
    .ASMITitle{
        bottom: 80px;
        left: 60px;
    }
    .ASMITitle h1{
        font-size: 16px;
    }
}

@media (width<429px) {
    .ASMITitle{
        bottom: 20px;
    }
    .ASMITitle h1{
        font-size: 12px;
    }
} */

/* ---------------------------------------------AboutSchoolMainImg---------------------------------------------------- */

/* ---------------------------------------------AboutPrincipalSection1---------------------------------------------------- */

.AboutPrincipalSection1{
    padding: 50px 200px;
}

.AboutPrincipalSection1Main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.AboutPrincipalSection1Container2 {
    /* width: 400px; */
    border-bottom: 1px solid gray;
}

.APS1C2ImageAndTitles {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.APS1C2IATImg{
    width: 400px;
}

.APS1C2IATImg img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

#AboutPrincipalLine hr{
    margin: 0px;
}

.APS1C3Paras{
    text-align: justify;
}

@media(width<=1024px) {
    .AboutPrincipalSection1{
        padding: 50px 100px;
    }
}

@media (width<=769px) {
    .AboutPrincipalSection1{
        padding: 25px 15px;
    }
    .APS1C2IATImg{
        width: 300px;
    }
    .APS1C2IATImg img{
        height: 300px;
    }
}

.AboutPrincipalSection1Container2,.AboutPrincipalSection1Container3{
    opacity: 0;
}
.AboutPrincipalSection1Container2.popitems.active,.AboutPrincipalSection1Container3.popitems.active{
    animation: 0.75s identifier linear;
    opacity: 1;
}


.ISYC1Iframe{
    padding: 30px;
}

.ISYC1Iframe iframe{
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 15px;
}

@keyframes identifier {
    from{
        opacity: 0;
        transform: translateY(25px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

/* ---------------------------------------------AboutPrincipalSection1---------------------------------------------------- */
