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

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

a {
	color: #000C56;
}

body {
	background-color: #fff;
}

.header {
	width: 1800px;
	max-width: 100%;
    display: flex;
    justify-content: space-between;
    height: 183px;
	padding: 0 10px;
}

.header-wrapper {
	background-image: url(header__bg.png);
    background-repeat: repeat-x;
}

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

.header__logo img {
	max-width: 121px;
	margin-top: 10px;
}

.socials {
	text-align: right;
	font-size: 0;
	margin-top: 15px;
}

.socials a {
	color: #fff;
	font-size: 26px;
	margin-left: 20px;
}

.socials a:hover {
	text-decoration: none;
	color: #b69f70;
}

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

.header__nav a {
	color: #fff;
	font-size: 16px;
	padding-left: 25px;
}

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

.main {
	width: 1100px;
	padding: 2rem;
}

.sidebar {
	margin-right: 2rem;
}

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