/* ------------------  GENERAL --------------------*/

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

:root {
	--accent-color: #2AB32F;
	--black: #1C1C1C;
	--gray: #616161;
}

body, html {
	background-color: #fff;
	color: var(--black);
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	line-height: 1.2;
}

body {
	position: relative;
	
}

picture {
	width: 100%;
	height: 100%;
}

h1 {
	
}

h1 span {
	display: block;
	color: var(--accent-color);
}

h2 {
	font-size: 32px;
	line-height: 1.3;
	font-weight: 700;
	text-transform: none;
}

h3 {
	font-size: 30px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
}

h3 span {
	display: block;
	color: var(--accent-color);
}

.title__inline span {
	display: inline;
}

.section-title {
	font-size: 32px;
	line-height: 1.3;
	font-weight: 700;
	text-transform: none;
}
.section-title span {
	color: var(--accent-color);
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
  transition: 0.3s all;
}
ul {
  list-style: none;
}
ul li {
  position: relative;
}
ul li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

ol {
  margin: 0;
}

ol li:last-child {
  margin-bottom: 0;
}

p {
  line-height: 1.2;
}

input,
textarea {
	display: inline-block;
	width: 100%;
	height: 60px;
	padding: 0 25px;
	border-radius: 30px;
	border: none;
	background-color: #FFF;
	font-size: 14px;
	font-family: "Stolzl", sans-serif;
	font-weight: 400;
	text-align: left;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	  appearance: none;
	resize: none;
	outline: none;
	transition: all linear 0.1s;
}
input::-moz-placeholder, textarea::-moz-placeholder {
   color: var(--gray);
 	 opacity: 1;
}
input::placeholder,
textarea::placeholder {
  color: var(--gray);
  opacity: 1;
}
input:focus,
textarea:focus {
  background-color: #ffffff;
 border: 1px solid var(--accent-color);
}

input:focus {
  border: 1px solid var(--accent-color);
}

input::-moz-placeholder {
  color: #A6AEB9;
  opacity: 1;
}

input::placeholder {
  color: var(--gray);
  opacity: 1;
}

input,
textarea,
select,
input:active,
textarea:active {
  outline: none transparent !important;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -moz-outline: none !important;
  font-family: "Stolzl", sans-serif;
}

textarea {
  overflow: auto;
  min-height: 150px;
  padding: 20px;
}

textarea:focus {
  border: 1px solid #ff981f;
}

input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset],
input[type=radio],
input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

a:active, a:focus, div:active, div:focus, button:active, button:focus {
  outline: 0 !important;
  outline-color: transparent !important;
  outline-width: 0 !important;
  outline-style: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: "Stolzl", sans-serif;
}

input:focus::-moz-placeholder {
  color: transparent !important;
}

input:focus::placeholder {
  color: transparent !important;
}

textarea:focus::-moz-placeholder {
  color: transparent !important;
}

textarea:focus::placeholder {
  color: transparent !important;
}

.content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}

.header {
	width: 100%;
	flex: 0 0 auto;
}

main {
	width: 100%;
		flex: 1 1 auto;
}

.footer {
	width: 100%;
	flex: 0 0 auto;
	margin-top: auto;
}

.img {
	display: flex;
	overflow: hidden;
	position: relative;
}

.img img {
	display: block;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}

a, a > span {
  position: relative;
  color: inherit;
  text-decoration: none;
}
a:before, a:after, a > span:before, a > span:after {
  content: '';
  position: absolute;
  transition: transform .3s ease;
}	



.button {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 8px;
	border-radius: 16px;
	background-color: var(--accent-color);
	transition: .3s all;
	color: #fff;
	font-size: 24px;
	line-height: 1.1;
	font-weight: 700;
}

.button:hover {
	box-shadow: 0px 4px 10px 0px var(--accent-color);
}


.bg {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

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

.page-link {
	display: block;
	padding: 15px;
	font-size: 20px;
}

.breadcrumbs {
	display: flex;
	margin-bottom: 30px;
	margin-top: 5px;
}

.breadcrumbs__item {
	margin-right: 12px;
	color: #fff;
	font-size: 14px;
}

.breadcrumbs__item::after {
	content: '/';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -9px;
	width: 5px;
}

.breadcrumbs__item:last-child::after {
	display: none;
}

.breadcrumbs__item:last-child a {
	font-weight: 500;
	cursor: default;
}

.bg-top {
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
	height: 4216px;
	background: linear-gradient(180deg, #FFF 0%, #D8E4F0 25.78%, #D8E4F0 34.34%, #D8E4F0 68.6%, #FFF 100%);
}

.page-bg {
	background: linear-gradient(180deg, #FFF 0%, #D8E4F0 25.78%, #D8E4F0 34.34%, #D8E4F0 68.6%, #FFF 100%);
}

main {
	position: relative;
	z-index: 10;
}
 

/* ------------------  Header --------------------*/

.header {
	position: relative;
	z-index: 10;
	padding: 35px 0;
}

.header__inline {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	flex: 0 1 530px;
	margin-right: 15px;
}

.logo__img {
	flex: 0 0 97px;
	margin-right: 20px;
}

.logo__img img {
	width: 100%;
}

.logo__slogan {
	color: var(--gray);
	line-height: 1.2;
}

.header__contacts {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.header__phone {
	display: block;
	margin-right: 25px;
	font-size: 24px;
}

.header__phone:hover {
	color: var(--accent-color);
}

.header__call {
	width: 171px;
	height: 44px;
	font-size: 16px;
}

/* ------------------  offer --------------------*/

.offer {
	margin-bottom: 0;
}

.offer__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.offer__main {
	flex: 0 1 550px;
	width: 100%;
}

.offer__swiper-mob {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	margin-bottom: 82px;
	display: none;
}

.offer .swiper-wrapper {
  height: 100%;
}

.offer .swiper-slide {
  position: relative;
  text-align: left;
  font-size: 16px;
  background-color: transparent;
  /* Center slide text vertically */
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 10px;
  height: 556px;
}

.offer__title {
	max-width: 100%;
	color: var(--accent-color);
	font-size:36px;
	line-height: 1.2;
	font-weight: 700;
}

.offer__desc {
	margin-bottom: 30px;
	font-size: 36px;
	line-height: 1.2;
}

.offer__desc span {
	font-weight: 700;
}

.offer__waranty {
	margin-bottom: 32px;
	font-size: 24px;
	line-height: 1.2;
}

.gift {
	display: flex;
	align-items: center;
	margin-bottom: 37px;
	max-width: 300px;
	line-height: 1.2;
	text-shadow: 0px 0px 6px rgba(32, 190, 255, 0.58);
}

.gift__ico {
	position: relative;
	top: -6px;
	left: -6px;
	flex-shrink: 0;
	width: 50px;
	margin-right: 3px;
}

.gift__ico::after {
	content: '';
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 30px;
	filter: blur(15px);
	opacity: .5;
	animation: shadow-img 2s cubic-bezier(0, 0, 0.81, 1.28) infinite;
}

.gift__ico img {
	position: relative;
	z-index: 5;
}

.gift p {
	margin-bottom: 3px;
	line-height: 1.2;
}

.text-flash {
    animation: shadow 2s cubic-bezier(0, 0, 0.81, 1.28) infinite;
}

@keyframes shadow {
    0% { text-shadow: 0px 0px 15px rgba(255, 0, 0, 1); }
    50% { text-shadow: 0px 0px 0px rgba(255, 0, 0, 0.5); }
    to { text-shadow: 0px 0px 15px rgba(255, 0, 0, 1); }
}

@keyframes shadow-img {
    0% { background-color:  rgba(255, 0, 0, 1); }
    50% {background-color:  rgba(255, 0, 0, 0.5); }
    to { background-color:  rgba(255, 0, 0, 1); }
}

.calculate {
	max-width: 505px;
}

.calculate__title {
	max-width: 100%;
	margin-top: 24px;
	margin-bottom: 16px;
	line-height: 24px;
	font-size: 14px;
}

.calculate__btn {
	position: relative;
	width: 100%;
	height: 71px;
	margin-bottom: 30px;
	font-size: 24px;
	text-transform: uppercase;
	 overflow-x: hidden; 
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 375px;
}
.calculate__btn small{font-size:60%; text-transform:none}
.calculate__btn .flare {
    position: absolute;
    top: 0;
    height: 100%;
    width: 45px;
    transform: skewX(-45deg); // Наклон
    animation: flareAnimation;
    left: -150%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    animation: flareAnimation 3s infinite linear; // Время и тип анимации можно менять
}

@keyframes flareAnimation {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

.calculate__down {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0 auto 20px;
}

.calculate__down img {
	width: 30px;
}

.calculate__subtitle {
	margin-bottom: 33px;
}

.calculate__subtitle span {
	color: var(--accent-color);
	font-weight: 700;
}

.calculate__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
}

.calculate__item {
	width: 47.8%;
}

.calculate__img {
	height: 147px;
	margin-bottom: 17px;
}

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

.calculate__item .calculate__subtitle {
	margin-bottom: 0;
	text-align: center;
}

.offer__aside {
	width: 49%;
	margin-left: 20px;
}
 
.offer__swiper, .final__swiper {
 position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin-bottom: 40px;
}

.offer .swiper-wrapper, .final__swiper .swiper-wrapper{
  height: 100%;
}

.offer .swiper-slide {
  position: relative;
  text-align: left;
  font-size: 16px;
  background-color: transparent;
  /* Center slide text vertically */
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 10px;
  height: 518px;
}

.offer .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-control {
	position: absolute;
	z-index: 20;
	left: 0;
	width: 100%;
	bottom: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.swiper-pagination {
	width: auto !important;
	position: static !important;
	bottom: 0 ;
	margin: 0 50px;
}

.swiper-pagination-bullet {
	position: relative;
	width: 16px !important;
	height: 16px !important;
	margin: 0 6px;
	background-color: #fff;
	opacity: 1;
	vertical-align: middle;
}

.swiper-pagination-bullet::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	left:50%;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color:var(--accent-color) ;
}

.swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.swiper-button-prev, .swiper-button-next {
	flex-shrink: 0 ;
	position: static !important;
  width: 36px !important;
  height: 36px !important;
  margin-top: 0 !important;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  background-color: #fff;
  color: transparent !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px;
}



.swiper-button-prev {
	background-image: url(../img/layout/general/slide-prev.svg);
}

.swiper-button-prev:hover {
	background-color: var(--accent-color);
	background-image: url(../img/layout/general/slide-prev-white.svg);
}

.swiper-button-next {
	background-image: url(../img/layout/general/slide-next.svg);
}

.swiper-button-next:hover {
	background-color: var(--accent-color);
	background-image: url(../img/layout/general/slide-next-white.svg);
}


.offer__list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 -24px;
	padding: 30px 0;
}

.offer__item {
	display: flex;
	align-items: self-start;
	width: 100%;
	margin-bottom:10px;
	padding: 0 24px;
}

.offer__ico {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	margin-bottom: 16px;
}

.offer__ico img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
}

.offer__item p {
	line-height: 1.2;
	padding-left: 15px;
}

.offer__item p span {
	font-weight: 700;
}

/* ------------------  quiz --------------------*/

.quiz {
	padding: 54px 69px 69px;
	border-radius: 10px;
	border: 1px solid var(--accent-color);
	color: #000;
}

.quiz__title {
	margin-bottom: 29px;
	font-size: 24px;
	text-align: center;
}

.quiz__title span {
	font-weight: 700;
}

.bar {
	position: relative;
	display: flex;
	justify-content: flex-end;
	height: 81px;
	margin-bottom: 57px;
	margin-right: 18px;
}

.bar::after {
	content: '';
	position: absolute;
	z-index: 1;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #D9D9D9;
}

.bar-active::after {
	background-color: var(--accent-color);
}

.bar__item {
	position: relative;
	z-index: 2;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 21px;
	width: 81px;
	height: 81px;
	border-radius: 50%;
	background-color: #D9D9D9;
	color: #fff;
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	text-align: center;
}

.bar__item::after {
	content: '';
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: -21px;
	width: 21px;
	height: 2px;
	background-color: #D9D9D9;
}

.bar__item:last-child {
	margin-right: 0;
}

.bar__item:last-child::after {
	display: none;
}

.bar__item-passed {
	background-color: var(--accent-color);
}

.bar__item-actual {
	margin-right: auto;
	background-color: var(--accent-color);
}

.bar__item-actual:after {
	background-color: var(--accent-color);
}

.bar__item-passed:after {
	background-color: var(--accent-color);
}

.quiz__form {
	max-width: 1034px;
	margin: 0 auto;
	padding-left: 20px;
}

.quiz__inline {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 18px;
}

.quiz__triple {
	margin-bottom: 0;
}

.quiz__main {
	flex: 0 1 600px;
}

.quiz__triple .quiz__main {
	flex: 0 1 650px;
}

.quiz__aside {
	flex: 0 0 304px;
	margin-left: 10px;
}

fieldset {
	display: none;
	outline: none;
	border: none;
}

fieldset.visible {
	display: block;
}

.quiz__subtitle {
	margin-bottom: 16px;
	font-size: 24px;
	font-weight: 700;
}

.quiz__subtitle span {
	color: var(--accent-color);
}

.quiz__subtitle-margined {
	margin-bottom: 70px;
}

.quiz__desc {
	margin-bottom: 32px;
	color: #616161;
}

.quiz__desc-small {
	margin-bottom: 25px;
}

.quiz__list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-right: 10px;
}

.quiz__small {
	display: block;
}

.radio__item {
	width: 31%;
	margin-bottom: 20px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	border-radius: 10px;
}

.quiz__small .radio__item {
	max-width: 400px;
	width: 100%;
}
.radio__item-max-width{width:100% !important}
.quiz__small .quiz__head {
	justify-content: flex-start;
	text-align: left;
	padding-left: 19px;
}

.quiz__img {
	position: relative;
	height: 160px;
}

/*.quiz__img::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 47.19%, #FFF 100%);
}*/

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

.quiz__head {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 61px;
	padding: 10px;
	text-align: center;
	border-radius: 0 0 10px 10px;
}

.radio {
	display: block;
	position: absolute;
	z-index: -1;
	opacity: 0;
	width: 0;
	height: 0;
	padding: 0;
}

.radio + label {
	position: relative;
	padding: 0;
	cursor: pointer;
	display: block;
	border-radius: 10px;
	overflow: hidden;
}


.radio:checked + label {
	box-shadow: 0px 4px 10px 0px var(--accent-color);
}

.info {
	margin-bottom: 17px;
	padding: 20px 21px 14px 30px;
	border-radius: 10px;
	background-color: var(--accent-color);
	color: #fff;
}

.info__title {
	margin-bottom: 8px;
	font-size: 24px;
}

.info__title span {
	font-weight: 700;
}

.info ol {
	color: #fff;
	margin-left: 18px;
	padding: 0;
	line-height: 1.5;
}

.info ol li {
	margin-bottom: 9px;
}

.help {
	display: flex;
	height: 195px;
	border-radius: 10px;
	background: #616161;
	overflow: hidden;
	cursor: pointer;
}

.help__title {
	display: flex;
	align-items: center;
	height: 65px;
	order: 1;
	color: #fff;
}

.help__title {
	text-align: left;
	padding: 0 9px 0 15px;
	height: 100%;
}

.help__img {
	flex-shrink: 0;
	width: 133px;
	height: 100%;
}

.help-vertical {
	flex-direction: column;
	align-items: flex-start;
}

.help-vertical .help__title {
	width: 100%;
	text-align: center;
	padding: 4px 15px;
}

.help-vertical .help__img {
	position: relative;
	width: 100%;
	height: 131px;
	order: 2;
}

.help__zoom {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 52px;
}

.help-vertical .help__img::after {
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.47) 0%, rgba(0, 0, 0, 0.47) 100%);
}


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

.quiz__controls {
	display: flex;
	margin-bottom: 34px;
	margin-top: 20px;
}

.quiz__back {
	width: 56px;
	height: 67px;
	margin-right: 21px;
	background-color: #C7EFC9;

}

.quiz__back:hover, .test-btns-right .quiz__next:hover{box-shadow: 0px 4px 4px 0px rgba(199, 239, 201, 0.75)}




.quiz__next {
	width: 183px;
	height: 67px;
}

.quiz__person {
	color: #616161;
	text-transform: uppercase;
}

.quiz__second .radio__item {
	width: 48%;
}

.quiz__second .quiz__head {
	padding-left: 39px;
	justify-content: flex-start;
	text-align: left;
	padding-right: 4px;
}

.quiz__second .radio + label:before {
	content: '';
	position: absolute;
	bottom: 22px;
	left: 12px;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	border: 1px solid #9D9D9D;
	background: #FFF;
}

.quiz__second .radio + label:after {
	content: '';
	position: absolute;
	bottom: 26px;
	left: 16px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--accent-color);
	opacity: 0;
	transition: .2s;
}

.quiz__second .radio:checked + label:after {
	opacity: 1;
}

.quiz__double {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.quiz__wrapper {
	flex: 0 1 362px;
}

.quiz__bottom-hidden {
	display: none;
}

.result {
	flex: 0 0 245px;
	text-align: center;
	margin-bottom: 100px;
}

.result-mob {
	display: none;
}

.result__bar {
	width: 129px;
	margin: 0 auto;
	margin-bottom: 22px;
}

.result__bar img {
	width: 100%;
}

.quiz__last {
	display: block;
}

.quiz__last .radio__item {
	max-width: 100%;
	width: 100%;
}

.quiz__last .quiz__head {
	justify-content: flex-start;
	text-align: left;
	padding-left: 44px;
}

.quiz__last .radio + label:before {
	content: '';
	position: absolute;
	bottom: 22px;
	left: 12px;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	border: 1px solid #9D9D9D;
	background: #FFF;
}

.quiz__last .radio + label:after {
	content: '';
	position: absolute;
	bottom: 26px;
	left: 16px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--accent-color);
	opacity: 0;
	transition: .2s;
}

.quiz__last .radio:checked + label:after {
	opacity: 1;
}

.quiz__note {
	margin: 30px 0 25px;
}

.quiz__note span {
	color: var(--accent-color);
	font-weight: 700;
}

.quiz__input {
	margin-bottom: 30px;
}

.quiz__input input {
	height: 60px;
	border-radius: 10px;
	background: #FFF;
	padding: 0 17px;
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.quiz__result {
	width: 100%;
	height: 60px;
	margin-bottom: 30px;
}



.quiz__info {
	position: relative;
	width: 495px;
}

.quiz__info::after {
	content: '';
	position: absolute;
	top: -56px;
	right: 51px;
	width: 56px;
	height: 45px;
	background-image: url(../img/layout/general/arrow-big.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

.quiz__inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.quiz__inner .quiz__person {
	margin-bottom: -30px;
}

.quiz__triple .info__title {
	margin-bottom: 70px;
}

.quiz__triple .info {
	padding-bottom: 100px;
}

.quiz__triple .quiz__aside {
	margin-top: 72px;
}

.quiz__inner-mob {
	display: none;
}

.quiz__person-mob {
	display: none;
}

/* ------------------  footer --------------------*/

.footer {
	position: relative;
	padding: 31px 0 24px;
	text-align: center;
}

.footer__policy {
	text-transform: uppercase;
}

.example {
		position: relative;
		padding-top: 20px;
		width: 100%;
		overflow: hidden;
		height: 210px;
}

@keyframes updown{
	 0% {
	    transform: translateY(-25px);
	    opacity: 1;
	}
	50% {
	    transform: translateY(25px);
	}
	100% {
	    transform: translateY(-25px);
	    opacity: 1;
	}
}

.example__link {
	position: relative;
	bottom: -40px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 210px;
	padding: 10px 15px 55px;
	border-radius: 10px;
	border: 1px solid var(--accent-color);
	background: #FFF;
	box-shadow: 0px -4px 18px 0px rgba(0, 0, 0, 0.25);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	-webkit-animation: bottom 1.8s ease-in-out infinite;
    transform: translateZ(0);
    animation: updown 1.8s ease-in-out infinite;
}

.example img {
	flex-shrink: 0;
	margin-right: 25px;
}

.fancybox__container {
    --fancybox-bg: rgba(24, 24, 27, 0.5);
}

.popup {
	display: none;
	width: 1200px;
	min-height: 450px;
	padding: 85px 100px;
}

.popup .bg {
	left: auto;
	right: 0;
	width: 746px;
}

.popup__inline {
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
}

.popup__main {
	flex: 0 1 520px;
	margin-right: 37px;
}

.popup__title {
	margin-bottom: 37px;
	font-size: 24px;
	font-weight: 700;
}

.popup__aside {
	flex: 0 1 409px;
}

.popup__form {
	max-width: 390px;
}

.popup__input {
	margin-bottom: 22px;
}

.popup__input input {
	height: 60px;
	border-radius: 10px;
	background: #FFF;
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.popup__inner {
	display: flex;
	margin-bottom: 15px;
}

.upload {
	width: 133px;
	margin-right: 25px;
}

.upload__input {
	width: 0;
	height: 0;
	outline: 0;
	opacity: 0;
	pointer-events: none;
	user-select: none;
	padding: 0;
}

.upload__label {
	height: 44px;
	background-color: #616161;
	font-size: 16px;
}

.popup__btn {
	height: 44px;
	font-size: 16px;
}
 
.popup__note {
	max-width: 350px;
}

.popup__subtitle {
	margin-bottom: 15px;
	font-weight: 700;
	color: var(--accent-color);
}

.popup ul li {
	margin-bottom: 10px;
	padding-left: 15px;
}

.popup ul li::before {
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	width: 10px;
	height: 1px;
	background-color: var(--black);
}

.circular{
  height: 130px;
  width: 130px;
  position: relative;
  margin: 0 auto 20px;
z-index:1
}
.circular .inner, .circular .outer, .circular .circle{
  position: absolute;
  z-index: 6;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.2);

}
.circular .inner{
  top: 50%;
  left: 50%;
  height: 110px;
  width: 110px;
  margin: -55px 0 0 -55px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 1px 0 rgba(0,0,0,0.2);

}
.circular .circle{
  z-index: 1;
  box-shadow: none;
  
}
.circular .numb{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
 	font-size: 36px;
  font-weight: 400;
  color: var(--accent-color);
}
.circular .circle-bar {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #D9D9D9;
  -webkit-border-radius: 100%;
  clip: rect(0px, 130px, 130px, 65px);
}
.circle .circle-bar .progress{
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-border-radius: 100%;
  clip: rect(0px, 65px, 130px, 0px);
}
.circle .circle-bar .progress, .dot span{
  background: var(--accent-color);
}
.circle .left .progress{
  z-index: 1;
  animation: left 4s linear both;
}
@keyframes left {
  100%{
    transform: rotate(180deg);
  }
}
.circle .right{
  z-index: 3;
  transform: rotate(180deg);
}
.circle .right .progress{
  animation: right 4s linear both;
  animation-delay: 4s;
}
@keyframes right {
  100%{
    transform: rotate(180deg);
  }
}
.circle .dot{
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 10px;
  margin-top: -5px;
  animation: dot 8s linear both;
  transform-origin: 0% 50%;
}
.circle .dot span {
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
}
@keyframes dot{
  0% {
    transform: rotate(-90deg);
  }
  50% {
    transform: rotate(90deg);
    z-index: 4;
  }
  100% {
    transform: rotate(270deg);
    z-index: 4;
  }
}


.test-btns {z-index:2; position: fixed;bottom: 0;left: 0;width: 100%;height: 80px;justify-content: space-between;box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.22);padding: 0 16px;background: #fff;display: none;opacity: 0;transition: opacity 0.2s;}
body.end-test .test-btns { display: none; }
.view-btn .test-btns { opacity: 1; display: flex;}
.test-btns-right .btn { height: 40px; width: 84px; } .test-btns-right .prev-step { width: 40px; margin-right: 8px; }
.prev-step svg { transform: scale(0.7); }
.test-btns-right a.btn > span { padding: 2px 0 0; font-weight: bold; font-size: 14px; line-height: 21px; }
.test-btns-right {display: flex;
  align-items: center;
  margin-left: 5px;
  width: 100%;
  justify-content: space-between;}
#test[data-step="1"] .test-btns-right .prev-step { display: none; }
.test-btns-left { display: flex; align-items: flex-end; cursor: pointer; }
.test-data {display: flex;align-items: center;justify-content: center;height: calc(100% - 5px);margin-right: 8px;}
.test-data-open {height: 100%;padding: 7px 0 0 2px;}
.test-data-open svg path { animation: arrow-color 2s cubic-bezier(0, 0, 0.81, 1.28) infinite; }
.test-data-open svg path:nth-child(1) { animation-delay: 0.4s; } .test-data-open svg path:nth-child(2) { animation-delay: 0.2s; }
.test-data-open svg path:nth-child(3) { animation-delay: 0s; }
32, 190, 255,
@keyframes arrow-color {
	0% { fill-opacity: 1; fill: #2AB32F }
	20% { fill-opacity: 0.5; fill: #ddf1f9; }
	40% { fill-opacity: 1; fill: #2AB32F; }
	to { fill-opacity: 1; fill: #2AB32F; }
}
.have-data-check .test-clcl { -webkit-animation: ring 4s .7s ease-in-out infinite; -webkit-transform-origin: 50% 4px; -moz-animation: ring 4s .7s ease-in-out infinite; -moz-transform-origin: 50% 4px; animation: ring 4s .7s ease-in-out infinite; -ms-transform-origin: 50% 4px; transform-origin: 50% 4px; }
.test-clcl span {position: absolute;font-weight: 500;font-size: 16px;line-height: 25px;width: 23px;height: 23px;right: 1px;top: 2px;border-radius: 50%;background: #1e92fd;text-align: center;color: #fff;display: none;}
.test-clcl { position: relative; }
.have-data-check .test-clcl span { display: block; }
@-webkit-keyframes ring {
	20% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
	21% { -webkit-transform: rotate(9deg); transform: rotate(9deg); }
	23% { -webkit-transform: rotate(-8deg); transform: rotate(-8deg); }
	25% { -webkit-transform: rotate(7deg); transform: rotate(7deg); }
	27% { -webkit-transform: rotate(-6deg); transform: rotate(-6deg); }
	29% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
	31% { -webkit-transform: rotate(-4deg); transform: rotate(-4deg); }
	33% { -webkit-transform: rotate(3deg); transform: rotate(3deg); }
	35% { -webkit-transform: rotate(-2deg); transform: rotate(-2deg); }
	37% { -webkit-transform: rotate(1deg); transform: rotate(1deg); }
	39% { -webkit-transform: rotate(-1deg); transform: rotate(-1deg); }
	41% { -webkit-transform: rotate(1deg); transform: rotate(1deg); }

	43% { -webkit-transform: rotate(0); transform: rotate(0); }
	100% { -webkit-transform: rotate(0); transform: rotate(0); }
}

@keyframes ring {
	20% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
	21% { -webkit-transform: rotate(9deg); transform: rotate(9deg); }
	23% { -webkit-transform: rotate(-8deg); transform: rotate(-8deg); }
	25% { -webkit-transform: rotate(7deg); transform: rotate(7deg); }
	27% { -webkit-transform: rotate(-6deg); transform: rotate(-6deg); }
	29% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
	31% { -webkit-transform: rotate(-4deg); transform: rotate(-4deg); }
	33% { -webkit-transform: rotate(3deg); transform: rotate(3deg); }
	35% { -webkit-transform: rotate(-2deg); transform: rotate(-2deg); }
	37% { -webkit-transform: rotate(1deg); transform: rotate(1deg); }
	39% { -webkit-transform: rotate(-1deg); transform: rotate(-1deg); }
	41% { -webkit-transform: rotate(1deg); transform: rotate(1deg); }

	43% { -webkit-transform: rotate(0); transform: rotate(0); }
	100% { -webkit-transform: rotate(0); transform: rotate(0); }
}
.test-data svg [fill='#1E92FD'] { fill: #2AB32F; }
.test-data svg [fill='#093445'] { fill: #e0eeff; }
.test-data svg [fill='#fff'] { fill: #ffffff; }
.test-clcl span {
	background: #2AB32F;
}

.test-btns-right .quiz__back{
	background: rgba(42, 179, 47,.8) !important;
	border-radius: 8px;
}
.next-step{
	background: rgba(42, 179, 47,.8);
	border-radius: 8px;
}

.test-btns-right a.btn > span {
	padding:0;
	font-weight: bold;
	font-size: 16px;
	line-height: 46px;
}
.test-btns-right .btn {height: 46px;width: 48%}
.next-step span {
	display: flex;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-weight: bold;
	font-size: 25px;
	text-align: center;
	color: #fff;
	padding: 0 44px;
	line-height: 19px;

}
@media (max-width: 560px) {
	.test-btns {
	/*	display: flex;*/
		
	}
}
@media (max-width: 560px) {
	.quiz__aside {
		display: none;
	}
	.quiz__bottom {display: none}
}
.btn.quiz__back{
	background-color: transparent;
}
body.end-test .test-btns {
  display: none;
}

.view-btn .example{
  display: none;
}
body.end-test .example {
  display: block;
}

.test-btns-right .quiz__back{}
.test-btns-right .quiz__back span{display: flex;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-weight: bold;
	font-size: 25px;
	text-align: center;
	color: #fff;
	padding: 0 44px;
	line-height: 19px;}


.view-btn .test-btns {
    display: none;
} 

.success {
	position: absolute;
	z-index: 90;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, .5);
}

.success__inner {
	position: absolute;
	z-index: 100;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 450px;
	background-color: #fff;
	padding: 40px;
	text-align: center;
}

.success__close {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 15px;
	right: 15px;
	cursor: pointer;
	opacity: .7;
}

.success__close img {
	width: 100%;
}

.success__title {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 22px;
	margin-bottom: 15px;
}

.success p {
	margin-bottom: 20px;
}

.success__btn {
	width: 310px;
	height: 50px;
	margin: 0 auto;
	font-size: 18px;
	background-color: transparent;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
}


.success__btn:hover {
	background-color:var(--accent-color) ;
	color: #fff;
}

/* ------------------  priceing --------------------*/

.greating {
	padding-top: 80px;
}

.greating__title {
	margin-bottom: 36px;
}

.greating__inline {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 80px;
}

.person {
	flex: 0 1 300px;
	height: 336px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	border-radius: 16px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	text-align: center;
	margin-right: 20px;
}

.person__img {
	overflow: hidden;
	width: 160px;
	height: 160px;
	margin-bottom: 24px;
	border-radius: 50%;
}

.person__img img {
	width: 100%;
}

.person__name {
	margin-bottom: 8px;
	font-size: 16px;
	font-weight: 600;
}

.person__post {
	color: #666;
	max-width: 195px;
	line-height: 1.5;
}

.greating__desc {
	flex: 0 1 840px;
	
}

.greating__desc p {
	line-height: 1.5;
	margin-bottom: 15px;
}

.greating__note {
	margin-top: 26px;
	color: var(--accent-color);
}

.greating__title span {
	display: inline;
}

.attach__title {
	margin-bottom: 42px;
}

.attach .calculate__subtitle {
	margin-bottom: 25px;
	text-align: left;
}

.calculate__horizontal .calculate__item {
	display: flex;
	align-items: center;
	width: 49%;
	padding: 24px;
	border-radius: 16px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	text-align: left;
}

.calculate__horizontal .calculate__img {
	flex-shrink: 0;
	width: 160px;
	height: 160px;
	margin-bottom: 0;
	margin-right: 24px;
	border-radius: 8px;
	overflow: hidden;
}

.calculate__horizontal .calculate__subtitle {
	margin-bottom: 0;
	font-size: 16px;
	line-height: 24px;
}
.calculate__horizontal .calculate__subtitle div{font-size:130%; font-weight:700; padding-bottom:10px}

.attach__phone {
	max-width: 590px;
	margin: 40px auto 80px;
}

.attach__phone p {
	margin-bottom: 24px;
	color: #616161;
	text-align: center;
	line-height: 1.5;
}

.attach__form {
	display: flex;
}

.attach__input {
	flex: 0 1 370px;
	margin-right: 20px;
}

.attach__input input {
	height: 56px;
	border-radius: 8px;
	background: #FFF;
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.attach__btn {
	height: 56px;
	flex: 0 0 199px;
	font-size: 16px;
}

.priceing, .attach{
	margin-bottom: 80px;
}

.priceing__title {
	margin-bottom: 27px;
}

.priceing__option {
	max-width: 300px;
	overflow: hidden;
}

.priceing__item {
	display: flex;
	margin-bottom: 16px;
	padding: 20px;
	border-radius: 16px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.priceing__item:last-child {
	margin-bottom: 0;
}

.priceing__img {
	overflow: hidden;
	flex: 0 1 400px;
	height: 350px;
	margin-right: 20px;
	border-radius: 8px;
}

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

.priceing__main {
	flex: 0 1 625px;
	margin-right: 20px;
}
.priceing__main p{font-size: 14px;line-height: 20px;margin-bottom: 10px;}
.priceing__sublist {
	max-height: 136px;
	overflow-y: auto;
	scrollbar-width: thin;
	padding-right: 16px;
}

.priceing__sublist::-webkit-scrollbar {
  width: 3px;
}

.priceing__sublist::-webkit-scrollbar-track {
  background: #D9D9D9;
}
.priceing__sublist::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
}

.priceing__value {
	flex-shrink: 0;
}

.priceing__subtitle {
	margin-top: 0;
	margin-bottom: 10px;
	line-height: 1.3;
	font-weight: 700;
}

.priceing__subitem {
	display: flex;
	align-items: center;
	margin-top: 10px;
	color: #666;
	font-size: 14px;
	line-height: 1.3;
}

.devider {
	flex: 1 1 auto;
	height: 1px;
	margin: 0 16px;
	background-color: #D9D9D9;
}

.priceing__aside {
	flex: 0 0 210px;
	padding: 20px 20px 20px;
	border-radius: 8px;
	border: 1px solid #D9D9D9;display: flex;
  flex-direction: column;
}
.priceing__aside .button{margin-top:auto}
.priceing__total {
	margin-bottom: 5px;
	font-size: 30px;
	line-height: 1;
	font-weight: 600;
}

.priceing__period {
	margin-bottom: 26px;
	color: #666;
	font-size: 11px;
	line-height: 1.3;
}

.priceing__info {
	display: flex;
	align-items: center;
	font-size: 11px;
	margin-bottom: 10px;
}

.priceing__info:last-of-type {
	margin-bottom: 0;
}

.priceing__info img {
	margin-right: 10px;
	flex-shrink: 0;
	width: 14px;
}

.check-list {
	margin-bottom: 40px;
}

.check-list__title {
	margin-bottom: 40px;
}

.check-list__desc {
	position: relative;
	overflow: hidden;
	max-height: 120px;
	margin-bottom: 25px;
}

.check-list__desc.open {
	overflow: visible;
	max-height: 100%;
	margin-bottom: 25px;
}

.check-list__desc.open::after {
	display: none;
}

.check-list__desc::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
}

.check-list__section {
	margin-bottom: 30px;
}

.check-list__section:last-child {
	margin-bottom: 0;
}

.check-list__subtitle {
	margin-bottom: 24px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
}

.check-list__desc p {
	font-size: 16px;
	line-height: 1.5;
}

.check-list__more {
	width: 292px;
	height: 56px;
	font-size: 16px;
	cursor: pointer;
}

.check-list__more.hidden {
	display: none;
}

.consult {
	margin-bottom: 68px;
}

.consult__title {
	margin-bottom: 40px;
	font-size: 24px;
}

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


.consult__aside {
	flex: 0 1 590px;
	padding-top: 3px;
}

.consult__form {
	flex: 0 1 590px;
	margin-right: 20px;
}

.consult__input {
	margin-bottom: 16px;
}

.consult__input input {
	height: 56px;
	border-radius: 10px;
	background: #FFF;
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25) inset;
}


.consult__btn {
	width: 100%;
	height: 56px;
	font-size: 16px;
}


.consult__subtitle {
	margin-bottom: 12px;
	font-weight: 700;
	color: var(--accent-color);
}

.consult ul li {
	margin-bottom: 13px;
	padding-left: 15px;
	line-height: 1.5;
}

.consult ul li::before {
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 10px;
	height: 1px;
	background-color: var(--black);
}

.benefits {
	margin-bottom: 80px;
}

.benefits__title {
	margin-bottom: 43px;
}

.benefits__item {
	margin-bottom: ;
	padding-left: 48px;
	line-height: 1.5;
}

.benefits__item span {
	color: var(--black);
	font-weight: 600;
	font-size:135%;
}




ol.benefits__list{
	list-style-type: none; 
	counter-reset: num;
	margin: 0 0 0 50px;
	padding: 15px 0 5px 0;
	font-size: 16px;
}
ol li.benefits__item{
	position: relative;	
	margin: 0 0 20px;
	padding: 0;
}
ol li.benefits__item:before {
	content: counter(num); 
	counter-increment: num;
	display: inline-block;
	position: absolute;
	top: -7px;
	left: -60px;
	width: 50px;    
	color: var(--accent-color);
	text-align: center;
	font-size: 40px;
	font-weight: bold;
}





.gallery {
	padding-bottom: 60px;
}

.gallery__title {
	margin-bottom: 20px;
	max-width: 785px;
	text-align: center;
	margin: 0 auto 20px;
}
.gallery__small-title{margin:0 0 40px; text-align:center}
.gallery__list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.gallery__item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	width: 31.6%;
	height: 240px;
	margin: 0 10px 20px;
}

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

.gallery__item:hover .gallery__zoom{
	opacity: 1;
}

.gallery__zoom {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	opacity: 0;
	transition: .3s all;
}



.reviews, .installment, .social{
	padding-bottom: 60px;
}

.reviews__title, .installment__title, .social__title{
	margin-bottom: 40px;
}
.installment__title, .social__title{text-align:center}
.reviews__list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
	justify-content:space-around
}
.installment__list{display:flex; flex-wrap:wrap;align-items: center; margin:0 -30px; justify-content: center;}
.installment__left, .installment__right{padding: 0 30px;}
.installment__title-form{font-size:18px; font-weight:700;padding: 40px 0 15px;}
.reviews__item {
	position: relative;
	/*! overflow: hidden; */
	border-radius: 10px;
	width: 47.6%;
  height: 286px;
	margin: 0 10px 50px;
}

.reviews__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.reviews__item:hover .reviews__zoom{
	transform: translate(-50%, -50%) scale(2);
	opacity:0
}

.reviews__zoom {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	opacity: 1;
	transition: .3s all;
}
.reviews__video-title{color:#000; position:absolute; bottom:-35px; left:0; font-size:18px;}

.reviews__more{display: flex;justify-content: center;margin-top: 20px;}
.reviews__more-text{background: url(../img/layout/general/arrow-revews.svg) no-repeat right bottom;font-size: 22px;font-weight: 700;width: 467px;padding-right: 135px;padding-bottom: 25px;margin-right: 15px;}
.reviews__more-button{}
.reviews__btn{padding: 15px 30px;}
.social__list{display:flex; align-items:center; justify-content:center}
.social__list a{margin:0 20px;width: 100px;height: 100px;border-radius: 100%;}
.social__list svg {width: 50px;height: 45px}
.social__list svg path{fill:#fff}
.button-soc{}
@media screen and (max-width: 1165px) {
	.reviews__item {
		width: 48%;
    height: 270px;
    margin: 0 8px 50px;
	}

.reviews__video-title{font-size:16px;}
	.reviews, .installment, .social{
		padding-bottom: 40px;
	}

	.reviews__title, .installment__title, .social__title{
		margin-bottom: 25px;
	}
}
@media screen and (max-width: 885px) {
	.installment__right{width:100%; padding-top:30px}
	.installment__right img{max-width:100%; height:auto; display:block; margin:0 auto}
}
@media screen and (max-width: 830px) {
	.reviews__more{margin-top: 10px;}
	.reviews__more-text {background-size: 80px auto;font-size: 18px;width: 330px;padding-right: 60px;padding-bottom: 15px;margin-right: 10px}
	.reviews__btn{font-size:18px}
}

@media screen and (max-width: 695px) {
	.reviews__item {
		width: 46%;
	}
}
@media screen and (max-width:620px) {
	.reviews__more{flex-wrap:wrap; margin:0}
	.reviews__more-text{width: 100%;padding: 0;margin: 0;background: none;text-align: center;padding-bottom: 15px;}
	.social__list a{margin:0 10px;width: 60px;height: 60px;}
	.social__list svg {width: 30px;height: 25px}
}
@media screen and (max-width:430px) {
	
	.reviews__item {
		width: 100%;
		height:auto
	}
}


body.hidden-quiz .quiz {
	display: none;
}

.success__title {
	margin-bottom: 25px;
	text-align: center;
}

.fancybox__content p {
	max-width: 470px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 20px;
}

@-webkit-keyframes heartBeat {
	0% {-webkit-transform: scale(1);transform: scale(1);}
	14% {-webkit-transform: scale(1.3);transform: scale(1.3);}
	28% {-webkit-transform: scale(1);transform: scale(1);}
	42% {-webkit-transform: scale(1.3);transform: scale(1.3);}
	70% {-webkit-transform: scale(1);transform: scale(1);}
}
@keyframes heartBeat {
	0% {-webkit-transform: scale(1);transform: scale(1);}
	14% {-webkit-transform: scale(1.3);transform: scale(1.3);}
	28% {-webkit-transform: scale(1);transform: scale(1);}
	42% {-webkit-transform: scale(1.3);transform: scale(1.3);}
	70% {-webkit-transform: scale(1);transform: scale(1);}
}
.animate__heartBeat{-webkit-animation-name: heartBeat;animation-name: heartBeat;-webkit-animation-duration: 1.3s;animation-duration: 1.3s;-webkit-animation-duration: calc(1s*1.3);animation-duration: calc(1s*1.3);-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;}
@keyframes radiance {
  0% {left: -30px;margin-left: 0px;}
  30% {left: 110%;margin-left: 80px;}
  100% {left: 110%;margin-left: 80px;}
}


.action__block{
display: flex;
align-items: center;
padding: 16px;
background: #DBFFCF;
border-radius: 16px;
font-weight: 400;
font-size: 16px;
line-height: 24px;
color: #2AB32F;
max-width:375px
}
.action__block img{width:40px; min-width:40px; margin-right:16px}

.radio__add-text{position:relative}
.form_radio__hidden{
font-weight: 400;
font-size: 16px;
line-height: 24px;
color: #000000; padding:0 24px 24px; display:none}
.radio__link-open{background: url(../img/layout/general/more.svg) no-repeat center center;
  position: absolute;
  width: 60px;
  height: 60px;
  right: 0; z-index:1}


.quiz__second .radio__add-text .radio + label::before{bottom: 0;
  top: 20px;}
.quiz__second .radio__add-text .radio + label::after{bottom: 0;
  top: 24px;}
  
  
   .radio__link-open.openmoreinfo{transform:rotate(180deg)}
  
  .radio__link-open.openmoreinfo + input + label .form_radio__hidden{display:block}
  
  
  

.help-kitchen{position:relative; border-radius:10px; overflow:hidden}
.help-kitchen img{display:block; width:100%; height:auto}
.help-kitchen::before{background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0) 100%); content:""; position:absolute; top:0; left:0; right:0; bottom:0;z-index: 1;}
.help-kitchen__title{position:absolute; top:0; left:0; right:0; color:#fff; width: 100%;
  text-align: center;
  padding: 10px 15px;
z-index: 2;
background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
}
	
.img-fuid{max-width:100%; height:auto}	
.help-kitchen-big{padding: 15px;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.15);
  border-radius: 10px;}
.help-kitchen-big__title{text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;}
.help-kitchen-big__small-title{text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
margin-bottom: 10px;
}
  .help-kitchen-big ol{font-size: 16px;padding: 0 0 0 20px;line-height: 24px;}
  .help-kitchen-big ol li{margin-bottom: 10px;}
 .help-kitchen-big img{max-width:80%; margin:0 auto; display:block}
 
 
@media(max-width:1000px){
	.help-kitchen-big__title {font-size: 20px;line-height: 28px}
	.help-kitchen-big__small-title {font-size: 16px;line-height: 24px}
	.help-kitchen-big ol {font-size: 14px;line-height: 20px}
  .help-kitchen-big ol li{margin-bottom: 5px;}
}
@media(max-width:810px){
	 .reviews__item {
    width: 100%;
    height: 48vw;
    margin: 0 10px 70px;
  }
}
@media(min-width:769px){
	.d-inline{display:inline}
}

.because-we__row{display:flex; flex-wrap:wrap; gap:80px;padding: 40px 0 60px;}
.because-we__block{flex: 1 1 calc((100% / 2) - 160px);border-radius: 16px;box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25); overflow:hidden}
.because-we__block img{width:100%; display:block}
@media(max-width:1250px){
	.because-we__row{gap:40px 0; justify-content: space-between;}
	.because-we__block{flex: auto; width: 570px;max-width: 570px;}
}
@media(max-width:1210px){
	.because-we__row{gap:40px 0; justify-content: space-between;}
	.because-we__block{flex: auto; width: 47.11vw;max-width: 47.11vw;}
}
@media(max-width:768px){
	.because-we__row{gap:20px 0; justify-content:center;padding: 20px 0 40px;}
	.because-we__block{flex: auto; width:100%;max-width:570px;}
	.work-list-photo .gallery__item:last-child{margin-left:auto; margin-right:auto}
}
@media(max-width:365px){
.because-we__block img{width:100%; display:block;object-fit: cover;height: 100%;object-position: left center;}
	.because-we__block{flex: auto; width:100%;max-width:570px;height: 100%;height: 225px;}
}
.kitchen-order__title{width:100%;}
.kitchen-order__title span{display:block; padding-bottom:30px}
.kitchen-order{display:flex; justify-content:end; flex-wrap:wrap; position:relative}
.kitchen-order::before{background:url(/img/layout/general/zamer.png) no-repeat left bottom; content:"";width: 1440px;height: 770px;position: absolute;left: -19vw;}
.kitchen-order__title-light{font-size: 26px;line-height: 32px;padding: 50px 0;}
.kitchen-order__title{}
.kitchen-order__block{width:42vw; display:flex; flex-direction:column;height: 770px;position: relative;z-index: 1;justify-content: center;}
.kitchen-order__block .button{margin:0}
@media(max-width:1400px){
	.kitchen-order__title span{padding-bottom:20px;}
	.kitchen-order::before{background-size:auto 780px; width: 1140px;height: 625px; left: -8vw;}
	.kitchen-order__title-light{font-size: 20px;line-height: 26px;padding: 25px 0;}
	.kitchen-order__title{font-size: 26px;}
	.kitchen-order__block{width:44vw; height: 625px}
}
@media(max-width:991px){
	.kitchen-order__title span{padding-bottom:15px;}
	.kitchen-order::before{background-size:auto 600px; width: 510px;height: 480px; left: -2vw;}
	.kitchen-order__title-light{font-size: 16px;line-height: 24px;padding: 15px 0 20px;}
	.kitchen-order__title{font-size: 22px;}
	.kitchen-order__block{width:48vw; height: 480px;}
}
@media(max-width:900px){
	.kitchen-order__title span{padding-bottom:15px;}
	.kitchen-order::before{background-size:1825px auto; width: 104%;height: 480px; left: -2vw;right: 0vw;background-position: 0px -30vw;opacity: 0.2;}
	.kitchen-order__title-light{font-size: 16px;line-height: 24px;padding: 15px 0 20px;text-align: center;}
	.kitchen-order__title{font-size: 22px;}
	.kitchen-order__block{max-width:530px; height: 480px;width: 100%;margin: 0 auto;}
	.kitchen-order__block .button {margin: 0 auto}
}
@media(max-width:768px){
	.kitchen-order__block  .calculate {margin: 0;}
	.kitchen-order::before{left: -10vw; width:125%}
}
@media(max-width:530px){
	.kitchen-order::before{background-position: 0px -50vw;}
	.kitchen-order__block, .kitchen-order::before{height: 420px}
}
@media(max-width:430px){
	.kitchen-order__title.section-title{font-size:20px}
	.kitchen-order__block{height: auto; padding:30px 0}
	.kitchen-order::before {height: 500px;bottom: 0}
}
.contact-bottom{padding:60px 0}
.contact-bottom .contact-bottom__title{text-align:center; padding-bottom:30px}
.contact-bottom__row{display:flex; flex-wrap:wrap}
.contact-bottom__form{width:400px; margin-right:40px;border-radius: 10px;border: 1px solid var(--accent-color);padding: 30px 20px 40px;}
.contact-bottom__map{width:calc(100% - 440px); border-radius: 10px;overflow: hidden;border: 1px solid var(--accent-color);position: relative;}
.contact-bottom__form-title{font-size: 26px;font-weight: 700;text-align: center;line-height: 32px;padding-bottom: 25px;}
.contact-bottom__form-text{font-size: 18px;text-align: center;line-height: 26px;padding-bottom: 20px;}
.contact-bottom__form .consult__form{margin:0}
.contact-bottom__map-info{position:absolute;right: 0;bottom: 0;background: var(--accent-color);color: #fff;border-radius: 10px 0 0;padding: 15px;width: 280px;box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);}
.map-info__block{padding-bottom:25px; font-size:18px}
.map-info__block-title{font-weight:700; padding-bottom:10px}
.map-info__block-phone{font-size:22px; padding:0 0 15px}

.map-info__wp{width:36px; height:36px; display:block}
.map-info__wp svg{width:100%; height:100%}
.map-info__wp svg path{fill:#fff}

@media(max-width:1000px){
	.contact-bottom__form-title{font-size: 22px; line-height: 28px;padding-bottom: 20px;}
	.contact-bottom__form-text{font-size: 16px; line-height: 24px;padding-bottom: 15px;}
	.contact-bottom{padding:40px 0}
	.contact-bottom__form{width:100%; margin-right:0; margin-bottom:30px}
	.contact-bottom__map{width:100%; height:400px}
	.wrapper main{overflow:hidden}
}
@media(max-width:530px){
	.contact-bottom__map{width:100%; height:650px}
	.contact-bottom__map-info{width:auto; left:0; border-radius:10px}
	.map-info__block{padding-bottom:15px; font-size:16px}
	.map-info__block-title{padding-bottom:5px}
	.map-info__block-phone{font-size:18px; padding:0 0 10px}

	.map-info__wp{width:32px; height:32px; display:block}
}