.facilities > h2 {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 20px auto clamp(38px, 5vw, 64px);
    padding-bottom: 18px;
    color: var(--brand-900, #17346f);
    font-size: clamp(28px, 5vw, 34px);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -0.045em;
    text-align: center;
    text-wrap: balance;
}



.facilities > h2::after {
    content: "";
    position: absolute;
    right: 18%;
    bottom: 0;
    left: 18%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--accent, #20a7a0),
        var(--brand-600, #3c69c7)
    );
    border-radius: 999px;
    box-shadow: 0 5px 14px rgba(47, 87, 173, 0.2);
}

.fac_info{
    display: flex;
    flex-direction: row;
    width: 80%;
    margin-left: 10%;
    gap: 20px;
}
.fac_info div{
    width: 100%;
}
.fac_info div div{
    border-left: 8px solid #3c489e;
    border-top: 1px solid #3c489e;
    border-bottom: 1px solid #3c489e;
    height: 300px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
}
.fac_info div h3{
    padding: 10px 10px;
    text-align: center;
}
.facimg{
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    width: 80%;
    margin-left: 15%;
    margin-top: 2%;
    padding: 1%;
}
.facimg img{
    border-radius: 20px;
    box-shadow: 0px 5px 10px #17346f;
}
.facimg img:hover{
    transform: scale(1.1);
    transition: 0.5s;
    border-radius: 0;
}
@media (max-width: 780px) {
    .fac_info{
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-left: 10%;
    gap: 20px;
}
.facimg{
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-wrap: wrap;
    width: 80%;
    margin-left: 10%;
    margin-top: 2%;
    padding: 1%;
}
}