body, h1, h2, h3, h4, h5, h6, p, ul{
	margin: 0;
	padding: 0;
    font-weight: normal;
    font-style: normal;
	font-family: "Roboto", "Helvetica", "Verdana", "Roboto", sans-serif;
}
body{
	word-break: break-word;
	color: rgb(27, 27, 28);
}
*{
	box-sizing: border-box;
}
a{
	color: inherit;
	text-decoration: none;
	display: block;
}


.container{
	width: 1150px;
	margin-right: auto;
	margin-left: auto;
}
.flex-block{
	display: flex;
}
.flex-between{
	display: flex;
	justify-content: space-between;
}
.flex-center{
	display: flex;
	justify-content: center;
}
.flex-vertical-center{
	display: flex;
	align-items: center;
}

.swiper-container{
	position: relative;
	overflow-x: hidden;
}

header{
	padding-top: 27px;
	color: white;
	z-index: 10;
	position: relative;
	z-index: 20;
}
header.active{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
.logo{
	width: 183px;
	height: 131px;
}
.footer_logo{
	width: 168px;
	height: 120px;
}
.footer_logo img, .logo img{
	width: 100%;
	height: 100%;
}

.menu_container .menu{
	margin-right: 20px;
}
.menu ul li{
	list-style-type: none;
	font-size: 16px;
	margin: 0 12px 2px;
	font-weight: 400;
}

.menu_icon, .mobile_menu_container .menu_icon{
	margin: 3px 9px 0;
}
.menu_icons{
	margin-right: 5px;
}
.menu_icon:last-child, .mobile_menu_container .menu_icon:last-child{
	margin-right: 0;
}
.menu_icon img, .mobile_menu_container .menu_icon img{
	width: 24px;
    transition: all .3s cubic-bezier(.21,.67,.58,1);
}


.toggle{
    position: absolute;
    z-index: 960;
    top: 50%;
    transform: translateY(-50%);  
    right: 20px;
    width: 35px;   
    height: 28px;
    cursor: pointer;
    display: none;
}
.toggle li{
    position: absolute;
    left: 5%;
    transform: translateY(-50%);
    height: 2px;
    width: 90%;
    list-style: none;
    background: white;
    transition: .9s;
}
.toggle li:nth-of-type(1){
    top: 20%;
}
.toggle li:nth-of-type(2){
    top: 50%;
}
.toggle li:nth-of-type(3){
    top: 80%;
}
.toggle.active li:nth-of-type(1){
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.toggle.active li:nth-of-type(2){
    left: -100%;
    opacity: 0;
}
.toggle.active li:nth-of-type(3){
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}


.mobile_menu_container{
	display: none;
	position: fixed;
	width: 100%;
	height: calc(100vh - 60px);
	background-color: #1b1b1c;
	top: 60px;
	left: 0;
	z-index: 990;
}
.mobile_menu_container.active{
	display: block;
}
.mobile_menu_container .menu, .mobile_menu_container .menu_icons{
	display: block;
}
.mobile_menu_container .menu ul{
	display: block;
	margin-top: 10px;
}
.mobile_menu_container .menu ul li{
	font-size: 20px;
	padding: 16px 0;
	line-height: 26px;
}
.mobile_menu_container .container{
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: space-between;
	padding-left: 15px;
	padding-right: 15px;
}
.mobile_menu_container .menu_icons{
	display: flex;
	margin-bottom: 18px;
}


.modal_container{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 900;
	display: none;
}
.modal_container .curtain{
	background-color: rgba(0, 0, 0, 0.8);
}
.modal_window{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}
.close_btn{
	position: absolute;
	top: 15px;
	right: 15px;
	color: #777;
	width: 28px;
    height: 28px;
    cursor: pointer;
}
.close_btn:after, .close_btn:before{
	display: block;
    content: "";
    width: 2px;
    height: 1.3em;
    background: #777;
    position: absolute;
    left: 50%;
    right: 0;
    top: 50%;
}
.close_btn:before{
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.close_btn:after{
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

#modal_window1 .modal_window{
	width: 400px;
	border-radius: 5px;
	background-color: white;
}

.modal_product_img{
	height: 240px;
}
.modal_product_img img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.modal_window_desc_block{
	background-color: #38a817;
	padding: 10px 40px 150px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	color: white;
}
.modal_window_title{
	font-size: 22px;
	font-weight: 700;
}
.modal_window_desc p{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 23px;
}
.modal_window_back_btn{
	width: 88px;
	height: 46px;
	line-height: 46px;
	border-radius: 23px;
	background-color: black;
	text-align: center;
	font-weight: 500;
	cursor: pointer;
	font-size: 15px;
	position: absolute;
	bottom: 50px;
	left: 40px;
	color: white;
}
.modal_window_back_btn:hover{
	background-color: #2f2f2f;
}


#modal_window2 .modal_window{
	width: 400px;
	background-color: white;
	border-radius: 5px;
	padding: 50px 40px;
}
#modal_window2 h4{
	font-size: 22px;
	font-weight: 700;
	text-align: center;
}
#modal_window2 form{
	margin-top: 30px;
}
#modal_window2 form label p{
	font-size: 15px;
	font-weight: 500;
	padding-bottom: 10px;
}
#modal_window2 form input{
	width: 100%;
	border-radius: 4px;
	display: block;
	outline: none;
	font-size: 15px;
}
#modal_window2 form input[type="text"], #modal_window2 form input[type="tel"], #modal_window2 form input[type="email"]{
	padding: 0 15px;
	height: 44px;
	line-height: 44px;
	border: 1px solid rgba(27,27,28,.15);
	transition: all .3s cubic-bezier(.21,.67,.58,1);
	color: #1b1b1c;
	margin-top: 10px;
}
#modal_window2 form input[type="text"]:hover, #modal_window2 form input[type="tel"]:hover, #modal_window2 form input[type="email"]:hover{
	border: 1px solid rgba(27,27,28,.3);
}
#modal_window2 form input[type="submit"]{
	height: 46px;
	line-height: 40px;
	background-color: #1b1b1c;
	color: white;
	cursor: pointer;
	text-align: center;
	margin-top: 30px;
	font-weight: 500;
}
#modal_window2 form input[type="submit"]:hover{
	background-color: #434344;
}


.page_cover{
	position: relative;
	width: 100%;
	height: 100vh;
	background-image: url("../images/page_cover.jpg");
	background-repeat: no-repeat;	
	background-position: 48.01% 55.1%;
	background-size: cover;
}
.curtain{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.45);
}


.starting_block{
	text-align: center;
	color: white;
	margin-top: 270px;
	position: relative;
	z-index: 10;
}
.starting_block_title{
	font-size: 100px;
	line-height: 1.2;
	font-weight: 700;
}
.starting_block_desc{
	font-size: 22px;
	font-weight: 400;
	line-height: 1.37;
	margin-top: 20px;
}
.starting_block_btn{
	width: 245px;
	height: 56px;
	line-height: 56px;
	font-size: 17px;
	background-color: white;
	color: rgb(27, 27, 28);
	font-weight: 500;
	cursor: pointer;
	margin-left: auto;
	margin-right: auto;
	border-radius: 28px;
	margin-top: 50px;
}


.block_title{
	text-align: center;
	font-size: 48px;
	line-height: 1.2;
	font-weight: 700;
}
.block_desc{
	font-size: 22px;
	font-weight: 400;
	line-height: 1.37;
	text-align: center;
	margin-top: 20px;
}

.products_block{
	margin-top: 80px;
}
.products_container{
	margin-top: 60px;
	display: inline-grid;
	justify-content: space-between;
  	grid-template-columns: calc(33% - 30px) calc(33% - 30px) calc(33% - 30px);
  	grid-template-rows: auto; 
}
.product{
	margin-bottom: 55px;
}
.product_hidden{
	display: none;
}
.product_img{
	width: 350px;
	height: 350px;
}
.product_img img{
	max-width: 100%;
	max-height: 100%;
}
.product_title{
	font-size: 22px;
	font-weight: 700;
	line-height: 1.37;
	margin-top: 15px;
}
.product_desc{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 15px;
	padding-right: 6px;
}
.product_btn{
	margin-top: 20px;
	width: 130px;
	height: 46px;
	line-height: 46px;
	text-align: center;
	color: white;
	background-color: #38a817;
	border-radius: 4px;
	transition: all .2s ease;
	font-weight: 500;
	font-size: 15px;
	cursor: pointer;
}
.product_btn:hover{
	background-color: #59ad40;
}


.video_block{
	margin-top: 25px;
	background-image: url("../images/video_block.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 80px;
	padding-bottom: 70px;
	color: white;
	position: relative;
}
.video_block>.container{
	z-index: 10;
	position: relative;
}
.video_container{
	display: none;
}
.video_container iframe{
	width: 100%;
	height: 100%;
}

.swiper-slide{
	margin-top: 50px;
	height: 355px;
	cursor: pointer;
}
.video_curtain, .video_container{
	width: 100%;
	height: 100%;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.play-icon{
	width: 88px;
	height: 88px;
	border-radius: 50%;
	border: 2px solid #fff;
	background-color: rgba(27, 27, 28, 0.2);
	position: absolute;
	top: 50%;
	left: 50%;
	transition: all .3s cubic-bezier(.21,.67,.58,1);
	cursor: pointer;
	transform: translate(-50%, -50%);
}
.swiper-slide:hover .play-icon{
	width: 95px;
	height: 95px;
}
.play-icon img{
	width: 28px;
	height: 30px;
}
.preloader {
	display: none;
    width: 28px;
    height: 28px;
}
.preloader .icon{
	display: block;
    position: absolute;
    width: 28px;
    height: 28px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.preloader .icon .circular-loader {
    fill: none;
    stroke: currentColor;
    stroke-width: 6px;
    transform-origin: center center;
}
.preloader .icon .circular-loader .loader-path {
    stroke-dasharray: 150,200;
    stroke-dashoffset: -10;
    stroke-linecap: round;
    animation: circular-loader 1.5s ease-in-out infinite reverse;
    stroke-width: 3;
}

.swiper-button-prev, .swiper-button-next{
	transform: translateY(-50%);
	top: calc(50% + 90px);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: white;
}
.swiper-button-prev svg, .swiper-button-next svg{
	width: 20px;
	height: 20px;
}
.swiper-button-next svg{
	transform: rotate(180deg);
}
.swiper-button-prev:after, .swiper-button-next:after{
	content: none;
}
.swiper-button-prev{
	left: -70px;
}
.swiper-button-next{
	right: -70px;
}
.swiper-pagination{
	margin-left: auto;
	margin-right: auto;
	position: relative;
	margin-top: 25px;
}
.swiper-pagination-bullet{
	background-color: white;
	opacity: 0.25;
	width: 10px;
	height: 10px;
	margin: 0 5px;
}
.swiper-pagination-bullet-active{
	opacity: 1;
}


.form_block{
	background-color: #f9fafb;
	padding-top: 110px;
	padding-bottom: 100px;
}
.form_block .block_title{
	font-size: 36px;
	width: 920px;
	margin-left: auto;
	margin-right: auto;
}
.form_block form{
	background-color: white;
	padding: 30px 100px 50px;
	align-items: flex-end;
	box-shadow: 0 15px 15px rgba(0,0,0,0.07);
	border-radius: 10px;
	margin-top: 50px;
	position: relative;
	flex-wrap: wrap;
}
.form_block form.invalid input[type="submit"]{
	margin-bottom: 18px;
}
.form_block form label{
	width: 250px;
}
.form_block form label{
	font-size: 15px;
	font-weight: 500;
	margin-right: 10px;
}
.form_block form input{
	outline: none;
	height: 46px;
	line-height: 46px;
	border-radius: 5px;
	transition: all .3s ease;
	border: none;
}
.form_block form input[type="text"], .form_block form input[type="tel"], .form_block form input[type="email"]{
	width: 100%;
	padding: 0 15px;
	background-color: rgba(27,27,28,.1);
	margin-top: 10px;
}
.form_block form input[type="text"]:focus, .form_block form input[type="tel"]:focus, .form_block form input[type="email"]:focus{
	background-color: rgba(27,27,28,.15);
}
.form_block form input[type="submit"]{
	width: 170px;
	background-color: #38a817;
	color: white;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
}
.form_block form input[type="submit"]:hover{
	background-color: #59ad40;
}
.form_block form>p{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.wpcf7 .ajax-loader{
	position: absolute;
	right: 20px;
}


.about_us_block{
	padding-top: 80px;
	padding-bottom: 100px;
}
.about_us_block .about_us_img{
	height: 345px;
	margin-top: 60px;
	margin-bottom: 45px;
}
.about_us_block .about_us_img img{
	object-fit: cover;
	object-position: 0 0;
	width: 100%;
	height: 100%;
}
.about_us_block p{
	margin-bottom: 30px;
}


.contacts_block{
	padding-bottom: 75px;
}
.contacts_cont, .map_cont{
	width: 550px;
}
.contacts_cont .block_title, .contacts_cont .block_desc{
	text-align: left;
}
.contacts_cont .block_title{
	font-size: 40px;
}
.contacts_info_block{
	margin-top: 40px;
}
.contacts_info{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	padding: 20px 0;
	border-bottom: 1px solid rgba(27, 27, 28, 0.1);
}
.contacts_info:first-child{
	border-top: 1px solid rgba(27, 27, 28, 0.1);
}

.contacts_icons{
	margin: 36px 0 32px;
}
.contacts_icon{
	margin-right: 18.5px;
}

.contacts_btn{
	width: 148px;
	height: 46px;
	line-height: 46px;
	color: white;
	background-color: black;
	text-align: center;
	border-radius: 23px;
	font-weight: 500;
	font-size: 15px;
	transition: all .2s;
	cursor: pointer;
	margin-top: 45px;
}
.contacts_btn:hover{
	background-color: #2f2f2f;
}
.map_cont{
	height: 550px;
}
.map_cont iframe{
	width: 100%;
	height: 100%;
}


footer{
	padding-top: 25px;
	padding-bottom: 100px;
	background-color: rgb(27, 27, 28);
	color: white;
}
.footer_icon .social-icon{
	fill: white;
}

.footer_menu ul li{
	list-style-type: none;
	padding: 6px 12px;
	font-size: 16px;
}
.footer_menu ul li a{
	padding-bottom: 3px;
	width: fit-content;
	position: relative;
}
.footer_menu ul li:hover a:after{
	content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: white;
    opacity: .35;
    transform: translateX(-2px);
    z-index: 2;
    pointer-events: none;
    transition: all .3s cubic-bezier(.21,.67,.58,1);
}

.footer_contact{
	padding: 10px 0 25px;
}
.footer_contact img{
	width: 26px;
	height: 26px;
	margin-right: 15px;
}
.footer_contact h6{
	font-weight: 700;
	font-size: 16px;
}
.footer_contact p{
	font-size: 14px;
	margin-top: 5px;
}

.contacts_icon img, .footer_icons img{
	width: 24px;
	height: 24px;
}

.footer_icon{
	margin-left: 18.5px;
	margin-top: 16px;
}

@keyframes animationScaleBg {
    0% {
        opacity: .8;
        transform: scale(1.02)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes animationSlideUp {
    0% {
        opacity: 0;
        transform: translateY(15px)
    }
    50% {
        opacity: 1
    }
    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes circular-loader{
	0% {
	    stroke-dasharray: 1,200;
	    stroke-dashoffset: 0;
	}
	50% {
	    stroke-dasharray: 89,200;
	    stroke-dashoffset: -35;
	}
	100% {
	    stroke-dasharray: 89,200;
	    stroke-dashoffset: -124;
	}
}