@font-face {
	font-family: 'Mulish';
	src: url("../fonts/Mulish-Regular.woff2") format("woff2");
	font-weight: normal;
	font-style: normal;
	font-display: swap; }

@font-face {
	font-family: 'Mulish';
	src: url("../fonts/Mulish-ExtraBold.woff2") format("woff2");
	font-weight: 800;
	font-style: normal;
	font-display: swap; }

@font-face {
	font-family: 'Mulish';
	src: url("../fonts/Mulish-Black.woff2") format("woff2");
	font-weight: 900;
	font-style: normal;
	font-display: swap; }

* {
	-webkit-box-sizing: border-box;
					box-sizing: border-box; }

body {
	font-family: "Mulish", sans-serif;
	-webkit-font-feature-settings: 'pnum' on, 'lnum' on;
					font-feature-settings: 'pnum' on, 'lnum' on;
	color: #323436;
	min-width: 320px;
	overflow-x: hidden;
	position: relative;
	margin: 0; }
	body.mnu-active {
		overflow: hidden; }

a {
	display: inline-block;
	text-decoration: none;
	color: #fff; }
	a:hover, a:focus, a:active {
		text-decoration: none;
		outline: none; }

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	line-height: normal; }

ul {
	margin: 0;
	padding: 0; }

input,
button,
textarea,
select {
	-webkit-appearance: none;
		 -moz-appearance: none;
					appearance: none;
	outline: none; }

img {
	max-width: 100%;
	height: auto;
	vertical-align: top; }

.c-container {
	width: 1150px;
	margin: auto;
	position: relative; }

.c-btn {
	border-radius: 6px;
	background: radial-gradient(547.23% 169.19% at 62.41% 16.98%, #6AB536 0%, #1F7C35 100%);
	-webkit-box-shadow: 0px 34px 24px -20px #5FAD36;
					box-shadow: 0px 34px 24px -20px #5FAD36;
	padding: 15px 35px;
	overflow: hidden;
	position: relative; }
	.c-btn:before {
		content: '';
		position: absolute;
		display: inline-block;
		top: -180px;
		left: 0;
		width: 30px;
		height: 100%;
		background-color: #fff;
		-webkit-animation: shiny 3s ease-in-out infinite;
						animation: shiny 3s ease-in-out infinite; }
	.c-btn:hover {
		background: radial-gradient(169.19% 547.23% at 62.41% 16.98%, #6AB536 0%, #1F7C35 100%); }
	.c-btn-wrap {
		text-align: center; }

@-webkit-keyframes shiny {
	0% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: 0; }
	80% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: 0.5; }
	81% {
		-webkit-transform: scale(4) rotate(45deg);
		opacity: 1; }
	100% {
		-webkit-transform: scale(50) rotate(45deg);
		opacity: 0; } }

.s-title {
	font-size: 36px;
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
	padding-bottom: 50px;
	margin-bottom: 55px;
	position: relative; }
	.s-title:after {
		content: '';
		width: 53px;
		height: 2px;
		background: radial-gradient(547.23% 169.19% at 62.41% 16.98%, #6AB536 0%, #1F7C35 100%);
		position: absolute;
		bottom: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
				-ms-transform: translateX(-50%);
						transform: translateX(-50%); }

/* Header */
.header {
	padding-top: 35px; }
	.header-wrapper {
		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; }
	.header-logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-negative: 0;
				flex-shrink: 0;
		font-size: 13px;
		font-weight: 900;
		text-transform: uppercase; }
		.header-logo img {
			-ms-flex-negative: 0;
					flex-shrink: 0;
			margin-right: 20px; }
		.header-logo span {
			width: 180px; }
	.header-right {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
				-ms-flex-align: center;
						align-items: center; }
	.header-phone {
		display: block;
		font-size: 26px;
		font-weight: 800;
		color: #323436; }
		.header-phone-wrap {
			text-align: right;
			margin-right: 25px; }
	.header-email {
		display: block;
		color: #409635; }
	.header-mnu li {
		display: inline-block;
		margin-right: 45px; }
		.header-mnu li:last-child {
			margin-right: 0; }
	.header-mnu a {
		font-size: 14px;
		font-weight: 800;
		color: #323436;
		-webkit-transition: .3s;
		transition: .3s; }
		.header-mnu a:hover {
			color: #409635; }
	.header-mnu-wrap {
		border-top: 1px solid #E6ECEE;
		margin-top: 40px;
		padding: 20px 0; }
	.header-btn {
		padding: 10px 30px; }

.social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none; }
	.social li {
		margin-right: 8px; }
		.social li:last-child {
			margin-right: 0; }
	.social a {
		width: 43px;
		height: 43px;
		border: 1px solid #DEE4EA;
		border-radius: 50%;
		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;
		-webkit-transition: .3s;
		transition: .3s; }
		.social a:hover {
			background-color: #6AB536;
			border-color: #6AB536; }
			.social a:hover path {
				fill: #fff; }
		.social a path {
			-webkit-transition: .3s;
			transition: .3s; }
	.social-white a {
		background-color: #fff;
		border-color: #fff; }
		.social-white a path {
			fill: #6AB536; }

.toggle-nav {
	width: 40px;
	height: 40px;
	-ms-flex-negative: 0;
			flex-shrink: 0;
	-webkit-box-align: center;
			-ms-flex-align: center;
					align-items: center;
	-webkit-box-pack: center;
			-ms-flex-pack: center;
					justify-content: center;
	border-radius: 6px;
	background: radial-gradient(547.23% 169.19% at 62.41% 16.98%, #6AB536 0%, #1F7C35 100%);
	-webkit-box-shadow: 0px 10px 8px -5px rgba(95, 173, 54, 0.5);
					box-shadow: 0px 10px 8px -5px rgba(95, 173, 54, 0.5);
	display: none; }
	.toggle-nav img {
		width: 60%; }

.mnu {
	padding: 15px 0;
	border-top: 1px solid #E6ECEE;
	border-bottom: 1px solid #E6ECEE; }
	.mnu li {
		display: block;
		margin-bottom: 15px; }
		.mnu li:last-child {
			margin-bottom: 0; }
	.mnu a {
		color: #323436;
		font-weight: 800; }
	.mnu-top {
		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;
		margin-bottom: 15px; }
	.mnu-wrapper {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		right: -100%;
		background-color: #fff;
		z-index: 100;
		padding: 15px 30px;
		-webkit-transition: .3s;
		transition: .3s; }
		.mnu-wrapper.active {
			right: 0; }
	.mnu-other {
		margin-top: 15px; }
		.mnu-other .header-email {
			display: block; }
		.mnu-other .header-btn {
			display: inline-block; }
		.mnu-other .header-phone {
			font-size: 18px; }
			.mnu-other .header-phone-wrap {
				text-align: left;
				margin: 15px 0; }
	.mnu-close {
		width: 40px;
		height: 40px;
		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: 6px;
		background: radial-gradient(547.23% 169.19% at 62.41% 16.98%, #6AB536 0%, #1F7C35 100%);
		-webkit-box-shadow: 0px 10px 8px -5px rgba(95, 173, 54, 0.5);
						box-shadow: 0px 10px 8px -5px rgba(95, 173, 54, 0.5); }

/* Main section */
.main {
	background: url("../img/main-bg.png") no-repeat top;
	background-size: cover;
	padding: 100px 0; }
	.main-info {
		width: 405px;
		position: relative;
		z-index: 3; }
	.main-title {
		font-size: 56px;
		font-weight: 900;
		line-height: 1;
		text-transform: uppercase;
		margin-bottom: 20px; }
		.main-title span {
			background: radial-gradient(547.23% 169.19% at 62.41% 16.98%, #6AB536 0%, #1F7C35 100%);
			background-clip: text;
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent; }
	.main-list {
		margin-bottom: 35px; }
		.main-list li {
			font-size: 19px;
			line-height: 1.4;
			display: block; }
			.main-list li span {
				font-weight: 800; }
	.main-img {
		position: absolute;
		bottom: -100px;
		right: 100px; }

/* About section */
.about {
	padding: 130px 0; }
	.about-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
				-ms-flex-pack: end;
						justify-content: flex-end;
		position: relative; }
	.about-info {
		width: 760px; }
	.about-title {
		font-size: 30px;
		text-align: left;
		padding-bottom: 35px;
		margin-bottom: 35px; }
		.about-title:after {
			left: 0;
			-webkit-transform: none;
					-ms-transform: none;
							transform: none; }
	.about-text {
		margin-bottom: 15px; }
		.about-text:last-of-type {
			margin-bottom: 0; }
		.about-text span {
			font-weight: 800; }
	.about-img {
		position: absolute;
		left: 0;
		top: 0; }

/* Services section */
.services {
	background: url("../img/services-bg.png") no-repeat top;
	background-size: cover;
	padding: 130px 0 150px; }
	.services-title {
		color: #fff; }
		.services-title:after {
			background: #fff; }
	.services-items {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
				-ms-flex-pack: justify;
						justify-content: space-between;
		margin-bottom: 50px; }
	.services-item {
		width: 32%;
		background-color: #fff;
		border-radius: 20px;
		-webkit-box-shadow: 0px 44px 34px -20px rgba(50, 52, 54, 0.14);
						box-shadow: 0px 44px 34px -20px rgba(50, 52, 54, 0.14);
		text-align: center;
		padding-bottom: 110px;
		position: relative; }
		.services-item-img {
			margin-bottom: 20px; }
			.services-item-img img {
				width: 100%;
				-o-object-fit: cover;
					 object-fit: cover;
				border-radius: 20px 20px 0 0; }
		.services-item-title {
			font-size: 18px;
			font-weight: 800;
			padding: 0 30px;
			margin-bottom: 20px; }
		.services-item-desc {
			padding: 0 30px; }
		.services-item-btn {
			background-color: #E8EEF0;
			padding: 10px 30px;
			border-radius: 6px;
			color: #323436;
			-webkit-transition: .3s;
			transition: .3s; }
			.services-item-btn:hover {
				background-color: #6AB536;
				color: #fff; }
			.services-item-btn-wrap {
				position: absolute;
				bottom: 35px;
				left: 0;
				width: 100%;
				text-align: center; }
	.services-btn {
		background: #fff;
		color: #323436; }
		.services-btn:hover {
			background: #fff; }

/* Advantages section */
.advantages {
	padding: 140px 0 70px; }
	.advantages-items {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
				flex-wrap: wrap;
		margin-bottom: -45px; }
	.advantages-item {
		width: 25%;
		text-align: center;
		margin-bottom: 45px;
		padding: 0 30px; }
		.advantages-item-icon {
			display: -webkit-inline-box;
			display: -ms-inline-flexbox;
			display: inline-flex;
			-webkit-box-align: center;
					-ms-flex-align: center;
							align-items: center;
			-webkit-box-pack: center;
					-ms-flex-pack: center;
							justify-content: center;
			width: 100px;
			height: 100px;
			border: 1px solid #EAEEF0;
			border-radius: 50%;
			margin-bottom: 25px; }

/* Results section */
.results {
	padding: 70px 0 100px; }
	.results .c-container {
		width: 1730px; }
	.results-item img {
		width: 100%;
		height: 100%;
		border-radius: 12px; }

.swiper-pagination {
	margin-top: 50px;
	position: static; }
	.swiper-pagination-bullet {
		background-color: #DAE0E2;
		opacity: 1; }
		.swiper-pagination-bullet-active {
			background: radial-gradient(547.23% 169.19% at 62.41% 16.98%, #6AB536 0%, #1F7C35 100%); }

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 20px; }

/* Certificates section */
.certificates {
	background: url("../img/certificates-bg.png") no-repeat top;
	background-size: cover;
	padding: 120px 0; }
	.certificates-item {
		height: auto;
		border-radius: 20px;
		overflow: hidden; }
		.certificates-item:hover img {
			-webkit-transform: scale(1.1);
					-ms-transform: scale(1.1);
							transform: scale(1.1); }
		.certificates-item img {
			width: 100%;
			height: 100%;
			-o-object-fit: cover;
				 object-fit: cover;
			-webkit-transition: .3s;
			transition: .3s;
			border-radius: 20px; }
	.certificates-btn {
		margin-top: 40px; }

/* Reviews section */
.reviews {
	padding: 120px 0 105px; }
	.reviews-item {
		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; }
		.reviews-item-img {
			border-radius: 20px;
			width: 510px;
			-ms-flex-negative: 0;
					flex-shrink: 0;
			margin-right: 85px; }
			.reviews-item-img img {
				width: 100%;
				border-radius: 20px; }
		.reviews-item-info {
			width: 100%; }
		.reviews-item p {
			margin-bottom: 20px; }
			.reviews-item p:last-of-type {
				margin-bottom: 0; }
			.reviews-item p span {
				display: block;
				font-weight: 800; }

/* Contacts section */
.contacts {
	background: url("../img/contacts-bg.png") no-repeat top;
	background-size: cover;
	padding: 130px 0 145px; }
	.contacts-wrapper {
		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; }
	.contacts-title {
		color: #fff; }
		.contacts-title:after {
			background: #fff; }
	.contacts-info {
		width: 100%; }
	.contacts-logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		font-size: 13px;
		font-weight: 900;
		color: #fff;
		text-transform: uppercase;
		margin-bottom: 50px; }
		.contacts-logo img {
			-ms-flex-negative: 0;
					flex-shrink: 0;
			margin-right: 20px; }
		.contacts-logo span {
			width: 180px; }
	.contacts-address {
		background: url("../img/address.svg") no-repeat left center;
		padding-left: 25px;
		color: #fff;
		margin: 35px 0 25px; }
	.contacts-phone {
		display: block;
		font-size: 26px;
		font-weight: 800;
		color: #fff; }
	.contacts-email {
		display: block;
		color: #fff;
		margin-bottom: 35px; }
	.contacts-map {
		width: 710px;
		-ms-flex-negative: 0;
				flex-shrink: 0;
		margin-left: 50px; }
		.contacts-map iframe {
			border-radius: 20px; }
	.contacts-btn {
		background: #fff;
		padding: 10px 30px;
		color: #323436; }
		.contacts-btn:hover {
			background: #fff; }

/* Footer */
.footer {
	background-color: #fff;
	padding: 40px 0;
	text-align: center; }
	.footer-copy {
		color: #949DA4; }
		.footer-copy br {
			display: none; }

/* Popup */
.popup {
	display: none; }

.request-popup {
	background-color: #fff;
	margin: auto;
	max-width: 430px;
	padding-top: 60px;
	position: relative;
	text-align: center; }
	.request-popup-title {
		font-size: 30px;
		font-weight: 800;
		text-transform: uppercase;
		margin-bottom: 30px;
		padding: 0 20px; }
	.request-popup-desc {
		font-size: 22px;
		font-weight: 800;
		margin-bottom: 30px;
		padding: 0 20px; }
	.request-popup-form-input {
		width: 100%;
		padding: 0 15px;
		height: 50px;
		border: none;
		border-bottom: 1px solid #E6ECEE;
		font: 18px 'Mulish', sans-serif;
		margin-bottom: 30px; }
		.request-popup-form-input-wrap {
			padding: 0 20px; }
	.request-popup-form-btn {
		width: 100%;
		padding: 30px;
		background: radial-gradient(547.23% 169.19% at 62.41% 16.98%, #6AB536 0%, #1F7C35 100%);
		font: 22px 'Mulish', sans-serif;
		color: #fff;
		text-transform: uppercase;
		border: none;
		cursor: pointer;
		overflow: hidden;
		position: relative; }
		.request-popup-form-btn:before {
			content: '';
			position: absolute;
			display: inline-block;
			top: -180px;
			left: 0;
			width: 30px;
			height: 100%;
			background-color: #fff;
			-webkit-animation: shiny 3s ease-in-out infinite;
							animation: shiny 3s ease-in-out infinite; }

.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: scale(0.8);
			-ms-transform: scale(0.8);
					transform: scale(0.8); }

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: scale(1);
			-ms-transform: scale(1);
					transform: scale(1); }

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8);
			-ms-transform: scale(0.8);
					transform: scale(0.8);
	opacity: 0; }

.success {
	padding: 100px 0;
	text-align: center; }

/* Adaptive */
@media only screen and (max-width: 1800px) {
	.results .c-container {
		width: 100%;
		padding: 0 30px; } }

@media only screen and (max-width: 1250px) {
	.c-container {
		width: 100%;
		padding: 0 30px; }
	.about {
		padding: 70px 0; }
		.about-info {
			width: 65%; }
	.services {
		padding: 70px 0; }
	.advantages {
		padding: 70px 0; }
	.certificates {
		padding: 70px 0; }
	.reviews {
		padding: 70px 0; }
		.reviews-item-img {
			width: 40%;
			height: auto;
			margin-right: 50px; }
	.contacts {
		padding: 70px 0; }
		.contacts-map {
			width: 60%; }
	.success {
		padding: 70px 0 150px; } }

@media only screen and (max-width: 1023px) {
	.header .social {
		display: none; }
	.header-phone {
		font-size: 22px; }
	.header-mnu li {
		margin-right: 25px; }
	.main-title {
		font-size: 50px; }
		.main-title span {
			display: block; }
	.main-img {
		width: 45%;
		right: 0; }
	.about-img {
		width: 200px; }
	.s-title {
		font-size: 30px; }
	.services-items {
		-ms-flex-wrap: wrap;
				flex-wrap: wrap; }
	.services-item {
		width: 48%;
		margin-bottom: 30px; }
	.advantages .s-title {
		margin-bottom: 40px; }
	.advantages-item {
		padding: 0 20px; }
	.results {
		padding: 50px 0; }
	.reviews {
		padding: 50px 0; }
		.reviews-item {
			display: block;
			padding: 0 100px; }
			.reviews-item-img {
				display: block;
				width: 100%;
				text-align: center;
				margin-bottom: 30px;
				margin-right: 0; }
				.reviews-item-img img {
					display: inline-block;
					width: auto;
					height: auto; }
	.contacts-map {
		width: 50%; } }

@media only screen and (max-width: 767px) {
	.header {
		padding: 15px 0; }
		.header-logo {
			font-size: 10px; }
			.header-logo img {
				width: 47px;
				margin-right: 8px; }
			.header-logo span {
				width: 135px; }
		.header-mnu-wrap {
			display: none; }
		.header-btn {
			display: none; }
		.header-email {
			display: none; }
		.header-phone {
			font-size: 18px; }
			.header-phone-wrap {
				margin: 0;
				margin-right: 20px; }
	.toggle-nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex; }
	.main {
		background: url("../img/main-bg-mob.png") no-repeat top;
		background-size: cover;
		padding: 40px 0; }
		.main-info {
			width: 100%; }
		.main-title {
			font-size: 40px; }
		.main-list li {
			font-size: 17px; }
		.main-img {
			bottom: -40px; }
	.about {
		padding: 50px 0;
		text-align: center; }
		.about-title {
			font-size: 25px;
			text-align: center; }
			.about-title:after {
				left: 50%;
				-webkit-transform: translateX(-50%);
						-ms-transform: translateX(-50%);
								transform: translateX(-50%); }
		.about-img {
			position: static;
			width: 150px; }
		.about-info {
			width: 100%; }
	.s-title {
		font-size: 25px;
		padding-bottom: 30px;
		margin-bottom: 30px; }
	.services {
		padding: 50px 0; }
		.services-items {
			-webkit-box-pack: center;
					-ms-flex-pack: center;
							justify-content: center;
			margin-bottom: 30px; }
		.services-item {
			width: 80%;
			border-radius: 10px; }
			.services-item-img img {
				border-radius: 10px; }
	.advantages {
		padding: 50px 0; }
		.advantages-item {
			width: 50%; }
	.swiper-pagination {
		margin-top: 25px; }
	.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 13px; }
	.certificates {
		padding: 50px 0; }
	.reviews-item {
		padding: 0; }
		.reviews-item-img {
			margin-bottom: 25px; }
			.reviews-item-img img {
				border-radius: 10px; }
		.reviews-item p {
			font-size: 14px; }
	.contacts {
		padding: 50px 0;
		background: url("../img/contacts-bg-mob.png") no-repeat top;
		background-size: cover;
		text-align: center; }
		.contacts-wrapper {
			display: block; }
		.contacts-logo {
			display: none; }
		.contacts .social {
			-webkit-box-pack: center;
					-ms-flex-pack: center;
							justify-content: center; }
		.contacts-address {
			padding-left: 0;
			background: none; }
		.contacts-map {
			width: 100%;
			margin-left: 0;
			margin-top: 30px; }
			.contacts-map iframe {
				height: 250px; }
	.footer {
		padding: 25px 0; }
		.footer-copy br {
			display: block; }
	.request-popup {
		padding-top: 40px; }
		.request-popup-title {
			font-size: 25px;
			margin-bottom: 15px; }
		.request-popup-desc {
			font-size: 18px;
			margin-bottom: 15px; }
		.request-popup-form-input {
			font-size: 16px; }
		.request-popup-form-btn {
			font-size: 18px;
			padding: 20px; }
	.success {
		padding: 50px 0 100px; }
		.success-text {
			font-size: 20px; } }

@media only screen and (max-width: 479px) {
	.c-container {
		padding: 0 15px; }
	.header-logo span {
		width: 120px; }
	.header-phone {
		font-size: 18px; }
	.header-email {
		font-size: 14px; }
	.toggle-nav {
		width: 35px;
		height: 35px; }
		.toggle-nav img {
			width: auto; }
	.mnu-wrapper {
		padding: 15px; }
	.mnu-close {
		width: 35px;
		height: 35px; }
		.mnu-close img {
			width: 50%; }
	.main {
		overflow: hidden; }
		.main-title {
			font-size: 33px; }
		.main-list {
			margin-bottom: 30px; }
			.main-list li {
				font-size: 16px; }
		.main-img {
			width: 250px;
			right: -35px; }
	.c-btn {
		padding: 12px 30px;
		font-size: 14px; }
	.mnu li {
		margin-bottom: 10px; }
	.mnu a {
		font-size: 14px; }
	.about {
		padding: 35px 0; }
		.about-title {
			font-size: 18px; }
		.about-img {
			width: 120px; }
		.about-text {
			font-size: 14px; }
	.s-title {
		font-size: 18px;
		padding-bottom: 20px;
		margin-bottom: 30px; }
		.s-title:after {
			width: 33px;
			height: 1px; }
	.services {
		background: url("../img/services-bg-mob.png") no-repeat top;
		background-size: cover;
		padding: 35px 0 45px; }
		.services-items {
			margin-bottom: 15px; }
		.services-item {
			width: 100%;
			padding-bottom: 30px;
			margin-bottom: 15px; }
			.services-item-title {
				padding: 0 20px;
				font-size: 16px; }
			.services-item-desc {
				font-size: 14px;
				padding: 0 20px; }
			.services-item-btn {
				padding: 7px 25px;
				font-size: 14px; }
				.services-item-btn-wrap {
					position: static;
					margin-top: 20px; }
	.advantages {
		padding: 35px 0; }
		.advantages .s-title {
			margin-bottom: 20px; }
		.advantages-items {
			margin-bottom: -15px; }
		.advantages-item {
			width: 100%;
			padding: 0;
			text-align: left;
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-align: center;
					-ms-flex-align: center;
							align-items: center;
			margin-bottom: 15px; }
			.advantages-item-icon {
				width: 25px;
				height: auto;
				-ms-flex-negative: 0;
						flex-shrink: 0;
				margin-right: 15px;
				border: none;
				margin-bottom: 0; }
			.advantages-item-desc {
				font-size: 14px; }
	.results {
		padding: 0 0 35px; }
		.results-item img {
			border-radius: 10px; }
	.certificates {
		padding: 40px 0 50px; }
		.certificates-item {
			padding: 0 30px;
			border-radius: 10px; }
			.certificates-item img {
				border-radius: 10px; }
	.contacts {
		padding: 40px 0 45px; }
		.contacts-address {
			font-size: 14px;
			margin-bottom: 15px; }
		.contacts-phone {
			font-size: 20px; }
		.contacts-email {
			font-size: 14px;
			margin-bottom: 20px; }
		.contacts-btn {
			padding: 12px 20px; }
		.contacts-map iframe {
			border-radius: 10px;
			height: 185px; }
	.footer-copy {
		font-size: 14px; }
	.request-popup-title {
		font-size: 22px; }
	.request-popup-desc {
		font-size: 16px; }
	.request-popup-form-input {
		font-size: 14px; }
	.request-popup-form-btn {
		font-size: 16px; }
	.success {
		padding: 30px 0 50px; }
		.success-text {
			font-size: 14px;
			margin-bottom: 20px; } }

@media only screen and (max-width: 415px) {
	.header-logo {
		font-size: 9px; }
		.header-logo img {
			width: 35px; }
		.header-logo span {
			width: 105px; }
	.header-right {
		-webkit-box-pack: end;
				-ms-flex-pack: end;
						justify-content: flex-end; }
	.header-phone {
		font-size: 16px; }
		.header-phone-wrap {
			margin-right: 10px; } }

@media only screen and (max-width: 350px) {
	.header-phone {
		font-size: 14px; } }

@media only screen and (max-width: 335px) {
	.header-phone {
		font-size: 12px; } }
