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

body {
	background-color: #FFF;
}
.t-primary-bgcolor {
	background-color: #996232;
}

a {
	color: #996232;
}
.header-wrapper {
	background-color: #1a1a1a;
	position: relative;
}
.header__contact {
	display: none;
}
.header {
	padding: 10px 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.container {
	width: 1170px;
}

.header__nav {
	font-size: 0;
}

.header__nav a {
	color: #fff;
    font-family: "Prompt", sans-serif;
    font-weight: 400;
    font-size: 15px;
	text-transform: uppercase;
	margin-left: 40px;
	position: relative;
}

.header__nav a:hover {
	text-decoration: none;
}

.header__nav a::before {
	position: absolute;
    height: 8px;
    width: 8px;
    bottom: -49px;
	left: 50%;
    opacity: 0;
    background: #fff;
    content: "";
    display: block;
    transition: all 0.3s linear;
    transform: rotate(45deg);
}

.header__nav a:hover::before {
	opacity: 1;
}

.header__nav .active::before {
	opacity: 1;
}

.main {
	padding: 40px 25px;
}

.sidebar {
	margin-right: 40px;
}