@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

body {
	background-color: white;
}

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

a {
	color: #725b54;
}

.wrapper {
	padding: 0 24px;
}

.container {
	padding: 0;
}

.header {
	margin: 56px auto 32px;
	border-bottom: 1px solid rgba(128, 103, 95, 0.25);
}

.logo__wrapper {
	height: 179px;
	display: flex;
	align-items: center;
	width: fit-content;
	margin: 0 auto;
}

.header__logo {
	width: 374.4px;
}

.header__nav {
	display: flex;
	padding: 18px 0 42px;
	width: fit-content;
	margin: 0 auto;
}

.header__nav a {
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	padding: 6px;
	margin: 0 10px;
	line-height: 24px;
	color: #151515;
	position: relative;
	letter-spacing: 2.996px;
	text-decoration: none;
}

.header__nav a::after {
	content: '';
	height: 1px;
	background-color: rgb(128, 103, 95);
	width: 0;
	left: 6px;
	bottom: 1px;
	position: absolute;
	transition: 300ms ease-in-out;
}

.header__nav a:hover::after {
	width: calc(100% - 15px);
}