@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

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

a {
    color: #007bbb;
}

body {
    background-color: #f7f7f7;
}

.container {
    width: 1200px;
}

.header {
    padding: 32px;
    background: linear-gradient(90deg, #ffefce 0, #c3e9f7);
}

.header__inner {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, .125);
}


.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #011d41;
    padding: 11px 39px;
    height: 70px;
}

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

.header__nav {
    font-size: 0;
    padding-right: 30px;
    display: flex;
    flex-wrap: wrap;
}

.header__nav a {
    font-family: auatro, Helvetica, Arial, sans-serif;
    color: #011d41;
    font-size: 16px;
    font-weight: 700;
    margin-left: 30px;
    padding: 10px 0;
}

.header__nav a:hover {
    text-decoration: none;
}