body {
	font-family: 'Roboto', sans-serif;
	color: #344355;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.02em;
}
@media screen and (min-width: 1400px) {
	body {
		zoom: 110%;
	}
}
@media screen and (min-width: 1599px) {
	body {
		zoom: 120%;
	}
}
@media screen and (min-width: 1900px) {
	body {
		zoom: 140%;
	}
}
@media screen and (min-width: 2399px) {
	body {
		zoom: 180%;
	}
}
@media screen and (max-width: 1180px) {
	body {
		zoom: 90%;
	}
}
@media screen and (max-width: 1020px) {
	body {
		zoom: 75%;
	}
}
@media screen and (max-width: 840px) {
	body {
		zoom: 60%;
	}
}
@media screen and (max-width: 600px) {
	body {
		zoom: 100%;
	}
}
h1 {
	font-size: 106px;
	font-weight: 900;
	margin: 0;
	padding-top: 14%;
	color: white;
}
@media screen and (max-width: 600px) {
	h1 {
		padding-top: 30%;
		text-align: center;
		font-size: 90px;
	}
}
@media screen and (max-width: 362px) {
	h1 {
		padding-top: 30%;
		text-align: center;
		font-size: 70px;
	}
}
h2 {
	font-size: 26px;
	font-weight: 500;
	margin-top: 6%;
}
@media screen and (max-width: 600px) {
	h2 {
		text-align: center;
	}
}
h3 {
	font-size: 22px;
	font-weight: 500;
	line-height: 41px;
}
@media screen and (max-width: 600px) {
	h3 {
		text-align: center;
	}
}
h4 {
	font-size: 22px;
	font-weight: 400;
	margin: 0;
	color: white;
	padding: 10px 0px 0px 0px;
	margin-left: 220px;
}
@media screen and (max-width: 600px) {
	h4 {
		margin: auto;
		text-align: center;
	}
}
h5 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 4%;
}
@media screen and (max-width: 600px) {
	h5 {
		text-align: center;
	}
}
h6 {
	font-size: 18px;
	font-weight: 500;
	margin: 0;
	padding-left: 10px;
}
a {
	text-decoration: none;
	color: white;
}
html {
	scroll-behavior: smooth;
}

.akeconsa-udaneles {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 9;
}
.akeconsa-udaneles a {
	height: 42px;
	width: 42px;
	text-align: center;
	background: transparent;
	display: block;
	border: 1px solid #d66b45;
	border-radius: 60px;
}
.akeconsa-udaneles a span {
	color: #d66b45;
	font-size: 20px;
	line-height: 42px;
	cursor: pointer;
}
#header {
	border-bottom: 1px solid white;
	border-radius: 0px;
	background-color: #182c2d;
	display: flex;
	width: 100%;
	height: 60px;
	position: fixed;
	z-index: 1000;
	top: 0;
}
@media screen and (max-width: 900px) {
	body {
		background-image: url(../img/mainmobile.png);
	}
}
.headermenu {
	display: flex;
	align-items: center;
	width: 87%;
	margin: 0 auto;
}
@media screen and (max-width: 980px) {
	.headermenu {
		display: none;
	}
}
@media screen and (max-width: 500px) {
	#header {
		max-width: 100%;
		height: 60px;
		position: fixed;
	}
}
.menu {
	width: 100%;
	display: flex;
	list-style: none;
	align-items: center;
	flex: 1;
}
.logo {
	flex: 1;
}
.punctmenu {
	width: 100%;
	flex: 2;
	text-decoration: none;
	color: white;
	font-size: 14px;
	font-weight: 400;
}
.punctmenu:hover {
	color: #d66b45;
}
.limenu {
	flex: 2;
}
@media screen and (max-width: 600px) {
	.limenu:last-of-type {
		display: none;
	}
}
.menubtn {
	background-color: #d66b45;
	padding: 4px 25px;
	border: none;
	border-radius: 11px;
	color: white;
	cursor: pointer;
	background-color: transparent;
	border: 1px solid #d66b45;
}
.menubtn:hover {
	background-color: #d66b45;
	border: none;
}
/* скрываем чекбокс */
#menu__toggle {
	opacity: 0;
}
/* стилизуем кнопку */
.menu__btn {
	display: flex; /* используем flex для центрирования содержимого */
	align-items: center; /* центрируем содержимое кнопки */
	position: fixed;
	top: 20px;
	right: 20px;
	width: 26px;
	height: 26px;
	cursor: pointer;
	z-index: 1;
}
/* добавляем "гамбургер" */
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #344355;
}
.menu__btn > span::before {
	content: '';
	top: -8px;
}
.menu__btn > span::after {
	content: '';
	top: 8px;
}

/* контейнер меню */
.menu__box {
	display: block;
	position: fixed;
	visibility: hidden;
	top: 0;
	left: -100%;
	width: 320px;
	height: 700px;
	margin: 0;
	padding: 80px 0;
	list-style: none;
	text-align: center;
	background-color: #00000090;
	box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
}
/* элементы меню */
.menu__item {
	display: block;
	padding: 12px 24px;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
}
.menu__item:hover {
	background-color: #000000;
}
#menu__toggle:checked ~ .menu__btn > span {
	transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
	top: 0;
	transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
	top: 0;
	transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
	visibility: visible;
	left: 0;
}
#menu__toggle:checked ~ .menu__btn > span {
	transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
	top: 0;
	transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
	top: 0;
	transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
	visibility: visible;
	left: 0;
}
@media screen and (min-width: 981px) {
	.hamburger-menu {
		display: none;
	}
}
.socbur {
	padding: 12px 84px;
}
.orange {
	color: #d66b45;
}
.red {
	color: #c63f3d;
}
.main-container {
	background-image: url(../img/bg.png);
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
	height: 720px;
	background-color: #182c2d;
}
@media screen and (max-width: 600px) {
	.main-container {
		background-size: auto;
	}
}
.main-container-top {
	max-width: 1104px;
	margin: 0 auto;
}
@media screen and (max-width: 600px) {
	.main-container-top {
		padding: 16px;
	}
}
.main-container-top-about {
	border-left: solid #c63f3d;
	max-width: 482px;
	margin-top: 6%;
}
@media screen and (max-width: 600px) {
	.main-container-top-about {
		margin-top: 18%;
	}
}
.main-container-top-about-txt {
	color: white;
	line-height: 28px;
	padding-left: 17px;
}
.main-container-top-benefits {
	display: flex;
	margin-top: 6%;
	max-width: 850px;
}
@media screen and (max-width: 600px) {
	.main-container-top-benefits {
		display: none;
	}
}
.main-container-top-benefits-container {
	border-left: solid #c63f3d;
	flex: 1;
}
.main-container-top-benefits-container-txt {
	color: white;
	padding-left: 17px;
	margin: 0;
}
.main-container-top-button-container {
	text-align: center;
	margin: 6% auto;
}
@media screen and (max-width: 600px) {
	.main-container-top-button-container {
		margin-top: 18%;
	}
}
.main-container-top-button {
	width: 220px;
	height: 30px;
	color: white;
	background-color: #d66b45;
	border: none;
	border-radius: 8px;
	cursor: pointer;
}
.main-container-top-button:hover {
	zoom: 110%;
}
.useful-container {
	max-width: 1104px;
	margin: 0 auto;
}
@media screen and (max-width: 600px) {
	.useful-container {
		padding: 15px;
	}
}
.useful-flex {
	display: flex;
	margin-top: 6%;
}
@media screen and (max-width: 600px) {
	.useful-flex {
		display: block;
	}
}
@media screen and (max-width: 600px) {
	.useful:not(:first-child) {
		margin-top: 6%;
	}
}
.useful {
	flex: 1;
	max-width: 335px;
	border-left: solid #c63f3d;
}
.useful:not(:last-child) {
	margin-right: 50px;
}
.useful-txt {
	font-size: 12px;
	line-height: 18px;
	margin: 0;
	padding-left: 10px;
}
.reasons-container {
	background-image: url(../img/bgr.png);
	background-size: 100%;
	height: 489px;
}
@media screen and (max-width: 600px) {
	.reasons-container {
		background-image: none;
		padding: 16px;
		height: auto;
	}
}
.reasons-h {
	text-align: center;
	padding-top: 6%;
}
.reasons {
	display: flex;
	width: 1104px;
	margin: 4% auto;
}
@media screen and (max-width: 600px) {
	.reasons {
		display: block;
		width: auto;
	}
}
.reasons-fraim {
	width: 336px;
	height: 79px;
	display: flex;
	align-items: center;
	background-color: #fafafa;
	border-radius: 8px;
}
@media screen and (max-width: 600px) {
	.reasons-fraim {
		margin: auto;
	}
}
@media screen and (max-width: 600px) {
	.reasons-fraim {
		width: auto;
	}
}
.reasons-fraim:not(:first-child) {
	margin-left: 48px;
}
@media screen and (max-width: 600px) {
	.reasons-fraim:not(:first-child) {
		margin: 2% auto;
	}
}
.reasons-fraim-txt {
	width: 235px;
}
.reasons-fraim-img {
	padding: 18px;
}
.how-container {
	max-width: 1105px;
	margin: 6% auto;
	display: flex;
	align-items: center;
}
@media screen and (max-width: 600px) {
	.how-container {
		display: block;
		padding: 16px;
	}
}
.how-container-txt {
	max-width: 472px;
}
.how-container-p {
	line-height: 25px;
}
.how-container-p:not(:last-child) {
	margin-top: 10%;
}
.how-container-video {
	width: 540px;
	height: 244px;
	margin-left: 40px;
}
@media screen and (max-width: 600px) {
	.how-container-video {
		width: 100%;
		margin: auto;
	}
}
.cta-container {
	background-image: url(../img/bgr.png);
	background-size: 100%;
}
@media screen and (max-width: 600px) {
	.cta-container {
		background-image: none;
	}
}
.cta-container-both {
	display: flex;
	max-width: 1104px;
	margin: 0 auto;
	padding-top: 6%;
}
@media screen and (max-width: 600px) {
	.cta-container-both {
		flex-wrap: wrap-reverse;
		padding: 16px;
		margin: auto;
	}
}
.cta-container-left {
	padding-right: 60px;
}
@media screen and (max-width: 600px) {
	.cta-container-left {
		padding-right: 0;
	}
}
.cta-form-input {
	width: 134px;
	height: 26px;
	text-align: center;
	border-radius: 4px;
	border: 1px solid #173130;
}
@media screen and (max-width: 600px) {
	.cta-form {
		text-align: center;
		margin: auto;
	}
}
@media screen and (max-width: 600px) {
	.cta-form-input {
		width: 274px;
		margin-bottom: 6px;
	}
}
.cta-form-button {
	width: 177px;
	height: 29px;
	border: none;
	border-radius: 4px;
	background-color: #d66b45;
	color: white;
}
@media screen and (max-width: 600px) {
	.cta-form-button {
		width: 280px;
	}
}
.cta-container-right {
	border-left: 1px solid #c63f3d;
	padding-left: 60px;
}
@media screen and (max-width: 600px) {
	.cta-container-right {
		padding-left: 0;
		border: none;
	}
}
.cta-container-right-fraim {
	border-left: 1px solid #c63f3d;
	padding-left: 10px;
}
footer {
	background-image: url(../img/footerbg.png);
	background-size: 100%;
	height: 134.5px;
	margin-top: 4%;
}
@media screen and (max-width: 600px) {
	footer {
		background-image: none;
		padding: 16px;
		background-color: #173130;
	}
}
.footer-both {
	display: flex;
	max-width: 1104px;
	margin: 0 auto;
	padding-top: 68px;
}
@media screen and (max-width: 600px) {
	.footer-both {
		flex-wrap: wrap-reverse;
		padding-top: 0;
	}
}
.footer-information-im {
	display: flex;
	max-width: 1100px;
	align-items: center;
	margin: 0 auto;
}
.footer-information {
	padding-top: 36px;
}
.imimg {
	width: 40px;
	height: 25px;
}
.im-txt {
	font-size: 12px;
	padding-left: 10px;
	margin: 0.5% auto 0 auto;
}
@media screen and (max-width: 600px) {
	.im-txt {
		font-size: 14px;
		padding-top: 16px;
		padding-bottom: 16px;
	}
}
.footer-information-contacts {
	margin-top: -6px;
}
@media screen and (max-width: 600px) {
	.footer-information-contacts {
		text-align: center;
		margin: auto;
	}
}
.tel {
	padding-right: 17px;
	font-size: 18px;
}
@media screen and (max-width: 362px) {
	.tel {
		padding-left: 0;
		font-size: 14px;
	}
}

.mail {
	border-left: 1px solid #c63f3d;
	padding-left: 17px;
	font-size: 18px;
}
@media screen and (max-width: 362px) {
	.mail {
		padding-left: 0;
		border: none;
		font-size: 14px;
	}
}
.zen {
	margin-left: 30px;
	zoom: 110%;
}
@media screen and (max-width: 600px) {
	.zen {
		margin-left: 34px;
	}
}
.footer-logo-container {
	margin-left: 120px;
	margin-top: -16px;
}
@media screen and (max-width: 600px) {
	.footer-logo-container {
		margin: auto;
		text-align: center;
	}
}
.footer-logo {
	font-size: 53px;
	font-weight: 900;
}
@media screen and (max-width: 600px) {
	.footer-logo {
		font-size: 40px;
	}
}
.footer-logo-privacy {
	text-align: center;
	margin: 0 auto;
}
@media screen and (max-width: 600px) {
	.footer-logo-privacy {
		display: grid;
	}
}
.priv {
	font-size: 12px;
	padding-right: 64px;
	color: #173130;
}
@media screen and (max-width: 600px) {
	.priv {
		font-size: 14px;
		padding-right: 0;
	}
}

.ft {
	width: 40px;
	margin-left: 20px;
}
.b-popup {
	display: none;
	width: 100%;
	min-height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	overflow: hidden;
	position: fixed;
	top: 0px;
	left: 0;
}

.b-popup .b-popup-content {
	margin: 30px auto 0px auto;
	width: 800px;
	height: 500px;
	padding: 10px;
	background-color: #173130;
	border-radius: 5px;
	box-shadow: 0px 0px 10px #000;
}
.hidepop {
	margin-left: 8px;
	color: #fff;
	font-size: 40px;
	font-weight: 300;
}
.pop-form {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	/* text-align: center;
   */
}
.pop-form > div {
	display: flex;
	justify-content: center;
}
.pop-form-inp {
	padding: 10px;
	width: 500px;
	height: 30px;
	border: none;
	border-radius: 20px 0px 0px 20px;
	background-color: #224948;
	box-sizing: border-box;
}
::placeholder {
	color: #538e8c;
	padding-left: 20px;
}
.pop-form-btn {
	height: 30px;
	width: 100px;
	background-color: #d66b45;
	border-radius: 0 20px 20px 0;
	border: none;
	color: #fff;
	cursor: pointer;
}
.pop-form-btn:hover {
	zoom: 110%;
}
.pop-form-inp:focus {
	border: none;
	color: white;
	padding-left: 20px;
}

.resultSearch {
	overflow-x: auto;
	padding: 0.5em;
	width: 584px;
	height: 300px;
	margin: 40px auto;
	border: 1px solid #d66b45;
	border-radius: 20px;
	color: white;
}
.resultSearch > p {
	white-space: break-spaces;
	box-sizing: border-box;
}

.cookiesBlock {
	position: fixed;
	padding: 1.5rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
	left: 0;
	bottom: 0;
	width: 100%;
	color: #fff;
	background-color: #23282d;
	z-index: 10;
}
.cookiesBlock > p {
	padding: 0 8.5rem;
	max-width: 128rem;
	box-sizing: border-box;
}
.cookiesBlock > div {
	display: flex;
	gap: 1rem;
}
.cookiesBlock > div > button {
	padding: 0.5rem 1.5rem;
	color: #fff;
	background-color: inherit;
	border: 1px solid #fff;
	border-radius: 3px;
	box-sizing: border-box;
}
.cookiesBlock > div > button:hover {
	cursor: pointer;
	color: #23282d;
	background-color: #fff;
}
.cookiesBlock > div > button:active {
	cursor: pointer;
	color: #fff;
	background-color: inherit;
}
