/* --------------------------------- */
/*          General Styling          */
/* --------------------------------- */
.columnhero h1 {
    font-family: 'satoshi', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}
.columnhero h1::before {
    content: '';
    display: inline-block;
    width: 45px;
    height: 2px;
    position: relative;
    margin-right: 10px;
    background-color: #003232;
}
.columnhero .large-title {
    margin-top: -0.17em;
    margin-bottom: -0.26em;
}

/* ------------------------------------ */
/*          Responsive Styling          */
/* ------------------------------------ */
@media screen and (max-width: 1100px) {
    .columnhero {
        display: flex;
        flex-flow: column;
    }
    .columnhero p {
        text-align: center;
    }
    .columnhero a {
        margin: 20px auto 0px auto;
    }
    .columnhero .right-column h1 {
        display: none;
    }
    .columnhero .left-column, .columnhero .right-column {
        display: flex;
        flex-flow: column;
        justify-content: center;
    }
    .columnhero .left-column {
        text-align: end;
        margin-bottom: 20px;
    }
    .columnhero .large-title {
        text-align: center;
    }
    .columnhero h1 {
        text-align: center;
        margin: 0px auto 20px auto;
    }
    .columnhero h1::after {
        content: '';
        display: inline-block;
        width: 45px;
        height: 2px;
        position: relative;
        margin-left: 10px;
        background-color: #003232;
    }
}
@media screen and (min-width: 1100px) {
    .columnhero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .columnhero a {
        margin-top: 20px;
    }
    .columnhero .left-column h1 {
        display: none;
    }
    .columnhero .left-column, .columnhero .right-column {
        display: flex;
        flex-flow: column;
        justify-content: center;
    }
    .columnhero .left-column {
        text-align: end;
    }
    .columnhero .large-title {
        text-align: end;
    }
    .columnhero h1 {
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 850px) {
    .columnhero h1 {
        font-size: 16px;
    }
    .columnhero h1::before {
        bottom: 4px;
    }
    .columnhero h1::after {
        bottom: 4px;
    }
}
@media screen and (min-width: 850px) {
    .columnhero h1 {
        font-size: 18px;
    }
    .columnhero h1::before {
        bottom: 6px;
    }
    .columnhero h1::after {
        bottom: 6px;
    }
}