:root {
    --turquoise: #0B5B67;
    --turquoise-dark: #062e32;
    --dark: #231f20;
}

.custom-container__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.custom-container__wrapper--column {
    flex-direction: column;
}

.custom-container {
    width: 100%;
    max-width: 1800px;
    padding: 80px 60px;
    margin: 0 auto;
}

.custom-container--remove-btm-padding {
    padding-bottom: 0;
}

.custom-container--remove-top-padding {
    padding-top: 0;
}

.custom-container--md {
    max-width: 1600px;
}

.custom-container--sm {
    max-width: 1000px;
}



#main-footer {
    position: relative;
}

.custom-button {
    background: var(--turquoise);
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.custom-button--smaller {
    padding: 10px 30px;
    font-size: 16px;
}

.custom-button--darker {
    background: var(--turquoise-dark);
    color: white;
}

.custom-button--darkest {
    background: var(--dark);
}

.custom-button--teal {
    background: var(--teal);
    color: var(--turquoise-dark);
}

@media screen and (max-width: 1200px) {
    .custom-button {
        padding: 12px 30px;
        font-size: 14px;
    }

}



sup {
    bottom: .4em;
}

@media screen and (max-width: 800px) {
    .custom-container {
        padding: 40px 20px;
    }

    .hide-on-mobile {
        display: none;
    }
}