@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url("../css/normalize.css");
@import url("../css/slick.css");
/*
@import url("../css/jquery.fancybox.css");
@import url("../css/aos.css");

*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}

*,*:before,*:after { -webkit-box-sizing:border-box;box-sizing:border-box; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
b, strong { font-weight: bold; }
input { outline: none; }
input:focus,textarea:focus{-webkit-box-shadow:none;box-shadow:none;}
table { border-collapse: collapse; border-spacing: 0; }
img { border: 0; max-width: 100%; vertical-align: top;}
iframe{ border:0; }
a { text-decoration: none; 	-webkit-transition:opacity .3s ease-out; -o-transition:opacity .3s ease-out; transition:opacity .3s ease-out; }
a:hover { text-decoration: none; }
*:focus{outline:none}

body {
	font-family: 'Manrope', sans-serif;
	font-size:14px;
	font-weight:normal;
	color:#000;
	background:#FFF;
	margin:0 auto;
	padding:0;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	position: relative;
}

.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

:root {
	--white: #fff;
	--black: #151515;
	--green: #009499;
	--gray: #555;
	--green-2: #d6f3f4;
	--green-3: #56c9cd;
	--yellow: #fbffb2;
}

.bg__green {
	background: linear-gradient(90deg, #5ccdd1 0.02%, #38b3b8 100%);
}

.bg__red {
	background: linear-gradient(90deg, #d64f60 0%, #b13645 99.5%);
}

.text__white {
    background: #FFF;
    color: var(--green);
    padding: 0 4px;
    border-radius: 4px;
    line-height: 130%;
    display: inline-block;
    vertical-align: top;
}

.color__yellow {
	color: var(--yellow);
}

.color__green {
	color: var(--green);
}

.border__green {
	border-color: var(--green-3);
}

.bg__green {
	background: linear-gradient(90deg, #5ccdd1 0.02%, #38b3b8 100%);
}

.btn {
	border-radius: 10px;
	background: linear-gradient(90deg, #d64f60 0%, #b13645 99.5%);
	box-shadow: 0 6px 8px 0 rgba(195, 68, 81, 0.5);
	padding: 24px 48px;
	display: inline-block;
	vertical-align: top;
	color: #FFF;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border: none;
	transition: .3s box-shadow;
	position: relative;
}

.btn:not(.btn__control):hover {
    box-shadow: 0 6px 18px 0 rgba(195, 68, 81, 0.9);
}

.btn b {
	font-weight: 700;
	font-size: 20px;
	line-height: 120%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--white);
	display: block;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

.btn b img {
	vertical-align: middle;
}

.btn span {
	font-weight: 400;
	font-size: 20px;
	line-height: 120%;
	color: var(--white);
}

.btn__green {
    background: linear-gradient(90deg, #5ccdd1 0.02%, #38b3b8 100%);
    box-shadow: 0 6px 8px 0 rgb(73 191 196 / 30%);
}

.btn__green:hover {
	box-shadow: 0 6px 22px 0 rgb(73 191 196 / 50%) !important;
}

header {
	position: relative;
	box-shadow: 0 6px 34px 0 rgba(0, 0, 0, 0.1);
	background: var(--white);
}

.header__block {
	display: flex;
	align-items: center;
	padding: 10px 0;
}

.header__logo {
	margin-right: 78px;
}

.header__adress {
	font-weight: 400;
	font-size: 18px;
	line-height: 120%;
	color: var(--gray);
	position: relative;
	padding-left: 72px;

}

.header__adress:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 55px;
	height: 55px;
	background: url(../img/adress.png) no-repeat center center;
	background-size: contain;
}

.header__time {
	margin-left: auto;
	font-weight: 400;
	font-size: 18px;
	line-height: 120%;
	color: var(--gray);
}

.header__time span {
	display: block;
	position: relative;
	padding-left: 17px;
}

.header__time span::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background: #89f89b;
	border: 2px solid #D6FDDC;
}

.header__phone {
	margin-left: 100px;
	display: flex;
	flex-flow: column;
	justify-content: flex-end;
	align-items: flex-end;
}

.header__tel {
	margin-bottom: 4px;
}

.header__tel a {
	position: relative;
	color: #151515;
	padding-left: 33px;
	font-weight: 500;
	font-size: 30px;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--black);
}

.header__tel a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 27px;
	height: 27px;
	background: url(../img/phone.svg) no-repeat center center;
	background-size: contain;
}

.header__callback a {
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	background: linear-gradient(90deg, #d64f60 0%, #b13645 99.5%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	border-bottom: 1px dashed #d64f60;
	transition: .3s border-color;
}

.header__callback a:hover {
	border-color: transparent;
}

.main {
	padding: 39px 0 0;
	position: relative;
	background: url(../img/main__bg.jpg) no-repeat center top;
	z-index: 10;
}

.main .container {
	position: relative;
}

.main__info {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.main__title {
	font-weight: 700;
	font-size: 42px;
	line-height: 140%;
	color: var(--black);
	margin: 0 0 16px;

}

.main__tech {
	background: linear-gradient(90deg, #d64f60 0%, #b13645 99.5%);
	padding: 10px 10px 10px 49px;
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
	color: var(--white);
	border-radius: 6px;
	position: relative;
	margin: 0 0 32px;
}

.main__tech:before {
	content: '';
	position: absolute;
	left: -16px;
	bottom: -5px;
	width: 54px;
	height: 54px;
	background: url(../img/tech.png) no-repeat center center;
}

.main__advantages {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 52px;
}
.main__advantages-item {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--gray);
	margin-right: 36px;
	background: url(../img/advange_bg.svg) no-repeat center center;
	background-size: 100% 100%;
	padding: 13px 47px 13px 44px;
	position: relative;
}

.main__advantages-item:last-child {
	margin-right: 0;
}

.main__advantages-item img {
	position: absolute;
	left: -12px;
	top: 50%;
	transform: translateY(-50%);
}

.main__advantages-item:last-child img {
	left: -28px;
}

.main__price {
	box-shadow: 0 4px 14px 5px rgba(0, 0, 0, 0.15);
	background: var(--white);
	padding: 55px 40px 50px;
	display: flex;
	align-items: center;
	border-radius: 12px;
	width: 720px;
	max-width: 100%;
	flex-wrap: wrap;
	margin: 0 0 -14px;
}

.main__price-left {
	margin-right: 50px;
	width: 410px;
}

.main_price-title {
	font-weight: 600;
	font-size: 24px;
	line-height: 140%;
	color: var(--black);
	margin: 0 0 52px;
	position: relative;
}

.main_price-title:before {
    content: '';
    position: absolute;
    right: 0;
    top: 30px;
    width: 40px;
    height: 80px;
    background: url(../img/arrow.svg) no-repeat center center;
}

.main_price-title:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: 40px;
	background: url(../img/gift.png) no-repeat center center;
	margin-top: -8px;
}

.main__price-right {
	width: calc(100% - 460px);
}

.main__price-list {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.main__price-item {
	border: 2px solid var(--green-3);
	margin: 0 0 12px;
	width: 100%;
	border-radius: 6px;
	padding: 10px 20px;
	text-align: center;
	font-weight: 500;
	font-size: 15px;
	line-height: 140%;
	text-align: center;
	color: var(--gray);
	position: relative;
	counter-increment: price;
}

.main__price-item:last-child {
	margin-bottom: 0;
}

.main__price-item:before {
	content: counter(price);
	position: absolute;
	left: -12px;
	top: -12px;
	width: 24px;
	height: 24px;
	border-radius: 50px;
	border-radius: 100%;
	background: linear-gradient(90deg, #d64f60 0%, #b13645 99.5%);
	color: #FFF;
	font-weight: bold;
	line-height: 20px;
	border: 2px solid #F0D7DA;
	font-size: 12px;
}

.main__price-item-two {
	border: none;
	color: #FFF;
	font-weight: bold;
}

.main__doc {
	position: absolute;
	right: 44px;
	bottom: 110px;
	width: 454px;
	max-width: 100%;
	backdrop-filter: blur(14px);
	background: rgba(0, 0, 0, 0.3);
	padding: 18px 30px 18px 54px;
	border-radius: 10px;
}

.main__doc:before {
	content: '';
	position: absolute;
	left: 17px;
	top: 30px;
	width: 22px;
	background: var(--green-3);
	height: 2px;
}

.main__doc-name {
	font-weight: 500;
	font-size: 22px;
	line-height: 100%;
	color: var(--white);
	margin: 0 0 5px;
}

.main__doc-pos {
	font-weight: 400;
	font-size: 15px;
	line-height: 140%;
	color: #d2d2d2;
	margin: 0 0 7px;
}

.main__doc-list ul {
	display: flex;
	flex-wrap: wrap;
}

.main__doc-list ul li {
	font-weight: 600;
	font-size: 18px;
	line-height: 140%;
	color: var(--white);
	margin-right: 20px;
}

.main__doc-list ul li:last-child {
	margin-right: 0;
}

.main__doc-list ul li b {
	color: var(--green-3);
}

.main__mobile-btn {
	display: none;
}

.about {
    padding: 80px 0 0;
    background: linear-gradient(100deg, #5ccdd1 0.02%, #38b3b8 100%), rgba(0, 0, 0, 0.15);
    position: relative;
    margin: -17px 0 0;
}

.about:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.15;
}

.about .container {
	position: relative;
	z-index: 10;
}

.stitle {
	margin: 0 0 60px;
	display: flex;
	flex-flow: column;
	align-items: center;
	flex-wrap: wrap;
}

.stitle__title {
	font-weight: 600;
	font-size: 48px;
	line-height: 140%;
	text-align: center;
}

.stitle__title-white {
	color: #FFF;
}

.stitle__subtitle {
	font-weight: 700;
	font-size: 28px;
	line-height: 140%;
	text-align: center;
	color: var(--white);
	margin-top: 8px;
	padding: 10px 42px;
	background: url(../img/subtitle_bg.svg) no-repeat center center;
	background-size: 100% 100%;
}

.about__block {
	position: relative;
	padding-left: 637px;
	padding-bottom: 80px;
}

.about__image {
	position: absolute;
	left: 0;
	bottom: 0;
}

.about__before {
	position: absolute;
	bottom: 60px;
	left: 0;
	z-index: 5;
	display: flex;
	flex-flow: column;
}

.about__before span {
	font-weight: 600;
	font-size: 20px;
	line-height: 140%;
	text-align: center;
	color: var(--white);
}

.about__before img {
	border-radius: 12px;
	border: 3px solid #FFF;
	display: inline-block;
	vertical-align: top;
	margin: 10px 0 0;
	position: relative;
	z-index: 4;
}

.about__before:before {
	content: '';
	position: absolute;
	right: -16px;
	bottom: 70px;
	z-index: 2;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 12.5px 21px 12.5px;
	border-color: transparent transparent #FFFFFF transparent;
	transform: rotate(90deg);
}

.about__list {
	display: flex;
	flex-flow: column;
}

.about__item {
	display: flex;
	flex-flow: column;
	padding-right: 155px;
	margin: 0 0 70px;
	position: relative;
}

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

.about__title {
	font-weight: 700;
	font-size: 25px;
	line-height: 130%;
	color: var(--white);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
	margin: 0 0 7px;
}

.about__text {
	font-weight: 300;
	font-size: 18px;
	line-height: 140%;
	color: var(--white);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.about__image-small {
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 10px;
	overflow: hidden;
}


.expert {
	background: url(../img/about_bg.jpg) no-repeat center center;
	background-size: 100% 100%;
	padding: 80px 0;
}

.expert__block {
	display: flex;
	align-items: end;
}

.expert__image-big {
	width: 540px;
	max-width: 100%;
	margin-right: 30px;
}

.expert__list {
	width: calc(100% - 570px);
}

.expert__item {
	position: relative;
	padding-left: 145px;
	margin: 0 0 60px;
}

.expert__item:last-child {
	margin: 0;
}

.expert__item:nth-child(1) {
	margin-left: 15px;
}

.expert__item:nth-child(2) {
	margin-left: 22px;
}

.expert__image {
    width: 122px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 140px;
    overflow: hidden;
}

.expert__title {
	font-weight: 600;
	font-size: 24px;
	line-height: 140%;
	color: var(--black);
	margin: 0 0 10px;
}

.expert__text {
	font-weight: 400;
	font-size: 20px;
	line-height: 140%;
	color: var(--gray);
	position: relative;
	padding-left: 44px;
}

.expert__text:before {
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 34px;
	height: 2px;
	background: var(--green);
}

.expert__line {
    position: absolute;
    z-index: 5;
    right: calc(100% + 10px);
    top: 50px;
}

.expert__line-two {
    top: 0px;
    right: calc(100% - 30px);
}

.expert__line-three {
    right: calc(100% + 1px);
    top: -60px;
}

.expert__line img {
    max-width: inherit;
}

.advantages {
	padding: 80px 0 120px;
}

.advantages .stitle {
	margin-bottom: 90px;
}

.advantages__block {
	position: relative;
}

.advantages__block:before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 1070px;
	height: 783px;
	border: 13px solid #f0f0f0;
	border-radius: 12px;
	z-index: 5;
}

.advantages__list {
	width: 650px;
	max-width: 100%;
	position: relative;
	z-index: 10;
}

.advantages__item {
	margin: 0 0 20px;
	position: relative;
	padding: 40px 25px 40px 75px;
	border-radius: 8px;
	background: var(--white);
	box-shadow: 0 6px 34px 0 rgba(0, 0, 0, 0.1);
}

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

.advantages__image {
	position: absolute;
	left: -44px;
	top: 50%;
	transform: translateY(-50%);
	margin-top: 10px;
}

.advantages__title {
	font-weight: 500;
	font-size: 24px;
	line-height: 140%;
	color: var(--black);
	margin: 0 0 15px;
}

.advantages__text {
	font-weight: 600;
	font-size: 18px;
	line-height: 140%;
	color: var(--gray);
}

.advantages__image-big {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 8;
}


.quiz {
	padding: 80px 0;
	background: url(../img/quiz_bg.png) no-repeat center bottom, linear-gradient(100deg, #5ccdd1 0.02%, #38b3b8 100%);
	background-size: cover;
	position: relative;
}

.quiz:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.15;
	z-index: 3;
}

.quiz .container {
	position: relative;
	z-index: 10;
}


.doctors {
	padding: 80px 0 0;
	position: relative;
	z-index: 10;
	margin: 0 0 -55px;
}

.doctors .stitle {
	margin-bottom: 180px;
}

.doctors__list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 -55px;
}

.doctors__item {
	width: calc(100%/3 - 30px*2/3);
	box-shadow: 0 6px 24px 2px rgba(0, 0, 0, 0.05);
	background: var(--green-2);
	margin-right: 30px;
	border-radius: 18px;
	display: flex;
	flex-wrap: wrap;
	flex-flow: column;
	align-items: center;
	padding: 0 26px 126px 26px;
	position: relative;
}

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

.doctors__photo {
	margin-top: -146px;
	margin-bottom: 32px;
}

.doctors__ex {
	position: absolute;
	top: 206px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 72px);
	backdrop-filter: blur(14px);
	box-shadow: 0 6px 34px 0 rgba(0, 0, 0, 0.1);
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	padding: 14px 16px;
	border-radius: 6px;
	font-size: 20px;
}

.doctors__ex b {
	color: var(--white);
	font-weight: 600;
}

.doctors__ex span {
	color: var(--green-3);
}

.doctors__ex img {
	margin-left: auto;
}

.doctors__name {
	font-weight: 700;
	font-size: 26px;
	line-height: 100%;
	text-align: center;
	color: var(--black);
	margin: 0 0 16px;
}

.doctors__pos {
	font-weight: 400;
	font-size: 20px;
	line-height: 140%;
	text-align: center;
	color: var(--gray);
	padding: 0 30px;
}

.doctors__control {
	position: absolute;
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%);
	width: calc(100% - 52px);
}

.btn__small {
	padding: 26px 40px;
}

.btn__small b {
	font-size: 18px;
	line-height: 1;
}

.btn__small img {
	margin-left: 15px;
	vertical-align: top;
}

.gallery {
	background: linear-gradient(100deg, #5ccdd1 0.02%, #38b3b8 100%), rgba(0, 0, 0, 0.15);
	padding: 120px 0 80px;
	position: relative;
}

.gallery:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.15;
}

.gallery .container {
	position: relative;
	z-index: 5;
}

.gallery__list {
    display: flex;
    flex-wrap: wrap;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

.gallery__left {
    width: 630px;
    margin-right: 30px;
}

.gallery__right {
    width: calc(100% - 660px);
    display: flex;
    flex-wrap: wrap;
}

.gallery__item-1 {
    border-radius: 12px;
    width: 100%;
}

.gallery__item-2 {
    width: 100%;
    margin: 0 0 30px;
}

.gallery__item-3 {
    width: calc(100%/2 - 30px/2);
    margin-right: 30px;
}

.gallery__item-4 {
    width: calc(100%/2 - 30px/2);
}

.gallery__list img {
    border-radius: 10px;
    object-fit: cover;
}

.contacts {
	position: relative;
	padding: 52px 0;
}
.map {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #CCC;
}

#map {
	width: 100%;
	height: 100%;
}

.contacts__block {
	position: relative;
	z-index: 10;
	backdrop-filter: blur(7px);
	background: rgba(21, 21, 21, 0.6);
	width: 460px;
	max-width: 100%;
	border-radius: 20px;
	padding: 38px 40px;
	left: 50%;
	transform: translateX(-50%);
	margin-left: 360px;
}
.contacts__item {
	color: #FFF;
	margin: 0 0 20px;
}

.contacts__item:last-child {
	margin: 0;
}

.contacts__title {
	font-weight: 300;
	font-size: 20px;
	line-height: 1;
	color: var(--white);
	margin: 0 0 5px;
}

.contacts__text a {
	color: var(--white);
	text-transform: uppercase;
}

.contacts__text {
	font-weight: 700;
	font-size: 30px;
	color: var(--white);
}

.contacts__text-small {
	font-weight: 500;
	font-size: 24px;
	line-height: 150%;
	color: var(--white);
}

.contacts__small {
	font-weight: 400;
	font-size: 14px;
	color: var(--white);
}

footer {
	background: #343434;
	padding: 34px 0;
}

.footer__block {
	display: flex;
	align-items: center;

}

.footer__link {
	margin: 0 auto;
}

.footer__link a {
	color: #FFF;
	border-bottom: 1px dashed #FFF;
	transition: .3s border-color;
}

.footer__link a:hover {
	border-color: transparent;
}

.footer__phone {
	margin-left: 0;
}

.footer__phone a {
	color: var(--white);
}


.bigform {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    max-width: 100%;
    background: var(--green);
    z-index: 100;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    overflow-y: auto;
    border-radius: 20px;
    display: none;
}

.bigform::-webkit-scrollbar {
	width: 0;
}

.bigform.open {
	right: 0;
}

.bigform__title {
    font-size: 24px;
    font-weight: bold;
    color: #FFF;
    margin: 0 0 12px;
    text-align: center;
	text-transform: uppercase;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #5b5b5b;
    opacity: .8;
	display: none;
	z-index: 99;
}

.bigform__text {
    color: #FFF;
    margin: 0 0 24px;
	font-size: 16px;
	text-align: center;
}

.bigform__text-type-2 {
    margin: 0;
}

.bigform__phone .phone-block {
    margin-left: 0;
}

.bigform__phone .phone-block span {
    text-shadow: none;
}

.bigform__phone .phone-block a {
    text-shadow: none;
}

.bigform__phone {
    width: 100%;
}

.bigform__close {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.bigform__close span {
	display: block;
	position: absolute;
	left: 0;
	top: 10px;
	width: 24px;
	height: 2px;
	background: #FFF;
	border-radius: 4px;
}

.bigform__close span:nth-child(1) {
	transform: rotate(-45deg);
}

.bigform__close span:nth-child(2) {
	transform: rotate(45deg);
}

.form {
    display: flex;
    flex-wrap: wrap;
    background: #FFF;
    padding: 20px 32px;
    border-radius: 8px;
}

.form-vertical {
	flex-flow: column;
	background: transparent;
	padding: 0;
}

.form__group {
    margin-right: 12px;
}

.form-vertical .form__group {
    margin: 0 0 12px;
}

.form-vertical .btn_form {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 140%;
    padding: 16px 20px;
}

.form__politic {
    width: 100%;
    color: #FFF;
    margin-top: 12px;
    font-size: 13px;
    font-style: italic;
}

.form-vertical .form__politic {
	font-size: 12px;
	text-align: center;
}

.form-vertical .form__politic br {
	display: none;
}

.form__politic a {
    color: #FFF;
    border-bottom: 1px dashed #FFF;
    transition: .3s border-color;
}

.form__politic a:hover {
    border-color: transparent;
}

.form__group-input {
    background: #FFF;
    border: none;
    height: 62px;
    width: 260px;
    border: 1px solid #CCC;
    padding: 12px 15px;
    font-size: 18px;
    border-radius: 6px;
    max-width: 100%;
	font-family: sans-serif;
}

.form-vertical .form__group-input {
	width: 100%;
	text-align: center;
}

/* Quiz */

.quiz-block__steps {
	height: 100%;
}

.quiz-block__step {
	flex-flow: column;
	display: flex;
	height: 100%;
}

.quiz-block__title {
	font-size: 26px;
	margin: 0 0 32px;
	line-height: 120%;
}

.quiz-block__list {
	display: flex;
	flex-wrap: wrap;
}

.quiz-block__item {
	width: 180px;
	margin-right: 40px;
}

.quiz-block__item:last-child {
	margin-right: 0;
}

.quiz-block-radio {
	display: none;
}

.quiz-block-label {
	display: flex;
	position: relative;
	flex-flow: column;
	align-items: center;
	cursor: pointer;
}

.quiz-block-label__image:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -20px;
	width: 45px;
	height: 45px;
	border-radius: 100px;
	border: 1px solid #B9C0C4;
	background: #FFF;
	transform: translateX(-50%);
}

.quiz-block-radio:checked + .quiz-block-label .quiz-block-label__image:after {
	background: url(../img/check_green.svg) no-repeat center center #FFF;
	background-size: 22px auto;
	border-color: var(--green-3);
	border-width: 2px;
}

.quiz-block-label__image {
	width: 100%;
	height: 148px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid #B9C0C4;
	margin: 0 0 40px;
	position: relative;
}

.quiz-block-radio:checked + .quiz-block-label .quiz-block-label__image {
	border-color: var(--green-3);
	border-width: 2px;
}

.quiz-block-label span {
	font-size: 18px;
}

.quiz-block__item-noimage {
    margin: 0 0 20px;
}

.quiz-block-label-noimage {
    text-align: left;
    align-items: flex-start;
    padding: 18px 30px 18px 50px;
    background: #f3f3f3;
    border-radius: 9px;
    width: 300px;
}

.quiz-block__item-noimage input:checked + label {
    background: linear-gradient(90deg, #5ccdd1 0.02%, #38b3b8 100%);
    color: #FFF;
}

.quiz-block-label-noimage span {
    text-align: left;
}

.quiz-block__list-noimage {
    flex-flow: column;
}

.quiz-block__list-noimage span:before {
	content: '';
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border-radius: 30px;
	border: 1px solid #cfcfcf;
}

.quiz-block__item-noimage input:checked + label span:before {
	background: url(../img/check_green.svg) no-repeat center center #FFF;
	border-color: #FFF;
	background-size: 12px;
}

.quiz-block__controls {
	display: flex;
	margin-top: 100px;
	justify-content: space-between;
}

.quiz__form {
    border-radius: 20px;
    background: #E2F3F3;
    background-size: contain;
    padding: 36px 60px;
    position: relative;
    z-index: 5;
    box-shadow: 0px 34px 89px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.quiz__form-type-2 {
	margin-top: 50px;
}

.quiz__title {
    color: var(--black);
    margin: 0 0 36px;
    font-size: 32px;
    width: 840px;
    max-width: 100%;
    font-weight: 500;
}

.quiz__info {
    display: flex;
    align-items: flex-start;
}

.quiz__left {
    width: 700px;
    background: #FFF;
    padding: 27px 40px 40px;
    border-radius: 12px;
	max-width: 100%;
	position: relative;
}

.quiz__right {
	width: calc(100% - 750px);
	margin-left: 50px;
}

.quiz__presents-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 140%;
    color: var(--black);
    margin: 0 0 30px;
}

.quiz__gifts {
    display: flex;
    flex-flow: column;
}

.quiz__gift {
    margin: 0 0 22px;
    border-radius: 6px;
    background: #FFF;
    display: flex;
    align-items: center;
    padding: 22px 31px 22px 151px;
    position: relative;
    border: 2px solid var(--green-3);
}

.quiz__gift:last-child {
    margin: 0;
}

.quiz__gift-image {
    position: absolute;
    left: 10px;
    bottom: 0;
}

.quiz__gift-text {
    font-size: 18px;
    line-height: 140%;
    font-weight: 600;
}

.quiz__gift-image-type-2 {
    left: 0;
}

.quiz-block__text {
    font-size: 20px;
    margin: 0 0 32px;
    color: #999999;
    width: 340px;
    max-width: 100%;
}

.quiz-finul__form {
    display: flex;
    align-items: flex-start;
    width: 360px;
	max-width: 100%;
}

.quiz-finul__form .form__politic {
    color: #a1a1a1;
}

.quiz-finul__form .form__politic a {
    color: #a1a1a1;
    border-bottom: 1px dashed #a1a1a1;
}

.quiz-finul__form .form__group-input {
    background: #F5F5F5;
    padding: 20px;
    height: 74px;
    font-size: 20px;
}

.quiz-finul__image {
	display: none;
	position: absolute;
	right: 20px;
	bottom: 0;
	width: 250px;
	max-width: 100%;
}

.progressbar {
    width: 100%;
	position: relative;
	background-color: #EEEEEE;
	box-shadow: inset 0px 1px 1px rgba(0,0,0,.1);
}

.progressbar {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 35px;
    position: relative;
    background: #FFF !important;
    border-radius: 100px !important;
    border: 0 solid #e1e1e1 !important;
}

.proggress{
	height: 48px !important;
	width: 10px;
	background: linear-gradient(90deg, #d64f60 0%, #b13645 99.5%) !important;
	border-radius: 100px !important;
}

.progress-line {
    width: 700px;
    max-width: 100%;
}

.percentCount {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	left: 50%;
	bottom: -25px;
	transform: translateX(-50%);
	color: #434343;
	border-radius: 4px;
	font-weight: 700;
}

.quiz-loader {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	flex-wrap: wrap;
	align-items: center;
	flex-flow: column;
	justify-content: center;
	background: #FFF;
	z-index: 20;
}

.open-loader .quiz-loader{
	display: flex;
}

.quiz-loader__title {
	font-size: 32px;
	margin: 0 0 18px;
}

.quiz-loader__subtitle {
	font-size: 18px;
	margin: 0 0 24px;
}

.btn__border {
    background: transparent;
    box-shadow: none;
    border: 2px solid #a1a1a1;
}

.btn__border span {
    color: #a1a1a1;
}

.btn__control {
    padding: 18px 32px;
    box-shadow: none;
    display: flex;
    align-items: center;
    flex-flow: row;
    border-radius: 6px;
}

.btn__control span {
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.3px;
}

.quiz__gift-two {
    border: none;
    background: linear-gradient(90deg, #5ccdd1 0.02%, #38b3b8 100%);
    color: #FFF;
}

.text__red {
    color: #d14c5d;
}

.btn__form {
    box-shadow: none;
    width: 100%;
    padding: 20px 24px;
}

.btn__form b {
    font-size: 18px;
}

.btn_form[disabled]:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/loading.svg) no-repeat center center rgb(0 0 0 / 30%);
    border-radius: 10px;
    opacity: 1;
    backdrop-filter: blur(1px);
}

.btn__control svg {
    width: 13px;
    height: 20px;
    fill: #FFF;
}

.btn__control-left svg {
    margin-right: 8px;
    fill: #a1a1a1;
}

.btn__control-right {
    margin-left: auto;
}

.btn__control-right svg {
    margin-left: 8px;
}

.btn__action {
    width: 100%;
}

.bigform__action {
    background: #FFF;
    width: 760px;
    max-width: 100%;
    padding: 40px 40px 40px 20px;
}

.bigform__action .bigform__close span {
    background: #343434;
}

.action {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.action__form {
    display: none;
}

.action__image {
    margin-right: 40px;
    width: 260px;
}

.action__info {
    width: calc(100% - 300px);
}

.action__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 120%;
    margin: 0 0 6px;
}

.action__subtitle {
    margin: 0 0 24px;
    font-size: 17px;
}

.form__radios {
    display: flex;
    align-items: center;
    margin: 0 0 13px;
}

.form__radio input {
    display: none;
}

.form__radio label {
    display: block;
    cursor: pointer;
    border: 2px solid #343434;
    border-radius: 100px;
    border-color: transparent;
    padding: 8px;
}

.form__radio input:checked + label {background: var(--green-2);}

.action .form-vertical .form__politic {
    color: var(--gray);
}

.action .form-vertical .form__politic a {
    border-color: var(--gray);
    color: var(--gray);
}