html{
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}
.facilities_main{
    padding-top: 1rem;
}
heading > *{
    text-align: center;
}
.facilities_mini_card_wrapper{
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1rem auto;
    gap: 1rem;
    padding: 1rem;
}
.facilities_mini_card{
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 1rem;
    padding: 1rem;
    gap: 1rem;
    text-align: center;
    background-color: var(--primary);
}
.facilities_mini_card i{
    font-size: 50px;
}
.facilities_mini_card span{
    font-weight: bold;
    font-size: 1.2rem;
}
.facilities_details_wrapper{
    margin: 1rem auto;
    max-width: 1200px;
}
.facilities_details_card{
    background-color: var(--blue-30);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    line-height: 1.5;
    text-align: justify;
    margin: 1rem;
}
.facilities_details_card:nth-child(2n){
    background-color: var(--red-30);
}
.facilities_details_card:nth-child(3n){
    background-color: var(--green-30);
}
.facilities_details_card:nth-child(4n){
    background-color: var(--yellow-30);
}
.facilities_details_card>*{
    min-width: 300px;
    width: 50%;
}
.facilities_details_card heading{
    margin: 1rem;
}
.facilities_details_card_desc{
    padding: 0rem 2rem 2rem;
}