.locations {
    list-style: none;
    width: 100%;
    display: block;
    text-align: center;
}

.locations li {
    display: inline-block;
    padding: 0 10px;
    border-right: 1px solid #000;
    line-height: 1em;
    font-size: .9em;
    position: relative;
    margin: 5px 0;
}

.tooltip .top {
    width: max-content;
    top: -20px;
    transform: translate(-50%, -100%);
    padding: 15px;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    border-radius: 8px;
    z-index: 99999999;
    box-sizing: border-box;
    display: none;
}

.tooltip .top, 
.tooltip .top i::after {
    position: absolute;
    left: 50%;
    background-color: #5d8488;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}

.tooltip .top p{
    margin: 0 !important;
}

.tooltip:hover {
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.tooltip:hover .top {
    display: block;
    text-decoration: none;
}

.hide_on_mobile{
    display: block !important;
}

.show_on_mobile{
    display: none !important;
}

@media screen and (min-width: 1921px){
    #hero{
        min-height: 850px !important;
    }

    #hero2{
        min-height: 650px !important;
    }
}

@media screen and (max-width: 768px){
    .locations {
        padding-left: 0;
    }

    .locations li {
        display: block;
        padding: 0.5rem 0;
        border-right: none;
        line-height: 1em;
        font-size: .9em;
        position: relative;
    }

    .show_on_mobile{
        display: flex !important;
    }

    .hide_on_mobile{
        display: none !important;
    }

    h1.header_text,
    h2.header_text,
    h3.header_text{
        font-size: 2em !important;
    }
}

