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

body {
    background-color: #142249;
}

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

a {
    color: #142249;
}

.main-wrapper {
    background-color: transparent;
    border: 4px solid white;
    width: fit-content;
    margin: 60px auto 0;
}

.main {
    background-color: white;
    margin: 12px;
}

.header {
    width: 100%;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    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;
}