/*
Theme Name: Amnesia
Author: biznesrost24
Version: 1.0
*/

/* fonts */

/*@font-face {
font-family: 'Montserrat';
src: url('fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Montserrat';
src: url('fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Montserrat';
src: url('fonts/Montserrat/Montserrat-Bold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Montserrat';
src: url('fonts/Montserrat/Montserrat-Black.ttf') format('truetype');
font-weight: 900;
font-style: normal;
font-display: swap;
}*/

/* reset */

*, *::before, *::after {
	box-sizing: border-box; 
}

*{
	margin: 0; 
	padding: 0; 
}
.submit {
	cursor: pointer;
}
.btn {
	cursor: pointer;
}
ul, ol {
	list-style: none; 
}

html:focus-within {
	scroll-behavior: smooth; 
}

a {
	text-decoration: none;
}

a:not([class]) {
	text-decoration-skip-ink: auto; 
}

img, picture, svg, video, canvas, #img {
	vertical-align: middle; 
	font-style: italic; 
	background-repeat: no-repeat; 
	background-size: cover;
}
.wrap-contakts {
	display: flex;
	justify-content: flex-start;
}
input, button, textarea, select {
	font: inherit; 
}

@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
		transition: none;
	}
}

/* global */

body, html {
	scroll-behavior: smooth;
	margin: 0;
	padding: 0;
}

html.bg {
	background: url(images/main.png) center 0px no-repeat;
}
body.opacity {
	opacity: .5;
}

body {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 16px;
	color: #282828;

}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;

	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
input[type="checkbox"] {
	width: 20px;
	height: 20px;
	appearance: none;
	/* Убираем стандартный вид */
	background-color: #fff;
	border: 2px solid #ddd;
	border-radius: 4px;
	position: relative;
}

input[type="checkbox"]:checked {
	background-color: #FF8800;
	/* Зеленый фон, когда выбран */
	border-color: #FF8800;
	/* Зеленая рамка */
}

input[type="checkbox"]:checked::before {
	content: "✔";
	/* Символ галочки */
	position: absolute;
	top: 2px;
	left: 4px;
	font-size: 16px;
	color: #fff;
}
.container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 15px;


}
.swiper-wrapper {
	width: 100%;
}
/* header */
.header {
	width: 100%;
	color: #1C1A1A;
	position: sticky;
	top: 0;
	background-color: #333;
	/*padding: 10px 0;*/
	z-index: 1000; /* Обеспечивает, что шапка будет поверх других элементов */
	background: #EBE8E5;
}
#btn-socials {
	display: flex;
	gap: 20px;
}
.header-l1{
	padding: 10px 0;
}
.mob-btn{
	display: none;
}
.header-r{
	display: flex;
	align-items: center;
}
.header__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bread__container {
	max-width: 1300px;
	margin: auto;
	overflow: hidden;
}


.header__menu {
	display: block;
	width: auto;
	margin-left: auto;
	margin-right: auto;
}

.header__menu_cont {
	display: flex;

}

.header__menu_cont {
	display: flex;
}

.header__menu_cont a {
	padding: 10px 15px;

	font-size: 16px;
	font-weight: 600;
	line-height: 19.5px;
	color: #1C1A1A;
	cursor: pointer;
}

.header__menu_cont .menu-item {
	margin: 0 2px;

	transition: .5s;
}

.header__menu_cont .menu-item a {
	transition: .5s;
}

.header__menu_cont .menu-item:hover > a {
	color: #FF8800;
}

/* Сделаем родительский элемент меню относительно */
.menu-item-has-children {
	position: relative;
	padding-right: 24px;
}
.img-rabota {
	margin-bottom: 50px;
}
.text-left {
	text-align: left;
	width: 20%;
}
/* Стиль для стрелочки, которая будет показывать подменю */
.menu-item-has-children:before {
	content: '';
	position: absolute;
	top: 5px;
	right: 23px;
	display: inline-block;
	padding: 3px;
	border: solid black;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	transition: .5s;
}

/* Стиль стрелочки при наведении */
.menu-item-has-children:hover:before {
	border-color: #FF8800;
}

/* Скрываем подменю по умолчанию */
.header__menu_cont .sub-menu {
	display: none; /* Подменю скрыто по умолчанию */
	position: absolute;
	top: 29px; /* Расположение подменю относительно родителя */
	left: -7px;
	z-index: 10; /* Повышаем z-index для отображения поверх других элементов */
	background-color: #fff; /* Белый фон подменю */
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Тень для подменю */
	padding: 10px 0;
}

/* Показываем подменю при наведении на родительский элемент */
.menu-item-has-children:hover .sub-menu {
	display: block;
}

/* Стиль для пунктов в подменю */
.header__menu_cont .sub-menu li {
	list-style: none;
	padding: 8px 16px;
}

.header__menu_cont .sub-menu li a {
	color: #333;
	text-decoration: none;
	display: block;
	padding: 5px 10px;
}

/* Стиль для пункта подменю при наведении */
.header__menu_cont .sub-menu li a:hover {
	color: #FF8800;
}


.header__menu_cont .sub-menu {
	position: absolute;
	top: 29px;
	left: -7px;
	z-index: -1;

	padding: 3px 1px;

	opacity: 0;
	background: #f3f0f0;
	border-radius: 10px;
	width: max-content;

	transition: .5s;
}

.header__menu_cont .sub-menu .menu-item {
	border-radius: 10px;
}

.menu-item-has-children:hover > .sub-menu {
	z-index: 999;

	opacity: 1;
}

.header__menu_cont .sub-menu a {
	display: flex;
	padding: 20px;
}

.sub-menu .menu-item:hover {
	background: #EBE8E5;
}

.header__socials {
	display: flex;
	gap: 15px;

}

.header__socials_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 45px;

	border-width: 2px;
	border-style: solid;
	transition: .5s;
}

.header__socials_icon {
	transition: .5s;
}

.header__socials_btn:hover .header__socials_icon {
	fill: #FFF;
}

.header__socials_btn-viber {
	border-color: #665CAC;
}

.header__socials_btn-viber:hover {
	background: #665CAC;
}

.header__socials_btn-tg {
	border-color: #0088CC;
}

.header__socials_btn-tg:hover {
	background: #0088CC;
}

.header__socials_icon-viber {
	width: 20px;
	height: 22px;

	fill: #665CAC;
}

.header__socials_icon-tg {
	width: 21px;
	height: 19px;

	fill: #0088CC;
}

.header__order-call_btn {
	display: flex;
	align-items: center;
	justify-content: center;

	margin-left: 15px;
	font-size: 16px;
	font-weight: 600;
	line-height: 19px;
	color: #1C1A1A;
	border: 2px solid #FF8800;
	transition: .5s;
	padding: 11px 23px;
}

.header__order-call_btn:hover {
	color: #FFF;

	background: #FF8800;
}

.header__hours_wrap {
	display: flex;
	flex-direction: column;
	margin-left: 24px;
}

.header__hours {
	position: relative;
	padding: 0px 0px 0px 17px;

	font-size: 14px;
	font-weight: 600;
	line-height: 17.07px;
}

.header__hours:before {
	content: '';

	position: absolute;
	top: 4px;
	left: 1px;

	display: block;
	width: 8px;
	height: 8px;

	border-radius: 4px;
	background: #00D13B;
}

.header__phone {
	margin: 4px 0px 0px 0px;

	font-size: 20px;
	font-weight: 700;
	line-height: 24.38px;
	color: #1C1A1A;
	white-space: nowrap;
	text-decoration: underline;
	text-decoration-color: transparent;
	transition: .5s;
}

.header__phone:hover {
	text-decoration-color: #1C1A1A;
}

/* forget */
.forget {
	padding: 205px 0px 311px 0px;

	color: #1C1A1A;

	background: #EBE8E5 url(images/forget-bg.svg) calc(50% - 718px) 62px no-repeat;
}

.forget__container {
	display: flex;
	justify-content: end;
}

.forget__cont {
	max-width: 1070px;
}

.forget__title {
	/* font-size: 108px; */
	font-size: clamp(48px, 10vw, 108px);
	font-weight: 400;
	/* line-height: 118.8px; */
	line-height: clamp(52.8px, 10vw, 118.8px);
}

.forget__desc {
	display: flex;
	margin: 60px 0px 0px 5px;
}

.forget__text {
	margin: 3px 0px 0px 0px;
	max-width: 323px;

	font-size: 18px;
	line-height: 24.3px;
}

.forget__text_sel {
	font-weight: 900;
}

.forget__btn {
	margin: 0px 0px 0px 38px;
	padding: 15px 38px;

	font-size: 18px;
	font-weight: 600;
	line-height: 21.94px;
	text-align: center;
	color: #FFFFFF;

	border: 2px solid #FF8800;
	background: #FF8800;
	transition: .5s;
}
/* Swiper */
.swiper-button-prev {
	color: unset;
	width: 44px;
	height: 44px;
	border: solid 2px;
	border-color: #FF8800;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	cursor: pointer;
	padding: 20px;
}
.swiper-button-next {
	color: unset;
	width: 44px;
	height: 44px;
	border: solid 2px;
	border-color: #FF8800;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	cursor: pointer;
	padding: 20px;

}
.swiper-slide {
	margin-right: 20px;
	/* Отступ справа между слайдами */
}
.swiper-pagination-current {
	font-weight: 700;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	font-size: 25px;
	font-weight: 700;
}
.forget__btn:hover {

	background: none;
	color: #FF8800;
}

/* services */
.services {
	padding: 140px 0px 160px 0px;
}

.services__title {

	/* font-size: 64px; */
	font-weight: 400;
	/* line-height: 70.4px; */
	font-size: clamp(32px, 5vw, 64px);
	line-height: clamp(35.2px, 5vw, 70.4px);
}

.services__cont {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 60px 0px 0px 0px;
	justify-content: center;
}

.service {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 300px;
	min-height: 245px;
	padding: 42px 18px 18px 18px;

	border: 2px solid #D8D4D0;
	transition: .5s;
}

.service__num {
	position: relative;

	align-self: end;

	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: #FF8800;
	transition: .5s;
}

.service__num:before {
	content: '/';

	position: absolute;
	top: -24px;
	left: 7px;
}

.service__cont {
	display: flex;
	justify-content: space-between;
}

.service__name {
	max-width: 175px;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: #282828;
	transition: .5s;
}

.service__arrow {
	align-self: end;
	width: 25px;
	height: 15px;

	stroke: #282828;
	transition: .5s;
}

.service:hover {
	background: #FF8800;
	border-color: #FF8800;
}

.service:hover .service__num {
	color: #FFF;
}

.service:hover .service__name {
	color: #FFF;
}

.service:hover .service__arrow {
	stroke: #FFF;
}

/* guarantees */
.guarantees {
	padding: 140px 0px 160px 0px;
}

.guarantees__title {
	/* font-size: 64px; */
	font-weight: 400;
	/* line-height: 70.4px; */
	font-size: clamp(32px, 5vw, 64px);
	line-height: clamp(35.2px, 5vw, 70.4px);
}

.guarantees__cont {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 77px 0px 0px 0px;
	justify-content: center;
}

.guarantee {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 300px;
	min-height: 243px;
	padding-bottom: 28px;
	border-bottom: 2px solid #D8D4D0;
}

.guarantee__icon {
	fill: none;
	stroke: #FF8800;
}

.guarantee__desc {
	min-height: 65px;

	line-height: 21.6px;
	color: #282828;
}

.guarantee__icon_efficiency {
	width: 112px;
	height: 79px;
}

.guarantee__icon_recovery {
	width: 103px;
	height: 78px;
}

.guarantee__icon_unlimitedness {
	width: 81px;
	height: 79px;
}

.guarantee__icon_reaction {
	width: 89px;
	height: 77px;
}

/* about */
.about {
	padding: 140px 0px 160px 0px;
}

.about__title {
	max-width: 655px;
	margin: 0px 0px 0px 30px;

	/* font-size: 64px; */
	font-weight: 400;
	/* line-height: 70.4px; */
	text-align: right;
	font-size: clamp(32px, 5vw, 64px);
	line-height: clamp(35.2px, 5vw, 70.4px);
}

.about__cont {
	display: flex;
	margin: 59px 0px 0px 0px;
}

.about__img {
	margin-left: -316px;
}

.about__items {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 0px 0px 0px 87px;
}

.about__item {
	display: flex;
	justify-content: space-between;
	gap: 19px;
	padding: 8px 0px 0px 0px;

	border-top: 2px solid #D8D4D0;
}

.about__item_num {
	flex: 1;
	/* font-size: 64px; */
	font-weight: 800;
	/* line-height: 70.4px; */
	font-size: clamp(32px, 5vw, 64px);
	line-height: clamp(35.2px, 5vw, 70.4px);
}

.about__item_num:before {
	content: '/';

	margin: 0px 20px 0px 9px;

	font-weight: 500;
	color: #FF8800;
}

.about__item_interval {
	margin: 0px 0px 0px 4px;

	font-size: 32px;
	line-height: 35.2px;
}

.about__item_desc {
	flex: 1;
	margin-top: 11px;

	line-height: 21.6px;
}
.swiper-button-next,
.swiper-button-prev {
	z-index: 12;
}
#zapravka {
	padding-bottom: 40px;
}
/* price */
.price {
	padding: 100px 0px 100px 0px;
}

.price__title {
	max-width: 970px;

	/* font-size: 64px; */
	font-weight: 400;
	/* line-height: 70.4px; */
	font-size: clamp(32px, 5vw, 64px);
	line-height: clamp(35.2px, 5vw, 70.4px);
}

.price__cont {
	display: flex;
	justify-content: space-between;
	margin: 58px 0px 0px 0px;
}

.price__item {
	background: #EBE8E5;
}

.price__sep {
	width: 2px;
}

.wpcf7 .wpcf7-submit:disabled{
	cursor: pointer !important;
}

.price__form_wrap {
	max-width: 710px;
	padding: 42px 80px 40px 80px;
}

.price__form_title {
	font-size: 20px;
	font-weight: 600;
	line-height: 27px;
	color: #1C1A1A;
}

.price__form {
	margin: 50px 0px 0px 0px;
}

.price__form_name-wrap {
	display: flex;
	gap: 20px;
}

.price__form_message {
	margin: 32px 0px 0px 0px;
}

.wpcf7-form-control {
	border: none;
	background: none;
	outline: none;
}

.price__form_name-wrap .wpcf7-form-control,
.price__form_message .wpcf7-form-control {
	padding: 0px 0px 18px 0px;

	border-bottom: 2px solid #D8D4D0;
}

.price__form_name-wrap .wpcf7-form-control {
	max-width: 265px;

	box-shadow: 0 0 0px 20px #EBE8E5 inset;
}

.price__form_message .wpcf7-form-control-wrap {
	display: block;
}

.price__form_message .wpcf7-form-control {
	width: 100%;
	max-width: 550px;
	height: 88px;
}

.price__form_acceptance-wrap {
	display: flex;
	justify-content: space-between;
	margin: 26px 0px 0px 0px;
}

.price__form_acceptance-wrap .wpcf7-list-item {
	margin: 0px 0px 0px 0px;
}

.wpcf7-list-item-label {
	display: inline-block;
	max-width: 220px;
	padding: 0px 0px 0px 30px;

	font-size: 14px;
	line-height: 18.9px;
	color: #1C1A1A80;
	cursor: pointer;
}

.price__acceptance_sep {
	font-weight: 700;
	color: #1C1A1A;
}

.wpcf7-acceptance label {
	position: relative;

	display: inline-block;

	user-select: none;
}

.wpcf7-acceptance input {
	display: none;
}

.wpcf7-acceptance label:before {
	content: '';

	position: absolute;
	top: 0px;
	left: 0px;

	width: 19px;
	height: 18px;

	border: 2px solid #FF8800;
}

.wpcf7-list-item-label:before {
	content: '';

	position: absolute;
	top: 0px;
	left: 0px;

	width: 19px;
	height: 18px;

	background: #FF8800;
	opacity: 0;
	transition: .5s;
}

.wpcf7-list-item-label:after {
	content: '';

	position: absolute;
	top: 3px;
	left: 7px;

	width: 5px;
	height: 9px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	opacity: 0;
	transition: .5s;
}

.wpcf7-acceptance input:checked ~ .wpcf7-list-item-label:before,
.wpcf7-acceptance input:checked ~ .wpcf7-list-item-label:after {
	opacity: 1;
}

.wpcf7-not-valid-tip {
	position: absolute;
}

.wpcf7-submit {
	display: flex;
	width: 305px;
	height: 60px;
	align-items: center;
	justify-content: center;

	font-size: 18px;
	font-weight: 600;
	line-height: 21.94px;
	color: #FFF;

	background: #FF8800;
	border: 2px solid #FF8800;
	cursor: pointer;
	transition: .5s;
}

.wpcf7-submit:hover:enabled {
	background: none;
	color: #FF8800;
}

.price__form_acceptance-wrap .wpcf7-spinner {
	display: none;
}

.wpcf7-form {
	position: relative;
}

.price__form .wpcf7 form.sent .wpcf7-response-output,
.price__form .wpcf7 form.invalid .wpcf7-response-output {
	position: absolute;
	left: 0px;
	right: 0px;

	margin: 10px 0px 0px 0px;
	padding: 0px 0px 0px 0px;

	font-weight: 600;
	text-align: center;

	border: none;
}

.price__form .wpcf7 form.sent .wpcf7-response-output {
	color: #FF8800;
}

.price__form .wpcf7 form.invalid .wpcf7-response-output {
	color: #DC3232;
}

.price__messengers_wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 455px;
	padding: 42px 40px 40px 40px;
}

.price__messengers_title {
	font-size: 20px;
	font-weight: 600;
	line-height: 27px;
	color: #1C1A1A;

}

.price__messengers_cont {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.price__messengers_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	height: 60px;
	padding: 0px 35px 2px 35px;

	transition: .5s;
}

.price__messengers_btn:hover {
	background: none;
}

.price__messengers_btn:hover .price__messengers_label-viber {
	color: #665CAC;
}

.price__messengers_btn:hover .price__messengers_label-tg {
	color: #0088CC;
}

.price__messengers_btn:hover .price__messengers_icon-viber {
	fill: #665CAC;
}

.price__messengers_btn:hover .price__messengers_icon-tg {
	fill: #0088CC;
}

.price__messengers_btn-viber {
	border: 2px solid #665CAC;
	background: #665CAC;
}

.price__messengers_btn-tg {
	border: 2px solid #0088CC;
	background: #0088CC;
}

.price__messengers_label {
	font-size: 18px;
	font-weight: 600;
	line-height: 24.3px;
	color: #FFF;
	transition: .5s;
}

.price__messengers_icon {
	fill: #FFF;
	transition: .5s;
}

.price__messengers_icon-viber {
	width: 23px;
	height: 26px;
}

.price__messengers_icon-tg {
	width: 22px;
	height: 19px;
}

/* better */
.better {
	padding: 140px 0px 160px 0px;

	background: #F6F6F6;
}

.better__title {
	/* font-size: 64px; */
	font-weight: 400;
	/* line-height: 70.4px; */
	text-align: center;
	color: #282828;
	font-size: clamp(32px, 5vw, 64px);
	line-height: clamp(35.2px, 5vw, 70.4px);
}

.better__cont {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	margin: 59px 0px 0px 0px;
}

.better__item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 410px;
	min-height: 255px;
	padding: 33px 28px 28px 28px;

	border: 2px solid #D8D4D0;
}

.better__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	min-height: 45px;
}

.better__icon_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 40px;
	margin: 0px 0px 0px 4px;
}

.better__icon {
	stroke: #1C1A1A;
	fill: none;
}

.better__icon_professionals {
	width: 40px;
	height: 38px;
}

.better__icon_saving {
	width: 36px;
	height: 40px;
}

.better__icon_prices {
	width: 32px;
	height: 40px;
}

.better__icon_stability {
	width: 42px;
	height: 38px;
}

.better__icon_efficiency {
	width: 40px;
	height: 40px;
}

.better__icon_guarantees {
	position: relative;
	top: 3px;

	width: 40px;
	height: 38px;
}

.better__num {
	position: relative;

	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: #FF8800;
}

.better__num:before {
	content: '/';

	position: absolute;
	top: -24px;
	left: 7px;
}

.better__desc {
	line-height: 21.6px;
}

.better__desc_sel {
	font-weight: 700;
	color: #1C1A1A;
}

/* clients */
.clients {
	padding: 140px 0px 160px 0px;
}

.clients__title {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 740px;
	font-weight: 400;
	color: #282828;
	font-size: clamp(32px, 5vw, 64px);
	line-height: clamp(35.2px, 5vw, 70.4px);
}

.clients__cont {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 30px;
	margin: 89px 0px 0px 0px;
}

.client {
	padding: 0px 0px 24px 0px;

	border-bottom: 2px solid #D8D4D0;
}

.client__logo_wrap {
	width: 100%;
	margin-bottom: 20px;
}

.client__logo_wrap img{
	width: 100%;
	height: auto;
	object-fit: cover;
}

.client__title-above{
	padding: 0 15px 15px 15px;
}

.client__title {
	text-align: start;
	max-width: 175px;
	line-height: 17.6px;
	color: #1C1A1A;
	padding: 0 15px 0 15px;
}

/* reviews */
.reviews {
	padding: 80px 0px 100px 0px;
	overflow: hidden;
}

.reviews__title {
	/* font-size: 64px; */
	font-weight: 400;
	/* line-height: 70.4px; */
	color: #282828;
	font-size: clamp(32px, 5vw, 64px);
	line-height: clamp(35.2px, 5vw, 70.4px);
}

.reviews__cont {
	display: flex;
	gap: 30px;
	margin: 60px 0px 0px 0px;
	width: 100%;
	transition: transform 0.3s ease-in-out; /* Плавный переход */

}

.review {
	/*min-width: 300px;*/
	/*min-height: 627px;*/
	/*display: flex;*/
	width: 25%;
	/*  box-sizing: border-box;
	flex-direction: column;
	background: #EBE8E5;
	border: 5px solid #1C1A1A;
	border-radius: 30px;*/
}

.review{
	border-radius: 40px;
	overflow: hidden;
	border: 6px solid #282828;;
}

.review img{
	width: 100%;
	height: auto;
	object-fit: cover;
}


/*==================*/
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
	color: #282828;
	font-size: 20px !important;
}

.stwelf{
	padding-bottom: 100px;
}
.left-arrow, .right-arrow {
	cursor: pointer;
}
.stwelf .title_v1{
	text-align: left;
}
.stwelf-1{
	display: flex;
	flex-direction: column;
	justify-content: space-between; 
	min-width: 410px;

}
.stwelf-2{
	display: flex;
	flex-direction: column;
	justify-content: space-between; 
	min-width: 410px;
}
.skont-in{
	display: flex;
	gap: 30px;
	max-height: 480px;
	overflow: hidden;
}
.stwelf__t{
	padding-left: 34px;
	position: relative;
	font-weight: 400;
	font-size: 16px;
	line-height: 135%;
	color: var(--design-gray-dark);
	margin-bottom: 1px;
}
.stwelf__t:before{

}
.stwelf__text{
	padding-left: 14.5px;
	font-size: 18px;
	font-weight: 400;
	position: relative;
	text-align: left;
	display: inline-block;
	color:  #1C1A1A;
}
.stwelf__text-tel{
	display: inline-block;
	margin-bottom: 10px;
}
.stwelf__text.stwelf__text-tel{
	font-weight: 700;
	font-size: 20px;
	display: inline-block;


	color:  #1C1A1A;


}
.smb30{
	margin-bottom: 30px;
}
.stwelf__text-adr:before{
	content: url(assets/image/map_pin.svg);
	position: absolute;
	left: 0;
	top: 0;

}
.stwelf__tel:before{

	position: absolute;
	left: 0;
	top: 0;
}
.stwelf__text-time:before{

	position: absolute;
	left: 0;
	top: 0;
}
.stwelf__text-mail:before{

	position: absolute;
	left: 0;
	top: 0;
}
.stwelf-l .form-down__btns  {
	margin-top: 40px;

}
.form-down__btns {
	display: flex;
	gap: 20px;
}
.stwelf__btn{
	margin-top: 20px;
	width: 100%;
}
.stwelf-r1,.stwelf-r2,.stwelf-r3 {
	background-image: url(https://amnsesia.toptest24.ru/wp-content/themes/amnesia/assets/image/kot.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.stwelf-r{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 30px;
	width: 100%;
	grid-template-columns: auto auto;
}

.stwelf-r1 { grid-area: 1 / 1 / 3 / 2; }
.stwelf-r2 { grid-area: 1 / 2 / 2 / 3; }
.stwelf-r3 { grid-area: 2 / 2 / 3 / 3; }
.bgcolorblock {
	background-color: unset;
}
/*==================*/
.stwelf-map{
	margin-top: 30px;
	border-radius: 15px;
	overflow: hidden;
}
/*==================*/
#colophon{
	padding-top: 60px;
	padding-bottom: 60px;
	background: #F6F6F6;

}
.foot-line1-in{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 40px;
	justify-content: space-evenly;
}
.ft-i{

}
.ft-i:last-child{
	max-width: 300px;
}
.ft-i3 {
	max-width: 290px;
}
.ft-i3 .ft-list li a{
	font-weight: 400;
	font-size: 18px;

}
.ft-logo{
	margin-bottom: 82px;
	max-height: 53px;
}
.ft-text{
	margin-bottom: 64px;
	font-weight: 400;
	font-size: 16px;
	line-height: 135%;
	color: var(--design-white);
}
.ft-politic{

	font-weight: 400;
	font-size: 16px;
	line-height: 135%;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: var(--design-white);
}
.ft-list{
	padding: 0;
	margin: 0;

}
.ft-list li{
	margin-bottom: 18px;
}
.ft-list li a{
	color: #282828;
	font-weight: 700;
	font-size: 18px;

}
.ft-list li a:hover{
	color:  #FF8800;

}
.ft-i__title{
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 20px;
}
.ft_tt{
	position: relative;
	/* padding-left: 34px; */
	/*font-weight: 600;*/
	font-weight: 400;
	font-size: 16px;
	line-height: 135%;
	color: var(--design-white);
	margin-bottom: 20px;
}
.ft_tt.stwelf__tel{
	display: inline-block;
	font-weight: 900;
	font-size: 20px;
}
.ft_tt.stwelf__mail{
	display: inline-block;
}
.site-footer .form-down__btns{
	flex-direction: column;

} 
.site-footer .form-down__btn{
	/*width: 100%;*/
	width: 210px;
	height: 60px;
} 

.page-id-68 .kont,
.page-id-68 #masthead,
.page-id-68 #breadcrumbs{
	background-color: #F6F6F6;
}
.page-id-68 .kont{
	padding-top: 0;
}
.page-id-68 #colophon {
	background-color: #EAE8E5;
}
.title-v1{
	/* font-size: 64px; */
	font-weight: 400;
	/* line-height: 70.4px; */
	color: #282828;
	margin-bottom: 60px;
	font-size: clamp(32px, 5vw, 64px);
	line-height: clamp(35.2px, 5vw, 70.4px);
}
.kont{
	padding-top: 80px;
}
.kont .container{
	padding-top: 0px;
	padding-bottom: 60px;
}
.price__messengers_btn {
	margin-bottom: 20px;
}
.form-down__btn{
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	line-height: 24.3px;
	display: inline-block;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: unset;
}
.btn-v1{
	display: inline-block;
	color: #fff;
	padding: 18px 32px;
	font-size: 18px;
	font-weight: 600;
	line-height: 21.94px;
	text-align: center;
	background: #FF8800;
	cursor: pointer;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	font-size: 16px;

	border: 2px solid #FF8800;

	transition: .5s;
}
.btn-v1:hover{
	background: none;
	color: #FF8800;
}
.btn-tg{
	background: #0088CC;
	height: 65px;

}
.btn-vb{
	background: #665CAC;
	height: 65px;

}

.btn-tg:after {
	content: url(assets/image/tg4.svg);
	font-size: 0;
}
.btn-vb:after {
	content: url(assets/image/tg4.svg);
	font-size: 0;
}

/*==================*/

.map-bg{
	height: 600px;
	position: relative;
	background: #f5f8ff;
}

.ymap-container{
	position: relative;

	overflow: hidden;
	cursor: pointer;
	height: 100%;
	/*background: url(../img/yandex-before-load.png) #ffffff no-repeat; */
	background-position: center 
}
.loader{
	position: absolute;
	z-index: 15;
	top: -100%;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	overflow: hidden;
	color: #000000;
	transition: opacity .7s ease;
	opacity: 0;
}
.loader-default:after{
	position: absolute;
	top: calc(50% - 24px);
	left: calc(50% - 24px);
	width: 48px;
	height: 48px;
	content: '';
	animation: rotation 1s linear infinite;
	border: solid 8px #ffffff;
	border-left-color: transparent;
	border-radius: 50%;
}
#map-yandex{
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	cursor: pointer;
	background-color: transparent;
	background-image: url(https://amnsesia.toptest24.ru/wp-content/themes/amnesia/assets/image/map.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}
@keyframes rotation {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(359deg);
	}
}

@keyframes blink {
	from {
		opacity: .5;
	}
	to {
		opacity: 1;
	}
}
/*---- /map ----*/

.yone{
	height: 90vh;
	min-height: 90vh;
	background: #EBE8E5;

}
.yone .container{
	position: relative;
	height: 100%;
}
.yone-in{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	height: 100%;
	position: relative;
	z-index: 2;
	-ms-flex-align: flex-start;
	-webkit-box-align: start;
	align-items: flex-start;
	/* max-width: 650px; */
	width: 100%;
}
.yone-l1{
	color:  #1C1A1A;
	/* font-size: 76px; */
	font-weight: 400;
	/* line-height: 1.1; */
	text-align: left;
	margin-bottom: 60px;
	padding-top: 61px;
	font-size: clamp(32px, 5vw, 76px);
	line-height: clamp(41.8px, 5vw, 83.6px);
}
.page-id-28 .yone-l1,
.page-id-32 .yone-l1{
	margin-bottom: 40px;
}
.yone-l2{
	color:  #1C1A1A;

	font-size: 18px;
	font-weight: 500;
	line-height: 1.2 ;
	text-align: left;
	margin-bottom: 50px;
}
.page-id-28 .yone-l2,
.page-id-32 .yone-l2{
	font-size: 20px;
}
.yone-l3__img{
	position: absolute;
	right: 0;
	bottom: 10%;
}
.yone-l4{
	margin-bottom: 60px;
}
.yone-l4-i{

}
/*=====================*/
.flex-container{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-content: center;
	align-items: stretch;

	gap: 20px;
}

.grid-container{

	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	/*grid-auto-rows: minmax(auto, 485px);
	*/
}
.grid-container.col-5{
	grid-template-columns: repeat(5, 1fr);
}
.grid-container.col-4{
	grid-template-columns: repeat(4, 1fr);
}
.grid-container.col-3{
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 30px;
}
.grid-container.col-2{
	grid-template-columns: repeat(2, 1fr);
}
/*=====================*/
.tarif-i{
	background: #FCFCFC;
}
.tarif {
	padding:  140px 0 160px;
}
.page-id-66 .tarif {
	padding:   0px 0 160px;
}
.tarif  #breadcrumbs{
	text-align: center;
	margin-bottom: 60px;
}
.kont #breadcrumbs{

	margin-bottom: 60px;
}
.tarif-i__title{
	color: #fff;
	background: #FF8800;
	padding: 30px;
	font-size: 24px;
	font-weight: 800;
	line-height: 26.4px;
	text-align: center;

}
.tarif-i__d{
	padding: 30px;
	padding-top: 20px;
	text-align: center;
}
.tarif-i__list{

}
.tarif-i__list li{
	color:  #1C1A1A;
	margin-left: 30px;
	font-size: 16px;
	font-weight: 400;
	line-height: 19.2px;
	text-align: left;
	margin-bottom: 15px;
	list-style: decimal-leading-zero;
}
.tarif-i__list li:before{

}
.tarif-i__list li::marker {
	color:   #FF8800;

	font-size: 16px;
	font-weight: 700;

	text-align: left;


}
.tarif-i__bk{
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid #FF8800;

}
.tarif-i__text{
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: 600;
	line-height: 21.6px;
	text-align: center;
	color: #1C1A1A;

}
.tarif-i__text-sm{

	font-size: 13px;
	font-weight: 400;
	line-height: 17.55px;
	text-align: center;
	color: #28282899;

}
.tarif-i__city{
	color: #1C1A1A;

	font-size: 16px;
	font-weight: 600;
	line-height: 21.6px;
	text-align: center;

}
.tarif-i__price{
	color: #1C1A1A;
	font-size: 28px;
	font-weight: 700;
	line-height: 39.2px;


}
.tarif-i__price span{

	font-size: 16px;
	font-weight: 700;
	line-height: 22.4px;
	text-align: left;

}
.tarif-i__btn{
	width: 100%;
}
.tarif .title-v1{
	text-align: center;
}
.tarif-in2__wr-title{
	display: flex;
	margin-top: 120px;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 90px;
	padding-right: 100px;
}
.tarif-in2__wr-title .title-v1{
	text-align: left;
	margin-bottom: 0;
}
.wr-text{

	font-size: 16px;
	font-weight: 400;
	line-height: 21.6px;
	text-align: left;
	max-width: 310px;


}
.tarif-in2{
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.tarif-in2-i{
	padding-top: 0px;
	padding-bottom: 10px;
	display: flex;
	width: 50%;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #D8D4D0
}
.tarif-in2-i__title{
	color:  #1C1A1A;


	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	text-align: left;

}
.tarif-in2-i__a{
	color:  #1C1A1A;
	font-size: 18px;
	font-weight: 600;
	line-height: 21.94px;
	text-align: center;
	display: flex;
	gap: 15px;
	align-items: center;
}
.tarif-in2-i__a span{
	background: #FF8800;
	width: 50px;
	height:  50px;
	display: flex;
	align-items: center;
	justify-content: center;

}
.tarif-in2-i__a:hover span{
	background: #FF5500;
}
.howwork {
	padding: 140px 0 160px;
}
.howwork-in{
	display: flex;
	gap: 60px;
	justify-content: space-between;
}
.howwork-l{
	max-width: 380px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.howwork-i{
	border-top: 2px solid #D8D4D0;
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	padding-bottom: 40px;
}
.howwork-r{
	width: 100%;
}
.howwork-i__n{
	color:  #FF8800;
	margin-top: -16px;
	font-size: 36px;
	font-weight: 500;
	line-height: 43.2px;
	text-align: left;
	min-width: 70px;
	width: 70px;
}
.howwork-i__title{
	color: #1C1A1A;
	font-size: 20px;
	font-weight: 700;

	text-align: left;

}
.howwork-i__text{
	display: block;
	max-width: 520px;
	font-size: 16px;
	font-weight: 400;
	line-height: 21.6px;
	text-align: left;

	color: #1C1A1A;

}
.btn-h{
	margin: 15px 0;
	padding: 14px 20px;
}
.stprice{
	padding-top: 140px;
	padding-bottom: 140px;
}
.stprice-i{
	padding-top: 8px;
	padding-bottom: 16px;


	border-top: 2px solid #D8D4D0;

	display: flex;
	justify-content: space-between;
	align-items: center;
}
.stprice-i__n{
	color:  #FF8800;

	font-size: 32px;
	font-weight: 500;

	text-align: left;
	min-width: 70px;
	width: 70px;
}
.stprice-i__title{
	color: #1C1A1A;
	font-size: 18px;
	font-weight: 400;
	line-height: 19.8px;
	text-align: left;
	width: 100%;
}
.stprice-i__price{
	color: #1C1A1A;
	font-size: 18px;
	font-weight: 600;
	line-height: 19.8px;
	text-align: right;
	min-width: 150px;
}
.question-in {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #EBE8E5;
	max-height: 481px;
}
.dont_find {
	background-color: #EBE8E5;
}
.question-l img {
	max-width: 900px;
	height: auto;
	margin-left: -316px;
	margin-top: 15px;
}
.question-r {
	width: 100%;
	padding: 110px 0 140px;
}
.question-r h2 {
	/* font-size: 64px; */
	font-weight: 400;
	line-height: 70.4px;
	color: #282828;
	font-size: clamp(32px, 5vw, 64px);
	line-height: clamp(35.2px, 5vw, 70.4px);
}
.question-r p {
	/* font-size: 16px; */
	font-size: 1rem;
	font-weight: 400;
	line-height: 21.6px;
	color: #1C1A1A;
	margin: 30px 0 49px;
}
.social {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 25px;
}
.btn-social {
	width: 230px;
	height: 60px;
}
.btn-cost {
	background: none;
	color: #FF8800;
	border: 2px solid #FF8800;

}
.btn-cost {
	display: inline-block;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	line-height: 21.94px;
	text-align: center;
	background: #FF8800;
	cursor: pointer;
	text-align: center;
	transition: .5s;
	display: flex;
	justify-content: center;
	align-items: center;
}
.question_icon {
	width: 23px;
	height: 26px;
	fill: #FFF;
	transition: .5s;
}
.page-id-64 .services,
.page-id-64 .reviews,
.page-id-64 .about {
	background-color: #F6F6F6;
}
.page-id-26 .tarif, 
.page-id-26 .howwork, 
.page-id-26 .clients, 
.page-id-26 .services {
	background-color: #F6F6F6;
}
.page-id-28 .howwork,
.page-id-28 .about, 
.page-id-28 .reviews, 
.page-id-28 .kont {
	background-color: #F6F6F6;
}
.page-id-30 .howwork,
.page-id-30 .about, 
.page-id-30 .reviews, 
.page-id-30 .kont {
	background-color: #F6F6F6;
}
.brands__cot {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}
.brand {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.brand__logo_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 300px;
	min-height: 200px;
	border: 2px solid #D8D4D0;
}
.brands {
	padding: 109px 0 160px;
}
.brands__title {
	/* font-size: 64px; */
	font-weight: 400;
	/* line-height: 70.4px; */
	text-align: center;
	margin-bottom: 60px;
	font-size: clamp(32px, 5vw, 64px);
	line-height: clamp(35.2px, 5vw, 70.4px);
}
.page-id-32 .brands {
	background-color: #F6F6F6;
}
.zapravka-in {
	display: flex;
	gap: 60px;
	justify-content: space-between;
}
.zapravka {
	padding: 140px 0 160px;
}
.brands__cont {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}
.zapravka-l{
	max-width: 600px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.zapravka-i{
	border-top: 2px solid #D8D4D0;
	padding-top: 20px;
	display: flex;
	padding-bottom: 40px;
}
.zapravka-r{
	width: 100%;
}
.zapravka-title {
	width: 630px;
	/* font-size: 64px; */
	font-weight: 400;
	/* line-height: 70.4px; */
	color: #282828;
	margin-bottom: 60px;
	font-size: clamp(32px, 5vw, 64px);
	line-height: clamp(35.2px, 5vw, 70.4px);
}
.zapravka-i__n{
	color:  #FF8800;
	margin-top: -16px;
	font-size: 36px;
	font-weight: 500;
	line-height: 43.2px;
	text-align: left;
	min-width: 70px;
	width: 70px;
	margin-right: 40px;
}
.zapravka-i__text{
	display: block;
	max-width: 540px;
	font-size: 20px;
	font-weight: 600;
	line-height: 27px;
	text-align: left;
	color: #1C1A1A;
}

/*stages*/

.stages {
	padding: 140px 0 160px;
	background: #F6F6F6;
}
.stages__title {
	/* font-size: 64px; */
	font-weight: 400;
	/* line-height: 70.4px; */
	text-align: center;
	color: #282828;
	font-size: clamp(32px, 5vw, 64px);
	line-height: clamp(35.2px, 5vw, 70.4px);
}
.stages .stages__title{
	max-width: 800px;
	margin: auto;
}
.stages__cont {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 59px 0px 0px 0px;
}
.stages__item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 410px;
	min-height: 230px;
	padding: 54px 30px 30px;
	border: 2px solid #D8D4D0;
}
.stages__img {
	width: 410px;
	min-height: 230px;
}
.stages__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	min-height: 45px;
}
.stages__num {
	position: relative;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: #FF8800;
}
.stages__num:before {
	content: '/';
	position: absolute;
	top: -24px;
	left: 7px;
}
.stages__desc {
	font-weight: 600;
	font-size: 20px;
	line-height: 22px;
}
.page-id-32 .about,
.page-id-32 .reviews,
.page-id-32 .kont {
	background-color: #F6F6F6;
}

.doc {
	/*padding: 61px 0 115px;*/
	padding: 0px 0 115px;
	background-color: #F6F6F6;
}
.doc-in{
	display: flex;
	gap: 60px;
	justify-content: space-between;
}
.doc-l{
	max-width: 490px;
}
.doc-l img {
	width: 440px;
}
.doc-i{
	border-top: 2px solid #D8D4D0;
	align-items: center;
	display: flex;
	justify-content: space-between;
	height: 76px;
}
.doc-i:not(:nth-child(3)) {
	margin-bottom: 40px;
}
.doc-r{
	max-width: 740px;
	width: 100%;
}
.flex {
	display: flex;
	align-items: center;
}
.doc-title {
	/* font-size: 64px; */
	font-weight: 400;
	/* line-height: 70.4px; */
	color: #282828;
	margin-bottom: 151px;
	font-size: clamp(32px, 5vw, 64px);
	line-height: clamp(35.2px, 5vw, 70.4px);
}
.doc-d {
	display: flex;
	align-items: center;
}
.doc-i__n{
	color:  #FF8800;
	font-size: 56px;
	font-weight: 400;
	line-height: 75.6px;
	text-align: left;
	min-width: 90px;
	width: 90px;
	height: 76px;
	display: inline-block;
	margin-right: 30px;
}
.doc-i__title{
	color: #1C1A1A;
	font-size: 20px;
	font-weight: 700;
	text-align: left;
}
.doc-i__text{
	display: block;
	max-width: 520px;
	font-size: 16px;
	font-weight: 400;
	line-height: 21.6px;
	text-align: left;
	color: #1C1A1A;
}
.doc-text {
	font-size: 20px;
	font-weight: 400;
	line-height: 27px;
	color: #1C1A1A;
	padding: 26.5px 0;
}
.doc-download {
	font-size: 18px;
	font-weight: 600;
	line-height: 21.94px;
	color: #1C1A1A;
	margin-right: 15px;
}
.doc-f {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #D8D4D0;
	margin-left: 120px;
}
.page-id-148 .header {
	background-color: #F6F6F6;
}
.page-id-148 #colophon {
	background-color: #EAE8E5;
}
#breadcrumbs {
	background-color: #EBE8E5;
	white-space: nowrap;
	/*margin-top: 40px;*/
	margin-left: 6px;
	padding-top: 50px;
}
.page-id-148 #breadcrumbs {
	background-color: #F6F6F6;
	margin-bottom: 60px;
}
#breadcrumbs .breadcrumb_last {
	font-size: 14px;
	font-weight: 600;
	line-height: 18.2px;
	color: #1C1A1A;
}
#breadcrumbs span:not(:first-child):before {
	content: url("images/divider.png");
	color: #FF8800;
	margin: 0 30px;
	position: relative;
	top: 4px;
}
#breadcrumbs a {
	font-size: 14px;
	font-weight: 400;
	line-height: 18.2px;
	color: #1C1A1A;
}
.prog-in2__wr-title{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 140px;
}
.prog-in2__wr-title .title-v1{
	text-align: left;
	margin-bottom: 0;
}
.wr-text{

	font-size: 16px;
	font-weight: 400;
	line-height: 21.6px;
	text-align: left;
	max-width: 310px;


}
.prog-in2{
	display: flex;
	justify-content: space-between;
	gap: 60px;
}
.prog-in2-i{
	padding-top: 0px;
	padding-bottom: 10px;
	display: flex;
	width: 50%;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #D8D4D0
}

.prog-in2-i-img{
	max-width: 50%;
	height: auto;
}

.prog-in2-i-img img{
	width: 100%;
	height: auto;
}

.prog-in2-i__title{
	color:  #1C1A1A;
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	text-align: left;

}
.prog-in2-i__a{
	color:  #1C1A1A;
	font-size: 18px;
	font-weight: 600;
	line-height: 21.94px;
	text-align: center;
	display: flex;
	gap: 15px;
	align-items: center;
}
.prog-in2-i__a span{
	background: #FF8800;
	width: 50px;
	height:  50px;
	display: flex;
	align-items: center;
	justify-content: center;

}
.prog-in2-i__a:hover span{
	background: #FF5500;
}
.prog {
	/*padding: 61px 0 180px;*/
	padding: 0px 0 180px;
	background-color: #F6F6F6;
}
.page-id-152 #masthead,
.page-id-152 #breadcrumbs {
	background-color: #F6F6F6;
}
.page-id-152 #colophon {
	background-color: #EAE8E5;
}
.page-id-64 #breadcrumbs {
	display: none;
}

.page-id-66 .tarif {
	background-color: #EBE8E5;
}
.stprice_after {
	display: flex;
	justify-content: space-between;
	background-color: #EBE8E5;
	width: 100%;
	padding: 60px;
	align-items: center;
}
.stprice_after p {
	max-width: 860px;
	font-size: 24px;
	font-weight: 600;
	line-height: 31.2px;
	color: #1C1A1A;
}

.page-id-66 .stprice_after {
	margin-top: 40px;
	margin-bottom: 8px;
}

.page-id-66 .stprice {
	padding-top: 160px;
	background-color: #F6F6F6;
}

.page-id-66 .services {
	background-color: #F6F6F6;
}
.one-time_works {
	background-color: #F6F6F6;
}
.works-title {
	max-width: 545px;
	width: 100%;
	/* font-size: 64px; */
	font-weight: 400;
	/* line-height: 70.4px; */
	font-size: clamp(32px, 5vw, 64px);
	line-height: clamp(35.2px, 5vw, 70.4px);
}
.works-subtitle {
	font-size: 20px;
	font-weight: 400;
	line-height: 22px;
	color: #1C1A1A;
	width: 100%;
	margin: 20px 0 60px;
}
.works {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 660px;
}
.works .stprice-i:nth-of-type(3) {
	width: 100%;
}
.works .stprice-i:nth-of-type(2n) {
	margin-left: 30px;
}
.works .item:nth-of-type(4) {
	margin-top: 40px;
}
.works .stprice-i {
	width: 315px;
}
.item {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.black-block {
	background-color: #1C1A1A;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 85px;
	width: 315px;
	padding: 0 20px;
}
.city {
	color: #FFF;
	font-size: 18px;
	font-weight: 600;
	line-height: 24.3px;
	max-width: 129px;
}
.hour {
	color: #FF8800;
	font-size: 16px;
	font-weight: 700;
	line-height: 22.4px;
}
.black-block p {
	color: #FF8800;
	font-size: 28px;
	font-weight: 700;
	line-height: 39.2px;
}
.works-in {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding-top: 140px;
}
.works-r p {
	font-size: 24px;
	font-weight: 700;
	line-height: 31.2px;
	color: #1C1A1A;
}
.works-r {
	width: 520px;
	height: 505px;
	background-color: #EAE8E5;
	padding: 40px;
	position: relative;
}
.works-r::after {
	content: "";
	background: url(images/works-comp.png);
	display: inline-block;
	width: 507px;
	height: 390px;
	position: absolute;
	left: -240px;
	z-index: 5;
}
.works-r span {
	font-size: 16px;
	font-weight: 400;
	line-height: 20.8px;
	color: #282828;
	position: absolute;
	bottom: 130px;
	right: 40px;
	width: 230px;
}
.btn-works {
	position: absolute;
	bottom: 40px;
	right: 40px;
}
/* Пагинация */
.pagination {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 76px;
}
.pagination__reviews {
	width: 300px;
	height: 44px;
	display: flex;
	justify-content: space-around;
	overflow: hidden;
	position: relative;
}

.left-arrow {
	width: 44px;
	height: 44px;
	border: solid 2px;
	border-color: #FF8800;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	cursor: pointer;
}
.right-arrow {
	width: 44px;
	height: 44px;
	border: solid 2px;
	border-color: #FF8800;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	cursor: pointer;
}
.number-pagination {
	font-size: 32px;
	position: absolute;
}
#mob-menu {
	font-size: 48px;
	cursor:pointer;
}
/* start Бургер меню*/
#mob-menu .mobile-menu {
	position: fixed;
	top: 0;
	left: -100%; /* Меню скрыто */
	width: 70%;
	height: 100%;
	background-color: #fff;
	box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
	transition: left 0.4s ease-in-out;
}

#mob-menu .mobile-menu.open {
	left: 0; /* Меню показано */
}

#mob-menu .menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

#mob-menu .menu-overlay.active {
	display: block;
}

#mob-menu .close-icon {
	display: none;
}
.block-contakts {
	margin-bottom: 30px;
}
/* end Бургер меню*/
/* .btn-tg {
margin-top: 20px;
} */

.stwelf__sfs{
	font-weight: 400;
	font-size: 18px;
}
.sdfsg2{
	margin-top: 160px;
}
























/* start Адаптив под планшеты и мобильники*/
@media (max-width:1350px) {
	.question-in {
		flex-direction: column;
		justify-content: center;
	}
	.question-in {
		max-height: 100%;
	}
	.question-r {
		/* width: 100%; */
		width: unset;
	}
	.works-in {
		flex-direction: column;
		gap: 50px;
	}
}
@media (max-width:1320px) {
	.bread__container {
		width: 100%;
	}
	.pagination {
		display: flex;
		justify-content: center;
		text-align: center;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 40px;
		position: relative;

	}
	.skont-in {
		flex-wrap: wrap;
		max-height: none;
	}
	.title-v1 {
		text-align: center;
	}
	.stwelf-r {

	}
	.services__title {
		text-align: center;
	}
	.guarantees__title {
		text-align: center;
	}
	.about__title {
		text-align: center;
	}
	.price__title {
		text-align: center;
	}

}
.stwelf-l {
	margin: auto;
}


















@media (max-width:1300px) {
	#breadcrumbs {
		position:static;
		white-space:initial;
		width: 100%;
		padding-left: 5px;
		padding-right: 20px;
		display: flex;
	}
	.brand {
		display: flex;
	}
	.stwelf-r {}
	.works {
		justify-content: center
	}

	.works-subtitle {
		text-align: center;
	}
	.yone-in {
		justify-content: space-evenly;
	}
	.about__img {
		width: 100%;
		height: 100%;
	}
}

@media (max-width:1250px) {

	.clients__cont{
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: repeat(3, 1fr);
	}


	.site-footer .form-down__btns {
		width: 100%;
	}
	.doc-in {
		flex-direction: column;
		align-items: center
	}
	.price__messengers_title {
		text-align: center;
		margin-bottom: 20px;
	}
	.about__cont {
		display: flex;
		flex-wrap: wrap;
		align-content: center;
		justify-content: center;
		gap: 100px;
	}
	.howwork-i {
		flex-wrap: wrap;
		flex-direction: column;
		gap: 20px;
	}
	.text-left {
		width: unset;
		text-align:unset;
	}
	.brand {
		display: flex;
		align-items: center;
		grid-template-columns: repeat(2, 1fr);
	}
	.zapravka-in   {
		flex-direction: column;
		align-items: center;
	}
	.about__img {
		margin-left: unset;
	}
}
@media (max-width:1196px) {
	.price__cont {
		flex-wrap: wrap;
		justify-content: center;
		gap: 100px;
	}
	.btn-social {
		padding: 10px;
	}
	.about__item {
		padding-top: 0;
		padding-bottom: 40px;
	}
	.about__item_desc {
		margin-top:0;
	}
	.price__sep {
		display:none;
	}
}
@media (max-width:1164px) {
	.header__menu {
		display:none;
	}
	.mob-btn {
		display:block;
	}
	.tarif-in .grid-container .col-3 {
		flex-direction: column;
	}
	#open-menu {
		display: block !important;
		border-radius: 10px !important;
	}
	.prog-in2__wr-title,.prog-in2{
		flex-direction: column;
		gap:60px;
		justify-content: center;
		align-items: center;
		width: unset;
	}
}

@media (max-width:878px) {
	.grid-container {
		display: unset;
	}
	.stages__cont {
		justify-content: center;
	}
	.howwork-in {
		display: flex;
		gap: 60px;
		justify-content: space-between;
		flex-direction: column;
		align-items: center;
		padding: 20px;
	}
	.stwelf-r {
		display: flex;
		align-items: center;
		flex-direction: column;
	}
	.stwelf-r1,.stwelf-r2,.stwelf-r3 {
		width: 100%;
		height: 100%;
	}
}
@media (max-width:861px) {
	.header__socials {
	}
	.works-r {
		height: 800px;
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		justify-content: center;
		align-content: center;
		gap: 20px;
		overflow: hidden;
	}

	.item {
		display: flex;
		width: 100%;
		justify-content: center;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: center;
		align-items: center;
	}
	.btn-works,.works-r span {
		position: static;
	}
	.works-r::after {
		transform: scaleX(-1); /* Зеркальное отражение по горизонтали */
		background-repeat: no-repeat;
		display: block;
		position: static;
		height: 400px;
		left: unset;
		margin-left: 60%;
	}
	.header__order-call_btn {
		display: none;
	}
}
@media (max-width:778px) {

	.forget{
		padding: 70px 0px 110px 0px;
	}

	.clients__cont{
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(5, 1fr);
	}

	.pagination {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}
	.yone-in  {
		align-items: center
	}
	.yone-l3__img {
		opacity: 0.3;
	}

	.yone-l1 {
		text-align: center;
	}
	.prog-in2-i{
		width: 100%;
	}
	.question-r {
		text-align: center;
	}
	.works-r span,.works-r p {
		width: unset;
		text-align: center;
	}
	.social {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.btn-cost btn-social {
		text-align: center;
	}
	.wpcf7-submit {
		margin: auto;
	}
	.price__form_name-wrap, .price__form_acceptance-wrap{
		display: flex;
		flex-direction: column;
		gap: 40px;

	}
	.forget__desc {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
		justify-content: center;
		align-items: center;
	}
	.forget__btn {
		margin: unset;
	}
	.forget__text, .forget__title {
		text-align: center;
	}
	.item {
		flex-direction: column;
		align-items: baseline;
	}

	.about {
		padding-bottom: 80px;
	}
}
@media (max-width:674px) {

	.brand {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media (max-width:660px) {
	.guarantee {
		align-items: center;
		text-align: center;
	}
	.guarantee {
		justify-content: space-around;
	}
	.price__form_title {
		text-align: center;
	}
	.zapravka-l, .zapravka-title{
		width: 100%;
	}
	/* .page-id-32 #breadcrumbs .breadcrumb_last {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}
	.page-id-32 #breadcrumbs span:not(:first-child):before {
	margin: unset;
}*/
}


@media (max-width:622px) {
	.foot-line1-in {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		gap: 40px;
		align-items: start;
		text-align: start;
	}
	.menu-item-has-children:hover .sub-menu {
		top: 32px;
		left: -56px;
	}
	.header__menu_cont a {
		font-size: 18px !important;
	}
	.fancybox__slide {
		margin-top: -200px !important;
	}
	.menu-item-has-children:before {
		top: 29px;
	}
	.ft-logo {
		margin-bottom: 0;
	}
	.ft-text {
		margin-bottom: 20px;
	}
	.swiper-container {
		width: 100%;
	}
	.swiper-slide {
		width: 100vw; /* Устанавливаем ширину слайдов на всю ширину экрана */
	}
	.header__hours_wrap {
		display: none;
	}
}
@media (max-width:550px) {

	.clients__cont{
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(10, auto);
	}
	.client__title {
		max-width: 100%;
	}

	.about__items {
		margin: unset;
	}
	.prog-in2-i {
		flex-direction: column;
		gap: 20px;
	}
	.tarif-in2-i {
		gap: 20px;
		flex-wrap: wrap;
		width: 100%;
		justify-content: center;
	}
	.yone-l3__img {
		bottom: -7%;
	}
	#title-contacts {
		text-align: start;
	}
	.img-programs {
		width: 100%;
		height: 100%;
	}
	.doc-l img {
		width: 100% !important;
		height: 100% !important;
	}
	.doc-i,.doc-f, .doc-d {
		flex-direction: column;
		gap: 20px;
	}
	.prog-in2__wr-title,.prog-in2{
		flex-direction: column;
		gap:60px;
		justify-content: center;
		align-items: center;
		width: unset;
	}
	.btn-v1 .btn-h {
		width: 300px;
	}
	.works-r {
		width: 100%;
		height: 100%;
	}
	.stprice_after {
		align-items: center;
		flex-direction: column;
		padding: 20px;
		gap: 40px;
	}
	.price__form_wrap {
		padding: 40px;
		width: 100%;
	}
	.popap  .price__form_wrap {
		padding: 20px;

	}
	.tarif-in2, .tarif-in2__wr-title {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}
	.tarif-in2__wr-title .title-v1, .wr-text {
		text-align: center;
	}
	.howwork-i {
		display: flex;
		flex-direction: column;
		gap: 40px;
		align-items: center;
	}
	.howwork-i__text {
		text-align: center;
	}
	.question-l img {
		max-width:unset;
		max-width: 100%;
		margin-left: -10vw;
	}
	.question-l {
		overflow: hidden;
	}

}
@media (max-width:470px) {
	.header__hours_wrap {
		display: none;
	}
	.btn-cost {
		width: 250px;
	}
	#stages-img {
		width: 100%;
		height: 100%;
	}
	.popap.open .container-popap {
		width: 90%;
		height: 91%;
		margin-left: auto;
		margin-right: auto;
	}
	input[type="checkbox"]:checked::before {
		left: 2px;
		top: 1px;
	}
	.line-top-text {
		padding: 10px;
		margin-top: -20px;
	}
	.short-imput {
		height: 50px;
	}
	.right-contact {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.stwelf-2 {
		min-width: unset;
	}
	.btn-vb,.btn-tg,.btn-v1 {
		width: 250px;
	} 
	.btn-v1 {
		position: inherit;
	}
	.stprice-i {
		flex-direction: column;
		align-items: center;
		gap: 20px;
		text-align: center;
	}
	.stprice-i__title, .stprice-i__price {
		text-align: center;
	}
	.stwelf-l {
		/* padding: 32px; */
		min-width: unset;
		display: flex;
		flex-direction: column;
	} 
	.form-down__btns {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}
}
@media (max-width:400px) {
	.header__socials {
		display: none;
	}

	.img-rabota {
		width: 100%;
		height: 100%;
	}
	.price__messengers_btn {
		min-width: 250px;
		margin-top: 20px;
	}
	.works .stprice-i {
		width: auto;
	}
	.black-block {
		width: 100%;
	}
	.price__messengers_btn {
		padding: 0 10px 0 10px;
	}
	.price__messengers_label {
		font-size: 16px;
	}
}
@media (max-width:360px) {
	.wpcf7-submit {
		width: 250px;
	}
}
@media (max-width:340px) {
	.review {
		min-width: 285px;
	}
}

/* end Адаптив под планшеты и мобильники*/
#open-menu {
	width: 50px;
	height: 50px;
	font-size: 30px;
	cursor: pointer;
	display: none;
}
.fancybox__content .header__menu_cont {
	display: flex;
	flex-direction: column;
}
.fancybox__content .header__menu_cont a {
	line-height: 30px;
}
/* Кнопка открытия меню */
.burger-button {
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1010;
}

/* Скрытое меню */
.burger-menu {
	position: fixed;
	top: 0;
	right: -100%;
	/* Прячем за экран */
	width: 300px;
	height: 100%;
	background-color: #fff;
	box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
	overflow-y: auto;
	transition: right 0.3s ease;
	z-index: 1000;
}

/* Меню открыто */
.burger-menu.active {
	right: 0;
}

/* Кнопка закрытия меню */
.burger-menu__close {
	position: absolute;
	top: 10px;
	left: 10px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
}

/* Список меню */
.burger-menu__list {
	list-style: none;
	padding: 20px;
	margin: 0;
}

.burger-menu__list li {
	margin-bottom: 15px;
}

.burger-menu__list a {
	text-decoration: none;
	color: #333;
	font-size: 18px;
	transition: color 0.3s;
}

.burger-menu__list a:hover {
	color: #007BFF;
}
.fancybox__content {
	background: #ebe8e5!important;
	border-radius: 10px !important;
}
.fancybox__content>.carousel__button.is-close {
	position: absolute;
	top: 10px !important;
	right: 10px!important;
	color: black!important;
}
.fancybox__content .header__menu_cont .sub-menu{
	width: unset;
}
/* start Бургер*/

.mobile-menu-toggle {
	cursor: pointer;
	transition: transform 600ms;
	user-select: none;
	display: block;
	order: 3;
}

@media screen and (min-width: 992px) {
	.mobile-menu-toggle {
		display: none;
	}
}

.mobile-menu-toggle .line {
	fill: none;
	transition: stroke-dasharray 600ms, stroke-dashoffset 600ms;
	stroke: #000;
	stroke-width: 5.5;
	stroke-linecap: round;
}

.mobile-menu-toggle .top {
	stroke-dasharray: 40 172;
}

.mobile-menu-toggle .middle {
	stroke-dasharray: 40 111;
}

.mobile-menu-toggle .bottom {
	stroke-dasharray: 40 172;
}

.mobile-menu-toggle.active .top {
	stroke-dashoffset: -132px;
}

.mobile-menu-toggle.active .middle {
	stroke-dashoffset: -71px;
}

.mobile-menu-toggle.active .bottom {
	stroke-dashoffset: -132px;
}
.mobile-menu-toggle {
	display: none;
	width: 30px;
	height: 25px;
	gap: 8px;
	flex-direction: column;
	transition: all 0.5s;
}


.mobile-menu-toggle span {
	width: 30px;
	height: 3px;
	background-color: #000000;
	border-radius: 3px;
	transition: all 0.5s;
}

.mobile-menu-toggle.active {
	margin-top: 13px;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(-45deg);
	margin-bottom: -9.5px;

}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(45deg);
	margin-top: -12px;
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

@media(max-width: 991px) {
	.mobile-menu-toggle {
		display: flex;
	}
}
/* end Бургер*/

/* start Бургер меню*/
.menu-bx,
.burger-checkbox,
.burger {
	display: none;
}
.menu-bx {
	top: 0;
	left: 0;
	right: auto;
	position: absolute;
	z-index: 99999;
	display: grid;
	gap: 12px;
	margin: 0;
	background: rgba(24, 29, 36, .8);
	list-style-type: none;
	transform: translateX(-100%);
	transition: .3s;
	width: 80%;
	padding: 20px 15px;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-top: 60px;
	padding-bottom: 90px;
	overflow: auto;
}

.menu-bx li {
	flex-direction: column;
	align-items: flex-start !important;
}

.menu-bx .menu-item {
	display: block;
	padding: 8px 0;
	color: white;
	font-size: 18px;
	text-align: center;
	text-decoration: none;
	padding-top: 20px;
	padding-left: 10px;
	padding-top: 20px !important;
}

.open-menu .menu-bx {
	transform: translateX(0);
}

.menu-bx .menu {
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start
}

.menu-bx li.open .sub-menu {
	display: flex;
	flex-direction: column;
}

.menu-bx .menu-item {
	text-align: left;
	padding-top: 0;
	width: 100%;
}

.menu-bx .menu>li {
	border-bottom: 1px solid rgba(166, 178, 195, .2);
	padding: 20px;
}

.menu-bx .menu>li:last-child {
	border-bottom: 0;
}


.menu-bx .menu-item a {
	color: #fff;
	font-size: 16px;
	text-decoration: none;
}
.menu-bx .menu-item a:hover {
	background-color: transparent;
}
@media (max-width: 576px) {
	.menu-bx {
		width: 80%;
	}
}
.open-menu .header {
	position: fixed;
	top: 0
}
body.open-menu main {
	filter: blur(5px);
}
body.open-menu {
	overflow: hidden;
}
.menu-bx .menu .page_item a {
	color: white;
	font-size: 20px;
}
.menu-bx .menu .page_item li {
	border-bottom: 1px solid rgba(166, 178, 195, .2);
	padding: 10px 0;
}
.menu-bx .sub-menu .menu-item:hover {
	background: unset;
}
/* Это стили модального окна */
.popap.open {
	visibility: visible;
	opacity: 1;
}
.popap.open .container-popap {
	transform: scale(1);
}
.popap.open .container-popap {
	transform: scale(1);
}
.popap {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background-color: #1B1B234D;
	opacity: 30%;
	z-index: 99998;
	display: grid;
	align-items: center;
	justify-content: center;
	overflow-y: auto;
	visibility: hidden;
	opacity: 0;
	transition: opacity .4s, visibility .4s;
}
.menu-bx .menu-item-has-children:before {
	display: none;
}
.container-popap {
	position: relative;
	background-color: #ebe8e5;
	max-width: 405px;
	max-height: 723px;
	border-radius: 5px;
	padding: 40px 50px 50px 50px;
	display: flex;
	justify-content: center;
	text-align: center;
	z-index: 1;
	transform: scale(0);
	transition: transform .8s;
	flex-direction: column;

}

.popap .text-whatsup{
	margin-bottom: -6px;
}  
.container-popap p  {
	font-weight: 600;
	font-family: 'Montserrat';
	font-size: 20px;
	/*margin-top: 10px;*/
	line-height: 27px;
	text-align: center;
	/*padding-bottom: 15px;*/
}
.agreement {
	font-family: 'Montserrat';
	font-weight: 400;
	font-size: 14px;
	line-height: 18.9px;
	cursor: pointer;
}
.agreement span {
	font-family: 'Montserrat';
	font-weight: 400;
	font-size: 14px;
	line-height: 18.9px;
	cursor: pointer;
}
.form-row-1 {
	display: flex;
	flex-direction: column;

	gap: 30px;
}
.form-row-1 span{
	display: block;
	width: 100%;
}
.form-row-1 input {
	padding-left: 0px !important;
	padding-right: 0px !important;
	padding: 0px 0px 18px 0px;
	border-bottom: 2px solid #D8D4D0 !important;
	display: block;
	width: 100%;
}
.form-row-1 ::placeholder{
	color: #929395;
	padding: 12.5px, 15px, 12.5px, 15px ;
	font-size: 16px;
	font-weight: 300;
	font-family: 'Montserrat';
	border: none;
	margin-left: 20px;
}
.form-row-2 {
	display: flex;
}
.form-row-4 {
	margin-bottom: 20px;
	display: flex;
}
.form-row-3 {
	width: 600px;
	padding: 5px;
}
.form {
	display: flex;
	gap: 20px;
	flex-direction:column;
}
.line-top-text {
	/*padding: 20px;*/
	border-bottom: 2px solid #D8D4D0 !important;
}
.popap  .price__form_acceptance-wrap {
	display: flex;
	align-items: flex-start;

	flex-direction: column-reverse;
	gap: 20px;
}
.price__form_acceptance-wrap a{

	font-weight: 700;

	color: #1C1A1A;


}
.popap .social {

	gap: 14px;
}
.form-row-4 label {
	font-size: 14px; /* Размер шрифта */
	color: #1C1A1A80;; /* Цвет текста */
	line-height: 18.9px; /* Межстрочный интервал */
	cursor: pointer; /* Курсор при наведении */
	display: inline-flex; /* Для выравнивания с чекбоксом */
	align-items: center; /* Центрирование текста и чекбокса */
}
.form-row-4 span {
	font-size: 14px; /* Размер шрифта */
	color: black;; /* Цвет текста */
}

.form-row-4 input[type="checkbox"] {
	margin-right: 10px; /* Отступ между чекбоксом и текстом */
	padding-left: 0px !important;
	cursor: pointer;
}
input:focus {
	border: none; /* Убираем рамку при фокусе */
	outline: none; /* Убираем контур (если он есть) */
}
input {
	font-size: 16px;
	font-weight: 300;
	font-family: 'Montserrat';
}

/* Стили для input */
input {
	padding-left: 0px !important; /* Пододвигаем текст чуть правее */
	padding-right: 20px !important; /* Можно добавить правый отступ для симметрии */
	transition: border 0.3s ease, box-shadow 0.3s ease !important; /* Плавный переход для фокуса */
}
.krest {
	max-width: 10px;
	max-height: 10px;
	color: black;
	transition: all 3s;
	border: 0;
	background-color: transparent;
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;

}
.popap.open .btn {
	width: 100%;
	height: 60px;
	background-color: #FF8800;
	font-size: 18px;
	color: white;
	font-weight: 600;
	line-height: 21.94px;
	border: transparent;
}
.popap.open .social {
	flex-direction: column;
	align-items: center;
}
.popap.open .btn-social {
	width: 100%;
	cursor: pointer;
}
.title-popap {
	font-size: 20px;
	line-height: 27px;
	font-weight: 600;
	font-family: 'Montserrat';
	margin-bottom: 22px;
}
.svg-krest path {
	fill: #000 !important;
}
.krest:hover {
	color: green;
}
.short-imput {
	height: 60px;
	width: 100%;
	border-bottom: 2px solid #D8D4D0 !important;
	background-color: transparent;
	margin-bottom: 20px;
}
.popap.open input {
	border: none;
}
.text-chek {
	max-width: 200px;
	text-align: start;
}



@media screen and (max-width: 568px) {
	.reviews {
		padding: 30px 0px 120px 0px;
		position: relative;
	}
	.pagination {
		display: flex;
		flex-direction: column;
		gap:  0px;
		margin-bottom: 24px;
		position: static;
	}
	#primary {
		overflow: hidden;
	}

	.reviews, .reviews .swiper {
		overflow: inherit !important;
	}
	.reviews   .pagination__reviews{
		position: absolute;
		bottom: -70px;
		left: 50%;
		transform: translateX(-50%);
	}

	.kont{
		padding-top: 50px;
	}
	.title-v1 {
		margin-bottom: 24px;

	}
	.wrap-contakts {
		display: flex;
		justify-content: center;
	}
	.stwelf__text-tel {

	}
	.block-contakts .wrap-contakts:first-child .stwelf-1__right{
		max-width: 230px;
	}
	.skont-in {
		flex-direction: column;
		width: 100%;
	}
	.foot-line1-in {

		align-items: center;
		/* text-align: start; */
	}
	.ft-i {
		text-align: center;
	}
	.price__messengers_btn {
		margin-bottom:  0px;
		height: 65px;
		width: 250px;
	}
	.yone {

		overflow: hidden;
	}
	.tarif {
		padding: 50px 0 50px;
	}
	.tarif-in.grid-container.col-3{
		display: grid;
		grid-template-columns: repeat(1, 1fr);

		grid-row-gap: 30px;
	}
	.price .price__messengers_wrap {

		padding: 24px;
	}
	.price .price__messengers_btn {
		width: 100%;
	}
	.about__item {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	#breadcrumbs {

		padding-left: 0;
		padding-right: 0;
		margin-left: 0;
		padding-top: 10px;

		display: none;
	}
	.one-time_works .works-title{
		text-align: center;
	}
	.works-r > p{
		max-width: 255px;
	}
	.page-id-66 .stprice_after {

		margin-bottom: 40px;
	}
	.page-id-66 .stprice {

		padding-bottom: 60px;
	}
	.stprice_after p {

		text-align: center;
	}
	.doc-title {
		margin-bottom: 80px;
		text-align: center;

	}

	.page-id-148 .doc-i .btn-v1 ,
	.page-id-148 .doc-f .btn-v1 {
		width: 184px;
		margin: 0;
	}
	.page-id-148 .doc-i {

		height: auto;
	}
	.page-id-148 .doc-f {
		padding-bottom: 16px;
		margin-left: 0;
	}
	.review img{
		width: 100%;

	}
	.page-id-32 .brands {
		padding: 60px 0;
	}
	.popap .wpcf7-submit {

		width: 100%;
		height: 54px;

		font-size: 16px;

	}
	.container-popap {

		padding: 32px 16px 16px 16px;

	}
	.container-popap p {
		font-size: 18px;

		line-height: 1.3 ;

	}
	.tarif-in2__wr-title{
		padding-right: 0;
	}
	.sdfsg2{
		margin-top:  60px;
	}
	.price__form_name-wrap .wpcf7-form-control {
		max-width: 100%;

	}
	.wpcf7 .wpcf7-submit  {
		padding-right: 0px !important;
		width: 100%;
	}
}


.faq {
	padding: 140px 0px 160px;
}
.faq__title {
	font-weight: 400;
	font-size: clamp(32px, 5vw, 64px);
	line-height: 110%;
}
.faq__items {
	margin-top: 60px;
}
.faq__item:not(:first-child) {
	margin-top: 20px;
}
.faq__head {
	min-height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	border: 1px solid #D8D4D0;
	cursor: pointer;
}
.faq__head-text {
	padding: 8px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.faq__head-text span {
	min-width: 70px;
	max-width: 70px;
	font-size: 36px;
	font-weight: 500;
	line-height: 120%;
	color: #FF8800;
}
.faq__head-text h4 {
	font-size: 20px;
	font-weight: 700;
	line-height: 130%;
	transition: all .5s;
}
.faq__head-icon {
	flex: 0 0 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FF8800;
	border: 1px solid #FF8800;
	transition: all .5s;
}
.faq__head-icon svg path {
	transition: all .5s;
}
.faq__body {
	max-height: 0;
	overflow: hidden;
	transition: all .5s
}
.faq__body-wrapper {
	margin: 0 auto;
	padding: 30px 20px 40px;
	width: 100%;
	max-width: 1130px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.faq__body-wrapper ul:not(:last-child),
.faq__body-wrapper ol:not(:last-child),
.faq__body-wrapper p:not(:last-child) {
	margin-bottom: 10px;
}
.faq__body-wrapper ul,
.faq__body-wrapper ol {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.faq__body-wrapper li {
	position: relative;
	padding-left: 18px;
}
.faq__body-wrapper ul li::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 7px;
	height: 7px;
	background: #FF8800;
}

.faq__item.active .faq__head-text h4 {
	color: #FF8800;
}
.faq__item.active .faq__head-icon svg {
	transform: rotate(180deg);
}
.faq__item.active .faq__body {
	max-height: 1200px;
}


.seo {
	padding: 140px 0px 160px;
	background-color: rgb(246, 246, 246);
}
.seo__wrapper {
	overflow: hidden;
	transition: height .5s;
}
.seo__text h2 {
	padding-bottom: 60px;
	font-size: clamp(32px, 5vw, 64px);
	font-weight: 400;
	line-height: 110%;
}
.seo__text ul:not(:last-child),
.seo__text ol:not(:last-child),
.seo__text p:not(:last-child) {
	margin-bottom: 20px;
}
.seo__text li {
	position: relative;
	padding-left: 18px;
}
.seo__text ul li::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 7px;
	height: 7px;
	background: #FF8800;
}
.seo .btn-v1 {
	margin-top: 30px;
}


@media screen and (max-width: 1100px) {
	.faq {
		padding: 100px 0px 120px;
	}
	.faq__items {
		margin-top: 40px;
	}
	.seo {
		padding: 100px 0px 120px;
	}
	.seo__text h2 {
		padding-bottom: 40px;
	}
}
@media screen and (max-width: 800px) {
	.faq {
		padding: 60px 0px 80px;
	}
	.faq__head {
		align-items: center;
	}
	.faq__head-text span {
		min-width: 60px;
		max-width: 60px;
		font-size: 28px;
	}
	.faq__head-text h4 {
		font-size: 18px;
	}
	.faq__head-icon {
		flex: 0 0 50px;
		height: 50px;
	}
	.seo {
		padding: 60px 0px 80px;
	}
	.seo__text ul:not(:last-child),
	.seo__text ol:not(:last-child),
	.seo__text p:not(:last-child) {
		margin-bottom: 15px;
	}
	.seo .btn-v1 {
		margin-top: 20px;
	}
}
@media screen and (max-width: 550px) {
	.faq {
		padding: 50px 0px 60px;
	}
	.faq__head {
		padding: 8px 10px 8px 15px;
	}
	.faq__head-text {
		padding: 0 5px 0 0;
	}
	.faq__head-text span {
		display: none;
	}
	.faq__head-text h4 {
		font-size: 16px;
	}
	.faq__body-wrapper {
		padding: 15px 15px 20px;
	}
	.faq__item.active .faq__body {
		max-height: 1700px;
	}
	.seo {
		padding: 50px 0px 60px;
	}
	.seo__text h2 {
		padding-bottom: 30px;
	}
}

@media screen and (min-width: 1024px) {
	.faq__head:hover .faq__head-text h4 {
		color: #FF8800;
	}
	.faq__head:hover .faq__head-icon {
		background: transparent;
	}
	.faq__head:hover .faq__head-icon svg path {
		stroke: #282828;
	}
}