@charset "UTF-8";

.home .bar {
    background-color: #f8f8f8;
    padding: clamp(13px, 1.354vw, 26px) 0 0;
    position: relative;
    display: block;
    clear: both;
    z-index: 2;
    background-position: center;
}

.bar .container {
    position: relative;
    text-align: center;
    /* width: 100%; */
    z-index: 9;
}

.bar h1 {
    /* position: relative; */
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 1.354vw, 26px);
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    line-height: clamp(28px, 1.667vw, 32px);
    color: #303030;
    text-transform: none;
    margin-bottom: 28px;
}

.bar h1:after {
    content: '';
    display: block;
    width: 60px;
    border: 2px solid #303030;
    margin: 8px auto 28px;
}

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

.bar a {
    color: #303030;
}

.sub-nav {
    margin: -12px auto 0;
    width: 95%;
    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: #FF7D2E;
}

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

    .home .bar {
        padding: clamp(30px, 3.125vw, 60px) 0;
    }
}

@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;
    }
}