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

.t-primary-bgcolor {
	background-color: #1B3A62;
}

a {
	color: #F4A81C;
}

body {
	background-color: #fff;
}

.container {
	width: 1080px;
}

.header {
	width: 100%!important;
}

.header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 74px;
	background-color: #F4F2F2;
}

.logo__container {
	background-color: #1B3A62;
	display: flex;
	align-items: center;
	width: 300px;
	height: 95px!important;
	box-shadow: 2px 2px 8px rgba(0,0,0,.24);
	padding: 0 39px 0 43px;
	margin-bottom: -20px;
	position: relative;
	z-index: 5;
}

.logo__container img {
	max-width: 194px;
}

.header__nav {
	font-size: 0;
	padding-right: 32px;
}

.header__nav a {
	font-size: 14px;
	color: #1b3a62;
	transition: opacity .4s ease-in-out,background-color .4s ease-in-out;
	font-weight: 400;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	margin-left: 22px;
}

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

.header__banner {
	background-image: linear-gradient(130deg,#f4f2f2 15%,rgba(255,255,255,0.61) 100%),url(header-bg.jpg);
    background-color: #1b3a62;
	padding: 78px 0;
    position: relative;
    background-position: 50%;
    background-size: cover;
	border-bottom: 4px solid #F4A81C;
	height: 233px;
	display: flex;
	align-items: center;
	
}

.header__banner h1 {
	font-weight: 600;
    font-style: italic;
    font-size: 36px;
    color: #1b3a62;
	font-family: "Poppins", sans-serif;
}

.main {
	padding: 3rem 21px;
}

.sidebar {
	margin-right: 3rem;
}