  *{
    margin: 0;
    padding: 0;

}
body{
    font-family: poppins;
}
section{
    position: relative;
    overflow: hidden;

}
.heading-container{
    display: flex;
    align-items: center;
    justify-content: space-around;


}
img{
    width: 35%;

}


.ok{
    display: block;
}
.heading{
    display: flex;
    justify-content: center;
}
.heading h1{
    font-size: 50px;
    text-transform: uppercase;
}
.heading-text{
    display: flex;
    justify-content: center;

}
.button{
    display: flex;
    justify-content: center;
}
.info{
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

.info div{
    display: block;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}
.info div div{
    display: flex;
    justify-content: center;
}
.info div:hover{
    color: #780000;
}
.why{
    display: flex;
    align-items: center;

}
.why div{
    display: block;
    align-items: center;
    font-size: 40px;
}
.why div p{
    font-size: 20px;
}
.faculty{
    display: block;

}
.fac-div{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-left: 50px;
}
.faculty-heading{
    font-size: 40px

}
.faculty-text{
    font-size: 20px;
}
.courses-img img{
    width: 80%;
}
.benchmark-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
    gap: 16px;
    /*box-shadow: 10px 8px 0px #780000;*/
    /*border-style: outset;*/
    /*border-color: #780000;*/
    /*border-radius:15px;*/
}
@media (max-width: 600px) {
    .benchmark-row {
        grid-template-columns: 1fr;
    }
}
.benchmark-row h1{
    font-size: 30px;
    font-weight: 600;
}
.benchmark-row h5{
    font-size: 17px;
    margin-left: 37px;

}
.benchmark-col p{
    font-size: 14px;
    margin-left: 37px;
    text-align: justify;

}
.benchmark-head{
    display: flex;
    align-items: center;
}
.benchmark-head i{
    font-size: 40px;
    margin-right: 10px;
    color: #780000;
}
.benchmark-col{
    margin: 5px;
    width: 75%;
}
.testimonials{

    justify-content: center;
}
.testimonials-row{
    display: flex;
    justify-content: center;
    max-width: 100%;
    min-width: 350px;

}
.card {
    border-radius: 30px;
    box-shadow: 10px 8px 0px #780000;
    transition: all 300ms ease-out;
    overflow: hidden;
    padding: 20px;
    border-style: outset;
    border-color:#780000;
}
.card:hover {
    color: #780000;
    cursor: pointer;
    transform: scale(1.02);
    background-color: transparent;
}
.card-image img{
    display: flex;
    justify-content: center;
    width: 100px;
    height: auto;
    border-radius: 50px;
    margin: 20px auto 10px auto;
    filter: grayscale(100%);
}
.card-content{
    display: block;
    justify-content: center;
}
.card-name{
    display: flex;
    justify-content: center;
}
.card-position{
    display: flex;
    justify-content: center;
}
.quote{
    display: flex;
    justify-content: center;
    text-align: center;

}
.quote p{
    font-size: 15px;
}
.button{
    margin-bottom: 40px;
    margin-top: 40px;
}
.round-red-button{
    width: 150px;
    height: 60px;
    border-radius: 45px;
    transition: all 0.6s;
    cursor: pointer;
    background: #780000;
    font-size: 20px;
    font-weight: 550;
    color:white;
}
.round-red-button:hover{
    background: #a50c16;
    color: rgb(255, 255, 255);
    font-size: 22px;
}


