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

body {
    background-color: white;
}

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

a {
    color: #004259;
}

.container {
    width: 1200px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 106px;
    padding: 0 21px;
}

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

.header__nav {
    font-size: 0;
    display: flex;
    align-items: center;
}

.header__nav a {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: #004259;
    text-transform: uppercase;
    margin-left: 36px;
}

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

.header__nav a:first-child {
    margin-left: 0;
}

.header__nav a:last-child {
    color: #fff;
    padding: 15px 18px;
    background-color: #004259;
    border-radius: 4px;
    transition: all 0.15s ease-in-out;
    display: flex;
    align-items: center;
    height: 56px;
}

.header__nav a:last-child:hover {
    background-color: #003345;
    color: #d9d9d9 !important;
}

.header__nav a:last-child i {
    font-size: 10px;
    margin-left: 8px;
}

.header-wrapper::after {
    height: 106px;
    content: "";
    display: block;
    background-image: linear-gradient(to bottom, rgba(0, 66, 89, 0.30), rgba(0, 66, 89, 0.30)), url('banner.jpg');
    background-size: cover;
    background-position: center;
}