@charset "UTF-8";

.home .bar {
    background: linear-gradient(180deg, #F8F8F800 0%, #F8F8F880 25%, #F8F8F8BF 49%, #F8F8F8 75%, #F8F8F8 100%);
    padding: clamp(60px, 6.25vw, 120px) 0 clamp(48px, 5vw, 96px);
    position: relative;
    display: block;
    clear: both;
    z-index: 2;
    background-image: url('/wp-content/uploads/2024/08/Differentiator-Bar-Background.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

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

.bar h1:after {
    content: '';
    display: block;
    width: 60px;
    border: 2px solid #27587D;
    margin: 24px auto;
}

.sub-nav li {
    text-transform: unset;
    color: #303030;
    font-size: clamp(16px, 0.938vw, 18px);
    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: 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: #27587D;
}

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