/*
Theme Name: design
*/

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	font-family: "Inter", sans-serif;
  }
  
  :root {
	--main: #646464;
	--green: #5C9F36;
	--blue: #015FA7;
	--white: #FFFFFF;
	--grey: #999999;
	--light: #F9F9F9;
	--second-font: "Bicubik", sans-serif;
	--shadow: 0px 1.06px 1.25px 0px rgba(46, 86, 104, 0.02),0px 4.74px 2.89px 0px rgba(46, 86, 104, 0.03),0px 11.79px 6.61px 0px rgba(46, 86, 104, 0.04),0px 22.96px 14.08px 0px rgba(46, 86, 104, 0.05),0px 39px 27px 0px rgba(46, 86, 104, 0.07);
	--transition: 0.3s all;
  }
  
  body {
	display: grid;
	grid-template-rows: auto 1fr auto;
	grid-template-columns: 100%;
	min-height: 100vh;
	overflow-x: hidden;
	color: var(--main);
	background-color: var(--light);
  }
  
  img {
	max-width: 100%;
	height: auto;
  }
  
  a {
	text-decoration: none;
	-webkit-transition: var(--transition);
	transition: var(--transition);
  }
  
  @font-face {
	font-family: "Inter";
	src: url(fonts/Inter-Regular.woff2) format("woff2"), url(fonts/Inter-Regular.woff) format("woff"), url(fonts/Inter-Regular.ttf) format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
  }
  @font-face {
	font-family: "Inter";
	src: url(fonts/Inter-SemiBold.woff2) format("woff2"), url(fonts/Inter-SemiBold.woff) format("woff"), url(fonts/Inter-SemiBold.ttf) format("truetype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
  }
  @font-face {
	font-family: "Inter";
	src: url(fonts/Inter-Bold.woff2) format("woff2"), url(fonts/Inter-Bold.woff) format("woff"), url(fonts/Inter-Bold.ttf) format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
  }
  @font-face {
	font-family: "Inter";
	src: url(fonts/Inter-Medium.woff2) format("woff2"), url(fonts/Inter-Medium.woff) format("woff"), url(fonts/Inter-Medium.ttf) format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
  }
  @font-face {
	font-family: "Bicubik";
	src: url(fonts/Bicubik.woff2) format("woff2"), url(fonts/Bicubik.woff) format("woff"), url(fonts/Bicubik.ttf) format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
  }
  section {
	position: relative;
  }
  
  .header {
	padding: 24px 0 32px;
  }
  .header_front {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: var(--white);
	z-index: 10;
  }
  .header_front a {
	color: var(--white);
  }
  .header_front .menu-nav > ul > li > a {
	color: var(--white);
  }
  .header_front .contacts-block svg path {
	fill: var(--white);
  }
  .header_front .divider {
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 25 25' stroke='white' 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;
  }
  
  .menu-nav ul {
	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;
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
  }
  .menu-nav ul > li + li {
	margin-left: 30px;
  }
  .menu-nav ul > li {
	position: relative;
	padding: 10px 0;
  }
  .menu-nav ul > li:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--green);
	-webkit-transition: var(--transition);
	transition: var(--transition);
  }
  .menu-nav ul > li:hover:before {
	width: 100%;
  }
  .menu-nav ul > li a {
	font-size: 18px;
	color: var(--main);
	line-height: 110%;
  }
  
  .contacts-block {
	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: flex-end;
  }
  .contacts-block svg path {
	fill: var(--main);
  }
  
  .callback-btn {
	font-size: 14px;
	text-decoration-line: underline;
	cursor: pointer;
	-webkit-transition: var(--transition);
	transition: var(--transition);
  }
  .callback-btn:hover {
	color: var(--green);
  }
  
  .logo img {
	max-width: 135px;
  }
  
  .phone {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	font-size: 18px;
	color: var(--main);
  }
  .phone span {
	font-family: var(--second-font);
  }
  .phone svg {
	width: 18px;
	height: 18px;
	margin-right: 5px;
  }
  .phone:hover {
	color: var(--green);
  }
  
  .btn {
	position: relative;
	border-radius: 12px;
	background: var(--green);
	padding: 12px 20px;
	font-size: 20px;
	font-weight: 500;
	line-height: 110%;
	color: var(--white);
	-webkit-transition: var(--transition);
	transition: var(--transition);
	outline: none;
	border: 2px solid var(--green);
	overflow: hidden;
  }
  .btn:hover {
	color: var(--green);
	background-color: transparent;
  }
  .btn:hover:after {
	opacity: 0;
  }
  .btn_white {
	background-color: transparent;
	color: var(--green);
  }
  .btn_white:hover {
	color: var(--white);
	background-color: var(--green);
  }
  .btn_blue {
	background-color: var(--blue);
	border-color: var(--blue);
  }
  .btn:focus {
	-webkit-box-shadow: none;
			box-shadow: none;
  }
  .btn:after {
	content: "";
	display: block;
	width: 30px;
	height: 200px;
	margin-left: 60px;
	background: var(--white);
	opacity: 0.5;
	position: absolute;
	left: -40px;
	top: -50px;
	z-index: 1;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
	-webkit-animation: slideme 3s 0.05s ease-in-out infinite;
			animation: slideme 3s 0.05s ease-in-out infinite;
  }
  
  @-webkit-keyframes slideme {
	0% {
	  left: -30px;
	  margin-left: 0;
	}
	50% {
	  left: 110%;
	  margin-left: 80px;
	}
	100% {
	  left: 110%;
	  margin-left: 80px;
	}
  }
  
  @keyframes slideme {
	0% {
	  left: -30px;
	  margin-left: 0;
	}
	50% {
	  left: 110%;
	  margin-left: 80px;
	}
	100% {
	  left: 110%;
	  margin-left: 80px;
	}
  }
  .bread a {
	color: var(--main);
  }
  .bread span {
	padding: 0 4px;
  }
  
  .menu-item-has-children {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
  }
  
  .divider {
	display: block;
	font-weight: 900;
	z-index: 1;
	width: 24px;
	height: 24px;
	cursor: pointer;
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 25 25' stroke='rgb(100, 100, 100)' 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.active {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
  }
  
  .header__btn-mobile {
	cursor: pointer;
	background-color: var(--white);
	border-radius: 12px;
	padding: 10px;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	margin-left: auto;
  }
  
  .header__btn-mobile span {
	background-color: var(--green);
	display: block;
	width: 28px;
	height: 2px;
	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 0.3s 0.3s, transform 0.3s 0s;
	-webkit-transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
	transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
	transition: top 0.3s 0.3s, transform 0.3s 0s;
	transition: top 0.3s 0.3s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
  }
  
  .header__btn-mobile span:nth-child(2) {
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
  }
  
  .header__btn-mobile span:last-child {
	margin-bottom: 0;
	position: relative;
	top: 0;
	-webkit-transition: top 0.3s 0.3s, transform 0.3s 0s;
	-webkit-transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
	transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
	transition: top 0.3s 0.3s, transform 0.3s 0s;
	transition: top 0.3s 0.3s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
  }
  
  .header__btn-mobile.opened span:first-child {
	top: 7px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: top 0.3s 0s, transform 0.3s 0.3s;
	-webkit-transition: top 0.3s 0s, -webkit-transform 0.3s 0.3s;
	transition: top 0.3s 0s, -webkit-transform 0.3s 0.3s;
	transition: top 0.3s 0s, transform 0.3s 0.3s;
	transition: top 0.3s 0s, transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
  }
  
  .header__btn-mobile.opened span:nth-child(2) {
	opacity: 0;
  }
  
  .header__btn-mobile.opened span:last-child {
	top: -11px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: top 0.3s 0s, transform 0.3s 0.3s;
	-webkit-transition: top 0.3s 0s, -webkit-transform 0.3s 0.3s;
	transition: top 0.3s 0s, -webkit-transform 0.3s 0.3s;
	transition: top 0.3s 0s, transform 0.3s 0.3s;
	transition: top 0.3s 0s, transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
  }
  
  .header__btn-mobile.opened {
	position: fixed;
	top: 25px;
	right: 30px;
	z-index: 100;
  }
  
  .main {
	padding-bottom: 50px;
  }
  .main_front {
	padding: 200px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: var(--white);
  }
  .main_front .main__title, .main_front .main__title span, .main_front .main__pluses, .main_front .main__pluses span {
	color: var(--white);
  }
  .main_front .btn_white {
	border-color: var(--white);
	color: var(--white);
  }
  .main__block {
	border-radius: 20px 20px 100px 20px;
	-webkit-box-shadow: var(--shadow);
			box-shadow: var(--shadow);
	background-image: url(img/main-block-bg.png);
	background-position: bottom right;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 34px;
	min-height: 510px;
  }
  .main__title {
	font-family: var(--second-font);
	font-size: 40px;
	line-height: 120%;
	text-transform: uppercase;
	color: var(--blue);
  }
  .main__title span {
	font-family: var(--second-font);
	color: var(--green);
	text-decoration: underline;
  }
  .main__pluses {
	color: var(--grey);
	line-height: 120%;
  }
  .main__pluses span {
	font-family: var(--second-font);
	color: var(--green);
	font-size: 24px;
  }
  .main__btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	margin-top: 30px;
  }
  
  .wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 20px;
  }
  .wrapper:before {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	background-image: url(img/left.png);
	width: 102px;
	height: 84px;
	z-index: 1;
  }
  .wrapper__icon-right {
	position: absolute;
	top: -1px;
	right: 0;
	padding: 6px;
	background-color: var(--light);
	border-bottom-left-radius: 20px;
	z-index: 2;
  }
  .wrapper__icon-right:before {
	content: "";
	position: absolute;
	top: 0;
	left: -10px;
	width: 10px;
	height: 10px;
	border-bottom-right-radius: 10px;
	-webkit-box-shadow: 5px 5px 0 5px var(--light);
			box-shadow: 5px 5px 0 5px var(--light);
	-webkit-transform: rotate(-90deg);
			transform: rotate(-90deg);
  }
  .wrapper__icon-right:after {
	content: "";
	position: absolute;
	bottom: -10px;
	right: 0px;
	width: 10px;
	height: 10px;
	border-bottom-right-radius: 10px;
	-webkit-box-shadow: 5px 5px 0 5px white;
			box-shadow: 5px 5px 0 5px white;
	-webkit-transform: rotate(-90deg);
			transform: rotate(-90deg);
  }
  .wrapper__icon-left {
	position: absolute;
	bottom: 0;
	left: -78px;
	z-index: 2;
	padding-right: 8px;
	background-color: var(--light);
	border-radius: 20px;
	border-top-right-radius: 10px;
  }
  .wrapper__icon-left:before {
	content: "";
	position: absolute;
	top: 1px;
	right: 10px;
	width: 10px;
	height: 10px;
	border-bottom-right-radius: 10px;
	-webkit-box-shadow: 5px 5px 0 5px var(--light);
			box-shadow: 5px 5px 0 5px var(--light);
	-webkit-transform: rotate(-90deg);
			transform: rotate(-90deg);
  }
  .wrapper img {
	border-radius: 20px;
  }
  
  .slick-arrow {
	position: absolute;
	bottom: 24px;
	right: 24px;
	z-index: 10;
	font-size: 0;
	width: 48px;
	height: 48px;
	background-color: var(--white);
	border-radius: 8px;
	border: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 60%;
	-webkit-transition: var(--transition);
	transition: var(--transition);
  }
  .slick-arrow:hover {
	background-color: var(--green);
  }
  
  .slick-prev {
	right: 98px;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 17.3333' fill='rgb(138, 183, 45)' fill-rule='nonzero'%3e%3cpath d='M8.66 0L0 8.66L8.66 17.33L9.6 16.39L2.55 9.33L32 9.33L32 8L2.55 8L9.6 0.94L8.66 0Z'/%3e%3c/svg%3e");
  }
  .slick-prev:hover {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 17.3333' fill='white' fill-rule='nonzero'%3e%3cpath d='M8.66 0L0 8.66L8.66 17.33L9.6 16.39L2.55 9.33L32 9.33L32 8L2.55 8L9.6 0.94L8.66 0Z'/%3e%3c/svg%3e");
  }
  
  .slick-next {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 17.3333' fill='rgb(138, 183, 45)' fill-rule='nonzero'%3e%3cpath d='M23.33 17.33L32 8.66L23.33 0L22.39 0.94L29.44 8L0 8L0 9.33L29.44 9.33L22.39 16.39L23.33 17.33Z'/%3e%3c/svg%3e");
  }
  .slick-next:hover {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 17.3333' fill='white' fill-rule='nonzero'%3e%3cpath d='M23.33 17.33L32 8.66L23.33 0L22.39 0.94L29.44 8L0 8L0 9.33L29.44 9.33L22.39 16.39L23.33 17.33Z'/%3e%3c/svg%3e");
  }
  
  .section {
	padding: 50px 0;
  }
  
  .animation {
	-webkit-animation: fadeIn ease 3s;
	animation: fadeIn ease 3s;
  }
  
  @-webkit-keyframes fadeIn {
	from {
	  opacity: 0;
	}
	to {
	  opacity: 1;
	}
  }
  @keyframes fadeIn {
	from {
	  opacity: 0;
	}
	to {
	  opacity: 1;
	}
  }
  .section-title {
	font-family: var(--second-font);
	font-size: 34px;
	text-transform: uppercase;
	color: var(--blue);
  }
  
  .section-subtitle {
	font-size: 18px;
  }
  
  .advantages-card {
	position: relative;
	z-index: 2;
	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: center;
		-ms-flex-align: center;
			align-items: center;
	padding: 24px 20px;
	border-radius: 24px;
	-webkit-box-shadow: var(--shadow);
			box-shadow: var(--shadow);
	background-color: var(--white);
	margin-top: 24px;
	text-align: center;
  }
  .advantages-card svg {
	width: 64px;
	height: 64px;
  }
  .advantages-card__title {
	font-family: var(--second-font);
	font-size: 24px;
	text-transform: uppercase;
	margin: 8px 0;
	line-height: 110%;
  }
  .advantages-card__text {
	font-size: 18px;
  }
  
  .services:before, .numbers:before {
	content: "";
	position: absolute;
	top: -150px;
	right: -110px;
	width: 759px;
	height: 759px;
	-webkit-filter: blur(300px);
			filter: blur(300px);
	background: var(--green);
	opacity: 0.3;
  }
  
  .services-card {
	position: relative;
	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-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	min-height: 280px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 24px;
	-webkit-box-shadow: var(--shadow);
			box-shadow: var(--shadow);
	padding: 28px;
	color: var(--white);
	overflow: hidden;
  }
  .services-card:before {
	content: "";
	position: absolute;
	bottom: -50px;
	right: -50px;
	-webkit-filter: blur(100px);
			filter: blur(100px);
	background: var(--green);
	opacity: 0;
	width: 400px;
	height: 80%;
	z-index: 2;
	-webkit-transition: var(--transition);
	transition: var(--transition);
  }
  .services-card:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  }
  .services-card:hover {
	color: var(--white);
  }
  .services-card:hover:before {
	opacity: 0.8;
  }
  .services-card__header {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	font-size: 28px;
	text-transform: uppercase;
	z-index: 3;
  }
  .services-card__title {
	font-family: var(--second-font);
  }
  .services-card svg {
	flex-shrink: 0;
  }
  .services-card__footer {
	position: relative;
	z-index: 3;
	font-size: 18px;
  }
  .services-card__count {
	font-size: 20px;
	text-transform: uppercase;
  }
  .services-card__btn {
	display: block;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	margin-left: auto;
  }
  .services-card__price span {
	font-family: var(--second-font);
	font-size: 32px;
	text-transform: uppercase;
  }
  
  .quote__wrapper {
	border-radius: 24px;
	padding: 40px;
	-webkit-box-shadow: var(--shadow);
			box-shadow: var(--shadow);
	background: var(--white);
  }
  .quote__text {
	border-left: 2px solid var(--green);
	padding-left: 12px;
	font-style: italic;
	font-size: 24px;
	line-height: 110%;
  }
  
  .video__wrapper {
	display: block;
	position: relative;
	border-radius: 24px;
	min-height: 600px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
  }
  .video__wrapper:hover {
	opacity: 0.7;
  }
  .video__wrapper:before {
	content: "";
	position: absolute;
	top: calc(50% - 33px);
	left: calc(50% - 33px);
	width: 66px;
	height: 66px;
	background-image: url(icon/play.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
  }
  .video__wrapper_mini {
	min-height: 300px !important;
  }
  
  .reviews .section-title {
	position: relative;
	margin-bottom: 60px;
  }
  .reviews .section-title:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 25px;
	background-image: url(icon/reviews-left.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	width: 35%;
	height: 26px;
  }
  .reviews .section-title:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 25px;
	background-image: url(icon/reviews-right.png);
	background-position: bottom left;
	background-repeat: no-repeat;
	width: 35%;
	height: 26px;
  }
  .reviews__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: center;
		-ms-flex-align: center;
			align-items: center;
  }
  .reviews__btn {
	font-size: 18px;
	padding: 8px 12px;
	background-color: transparent;
	border: 1px solid var(--main);
	outline: none;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	margin-top: 15px;
  }
  .reviews__btn:hover {
	background-color: var(--green);
	color: var(--white);
  }
  .reviews .slide {
	padding: 0 8px;
  }
  
  .review {
	border-radius: 20px;
	padding: 24px;
	background-color: var(--white);
  }
  .review__img {
	border-radius: 50%;
  }
  .review__title {
	font-size: 20px;
	font-weight: 500;
  }
  .review__text {
	font-size: 20px;
	line-height: 110%;
	margin-top: 12px;
  }
  .review__rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 5px 0 10px;
  }
  .review__rating img {
	padding-right: 7px;
  }
  
  .arrows {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
  }
  .arrows__item {
	position: relative;
	bottom: auto;
	right: auto;
	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;
	cursor: pointer;
  }
  .arrows__item svg path {
	fill: var(--green);
	-webkit-transition: var(--transition);
	transition: var(--transition);
  }
  .arrows__item:hover {
	background-color: var(--green);
  }
  .arrows__item:hover svg path {
	fill: var(--white);
  }
  .arrows__item_prev {
	margin-right: 24px;
  }
  
  .progress {
	height: 16px;
	border-radius: 24px;
	background-color: var(--white);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	width: 100%;
  }
  
  .progress__line {
	-webkit-transition: var(--transition);
	transition: var(--transition);
	border-radius: 12px;
	background-color: var(--blue);
	width: 0;
	height: 16px;
  }
  
  .callback {
	color: var(--white);
  }
  .callback .section-title {
	color: var(--white);
  }
  .callback__wrapper {
	position: relative;
	border-radius: 24px;
	padding: 40px;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--green);
	background-size: cover;
	z-index: 2;
  }
  .callback:before {
	content: "";
	position: absolute;
	bottom: -150px;
	left: -110px;
	width: 559px;
	height: 559px;
	-webkit-filter: blur(300px);
			filter: blur(300px);
	background: var(--green);
	opacity: 0.3;
  }
  .callback .acceptance a {
	color: var(--white);
  }
  .callback__wrapper input[type=checkbox] {
	border-color: var(--white);
  }
  
  .input {
	font-family: var(--second-font);
	width: 100%;
	background-color: transparent;
	outline: none;
	border: none;
	border-bottom: 1px solid var(--white);
	padding: 8px;
	margin-bottom: 20px;
	color: var(--white);
  }
  
  .input::-webkit-input-placeholder {
	color: var(--white);
  }
  
  .input::-moz-placeholder {
	color: var(--white);
  }
  
  .input:-ms-input-placeholder {
	color: var(--white);
  }
  
  .input::-ms-input-placeholder {
	color: var(--white);
  }
  
  .input::placeholder {
	color: var(--white);
  }
  
  textarea {
	resize: none;
	height: 100px;
  }
  
  .contacts {
	min-height: 670px;
	margin-top: 50px;
  }
  .contacts .map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }
  .contacts iframe {
	width: 100%;
	height: 100%;
  }
  .contacts__block {
	position: relative;
	z-index: 2;
	padding: 40px;
	border-radius: 20px;
	background: var(--white);
  }
  .contacts__row {
	margin-top: 20px;
  }
  .contacts__row svg {
	width: 20px;
	height: 20px;
	margin-right: 5px;
  }
  .contacts__row a {
	color: var(--main);
  }
  .contacts__row a:hover {
	color: var(--green);
  }
  .contacts__row a.btn {
	color: var(--white);
  }
  .contacts__row a.btn:hover {
	color: var(--green);
  }
  .contacts__title {
	font-size: 14px;
  }
  .contacts__text {
	font-size: 20px;
	font-weight: 500;
  }
  
  .social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
  }
  .social a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	margin-right: 40px;
	font-size: 20px;
	font-weight: 500;
  }
  .social a span {
	margin-left: 5px;
  }
  
  #map_road {
	height: 500px;
	width: 100%;
  }
  
  #map_road > ymaps {
	border-radius: 20px;
	overflow: hidden;
  }
  
  .information__block {
	position: relative;
	z-index: 2;
	border-radius: 20px;
	padding: 34px;
	background: var(--white);
	-webkit-box-shadow: var(--shadow);
			box-shadow: var(--shadow);
  }
  .information__photo {
	border-radius: 20px;
	overflow: hidden;
  }
  .information ul {
	margin-bottom: 0;
  }
  .information ul li {
	margin-bottom: 5px;
  }
  
  .numbers__wrapper {
	position: relative;
	z-index: 2;
	padding: 40px;
	border-radius: 20px;
	background-color: var(--white);
  }
  .numbers img {
	border-radius: 12px;
  }
  .numbers .btn {
	display: block;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	margin: 0 auto;
  }
  
  .nav-tabs {
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 37px 0;
	border: none;
  }
  
  .nav-tabs .nav-link {
	font-size: 24px;
	color: var(--main);
	margin: 0 15px;
  }
  
  .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active, .nav-tabs .nav-link:hover {
	background-color: transparent;
	color: var(--green);
	border: none;
	border-bottom: 2px solid var(--green);
  }
  
  .tab-content > .tab-pane,
  .pill-content > .pill-pane {
	display: block;
	height: 0;
	overflow: hidden;
  }
  
  .tab-content > .active,
  .pill-content > .active {
	height: auto;
  }
  
  .slider_numbers {
	margin: 0 -12px;
	padding-bottom: 37px;
  }
  .slider_numbers .slide {
	padding: 0 12px;
  }
  .slider_numbers .slide img {
	display: block;
	margin: 0 auto;
  }
  
  .footer {
	padding: 40px 0;
  }
  .footer .sub-menu {
	display: none;
  }
  
  .copy {
	margin-top: 15px;
  }
  
  .messengers {
	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;
	margin-top: 20px;
  }
  .messengers a {
	margin: 0 8px;
  }
  .messengers a:hover {
	opacity: 0.7;
  }
  
  .modal-content {
	border-radius: 24px;
  }
  .modal-content .btn {
	width: 100%;
  }
  .modal-content label {
	width: 100%;
  }
  .modal-content .section-title {
	text-align: center;
  }
  
  .btn-close {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 2;
  }
  .btn-close:focus {
	-webkit-box-shadow: none;
			box-shadow: none;
  }
  
  .modal-body {
	padding: 30px;
  }
  .modal-body .input {
	color: var(--green);
	border: 1px solid var(--green);
	margin-bottom: 15px;
	border-radius: 10px;
	min-height: 39px;
  }
  .modal-body .input::-webkit-input-placeholder {
	color: var(--green);
  }
  .modal-body .input::-moz-placeholder {
	color: var(--green);
  }
  .modal-body .input:-ms-input-placeholder {
	color: var(--green);
  }
  .modal-body .input::-ms-input-placeholder {
	color: var(--green);
  }
  .modal-body .input::placeholder {
	color: var(--green);
  }
  
  #modal_reserved .input {
	margin-bottom: 10px;
  }
  
  #scroll_up {
	position: fixed;
	bottom: 40px;
	right: 40px;
	height: 50px;
	width: 50px;
	border-radius: 15px;
	background-color: var(--green);
	padding: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 100;
	display: none;
	cursor: pointer;
	border: 1px solid var(--white);
  }
  
  #scroll_up:hover {
	background-color: var(--blue);
  }
  
  .acceptance {
	text-align: left;
  }
  
  .acceptance a {
	color: var(--main);
	text-decoration: underline;
  }
  
  .wpcf7-spinner {
	display: none;
  }
  
  .wpcf7-list-item {
	margin: 0;
  }
  
  input[type=checkbox] {
	position: relative;
	width: 20px;
	height: 20px;
	background-color: transparent;
	border: 2px solid var(--green);
	border-radius: 3px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	margin-right: 5px;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	margin-bottom: -2px;
  }
  
  input[type=checkbox]:checked {
	background-image: url("data:image/svg+xml,%0A%3Csvg width='15' height='10' viewBox='0 0 15 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.29412L5.46533 8.65842C5.65962 8.84832 5.97 8.84832 6.1643 8.65842L14 1' stroke='rgb(92, 159, 54)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A") !important;
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--white);
  }
  .grecaptcha-badge{
    z-index: 10;
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
    right: -163px !important;
    opacity: 0.5;
	bottom: 60px !important;
	}
	.grecaptcha-badge:hover {
		right: -51px !important;
		opacity: 1;
	}
	h2 {
		font-family: var(--second-font);
	}