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

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

a {
	color: #7AC142;
}

body {
	background-color: #fff;
}

.container {
	width: 1140px;
}

.header-wrapper {
	box-shadow: 0 1px 0 rgba(0,0,0,0.08);
	position: relative;
	z-index: 10;
}

.header {
	width: 100%;
	font-family: "Lato", sans-serif;
	font-weight: 700;
}

.header__top {
	background-color: #012D6B;
}

.header__top .container {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__top .container span {
	color: #fff;
	font-size: 16px
}

.socials {
	font-size: 0;
}

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

.socials a:hover {
	text-decoration: none;
	opacity: 0.8;
}

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

.header__nav a {
	text-transform: uppercase;
	font-size: 26px;
	color: #012d68;
	padding: 0 20px;
	transition: 0.3s all;
}

.header__nav a:last-child {
	padding-right: 0;
}

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

.main {
	padding: 3rem 15px;
}

.sidebar {
	margin-right: 3rem;
}