@import url("/templates/global.css");
@font-face {
    font-family: Nunito;
    src: url('nunito.woff2');
}

body {
    background-color: #FFF;
}

.t-primary-bgcolor {
    background-color: #142249;
}

a {
    color: #142249;
}

.header-wrapper {
    background-color: #222;
}

.header {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__logo {
    width: 169.3px;
}

.header__nav {
    display: flex;
}

.header__nav a {
    font-family: Nunito, sans-serif;
    line-height: 36px;
    font-size: 16px;
    margin: 0 12px;
    color: white;
    position: relative;
    text-decoration: none;
    letter-spacing: -0.15px;
}

.header__nav a::after {
    transition: all 166ms ease-in-out;
    position: absolute;
    bottom: -1px;
    left: 50%;
    height: 2px;
    content: '';
    width: 0;
    background-color: white;
}

.header__nav a:hover::after {
    width: 100%;
    left: 0;
}