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

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

a {
	color: #ee9445;
}

body {
	background-color: white;
}

.main {
	margin-top: 70px;
	width: 1130px;
	padding: 15px;
}

.header {
	width: 100%;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
}

.header__logo {
	width: 90px;
	height: 90px;
}

.header__nav {
	display: flex;
	padding-right: 25px;
}

.header__nav a {
	line-height: 79px;
	padding: 0 24px;
	color: #333333;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	letter-spacing: .78px;
	position: relative;
	text-decoration: none;
}

.header__nav a::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 1px;
	background-color: white;
	bottom: 30px;
	left: calc(50% - 10px);
	transition: all .2s;
}

.header__nav a:hover::after,
.header__nav a.active::after {
	bottom: 35.5px;
	background-color: #333333;
}

@media (max-width: 1200px) {
	.main {
		width: 980px;
	}
}