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

body {
	background-color: white;
}

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

.container {
	width: 1170px;
}

a {
	color: #07305a;
}

.header__logo {
	max-height: 100px;
}

.header-wrapper {
	box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.5);
	margin-bottom: 10px;
}

.header {
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.main {
	padding: 42px;
}

.header__nav div {
	display: flex;
	justify-content: right;
}

.header__nav a {
	font-size: 18px;
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
	line-height: 26.4px;
	margin: 7px 18px;
	color: black;
	font-weight: 400;
	text-decoration: none;
}

.header__nav a.active {
	font-weight: 700;
	border-color: black;
}

.header__nav a:hover {
	color: #6b2760;
	border-color: #6b2760;
}

.sidebar {
	margin-right: 52px;
}

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