:root {
	--max-width-screen: 1080px;
	--red-clr: #961c33;
}

html {
	font-size: clamp(0.6rem, 0.7672rem + 0.3448vw, 1rem);
}

.header {
	height: 100px;
	display: flex;
	justify-content: center;
	position: absolute;
	width: 100%;
}

.header__container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	max-width: var(--max-width-screen);
	align-items: center;
	width: 100%;
	padding: 12px 32px;
	color: white;
}

.header__container__logo {
	height: 100%;
}

.header__container__logo__image {
	height: 100%;
}

.header__container__nav {
	display: flex;
	flex-direction: row;
	list-style: none;
	gap: 12px;
}

.header__container__nav__item {
	text-decoration: none;
}

.header__container__burger_menu {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	height: 20px;
	width: 25px;
	cursor: pointer;
	position: relative;
	z-index: 1;
}

.header__container__burger_menu.active .header__container__burger_menu__item:nth-child(1) {
	transform: rotate(45deg);
	top: 9px;
}

.header__container__burger_menu.active .header__container__burger_menu__item:nth-child(2) {
	opacity: 0;
}

.header__container__burger_menu.active .header__container__burger_menu__item:nth-child(3) {
	transform: rotate(-45deg);
	top: -9px;
}

.header__container__burger_menu__item {
	width: 100%;
	height: 2px;
	background-color: white;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.secondary_page {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.sitemap {
	display: flex;
	justify-content: center;
}

.sitemap__container {
	display: flex;
	max-width: var(--max-width-screen);
	padding: 120px 0 32px 0;
	width: 100%;
	align-items: center;
}

.sitemap__container__links {
	list-style: decimal;
}

.sitemap__container__links__link {
	color: white;
}

.sitemap__container__links__link::marker {
	color: white;
}

.section--center {
	display: flex;
	justify-content: center;
}

.container--maxwidth {
	display: flex;
	max-width: var(--max-width-screen);
	padding: 32px;
	width: 100%;
}

.contact__container__form {
	display: flex;
	flex-direction: column;
}

.btn {
	border: none;
	color: white;
	background-color: var(--red-clr);
	padding: 8px 22px;
	border-radius: 22px;
	font-size: 1.2rem;
	box-shadow: 2px 2px 20px #fff;
}

.lite-youtube {
	max-width: 480px;
	width: 100%;
	height: 270px;
}

@media screen and (max-width: 1080px) {
	.header__container__nav {
		position: absolute;
		flex-direction: column;
		padding-top: 32px;
		justify-content: flex-start;
		align-items: center;
		gap: 22px;
		background-color: white;
		left: -100%;
		top: 0;
		height: 100vh;
		width: 50%;
		transition: .3s ease-in-out;
	}

	.header__container__nav__item {
		color: black;
	}

	.header__container__nav.active {
		left: 0;
		top: 0;
	}

	.header__container__burger_menu {
		display: flex;
		z-index: 1;
	}
}

@media screen and (max-width: 576px) {
	.header__container__nav {
		width: 100%;
	}
}
