section.hero-subpage {
    position: relative;
    display: flex;
    text-align: center;
    min-height: 21.5rem;
    align-items: center;
    justify-content: center;
}
section.hero-subpage h1{
    color: var(--color-primary);
}

/* Responsive */
@media only screen and (max-width: 1200px) {
    section.hero-subpage {
    text-align: left;
    align-items: center;
    justify-content: left;
    }
}

@media only screen and (max-width: 991px) {
    section.hero-subpage {
    min-height: 16.8rem;
    }
}