@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

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

a {
	color: #13A5E5;
}

body {
	background-color:  #fff;
}

.header-wrapper {
	background-color: #fff;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 122px;
	width: 1376px;
}

.header-left,
.header-right {
	font-size: 0;
	width: 44%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-left a,
.header-right a {
	padding: 9px 12px;
	color: #2a5672;
	font-size: 18px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	letter-spacing: 2.7px;
	text-align: center;
}

.header a:hover {
	background-color: #EDEDED;
	text-decoration: none;
	color: #0992d1;
}

.header__logo img {
	max-height: 62px;
}

.main-wrapper {
	background: url(body-bg.svg);
	background-repeat: no-repeat;
}

.main {
	padding: 3rem;
	width: 1200px;
}

.sidebar {
	margin-right: 3rem;
}

@media screen and (max-width: 1130px) {
	.header-left,
	.header-right {
		display: none;
	}

	.header {
		padding-left: 32px;
	}
}