/*
Theme Name: tent
*/

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Gilroy", sans-serif;
}	
:root {
	--black: #000000;
	--blue: #1A456F;
	--white: #FFFFFF;
	--grey: rgb(191, 191, 191, 0.2);
	--transition: 0.3s all;
}
body {
	overflow-x: hidden;
	color: var(--black);
	background-color: var(--white);
}
img {
	max-width: 100%;
	height: auto;
}
a {
	text-decoration: none;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}
@font-face {
	font-family: "Raleway";
	src: url(fonts/Raleway-Regular.woff2) format("woff2"), url(fonts/Raleway-Regular.woff) format("woff"), url(fonts/Raleway-Regular.ttf) format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Raleway";
	src: url(fonts/Raleway-Bold.woff2) format("woff2"), url(fonts/Raleway-Bold.woff) format("woff"), url(fonts/Raleway-Bold.ttf) format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Raleway";
	src: url(fonts/Raleway-SemiBold.woff2) format("woff2"), url(fonts/Raleway-SemiBold.woff) format("woff"), url(fonts/Raleway-SemiBold.ttf) format("truetype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Gilroy";
	src: url(fonts/Gilroy-Regular.woff2) format("woff2"), url(fonts/Gilroy-Regular.woff) format("woff"), url(fonts/Gilroy-Regular.ttf) format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Gilroy";
	src: url(fonts/Gilroy-Medium.woff2) format("woff2"), url(fonts/Gilroy-Medium.woff) format("woff"), url(fonts/Gilroy-Medium.ttf) format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Gilroy";
	src: url(fonts/Gilroy-Semibold.woff2) format("woff2"), url(fonts/Gilroy-Semibold.woff) format("woff"), url(fonts/Gilroy-Semibold.ttf) format("truetype");
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: "Gilroy";
	src: url(fonts/Gilroy-Bold.woff2) format("woff2"), url(fonts/Gilroy-Bold.woff) format("woff"), url(fonts/Gilroy-Bold.ttf) format("truetype");
	font-weight: 700;
	font-style: normal;
}
@media (min-width: 1400px) {
	.container {
		max-width: 1200px;
	}
}
.btn {
	border: 1px solid var(--blue);
	border-radius: 6px;
	background: -webkit-gradient(linear, left top, left bottom, from(#295A8A), to(#1A456F));
	background: -o-linear-gradient(top, #295A8A 0%, #1A456F 100%);
	background: linear-gradient(180deg, #295A8A 0%, #1A456F 100%);
	cursor: pointer;
	padding: 16px 40px;
	text-align: center;
	color: var(--white);
	font-size: 15px;
	font-weight: 600;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	vertical-align: sub;
}
.btn:hover {
	background: transparent;
	color: var(--blue);
}
.btn_transparent {
	background: transparent;
	color: var(--black);
}
.btn_transparent:hover {
	background: -webkit-gradient(linear, left top, left bottom, from(#295A8A), to(#1A456F));
	background: -o-linear-gradient(top, #295A8A 0%, #1A456F 100%);
	background: linear-gradient(180deg, #295A8A 0%, #1A456F 100%);
	color: var(--white);
}
.btn_center {
	margin-left: auto;
	margin-right: auto;
}	
.section {
	padding: 60px 0;
} 
.section_page {
	padding: 30px 0 60px;
}
.section-title {
	text-align: center;
	font-size: 36px;
	font-weight: 600;
	line-height: 120%;
	margin-bottom: 20px;
}
.section-title span, .section-title a {
	color: var(--blue);
}
.card-title {
	color: var(--blue);
	font-size: 18px;
	font-weight: 700;
	line-height: 120%;
}
.mini-title {
	color: var(--blue);
	font-size: 24px;
	font-weight: 700;
	line-height: 120%;
}
.subtitle {
	text-align: center;
	font-size: 18px;
	line-height: 140%;
	margin-bottom: 50px;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.text strong {
	color: var(--blue);
}
.text a {
	color: var(--blue);
}
.header {
	width: 100%;
	padding: 30px 0 20px;
	position: fixed;
	top: 0px;
	left: 0;
	z-index: 100;
	background: var(--white);;
	transition: box-shadow 0.1s 0.2s;
}

.header-shadow {
	-webkit-box-shadow: 0px 11px 9px 2px rgba(18, 15, 10, 0.1);
	-moz-box-shadow: 0px 11px 9px 2px rgba(18, 15, 10, 0.1);
	box-shadow: 0px 11px 9px 2px rgba(18, 15, 10, 0.1);
}

.header_front {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.header-row-responsive {
	flex-wrap: nowrap;
}

.header__menu ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	padding-left: 0;
	margin-bottom: 0;
}
.header__menu ul li {
	position: relative;
}
.header__menu ul li a {
	font-family: "Raleway", sans-serif;
	color: var(--black);
	font-weight: 600;
}
.header__menu ul li a:hover {
	color: var(--blue);
}
.header__info {
	font-family: "Raleway", sans-serif;
}
.header__info strong {
	font-family: "Raleway", sans-serif;
}
.logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
}
.logo__text {
	font-family: "Raleway", sans-serif;
	font-size: 12px;
}
.phone {
	color: var(--black);
	font-size: 27px;
	font-weight: 700;
}
.phone:hover {
	color: var(--blue);
}
.language {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	margin-top: 7px;
}
#tBreadrumbs {
	margin-top: 20px;
}
#tBreadrumbs a {
	color: var(--blue);
}
main {
	padding-top: 83px;
}
.main {
	background: -webkit-gradient(linear, left top, left bottom, from(#CFCFCF), color-stop(76.56%, #EBEBEB), to(#FFF));
	background: -o-linear-gradient(top, #CFCFCF 0%, #EBEBEB 76.56%, #FFF 100%);
	background: linear-gradient(180deg, #CFCFCF 0%, #EBEBEB 76.56%, #FFF 100%);	
}
.home .main {
	background-image: url('./img/bg_banner.png');
	background-position: calc(50% + 260px) -100px;
	background-repeat: no-repeat;
}
.main-ptop {
		padding-top: 85px;
}
.main__text {
	margin-bottom: 46px;
	font-size: 21px;
	line-height: 34px;
}
.main__card {
	border-radius: 6px;
	border: 1px solid rgba(26, 69, 111, 0.1);
	background: rgba(26, 69, 111, 0.1);
	padding: 3px 7px;
	width: 96px;
	height: 56px;
	margin: 0 auto;
	opacity: 0.5;
}
.main__text-mini {
	color: var(--blue);
	text-align: center;
	font-size: 12px;
	margin-top: 10px;
}
.main__advantages {
	margin-top: 60px;
}
.main__info {
	color: var(--blue);
	font-size: 12px;
	line-height: 140%;
}
.main__adv-card {
	padding: 30px 72px 25px 30px;
	border-radius: 10px;
	background-color: var(--white);
}
.main__adv-card .text {
	color: var(--black);
}
.wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	row-gap: 20px;
}
.wrapper_main {
	margin: 50px 0;
}
.wrapper_main p {
	margin-bottom: 0;
}
.row-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 18px;
	-moz-column-gap: 18px;
	column-gap: 18px;
}
.row-item__icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	border-radius: 4px;
	background: rgba(26, 69, 111, 0.1);
	width: 43px;
	height: 43px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.row-item__icon img {
	width: 30px;
	height: 30px;
}
.main_slider img {
	border-radius: 12px;
}
.main_slider-nav {
	margin-top: 10px;
}
.main_slider-nav .slide {
	padding: 0 10px;
	cursor: pointer;
}
.main_slider-nav .slick-current .main__card {
	opacity: 1;
	border: 1px solid var(--blue);
}
.main_slider:before {
	content: "";
	position: absolute;
	left: 100px;
	top: 0;
	width: 138px;
	height: 62px;
	background: url(icon/rating.png);
}
.main h1 {
	font-size: 44px;
	font-weight: 600;
	line-height: 120%;
}
.main h1 span {
	color: var(--blue);
}
.partners {
	padding: 90px 0 60px;
}
.partners__title {
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	line-height: 100%;
	color: var(--black);
	opacity: 0.5;
	margin-bottom: 30px;
}
.partners__card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-radius: 6px;
	background: var(--grey);
	padding: 18px 30px;
}
.slider_partners .slide {
	padding: 0 10px;
}
.card {
	border-radius: 12px;
	background: -webkit-gradient(linear, left top, left bottom, from(var(--grey)), to(rgba(191, 191, 191, 0)));
	background: -o-linear-gradient(top, var(--grey) 0%, rgba(191, 191, 191, 0) 100%);
	background: linear-gradient(180deg, var(--grey) 0%, rgba(191, 191, 191, 0) 100%);
	padding: 32px;
	margin-bottom: 20px;
	border: none;
	text-align: center;
}
.card .card-title {
	margin: 15px 0;
}
.card__term {
	color: var(--blue);
	font-weight: 700;
	line-height: 100%;
	margin: 20px 0 30px;
}
.card_serv {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.coast {
	position: relative;
	padding-top: 64px;
	border-radius: 6px;
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(rgba(191, 191, 191, 0.3)));
	background: -o-linear-gradient(top, #FFF 0%, rgba(191, 191, 191, 0.3) 100%);
	background: linear-gradient(180deg, #FFF 0%, rgba(191, 191, 191, 0.3) 100%);
	min-height: 552px;
}
.coast__img {
	position: absolute;
	bottom: 0;
	right: 30%;
}
.coast__card {
	position: relative;
	z-index: 1;
	max-width: 258px;
	border-radius: 6px;
	background: var(--white);
	padding: 18px;
	margin-left: auto;
}
.coast__card strong {
	color: var(--blue);
}
.coast__card .text {
	font-size: 12px;
	opacity: 0.5;
}
.info .section-title, .info .subtitle {
	margin-bottom: 20px;
}
.social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 20px;
	   -moz-column-gap: 20px;
	        column-gap: 20px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.social__item {
	border-radius: 6px;
	padding: 20px;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}
.social__item:hover {
	opacity: 0.5;
}
.social__item_vk {
	background-color: rgba(80, 146, 209, 0.10);
}
.social__item_tg {
	background-color: rgba(91, 169, 245, 0.10);
}
.social__item_whats {
	background-color: rgba(62, 224, 48, 0.10);
}
.social__item_viber {
	background-color: rgba(205, 107, 183, 0.10);
}
.nav-tabs {
	border-bottom: none;
	margin-bottom: 50px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-column-gap: 20px;
	   -moz-column-gap: 20px;
	        column-gap: 20px;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
}
.nav-tabs .nav-link {
	border-radius: 6px;
	background: rgba(26, 69, 111, 0.1);
	padding: 27px 20px;
	color: var(--blue);
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	line-height: 100%;
	width: 256px;
	text-align: center;
}	
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active, .nav-tabs .nav-link:hover {
	background: -webkit-gradient(linear, left top, left bottom, from(#295A8A), to(#1A456F)), rgba(26, 69, 111, 0.1);
	background: -o-linear-gradient(top, #295A8A 0%, #1A456F 100%), rgba(26, 69, 111, 0.1);
	background: linear-gradient(180deg, #295A8A 0%, #1A456F 100%), rgba(26, 69, 111, 0.1);
	color: var(--white);
}
.grey-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: var(--grey);
	border-radius: 12px;
	margin-bottom: 20px;
}
.grey-card_padding {
	padding: 30px;
}
.grey-card__content {
	padding: 50px;
}
.grey-card__content_mini {
	padding: 20px;
}
.grey-card__title {
	font-size: 30px;
	font-weight: 600;
	line-height: 120%;
	margin-bottom: 30px;
}
.grey-card__title-mini {
	display: block;
	color: var(--blue);
	font-size: 24px;
	font-weight: 600;
	line-height: 120%;
}
a.grey-card__title-mini:hover {
	color: var(--black);
}
.grey-card__text {
	font-size: 18px;
	margin: 20px 0 30px;
}
.grey-card__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-preferred-size: 50%;
	    flex-basis: 50%;
	padding: 20px;
	height: 100%;
}
.wrapper-btn {
	margin-top: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}	
.card-img {
	display: block;
	position: relative;
	-ms-flex-preferred-size: 50%;
	    flex-basis: 50%;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.card-img:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -o-linear-gradient(246deg, rgba(26, 69, 111, 0) 0%, rgba(26, 69, 111, 0.7) 100%);
	background: linear-gradient(204deg, rgba(26, 69, 111, 0) 0%, rgba(26, 69, 111, 0.7) 100%);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	border-radius: 12px;
}
.card-img img {
	position: relative;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
}
.card-img_video:before {
	content: "";
	position: absolute;
	top: calc(50% - 29px);
	left: calc(50% - 29px);
	width: 58px;
	height: 58px;
	background: url(icon/play.svg) center center/cover no-repeat;
	z-index: 2;
}
.card-img_video:hover:after {
	opacity: 0;
}
.card-img_text img {
	border-radius: 12px;
}
.card-img__content {
	position: absolute;
	padding: 40px;
	bottom: 0;
	left: 0;
	color: var(--white);
	z-index: 5;
	width: 100%;
}
.card-img__title {
	font-size: 24px;
	font-weight: 600;
	line-height: 120%;
}
.card-img__text {
	font-size: 18px;
}
.card-img__video-text {
	position: absolute;
	bottom: 90px;
	left: calc(50% - 115px);
	padding: 10px 16px;
	text-align: center;
	font-size: 14px;
	color: var(--black);
	width: 225px;
	background-color: rgba(225, 225, 225, 0.7);
	border-radius: 6px;
	z-index: 5;
}
.slider_video {
	margin-bottom: 50px;
}
.slider_video img {
	border-radius: 12px;
	margin: 0 auto;
}
.slider_video .card-img {
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	margin: 0 auto;
}
.slider_video .slide {
	padding: 10px;
	opacity: 0.5;
}
.slider_video .slick-active {
	opacity: 1;
}	
.production .grey-card {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.production .grey-card_mini .grey-card__content {
	padding: 53px 70px 53px 30px;
}
.production .grey-card_mini .grey-card__text {
	margin: 0;
}
.production .grey-card__img {
	background-color: rgba(191, 191, 191, 0.2);
}
.big-phone {
	color: var(--blue);
	font-size: 50px;
	font-weight: 600;
	line-height: 100%;
}
.big-phone:hover {
	color: var(--black);
}
.conditions {
	padding-bottom: 120px;
}

.pluses .grey-card {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.garanty__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 30px;
	   -moz-column-gap: 30px;
	        column-gap: 30px;
	margin-bottom: 30px;
}
.garanty__done {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 81px;
	height: 81px;
	border-radius: 600px;
	background: rgba(26, 69, 111, 0.1);
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.garanty__more {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 12px;
	margin-top: 30px;
	background-color: var(--grey);
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.garanty__blue-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: -webkit-gradient(linear, left top, left bottom, from(#295A8A), to(#1A456F));
	background: -o-linear-gradient(top, #295A8A 0%, #1A456F 100%);
	background: linear-gradient(180deg, #295A8A 0%, #1A456F 100%);
	color: rgba(225, 225, 225, 0.2);
	font-size: 150px;
	font-weight: 700;
	line-height: 120%;
	-ms-flex-preferred-size: 285px;
	    flex-basis: 285px;
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
}
.garanty__content {
	padding: 50px;
}
.garanty .big-phone {
	font-size: 40px;
	text-align: right;
}
.garanty__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: end;
}
.review .card-img {
	-ms-flex-preferred-size: 272px;
	    flex-basis: 272px;
	border-bottom-right-radius: 12px;
	border-bottom-left-radius: 12px;
}
.review__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 20px;
	   -moz-column-gap: 20px;
	        column-gap: 20px;
}
.review__img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.review__wrapper {
	padding: 30px 30px 0;
}	
.slider_review .slide {
	padding: 0 10px;
}
.slider_review .slide .grey-card {
	margin-bottom: 0;
}
.slider_review .slide .card-img img {
	border-radius: 0 0 6px 6px;
}
.review .card-img__video-text {
	bottom: 30px;
}
.social-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 40px 50px;
	border-radius: 12px;
	color: var(--white);
}
.social-card_red {
	background-color: #FF1010;
}
.social-card_blue {
	background-color: #5091D1;
}
.social-card__title {
	font-size: 22px;
	font-weight: 700;
	line-height: 100%;
}
.social-card__text {
	font-size: 18px;
}
.social-card__play {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 77px;
	height: 77px;
	border-radius: 50%;
	background-color: var(--white);
}
.motivation .social {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.motivation__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: relative;
	background: var(--grey);
	border-radius: 12px;
	padding-top: 50px;
}
.motivation__img img{
	width: 100%;
	}
.motivation__img:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 242, 242, 0)), to(#F2F2F2));
	background: -o-linear-gradient(top, rgba(242, 242, 242, 0) 0%, #F2F2F2 100%);
	background: linear-gradient(180deg, rgba(242, 242, 242, 0) 0%, #F2F2F2 100%);
}
.motivation__name {
	position: absolute;
	bottom: 40px;
	left: 40px;
	z-index: 2;
}
.footer {
	background-color: var(--blue);
	padding: 40px 0;
	color: var(--white);
}
.footer .social {
	-webkit-column-gap: 10px;
	   -moz-column-gap: 10px;
	        column-gap: 10px;
}
.footer .social__item {
	padding: 11px;
}
.footer__link {
	display: block;
	color: var(--white);
	font-size: 18px;
	margin-top: 15px;
	font-weight: 700;
	line-height: 100%;
}
.footer a:hover {
	color: #7AB1E7;
}
.footer__menu ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.footer__menu ul li {
	margin-bottom: 25px;
}
.footer__menu ul li a {
	color: var(--white);
	font-family: "Raleway", sans-serif;
	font-weight: 600;
}
.footer__mail {
	display: block;
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
}
.footer__text-mini {
	color: var(--white);
	font-size: 12px;
}
.footer .social__item_vk {
	background-color:#EEF5FB;
}
.footer .social__item_tg {
	background-color: #EFF7FF;
}
.footer .social__item_whats {
	background-color: #ECFCEB;
}
.footer .social__item_viber {
	background-color: #FAF1F8;
}
.footer__nav:before {
	content: 'Навигация';
	position: absolute;
	left: 0;
	top: -50px;
	color: var(--white);
	opacity: 0.4;
	font-family: "Raleway", sans-serif;
	font-size: 18px;
	font-weight: 600;
}
.works .grey-card__text {
	margin-bottom: 0;
}
.tab-content .card-img {
	width: 50%;
	height: 100%;
}
.tab-content .grey-card {
	height: 100%;
}
.tab-content .grey-card__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.btn-close {
	position: absolute;
	top: 15px;
	right: 15px;
}
.modal-content {
	padding: 20px;
}
.modal-body {
	padding: 0;
}
.wpcf7-list-item {
	margin: 0;
}
.acceptance a {
	color: var(--blue)
}
.header__btn-mobile { cursor: pointer; }
.header__btn-mobile span { background-color: var(--blue); display: block; width: 28px; height: 4px; margin-bottom: 7px; border-radius: 2px; z-index: 200; margin-left: auto; }
.header__btn-mobile span:first-child { position: relative; top: 0; -webkit-transition: top .3s .3s, transform .3s 0s; -webkit-transition: top .3s .3s, -webkit-transform .3s 0s; transition: top .3s .3s, -webkit-transform .3s 0s; -o-transition: top .3s .3s, transform .3s 0s; transition: top .3s .3s, transform .3s 0s; transition: top .3s .3s, transform .3s 0s, -webkit-transform .3s 0s; }
.header__btn-mobile span:nth-child(2) { opacity: 1; -webkit-transition: opacity .3s; -o-transition: opacity .3s; transition: opacity .3s; }
.header__btn-mobile span:last-child { margin-bottom: 0; position: relative; top: 0; -webkit-transition: top .3s .3s, transform .3s 0s; -webkit-transition: top .3s .3s, -webkit-transform .3s 0s; transition: top .3s .3s, -webkit-transform .3s 0s; -o-transition: top .3s .3s, transform .3s 0s; transition: top .3s .3s, transform .3s 0s; transition: top .3s .3s, transform .3s 0s, -webkit-transform .3s 0s; }
.header__btn-mobile.opened span:first-child { top: 11px; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg); -webkit-transition: top .3s 0s, transform .3s .3s; -webkit-transition: top .3s 0s, -webkit-transform .3s .3s; transition: top .3s 0s, -webkit-transform .3s .3s; -o-transition: top .3s 0s, transform .3s .3s; transition: top .3s 0s, transform .3s .3s; transition: top .3s 0s, transform .3s .3s, -webkit-transform .3s .3s; }
.header__btn-mobile.opened span:nth-child(2) { opacity: 0; }
.header__btn-mobile.opened span:last-child { top: -11px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); -webkit-transition: top .3s 0s, transform .3s .3s; -webkit-transition: top .3s 0s, -webkit-transform .3s .3s; transition: top .3s 0s, -webkit-transform .3s .3s; -o-transition: top .3s 0s, transform .3s .3s; transition: top .3s 0s, transform .3s .3s; transition: top .3s 0s, transform .3s .3s, -webkit-transform .3s .3s; }
.header__btn-mobile.opened { position: fixed; top: 20px; right: 20px; z-index: 100; }
.divider {
	font-weight: 900;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	width: 34px;
	height: 34px;
	cursor: pointer;
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 25 25' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e") center/1em auto no-repeat;
}
.divider:hover {
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 25 25' stroke='rgb(75, 138, 178)' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e") center/1em auto no-repeat;
}
.divider.active {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	    transform: rotate(180deg);
}
.pageup {
	display: none;
	position: fixed;
	bottom: 40px;
	right: 40px;
	width: 40px;
	height: 40px;
	background-color: var(--blue);
	border-radius: 50%;
	z-index: 10;
}
.pageup:hover {
	opacity: 0.5;
}
.pageup img {
	position: absolute;
	top: 7px;
	left: 7px;
}
.alignnone {
	margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
	max-width: 100%;
	height: auto;
}
.alignright {
	float: right;
	margin: 0 0 10px 15px;
}
.alignleft {
	float: left;
}
a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}
a img.alignnone {
	margin: 5px 20px 20px 0;
}
a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}
a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.work__steps {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	row-gap: 30px;
}
.step {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 30px;
	   -moz-column-gap: 30px;
	        column-gap: 30px;
}
.work__img {
	border-radius: 12px;
}
.docs__card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	row-gap: 20px;
	margin-bottom: 60px;
}
.docs__number {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 80px;
	height: 80px;
	font-size: 30px;
	font-weight: 600;
	color: var(--white);
	background-color: var(--blue);
	border-radius: 50%;
}
.work__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 30px;
	   -moz-column-gap: 30px;
	        column-gap: 30px;
	margin-top: 54px;
}
.price {
	color: var(--blue);
	font-size: 18px;
	font-weight: 600;
}
.projects_serv .grey-card__content {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.docs__card .text {
	text-align: center;
}
.input {
	border-radius: 6px;
	background-color: #F2F2F2;
	padding: 20px;
	border: none;
	outline: none;
	width: 100%;
	margin-bottom: 20px;
}
.wpcf7-spinner {
	display: none;
}
.video-bg:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
	width: 100%;
	height: 100%;
	z-index: 1;
}
.z-5 {
	z-index: 5;
}
.video-bg, .video-bg h1 span, .video-bg .main__info, .video-bg .text strong {
	color: var(--white);
}
.video-bg .row-item__icon {
	background-color: var(--white);
}
table td {
	padding: 5px;
	border: 1px solid var(--black);
}
.contacts_maps {
	width: 100%;
}


.quiz__wrapper{
	background: rgba(191, 191, 191, 0.2);
	border-radius: 12px;
	padding: 24px;
}
.slider-step{
	margin-bottom: 20px;
}
.slider-step__numbers{
	font-weight: 400;
	font-size: 20px;
	color: var(--blue);
	margin-bottom: 10px;
}
.slider-step__line{
	background: #FFF;
	position: relative;
	width:100%;
	height:20px
}
.slider-step__line-inner{
	height: calc(100% - 4px);
	width: calc(100% - 4px);
	position: relative;
	top:2px;
	left:2px;

}
.slider-step__line-active{
	position: absolute;
	height:100%;
	width: 25%;
	top:0px;
	left:0px;
	background: var(--blue);
	transition: var(--transition);
}
.slider_quiz-wr{
	margin: 0px -10px;
}
.slider_quiz-wr .question{
	padding: 0px 10px;
}
.quiz__nav{
	margin-top: 24px;
	display: flex;
}
.quiz__arrow{
	border: 2px solid #1a456f;
	border-radius: 6px;
	width: 164px;
	height: 60px;
	padding: 10px 20px;
	display: flex !important;
	justify-content: center;
	align-items: center;
	margin-right: 24px;
	font-weight: 600;
	font-size: 20px;
	color: var(--blue);
	cursor: pointer;
	transition: var(--transition);
}
.quiz__arrow:last-child{
	margin-right: 0px;
}
.quiz__arrow:hover{
	background-color: var(--blue);
	color: #fff;
}
#quiz_prev svg{
	transform: rotate(-180deg);
}
.quiz__arrow svg .stroke{
	stroke: #1A456F;
	transition: var(--transition);
}
.quiz__arrow:hover svg .stroke{
	stroke: #fff;
}
.quiz__nav .slick-disabled {
    display: none !important;
}
.question__title{
	font-weight: 600;
	font-size: 24px;
	color: var(--blue);
	margin-bottom: 10px;
}
.question__subtitle{
	font-weight: 600;
	font-size: 20px;
	color: var(--blue);
	margin-bottom: 10px;
}

.cservices{
	grid-template-columns: repeat(4, 1fr);
	gap:12px;
}
.card-cservice{
	border: 2px solid var(--blue);
	padding: 12px;
	position: relative;
}

.card-cservice__info-title{
	font-weight: 600;
	font-size: 15px;
	color: var(--blue);
	transition: var(--transition);
	margin-top: 10px;
}
.card-cservice__info-price, 
.card-params2__info-price{
	font-weight: 600;
	font-size: 15px;
	color: #bebebe;
	margin-top: 0px;
	transition: var(--transition);
}
.card-cservice__info-price:has(span){
	margin-top: 8px;
}

.quiz-amount__text{
	font-weight: 600;
	font-size: 18px;
	color: #535353;
}
.quiz-amount__value{
	font-weight: 600;
	font-size: 36px;
	color: var(--blue);
}
.card-cservice{
	display: grid;
	-ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
}
.card-cservice__info{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.icon-check{
	height:26px;
	width:26px;
	border-radius: 50%;
	background-color: #007AFF;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.6293 2.02088L4.61373 11.0365L0.371094 6.79385L1.42859 5.73635L4.61373 8.91399L12.5718 0.963379L13.6293 2.02088Z' fill='white'/%3e%3c/svg%3e ");
	position: absolute;
	right: -3px;
	top:-13px;
	opacity: 0;
	transition: var(--transition);
}
.block-radio,
.block-checkbox{
	position: relative;
}
.block-radio:has(input:checked),
.block-checkbox:has(input:checked){
	background-color: var(--blue);
}
.block-radio:has(input:checked) .icon-check,
.block-checkbox:has(input:checked) .icon-check{
	opacity: 1;
}
.block-radio:has(input:checked) .card-cservice__info-title,
.block-checkbox:has(input:checked) .card-cservice__info-title,
.block-radio:has(input:checked) .card-params2__info-title,
.block-checkbox:has(input:checked) .card-params2__info-title,
.block-checkbox:has(input:checked)  label{
	color: #fff;
}
.block-radio:has(input:checked) .card-cservice__info-price,
.block-checkbox:has(input:checked) .card-cservice__info-price,
.block-radio:has(input:checked) .card-params2__info-price,
.block-checkbox:has(input:checked) .card-params2__info-price{
	color: rgba(255, 255, 255, 0.5);
}
.label-radio-step,
.label-checkbox-step{
	position: absolute;
	inset: 0;
	z-index: 10;
}
.radio-step,
.checkbox-step{
	width:0px;
	height:0px;
	opacity: 0;
	position: absolute;
}
.step3_option_line{
	position: relative;
	margin-bottom: 10px;
	font-size: 15px;
}
.card-cservice__info-title + .step3_option_line{
	margin-top: 15px;
	overflow: hidden;
}
.radio2-step:checked + label{
	color:#fff;
}
.radio2-step{
	position: absolute;
	left: -9999px;
	outline: 0;
	margin-left: 1px;
	margin-right: 2px;
	margin-bottom: 0;
}
.radio2-step + label{
	padding-left: 28px;
	position: relative;
	transition: var(--transition);
}
.radio2-step + label:before{
	content: "";
    position: absolute;
    left: 0px;
	top: 3px;
    width: 18px;
    height: 18px;
    border: 1px solid #dddddd;
    background-color: #ffffff;
	border-radius: 100%;
	display: block;
  	position: absolute;
}
.radio2-step:checked + label:after{
	content: '';
    width: 10px;
    height: 10px;
    background: var(--blue);
    position: absolute;
    top: 7px;
    left: 4px;
    opacity: 1;
    border-radius: 50%;
}
.radio2-step:checked + label:after {
    opacity: 1;
}
.not-valid-tip{
	display: block;
	margin-top: 5px;
	color: #de2a1b;
}
.steps2_colr{
	max-width: 500px;
}
.cservice-images{
	grid-template-columns: repeat(3,1fr);
	gap:12px;
}
.cservice_main_img{
	grid-column: span 3;
}
.cservice-params2{
	gap:24px;
	grid-template-columns: repeat(3,1fr);
	max-width: 560px;
}
.card-params2{
	display: grid;
	-ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
	border: 2px solid #1a456f;
	border-radius: 6px;
	min-height: 60px;
	position: relative;
	padding: 0px 15px;
	align-items: center;
}
.card-params2__info-title{
	font-weight: 600;
	font-size: 20px;
	color: var(--blue);
}
.question__text{
	margin-top: 20px;
}
.sterp2-amount-wr{
	margin-top: 15px;
	margin-bottom: 25px;
}
.question-3{
	/* max-width: 810px;*/ 
	max-width: 100%;
}
.question-3 .cservices{
	grid-template-columns: repeat(4, 1fr);
}
.quiz-result{
	margin: 0px auto;
	max-width: 670px;
}
.user-option{
	display: flex;
	font-weight: 400;
	font-size: 18px;
	color: #1a456f;
	justify-content: space-between;
}
.user-option__title:has(+.user-option__price){
	max-width: 60%;
	padding-right: 24px;
}

.user-option__price{
	max-width: 40%;
}
.result-title{
	margin-top: 40px;
	font-weight: 600;
	font-size: 18px;
	color: #535353;
}
.user-option,.result-title{
	margin-bottom: 8px;
}
.quiz-result{
	padding-bottom: 75px;
}
.quiz_button{
	margin-left: auto;

}
.btn-order-quiz{
	min-height: 58px;
	padding-top: 13px;
	padding-bottom: 13px;
	font-size: 20px;
}
.result-note{
	background: rgba(26, 69, 111, 0.1);
    padding: 12px;
    margin-top: 24px;
    text-align: center;
    border: 2px solid #1a456f;
    border-radius: 6px;
}
.result-form{
	margin-top: 30px;
}
.result-form .input{
	background-color: #fff;
}
.result-form .wpcf7-not-valid-tip{
	display: none;
}
.result-form .input.wpcf7-not-valid{
	background-color: #f9e5e5;
}





.single-uslugi .pluses {
	display: block !important;
}