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

body {
	background-color: #fff;
}

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

a {
	color: #5b0b0c;
}

.header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 10px 50px -2px rgb(0 0 0 / 14%);
	margin-bottom: 30px;
	padding: 5px 55px;
}

.header__contact {
	display: none;
}

.header__nav {
	font-size: 0;
	margin-top: 12px;
}

.header__nav a {
	display: inline-block;
	font-size: 25px;
    color: #222;
	font-weight: 600;
	font-family: "Barlow Condensed", sans-serif;
	letter-spacing: 1px;
	margin-right: 28px;
	border-bottom: 2px solid transparent;
	padding-bottom: 10px;
}

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

.header__nav a:hover {
	text-decoration: none;
    color: #5b0b0c;
    border-bottom: 2px solid #5b0b0c;
}

#header > nav > a:nth-child(3) {
	color: #5b0b0c;
	border-bottom: 2px solid #5b0b0c;
}

.main {
	width: 1170px;
}

.sidebar {
	margin-right: 51px;
}

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