/* Start (reset styles)*/

*,
*::before,
*::after {
	box-sizing: border-box;
}

ul[class],
ol[class] {
	padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Chrome/Safari/Opera */
	-khtml-user-select: none;
	/* Konqueror */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;
	/* Non-prefixed version, currently
											not supported by any browser */
}

body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
	overflow-x: hidden;
}

ul[class],
ol[class] {
	list-style: none;
}

a:not([class]) {
	text-decoration-skip-ink: auto;
}

img {
	max-width: 100%;
	display: block;
}

article>*+* {
	margin-top: 1em;
}

input,
button,
textarea,
select {
	font: inherit;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

object {
	pointer-events: none;
}

/* End (reset styles) */
/* --------------------- */
/* Start (fonts) */

@font-face {
	font-family: Benzin;
	src: url(fonts/Benzin-Bold.ttf);
	font-weight: bold;
}

@font-face {
	font-family: Benzin;
	src: url(fonts/Benzin-Regular.ttf);
	font-weight: normal;
}

/* End (fonts) */
/* --------------------- */
/* Start (preloader) */

.preloader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background-color: var(--dark_blue);
	z-index: 100;
	transition: all .3s ease;
}

.preloader__loader {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.preloader__loader svg {
	width: 30vw;
}

.preloader__percents {
	font-family: var(--title-font);
	color: var(--yellow);
	font-size: 5vw;
}

.preloader__loader path.white {
	fill: var(--grey);
}

path.white::after {
	content: "!";
	width: 200px;
	height: 200px;
	top: 0;
	left: 0;
	background-color: var(--white);
	z-index: 100000;
}

.preloader--hide {
	opacity: 0;
	z-index: -1;
}

/* End (preloader) */
/* --------------------- */
/* Start (base styles) */
:root {
	--black: #333;
	--white: #fff;
	--yellow: #FFC107;
	--grey: #959DAC;
	--blue: #0d6efd;

	--grey_blue: #414B61;
	--dark_blue: #0f1f3d;
	--white-gray: #e9ecef;

	--base-font: 'Montserrat', sans-serif;
	--title-font: 'Benzin';
}

p,
li {
	color: var(--black);
	font-size: 24px;
	font-family: var(--base-font);
	font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--black);
	font-family: var(--title-font);
	font-size: 32px;
}

label,
input::placeholder,
textarea::placeholder {
	font-family: var(--base-font);
}

sub {
	font-size: .5em;
	line-height: 1;
}

.flex {
	display: flex;
}

img {
	width: 100%;
	/* height: 100%; */
	object-fit: cover;
}

.btn {
	position: relative;
	font-family: var(--title-font);
	background-color: var(--dark_blue);
	color: var(--white);
	padding: 10px 30px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	display: inline-block;
	transition: all .3s ease;
	border: solid 3px var(--dark_blue);
	cursor: pointer;
}

.btn.yellow {
	background-color: var(--yellow);
	color: var(--dark_blue);
}

.btn.bg_blue {
	border: solid 3px #ffffff00;
	padding: 5px 30px;
}

.btn.yellow.active:hover {
	background-color: var(--yellow);
	color: var(--dark_blue);
}

.button__needed {
	cursor: no-drop;
}

.bg_blue.button__needed:hover {
	background-color: var(--dark_blue);
	color: var(--white);
}

.btn.grey {
	background-color: var(--grey);
}

.btn:hover {
	background-color: var(--white);
	color: var(--dark_blue);
}

.btn.not__active {
	box-shadow: 0px 0px 28px 0px var(--yellow);
	background-color: var(--yellow);
	cursor: not-allowed;
	pointer-events: all;
}

.btn.not__active:hover {
	box-shadow: 0px 0px 28px 0px var(--yellow);
	background-color: var(--yellow);
	color: var(--dark_blue);
	cursor: not-allowed;
}

.btn.active {
	box-shadow: none;
	cursor: pointer;
	background-color: var(--grey);
	pointer-events: all;
}

.btn.active:hover {
	background-color: var(--grey) !important;
	color: var(--dark_blue) !important
}

/* End (base styles) */
/* --------------------- */
/* Start (scrol) */
::-webkit-scrollbar {
	width: 14px;
	/* ширина для вертикального скролла */
	height: 8px;
	/* высота для горизонтального скролла */
	background-color: var(--white);
}

/* ползунок скроллбара */
::-webkit-scrollbar-thumb {
	background-color: var(--dark_blue);
	border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #253861;
}

/* Стрелки */
::-webkit-scrollbar-button:vertical:start:decrement,
::-webkit-scrollbar-button:vertical:end:increment,
::-webkit-scrollbar-button:horizontal:start:decrement,
::-webkit-scrollbar-button:horizontal:end:increment {
	display: none;
}

/* End (scrol) */
/* --------------------- */
/* Start (Header) */

header {
	background-color: var(--dark_blue);
	position: fixed;
	z-index: 1000;
	box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
}

.under_header {
	height: 78px;
}

header .inner {
	display: flex;
	align-items: center;
	justify-content: space-around;

	width: 100vw;
	margin: auto;

}

header ul {
	display: flex;
}

header li {
	color: var(--white);
	list-style-type: none;
	padding: 5px 10px;
}

header a {
	text-decoration: none;
	color: var(--white);
	padding: 5px 10px;
	transition: all .3s ease;
}

header a.donate {
	background-color: var(--grey_blue);
	color: var(--dark_blue);
}

header nav a:hover {
	background-color: var(--yellow);
	color: var(--dark_blue);
}

.language li {
	padding: 0px 10px;
	background-color: var(--grey_blue);
	color: var(--dark_blue);
	font-weight: 400;
}

.language a {
	padding: 0;
}

.language .active {
	background-color: var(--yellow);
	color: var(--white);
	font-weight: 500;
}

.mob_logo svg {
	display: none;
}

/* End (Header) */
/* --------------------- */
/* Start (Footer) */
footer {
	background-color: var(--white-gray);
}

.footer__wrapper {
	margin: auto;
	width: 90vw;
}

.footer__inner {
	display: flex;
	flex-wrap: wrap;
	padding-top: 50px;
	padding-bottom: 150px;
}

.footer__inner .footer__item:nth-child(1) .footer__logo,
.footer__inner .footer__item:nth-child(1) .footer__nav {
	margin-bottom: 20px;
}

.tel {
	margin-bottom: 11px;
	line-height: 1;
}

.footer__item {
	flex: 0 0 auto;
	width: 33.3333333333%;
	max-width: 100%;
	margin-top: 50px;
	padding: 0 20px;
}

.footer__item .uppercase {
	text-transform: uppercase;
}

.footer__item .footer__nav .nav-link:hover {
	color: var(--blue);
}

.footer__item .footer__nav:nth-child(1) {
	margin-bottom: 20px;
}

.footer__nav {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

footer .nav-link {
	font-size: 18px;
	display: block;
	text-decoration: none;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;

	color: #0f1e3c;
	font-weight: 500;
	padding-right: 0.25rem;
	padding: 0 20px;
	line-height: 1;
}

.footer__nav svg {
	display: inline-block;
	height: 1em;
}

input:not([type="email" i], [type="number" i], [type="password" i], [type="search" i], [type="tel" i], [type="text" i], [type="url" i]) {
	writing-mode: horizontal-tb !important;
}

input[type="hidden" i] {
	appearance: none;
	background-color: initial;
	cursor: default;
	display: none !important;
	padding: initial;
	border: initial;
}

input,
optgroup,
select,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

textarea {
	resize: vertical;
}

.form__title {
	line-height: .6;
	margin-bottom: 28px;
	color: var(--dark_blue);
	font-size: 36px;
}

.form__title span {
	font-size: 18px;
	font-weight: 400;
}

.d-none {
	display: none !important;
}

.form-label {
	margin-bottom: 0.5rem;
}

.form__input {
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	font-family: var(--base-font);
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: all .3s ease-in-out;
	border: 0;
	border-bottom: solid 1px var(--grey);
	margin-bottom: 0.5rem;
	background-color: transparent;
}

br {
	height: 0;
}

textarea,
input {
	outline: none;
}

textarea:focus,
input:focus {
	outline: none;
}

.contacts__info {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.contacts__info li {
	display: flex;
	align-items: center;
	height: 24px;
}

li.smm svg {
	height: 1.2em;
}

.smm .svg__li {
	margin-right: 10px;
}

.svg__li {
	height: 20px !important
}

.small {
	display: flex;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 20px;
}

.small p {
	font-size: 14px;
	margin-left: 5px;
}

.logo__payments {
	display: flex;
	gap: 1;
	align-items: center;
}

.logo__payments li {
	height: fit-content;
	margin: 0 10px;
}

.logo__payments img {
	width: 100%;
	height: auto;
}

.footer__logo {
	max-width: 250px;
	margin-left: 20px;
}

.contacts__info a {
	color: var(--dark_blue);
	font-size: 20px;
	font-family: var(--base-font);
	text-decoration: none;
	margin-left: 10px;
}

.contacts__info .smm a {
	margin: 0 10px;
}

a.geo {
	font-size: 16px;
	color: var(--grey);
}

.form_captcha {
	width: 47%;
	border: none;
	height: auto;
	padding: 10px 30px;
	text-align: center;
	font-size: 20px;
}

footer .btn {
	width: 47%;
}

footer .btn:hover {
	background-color: var(--white-gray);
}

.captcha_input {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.captcha_input label {
	width: 100%;
}

/* End (Footer) */
/* --------------------- */
/* Start (Intro) */

.wrapper_intro {
	background-color: var(--dark_blue);
	width: 90vw;
	height: 70vh;
	position: relative;
	background: #0F1E3C;
	/* box-shadow: -50px -50px 80px 0px rgba(255, 255, 255, 0.25) inset; */
}

#intro {
	position: relative;
	height: 100vh;
}

#intro video {
	position: absolute;
	right: 2vw;
	top: 13vh;
	width: 55vw;
	z-index: 10;
	pointer-events: none;
}

.project_price {
	position: absolute;
	background-color: var(--white);
	right: 0;
	top: 9vh;
	padding: 20px 70px;
	box-shadow: 0px 0px 80px 0px rgba(255, 255, 255, 0.46);
}

.project_price h3 {
	font-size: 32px;
	padding-bottom: 5px;
	border-bottom: solid 3px var(--dark_blue);
	font-weight: normal;
}

.project_price h4 {
	font-size: 48px;
}

#intro .wrapper {
	display: flex;
	align-content: space-around;
	flex-direction: column;
	height: 100%;
	justify-content: space-evenly;
	margin-left: 5vw;
}

.marquee {
	position: absolute;
	right: 10vw;
	bottom: -10vh;

	white-space: nowrap;
	overflow: hidden;
	width: 25vw;
	padding: 0 10px;
	border-left: solid 2px var(--dark_blue);
	border-right: solid 2px var(--dark_blue);
}

.marquee p {
	display: inline-block;
	color: var(--dark_blue);
	font-family: var(--title-font);
	text-transform: uppercase;
	font-size: 20px;
}

.text {
	animation: marquee 20s linear infinite;
	animation-fill-mode: both;
	visibility: hidden;
	animation-delay: 10s;
}

.text:first-child {
	visibility: visible;
}

.text2 {
	animation: marquee2 20s linear infinite;
}

@keyframes marquee {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-120%);
	}
}

@keyframes marquee2 {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-220%);
	}
}

.title h2 {
	background-color: var(--yellow);
	color: var(--dark_blue);
	box-shadow: 0px 0px 28px 0px var(--yellow);
	font-size: 148px;
	line-height: 148px;
	display: inline-block;
	padding: 10px 50px;
}

.title h1 {
	font-family: var(--base-font);
	color: var(--white);
	font-weight: 500;
}

.wrapper__description {}

.wrapper__description p {
	color: var(--white);
}

.wrapper__description p span {
	color: var(--yellow);
}

.wrapper__description .item {
	display: flex;
	margin: 30px 0;
	max-width: 800px;
}

.wrapper__description .item:nth-child(2) {
	max-width: 600px;
}

.wrapper__description object {
	margin-right: 35px;
}

#intro .wrapper .btn {
	font-size: 36px;
}

/* #intro .wrapper__button .btn:nth-child(1) {
	box-shadow: 0px 0px 28px 0px var(--yellow);
	padding: 10px 100px;
	z-index: 10;
	font-weight: bold;
}

#intro .wrapper .btn {
	cursor: pointer;
	background-color: var(--grey_blue);
	border: none;
	text-transform: uppercase;
	font-size: 24px;
	color: var(--dark_blue);
	padding: 8px 30px;
	z-index: 1;
}

#intro .wrapper button object {
	pointer-events: none;
} */

/* End (Intro) */
/* --------------------- */
/* Start (Actual projects) */

.title__wrapper {}

/* .title__inner {
	background-color: var(--dark_blue);
	padding: 20px 0;
	display: inline-block;
	margin-left: 5vw;
}

.title__line {
	padding-left: 40px;
	margin-left: 40px;
	margin-right: 40px;
	border-left: solid 5px var(--white);
} */
.title__inner {
	background-color: var(--dark_blue);
	padding: 20px 0;
	display: inline-block;
	margin-left: 5vw;
	transition: margin-left 0.3s ease;
	/* Додали анімацію зміни margin-left */
}

.title__line {
	padding-left: 40px;
	margin-left: 40px;
	margin-right: 40px;
	border-left: solid 5px var(--white);
}

.item__wrapper {
	display: flex;
	justify-content: space-around;
	margin-top: 80px;
}

.title__inner p {
	color: var(--white);
	max-width: 800px;
	margin: 20px 0;
}

.title__inner h3 {
	color: var(--white);
	font-size: 48px;
	text-transform: uppercase;
}

/* 
#projects .item {
	width: 30vw;
} */

#projects .title__line .btn object {
	vertical-align: -10%;
	margin-left: 10px;
}

#projects .wrapper__img {
	position: relative;
	overflow: hidden;
	max-height: 450px;
}

#projects .wrapper__img img {
	transition: all .3s ease;
}

#projects .wrapper__img a:hover img {
	scale: 1.3;
	/* transform: rotate(10deg); */
}

.made_for {
	position: absolute;
	left: 0;
	bottom: 0;

	background-color: var(--white);
	padding: 7px 15px;
}

.made_for p:nth-child(1) {
	margin-bottom: -10px;
	text-transform: uppercase;
	font-size: 16px;
}

.made_for .city {
	font-size: 32px;
	font-weight: 600;
	text-transform: uppercase;
}

.made_for span {
	font-size: 16px;
	color: var(--grey);
}

#projects .description {
	padding: 30px 0;
}

#projects .flex {
	justify-content: space-between;
	align-items: center;
}

.price p:nth-child(1) {
	/* margin-bottom: -15px; */
	color: var(--grey);
}

.price p:nth-child(2) {
	font-size: 40px;
	font-weight: 600;
}

#projects .flex div:nth-child(2) {
	text-align: center;
}

#projects .item .btn {
	font-size: 24px;
	font-weight: normal;
}

#projects .slider {
	position: relative;
	width: 100%;
	max-width: 100vw;
	margin: 0 auto;
	overflow: hidden;
	margin: 50px 0;
	padding-top: 30px;
}

#projects .item__wrapper {
	display: flex;
	transition: transform 0.3s;
	justify-content: inherit;
}

#projects .item {
	flex: 0 0 32.5%;
	margin: 0.5vw;
}

#projects .slider button {
	position: absolute;
	background: #ffffff00;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	z-index: 1;
}

#projects .prev-button {
	left: 0;
	top: 0;
}

#projects .next-button {
	right: 0;
	top: 0;
	transform: rotate(180deg) !important;
}

/* End (Actual projects) */
/* --------------------- */
/* Start (Video slider) */

#video_slider {
	position: relative;
	height: 50vh;
	margin: 10vh 0;
}

#slider .slider__item {
	position: absolute;
	width: 25vw;
	top: 25%;
	opacity: 0;
	transition: all .3s ease;
}

#slider .slider__item video {
	width: 100%;
	height: 100%;
}

#slider .slider__item.active {
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 50vw;
	display: block;
	opacity: 1;
	z-index: 10;
}

#slider .slider__item.left {
	left: 0;
	opacity: .5;
}

#slider .slider__item.right {
	right: 0;
	opacity: .5;
}

.arrow_prew {
	position: absolute;
	bottom: 1vh;
	left: 5vw;
	cursor: pointer;
}

.arrow__next {
	position: absolute;
	bottom: 1vh;
	right: 5vw;
	cursor: pointer;
	transform: rotate(180deg);
}

path.line_arrow_prew,
path.triangle_arrow_prew {
	transition: all .3s ease;
}

path.line_arrow_prew {
	stroke: var(--grey);
}

path.triangle_arrow_prew {
	fill: var(--grey);
}

.arrow:hover path.line_arrow_prew {
	d: path("M293 21L13 21");
	stroke: var(--dark_blue);
}

.arrow:hover path.triangle_arrow_prew {
	d: path("M13 23.5C14.3807 23.5 15.5 22.3807 15.5 21C15.5 19.6193 14.3807 18.5 13 18.5V23.5ZM6.23223 19.2322C5.25592 20.2085 5.25592 21.7915 6.23223 22.7678L22.1421 38.6777C23.1184 39.654 24.7014 39.654 25.6777 38.6777C26.654 37.7014 26.654 36.1184 25.6777 35.1421L11.5355 21L25.6777 6.85786C26.654 5.88155 26.654 4.29864 25.6777 3.32233C24.7014 2.34602 23.1184 2.34602 22.1421 3.32233L6.23223 19.2322ZM13 18.5H8V23.5H13V18.5Z");
	fill: var(--dark_blue);
}

/* End (Video slider) */
/* --------------------- */
/* Start (Modal) */

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.133);
	z-index: 1000;
}

.bg_blur {
	backdrop-filter: blur(20px);
	background-color: rgba(15, 31, 61, 0.6);
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	cursor: pointer;
}

.modal-content_b {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
}

.close {
	position: absolute;
	top: 100px;
	right: 100px;
	font-size: 20px;
	z-index: 100;
	cursor: pointer;
	color: #333;
	z-index: 102;
}

.video__wrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0px;
	height: 0;
	/* 0 */
	z-index: 101;
}

.modal-content video {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-height: 80%;
	max-width: 80%;
	z-index: 102;
}

/* End (Modal) */
/* --------------------- */
/* Start (Technical characteristics) */

#technical_characteristics {
	background-color: var(--dark_blue);
}

#technical_characteristics .title {
	text-align: center;
	padding-top: 100px;
	padding-bottom: 50px;
}

#technical_characteristics .title p {
	font-size: 36px;
	color: var(--white);
}

#technical_characteristics .title h3 {
	background-color: var(--yellow);
	box-shadow: 0px 0px 28px 0px var(--yellow);
	color: var(--dark_blue);
	font-size: 48px;
	display: inline-block;
	padding: 10px 70px;
	text-transform: uppercase;
}

.grid {
	display: grid;
	/* grid-template-columns: repeat(3, 1fr); */
	grid-template-columns: 35vw 28vw 37vw;
}

.bg_white {
	background-color: var(--white);
	box-shadow: 0px 0px 84px 0px #FFF;
	height: 50vh;
	z-index: 10;
	position: relative;
}

.bg_white img {
	display: none;
}

.bg_white video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.left__item {
	grid-row: span 2;
}

.left__item h4 {
	background-color: var(--white);
	display: inline-block;
	padding: 10px 30px;
	font-size: 24px;
}

.technical__item {
	padding: 15px 0;
}

.technical__item small {
	font-size: 14px;
}

.technical__item p:nth-child(1) {
	color: var(--grey);
	border-bottom: solid 3px var(--grey_blue);
	display: table-caption;
	font-size: 28px;
	width: max-content;
}

.technical__item p:nth-child(2) {
	color: var(--white);
	font-family: var(--title-font);
	font-size: 40px;
}

.left__item .technical__item p {
	padding-left: 10vw;
}

.technical__item p {
	padding-left: 10vw;
}

.bottom__item {
	grid-column: span 2;
	max-width: 800px;
}

.bottom__item p {
	color: var(--white);
	padding: 50px 0;
	font-size: 24px;
	font-family: var(--title-font);
}

.focus p {
	color: var(--yellow) !important;
	font-weight: bold;
}

.focus p:nth-child(1) {
	border-bottom: solid 3px var(--yellow) !important;
	font-family: var(--title-font);
}

.focus p:nth-child(2) {
	font-size: 64px;
}

/* End (Technical characteristics) */
/* --------------------- */
/* Start (Map) */

#map {
	background-color: var(--dark_blue);
	position: relative;
	padding: 120px 0;
}

#map .flex {
	justify-content: space-around;
}

#map .amount {
	position: relative;
	margin-left: 5vw;
	margin-top: 5vh;
	transition: all .3s ease;
}

#map .wrapper__amount {
	background-color: var(--yellow);
	box-shadow: 0px 0px 28px 0px var(--yellow);
	height: fit-content;
	position: relative;
	width: auto;
	transition: all .3s ease;
	z-index: 2;
}

.wrapper__amount span {
	font-size: .5em;
}

.amount object {
	display: block;
	margin: auto;
	margin-top: 20px;
}

#map .wrapper__img {
	position: absolute;
	top: 100px;
	z-index: 1;
	right: -100px;

	display: flex;
}

#map .amount.hidden {
	opacity: 0;
	width: 0;
	margin: 0;
}

#map .amount.hidden p {
	font-size: 0;
}

#map .amount p {
	font-family: var(--title-font);
	font-size: 96px;
	font-weight: bold;
	color: var(--dark_blue);
	padding: 0 50px;
	line-height: 1;
	padding-bottom: 20px;
	text-transform: uppercase;
	text-align: center;
	transition: all .3s ease;
}

/* #map .wrapper__img {
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20vw;
} */
#map .wrapper__img {
	width: fit-content;
}

#map .wrapper__img {
	width: 50%;
	margin: auto;
	margin-top: 20px;
}

#map .wrapper__svg_map {
	height: 70vh;
	transition: all .3s ease;
}

#map svg {
	height: 100%;
	/* stroke: var(--white); */
	fill: var(--dark_blue)
}

#map svg {}

#zaporizhia_region,
#chernihiv_region,
#sumy_region,
#poltava_region,
#kirovohrad_region,
#kherson_region {
	fill: var(--grey);
}

#map path.active {
	fill: var(--yellow);
}

#kyiv_region,
#odessa_region,
#kharkov_region,
#dnipropetrovsk_region,
#mykolaiv_region {
	fill: var(--yellow);
}

#map .title__wrapper {
	position: absolute;
	bottom: 5vh;
	width: 100vw;
	pointer-events: none;
}

#map .title__inner {
	background: rgba(255, 255, 255, 0.20);
	backdrop-filter: blur(6.5px);
}

.point_logo {
	opacity: 0.1;
}

.point_logo.isactive {
	opacity: 1;
}

.hidden {
	/* display: none; */
}

.map_modal {
	position: absolute;
	padding: 10px 20px;
	display: none;
	z-index: 100;

	background: rgba(255, 255, 255, 0.20);
	backdrop-filter: blur(6.5px);
	font-family: var(--title-font);
	font-size: 24px;
	border-radius: 10px;
}

/* End (Map) */
/* --------------------- */
/* Start (End video) */

#end_video {
	position: relative;
	background-color: var(--dark_blue);
}

#end_video video {
	width: 100vw;
}

.top_gradient {
	height: 100px;
	width: 100vw;
	background: linear-gradient(180deg, #0F1E3C 0%, rgba(15, 30, 60, 0.00) 100%);
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
}

/* End (End video) */
/* --------------------- */
/* Start (Media) */

.scroll_animation {
	transition: all 2s ease;
	opacity: 1;
}

.mob {
	display: none;
}

/* .hidden {
	opacity: 0;
}

.visible {
	opacity: 1;
} */












.single__wrapper {
	min-height: 93vh;
	position: relative;
	z-index: 2;
}

.bg_single {
	position: absolute;
	top: -100px;
	left: 0;
	z-index: 3;
}

.slider__inner {
	z-index: 4;
}

.info__wrapper {}

.single__wrapper .title__wrapper {
	background-color: var(--dark_blue);
	padding: 10vh 0 5vh 52vw;
}

.single__wrapper .title__wrapper object {
	height: 32px;
}

.main__text {
	padding: 5vh 0 5vh 52vw;
}

.main__text p {
	margin: 20px 0;
	max-width: 700px;
}

.main__text span {
	font-weight: 600;
}

.flex {
	display: flex;
}

.result {
	/* position: absolute; */
	bottom: 0;
	width: 50%;
	margin-left: 50vw;
	background-color: var(--dark_blue);
}

.result p {
	color: var(--white);
	padding: 20px 0 5vh 2vw;
	font-weight: 300;
	max-width: 800px;
}

.result span {
	font-weight: 600;
	color: var(--yellow);
}

.single__wrapper .title__wrapper p {
	color: var(--white);
	font-size: 18px;
	line-height: 1;
}

.single__wrapper .title__wrapper h1,
.single__wrapper .title__wrapper h2 {
	line-height: 1;
	color: var(--yellow);
}

.single__wrapper .title__wrapper h1 {
	font-size: 64px;
	margin-bottom: 5px;
}

.single__wrapper .title__wrapper h2 {
	font-weight: 400;
	margin-left: 10px;
}

.slider__wrapper {
	position: absolute;
	width: 52vw;
}

.slider__inner {
	width: 40vw;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 10vh);
}




/* .thumbnail__images {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px;
	height: 100px;
	margin: 5px;
	cursor: pointer;
}

.thumbnail-images img {
	width: 100px;
	height: 100px;
	margin: 5px;
	cursor: pointer;
} */


.thumbnail__images .slider__item {
	position: absolute;
	width: 32%;
	bottom: -30%;
	transition: all .3s ease;
	cursor: pointer;
	opacity: 0;
	left: 0;
}

.thumbnail__images .slider__item.center {
	left: 50%;
	transform: translate(-50%, 0);
	display: block;
	z-index: 10;
	opacity: 1;
}

.thumbnail__images .slider__item.left {
	left: 0;
	opacity: 1;
	z-index: 10;
}

.thumbnail__images .slider__item.right {
	left: inherit;
	right: 0;
	opacity: 1;
	z-index: 10;
}

.main-image:hover .wrapper_arrow {
	opacity: 1;
}

.slider__inner .wrapper_arrow {
	opacity: 0;
	transition: all .3s ease;
	backdrop-filter: blur(16.5px);
	cursor: pointer;
	position: absolute;
	bottom: 20px;
	background-color: rgba(255, 255, 255, 0.20);
	padding: 25px;
	display: flex;
	justify-content: center;
}

.slider__inner .wrapper_arrow:hover {
	background-color: var(--yellow);
}

.slider__inner .wrapper_arrow svg {
	height: 30px;
}

.slider__inner .wrapper_arrow#right {
	right: 0;
	transform: rotate(180deg);
}

.slider-container {
	text-align: center;
}

.main-image {
	margin-bottom: 20px;
}

.thumbnail-images .thumbnails-list {
	display: flex;
	overflow: hidden;
	max-width: 500px;
	/* Ширина миниатюрной области */
	margin: 0 auto;
}

.thumbnail-images img {
	width: 100px;
	height: 100px;
	margin: 5px;
	cursor: pointer;
}

.safari #intro img.mob {
	display: block;
}


/* start single__donate */
.single__donate .slider__wrapper video {
	width: inherit;
}

.single__donate .title__wrapper h1 {
	text-transform: uppercase;
	color: var(--white);
}

.single__donate .title__wrapper h2 {
	background-color: var(--yellow);
	padding: 10px 20px;
	color: var(--dark_blue);
	font-weight: 600;
	width: fit-content;
	margin-left: 0;
}

.single__donate .title__wrapper p {
	max-width: 800px;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}

.single__donate.single__wrapper .title__wrapper {
	padding: 10vh 0 2vh 52vw;
}

.single__donate .payment__method {
	grid-template-columns: repeat(1, 1fr);
	margin-left: 52vw;
	margin-top: 2vh;
	gap: 0;
}

.payment__list {
	margin-top: 1vh;
	margin-bottom: 1vh;
}

.single__donate .line {
	height: 2px;
	width: 100%;
	background-color: var(--dark_blue);
}

.payment__method__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.payment__method__title h5 {
	width: fit-content;
	text-transform: uppercase;
	font-size: 20px;
	color: var(--dark_blue);
	white-space: nowrap;
	padding-right: 20px;
}

.single__donate .payment {
	display: block;
	overflow: hidden;
	opacity: 1;

	height: 0px;
	transition: all .3s ease;
}

.single__donate .payment.active {
	height: auto;
}

.single__donate .payment h5 {
	font-size: 20px;
	color: var(--dark_blue);
	text-transform: uppercase;
	font-weight: 400;
}

.single__donate .payment h3 {
	color: var(--dark_blue);
}

.single__donate .payment__method .btn {
	font-weight: 400;
}

.single__donate .payment_info {
	padding-left: 40px;
}

.single__donate .payment__wrapper .item p {
	max-width: 750px;
}

.single__donate.single__wrapper {
	min-height: auto;
}

.single__donate .payment__method:last-child {
	margin-bottom: 2vh;
}

.single__donate .payment__list .btn.active {
	background-color: var(--dark_blue);
}

.single__donate .payment__list .btn.active:hover {
	background-color: var(--dark_blue) !important;
	color: var(--white) !important;
	cursor: no-drop;
}

.slider__wrapper.city img {
	width: 45vw;
}

.slider__wrapper.city {
	transition: all .3s ease;
	top: 50%;
	transform: translate(0, -50%);
}

/* end single__donate */

@media screen and (min-width: 2400px) {
	#intro video {
		top: 13vh;
		scale: 1.15;
	}

	.thumbnail__images {
		grid-template-columns: repeat(4, 1fr);
	}

	#intro .wrapper {
		margin-left: 10vw;
	}

	.wrapper__description .item {
		max-width: 800px;
	}

	#map .wrapper__svg_map {
		height: 80vh;
		width: 70vw;
	}

	#map .wrapper__svg_map svg {
		height: 100%;
		width: 100%;
	}

	.bg_white video {
		scale: 1.2;
	}

	.technical__item p:nth-child(1) {
		color: var(--grey);
		border-bottom: solid 3px var(--grey_blue);
		display: table-caption;
		font-size: 32px;
	}

	.bottom__item p {
		font-size: 28px;
	}

	.technical__item p:nth-child(2) {
		color: var(--white);
		font-family: var(--title-font);
		font-size: 48px;
	}

	.marquee {
		position: absolute;
		right: 10vw;
		bottom: -10vh;

		white-space: nowrap;
		overflow: hidden;
		width: 20vw;
		padding: 0 10px;
		border-left: solid 2px var(--dark_blue);
		border-right: solid 2px var(--dark_blue);
	}

	.marquee p {
		display: inline-block;
		color: var(--dark_blue);
		font-family: var(--title-font);
		text-transform: uppercase;
		font-size: 20px;
	}

	#projects .item {
		flex: 0 0 32.5%;
		margin: 0.5vw;
	}
}

@media screen and (max-width: 1800px) {
	.title h2 {
		font-size: 13vh;
		line-height: 1.3;
	}

	.technical__item p:nth-child(1) {
		font-size: 24px;
	}

	.technical__item p:nth-child(2) {
		font-size: 36px;
	}

	.bg_white video {
		width: 60vw;
	}

	#projects .item {
		flex: 0 0 31vw;
		margin: 0 1vw;
	}

	.made_for .city {
		line-height: 1;
	}

	.made_for p:nth-child(1) {
		margin-bottom: -2px;
	}
}

@media screen and (max-width: 1524px) {
	.footer__wrapper {
		width: 99vw;
	}

	.footer__item {
		padding: 0 10px;
	}

	.footer__inner {
		padding-bottom: 50px;
	}

	.footer__item:nth-child(3) {
		width: 28%;
	}

	header li {
		font-size: 18px;
	}

	.under_header {
		height: 69px;
	}

	.project_price {
		padding: 10px 30px;
	}

	.bottom__item p {
		max-width: 45vw;
	}

	.bottom__item p,
	p {
		font-size: 20px;
	}

	.wrapper__description .item p {
		align-self: center;
		font-size: 18px;
	}

	.wrapper__description .item {
		max-width: 45vw;
	}

	.project_price h4 {
		font-size: 36px;
	}

	.project_price h3 {
		font-size: 24px;
	}

	#intro .wrapper .btn {
		font-size: 24px;
	}

	.title h2 {
		font-size: 94px;
	}

	#projects .item .btn {
		font-size: 18px;
	}

	.made_for .city {
		font-size: 24px;
	}

	.price p:nth-child(2) {
		font-size: 36px;
	}

	.left__item h4 {
		font-size: 24px;
		padding: 10px 30px;
	}

	.left__item .technical__item p {
		padding-left: 5vw;
	}

	/* .bg_white video {
		left: -25vw;
	} */

	#technical_characteristics .title p {
		font-size: 24px;
	}

	#technical_characteristics .title h3 {
		font-size: 36px;
	}

	.bg_white {
		height: auto;
	}

	#map .amount p {
		font-size: 64px;
	}

	.title__inner h3 {
		font-size: 36px;
	}

	.title__inner p {
		max-width: 40vw;
	}

	.single__donate .payment__wrapper,
	.single__donate .payment__method {
		grid-template-columns: repeat(1, 1fr);
	}

	.single__donate .payment__wrapper.uah .item:nth-child(1),
	.single__donate .payment__wrapper.uah .item:nth-child(4),
	.single__donate .payment__wrapper.uah .item:nth-child(1),
	.single__donate .payment__wrapper.uah .item:nth-child(4),
	.single__donate .payment__wrapper.other .item:nth-child(1) {
		grid-column: 1;
	}
}

@media screen and (max-width: 1400px) {
	.title h2 {
		font-size: 75px;
	}

	p {
		font-size: 18px;
	}

	.technical__item p:nth-child(1) {
		font-size: 18px;
	}

	.technical__item p:nth-child(2) {
		font-size: 24px;
	}

	.technical__item {
		padding: 5px 0;
	}

	.bg_white video {
		width: 50vw;
		/* left: -20vw; */
		bottom: -50px;
	}

	.marquee {
		right: 5vw;
		width: 30vw;
		padding: 0 5px;
	}

	.marquee p {
		font-size: 20px;
		line-height: 1;
	}
}

@media screen and (max-width: 1300px) {
	header nav {
		position: absolute;
		background-color: var(--dark_blue);
		top: -1400px;
		left: 0;
		height: 100vh;
		width: 100vw;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: all .3s ease;
	}

	.main__text {
		padding: 2vh 0 2vh 52vw;
	}

	.single__wrapper .title__wrapper h1 {
		font-size: 36px;
	}

	.single__wrapper .title__wrapper .flex {
		align-items: center;
	}

	.single__wrapper .title__wrapper object {
		height: 18px;
	}

	.single__wrapper .title__wrapper p {
		font-size: 14px;
	}

	.single__wrapper .title__wrapper h2 {
		font-size: 18px;
	}

	.under_header {
		height: 57px;
	}

	header nav.open {
		top: 0;
		left: 0;
	}

	header ul {
		display: flex;
		align-content: center;
		justify-content: center;
		flex-wrap: wrap;
		max-width: 500px;
		padding-left: 0;
	}

	.mob_logo svg {
		width: 30vw;
		display: block;
		margin-bottom: 30px;
	}

	#nav-icon1 {
		width: 50px;
		height: 45px;
		position: relative;
		transform: rotate(0deg);
		transition: .5s ease-in-out;
		cursor: pointer;
	}

	#nav-icon1 span {
		display: block;
		position: absolute;
		height: 3px;
		width: 100%;
		background: var(--white);
		border-radius: 9px;
		opacity: 1;
		left: 0;
		transform: rotate(0deg);
		transition: .3s ease;
	}

	#nav-icon1 span:nth-child(1) {
		top: 6px;
	}

	#nav-icon1 span:nth-child(2) {
		top: 18px;
	}

	#nav-icon1 span:nth-child(3) {
		top: 30px;
	}

	#nav-icon1.open span:nth-child(1) {
		top: 18px;
		transform: rotate(135deg);
	}

	#nav-icon1.open span:nth-child(2) {
		opacity: 0;
		left: -60px;
	}

	#nav-icon1.open span:nth-child(3) {
		top: 18px;
		transform: rotate(-135deg);
	}

	#technical_characteristics {
		height: auto;
	}

	.payment__wrapper .item p {
		font-size: 18px !important;
	}
}

@media screen and (max-width: 1200px) {
	#video_slider {
		height: 300px;
	}

	#map .wrapper__svg_map {
		width: 70vw;
		height: inherit;
	}

	.title__inner p {
		max-width: 70vw;
	}

	#map {
		padding-bottom: 300px;
	}

	.footer__item:nth-child(3) {
		order: 2;
		width: 50%;
	}

	.footer__item:nth-child(1) {
		order: 1;
		width: 50%;
	}

	.footer__item:nth-child(2) {
		order: 3;
		width: 100%;
	}

	p {
		font-size: 18px;
	}

	#intro,
	.wrapper_intro {
		width: 100%;
		height: 100%;
		max-height: 700px;
	}

	.marquee {
		display: none;
	}

	#intro video {
		top: 30%
	}

	.project_price {
		top: 10%;
	}

	.title h2 {
		font-size: 64px;
	}

	.title h1 {
		font-size: 24px;
	}

	.wrapper_intro {
		padding: 30px 0;
	}

	#intro video {
		right: 0;
	}

	/* .wrapper__description object {
		width: 15%;
	} */

	.price p:nth-child(2) {
		font-size: 24px;
	}

	.btn {
		padding: 5px 15px;
	}

	.made_for .city {
		font-size: 18px;
	}

	.made_for p:nth-child(1) {
		font-size: 14px;
		margin-bottom: -5px;
	}

	.price p:nth-child(1) {
		margin-bottom: -10px;
	}

	#projects {
		margin-top: 70px;
	}

	.technical__item p:nth-child(1) {
		width: auto;
	}

	#projects .item {
		flex: 0 0 48vw;
	}

	#map .amount {
		position: absolute;
		left: 0;
	}

	#map .amount p {
		font-size: 36px;
		padding-top: 10px;
	}

	#map .wrapper__img {
		margin-top: -25px;
		right: -50px;
	}

	.arrow_prew {
		bottom: 0;
		left: 1vw;
	}

	.arrow__next {
		bottom: 0;
		right: 1vw;
	}

	#video_slider {
		margin-bottom: 50px;
	}

}

@media screen and (max-width: 1000px) {
	#map .wrapper__svg_map {
		height: inherit;
		width: 90%;
	}

	.title__inner p {
		max-width: 90%;
	}

	.bottom__item p,
	p {
		max-width: inherit;
	}

	#map {
		padding-bottom: 300px;
	}

	#technical_characteristics .title h3 {
		font-size: 24px;
	}

	.left__item h4 {
		font-size: 18px;
	}

	#video_slider {
		height: 300px;
	}

	.close {
		top: 30px;
		right: 30px;
	}

	.title h2 {
		font-size: 48px;
	}

	.project_price h3 {
		font-size: 18px;
	}

	.wrapper__description .item p {
		font-size: 14px;
		;
	}

	.wrapper__description object {
		width: 50px;
		margin-right: 20px;
	}

	#projects .item .btn {
		font-size: 10px;
	}

	.price p:nth-child(1) {
		margin-bottom: inherit;
	}

	#projects .description {
		padding: 10px 0;
	}


	.made_for span {
		font-size: 14px;
	}

	/* #projects .item {
		flex: 0 0 48vw;
	} */

	#map .amount {
		position: absolute;
		box-shadow: 0px 0px 84px 0px var(--white);
		left: 40px;
	}

	#map .amount p {
		font-size: 24px;
	}

	#map .amount p {
		font-size: 18px;
		padding: 10px 20px;
	}

	#map .amount {
		margin-left: 0;
	}

	#map .wrapper__img {
		display: none;
	}
}

@media screen and (min-width: 540px) {
	.left__item {
		margin-top: -20px;
	}

	#intro img.mob {
		position: absolute;
		right: 0;
		top: 13vh;
		width: 55vw;
		z-index: 10;
		pointer-events: none;
	}
}

@media screen and (max-width: 540px) {
	.slider__wrapper.city img {
		width: 100vw;
	}

	.slider__wrapper.city {
		position: relative;
		top: inherit;
		transform: inherit;
	}

	.single__donate .payment__method {
		margin-left: inherit;
		background-color: var(--white);
		padding-left: 10px;
	}

	.single__donate.single__wrapper .title__wrapper h2 {
		margin-bottom: 5px;
		padding: 5px 10px;
		padding-bottom: 2px;
	}

	.single__donate .slider__wrapper .mob {
		margin-bottom: -40px;
	}

	.single__donate .single__wrapper .title__wrapper h2 {
		padding-bottom: 5px;
		margin-bottom: 5px;
	}

	.single__donate .slider__wrapper {
		position: relative;
	}

	.single__donate .payment_info {
		padding-left: 10px;
	}

	.single__donate .payment h3 {
		font-size: 20px;
	}

	.single__donate .payment__wrapper .item p {
		font-size: 15px !important;
	}

	.single__donate .payment h5 {
		font-size: 16px;
	}

	.single__donate.single__wrapper .title__wrapper {
		margin-left: 10px;
		padding: 2vh 0 0 0;
	}

	.slider__inner .wrapper_arrow {
		opacity: 1;
		bottom: 0px;
		padding: 10px;
	}

	#map .amount {
		bottom: 0;
	}

	.main-image img {
		max-height: 400px;
	}

	.thumbnails-list img {
		max-height: 80px;
	}

	.slider__wrapper {
		position: relative;
		width: 100vw;
	}

	.slider__inner {
		position: relative;
		width: 100%;
		top: inherit;
		left: inherit;
		transform: inherit;
		background-color: var(--dark_blue);
	}

	.single__wrapper {
		height: auto;
		background-color: var(--dark_blue);
	}

	.video__wrapper {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.close {
		top: 20px;
		right: 20px;
	}

	.main__text {
		background-color: var(--white);
	}

	.main__text {
		padding: .1vh 3vw .1vh 3vw;
	}

	.single__wrapper .title__wrapper {
		padding: .1vh 3vw 3vh 3vw;
	}

	.result {
		position: relative;
		margin-left: 0;
		width: 100%;
	}

	.main-image {
		margin-bottom: 30%;
	}

	.thumbnail__images .slider__item {
		bottom: -30%;
	}

	.thumbnail__images {
		height: auto;
		margin: auto;
	}

	.footer__logo {
		margin-left: 0;
	}

	.footer__item {
		padding: 0;
		margin: 20px auto;
	}

	.footer__inner {
		padding-top: 40px;
	}

	footer .nav-link {
		padding-left: 0;
		padding-right: 15px;
	}

	.footer__item:nth-child(3) {
		order: 3;
		width: 95%;
	}

	.footer__item:nth-child(1) {
		order: 1;
		width: 95%;
	}

	.footer__item:nth-child(2) {
		order: 2;
		width: 95%;
	}

	.wrapper__description object {
		margin-right: 10px;
	}

	#map .wrapper__img {
		display: none;
	}

	#map svg {
		width: 90vw;
	}

	#map .wrapper__svg_map {
		height: auto;
	}

	#technical_characteristics {
		height: auto;
	}

	#map {
		padding: 40px 0;
	}

	p {
		font-size: 16px
	}

	.desktop {
		display: none;
	}

	.mob {
		display: block;
	}

	header ul {
		flex-direction: column;
		align-items: center;
	}

	.mob_logo svg {
		width: 50vw;
	}

	#intro,
	.wrapper_intro {
		width: 100%;
	}

	#intro video {
		position: relative;
		top: 0;
		width: 100%;
		margin-bottom: -13%;
	}

	.project_price {
		display: none;
		left: 0;
		right: inherit;
		top: -118px;
		z-index: 10;
	}

	#intro .wrapper {
		justify-content: flex-start;
	}

	#intro img.mob {
		margin-bottom: -40px;
		z-index: 10;
		position: relative;
	}

	.wrapper__description .item {
		max-width: 90%;
	}

	.title h2 {
		font-size: 64px;
	}

	a.btn.grey.to_id {
		display: none;
	}

	.item__wrapper {
		margin-top: 40px;
		/* flex-direction: column;
		align-items: center; */
	}

	#projects .item {
		width: 90vw;
		margin: 0 5vw;
	}

	#projects .item {
		flex: none
	}

	.scroll_animation {
		opacity: 1;
	}

	.title__inner {
		margin-left: 0;
		padding-top: 50px;
		padding-bottom: 40px;
	}

	/* #projects .item:nth-child(1) {
		margin-top: 0;
	}

	#projects .item {
		margin: 20px 0;
	} */

	#projects {
		margin-top: 0;
	}

	.title__inner h3 {
		font-size: 24px;
	}

	#slider .slider__item.active {
		width: 100%;
	}

	#video_slider {
		height: 320px;
	}

	.arrow_prew,
	.arrow__next {
		bottom: 20px;
		/* display: none; */
	}

	#video_slider {
		margin-bottom: 0;
	}

	/* #map .wrapper__img video {
		width: 40vw;
	} */

	.arrow_prew {
		transform: rotate(-180deg);
	}

	.arrow__next {
		transform: rotate(0);
	}

	#slider .slider__item.left,
	#slider .slider__item.right {
		/* top: -20%; */
		display: none;
	}

	#technical_characteristics .title h3 {
		font-size: 18px;
	}

	#technical_characteristics img.mob {
		/*margin-top: -100px;*/
		/*display: none;*/
	}

	#technical_characteristics .grid {
		display: flex;
		flex-direction: column;
		/* overflow: hidden;
		position: relative;
		grid-template-columns: 1fr; */
	}

	.right__item {
		display: flex;
		flex-wrap: wrap;
		/* border-left: solid 2px var(--grey_blue); */
		/* display: inline-grid; */
	}

	.left__item .technical__item {
		width: fit-content;
	}

	.left__item {
		display: flex;
		flex-wrap: wrap;
	}

	.right__item .technical__item {
		width: 50%;
	}

	.right__item .technical__item:nth-child(1) {
		order: 1;
		width: 50%;
	}

	.right__item .technical__item:nth-child(2) {
		order: 3;
		width: 50%;
	}

	.right__item .technical__item:nth-child(3) {
		order: 2;
	}

	.right__item .technical__item:nth-child(1) p {
		display: block;
	}

	.right__item .technical__item p:nth-child(2) {
		width: max-content;
	}

	.left__item h4 {
		font-size: 14px;
		padding: 5px;
		width: 100%;
	}

	.right__item,
	.left__item {
		/* grid-row: span 1; */
	}

	.bg_white {
		display: block;
		position: relative;
		height: 100px;
		margin-top: 100px;
		margin-bottom: 50px;
		grid-row: span 2;
	}

	.bg_white img {
		display: block;
		position: absolute;
		top: -150px;
	}

	.bottom__item p {
		max-width: 90%;
		margin: auto;
		padding: 10px 0;
	}

	#technical_characteristics video {
		display: none;
		position: absolute;
		width: 360px;
		right: -100px;
		top: 0;
		left: inherit;
	}

	#technical_characteristics .title h3 {
		padding: 5px 10px;
	}

	/* #video_slider {
		display: none;
	} */

	#technical_characteristics {
		position: relative;
	}

	#map .flex {
		flex-direction: column;
		align-items: flex-end;
		position: relative;
	}

	#map .wrapper__svg_map {
		width: 90vw;
		margin: auto;
	}

	.title__line {
		margin: 0 20px;
		padding-left: 20px;
	}

	#map .title__wrapper {
		position: relative;
	}

	#map .title__inner {
		background: none;
		backdrop-filter: none;
	}

	/* #map .wrapper__img {
		width: 30vw;
	} */

	.title__inner p {
		max-width: 90vw;
	}

	.technical__item p {
		padding-left: 5vw;
	}

	.technical__item p:nth-child(1) {
		font-size: 18px !important
	}

	.technical__item p:nth-child(2) {
		font-size: 18px !important
	}

	.bottom__item p {
		font-size: 14px;
	}

	.made_for span {
		font-size: 10px;
	}

	#projects .next-button {
		transform: rotate(0) !important;
		top: -10px;
	}

	#projects .prev-button {
		transform: rotate(180deg);
		top: -10px;
	}

	#technical_characteristics .title p {
		font-size: 14px;
		margin-top: 10px;
	}
}

@media screen and (max-width: 540px) {
	.title h2 {
		font-size: 48px;
	}
}

@media screen and (max-width: 448px) {
	.title h2 {
		font-size: 36px;
		padding: 5px 10px;
	}

	#intro .wrapper .btn {
		font-size: 18px;
	}

	#intro .wrapper__button object {
		height: 18px;
	}

	.title h1 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	#intro .wrapper .btn {
		padding: 5px 10px;
	}

}