@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--main-color: #02f348;
	--secondary-color: #278f44;
	--gray-text: #818890;
	--red-color: #e81123;
}

* {
	box-sizing: border-box;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	background: transparent;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
	color: white;
}

.backgroundBox {
	position: fixed;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100vw;
	height: 100vh;
}

.bckgrndGreen {
	width: 101%;
	height: 101%;
	background: url('/ZBR/index/bg.png') no-repeat;
	background-position: 70%;
	background-size: cover;
}

a {
	text-decoration: none;
	color: var(--main-color);
}

p {
	margin: 0;
}

strong {
	font-weight: 700;
}

input,
textarea {
	outline: 0 !important;
}

ul {
	margin: 0;
	padding-left: 24px;
}

body.noScroll {
	overflow: hidden;
}

.flexBreak {
	flex-basis: 100%;
	height: 0;
}





/* Content */

.content {
	display: flex;
	align-items: center;
	flex-direction: column;
	top: 24px;
	margin-bottom: 25px;
	min-height: calc(100vh - 275px);
}





/* Modal Window */

.modalWindow {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	opacity: 0;
	background: rgba(31, 28, 39, 0.4);
	display: none;
	justify-content: center;
	align-items: center;
	transition: .3s all;
}






/* Режим для слабовидящих */
.blindMode {
	background: #0a0d12 !important;
}

.blindMode * {
	font-size: 20px !important;
	font-weight: 800 !important;
}





/* Универсальная кнопка "Закрыть" */
.closeButton {
	width: 45px;
	height: 45px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s all;
	position: absolute;
}

.closeButton:hover {
	scale: 1.3;
}

.closeButton::before,
.closeButton::after {
	content: "";
	position: absolute;
	width: 30px;
	height: 2px;
	border-radius: 4px;
	background-color: white;
}

.closeButton::before {
	transform: rotate(45deg);
}

.closeButton::after {
	transform: rotate(-45deg);
}





/* Карта */
.mapa {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.mapCont {
	position: relative;
	width: 800px;
	height: 500px;
}

.mapCont iframe {
	width: inherit;
	height: inherit;
	border-radius: 16px;
}

.mapHelper {
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 90%);
	position: absolute;
	border-radius: 12px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .5s all;
}

.mapHelpHide {
	opacity: 0;
}

.mapHelper::before {
	content: 'Нажмите для взаимодействия с картой';
	font-size: 32px;
	font-weight: 200;
	transition: .3s all;
}

.mapHelper:hover::before {
	scale: 1.05;
}

@media (max-width: 767px) {
	.mapHelper::before {
		font-size: 24px;
		text-align: center;
	}

	.mapCont {
		width: 300px;
	}
}

/* Map on big phones */
@media (min-width: 400px) and (max-width: 767px) {
	.mapCont {
		width: 380px;
	}
}

/* Map on iPad */
@media (min-width: 768px) and (max-width: 1279px) {
	.mapCont {
		width: 700px !important;
	}
}

/* Screen's */

/* Phone (min 320px) */


/* Ipad: */
/* @media (min-width: 768px) and (max-width: 1279px) {} */

/* Def: */
/* 1280px+ */