.header {
	height: 100px;
	display: flex;
	justify-content: center;
	background: linear-gradient(#121212, var(--blue));
}

.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;
}

.header__container__image {
	height: 100%;
}

.header__container__nav {
	display: flex;
	flex-direction: row;
	list-style: none;
	gap: 12px;
}

.header__container__nav__item {
	text-decoration: none;
	color: white;
}

.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;
}


.header__container__logo {
	height: 100%;
}

.header__container__logo__image {
	height: 100%;
}

.btn {
	border: none;
	color: white;
	font-weight: 700;
	padding: 12px 16px;
	border-radius: 2px;
	background-color: var(--blue);
	cursor: pointer;
}

.btn:hover {
	background-color: #1f1f4b;
}

.btn--outlined {
	border: none;
	color: white;
	font-weight: 700;
	padding: 12px 16px;
	border-radius: 2px;
	border: 2px solid white;
	background-color: transparent;
	cursor: pointer;
}

.glider-contain {
	position: relative;
}

.glider-prev,
.glider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #333;
	color: #fff;
	border: none;
	padding: 10px;
	cursor: pointer;
}

.glider-prev {
	left: 10px;
}

.glider-next {
	right: 10px;
}

.dots {
	text-align: center;
	margin-top: 10px;
}

.dots .glider-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: #333;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
}

.dots .glider-dot.active {
	background-color: #666;
}

.slider {
	display: flex;
	justify-content: center;
	background-color: #f2f2f2;
}

.slider__container {
	display: flex;
	flex-direction: column;
	max-width: 870px;
	width: 100%;
	padding: 32px;
	overflow-x: hidden;
}

.slider__container__title {
	font-size: clamp(1.625rem, 1.3017rem + 1.0345vw, 2rem);
}

.slider__container__text {
	margin-bottom: 16px;
}

.slider__container__slider__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 50%;
	background-color: white;
}

.slider__container__slider__item__image {
	max-height: 242px;
	width: 100%;
	object-fit: cover;
}

.slider__container__slider__item__texts {
	margin-bottom: 12px;
	padding: 16px;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 22px;
}

.secondary_page {
	display: flex;
	flex-direction: column;
}

.secondary_page__main {
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: center;
}

@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: -50%;
		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;
	}
}
