@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700&display=swap');

.t-primary-bgcolor {
    background-color: #2B4E8A;
}
a {
	color: #00529b;
}
body {
    background-color: #fff;
}
.container {
    width: 1200px;
}
.main {
    margin-top: 40px;
}
.header {
    width: 100%;
    padding: 16px 5%;
}

.header__main {
    margin: 0 -15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    max-width: 30%;
    padding: 0 15px;
}

.header__logo img {
    max-width: 100%;
}

.header-wrapper {
    background-color: white;
}
.header-wrapper::after {
    display: block;
    content: "";
    height: 150px;
    background-image: linear-gradient(to bottom, rgba(2, 73, 120, 0.5), rgba(2, 73, 120, 0.5)), url('body_bg.png');
    background-size: cover;
    background-position: right top;
    background-attachment: fixed;
}
.header__nav {
    font-family: "Nunito", sans-serif;
    display: flex;
}
.header__nav a {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 13.6px;
    line-height: 22.4px;
}

.header__nav a:not(:last-of-type) {
    margin-right: 20px;
}

.header__nav a:hover {
    text-decoration: none;
    color: #2BB6F6;
}
.header-separator {
    position: absolute;
    width: 100%;
    max-width: 100%;
    bottom: -151px;
    overflow: hidden;
    z-index: 45;
    padding: 0;
    margin: 0 -5%;
}
.header-separator svg {
    height: 90px!important;
    display: block;
    width: calc(100% + 1.3px);
}
.header-separator-reverse {
    transform: rotate(180deg);
}
.sidebar {
    margin-right: 40px;
}