@charset "UTF-8";

.home .bar {
    background-color: #006a7d;
    padding: clamp( 22px, 2.344vw, 45px ) 0px;
    position: relative;
    display: block;
    clear: both;
    z-index: 2;
}

.bar .container {
    position: relative;
    /* padding: clamp( 30px, 2.969vw, 57px ) 0; */
    text-align: center;
    /* margin-top: -50px; */
    z-index: 9;
}

.bar h1 {
    /* position: relative; */
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp( 26px, 1.458vw, 28px );
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: clamp( 28px, 1.875vw, 34px );
    color: #F8F8F8;
    text-transform: none;
    margin-bottom: 16px;
}

.bar h1:after {
    content: '';
    display: none;
    width: 76px;
    border: 2px solid #d3dfe1;
    margin: 24px auto;
}

.sub-nav li {
    text-transform: unset;
    color: #F8F8F8;
    font-size: clamp( 12px, .833vw, 16px );
    font-weight: 400;
    padding: 4px clamp(35px, 2.604vw, 50px );
    font-style: normal;
    letter-spacing: normal;
    line-height: clamp( 16px, 1.25vw, 24px );
}

.bar a {
    color: #E4E4E4;
}

.sub-nav {
    margin: 0 auto;
    font-size: 0;
    width: 65%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.sub-nav li:before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free', fantasy;
    margin-right: 10px;
    font-weight: 900;
    color: #E4E4E4;
}

@media ( max-width: 1024px ) {
    .bar .container {
        width: 90%;
    }
}

@media ( max-width: 479px ) {
    .bar .container {
        margin-top: 0;
        width: 100%;
        text-align: center;
        padding: 32px;
    }

    .sub-nav {
        margin: 0;
        padding-left: 0;
        width: 100%;
        float: left;
        display: block;
    }

    .sub-nav li {
        padding: 10px 0;
        font-size: 16px;
        line-height: 22px;
    }
}