/* open-sans-regular - cyrillic */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/open-sans-v34-cyrillic-regular.woff2')
			format('woff2'),
		/* Chrome 36+, Opera 23+, Firefox 39+ */
			url('./assets/fonts/open-sans-v34-cyrillic-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-500 - cyrillic */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 500;
	src: url('./assets/fonts/open-sans-v34-cyrillic-500.woff2') format('woff2'),
		/* Chrome 36+, Opera 23+, Firefox 39+ */
			url('./assets/fonts/open-sans-v34-cyrillic-500.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-700 - cyrillic */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	src: url('./assets/fonts/open-sans-v34-cyrillic-700.woff2') format('woff2'),
		/* Chrome 36+, Opera 23+, Firefox 39+ */
			url('./assets/fonts/open-sans-v34-cyrillic-700.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* montserrat-regular - cyrillic */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/montserrat-v25-cyrillic-regular.woff2')
			format('woff2'),
		/* Chrome 36+, Opera 23+, Firefox 39+ */
			url('./assets/fonts/montserrat-v25-cyrillic-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-500 - cyrillic */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 500;
	src: url('./assets/fonts/montserrat-v25-cyrillic-500.woff2') format('woff2'),
		/* Chrome 36+, Opera 23+, Firefox 39+ */
			url('./assets/fonts/montserrat-v25-cyrillic-500.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-700 - cyrillic */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	src: url('./assets/fonts/montserrat-v25-cyrillic-700.woff2') format('woff2'),
		/* Chrome 36+, Opera 23+, Firefox 39+ */
			url('./assets/fonts/montserrat-v25-cyrillic-700.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

/* Стили для модального окна */

.modal {
	display: none; /* Скрыть модальное окно изначально */
	position: fixed; /* Фиксированная позиция */
	z-index: 2; /* Большой z-index для размещения окна наверху */
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4); /* Затемнение фона */
}
.close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 24px;
	color: #fff;
	cursor: pointer;
}
button.form__btn {
	background: none;
	border: none;
	color: inherit;
	font: inherit;
	line-height: normal;
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	outline: none;
}
button.form__btn {
	display: inline-block;
	padding: 10px 20px;
	color: #744f00;
	font-size: 16px;
	text-decoration: none;
	text-transform: uppercase;
	overflow: hidden;
	transition: 0.5s;
	margin-top: 40px;
	letter-spacing: 4px;
	background-color: #f7a801;
	border: none;
	cursor: pointer;
	outline: none;
	border: 1px solid black;
}
button.form__btn:hover {
	background: #f7a801;
	color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 5px #f7a801, 0 0 25px #f7a801, 0 0 50px #f7a801,
		0 0 100px #f7a801;
}
button.form__btn span {
	position: absolute;
	display: block;
}
button.form__btn span:nth-child(1) {
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #f7a801);
	animation: btn-anim1 1s linear infinite;
}
@keyframes btn-anim1 {
	0% {
		left: -100%;
	}
	50%,
	100% {
		left: 100%;
	}
}
button.form__btn span:nth-child(2) {
	top: -100%;
	right: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(180deg, transparent, #f7a801);
	animation: btn-anim2 1s linear infinite;
	animation-delay: 0.25s;
}
@keyframes btn-anim2 {
	0% {
		top: -100%;
	}
	50%,
	100% {
		top: 100%;
	}
}
button.form__btn span:nth-child(3) {
	bottom: 0;
	right: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(270deg, transparent, #f7a801);
	animation: btn-anim3 1s linear infinite;
	animation-delay: 0.5s;
}
@keyframes btn-anim3 {
	0% {
		right: -100%;
	}
	50%,
	100% {
		right: 100%;
	}
}
button.form__btn span:nth-child(4) {
	bottom: -100%;
	left: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(360deg, transparent, #f7a801);
	animation: btn-anim4 1s linear infinite;
	animation-delay: 0.75s;
}
@keyframes btn-anim4 {
	0% {
		bottom: -100%;
	}
	50%,
	100% {
		bottom: 100%;
	}
}

.login-box {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	padding: 40px;
	transform: translate(-50%, -50%) scale(1.5);
	background: rgba(0, 0, 0, 0.8);
	box-sizing: border-box;
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
	border-radius: 20px;
}

.login-box .user-box {
	position: relative;
}
.login-box .user-box input {
	width: 100%;
	padding: 10px 0;
	font-size: 16px;
	color: #fff;
	margin-bottom: 30px;
	border: none;
	border-bottom: 1px solid #fff;
	outline: none;
	background: transparent;
}
.login-box .user-box label {
	position: absolute;
	top: 0;
	left: 0;
	padding: 10px 0;
	font-size: 16px;
	color: #fff;
	pointer-events: none;
	transition: 0.5s;
}
.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
	top: -20px;
	left: 0;
	color: #f7a801;
	font-size: 12px;
}
.login-box form button.form__btn {
	position: relative;
	display: inline-block;
	padding: 10px 20px;
	color: #f7a801;
	font-size: 16px;
	text-decoration: none;
	text-transform: uppercase;
	overflow: hidden;
	transition: 0.5s;
	margin-top: 40px;
	letter-spacing: 4px;
}
.login-box a:hover {
	background: #f7a801;
	color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 5px #f7a801, 0 0 25px #f7a801, 0 0 50px #f7a801,
		0 0 100px #f7a801;
}
.login-box a span {
	position: absolute;
	display: block;
}
.login-box a span:nth-child(1) {
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #f7a801);
	animation: btn-anim1 1s linear infinite;
}
@keyframes btn-anim1 {
	0% {
		left: -100%;
	}
	50%,
	100% {
		left: 100%;
	}
}
.login-box a span:nth-child(2) {
	top: -100%;
	right: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(180deg, transparent, #f7a801);
	animation: btn-anim2 1s linear infinite;
	animation-delay: 0.25s;
}
@keyframes btn-anim2 {
	0% {
		top: -100%;
	}
	50%,
	100% {
		top: 100%;
	}
}
.login-box a span:nth-child(3) {
	bottom: 0;
	right: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(270deg, transparent, #f7a801);
	animation: btn-anim3 1s linear infinite;
	animation-delay: 0.5s;
}
@keyframes btn-anim3 {
	0% {
		right: -100%;
	}
	50%,
	100% {
		right: 100%;
	}
}
.login-box a span:nth-child(4) {
	bottom: -100%;
	left: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(360deg, transparent, #f7a801);
	animation: btn-anim4 1s linear infinite;
	animation-delay: 0.75s;
}
@keyframes btn-anim4 {
	0% {
		bottom: -100%;
	}
	50%,
	100% {
		bottom: 100%;
	}
}

html {
	box-sizing: border-box;
}
*,
*::before,
*::after {
	box-sizing: inherit;
}
body {
	/* width: 100%; */
	/* overflow-x: hidden; */
	margin: 0 auto;
	/* max-width: 100%; */
	color: #333;
	/* min-width: 1200px; */
}

b,
strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

button {
	cursor: pointer;
	background-color: rgb(247, 168, 1);
	border-radius: 5px;
	border: none;
	font-size: 20px;
	color: rgb(255, 255, 255) !important;
	font-family: 'Open Sans';
	box-shadow: 4px 4px 1px 0px rgba(0, 0, 0, 0.25);
	text-align: center;
	font-weight: 400;
	visibility: visible;
	letter-spacing: 0.03em;
	transition: background-color 0.3s ease;
	-webkit-transition: background-color 0.3s ease;
	width: 330px;
	height: 60px;
	animation-name: popUp;
	animation-duration: 0.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-delay: 1s;
	margin-bottom: 50px;
}

@keyframes slideFromLeft {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}

@keyframes popUp {
	from {
		transform: scale(0.7);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.header {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 80px;
	overflow: hidden;
}

.header__title {
	text-align: left;
	font-family: 'Open Sans';
	font-size: 48px;
	line-height: 62px;
	letter-spacing: 0em;
	opacity: 1;
	font-weight: 500;
	animation-name: slideFromLeft;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-delay: 0.5s;
}

.header__subtitle {
	text-align: left;
	font-family: 'Open Sans';
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 0em;
	opacity: 1;
	padding-bottom: 40px;
}

.header__wrap {
	display: flex;
}

.header__cont {
	width: 40%;
	padding: 10px 80px 10px 80px;
}

.header__img {
	background-image: url('./assets/img/brick-wall-in-modern-kitchen-2021-08-26-15-44-39-utc.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 60%;
	height: auto;
	padding: 0 5px 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wrapper {
	padding: 0 20px;
	max-width: 1120px;
	margin: 0 auto;
}

.presents__text {
	/* margin-bottom: 100px; */
}

.preview__line {
	width: 100%;
	height: 3px;
	background-color: rgb(52, 181, 117);
	border-radius: 0px;
	display: inline-block;
	vertical-align: top;
	max-width: 1120px;
	/* margin: 0 5px; */
}

.preview__title {
	text-align: center;
	font-family: 'Montserrat';
	font-size: 40px;
	line-height: 1.6;
	letter-spacing: 0em;
	font-weight: 700;
}

.preview__elements,
.guarantee__elements,
.presents__elements {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 80px;
}

.preview__element-humidity,
.preview__element-temp,
.preview__element-life,
.guarantee__element-blackout,
.guarantee__element-window,
.guarantee__element-heart,
.present__element-robot {
	padding: 50px 0;
	max-width: 343px;
	display: flex;
	flex-direction: column; /* изменяем направление флекс-контейнера на вертикальное */
	flex-grow: 1;
	/* padding: 0 10px; добавляем отступы по бокам, чтобы не было слишком плотного содержимого */
}

.preview__element-img,
.guarantee__element-img,
.present__element-img {
	width: 100%;
	height: auto; /* чтобы изображения были адаптивными */
	margin-bottom: 25px; /* добавляем небольшой отступ снизу */
}

.preview__element-title,
.guarantee__element-title {
	text-align: left;
	font-family: 'Montserrat';
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0em;
	font-weight: 700;
	/* margin: 0; */
	margin-bottom: 20px; /* добавляем небольшой отступ снизу */
}

.preview__element-subtitle,
.guarantee__element-subtitle,
.present__element-subtitle {
	text-align: left;
	font-family: 'Montserrat';
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0em;
	opacity: 0.8;
	font-weight: 400;
	margin: 0;
	flex-grow: 1; /* чтобы содержимое элемента занимало всё свободное место */
	display: flex;
	flex-direction: column; /* добавляем вертикальное направление */
	justify-content: space-between; /* распределяем свободное пространство между абзацами */
}

.guarantee {
	margin-bottom: 80px;
}

.guarantee__wrap {
	text-align: center;
}
.guarantee__title {
	text-align: center;
	font-family: 'Montserrat';
	font-size: 40px;
	line-height: 1.1;
	letter-spacing: 0em;
	margin-bottom: 40px;
}

.guarantee__btn {
	text-decoration: none;
	white-space: normal;
	word-wrap: break-word;
	transition-property: box-shadow, transform, color, background-color,
		border-color !important;
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	margin-bottom: 80px;
}

.design {
	background-image: url(./assets/img/modern-800.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-color: rgba(0, 0, 0, 0.44);
	background-blend-mode: multiply;
	width: 100%;
	height: 751px;
	text-align: center;
}

.design__title {
	margin: 80px 0 40px 0;
	padding-top: 80px;
	text-align: center;
	font-family: 'Montserrat';
	font-weight: 700;
	font-size: 48px;
	line-height: 57.6px;
	letter-spacing: 0em;
	opacity: 1;
	color: #fff;
}

.design__wrap,
.tech__wrap {
	background-color: rgba(255, 255, 255, 0.89);
	border-radius: 20px;
	max-width: 860px;
	height: 320px;
	margin: 0 auto;
}

.design__subtitle {
	margin: 0;
	padding: 20px;
	text-align: center;
	font-family: 'Montserrat';
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0em;
	opacity: 1;
}

.design__btn {
	background-color: rgb(26, 162, 13);
	margin-top: 40px;
	padding-top: 14px;
	padding-bottom: 14px;
	font-size: 20px;
	box-shadow: 4px 4px 1px 0px rgba(0, 0, 0, 0.25);
}

.ceo {
	margin-top: 120px;
	margin-bottom: 140px;
}

.ceo__wrap {
	display: flex;
}

.ceo__achiev {
	display: flex;
	/* flex-wrap: wrap; */
	flex-direction: column;
	justify-content: space-between;
	margin-bottom: 20px;
}

.ceo__achiev-text {
	max-width: 610px;
}

.ceo__achiev-title {
	margin: 0;
	text-align: left;
	font-family: 'Montserrat';
	font-size: 40px;
	line-height: 0.9;
	letter-spacing: 2.5px;
	opacity: 1;
	font-weight: 700;
}

.ceo__achiev-subtitle {
	padding: 10px 5px 10px 0;
	margin: 0;
	text-align: left;
	font-family: 'Montserrat';
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0em;
	opacity: 1;
}

.ceo__achiev-desc {
	margin: 0 0 40px 0;
	text-align: left;
	font-family: 'Montserrat';
	font-size: 20px;
	line-height: 1.6;
	letter-spacing: 0em;
	opacity: 1;
}

.ceo__noem {
	background-image: url(./assets/img/Noem.jpg);
	background-size: cover;
	border-radius: 20px;
	height: 750px;
	max-width: 470px;
	width: 100%;
	background-position: center;
	margin-left: 20px;
}

.slider {
	position: relative;
	height: 615px;
	width: 100%;
	overflow: hidden;
}

.slider__track {
	display: flex;
	height: 100%;
	width: 400%;
	transition: transform 0.5s ease-in-out;
}

.slider__slide {
	position: relative;
	flex-basis: 25%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-color: rgba(0, 0, 0, 0.44);
	background-blend-mode: multiply;
	text-align: center;
}

.slider__slide:nth-of-type(1) {
	background-image: url('./assets/img/dark-grey-and-white.jpg');
}

.slider__slide:nth-of-type(2) {
	background-image: url('./assets/img/kitchen-with-contemporary-furniture-and-appliances-2022-07-08-19-13-05-utc.jpg');
}

.slider__slide:nth-of-type(3) {
	background-image: url('./assets/img/illuminated-cabinets-in-modern-kitchen-2022-07-11-15-38-10-utc.jpg');
}

.slider__slide:nth-of-type(4) {
	background-image: url('./assets/img/slider4.png');
}

.slider__title {
	margin: 200px 0 0 0;
	/* position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); */
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	font-family: 'Montserrat';
	font-size: 48px;
	line-height: 1.2;
	letter-spacing: 0em;
	opacity: 1;
}

.slider__price {
	/* position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%); */
	color: #fff;
	text-align: center;
	font-family: 'Montserrat';
	font-size: 20px;
	line-height: 1.6;
	letter-spacing: 0em;
	opacity: 1;
}

.slider__btn {
	text-align: center;
	background-color: rgba(52, 181, 178, 0);
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-style: solid;
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-right-width: 2px;
	border-color: rgb(42, 145, 142);
	padding-top: 14px;
	padding-bottom: 14px;
	font-size: 16px;
	color: rgb(255, 255, 255) !important;
}

.slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: transparent;
	border: none;
	font-size: 60px;
	color: #fff;
	cursor: pointer;
}

.slider__arrow--left {
	left: 0;
}

.slider__arrow--right {
	right: 0;
}

.slider__dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
}

.slider__dot {
	margin: 0 3px;
	width: 10px;
	height: 10px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 100%;
	padding: 2px;
	transition: background-color 0.3s;
	vertical-align: middle;
	cursor: pointer;
}

.current-slide {
	opacity: 1;
	pointer-events: auto;
}

.slider__dot--active {
	background-color: rgb(52, 181, 178);
}

.presents__title {
	margin-top: 80px;
	text-align: left;
	font-family: 'Montserrat';
	font-weight: bold;
	font-size: 40px;
	line-height: 1.2;
	letter-spacing: 0em;
}

.presents__subtitle {
	text-align: left;
	font-family: 'Montserrat';
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0em;
}

.present__element-subtitle {
	display: block;
}

.tech {
	background-image: url(./assets/img/lemons-sliced-and-whole-with-leaves-2021-09-03-11-14-02-utc.webp);
	background-position: center center;
	background-size: cover;
	background-origin: padding-box;
	background-repeat: no-repeat;
	background-color: rgba(0, 0, 0, 0.44);
	background-blend-mode: multiply;
	width: 100%;
	overflow: hidden;
	height: 457px;
	text-align: center;
	margin-bottom: 80px;
	padding-left: 20px;
	padding-right: 20px;
}

.tech__wrap {
	margin-top: 80px;
	max-width: 1130px;
	height: 297px;
	background-color: rgb(255, 255, 255);
}

.tech__cont {
	padding: 20px;
	display: flex;
	align-items: stretch;
	grid-gap: 20px;
	height: 297px;
	/* align-items: center; */
	/* height: 257px; */
}

.tech__text {
	text-align: left;
	font-family: 'Open Sans';
	font-size: 40px;
	line-height: 1.3;
	letter-spacing: 0em;
}
.tech__title {
	/* padding: 10px 10px 0 10px; */
	max-width: 420px;
	width: 100%;
	margin: 0;
	/* height: 237px; */
	text-align: left;
	font-family: 'Open Sans';
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 0em;
	/* overflow: hidden; */
}

.tech__img {
	background-size: cover;
	border-radius: 39px;
	background-image: url(./assets/img/tech.jpg);
	/* height: 237px; */
	background-position: center;
	background-repeat: no-repeat;
	/* max-width: 100%; */
	/* width: 660px; */
	width: 100%;
}

.order {
	text-align: center;
}

.order__title {
	text-align: center;
	font-family: 'Montserrat';
	font-size: 40px;
	line-height: 1.4;
	letter-spacing: 0em;
	max-width: 764px;
	margin: 0 auto;
	margin-bottom: 60px;
}

.order__subtitle {
	text-align: center;
	font-family: 'Montserrat';
	font-size: 20px;
	line-height: 1.6;
	letter-spacing: 0em;
	margin-bottom: 60px;
}

.oder__cont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.order__item {
	max-width: 426px;
	/* padding: 0 44px; */
	text-align: center;
	flex-basis: 50%;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-delay: 0.5s;
	animation-play-state: paused;
}

/* Анимация для первого блока */
@keyframes slide-in-left-1 {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.order__item:nth-child(1) {
	animation-name: slide-in-left-1;
}

/* Анимация для второго блока */
@keyframes slide-in-right-1 {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.order__item:nth-child(2) {
	animation-name: slide-in-right-1;
}

/* Анимация для третьего блока */
@keyframes slide-in-top-1 {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.order__item:nth-child(3) {
	animation-name: slide-in-top-1;
}

/* Анимация для четвертого блока */
@keyframes slide-in-bottom-1 {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.order__item:nth-child(4) {
	animation-name: slide-in-bottom-1;
}

.order__img {
	width: 82px;
	height: 82px;
}

.order__item-title {
	text-align: center;
	font-family: 'Montserrat';
	font-size: 20px;
	line-height: 1.1;
	letter-spacing: 0em;
}

.order__item-subtitle {
	text-align: left;
	font-family: 'Montserrat';
	font-size: 20px;
	line-height: 1.7;
	letter-spacing: 0em;
	margin-bottom: 40px;
}

.order__btn {
	margin: 10px 0 85px 0;
}

.footer {
	background: #30373e;
	padding: 80px 0 0 0;
}
.footer__logo {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	width: 20%;
}
.footer__logo-img {
	width: 150px;
	height: 155px;
}

/* .footer__logo-tel {
	color: #fff;
	text-decoration: none;
	font-family: 'Montserrat';
	font-size: 24px;
	font-weight: 700;
	line-height: 36px;
} */

.footer__logo-tel {
	color: #fff;
	text-decoration: none;
	font-family: 'Montserrat';
	font-size: 24px;
	font-weight: 700;
	line-height: 36px;
	transition: color 0.3s ease-in-out;
	cursor: pointer;
	display: inline-block;
	/* animation: pulse 1s ease-in-out infinite; */
}

.footer__logo-tel:hover {
	color: #f7a801;
}

/* @keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(247, 168, 1, 0.7);
	}
	70% {
		transform: scale(1.1);
		box-shadow: 0 0 0 10px rgba(247, 168, 1, 0);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(247, 168, 1, 0);
	}
} */

.footer__item {
	display: flex;
	flex-wrap: wrap;
}

.footer__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 80%;
}

.footer__menu-title {
	font-family: 'Montserrat';
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 24px;
	margin-bottom: 60px;
}

.footer__menu-link {
	text-decoration: none;
	font-family: 'Montserrat';
	font-weight: 400;
	cursor: pointer;
	color: #9b9b9b;
	font-size: 15px;
	font-weight: 400;
	line-height: 30px;
}

.footer__menu-link:hover,
.footer__menu-link:focus,
.footer__menu-link:active {
	color: #daa14c;
	transition-duration: 0.5s;
}

@media screen and (max-width: 960px) {
	/* body {
		min-width: 768px;
	}
	.wrapper {
		max-width: 650px;
	} */
	.preview__elements,
	.guarantee__elements,
	.presents__elements {
		flex-direction: column;
	}

	.preview__element-humidity,
	.preview__element-temp,
	.preview__element-life,
	.guarantee__element-blackout,
	.guarantee__element-window,
	.guarantee__element-heart,
	.present__element-robot {
		max-width: 100%;
	}

	.design__wrap {
		max-width: 670px;
		height: auto;
	}

	.ceo__achiev {
		max-width: 350px;
	}

	.ceo__noem {
		height: 850px;
		max-width: 100%;
		width: 100%;
	}
	.tech {
		height: 633px;
	}
	.tech__wrap {
		max-width: 670px;
		height: auto;
	}
	.tech__cont {
		/* flex-direction: column; */
		/* justify-content: flex-start; */
		height: 473px;
	}
	.tech__title {
		width: 100%;
	}
	.tech__title {
		height: 150px;
	}

	.order__item {
		flex-basis: 100%;
		align-items: center;
	}
	.order__item-subtitle {
		text-align: center;
	}
	.order__title {
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}
}

@media screen and (max-width: 767px) {
	button {
		box-sizing: border-box;
		padding: 0;
		min-height: 54px;
		max-width: 328px;
		width: 100%;
	}

	.login-box {
		transform: none;
		top: 30%;
		left: 0;
		width: 100%;
	}

	.header__wrap {
		flex-direction: column;
		padding: 0 20px;
	}

	.header__cont {
		width: 100%;
		padding: 10px;
		text-align: center;
	}

	.header__title {
		/* text-align: center; */
		font-size: 34px;
		line-height: 44px;
	}

	.header__img {
		width: 100%;
		height: 625px;
		margin-top: 20px;
	}

	/* .header__wrap {
		padding: 0 20px;
	}
	.header__title {
		font-size: 34px;
		line-height: 44px;
	}
	.header__img {
		margin-top: 50px;
	} */
	.wrapper {
		max-width: 670px;
		/* padding: 0; */
	}
	.design {
		height: auto;
		padding: 0 20px;
	}
	.design__wrap {
		/* margin: 0; */
		max-width: 650px;
		width: 100%;
	}
	.design__btn {
		margin-bottom: 80px;
	}
	.design__subtitle {
		padding: 20px;
		max-width: 650px;
		width: 100%;
	}
	.tech__cont {
		display: block;
		height: auto;

		/* padding: 0; */
	}
	.tech__title {
		padding: 0;
		max-width: 620px;
		width: 100%;
		height: auto;
	}

	.tech__text {
		display: block;
		font-size: 32px;
		/* margin-bottom: 20px; */
	}

	.tech__img {
		height: 237px;
	}
	.order__title {
		padding: 0 20px;
	}
	.header__cont {
		width: 100%;
		text-align: center;
		padding: 0px;
	}
	.header__wrap {
		flex-wrap: wrap;
		width: 100%;
	}
	.header__img {
		width: 100%;
	}

	.design__title {
		font-size: 38px;
	}

	.ceo__wrap {
		flex-wrap: wrap;
		justify-content: center;
	}
	.ceo__achiev {
		justify-content: space-between;
	}

	.ceo__noem {
		margin: 0;
	}

	.slider__title {
		font-size: 38px;
		line-height: 45px;
	}

	.slider__dot {
		min-height: initial;
	}

	.slider__arrow {
		font-size: 30px;
		width: 10%;
	}

	.footer {
		padding: 0;
	}

	.footer__logo {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer__logo-img {
		margin-bottom: 20px;
	}

	.footer__logo-tel {
		margin-bottom: 20px;
	}

	.footer__nav {
		width: 100%;
	}

	.footer__item {
		display: flex;
		flex-wrap: nowrap;
		flex-direction: column;
		align-items: center;
	}
}

@media screen and (max-width: 470px) {
	button {
		max-width: 300px;
	}

	.tech {
		height: 720px;
	}

	.slider__title {
		margin-top: 100px;
	}

	.slider__arrow {
		font-size: 20px;
		width: 10%;
	}
}

/* @media screen and (max-width: 420px) {
	.login-box {
		top: 0;
		left: 0;
	}
	.header__cont {
		width: 100%;
		text-align: center;
		padding: 30px;
	}
	.header__wrap {
		flex-wrap: wrap;
	}
	.header__img {
		width: 100%;
	}
	.ceo__wrap {
		flex-wrap: wrap;
		justify-content: center;
	}
	.ceo__achiev {
		justify-content: space-between;
	}
} */





/* Fix */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Open Sans' !important;
}
p,
a,
li,
ul {
	font-family: 'Open Sans' !important;
}


.policy-private {
	display: flex;
    margin-top: 20px;
    align-items: center;
}
.policy-private__checbox {
	margin-right: 5px;
}
.policy-private__text {
	font-family: 'Open sans';
	font-size: 9px;
	line-height: 130%;
	color: white;
}
.policy-private__text a {
	text-decoration: none;
	color: #f7a801;
	transition: all 0.2s linear;
}

@media all and (max-width: 491px) {
	.header__subtitle {
		padding-bottom: 9px !important;
	}
	.header__title  {
		margin-top: 25px;
		margin-bottom: 22px;
	}
	.header__btn {
		margin-bottom: 17px
	}
	.preview__element-humidity {
		padding-top: 0px;
	}
	.preview__title {
		margin-bottom: 64px;
		line-height: 50px;
	}
	.design__title {
		line-height: 48px;
	}
	.order__title {
		font-size: 34px;
		line-height: 44px;
	}
	.order__item-subtitle {
		margin-bottom: 60px;
	}
	.slider__arrow {
		top: 70%;
		background: rgba(0, 0, 0, 0);
		box-shadow: none;
	}
	.slider__arrow--left {
		left: 17%;
	}
	.slider__arrow--right {
		right: 17%;
	}
}

/* Fix */
