@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');
.about{
    padding-top: 10px;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    background-image: linear-gradient(to top, #5ccae3, #73e3f2, #8efbff, #b2faff, #d7f9ff, #f3faff, #ffffff);
}
.aHeading{
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    position: relative;
    color: #AD2663;
}
.aHeading::before{
    content: "";
    left: 45%;
    bottom: -20px;
    height: 4px;
    width: 150px;
    background-color: #6C78D2;
    position: absolute;
    margin-bottom:20px ;
}
.aContainer{
    display: flex;
    justify-content: center;
    align-items: center;
}
.aLeft{
    flex: 1;
}
.aLeft div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.aLeft .aImg{
    position: relative;
    width: 400px;
    height: 400px;
    margin-left: 25% ;
    overflow: hidden;
    border-radius:20px;
    background-color: #111;
}
.aLeft .aImg::before{
    content: '';
    position: absolute;
    margin-left: 25% ;
    width: 200px;
    height: 200%;
    background: linear-gradient(#00ccff , #d400d4);
    animation: animate 4s linear infinite;
}
.aLeft .aImg::after{
    content: "";
    position: absolute;
    inset:4px;
    background: linear-gradient(rgba(0,0,0,0.48),rgba(0,0,0,.48)),url(/images/cover.png);
    background-size: cover;
    background-position: center;
    border-radius: 16px;

}
@keyframes animate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(350deg);
    }
}
.aRight{
    flex: 1;
    font-size: 1.2rem;
    margin: 10px 120px;
}

@media screen and (max-width:991px) {
    .aContainer{
        flex-wrap: wrap;
        flex-direction: column;
    }
    .aLeft .aImg{
        width: 600px;
        height: 400px;
        margin-left: 10% ;
        margin: 20px 0px;
    }
    .aLeft .aImg::before{
        margin-left: 10% ;
        width: 300px;
        height: 200%;
    }
    .aRight{
        flex: 1;
        font-size: 1.2rem;
        margin: 10px 60px;
    }
    
}
@media screen and (max-width:650px) {
    .aLeft .aImg{
        width: 400px;
    }
    .aRight{
        font-size: 1rem;
    }
}
@media screen and (max-width:450px) {
    .aLeft .aImg{
        width: 300px;
    }
    .aRight{
        font-size: 0.8rem;
        margin: 10px 20px;
    }
}





.achievement{
    background-color: rgb(240, 245, 250);
    background-blend-mode: screen;
    width: 100%;
    height: auto;
}
.achContainer{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 20px 40px;
}

.achLeft ,.achRight,.achMiddle{
    width: 30%;
    background-color: palevioletred;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 30px 0px;
    border-radius: 25px;
    box-shadow: 8px 8px 4px rgb(116, 10, 103);
}
.achLeft img,
.achRight img,
.achMiddle img{
    margin-top: 30px;
    width: 60%;
    height: 200px;
}
.achLeft h2,
.achRight h2,
.achMiddle h2{
    margin-top: 15px;
    font-size: 30px;
    font-weight: 600;
    color: #ecce22;
}
.achLeft h3,
.achRight h3,
.achMiddle h3{
    margin: 15px 0px;
    font-size: 25px;
    font-weight: 500;
    color: white;
}
.achLeft:hover ,.achMiddle:hover,.achRight:hover{
    margin-top: 20px;
}
.achname{
    font-size: 20px !important;

}
@media screen and (max-width : 800px) {
    .achLeft ,.achRight,.achMiddle{
        width: 100%;
    }
    .achLeft h2,
    .achRight h2,
    .achMiddle h2{
        font-size: 45px;
    }
    .achLeft h3,
    .achRight h3,
    .achMiddle h3{
        font-size: 35px;
    }   
}
@media screen and (max-width : 600px) {

    .achLeft h3,
    .achRight h3,
    .achMiddle h3{
        font-size: 25px;
    }   
    .achLeft h2,
    .achRight h2,
    .achMiddle h2{
        font-size: 30px;
    }
    
}
@media screen and (max-width : 400px) {

    .achLeft h3,
    .achRight h3,
    .achMiddle h3{
        font-size: 20px;
        margin-left: 0px;
    }   
    .achLeft h2,
    .achRight h2,
    .achMiddle h2{
        font-size: 25px;
        margin-left: 0px;
    }
}