body {
	margin: 0;
	overflow-x: hidden;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #3F3E3C;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
}
h1, h2, h3 {
	font-weight: 900;
}
h4, h5, h6 {
	font-weight: 700;
}
a {
	text-decoration: none;
	color: #FFFFFF;
}
ul {
	list-style: none;
	padding: 0;
}
.lock {
	overflow: hidden;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0px 30px 0px 30px;
}
.header {
	width: 100%;
	background-color: #E8891C;
}
.header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-contacts {
	background-color: #E8891C;
	height: 60px;
}
.header-contacts_content {
	width: 100%;
	display: flex;
	width: 100%;
	justify-content: flex-end;
	margin-bottom: 0;
	height: 60px;
	align-items: center;
}
.header-contacts_content a {
	transition: .3s;
}
.header-contacts_content a:hover {
	color: #3F3E3C;
}
.header-modal {
	margin: 0px 65px 0px 25px;
	color: #FFFFFF;
	cursor: pointer;
	text-decoration: underline;
	transition: .3s;
}
.header-modal:hover {
	color: #3F3E3C;
}
.header-social {
	display: flex;
	align-items: center;
	width: 50px;
	justify-content: space-between;
	margin-left: 45px;
}
span.header-whatsup {
	display: block;
	width: 20px;
	height: 20px;
	content: ' ';
	background-image: url(../images/whatsapp-white.png);
	background-position: center;
	background-size: cover;
	transition: .3s;
}
span.header-whatsup:hover {
	background-image: url(../images/whatsapp-gray.png);
}
span.header-instagram {
	display: block;
	width: 20px;
	height: 20px;
	content: ' ';
	background-image: url(../images/instagram-white.png);
	background-position: center;
	background-size: cover;
	transition: .3s;
}
span.header-instagram:hover {
	background-image: url(../images/instagram-gray.png);
}
.header-menu {
	background-color: #E8891C;
}
.header-menu_list {
	margin: 0;
	display: flex;
	justify-content: flex-end;
	height: 60px;
	align-items: center;

}
.header-menu_item {
	margin: 0px 15px 0px 15px;
}
a.header-menu_link {
	transition: .3s;
}
a.header-menu_link:hover {
	color: #3F3E3C;
}
.header-mobile {
	background-color: #E8891C;
	display: none;
}
.header-mobile_content {
	display: flex;
	align-items: center;
	overflow: hidden;
}
.header-mobile_logo img {
	max-width: 40px;
	width: 100%;
}
.header-mobile_contact {
	margin-left: 10px;
	transition: .3s;
}
.header-mobile_contact:hover {
	color: #3F3E3C; 
}
.header-mobile_social {
	display: flex;
	align-items: center;
	width: 50px;
	justify-content: space-between;
	margin-left: auto;
	margin-right: 30px;
}
.header__burger {
	display: block;
	position: relative;
	width: 30px;
	height: 20px;
	cursor: pointer;
	z-index: 3;
}
.header__burger span {
	background-color: #fff;
	position: absolute;
	width: 100%;
	height: 3px;
	left: 0;
	top: 9px;
	transition: all 0.3s ease 0s;
}
.header__burger:before,
.header__burger:after {
	content: '';
	background-color: #fff;
	position: absolute;
	width: 100%;
	height: 3px;
	left: 0;
	transition: all 0.3s ease 0s;
}
.header__burger:before {
	top: 0;
}
.header__burger:after {
	bottom: 0;
}
.header__burger.active span {
	transform: scale(0);
}
.header__burger.active:before {
	transform: rotate(45deg);
	top: 9px;
	transition: all 0.3s ease 0s;
}
.header__burger.active:after {
	transform: rotate(-45deg);
	bottom: 9px;
	transition: all 0.3s ease 0s;
}
.header-mobile_menu {
	position: absolute;
	top: 53px;
	right: 0;
	overflow: auto;
	height: calc(100% - 53px);
	width: 100%;
	max-width: 350px;
	display: flex;
	transform: translateX(100%);
	filter: blur(3px);
	transition: .5s;
	z-index: 2;
	background-color: #E8891C;
}
.header-mobile_menu.active {
	position: absolute;
	right: 0;
	top: 53px;
	overflow: auto;
	height: calc(100% - 53px);
	width: 100%;
	max-width: 350px;
	display: flex;
	transition: .5s;
	transform: translateX(0%);
	filter: blur(0px);
	z-index: 2;
}

.header-mobile_menu-list {
	background-color: #E8891C;
	margin: 0;
	width: 100%;
	max-width: 350px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

}
.header-mobile_menu-item {
	font-size: 18px;
	font-weight: bold;
	margin: 5px;
}
.header-mobile_menu-link {
	transition: .3s;
}
.header-mobile_menu-link:hover {
	color: #3F3E3C;
}
.mobile-menu-overlay {
	opacity: 0;
	transition: .7s;
}
.mobile-menu-overlay.active {
	position: fixed;
	width: 100%;
	background-color: rgba(0,0,0,0.7);
	display: block;
	height: 100%;
	z-index: 1;
	top: 53px;
	left: 0;
	opacity: 1;
}

.top-block {
	background-image: url(../images/green-bg.jpg);
	background-position: center;
	background-size: cover;
}
.top-slider {
	position: relative;
}
.top-slider_item {
	display: flex;
}
.top-slider_offer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 500px;
	color: #ffffff;
	padding: 150px 0px 150px 0px;
}
.top-slider_offer h1 {
	font-size: 48px;
	margin: 0;
}
.top-slider_offer p {
	font-size: 18px;
	margin: 70px 0px 40px 0px;
}
.top-slider_img {
	display: flex;
	justify-content: center;
	align-items: center;
}
.top-slider_img img {
	max-width: 700px;
	width: 100%;
}
.top-slider_offer-buttons {
	display: flex;
}
.top-slider-button {
	width: 220px;
	height: 40px;
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	margin: 0px 5px 0px 5px;
	transition: .3s;
	box-sizing: border-box;
}
.top-slider-button:hover, .top-slider-button:focus, .top-slider-button:active {
	background-color: #E8891C;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border: none;
}
/* Слайдер */
.slick-slider{}
/* Слайдер запущен */
.slick-slider.slick-initialized{}
/* Слайдер с точками */ 
.slick-slider.slick-dotted{}

/* Ограничивающая оболочка */
.slick-list {
	overflow: hidden;
} 
/* Лента слайдов */ 
.top-slider .slick-track{
	display: flex;
}

/* Слайд */ 
.slick-slide{
	position: relative;
} 
/* Слайд активный (показывается) */ 
.slick-slide.slick-active{} 
/* Слайд основной */ 
.slick-slide.slick-current{} 
/* Слайд по центру */ 
.slick-slide.slick-center{} 
/* Клонированный слайд */ 
.slick-slide.slick-cloned{}

/* Стрелка */ 
.slick-arrow{} 
/* Стрелка влево */ 
.slick-arrow.slick-prev{} 
/* Стрелка вправо */ 
.slick-arrow.slick-next{} 
/* Стрелка не активная */ 
.slick-arrow.slick-disabled{}

/* Точки (булиты) */ 
.top-slider .slick-dots{
	position: absolute;
	display: flex;
	margin: 0;
	bottom: 20px;
	left: calc(50% - 60px);
} 
/* Активная точка */ 
.slick-dots li.slick-active{} 
/* Элемент точки */ 
.top-slider .slick-dots li button{
	font-size: 0;
	height: 20px;
	border-radius: 50%;
	border: none;
	width: 20px;
	cursor: pointer;
	margin: 0px 10px 0px 10px;
	display: flex;
	justify-content: center;
	transition: .3s;
	box-sizing: border-box;
	border: 2px solid #FFFFFF;
	background-color: #FFFFFF;
} 
.top-slider .slick-dots li button:hover {
	border: 2px solid #E8891C;
}
.top-slider .slick-dots li.slick-active button {
	background-color: #E8891C;
}

#popup__overlay {
    position: fixed;
    opacity: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0, .9);
    pointer-events: none;
    transition: 200ms ease-in-out;
    z-index: 12;
}
#popup__overlay.active {
    opacity: 1;
    pointer-events: all;
}
.popup__modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border: none;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 10;
    background-color: white;
    max-width: 414px;
    min-width: 280px;
    width: 80%;
    padding: 40px 40px;
    transition: 200ms ease-in-out;
    z-index: 14;
}
.popup__modal.active {
    transform: translate(-50%, -50%) scale(1);
}
.popup__close-button {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 14;
    left: 95%;
    top: -5px;
    cursor: pointer;
}
.popup__close-button:hover.popup__close-button:before {
    width: 90%;
    background-color: #db0000;
}
.popup__close-button:hover.popup__close-button:after {
    width: 90%;
    background-color: #db0000;
}
.popup__close-button span {
    transform: scale(0);
    background-color: #32353E;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    top: 9px;
    z-index: 14;
}
.popup__close-button:before {
    transform: rotate(45deg);
    top: 9px;
    content: '';
    background-color: #32353E;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease 0s;
    z-index: 14;
}
.popup__close-button:after {
    transform: rotate(-45deg);
    bottom: 9px;
    content: '';
    background-color: #32353E;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease 0s;
    z-index: 14;
}
.popup-title {
	font-size: 18px;
	margin: 0;
}
.popup-form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 30px 0px 0px 0px;
}
.popup-input {
	background: #6DD299;
	color: #FFFFFF;
	border: none;
	font-size: 16px;
	max-width: 360px;
	width: 100%;
	height: 40px;
	font-family: 'Roboto', sans-serif;
	padding-left: 10px;
	margin: 5px;
}
.popup-btn {
	max-width: 220px;
	height: 40px;
	width: 100%;
	background-color: #E8891C;
	border: none;
	color: #ffffff;
	font-size: 16px;
	margin-top: 15px;
	font-family: 'Roboto', sans-serif;
	cursor: pointer;
	transition: .3s;
}
.popup-btn:hover {
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.popup-privacy {
	display: flex;
	align-items: flex-start;
	position: relative;
	margin-top: 30px;
}
.popup-privacy a {
	color: #E8891C;
	transition: .3s;
}
.popup-privacy a:hover {
	color: #6DD299;
}
.popup-privacy p {
	margin: 0px 0px 0px 30px;
}
.popup-privacy input {
	top: 2px;
	position: absolute;
}

.services-text {
	display: none;
}
.services-text.is-active {
	display: block;
}
.services-img {
	display: none;
}
.services-img.is-active {
	display: block;
}
.services-title {
	font-size: 36px;
	margin-bottom: 70px;
	margin-top: 100px;
}
.services-tabs_item {
	display: flex;
	justify-content: space-between;
}
.services-img {
	width: 555px;
}
.services-tabs_wrapper {
	margin-left: 50px;
}
.services-tabs_nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.services-tabs_nav-item {
	margin: 10px;
	transition: .1s;
	cursor: pointer;
	box-sizing: border-box;
}
.services-tabs_nav-item.is-active {
	border-bottom: 3px solid #6DD299;
	text-decoration-color: #6DD299;
}
.services-tabs_nav-item:hover {
	color: #6DD299;
}
.services-text {
	margin: 10px;
	line-height: 26px;
}
.why-we_block {
	margin-top: 100px;
	margin-bottom: 70px;
}
.why-we_title {
	font-size: 36px;
	margin-bottom: 70px;
}
.why-we_items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.why-we_item {
	display: flex;
	flex-direction: column;
	flex: 1 3 300px;
	align-items: center;
	text-align: center;
	margin: 20px;
	min-height: 240px;
}
.why-we_item-img {
	height: 100px;		
}
.why-we_item-title {
	font-size: 18px;
	min-height: 40px;
}
.price-block {
	width: 100%;
	background-color: #6DD299;
	margin-bottom: 100px;
}
.price-block p  {
	margin: 0;
	font-size: 18px;
}
.price-title {
	font-size: 36px;
	padding-top: 70px;
	margin-bottom: 70px;
}
.price-items {
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 70px;
}
.price-item {
	flex: 1 3 200px;
	padding: 30px;
	background-color: #FFFFFF;
	margin: 20px;
}
.price-item_title {
	margin-top: 0;
	margin-bottom: 20px;
	line-height: 28px;
}
.price-item_list {
	padding: 0;
}
.price-item_list-item {
	margin: 10px 10px 10px 0px;
	display: flex;
}
.price-item_list-item::before {
	display: block;
	border-radius: 50%;
	border: none;
	background-color: #E8891C;
	width: 16px;
	height: 16px;
	content: ' ';
	flex-shrink: 0;
	margin-right: 10px;
	margin-top: 3px;
}
.cta-title {
	font-size: 36px;
	margin-bottom: 50px;
}
.cta-content {
	display: flex;
	align-items: center;
	justify-content: center;
}
.cta-form {
	flex: 1 3 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.cta-input {
	max-width: 340px;
	width: 100%;
	height: 40px;
	color: #ffffff;
	background-color: #6DD299;
	border: none;
	padding-left: 10px;
	margin: 15px 0px 15px 0px; 
}
.cta-btn {
	height: 40px;
	width: 220px;
	background-color: #E8891C;
	border: none;
	color: #FFFFFF;
	margin-top: 15px;
	cursor: pointer;
	transition: .3s;
}
.cta-btn:hover {
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.cta-privacy {
	display: flex;
	max-width: 340px;
	align-items: flex-start;
	margin-top: 30px;
}
.cta-privacy a {
	color: #E8891C;
	transition: .3s;
}
.cta-privacy a:hover {
	color: #6DD299;
}
.cta-privacy p {
	margin: 0;
	margin-left: 10px;
}
.cta-img {
	flex: 1 3 300px;
	justify-content: center;
	display: flex;
}
.cta-img img {
	max-width: 450px;
	width: 100%;
}
.cta-block {
	margin-bottom: 100px;
}
.reviews-block {
	margin-bottom: 100px;
}
.reviews-title {
	font-size: 36px;
}
.reviews-subtitle {
	font-size: 18px;
}
.reviews-slider-item {
	margin: 20px;
	align-items: flex-start;
}
.reviews-slider-header {
	display: flex;

}
.reviews-slider-meta {
	margin-left: 15px;
}
.reviews-slider-meta p:nth-child(1) {
	margin: 0;
}
/* Лента слайдов */ 
.reviews-slider-block .slick-track{
	display: flex;
	min-width: 0px;
}
.reviews-slider-block {
	position: relative;
}
/* Слайд */ 
.reviews-slider-item .slick-slide{
	display: flex;
	flex-direction: column;
	min-width: 0px;	
} 
/* Точки (булиты) */ 
.reviews-slider-block .slick-dots{
	position: absolute;
	display: flex;
	margin: 0;
	bottom: -10px;
	left: calc(50% - 120px);
} 
/* Элемент точки */ 
.reviews-slider-block .slick-dots li button{
	font-size: 0;
	height: 20px;
	border-radius: 50%;
	border: none;
	width: 20px;
	cursor: pointer;
	margin: 0px 10px 0px 10px;
	display: flex;
	justify-content: center;
	transition: .3s;
	box-sizing: border-box;
	border: 2px solid #E8891C;
	background-color: #FFFFFF;
} 
.reviews-slider-block .slick-dots li button:hover {
	border: 2px solid #E8891C;
	background-color: #E8891C;
}
.reviews-slider-block .slick-dots li.slick-active button {
	background-color: #E8891C;
}
.portfolio-title {
	font-size: 36px;
}
.portfolio-nav {
	display: flex;
	width: 100%;
	justify-content: center;
}
.portfolio-nav_tab {
	margin: 20px;
	cursor: pointer;
	transition: .3s;
}
.portfolio-nav_tab:hover {
	color: #6DD299;
}
.portfolio-nav_tab.is-active {
	border-bottom: 3px solid #6DD299;
}
.portfolio-item {
	display: none;
}
.portfolio-item.is-active {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.portfolio-item a {
	flex: 1 3 280px;
	max-width: 350px;
	width: 100%;
	margin: 20px;
}
.portfolio-item img {
	max-width: 350px;
	width: 100%;
	height: 250px;
	object-fit: cover;
}
.contacts-block {
	margin-top: 100px;
	margin-bottom: 100px;			
}
.contacts-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.contacts-meta a {
	color: #E8891C;
	transition: .3s;
}
.contacts-meta a:hover {
	color: #6DD299;
}
.contacts-title {
	font-size: 36px;
	margin-bottom: 70px;
}
.contacts-social {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.contacts-whatsapp {
	width: 20px;
	height: 20px;
	display: block;
	background-image: url(../images/whatsapp-gray.png);
	content: ' ';
	background-position: center;
	background-size: cover;
}
.contacts-whatsapp:hover {
	background-image: url(../images/whatsapp-orange.png);
}
.contacts-instagram {
	width: 20px;
	height: 20px;
	display: block;
	background-image: url(../images/instagram-gray.png);
	content: ' ';
	background-position: center;
	background-size: cover;
	margin-left: 10px;
}
.contacts-instagram:hover {
	background-image: url(../images/instagram-orange.png);
}
.contacts-map {
	flex: 1 3 300px;
	width: 100%;
	margin-left: 50px;
}
.footer {
	background-color: #E8891C;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 10px;
	font-size: 13px;
	text-align: center;
	color: #FFFFFF;
}
.footer-links {
	display: flex;
	font-size: 13px;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 20px;
}
.footer-links a {
	transition: .3s;
}
.footer-links a:hover {
	color: #3F3E3C;
}
.ml {
	margin-left: 50px;
}
.reviews-slider-meta p {
	font-weight: bold;
}