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

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

:root {
	--accent-color: #20beff;
	--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: 5px;
	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-top: 10px;
}

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

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

.logo__img {
	flex: 0 0 113px;
	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-top: 13px;
	margin-bottom: 85px;
}

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

.offer__main {
	flex: 0 1 460px;
	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: 400px;
	color: var(--accent-color);
	font-size:38px;
	line-height: 1.2;
	font-weight: 700;
}

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

.offer__desc span {
	display: block;
	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: 387px;
}

.calculate__title {
	max-width: 335px;
	margin-bottom: 18px;
	line-height: 1.2;
}

.calculate__btn {
	position: relative;
	width: 100%;
	height: 71px;
	margin-bottom: 30px;
	font-size: 24px;
	text-transform: uppercase;
	 overflow-x: hidden; 
}

.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: space-between;
}

.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 {
 position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin-bottom: 82px;
}

.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 .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;
}

.offer__item {
	display: flex;
	align-items: center;
	width: 46%;
	margin-bottom: 50px;
}

.offer__ico {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 66px;
	height: 57px;
	margin-right: 28px;
}

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

.offer__item p {
	line-height: 1.2;
}

.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 {
	display: block;
	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: 8px;
	font-size: 24px;
	font-weight: 700;
}

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

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

.quiz__desc {
	margin-bottom: 44px;
	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%;
}

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

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

.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: #000;
	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: 183px;
	height: 67px;
	margin-right: 21px;
	background-color: #D9D9D9;

}

.quiz__back:hover {
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}




.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: absolute;
	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;

}
.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 {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; }
#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: #20beff }
	20% { fill-opacity: 0.5; fill: #ddf1f9; }
	40% { fill-opacity: 1; fill: #20beff; }
	to { fill-opacity: 1; fill: #20beff; }
}
.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: #20beff; }
.test-data svg [fill='#093445'] { fill: #e0eeff; }
.test-data svg [fill='#fff'] { fill: #ffffff; }
.test-clcl span {
	background: #20beff;
}

.next-step {
	background: rgba(32,190,255,.8);
	border-radius: 8px;
}
.next-step:hover {
	background: rgba(32,190,255,1);
}
.test-btns-right a.btn > span {
	padding: 2px 0 0;
	font-weight: bold;
	font-size: 14px;
	line-height: 21px;
}
.test-btns-right .btn {
	height: 40px;
	width: 84px;
}
.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 {
	padding-top: 2px;
	display: flex;
	justify-content: center;
	align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #E4E4E4 !important;
}

.test-btns-right .quiz__next {
	padding-bottom: 2px;
}

.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 488px;
	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: 183px;
	line-height: 1.5;
}

.greating__desc {
	flex: 0 1 590px;
	
}

.greating__desc p {
	line-height: 1.5;
}

.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;
}

.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 {
	margin-bottom: 80px;
}

.priceing__title {
	margin-bottom: 27px;
}

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

.priceing__item {
	display: flex;
	margin-bottom: 16px;
	padding: 24px;
	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 240px;
	height: 180px;
	margin-right: 24px;
	border-radius: 8px;
}

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

.priceing__main {
	flex: 0 1 624px;
	margin-right: 24px;
}

.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: 8px;
	margin-bottom: 10px;
	line-height: 1.3;
}

.priceing__subitem {
	display: flex;
	align-items: center;
	margin-bottom: 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 240px;
	padding: 30px 24px 24px;
	border-radius: 8px;
	border: 1px solid #D9D9D9;
}

.priceing__total {
	margin-bottom: 5px;
	font-size: 40px;
	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: 28px;
	padding-left: 48px;
	line-height: 1.5;
}

.benefits__item span {
	color: var(--accent-color);
	font-weight: 600;
}

.benefits__item::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 32px;
	height: 32px;
	background-image: url(../img/layout/general/check-round-white.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

.gallery {
	padding-bottom: 60px;
}

.gallery__title {
	margin-bottom: 40px;
}

.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;
}

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;}
}

.popup__inner-info, .consult__inner-info {
    font-size: 14px;
    line-height: 18px;
}