@charset "UTF-8";

.home .bar {
    background-color: #f8f8f8;
    padding: clamp(80px, 8.333vw, 160px) 0 clamp(40px, 4.167vw, 80px);
    position: relative;
    display: block;
    clear: both;
    z-index: 0;
    background-position: center;
}

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

.bar h1 {
    /* position: relative; */
    font-family: 'Lexend', sans-serif;
    font-size: clamp(22px, 1.25vw, 24px);
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 32px;
    color: #2A2722;
    text-transform: none;
    margin-bottom: 20px;
}

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

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

.bar a {
    color: #2A2722;
}

.sub-nav {
    margin: 0 auto;
    font-size: 0;
    width: 100%;
    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: #40748D;
}

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