@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&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: 'Roboto', sans-serif;
	font-size:16px;
	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 {
	--orange: #E5712A;
	--orange10: rgba(229, 113, 42, 0.1);
	--green: #129488;
	--green2: #D8F8F3;
	--green3: #F3FAF9;
	--sky: #EAF1FB;
	--gray: #444C54;
	--gray2: #726E6E;
	--black: #131313;
	--white: #FFFFFF;
	--white2: #F5F5F5;
	--orangeBtn: linear-gradient(90deg, #E5712A 0%, #FF9452 95.48%);
	--orangeShadow: 0px 6px 4px #9B5124;
}

.color-green {
	color: var(--green);
}

.stitle {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	margin: 0 0 40px;
}

.stitle-center {
	align-items: center;
	text-align: center;
}

.stitle__label {
	background: var(--green);
	margin: 0 0 14px;
	text-transform: uppercase;
	color: var(--white);
	padding: 5px 14px;
	border-radius: 5px;
	font-weight: 500;
	font-size: 22px;
}

.stitle__title {
	font-size: 42px;
	line-height: 130%;
	color: var(--gray);
	font-weight: 600;
	font-family: 'Montserrat';
}

.btn {
	color: var(--white);
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 150%;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	cursor: pointer;
	padding: 14px 32px;
}

.btn span {
	position: relative;
	display: block;
}

.btn-orange {
	color: var(--white);
	background: var(--orangeBtn);
	box-shadow: var(--orangeShadow);
	border-radius: 12px;
}

.btn-main {
    transform: skewX(-10deg);
	padding: 18px 62px;
	font-size: 22px;
}

.btn-main span {
	transform: skewX(10deg);
}

.wrapper {
	background: url(../img/wrapper.jpg) no-repeat center center;
	background-size: cover;
}

header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header__block {
	display: flex;
	flex-wrap: wrap;
	padding: 12px 0px;
	align-items: center;
}

.header__logo {
	margin-right: 127px;
}

.header__adress {
	position: relative;
	padding-left: 36px;
	font-size: 18px;
}

.header__adress:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 27px;
	background: url(../img/adress.svg) no-repeat center center;
	background-size: contain;
}

.header__callback {
	margin-left: auto;
}

.header__callback a {
	padding: 18px 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #131313;
	border: 2px solid var(--orange);
	background: var(--orange10);
	border-radius: 100px;
	font-weight: 600;
}

.header__contact {
	margin-left: 56px;
	display: flex;
	flex-flow: column;
}

.header__time {
	font-size: 16px;
	color: var(--gray2);
	line-height: 120%;
}

.header__phone {
	color: var(--black);
	font-size: 24px;
	line-height: 120%;
}

.main {
	padding: 54px 0 60px;
}

.main__block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.main__title {
	font-size: 54px;
	line-height: 130%;
	margin: 0 0 30px;
	font-weight: 500;
	color: var(--gray);
	font-family: 'Montserrat';
}

.mark-green {
	background: var(--green);
	color: var(--white);
	border-radius: 10px;
	padding: 3px 12px;
	font-weight: 600;
}

.mark-green small {
	font-size: 30px;
	margin-right: 5px;
}

.main__advantages {
	display: flex;
	flex-flow: column;
	gap: 16px;
	margin: 0 0 20px;
}

.main__advantage {
	background: var(--white2);
	box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.07);
	border-radius: 12px;
	padding: 21px 40px 21px 70px;
	transform: skewX(-10deg);
	position: relative;
	width: 360px;
}

.main__advantage-icon {
	position: absolute;
	left: -22px;
	top: 50%;
	transform: translateY(-50%) skewX(10deg);
}

.main__advantage-text {
	font-size: 18px;
	font-weight: 500;
	line-height: 150%;
	transform: skewX(10deg);
	color: var(--gray);
}

.main__control {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
}

.main__control-text {
	font-size: 18px;
	line-height: 150%;
	color: var(--black);
	position: relative;
	width: 400px;
	max-width: 100%;
	margin: 0 0 26px;
}

.main__control-text:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../img/arrow.svg) no-repeat center center;
	background-size: contain;
	width: 64px;
	height: 57px;
	margin-top: 10px;
}

.main__control-text b {
	display: block;
}

.main__right {
	margin-left: auto;
	width: 630px;
}

.main__images {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-left: auto;
}

.main__image {
    width: calc(100% / 2 - 14px);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.07);
}

.main__image span {
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 20px;
	width: 170px;
	text-align: center;
	padding: 4px 12px;
	text-transform: uppercase;
	font-size: 16px;
	z-index: 5;
	background: var(--white);
	color: var(--black);
	border-radius: 4px;
}

.main__user {
	margin: 44px 0 0;
	position: relative;
	padding: 20px 200px 20px 28px;
	display: flex;
	flex-flow: column;
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.07);
	width: 580px;
	max-width: 100%;
}

.main__user-name {
	margin: 0 0 6px;
	color: var(--gray);
	font-size: 22px;
	line-height: 120%;
	font-weight: bold;
}

.main__user-text {
	font-size: 16px;
	line-height: 140%;
	color: var(--gray);
}

.main__user-image {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 12px;
	overflow: hidden;
}

.types {
	padding: 80px 0px;
}

.types__list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.types__item {
	width: calc(100%/2 - 30px/2);
	border-radius: 12px;
	padding: 50px;
	position: relative;
	background: var(--green3);
    display: flex;
    flex-flow: column;
}

.types__title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.types__name {
	background: var(--green);
	padding: 12px 22px;
	border-radius: 6px;
	transform: skewX(-10deg);
	margin-right: 20px;
	color: var(--white);
	font-size: 22px;
	font-weight: 500;
}

.types__name span {
	display: block;
	transform: skewX(10deg);
}

.types__name-white {
	box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.07);
	color: var(--green);
	background: var(--white);
}

.checks__list {
	display: flex;
	flex-flow: column;
	gap: 16px;
}

.checks__list li {
	color: var(--black);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 20px;
}

.checks__list li:before {
	content: '';
	width: 27px;
	height: 27px;
	margin-right: 15px;
	background: url(../img/check-red.svg) no-repeat center center;
	background-size: contain;
}

.checks__list-white li {
	color: var(--white);
}

.checks__list-white li:before {
	background: url(../img/check-white.svg) no-repeat center center;
	background-size: contain;
}

.types__date {
	font-size: 22px;
	color: var(--gray);
}

.types__date-white {
	color: var(--white);
}

.types__subtitle {
	margin: 18px 0 25px;
	font-weight: 500;
	font-size: 22px;
	line-height: 120%;
}

.types__subtitle-white {
	color: var(--white);
}

.types__price {
	display: flex;
	flex-wrap: wrap;
	flex-flow: column;
    align-items: flex-start;
	margin: 40px 0 0;
	gap: 0;
	margin-top: auto;
	padding-top: 20px;
}

.types__price s {
	font-size: 22px;
	color: #A3A3A3;
}

.types__price b {
	font-size: 30px;
	color: var(--green);
	font-family: 'Montserrat';
}

.types__image {
	position: absolute;
	right: 18px;
	bottom: 20px;
	pointer-events: none;
}

.types__item-green {
	background: var(--green);
}

.types__price-white s,
.types__price-white b {
	color: var(--white);
}


.doctors {
	padding: 80px 0px;
	background: var(--sky);
}

.doctors__list {
	display: flex;
	flex-wrap: wrap;
	gap: 100px;
	width: 1020px;
	max-width: 100%;
	margin: 0 auto;
}

.doctors__item {
	position: relative;
	width: calc(100%/2 - 100px/2);
}

.doctors__block {
	position: relative;
	width: 460px;
}

.doctors__image {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}

.doctors__labels {
	position: absolute;
	right: -52px;
	top: 16px;
	z-index: 4;
	width: 133px;
	display: flex;
	flex-flow: column;
	gap: 5px;
}

.doctors__label {
	padding: 12px;
	display: flex;
	flex-flow: column;
	gap: 7px;
	color: var(--white);
	background: var(--green);
	border-radius: 5px;
}

.doctors__label:nth-child(2) {
	background: #15B0A2;
}

.doctors__label b {
	font-size: 26px;
	line-height: 1;
}

.doctors__label span {
	font-size: 14px;
	line-height: 120%;
}

.doctors__certificates {
	position: absolute;
	left: 20px;
	bottom: 20px;
	z-index: 4;
	display: flex;
	flex-wrap: wrap;
	cursor: pointer;
}

.doctors__certificates img {
	border-radius: 5px;
	overflow: hidden;
	position: relative;
	z-index: 2;
	box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.15);
}

.doctors__certificates img:nth-child(2) {
	margin-left: -30px;
	z-index: 3;
}

.doctors__certificates img:nth-child(3) {
	margin-left: -30px;
	z-index: 4;
}

.doctors__info {
	margin-top: 30px;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
}

.doctots__pos {
	color: var(--gray);
	margin: 0 0 10px;
	font-weight: bold;
	font-size: 22px;
	font-family: 'Montserrat';
}

.doctors__name {
	color: var(--gray);
	font-size: 20px;
	margin: 0 0 34px;
}

.doctors__control {
	width: 100%;
}

.doctors__cup {
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 3;
}

.portfolio {
	padding: 80px 0;
	background: #F5F5F5;
}

.portfolio__item {
	display: flex;
	flex-wrap: wrap;
	gap: 100px;
	align-items: center;
	padding: 50px 0px;
}

.portfolio__images {
	width: 608px;
	max-width: 100%;
	position: relative;
}

.portfolio__image {
	width: 543px;
	border-radius: 12px;
	overflow: hidden;
}

.portfolio__result {
	position: absolute;
	right: 0;
	bottom: -56px;
	border-radius: 24px;
	overflow: hidden;
}

.portfolio__info {
	display: flex;
	flex-flow: column;
	position: relative;
	width: 514px;
	max-width: 100%;
	margin-left: auto;
}

.portfolio__info:before {
	content: '';
	position: absolute;
	left: -60px;
	top: -70px;
	width: 131px;
	height: 98px;
	background: url(../img/quete.svg) no-repeat center center;
	background-size: contain;
}

.portfolio__title {
	font-family: 'Montserrat';
	font-size: 32px;
	line-height: 150%;
	font-style: italic;
    font-weight: 500;
}

.portfolio__name {
	margin-top: 40px;
	color: var(--gray);
	font-size: 18px;
}

.portfolio__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0 0;
}

.por_prev {
	order: 1;
	cursor: pointer;
}

.por_next {
	order: 3;
	cursor: pointer;
}

.portfolio .slick-dots {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    bottom: 0;
    position: relative;
	order: 2;
	width: auto;
}

.portfolio .slick-dots li {
	width: 34px;
	height: 34px;
	background: rgba(18, 148, 136, 0.17);
}

.portfolio .slick-dots li.slick-active {
	background: var(--green);
}

.portfolio .slick-dots li button {
	display: none;
}

.consultation {
	padding: 80px 0 0;
}

.consultation__block {
	position: relative;
	padding-left: 530px;
	padding-bottom: 80px;
}

.consultation__image {
	position: absolute;
	left: -156px;
	bottom: 0;
}

.consultation__info {
	display: flex;
	flex-flow: column;
	position: relative;
	z-index: 5;
}

.consultation__title {
	margin: 0 0 30px;
	font-size: 38px;
	line-height: 140%;
}

.consultation__labels {
	display: flex;
	flex-wrap: wrap;
	width: 680px;
	max-width: 100%;
	gap: 26px 20px;
}

.consultation__label {
	width: calc(100%/2 - 20px/2);
	background: #EAF1FB;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	padding: 20px 20px 20px 104px;
	border-radius: 10px;
}

.consultation__label-img {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
}

.consultation__label-title {
	color: var(--black);
	margin: 0 0 5px;
	line-height: 140%;
}

.consultation__price {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 18px;
}

.consultation__price b {
	color: var(--gray);
}

.consultation__price s {
	color: #A3A3A3;
}

.consultation__text {
	font-style: italic;
	color: var(--gray);
	margin: 26px 0 38px;
	font-size: 18px;
}

.consultation__controls {
	display: flex;
	align-items: center;
	gap: 30px;
}

.kt {
	display: flex;
	align-items: center;
	gap: 10px;
}

.kt span {
	width: 285px;
	max-width: 100%;
	color: var(--gray);
}

.credit {
	background: var(--green3);
	padding: 66px 0px;
	overflow: hidden;
}

.credit__block {
	position: relative;
	display: flex;
	align-items: center;
}

.credit__info {
	display: flex;
	flex-flow: column;
	width: 610px;
	max-width: 100%;
}

.credit__title {
	margin: 0 0 24px;
	color: var(--gray);
	font-size: 48px;
	font-family: 'Montserrat';
	font-weight: 600;
}

.credit__text {
	color: #4E4E4E;
	line-height: 160%;
	font-size: 18px;
}

.credit__image {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.price {
	padding: 80px 0;
}

.price__name {
	display: flex;
	justify-content: center;
}

.price__name span {
	padding: 18px 62px;
	text-transform: uppercase;
	font-family: 'Montserrat';
	box-shadow: none;
	background: rgba(229, 114, 42, 0.1);
	border: 1px solid #E5712A;
	border-radius: 12px;
	text-transform: uppercase;
	font-weight: 600;
}

.price__list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 100px;
	margin: 40px 0;
	justify-content: center;
}

.price__item {
	width: calc(100%/3 - 100px*2/3);
	position: relative;
	background: #DFF7F8;
	padding: 23px;
	border-radius: 10px;
	min-height: 315px;
	display: flex;
	flex-wrap: wrap;
	flex-flow: column;
}

.price__title {
	font-size: 24px;
	list-style: 120%;
	color: var(--gray);
	margin: 0 0 16px;
	font-weight: 500;
}

.price__checks {
	display: flex;
	flex-flow: column;
	gap: 10px;
	margin: 0 0 40px;
}

.price__checks li {
	color: var(--gray);
	font-size: 15px;
	position: relative;
	padding-left: 30px;
	line-height: 150%;
}

.price__checks li:before {
	content: '';
	min-width: 20px;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
	top: 0;
	background: url(../img/check-green.svg) no-repeat center center;
	background-size: contain;
}

.price__sum {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: auto;
	margin-bottom: 16px;
}

.price__sum b {
	color: var(--green);
	font-size: 24px;
	line-height: 120%;
}

.price__sum s {
	color: #A3A3A3;
	font-size: 16px;
	line-height: 120%;
}

.price__controls {
	position: relative;
	z-index: 5;
}

.price__image {
	position: absolute;
	top: 74px;
	right: -70px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #DFF7F8;
	border-radius: 200px;
	width: 137px;
	height: 137px;
	z-index: 3;
}

.btn-price {
	box-shadow: none;
}

.quiz-wrapper {
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
}

.quiz-section {
	padding: 80px 0px;
	background: #D2EAE8;
}

.quiz {
	width: 1160px;
	max-width: 100%;
	margin: 0 auto;
	background: var(--white);
	padding: 20px;
	border-radius: 12px;
	display: flex;
	flex-wrap: wrap;
}

.quiz__info {
	width: 410px;
	max-width: 100%;
	margin-right: 60px;
	display: flex;
	flex-flow: column;
	background: var(--green);
	padding: 33px;
	padding: 20px;
	border-radius: 12px;
}

.quiz__info-img {
	margin: 0 0 22px;
	border-radius: 12px;
	overflow: hidden;
}

.quiz__info-img img {
	width: 100%;
}

.quiz__info-title {
	color: var(--white);
	font-weight: 600;
	margin: 0 0 24px;
	font-size: 18px;
	line-height: 130%;
	font-family: 'Montserrat';
}

.quiz__info-kt {
	display: flex;
	align-items: center;
	gap: 13px;
	color: var(--white);
	font-style: italic;
}

.quiz__right {
	padding: 25px 0px;
	width: 610px;
	display: flex;
	flex-flow: column;
}

.quiz__steps-title {
	color: var(--gray);
	font-size: 18px;
	line-height: 130%;
	margin: 0 0 14px;
}

.quiz__steps-line {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 30px;
}

.quiz__steps-line span {
	width: calc(100% / 4 - 10px * 3 / 4);
    height: 10px;
    background: #D9D9D9;
    border-radius: 6px;
}

.quiz__steps-line span.active {
	background: #65CD1F;
}

.quiz__question {
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--gray);
	line-height: 130%;
	font-size: 26px;
	font-weight: 500;
	margin: 0 0 30px;
}

.quiz__answers {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.quiz__answer {
	width: calc(100%/2 - 10px/2);
}

.quiz__answer input {
	display: none;
}

.quiz__answer label {
	display: flex;
	align-items: center;
	height: 60px;
	padding: 8px 16px 8px 42px;
	background: var(--white2);
	border: 2px solid var(--white2);
	border-radius: 12px;
	font-size: 17px;
	position: relative;
	cursor: pointer;
}

.quiz__answer label img {
	margin-left: auto;
}

.quiz__answer label:before {
	content: '';
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	border: 1px solid #E9E9E9;
	border-radius: 100px;
	background: var(--white);
}

.quiz__answer input:checked + label {
	border-color: var(--green);
}

.quiz__answer input:checked + label:before {
	background: var(--green);
	border-width: 2px;
}

.quiz__controls {
	display: flex;
	align-items: center;
	margin-top: 60px;
	gap: 10px;
}

.quiz__prev {
	background: var(--white2);
	width: 92px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 12px;
}

.quiz__finul {
	display: flex;
	flex-flow: column;
	align-items: center;
}

.quiz__finul-title {
	font-size: 36px;
	line-height: 130%;
	margin: 0 0 12px;
    padding: 16px 22px;
    background: var(--green);
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    transform: skewX(-10deg);
}

.quiz__finul-title span {
	display: block;
    color: var(--white);
    font-size: 22px;
    line-height: 140%;
    transform: skewX(10deg);
}

.quiz__finul-subtitle {
	text-align: center;
	line-height: 150%;
	font-size: 18px;
}

.quiz__finul .formq {
    display: flex;
	flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0 0;
}

.btn-form {
    box-shadow: none;
    padding: 12px 32px;
    height: auto;
    line-height: 100%;
    min-height: auto;
}

.quiz__finul .formq input {
    transition: .3s background;
    width: 270px;
    margin: 0;
    padding: 22px 20px;
    border-radius: 12px;
    border: 2px solid #c6e0ef;
    background: #FFF;
    font-size: 18px;
}

.btn-next {
	box-shadow: none;
}

.advantages {
	padding: 80px 0;
}

.advantages__block {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: 0 0 80px;
	gap: 70px;
}

.advantages__info {
	display: flex;
	flex-flow: column;
	width: 545px;
	max-width: 100%;
}

.advantages__title {
	font-size: 38px;
	line-height: 140%;
	margin: 0 0 18px;
	font-weight: 500;
	color: var(--gray);
}

.advantages__subtitle {
	font-size: 18px;
	line-height: 30px;
	margin: 0 0 20px;
	font-weight: bold;
}

.advantages__check {
	display: flex;
	flex-flow: column;
	gap: 15px;
}

.advantages__check li {
	position: relative;
	padding-left: 30px;
	color: var(--gray);
	line-height: 150%;
}

.advantages__check li:before {
	content: '';
	width: 20px;
	height: 20px;
	background: url(../img/check-red.svg) no-repeat center center;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
}

.advantages__image {
	width: 625px;
	max-width: 100%;
	margin-left: auto;
}

.advantages__block-reverse {
	flex-flow: row-reverse;
}

.advantages__block-reverse .advantages__image {
	margin-left: 0;
	margin-right: auto;
}

.questions {
	padding: 80px 0;
	background: #E7F4F3;
}

.questions .stitle {
	margin: 0 0 80px;
}

.questions__list {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 60px;
	margin: 0 0 50px;
}

.questions__item {
	width: 240px;
	padding: 52px 34px 34px;
	position: relative;
	background: var(--white);
	border: 2px solid var(--green);
	font-size: 22px;
	line-height: 150%;
	font-weight: 500;
	text-align: center;
	font-family: 'Montserrat';
	border-radius: 12px;
}

.questions__item:before {
	content: '';
	width: 62px;
	height: 62px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -31px;
	background: url(../img/check-green.svg) no-repeat center center;
	background-size: 100% 100%;
}

.questions__time {
	text-align: center;
	color: var(--gray);
	margin: 0 0 20px;
	font-size: 20px;
}

.questions__phone {
	text-align: center;
	color: var(--gray);
	margin: 0 0 30px;
	font-size: 44px;
	font-weight: bold;
}

.questions__phone a {
	color: var(--black);
}

.questions__text {
	text-align: center;
	margin: 0 0 30px;
	color: var(--gray);
	font-size: 20px;
}

.questions__control {
	display: flex;
	justify-content: center;
}

.questions__control .btn {
	padding: 25px;
}

.garant {
	padding: 80px 0;
}

.garant__block {
	background: url(../img/garant.jpg) no-repeat center center;
	padding: 100px 70px;
	display: flex;
	position: relative;
	flex-flow: column;
	align-items: flex-start;
	border-radius: 20px;
}

.garant__title {
	font-size: 38px;
	line-height: 140%;
	color: var(--gray);
	font-family: 'Montserrat';
	font-weight: 600;
	margin: 0 0 50px;
}

.garant__text {
	color: var(--gray);
	line-height: 150%;
	margin: 0 0 70px;
	font-size: 26px;
	width: 620px;
	max-width: 100%;
}

.garant-doc {
	position: absolute;
	right: 70px;
	bottom: 0;
}

.garant__info {
	position: absolute;
	right: 0;
	bottom: 44px;
	width: 520px;
	background: var(--white);
	box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.07);
	border-radius: 12px;
	display: flex;
	padding: 18px;
}

.garant__info-left {
	width: 722px;
	max-width: 100%;
}

.garant__pos {
	color: var(--gray);
	margin: 0 0 8px;
	font-weight: 500;
	font-size: 20px;
	line-height: 120%;
}

.garant__name {
	color: var(--gray);
}

.garant__stars {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #757575;
	margin-top: auto;
	height: 100%;
}

.garant__info-right {
	display: flex;
	flex-flow: column;
	gap: 15px;
	margin-left: auto;
}

.garant__label {
	display: flex;
	flex-flow: column;
}

.garant__label b {
	color: var(--green);
	font-size: 28px;
	font-weight: bold;
	font-family: 'Montserrat';
}

.garant__label s {
	color: var(--gray);
	font-size: 14px;
}

.diagnostics {
	padding: 80px 0;
}

.diagnostics__block {
	display: flex;
	align-items: center;
	justify-content: center;
}

.diagnostics__info {
	width: 750px;
	background: #F3FAF9;
	border: 2px solid var(--green);
	padding: 52px 82px;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	border-radius: 10px;
}

.diagnostics__title {
	margin: 0 0 40px;
	padding: 8px 31px;
	background: var(--green);
	display: flex;
	flex-wrap: wrap;
	border-radius: 10px;
	transform: skewX(-10deg);
}

.diagnostics__title span {
	display: block;
	color: var(--white);
	font-size: 22px;
	line-height: 140%;
	transform: skewX(10deg);
}

.advantages__check-two {
	width: 460px;
	max-width: 100%;
}

.advantages__check-two li {
	font-size: 18px;
}

.diagnostics__controls {
	margin: 40px 0 0;
	display: flex;
	align-items: center;
	gap: 42px;
}

.phone__block {
	display: flex;
	flex-flow: column;
	gap: 6px;
}

.phone__block span {
	color: var(--gray);
	font-size: 16px;
	line-height: 120%;
}

.phone__block a {
	font-size: 24px;
	font-weight: 600;
	color: var(--gray);
	font-family: 'Montserrat';
}

.phone__block a b {
	font-weight: 600;
}

.diagnostics__image {
	margin-left: -100px;
}

.taxi {
	padding: 80px 0;
}

.taxi__block {
	display: flex;
	align-items: center;
	gap: 120px;
}

.taxi__info {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	width: 522px;
}

.taxi__title {
	margin: 0 0 50px;
	font-size: 42px;
	line-height: 130%;
	font-weight: 500;
	color: var(--gray);
}

.taxi__adress {
	position: relative;
	padding-left: 131px;
	display: flex;
	flex-flow: column;
	gap: 5px;
}

.taxi__adress b {
	font-size: 20px;
	color: var(--gray);
}

.taxi__adress span {
	color: #777777;
}

.taxi__adress:before {
	content: '';
	width: 114px;
	height: 90px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../img/map-adress.svg) no-repeat center center;
	background-size: contain;
}

.taxi__controls {
	margin-top: 50px;
}

.taxi__image {
	border-radius: 12px;
	overflow: hidden;
	width: 650px;
	margin-left: auto;
}

.contacts {
	background: url(../img/map.jpg) no-repeat center center;
	background-size: cover;
	padding: 80px 0;
}

.contacts__block {
	display: flex;
	flex-wrap: wrap;
	gap: 43px;
	justify-content: center;
}

.contacts__map {
	width: 462px;
	max-width: 100%;
	background: #CCC;
	border-radius: 12px;
	overflow: hidden;
}

.contacts__map #map {
	width: 100%;
	height: 100%;
}

.contacts__info {
	width: 410px;
	max-width: 100%;
}

.contacts__title {
	font-size: 42px;
	list-style: 120%;
	margin: 0 0 30px;
}

.contacts__white {
	border-radius: 12px;
	background: var(--white);
	padding: 40px 52px;
	display: flex;
	flex-flow: column;
	gap: 30px;
}

.contacts__item {
	display: flex;
	flex-flow: column;
	gap: 8px;
}

.contacts__item-title {
	color: #8E8D8D;
}

.contacts__item-val {
	font-size: 22px;
	line-height: 130%;
	font-weight: 600;
}

.contacts__item-val a {
	color: #323232;
	font-size: 26px;
}

.contacts__item-text {
	margin-top: 14px;
	color: #323232
}

footer {
	padding: 40px 0px;
	background: var(--white2);
}

.footer__block {

}

.footer__top {
	display: flex;
	flex-wrap: wrap;
}

.footer__logo {
	display: flex;
	flex-flow: column;
	gap: 20px;
	color: var(--gray);
	line-height: 150%;
}

.footer__logo img {
	width: 280px;
	max-width: 100%;
}

.footer__menu {
	margin: 20px auto 0;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.footer__menu a {
	color: #323232;
	border-bottom: 1px dashed #323232;
	transition: .3s color, .3s border-color;
}

.footer__menu a:hover {
	border-color: transparent;
}

.footer__contacts {
	display: flex;
	flex-flow: column;
	align-items: flex-end;
	gap: 5px;
}

.footer__contacts-tel {
	font-size: 30px;
	font-weight: 600;
	color: var(--black);
}

.footer__contacts-time {
	color: var(--gray2);
}

.footer__alert {
	margin-top: 30px;
	color: #898989;
}

.footer__alert p {
	margin-bottom: 20px;
}

.footer__alert p b {
	text-transform: uppercase;
}

.footer__alert p:last-child {
	margin-bottom: 0;
}

.footer__copy {
	margin-top: 20px;
	color: #323232;
	line-height: 140%;
}








.modal {
	display: none;
}

.fancybox-bg {
    background-color: #3e3e3e;
}

.fancybox-is-open .fancybox-bg {
    opacity: .8;
    background-color: #3e3e3e;
}

.modal {
    display: none;
    background: #FFF;
    background-size: cover;
    border-radius: 20px;
    margin: 20px 0;
    width: 900px;
    max-width: 100%;
    overflow: visible;
    padding: 0;
}

.modal:after {
    content: "";
    position: absolute;
    left: 12px;
    top: 9px;
    width: calc(100% - 10px* 2);
    height: calc(100% - 10px* 2);
    border: 1px solid #ccc;
    border-radius: 18px;
    pointer-events: none;
	z-index: 3;
}

.modal__small {
    width: 790px;
}

.modal__callback {
	width: 540px;
}

.modal__block {
    position: relative;
    padding: 44px 57px 0;
}

.modal__info {
    padding: 0 0 44px;
    position: relative;
    z-index: 5;
}

.moda__info-thanks {
    text-align: center;
}

.modal__title {
    color: #3e3e3e;
    font-weight: 600;
    font-size: 37px;
    line-height: 120%;
    margin: 0 0 18px;
    width: 460px;
}

.modal__info-thanks {
    text-align: center;
}

.modal__info-thanks .modal__title {
    width: 100%;
}

.modal__info-thanks .modal__subtitle {
    width: 100%;
}

.modal__info span {
    color: #FFF;
}

.modal__subtitle {
    margin: 0 0 34px;
    width: 460px;
    max-width: 100%;
    font-size: 18px;
    line-height: 140%;
    color: #3e3e3e;
}

.modal__info >*:last-child {
    margin-bottom: 0;
}

.modal__image {
    position: absolute;
    right: 24px;
    bottom: 0;
    width: 400px;
    pointer-events: none;
	z-index: 5;
}

.modal__image-two {
    width: 250px;
    right: 40px;
}

.modal .fancybox-close-small {
    border-radius: 50%;
    width: 34px;
    height: 34px;
    padding: 0;
    opacity: 1;
    right: 20px;
    top: 20px;
    color: #777;
}

.modal__text-block {
    color: #fff;
    padding: 44px 48px;
}

.modal__text {
    width: 900px;
}

.form {
	width: 100%;
	max-width: 100%;
}

.form input {
    transition: .3s background;
    width: 100%;
    margin: 0 0 16px;
    padding: 22px 20px;
    border-radius: 12px;
    border: 2px solid #c6e0ef;
    background: #FFF;
    font-size: 18px;
}

.form button {
    border: none;
    width: 100%;
    padding: 24px 20px;
}

.form input:focus {
    background: #FFF;
}

.form input::placeholder {
    color: #3e3e3e;
}

.politic {
    margin-top: 12px;
    color: #3e3e3e;
}

.politic a {
    border-bottom: 1px dashed;
    color: #3e3e3e;
}

.modal__type-text {
    width: 760px;
    max-width: 100%;
    padding: 30px 40px;
	background: #FFF;
}

.modal__title-center {
    width: 100%;
    text-align: center;
	font-size: 24px;
}

.modal__text-two {
	width: 100%;
	font-size: 16px;
	line-height: 130%;
}

.modal__text-two p {
	margin-bottom: 16px;
}

.modal__text-two p:last-child {
	margin-bottom: 0;
}

.modal.big .modal-text {
    text-align: left;
    line-height: 140%;
    font-size: 12px;
}

.modal-text > *:not(:last-child) {
    margin-bottom: 10px;
}

.modal.big .modal-title b {
    font-size: 16px;
    text-align: left;
}

.stitle-white mark {
    white-space: nowrap;
}

.modal__fart {
    padding: 40px 30px;
    overflow: hidden;
    background: #ffffff;
}

.modal__fart:after {
	display: none;
}

.modal__free {
    background: url(../img/garant.jpg) no-repeat center center #FFF;
    background-size: cover;
    width: 1225px;
    max-width: 100%;
    padding: 40px 65px;
}

.modal__free-title {
    font-size: 38px;
    line-height: 136%;
    margin: 0 0 15px;
    width: 520px;
    max-width: 100%;
    font-weight: 500;
    position: relative;
    z-index: 5;
}

.modal__free-checks {
    margin: 0 0 60px;
    width: 520px;
    position: relative;
    z-index: 5;
}

.modal__free-image {
    position: absolute;
    right: 0;
    bottom: 0;
}

.modal__free-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
}

.modal__free-form input {
    background: #FFF;
    border: 1px solid #dadada;
    padding: 28px 35px;
    border-radius: 12px;
    font-size: 20px;
}

.modal__free-form {
    position: relative;
    z-index: 5;
}