/* --------------------------------- */
/*          General Styling          */
/* --------------------------------- */
.hero-regular h2 {
    text-align: center;
    hyphens: manual;
}
.hero-regular h1 {
    font-family: 'satoshi', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}
.hero-regular h1::before {
    content: '';
    display: inline-block;
    width: 45px;
    height: 2px;
    position: relative;
    margin-right: 10px;
    background-color: #003232;
}
.hero-regular h1::after {
    content: '';
    display: inline-block;
    width: 45px;
    height: 2px;
    position: relative;
    margin-left: 10px;
    background-color: #003232;
}
.hero-regular .sub-hero > p {
    text-align: center;
}
.hero-regular .ctas {
    display: flex;
}
.hero-regular .sub-hero {
    margin: 10px 0px 20px 0px;
}
/* ------------------------------------ */
/*          Responsive Styling          */
/* ------------------------------------ */
@media screen and (max-width: 480px) {
    .hero-regular .ctas {
        flex-flow: column;
        align-items: center;
        gap: 10px;
    }
}
@media screen and (min-width: 480px) {
    .hero-regular .ctas {
        flex-flow: row;
        justify-content: center;
        gap: 30px;
    }
}
@media screen and (max-width: 850px) {
    .hero-regular h1 {
        font-size: 16px;
    }
    .hero-regular h1::before {
        bottom: 4px;
    }
    .hero-regular h1::after {
        bottom: 4px;
    }
}
@media screen and (min-width: 850px) {
    .hero-regular h1 {
        font-size: 18px;
    }
    .hero-regular h1::before {
        bottom: 6px;
    }
    .hero-regular h1::after {
        bottom: 6px;
    }
    .hero-regular .sub-hero > p {
        max-width: 611px;
        margin: auto;
    }
    .hero-regular h2 {
        max-width: 1060px;
        margin: 0px auto 0px auto;
    }
}