@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap');

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

a {
	color: #264D89;
}

body {
	background-color: #fff;
	min-height: 100vh;
}

.header {
	width: 100%;
	padding: 8px 0;
	width: 100%;
	box-shadow: 0 3px 10px 0 rgb(0 0 0 / 25%);
}

.header__inner {
	display: flex;
	width: 1300px;
	align-items: center;
	justify-content: space-between;
	margin: auto;
	max-width: 100%;
}

.header-wrapper {
	margin-bottom: 20px;
}

.header-wrapper::after {
	display: block;
	content: "";
	height: 150px;
	background-image: url(header_bg.jpg);
	background-size: cover;
	background-position: center;
}

.header__logo img {
	max-width: 390px;
}

.header__nav {
    font-family: "Open Sans", sans-serif;
    font-size: 0;
}

.header__nav a {
    font-size: 18px;
    padding: 47px 25px;
    color: #5B5E61;
    transition: all .3s ease;
}

.header__nav a:hover {
	text-decoration: none;
	color: #fff;
	background-color: #264D89;
}

.main {
	padding: 1.5em 0;
	width: 1000px;
}

.sidebar {
	margin-right: 41px;
}

.footer-wrapper {
	min-height: 140px;
	background-color: #182944;
	margin-top: 50px;
}

@media screen and (max-width: 1224px) {
    .header__nav {
        display: none;
    }
}