@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url("https://use.typekit.net/zhn3mkt.css");

body {
	background-image: url('body_bg.png');
	background-attachment: fixed;
	background-size: cover;
	background-position: top center;
}

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

a {
	color: #ae5c2e;
}

.header {
	width: 100%;
	background-color: white;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.main {
	margin: 70px auto 20px;
	width: calc(100% - 9.88vw);
	position: relative;
	max-width: 1200px;
	min-width: 970px;
}

.main::before {
	display: block;
	content: '';
	width: 100%;
	position: absolute;
	top: -6px;
	height: 3px;
	left: 0%;
	background-color: #00b3c1;
}

.logo__wrapper {
	height: 155px;
	display: flex;
	align-items: center;
	padding: 0 30px;
}

.header__logo {
	max-width: 30vw;
}

.header__nav {
	display: flex;
}

.header__nav a {
	line-height: 65px;
	font-size: 20px;
	font-family: 'Muli', sans-serif;
	margin: 0 15px;
	color: black;
	font-weight: 600;
	text-decoration: none;
	position: relative;
}

.header__nav a::after {
	content: '';
	position: absolute;
	bottom: 18px;
	width: 0;
	left: 50%;
	height: 5px;
	background-color: #ae5c2e;
	transition: all 300ms linear;
}

.header__nav a:hover::after {
	width: 100%;
	left: 0;
}

@media (max-width: 1239.9px) {
	.main {
		width: calc(100% - 80px);
	}
}