html {
	scroll-behavior: smooth;
}

html,
body {
	height: 100%;
}

body {
	overflow-x: hidden;
	font-family: 'Inter', sans-serif;
}

main {
	flex-grow: 1;
}

._lock {
	overflow: hidden;
}

/*arrow-up=============================*/
.arrow-up {
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transition: 1s linear;
}

.arrow-up.show {
	bottom: 50px;
	opacity: 1;
	visibility: visible;
}

.wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

/*burger    =============================*/
.header__burger {
	width: 50px;
}

.header__burger span {
	height: 2px;
	width: 100%;
	background-color: #fff;
}

/*header=============================*/
.header {
	position: sticky;
	display: flex;
	justify-content: center;
	background-color: #000;
	width: 100%;
	height: 50px;
	top: 0px;
	left: 0px;
	z-index: 10;
}

.header__container {
	width: 1400px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__logo {
	z-index: 10;
}

.header__menu {
	flex-grow: 1;
	height: 100%;
	display: flex;
	align-items: center;
}

.menu__list {
	display: flex;
	height: 100%;
	display: flex;
	align-items: center;
}

.menu__link {
	padding: 0 0 0 65px;
	font-size: 16px;
	font-weight: 900;
	display: flex;
	align-items: center;
}

.page__link {
	color: #fff;
}

.page__link-activ {
	color: #fa8200;
}


.black {
	color: #323232;
}


.page__link:hover {
	text-decoration: underline;
	color: #fa8200;
	text-decoration-line: none;
}

.networks {
	padding: 0 0 0 165px;
}

.networks__link {
	padding: 0 15px;
}

/*burger    =============================*/
.header__burger {
	width: 50px;
}

.header__burger span {
	height: 2px;
	width: 100%;
	background-color: #fff;
}

/*media=============================    1920    */
@media (min-width: 1920px) {
	.networks {
		padding: 0 0 0 65px;
	}
}

/*media=============================    1135    */
@media (max-width: 1135px) {
	.networks {
		padding: 0 0 0 65px;
	}
}

/*media=============================    990    */
@media (max-width: 990px) {

	/*menu__body*/
	.header__menu {
		position: fixed;
		display: flex;
		justify-content: center;
		align-items: start;
		top: 0;
		left: 0;
		height: 0;
		width: 100%;
		background-color: rgba(0, 0, 0, 0.8);
		transition: left 0.3s ease 0s;
		overflow: auto;
	}

	.header__menu._active {
		height: 100%;
	}

	.menu__list {
		flex-direction: column;
		margin: 110px 0;
	}

	.menu__link {
		font-size: 25px;
		padding: 0;
	}

	.menu__list li {
		margin: 30px 0;
		text-align: center;
	}

	/*burger    =============================*/
	.header__burger {
		display: flex;
		align-items: center;
		position: relative;
		width: 40px;
		height: 20px;
		margin-left: 50px;
		cursor: pointer;
		z-index: 10;
	}

	.header__burger span,
	.header__burger::before,
	.header__burger::after {
		position: absolute;
		height: 10%;
		width: 100%;
		background-color: #fff;
		transition: all 0.3s ease 0s;
	}

	.header__burger::before,
	.header__burger::after {
		content: "";
	}

	.header__burger::before {
		top: 0;
	}

	.header__burger::after {
		bottom: 0;
	}

	.header__burger span {
		top: 50%;
		transform: scale(1.0) translate(0px, -50%);
	}

	.header__burger._active span {
		transform: scale(0) translate(0px, -50%);
	}

	.header__burger._active::before {
		top: 50%;
		transform: rotate(-45deg) translate(0px, -50%);
	}

	.header__burger._active::after {
		bottom: 50%;
		transform: rotate(45deg) translate(0px, 50%);
	}
}

/*media=============================    426    */
@media (max-width: 426px) {
	.header__burger {
		margin-left: 15px;
	}

	.header__logo {
		margin: 0 10px 0 10px;
	}
}

/*FOOTER*/
.footer {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	border-top: solid 1px #cccccc;
	margin-top: 100px;
}

.footer__conteiner {
	width: 100%;
	max-width: 1600px;
	height: 100%;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 200;
	color: #323232;
	padding-top: 10px;
	display: flex;
	justify-content: center;
}

.networks__link {
	opacity: 50%;
}

.networks__link:hover {
	opacity: 100%;
}