header.header {
	position: relative;
	margin-bottom: 5rem;
}

.header__title {
	color: #333;
	font-size: 24px;
	font-weight: 500;
	max-width: 310px;
}
.header__content {
	position: relative;
	padding-top: 2rem;
	z-index: 20;
}
.header__current-page {
	display: flex;
	align-items: center;
	gap: 0.79rem;
	color: #666666;
	font-size: 1rem;
	font-weight: 400;
	text-wrap: nowrap;
	text-decoration: none;
	margin-bottom: 2rem;
}
.header__current-page span {
	color: #989898;
}
.header__descr {
	color: #666;
	font-size: 1rem;
	font-weight: 700;
}
.button {
	border: none;
	padding: 20px 58px;
	background: #0effd6;
	border-radius: 30px;
	cursor: pointer;
	color: #001287;
	font-size: 1.5rem;
	font-weight: 500;
	-webkit-box-shadow: 10px 10px 17px -8px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 10px 10px 17px -8px rgba(0, 0, 0, 0.75);
	box-shadow: 10px 10px 17px -8px rgba(0, 0, 0, 0.75);
	transition: background 0.3s ease 0s;
	z-index: 20;
}
/* header */
.header__content {
}
.header__close {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 0.5em;
}
.header__close svg {
	cursor: pointer;
	transition: scale 0.3s ease 0s;
}
.header__close:hover svg {
	scale: 1.05;
}
.header__icons {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 0.5rem;
}
.header__icon {
}
.header__title {
	margin-bottom: 1rem;
}
.header__descr {
	color: #666;
	font-size: 1rem;
	font-weight: 700;
}
.header__subtitle {
	color: #666;
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 2rem;
}
.nav-header__lang {
	position: relative;
	font-family: 'Letov';
	z-index: 100;
	color: #b1b1b1;
	font-size: 1.5rem;
	font-weight: 500;
	border: none;
	background: transparent;
	cursor: pointer;
}
.burger {
	position: relative;
	width: 61px;
	height: 61px;
	cursor: pointer;
	background: transparent;
	border: none;
	z-index: 110;
}

.burger::before,
.burger::after {
	content: '';
	position: absolute;
	width: 41px;
	left: 10px;
	height: 3px;
	border-radius: 3px;
	background-color: #222944;
	transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.burger::before {
	top: 22px;
}

.burger::after {
	top: 32px;
}
.burger.open {
	border-radius: 1.5rem;
	background: #0075c9;
}
.burger.open::after,
.burger.open::before {
	background: #fff;
}
.burger.open::before {
	transform: rotate(45deg);
	top: 28px;
}

.burger.open::after {
	transform: rotate(-45deg);
	top: 28px;
}
.header__map {
}
.map-header {
	display: flex;
	align-items: center;
	gap: 25px;
}
.map-header__content {
}
.map-header__descr {
	color: #666;
	font-size: 12px;
	font-weight: 700;
}
.map-header__title {
	color: #666;
	font-size: 12px;
	font-weight: 400;
	margin-bottom: 1rem;
}
.map-header__divider {
	height: 150px;
	width: 1px;
	background: #cbcbcb;
}
.map-header__map {
}
.map-header__map img {
	width: 100%;
	height: 100%;
}
.main-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}
.aside-image {
	position: relative;
}
.logo__container {
	position: absolute;
	left: 50%;
	top: 65px;
	width: 100%;
	transform: translateX(-50%);
	z-index: 10;
}
.aside__logo {
}
.aside-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-container {
	max-width: 520px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}
/* galery */
.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-bottom: 70px;
}

.gallery-item img {
	width: 100%;
	cursor: pointer;
	border-radius: 5px;
}

.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 150;
}

.lightbox-content {
	position: relative;
	text-align: center;
}

.lightbox-content img {
	max-width: 90%;
	max-height: 80%;
	border-radius: 5px;
}

.swiper-container {
	position: relative;
	width: 65%;
	height: 85%;
	max-height: 1000px;
	max-width: 868px;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 60px;
	padding-bottom: 53px;
}
.swiper-slide img {
	border-radius: 9rem;
	overflow: hidden;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.caption {
	position: absolute;
	bottom: 0;
	left: 0;
	color: white;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}
.swiper-button-next,
.swiper-button-prev {
	position: static;
	height: 40px;
	width: 47px;
	border-radius: 47%;
	border: 1px solid #fff;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	background: #fff;
	color: #000;
	transition: color 0.3s ease 0s, background 0.3s ease 0s;
}
.swiper-button-next:disabled,
.swiper-button-prev:disabled,
.swiper-button-disabled {
	color: #fff;
	background: transparent;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: #0075c9;
	color: #fff;
	border-color: #0075c9;
}
.swiper__nav {
	position: absolute;
	right: 0;
	top: 0px;
	height: 40px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.slide-counter {
	color: #fff;
	font-size: 15px;
	font-weight: 400;
}
.project-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 80px;
}
.project-info__current {
	color: #808080;
	font-size: 1rem;
	font-weight: 400;
}
.project-info__nav {
	display: flex;
	align-items: center;
	gap: 10px;
}
.project-info__prev,
.project-info__next {
	height: 40px;
	width: 47px;
	border-radius: 44%;
	border: 1px solid #000;
	font-size: 1.5rem;
	color: #888888;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	text-decoration: none;
	transition: color 0.3s ease 0s, background 0.3s ease 0s;
}
.project-info__prev:hover,
.project-info__next:hover {
	color: #fff;
	background: #0075c9;
}

@media (max-width: 767.98px) {
	.header__content {
		padding-left: 0;
	}
	.header__nav {
		padding-top: 20px;
	}
	.main-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.aside-image {
		display: none;
	}

	.swiper-slide img {
		border-radius: 4rem;
	}
	.footer__container {
		flex-direction: column;
	}
	.footer__info {
		flex-direction: column;
	}
	.footer__list {
		gap: 2rem;
	}
}
@media (max-width: 680px) {
	.header__current-page {
		flex-wrap: wrap;
	}
	.map-header__divider {
		display: none;
	}
	.map-header {
		flex-direction: column;
		align-items: start;
	}
	.swiper-container {
		width: 75%;
		height: 55%;
		max-width: 868px;
	}
	.aside-image {
		position: relative;
	}
	.footer__decoration {
		display: none;
	}
	.menu {
		padding: 3rem 3rem 4rem 3rem;
	}
}
