@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

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

a {
    color: #aabcbf;
}

body {
    background-color: #fff;
}

.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header__logo {
    padding: 1.5rem;
}

.header__logo img {
    max-height: 180px;
}

.header__nav {
    background-color: #181818;
    width: 100%;
}

.header__nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.header__nav .container a {
    color: #fff;
    transition: all .4s ease;
    padding: 0 10px;
    font-weight: 100;
    font-family: "Nunito Sans", sans-serif;
}

.header__nav .container a:hover {
    text-decoration: none;
    color: #f1f1f1;
}