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

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

a {
	color: #9D2235;
}

body {
	background-color: #fff;
}

.container {
	width: 1140px;
}

.header-wrapper {
	background-color: #9D2235;
}

.header {
	width: 100%;
}

.header__main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 150px;
}

.socials {
	display: flex;
	align-items: center;
}

.socials a {
	color: #9D2235;
	background-color: #FFC72C;
	text-align: center;
    width: 44px;
    height: 44px;
    line-height: 44px;
	border-radius: 50%;
	font-size: 26px;
	margin-left: 20px;
}

.socials a:hover {
	background-color: #f8b600;
}

.header__nav {
	background-color: #FFC72C;
}

.header__nav .container {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.header__nav .container a {
    height: 60px;
    line-height: 60px;
    padding: 0 12px;
    background-color: #FFC72C;
    font-family: 'Arvo', serif;
    font-size: 14px;
    font-weight: 700;
    color: #9D2235;
    text-transform: uppercase;
    text-decoration: none;
}

.header__nav .container a:hover {
	background-color: #ffbf0d;
}

.main {
	padding: 2rem 15px;
}

.sidebar {
	margin-right: 2rem;
}