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

.t-primary-bgcolor {
	background-color: #5B6771;
}

a {
	color: #7FBE41;
}

body {
	background-color: #E2E5E8;
	padding: 60px;
}

.container {
	width: 1200px;
}

.header {
	font-family: "Hind Vadodara", sans-serif;
	font-weight: 500;
	background-color: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,.06);
}

.header__main {
	padding: 0 45px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 140px;
}

.header__logo {
	max-height: 90px;
}

.header__nav {
	font-size: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.header__nav a {
    color: #666a71;
	font-size: 18px;
	padding: 0 20px;
}

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

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

.banner-image {
	height: 140px;
	display: block;
	content: "";
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('banner.jpg');
	background-size: cover;
	background-position: center;
}

.main {
	box-shadow: 0 0 15px rgba(0,0,0,.06);
	padding: 45px;
}

.sidebar {
	margin-right: 45px;
}

@media screen and (max-width: 1152px) {
	.header__nav a:last-child {
		padding-right: 20px;
	}
}