html {
    height: 100%;
    width: 100%;
}

body {
    margin: 0;
    background-color: peachpuff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

/* ---------------------------------------------AboutSchoolMainImg---------------------------------------------------- */

/* .AboutSchoolMainImg{
    position: relative;
}

.AboutSchoolMainImg img {
    width: 100%;
    height: 86vh;
    object-fit: cover;
    display: block;
}

.ASMITitle{
    position: absolute;
    bottom: 30px;
    left: 200px;
    background-color: red;
}

.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---------------------------------------------------- */


/* ---------------------------------------------AboutSchoolSection1 ---------------------------------------------------- */

.AboutSchoolSection1{
    padding: 50px 200px;
}

.AboutSchoolSection1Main{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* .AboutSchoolSection1Container1{
    width: 400px;
} */

.ASS1C1Img{
    width: 400px;
}

.ASS1C1Img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.AboutSchoolSection1Container2{
    width: 65%;
}

.ASS1C2Titles {
    display: flex;
    flex-direction: column;
    text-align: justify;
    font-size: 22px;
    padding-left: 30px;
}

.ASS1C2TH1 h1 {
    margin-bottom: 0px;
}

@media only screen and (width=1024px) {
    .AboutSchoolSection1{
        padding: 50px 100px;
    }
}

@media (width<1024px) {
    .AboutSchoolSection1{
        padding: 50px;
    }
}

@media (width<=769px) {
    .AboutSchoolSection1{
        padding: 15px;
    }
    .AboutSchoolSection1Main{
        flex-direction: column;
    }
    .AboutSchoolSection1Container1,.AboutSchoolSection1Container2{
        width: 100%;
    }
    .AboutSchoolSection1Container1 {
        display: flex;
        justify-content: center;
    }
    .ASS1C1Img{
        width: 300px;
    }
    .ASS1C1Img img{
        height: 300px;
    }
    .ASS1C2Titles{
        padding: 0px;
    }

}


/* ---------------------------------------------AboutSchoolSection1 ---------------------------------------------------- */

/* ---------------------------------------------AboutSchoolSection2 ---------------------------------------------------- */

.AboutSchoolSection2{
    padding: 50px 200px;
}

.AboutSchoolSection2Main{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* .AboutSchoolSection2Container2{
    width: 400px;
} */

.ASS2C2Img{
    width: 400px;
}

.ASS2C2Img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.AboutSchoolSection2Container1{
    width: 65%;
}

.ASS2C1Titles {
    display: flex;
    font-size: 22px;
    flex-direction: column;
    text-align: justify;
    padding-right: 30px;
}

.ASS2C1TH1 h1{
    margin-bottom: 0px;
}

@media only screen and (width=1024px) {
    .AboutSchoolSection2{
        padding: 50px 100px;
    }
}

@media (width<1024px) {
    .AboutSchoolSection2{
        padding: 50px;
    }
}

@media (width<=769px) {
    .AboutSchoolSection2{
        padding: 25px 15px;
    }
    .AboutSchoolSection2Main{
        flex-direction: column-reverse;
    }
    .AboutSchoolSection2Container1,.AboutSchoolSection2Container2{
        width: 100%;
    }
    .AboutSchoolSection2Container2 {
        display: flex;
        justify-content: center;
    }
    .ASS2C2Img{
        width: 300px;
    }
    .ASS2C2Img img{
        height: 300px;
    }
    .ASS2C1Titles{
        padding: 0px;
    }

}

.AboutSchoolSection1Main,.AboutSchoolSection2Main{
    opacity: 0;
}
.AboutSchoolSection1Main.popitems.active,.AboutSchoolSection2Main.popitems.active{
    animation: 1s identifier linear;
    opacity: 1;
}

@keyframes identifier {
    from{
        opacity: 0;
        transform: translateY(25px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}
/* ---------------------------------------------AboutSchoolSection2 ---------------------------------------------------- */

