@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&subset=cyrillic,cyrillic-ext');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i&subset=cyrillic,cyrillic-ext');

/*
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i,900,900i&subset=cyrillic');
@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700&subset=cyrillic');

font-family: 'Roboto', sans-serif;
font-family: 'Roboto Condensed', sans-serif;
font-family: 'Raleway', sans-serif;

darkgreen #004631;
lightgreen #00944a;
yellow #ffd426;
*/

* {
	outline: none!important;	

-webkit-transition: all ease-in-out .3s;			
   -moz-transition: all ease-in-out .3s;			
		transition: all ease-in-out .3s;	
}
html {
	position: relative;
	min-height: 100%;
}
body {
	-webkit-tap-highlight-color: transparent;	
	   -webkit-text-size-adjust: 100%;
}
body {
	width: 100%;
	margin-bottom: 220px;	
	background:#fff;
	font-family: 'Roboto', sans-serif;
	font-size:1em;
  	color: #575757;	
	line-height:1.5;
}
footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 220px;
}

::-moz-selection {
    text-shadow: none;
    background: #222;
	color:#eee;	
}
::selection {
    text-shadow: none;
    background: #222;
	color:#eee;	
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto Condensed', sans-serif;	
	margin:30px 0;
	font-weight:300;
}
a {
	color:#00944a;
	cursor:pointer;
}
a:hover,
a:focus,
a:active {
	color: #004631;	
}
a, 
a:hover, 
a:active,
a:focus{
	text-decoration: none;
}
img {
	max-width:100%;
    -webkit-user-select: none;
       -moz-user-select: none;
    	-ms-user-select: none;
     		user-select: none;	
}

ol,
ul {
	margin: 0;
	padding: 0;
}
.table {
	display: table;
	z-index: 99;
	position: absolute;
	width: 100%;
	height: 100%;
}
.table_cell {
	display: table-cell;
	vertical-align: middle;
}

/* Preloader */

#preloader {
	overflow: hidden;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999999999;
	background-color: rgba(0,148,74,0.8);
}


.apland-load {
	-webkit-animation: 2000ms linear 0s normal none infinite running apland-load;
	animation: 2000ms linear 0s normal none infinite running apland-load;
	background: transparent none repeat scroll 0 0;
	border-color: #fff #fff #ffd426;
	border-radius: 50%;
	border-style: solid;
	border-width: 3px;
	height: 50px;
	left: calc(50% - 25px);
	position: relative;
	top: calc(50% - 25px);
	width: 50px;
	z-index: 9;
}

@-webkit-keyframes apland-load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes apland-load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}


/* SCROLL UP */
#scrollUp {
	background-color: rgba(0,148,74,0.6);
	border-radius: 100%;
	bottom: 30px;
	box-shadow: 0 0 12px 0 rgba(0,0,0,0.2);
	color: #fff;
	font-size: 1.4em;
	height: 40px;
	right: 30px;
	text-align: center;
	width: 40px;
}
#scrollUp i {
	line-height: 40px;
}
#scrollUp:hover {
	background-color: rgba(0,148,74,0.9);
}
/* FOOTER */

footer {
	text-align:center;
	padding:50px 0;
	border-top: 1px solid #ddd;
}
footer ul{
	margin:10px 0;
}
footer ul li{
	display:inline-block;
	list-style:none;
	padding:0 10px;
}
footer .footer-menu li{
	text-transform:uppercase;
	border-right: 1px solid #ddd;
}

footer .footer-social li i {
	width:50px;
	height:50px;
	border-radius:100%;
	text-align:center;
	background:rgba(0,148,74,0.7);
	color:#fff;
	font-size:1.5em !important;
	line-height:2em !important;
}
footer .footer-social li:hover {
	-webkit-transform: translate(0, -5px);
			transform: translate(0, -5px);
}
footer .footer-social li:hover i {
	background:rgba(0,148,74,0.9);
}

/* HEADER */
header {
	height: auto;
	position: absolute;
	width: 100%;
	z-index: 99;
	background-color: transparent;
}
.logo_area {
	padding: 2px 0;
}
.logo_area img{
	width:80px;
}
.main_header_area {
	position: absolute;	
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9;
	background:rgba(0,0,0,0.4);
	border-bottom: 2px solid rgba(255,255,255,0.8);
	box-shadow: 0 0 20px 10px rgba(0,0,0,0.2);	
}
.main_header_area.sticky {
	position: fixed;
	width: 100%;
	z-index: 999 !important;	
	background-color: #f7f7f7;	
	box-shadow: 0 0 20px 10px rgba(0,0,0,0.2);
	-webkit-transition-duration: 500ms;
			transition-duration: 500ms;
}
.main_menu_area {
	position: relative;
	z-index: 1;
}
.mainmenu {
	display: inline-block;
	text-align: right;
}
.mainmenu ul#nav li {
	display: inline-block;
	position: relative;
	font-family: 'Roboto Condensed', sans-serif;
	font-size:1em;
	font-weight:500;
}

.mainmenu ul#nav li a {
	color: #fff;
	display: block;
	padding: 32px 10px;
	text-transform: uppercase;	
}
.mainmenu ul#nav li:hover a {
	background:#00944a;
}
.sticky .mainmenu ul#nav li a {
	color: #111;
}
.mainmenu ul#nav li ul {
	text-align: left;
}
.sticky .mainmenu ul#nav li.active a,
.sticky .mainmenu ul#nav li:hover a {
	background:#00944a;
	color:#f7f7f7;	
}
.mainmenu ul#nav li.active a,
.mainmenu ul#nav li:hover a {
	color: rgba(255,255,255,0.95);
}
.sticky .mainmenu ul#nav li a:hover,
.sticky .mainmenu ul#nav li.current_page_item a,
.mainmenu ul#nav li a:hover,
.mainmenu ul#nav li.current_page_item a{
	background:#00944a;
	color:#f7f7f7;
}
.mainmenu ul#nav > li > ul.sub-menu {
	position: absolute;	
	top: 85px;
	left: 0;
	width: 250px;
	text-align: left;	
	background: #fff;
	border-top: 5px solid #00944a;
	box-shadow: 0 0 12px 0 rgba(17,17,17,0.2);	
	
	visibility: hidden;		
	opacity: 0;	
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	z-index: 999;

	-webkit-transition-duration: 0.5s;
			transition-duration: 0.5s;

	-webkit-transform: translateY(15px);
		transform: translateY(15px);
}
.mainmenu ul#nav li ul.sub-menu {
	background:#fff;
}

.mainmenu ul#nav > li:hover > ul.sub-menu {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	visibility: visible;
	-webkit-transform: translateY(0px);
			transform: translateY(0px);
}
.mainmenu ul#nav > li ul.sub-menu li {
	border-bottom: 1px solid #ddd !important;
	display: block;
	position: relative;
}
.mainmenu ul#nav > li ul.sub-menu li:last-child {
	border-bottom: 0px solid #fff!important;
}

.mainmenu ul#nav > li ul.sub-menu li a {
	position: relative;	
	display: block;
	padding: 10px 15px;
	color: #474747;
	background:#f7f7f7;
}
.mainmenu ul#nav > li ul.sub-menu li a:hover {
	color: #333;
	background:#f0f0f0;
}
.sticky .mainmenu ul#nav > li ul.sub-menu li a {
	position: relative;	
	display: block;
	padding: 10px 15px;
	color: #474747;
	background:#f7f7f7;
}
.sticky .mainmenu ul#nav > li ul.sub-menu li a:hover {
	color: #333;
	background:#f0f0f0;
}
.header_signup_in_btn a {
	background-color: #00944a;
	color: #fff;
	padding: 0.5em 1.5em;
	border-radius: 30px;
}

/* INTRO */

.welcome_area {
	position: relative;
	z-index: 1;
	height: 100vh;
	background-color: #f7f7f7;
	overflow: hidden;
}
.welcome_box {
	position: relative;
	z-index: 9;
	height:100vh;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	text-align:center;
}

.welcome_box:before {
	position: absolute;
	z-index: 9;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	content: "";
	background: rgba(0,0,0,0.2);
}

.welcome_text_area h2 {
	color: #ffd426;
	font-size: 6em;
	margin-bottom: 30px;
	font-weight: 300;
	text-shadow: 2px 5px 5px #000;
	font-family:"Oswald", sans-serif;
}
.welcome_text_area h4 {
	font-family: 'Roboto Condensed', sans-serif;
	color: #f7f7f7;
	text-transform:uppercase;
	font-weight:700;
	letter-spacing:2px;
	text-shadow: 2px 10px 10px #000;	
}
.welcome_slider {
	overflow: hidden;
}



/*INFO ICON*/
.info-icon {
	position:absolute;
	top: 20%;
	left:0;
}
.phone_area,
.email_area,
.map_area {
	position:absolute;	
	background-color: #f7f7f7;
	border-radius: 20px;
	color: #474747;
	padding: 10px 15px;
	left: -180px;
	width: 180px;
	font-size:0.9em;
	z-index: 999;
	-webkit-transition-duration: 500ms;
			transition-duration: 500ms;
	box-shadow: 0 2px 4px rgba(0,0,0,0.15);
	text-align:right;
}
.phone_area {top:0;}
.email_area {top:100px;}
.map_area {top:200px;}

.phone_area.on,
.email_area.on,
.map_area.on {
	left: 20px;
}

.phone_area li,
.email_area li,
.map_area li{
	list-style:none;
}

.phone_switcher,
.email_switcher,
.map_switcher {
	cursor: pointer;
	width: 80px;	
	height:80px;
	right: -100px;
	position: absolute;
	text-align: center;
	top: 0;
}
/*INFO ICON*/
.info-mix {
	position:absolute;
	top: 20%;
	right:0;
}
.sidemenu_area {
	position:absolute;	
	background-color: #f7f7f7;
	border-radius: 20px;
	color: #474747;
	padding: 10px;
	right: -120px;
	top: 20%;
	width: 120px;
	z-index: 999;
	-webkit-transition-duration: 500ms;
			transition-duration: 500ms;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.sidemenu_area.on {
	right: 10px;
}
.sidemenu_switcher {
	cursor: pointer;
	width: 80px;	
	height:80px;
	left: -100px;
	position: absolute;
	text-align: center;
	top: 0;
	background:#f7f7f7;
	border:3px solid #004631;
	box-shadow: 0 0 0 5px #ffd426;
	border-radius:100%;
	padding:10px;
}
.sidemenu_inside {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}
.sidemenu_inside li {
	font-family: 'Roboto Condensed', sans-serif;	
	font-size:0.9em;
	border-bottom: 1px solid #ddd;
	text-transform:uppercase;
	padding:5px;
}
.sidemenu_inside li:hover {
	background:#f0f0f0;
	padding-left:10px;
}
.sidemenu_inside a {
}

.sidemenu_inside > a:hover {
	background-color: #00944a;
}

.sidemenu_inside:last-child > a {
	margin-bottom: 0;
}

.color_picker_switcher {
	background-color: #2c3e50;
	border-radius: 4px 0 0 4px;
	color: #fff;
	cursor: pointer;
	height: 50px;
	left: -50px;
	position: absolute;
	text-align: center;
	top: 0;
	width: 50px;
}

.sidemenu_switcher i,
.color_picker_switcher i {
	font-size: 24px;
	line-height: 50px;
	color: #fff;
}



	
@media only screen and (min-width:992px) and (max-width:1199px) {
    .welcome_text_area h2 {
        font-size: 5em
    }
    .welcome_text_area h3.price {
        font-size: 30px
    }
	
    .footer_social_area a {
        height: 35px;
        width: 35px
    }
    .footer_social_area a i {
        line-height: 35px
    }

}

@media only screen and (min-width:768px) and (max-width:991px) {
    .mainmenu ul#nav li a {
        padding: 33px 5px;
    }
    .welcome_text_area h2 {
        font-size: 4em
    }
    .welcome_text_area p {
        font-size: 17px
    }
    .welcome_text_area h3.price {
        font-size: 24px
    }

}

@media only screen and (min-width:320px) and (max-width:767px) {
    .main_header_area.sticky {
        display: none
    }

    .welcome_text_area h2 {
        font-size: 2.5em;
        margin-bottom: 15px
    }
    .welcome_text_area p {
        font-size: 16px;
    }
    .welcome_text_area a {
        margin-top: 5px
    }
    .default-version .welcome_area:after {
        background: transparent none repeat scroll 0 0
    }
    .welcome_text_area {
        text-align: center
    }
    .welcome_area_thumb {
        margin: 0 auto;
        padding-top: 30px;
        width: 200px
    }
	
	
    .footer_copywrite_area {
        display: block;
        padding: 30px 0 25px
    }
    .mean-container a.meanmenu-reveal span {
        background: #fff none repeat scroll 0 0
    }
    .meanmenu-reveal.meanclose {
        color: #00944a;
    }
    .mean-container .mean-nav ul li a.mean-expand {
        height: auto;
        padding: 5px 0
    }

    .single_slide .container {
        padding: 0
    }
    .single_gallery_item {
        width: 100%
    }

    .mobile_menu_on .main_header_area {
        display: block;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99999999
    }
    .wel_text .table {
        margin-top: 40px;
        position: relative
    }
    .video_area_text.section_padding_200 {
        padding: 100px 0
    }

    .color_picker_area {
        top: 30%;
    }

    .main_header_area {
       /* height: 70px;*/
    }
    .mean-container .mean-nav {
        top: 70px;
    }
    .logo_area {
/*        padding: 18px 0;*/
    }
    .mean-container a.meanmenu-reveal {
        padding: 24px 20px;
    }
    .mean-container .mean-nav ul li a {
        font-size: 1em;
        padding: 13px 5%;
    }
    .mean-container .mean-nav ul li a .la-angle-down{
		display:none;
    }	
	
    .mean-container .mean-nav ul li li a {
        font-size: 85%;
        padding: 5px 10%;
    }
    .mean-container .mean-nav ul li a.mean-expand {
        font-size: 30px !important;
        height: 50px;
        padding: 0;
    }

    .header_signup_in_btn {
        padding: 23px 60px 0 0;
    }

}

@media only screen and (min-width:480px) and (max-width:575px) {
    .container {
        width: 450px;
    }
    .small_thumb {
        width: 150px;
    }
    .welcome_text_area h2 {
        font-size: 2.5em;
    }
    body.boxed_version {
        margin: 0 auto;
        width: 450px;
    }
    body.boxed_version header {
        width: 450px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .welcome_text_area h2 {
        font-size: 3em;
    }

}	



/*CUSTOM ICON*/




/* MICROACTIVE */

.microactive {
	background: url(../images/bg_microactive.jpg);
	color:#eee;
	padding:80px 0;
}
.microactive hr {
  margin:0;
  border: 0;
  border-top: 5px solid #ffd426;
}	
.microactive h1{
	color:#ffd426;
}
.microactive h2{
	font-size: 36px;
	color: #e9e0d7;
	font-weight: 400;
	border-bottom: 2px solid #ffd426;
	padding-bottom: 9px;
}
.microactive a {
  color: #e9e0d7;
}
.microactive a:hover {
  color: #ffd426;
}
.microactive .block-center {
	text-align:center;
	margin-top:80px;
}
.microactive .block-center img{
	margin-bottom:20px;
}
.microactive .category-plants {
  width: 350px;
  float: right;
  /*margin-right: 35px;*/
}


.microactive .category-plants .item {
  width: 175px;
  float: left;
  height: 175px;
  position: relative;
  padding: 17px;
}
.microactive .category-plants .item:nth-child(1):after {
  content: "";
  height: 1px;
  width: 145px;
  background: #5f5954;
  position: absolute;
  bottom: 0px;
  left: 15px;
}
.microactive .category-plants .item:nth-child(1):before {
  content: "";
  height: 145px;
  width: 1px;
  background: #5f5954;
  position: absolute;
  right: 0px;
  top: 15px;
}
.microactive .category-plants .item:nth-child(4):after {
  content: "";
  height: 1px;
  width: 145px;
  background: #5f5954;
  position: absolute;
  top: 0px;
  right: 15px;
}
.microactive .category-plants .item:nth-child(4):before {
  content: "";
  height: 145px;
  width: 1px;
  background: #5f5954;
  position: absolute;
  left: 0px;
  top: 15px;
}
.microactive .category-plants .item img {
  display: block;
  width: 100%;
  height: auto;
  transition: 0.3s;
  padding: 20px;
}
.microactive .category-plants .item .svg {
  fill: #ffffff;
  display: block;
  width: 100%;
  height: auto;
  transition: 0.3s;
  padding: 20px;
  animation-timing-function: ease;
  animation-name: zooming;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
.microactive .category-plants .item .name {
  width: 100%;
  position: absolute;
  bottom: 15px;
  left: 0px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  transition: 0.3s;
}
.microactive .category-plants .item .mask {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(27,23,20,0);
  padding-top: 30px;
  display: block;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  color: #ffd426;
  text-align: center;
  opacity: 0;
  transition: 0.3s;
}
.microactive .category-plants .item .mask i{
	font-size:4em;
}
.microactive .category-plants .item .mask .more {
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0px;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  display: block;
  font-size: 14px;
}
.microactive .category-plants .item .mask .more i {
  margin-left: 5px;
}
.microactive .category-plants .item:hover .svg,
.microactive .category-plants .item:hover .name {
  opacity: 0.4;
}
.microactive .category-plants .item:hover .mask {
  opacity: 1;
}
.microactive .catalog-info {
  margin-top: 34px;
  width: calc(100% - 70px);
  float: right;
}
.microactive .catalog-info h3 {
  font-size: 1.4em;
  color: #e9e0d7;
  font-weight: 400;
  border-bottom: 2px solid #ffd426;
  padding-bottom: 9px;
  text-align: right;
}
.microactive .catalog-info h1 {
  font-size: 2.3em;
  color: #ffd426;
  font-weight: 300;
  margin-top: 10px;
  text-align: right;
  margin-bottom: 23px;
}
.microactive .catalog-info h1 a {
  color: #ffd426;
}
.microactive .catalog-info h1 a strong {
  font-weight: 600;
}
.microactive .catalog-info .readmore {
  float: right;
  color: #e9e0d7;
}
.microactive .catalog-info .readmore i {
  margin-left: 5px;
}
.microactive .catalog-info .readmore:hover {
  color: #ffd426;
}

@media only screen and (max-width:991px) {
	.microactive .category-plants {
	  float: none;
	  margin-right: 0;
	}	
.microactive .catalog-info {
  float: left;
}	
.microactive .catalog-info h3,
.microactive .catalog-info h1 {
  text-align: left;
}
.microactive .block-center {
	display:none;
}
}