body {
	font-family: "Zalando Sans", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333446;
	font-size: 16px;
}

a { text-decoration: none; }

ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 50px;
	font-weight: 800;
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 40px;
}

h4 {
	font-size: 32px;
}

h1, h2, h3, h4, h5 {
	margin: 0;
	padding: 0;
	font-family: "DynaPuff", system-ui;
}

p { margin: 0; padding: 0; }

/* HEADER */

header {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 10001;
}

header .wrapper {
	display: flex;
	padding-top: 20px;
	padding-bottom: 20px;
}

header .wrapper .logo {
	width: 200px;
}

header .wrapper .logo img {
	width: 100%;
}

header .wrapper nav {
	margin-left: auto;
}

header .wrapper nav ul {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

header .wrapper nav ul li {
	position: relative;
}

header .wrapper nav ul li a {
	text-decoration: none;
	font-weight: 600;
	transition: .2s;
}

.hero {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100vh;
	min-height: 650px;
	background-image: url(../img/main-page-bg.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 1;
}

.hero:after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-image: url(../img/shadow.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 2;
}

.hero .wrapper {
	position: relative;
	z-index: 3;
}

.hero .wrapper h1 {
	color: #fff;
}
.hero .wrapper p {
	margin: 20px 0;
	color: #fefefe;
}

footer .contacts {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

footer .contacts .item {
	text-align: center;
	border: 1px solid #ddd;
	padding: 15px;
}

footer .contacts .item h5 {
	margin-top: 15px;
}

/* WINDOW */

.window {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.65);
	z-index: 10002;
	display: none;
}

.window.show {
	display: block;
	animation-name: fadeIn;
	animation-duration: .3s;
}

.window .window-body {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	background: #fff;
	border-radius: 2px;
	padding: 30px 40px;
	display: none;
	max-height: 90%;
	max-width: 1680px;
	overflow-y: auto;
}

.window.window-50 .window-body {
	width: 50%;
}

.window.window-full .window-body {
	width: 98%;
	min-height: 98%;
	max-height: 98%;
	overflow: auto;
	height: 98%;
	padding: 20px 30px;
}

.window.show .window-body {
	display: block;
	animation-name: show-window-body;
	animation-duration: .3s;
	transform: translate(-50%, -50%);
}

@keyframes show-window-body {
	0% {
		top: 200%;
	}
	100% {
		top: 50%;
	}
}

.window .window-body .window-close {
	position: absolute;
	right: 10px;
	top: 10px;
	font-weight: 600;
	cursor: pointer;
	width: 26px;
	height: 26px;
	border-radius: 4px;
	background-color: #f6f6f6;
    color: rgb(23, 116, 226);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: .2s;
}

.window .window-body .window-close:hover {
	background-color: #f1f1f1;
}

.window .window-body .window-close i {
	font-size: 28px;
	transition: .1s;
}

.window .window-body .window-close:hover i {
	color: #000;
}

.window .window-body h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	font-weight: 700;
	color: #001b47;
}

.window .window-body h4 {
	font-size: 18px;
	font-weight: 600;
	color: #001b47;
}

.pt50 { padding-top: 50px !important; }
.pt100 { padding-top: 100px !important; }
.pt150 { padding-top: 150px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb100 { padding-bottom: 100px !important; }
.pb150 { padding-bottom: 150px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb20 { margin-bottom: 20px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt50 { margin-top: 50px !important; }
.g-6 { --bs-gutter-x: 4rem; }
iframe { height: 750px; }

@media (min-width: 0px) and (max-width: 991px) {
	
	header .wrapper nav {
		display: none;
	}
	
	.window .window-body {
		width: 90%;
		padding: 20px;
	}
	
	.window.window-50 .window-body {
		width: 90%;
		padding: 20px;
	}
	
	.m-mt20 { margin-top: 20px !important; }
	.m-mt30 { margin-top: 30px !important; }
	
}

@media (min-width: 1200px) {
	
}