@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

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

a {
    color: #80bc00;
}

body {
    background: #fff;
}

.container {
    width: 1200px;
}

.header-wrapper {
    height: 220px;
    background-image: url(header-bg.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.header-wrapper::after {
    content: "";
    background-image: url(header-divider.png);
    background-size: 100% 65px;
    background-position: bottom;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    height: 65px;
    width: 100%;
    z-index: 10;
    pointer-events: none;
    transform: scale(-1, 1);
}

.header {
    display: flex;
    flex-direction: column;
}

.header__top__nav {
    display: flex;
    justify-content: flex-end;
    padding: 5px 1.5rem;
}

.header__top__nav a {
    transition: 0.4s ease-in-out;
    color: rgba(255, 255, 255, 0.75);
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin-left: 15px;
}

.header__top__nav a:hover {
    text-decoration: none;
    opacity: 0.7;
}

.header__main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
}

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

.header__nav {
    font-size: 0;
    border-bottom: 1px solid #335a85;
    padding-bottom: 1.5rem;
}

.header__nav a {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: 0.4s ease-in-out;
    padding-right: 22px;
}

.header__nav a:last-child {
    padding: 10px;
    background-color: #00aeef;
}

.header__nav a:last-child:hover {
    opacity: 1;
    color: #ade2f9;
}

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