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;
    margin-left: 200px;
    background-color: red;
}

.ASMITitle h1{
    padding: 0px 10px;
}

@media (width<1280px) {
    .AboutSchoolMainImg img{
        height: 100%;
    }
} */

/* ---------------------------------------------AboutSchoolMainImg---------------------------------------------------- */

/* ---------------------------------------------AboutManagementSection1---------------------------------------------------- */

.AboutManagementSection1{
    padding: 50px 200px;
}

.AboutManagementSection1Main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.AboutManagementSection1Container1 {
    border-bottom: 1px solid gray;
}

.AMS1C1ImageAndTitles {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.AMS1C1IATImg{
    width: 400px;
}

.AMS1C1IATImg img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

#AboutManagementLine hr{
    margin: 0px;
}

.AMS1C2Paras{
    text-align: justify;
}

@media (width<=1024px) {
    .AboutManagementSection1{
        padding: 50px 100px;
    }
}

@media (width<=769px) {
    .AboutManagementSection1{
        padding: 25px 15px;
    }
    .AMS1C1IATImg{
        width: 300px;
    }
    .AMS1C1IATImg img{
        height: 300px;
    }
}

.AboutManagementSection1Container1,.AboutManagementSection1Container2{
    opacity: 0;
}
.AboutManagementSection1Container1.popitems.active,.AboutManagementSection1Container2.popitems.active{
    animation: 0.75s identifier linear;
    opacity: 1;
}

@keyframes identifier {
    from{
        opacity: 0;
        transform: translateY(25px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

/* ---------------------------------------------AboutManagementSection1---------------------------------------------------- */
