/* HERO */
.hero{
    height:45vh;
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('../images/icf.png') center/cover;
    display:flex;
    align-items:center;
    color:white;
    margin-top:70px;
}

.hero h1{
    font-size:48px;
}

/* SECTION */
.section{
    padding:80px 0;
}

h2{
    color:var(--primary);
    margin-bottom:20px;
}

.grid{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
}

.under-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}
.card{
    background:#f8f9fb;
    padding:25px;
    border-radius:10px;
}

.img-c{
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: block;
}

.capacity-table{
    width:100%;
    max-width:700px;
    border-collapse:collapse;
}

.capacity-table td{
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.capacity-table td:last-child{
    text-align:right;
    font-weight:700;
    white-space:nowrap;
}