/* mixin */


/* base colors */


/* animate classes */

.delay-s {
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
}

.delay-sl {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}


/* general style */

body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 14px;
	color: #2f2f2f;
	background-color: #fff;
	font-family: 'Proxima Nova', sans-serif;
}

button,
*[type="button"] {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

button:focus,
input:focus,
textarea:focus,
.btn:focus {
	outline: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
}

ul {
	list-style-type: none;
	margin-bottom: 0;
	padding-left: 0;
}

a {
	color: #2f2f2f;
}

.owl-nav.disabled,
.owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-stage-outer {
	margin-bottom: 0;
}

section {
	position: relative;
	z-index: 100;
	background-color: #fff;
}


/* whatsapp mobile */

.fixed-nums {
	position: fixed;
	bottom: 0;
	z-index: 999;
	display: none;
	width: 100%;
}

.fixed-nums .wp {
	height: 56px;
	text-align: center;
	background-color: #64b261;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	cursor: pointer;
}

.fixed-nums .wp a {
	color: #fff;
	padding: 18px 5px;
	display: block;
	height: 100%;
}

.fixed-nums .wp a i {
	margin-right: 10px;
}


/* header */

header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: transparent;
	padding: 16.5px 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-bottom: 1px solid transparent;
}

header .navbar-brand {
	height: 64px;
	color: #fff;
}

header .navbar-brand img {
	height: 100%;
	filter: grayscale(100) brightness(100);
}

header .nav-item {
	margin-right: 14px;
}

header .nav-item .nav-link {
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	padding: 10px 16px !important;
	-webkit-transition: all linear .2s;
	-moz-transition: all linear .2s;
	-o-transition: all linear .2s;
	transition: all linear .2s;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
}

header .nav-item .nav-link:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

header .order-btn {
	color: #394d2d;
	border: 1px solid #fff;
	background: #fff;
	font-size: 15px;
	font-weight: 700;
	-webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
	padding: 10px 23px;
	-webkit-transition: all 0.06s;
	-moz-transition: all 0.06s;
	-o-transition: all 0.06s;
	transition: all 0.06s;
	margin: 0 16px;
}

header .order-btn:hover {
	background-color: #fff;
	color: #2a7d2e;
}

header .lang-wrapper {
	margin-left: 16px;
	display: inline-block;
	font-weight: 700;
	position: relative;
}

header .lang-wrapper span {
	cursor: pointer;
	-webkit-transition: color 0.06s;
	-moz-transition: color 0.06s;
	-o-transition: color 0.06s;
	transition: color 0.06s;
	color: #fff;
}

header .lang-wrapper span svg {
	width: 10px;
	height: 7px;
	margin-left: 4px;
}

header .lang-wrapper span svg .dropdown__icon {
	fill: none;
	stroke: #fff;
	stroke-width: 1.5px;
}

header .lang-wrapper .other-langs {
	display: none;
	position: absolute;
	right: -20px;
	width: auto;
	z-index: 2;
	min-width: 110px;
	margin-top: 25px;
	padding: 18px 24px;
	background-color: #fff;
	border: 1px solid #d6e0ee;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0px 10px 20px -5px #24243b26;
	-moz-box-shadow: 0px 10px 20px -5px #24243b26;
	-o-box-shadow: 0px 10px 20px -5px #24243b26;
	box-shadow: 0px 10px 20px -5px #24243b26;
}

header .lang-wrapper .other-langs::before, 
header .lang-wrapper .other-langs::after {
	content: '';
	position: absolute;
    right: 30px;
    border: 10px solid transparent;
    border-bottom: 15px solid #d6e0ee;
    -webkit-transform: scaleX(1.5);
	-moz-transform: scaleX(1.5);
	-o-transform: scaleX(1.5);
	transform: scaleX(1.5);
}

header .lang-wrapper .other-langs::before {
	top: -25px;
}

header .lang-wrapper .other-langs::after {
	border-bottom-color: #fff;
    top: -24px;
}

header .lang-wrapper .other-langs a {
	color: #6c7c93;
	line-height: 2.2;
}

header .lang-wrapper .other-langs a:hover {
	color: #24243b;
}

header .menu-wrap {
    width: 25px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    -webkit-transition: transform 300ms ease-out;
    -moz-transition: transform 300ms ease-out;
    -o-transition: transform 300ms ease-out;
    transition: transform 300ms ease-out;
    padding: 5px 0;
}

header .menu-wrap .line-menu {
    background-color: #fff;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    width: 100%;
    height: 2px;
}

header .menu-wrap .line-menu:nth-child(3) {
    width: 50%;
    margin-left: auto;
}

header #myMenu li:last-child {
    display: none;
}

header.sticky {
	position: fixed;
	background-color: #fff;
	border-bottom: 1px solid #d6e0ee;
}

header.sticky .navbar-brand img {
	filter: none;
}

header.sticky .nav-item .nav-link,
header.sticky .lang-wrapper span {
	color: #2f2f2f;
}

header.sticky .order-btn {
	border-color: #2a7d2e;
	background-color: #2a7d2e;
	color:white;
}

header.sticky .lang-wrapper span svg .dropdown__icon {
	stroke: #2a7d2e;
}

header.sticky .nav-item .nav-link:hover,
header.sticky .nav-item.active .nav-link {
	opacity: 0.8;
}

header.sticky .order-btn:hover {
	border-color: #2d8631;
	background-color: #2d8631;
	color: #fff;
}

header.sticky .menu-wrap .line-menu {
    background-color: #2a7d2e;
}

header .close-m {
    display: none;
}


/* main section style */

#main {
	position: relative;
	height: 760px;
}

#main #slider {
	position: relative;
	height: 760px;
}

#main #slider::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.55);
}

#main #slider .carousel-item {
	width: 100%;
	height: 760px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: 0% 50%;
	background-size: cover;
}

#main #slider .carousel-item .container {
	height: 100%;
	position: relative;
}

#main #slider .carousel-item .container .carousel-caption {
	text-align: left;
	z-index: 1;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 15px;
	bottom: auto;
	width: 50%;
}

#main #slider .carousel-item .container .carousel-caption h1 {
	font-size: 46px;
	font-weight: 800;
    line-height: 42px;
    margin-bottom: 45px;
}

#main #slider .carousel-item .container .carousel-caption p {
	font-size: 15px;
	margin: 15px 0 0;
}

#main #slider .navs-slider .container,
#main #slider .indicators-slider .container {
	position: relative;
}

#main #slider .navs-slider .container .carousel-control-prev,
#main #slider .navs-slider .container .carousel-control-next {
	width: auto;
	height: 40px;
	bottom: 10px;
	top: auto;
}

#main #slider .navs-slider .container .carousel-control-prev .carousel-control-prev-icon,
#main #slider .navs-slider .container .carousel-control-prev .carousel-control-next-icon,
#main #slider .navs-slider .container .carousel-control-next .carousel-control-prev-icon,
#main #slider .navs-slider .container .carousel-control-next .carousel-control-next-icon {
	background-color: transparent;
}

#main #slider .navs-slider .container .carousel-control-prev .carousel-control-prev-icon,
#main #slider .navs-slider .container .carousel-control-next .carousel-control-prev-icon {
	background: url("../img/left-arrow.png") no-repeat;
}

#main #slider .navs-slider .container .carousel-control-prev .carousel-control-next-icon,
#main #slider .navs-slider .container .carousel-control-next .carousel-control-next-icon {
	background: url("../img/right-arrow.png") no-repeat;
}

#main #slider .navs-slider .container .carousel-control-prev {
	right: 64px;
	left: auto;
}

#main #slider .navs-slider .container .carousel-control-next {
    right:10px !important;
}

#main #slider .carousel-indicators {
    right: auto;
    margin: 0 0 15px;
}

#main #slider .carousel-indicators .active {
    background-color: #2a7d2e;
}

#main #slider  .carousel-indicators li {
    width: 14px;
    height: 14px;
}


/* advantages section style */
#advantages .advantage-box {
	padding: 60px 10px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	width: 24%;
}

#advantages .advantage-box .duration-wrap {
	margin: 10px;
	color: #2a7d2e;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

#advantages .advantage-box .duration-wrap .number {
	font-weight: 500;
	font-size: 65px;
  line-height: 1.1;
}

#advantages .advantage-box .duration-wrap .text {
	font-size: 34px;
	margin-top: 10px;
	text-transform: uppercase;
  	line-height: 0.8;
  	font-family: 'Kaushan Script', cursive;
}

#advantages .advantage-box h3 {
	margin: 10px;
	font-size: 22px;
	color: #0b3d2c;
	width: 100%;
}

#advantages .advantage-box p {
	font-size: 16px;
	margin-bottom: 16px;
}

#advantages .plant-wrapper {
	width: 14%;
}

#advantages .plant-wrapper div {
	background-repeat: no-repeat;
	background-position: center bottom;
	width: 100%;
	height: 100%;
}

#advantages .plant-wrapper div.plant-left {
	background-image: url("../img/plants-left.svg");
}

#advantages .plant-wrapper div.plant-right {
	background-image: url("../img/plants-right.svg");
}


/* production section style */
#production {
    background-color: #fafafa;
    padding: 80px 0;
}

#production .img-wrap {
    height: 280px;
    width: 80%;
    margin: 0 auto;
}

#production .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

#production .production-info {
  width: 80%;
}

#production .production-info span {
  font-size: 14px;
  opacity: .5;
  line-height: 1.42;
  margin-bottom: 8px;
  color: #000;
}

#production .production-info h2 {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 24px;
}

#production .production-info p {
  color: #818181;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

#production .production-info .more-btn {
  padding: 16px 36px 14px;
  color: white;
  line-height: 1.15;
  background-color: #2a7d2e;
  -webkit-border-radius: 31px;
  -moz-border-radius: 31px;
  -o-border-radius: 31px;
  border-radius: 31px;
  font-weight: 700;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#production .production-info .more-btn:hover {
    background-color: #0b3d2c;
} 


/* products section style */ 
#products {
  padding-bottom: 80px;
  background-color: #fafafa;
}

#products .title-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 19px;
}

#products .title-row h2 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
}

#products .title-row .see-btn {
  margin-bottom: 10px;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.38;
  color: #818181;
  -webkit-transition: all linear .2s;
  -moz-transition: all linear .2s;
  -o-transition: all linear .2s;
  transition: all linear .2s;
}

#products .title-row .see-btn:hover {
  color: #2a7d2e;
}

.product-row {
  margin: 0 -6px;
  -ms-flex-pack: center;
  justify-content: center;
}

.product-box {
  margin: 6px;
  width: calc(16.6667% - 12px);
  height: 210px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  -webkit-box-shadow: 0 1px 8px 0 rgb(0 0 0 / 3%);
  -moz-box-shadow: 0 1px 8px 0 rgb(0 0 0 / 3%);
  -o-box-shadow: 0 1px 8px 0 rgb(0 0 0 / 3%);
  box-shadow: 0 1px 8px 0 rgb(0 0 0 / 3%);
  position: relative;
  overflow: hidden;
  -webkit-transition: 300ms all ease;
  -moz-transition: 300ms all ease;
  -o-transition: 300ms all ease;
  transition: 300ms all ease;
}

.product-box a {
  display: block;
  height: 100%;
  padding: 16px 16px 0;
  position: relative;
}

.product-box a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #79a52d;
	opacity: .8;
	z-index: 1;
	-webkit-transition: 300ms all ease;
    -moz-transition: 300ms all ease;
    -o-transition: 300ms all ease;
    transition: 300ms all ease;
  }

.product-box .logo-box {
  width: 42px;
  height: 42px;
  overflow: hidden;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 300ms all ease;
  -moz-transition: 300ms all ease;
  -o-transition: 300ms all ease;
  transition: 300ms all ease;
}

.product-box .logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100) brightness(100);
}

.product-box .product-img {
  position: absolute;
  right: -40%;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.product-box h6 {
  position: absolute;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.38;
  color: #fff;
  margin: auto 0 32px;
  width: 80%;
  bottom: 16px;
  z-index: 2;
  -webkit-transition: 300ms all ease;
  -moz-transition: 300ms all ease;
  -o-transition: 300ms all ease;
  transition: 300ms all ease;
}

.product-box:hover a::after {
    background-color: white;
}

.product-box:hover .logo-box {
   background-color: #79a52d;
}

.product-box:hover h6 {
    color: #79a52d;
}


/* about-plant section style */
#about-plant {
	background-color: #fafafa;
	padding-top: 80px;
	position: relative;
}

.background {
	background-color: #f2f2f2;
	width: 100%;
	height: 350px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#about-plant .about-wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
}

#about-plant .about-wrap .images-wrap {
	position: relative;
	width: 60%;
	padding-top: 47%;
}

#about-plant .about-wrap .images-wrap .img-box {
	position: absolute;
}

#about-plant .about-wrap .images-wrap .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#about-plant .about-wrap .images-wrap .img-box:nth-child(1) {
    top: 7.16%;
    left: 0;
    width: 22.39%;
	z-index: 2;
	height: 170px;
}

#about-plant .about-wrap .images-wrap .img-box:nth-child(2) {
	top: 0;
    left: 16.53%;
    width: 50.5%;
	height: 450px;
}

#about-plant .about-wrap .images-wrap .img-box:nth-child(3) {
	right: 0;
    bottom: 0;
    width: 40.36%;
	height: 310px;
}

#about-plant .about-wrap .about-info {
	width: 40%;
	padding-left: 7.81%;
	display: -ms-flexbox;
    display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
  	justify-content: center;
	z-index: 2;
}

#about-plant .about-wrap .about-info span {
	font-size: 14px;
    display: block;
    margin-bottom: 5px;
    padding-bottom: 10px;
}

#about-plant .about-wrap .about-info h2 {
	font-size: 33px;
    font-weight: 300;
}

#about-plant .about-wrap .about-info p {
	font-size: 17px;
	margin-bottom: 20px;
	padding-right: 20px;
	line-height: 140%;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

#about-plant .about-wrap .about-info .see-more {
	font-size: 17px;
	height: 50px;
    padding: 5px 0;
	width: max-content;
}

#about-plant .about-wrap .about-info .see-more img {
	margin-left: 10px;
	height: 24px;
	-webkit-transition: all ease .5s;
	-moz-transition: all ease .5s;
	-o-transition: all ease .5s;
	transition: all ease .5s;
}

#about-plant .about-wrap .about-info .see-more:hover img {
	margin-left: 16px;
}


/* references section style */ 
#references {
	background-color: #fafafa;
	height: 420px;
	padding-top: 50px;
}

#references .ref-title {
	width: 40%;
}

#references h1 {
	line-height: 71px;
    font-weight: 800;
	font-size: 55px;
}

#references p {
	padding-top: 49px;
	margin-bottom: 0;
    width: 90%;
    font-size: 24px;
    line-height: 1.66;
    font-weight: 300;
}

#references .references-wrapper {
	position: absolute;
	width: 60%;
	height: 700px;
	top: -100px;
    right: 0;
	overflow: hidden;
}

#references .references-wrap {
	width: 100%;
	position: relative;
	right: -100px;
}

#references .references-wrap .ref-line {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
    border: 1px solid #e0e0e0;
    position: absolute;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#references .references-wrap .ref-line:nth-child(1) {
	top: 0;
    left: 295px;
	width: 1098px;
	height: 1097px;
}

#references .references-wrap .ref-line:nth-child(2) {
	top: 110px;
    left: 417px;
	width: 854px;
	height: 853px;
}

#references .references-wrap .ref-line:nth-child(3) {
	top: 220px;
    left: 511px;
	width: 666px;
	height: 663px;
}

#references .references-wrap .ref-line:nth-child(4) {
	top: 315px;
    left: 586px;
	width: 516px;
	height: 513px;
}

#references .references-wrap .ref-line:nth-child(5) {
	top: 384px;
    left: 671px;
	width: 346px;
	height: 343px;
}

#references .references-wrap .ref-line:nth-child(6) {
	top: 460px;
    left: 748px;
	width: 192px;
	height: 191px;
}

#references .references-wrap .ref-line.hover {
	opacity: .2;
}

#references .boxes-wrapper {
	position: absolute;
	top: -100px;
	right: 0;
    width: 60%;
}

#references .boxes-wrap {
	width: 100%;
	position: relative;
}

#references .boxes-wrap .ref-box {
	font-size: 16px;
    line-height: 1.5;
    font-weight: 800;
	color: #fff;
	display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
	cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	text-align: center;
	padding: 5px;
}

#references .boxes-wrap:hover .ref-box {
	opacity: .2;
}

#references .boxes-wrap .ref-box:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
	opacity: 1;
}

#references .boxes-wrap .ref-box:nth-child(5) {
	background-color: #44b676;
    width: 130px;
    height: 130px;
    top: 380px;
    left: 870px;
}

#references .boxes-wrap .ref-box:nth-child(4) {
	background-color: #4fbaec;
	width: 85px;
    height: 85px;
    top: 225px;
    left: 420px;
}

#references .boxes-wrap .ref-box:nth-child(3) {
	background-color: #faa367;
	width: 109px;
    height: 110px;
	top: 350px;
    left: 680px;
}

#references .boxes-wrap .ref-box:nth-child(2) {
	background-color: #ffd531;
	width: 85px;
    height: 85px;
	top: 170px;
    left: 925px;
}

#references .boxes-wrap .ref-box:nth-child(1) {
	background-color: #f0665f;
	width: 109px;
    height: 110px;
	top: 100px;
    left: 670px;
}




/* order section style */
#order {
	padding: 65px 0;
	background: url('../img/order-background.jpeg') no-repeat;
	background-size: cover;
	background-position: center;
	text-align: center;
	margin-bottom: 464px;
	position: relative;
	z-index: 100;
}

#order::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
}

#order h4 {
	font-size: 26px;
	font-weight: 400;
	line-height: 38px;
	letter-spacing: 1px;
	color: #fff;
	margin-bottom: 0;
	position: relative;
	z-index: 1;
}

#order .order-btn {
	margin: 50px auto 0 auto;
	padding: 17px 36px 13px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: #2a7d2e;
	position: relative;
	z-index: 1;
}

#order .order-btn:hover {
	background-color: #206023;
}


/* order modal style */

.modal {
    z-index: 10010;
}

.modal-dialog {
    width: 500px;
}

.modal-content {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    padding-top: 40px;
    position: relative;
}

.modal-header {
    padding: 0 60px 20px 60px;
    border: none;
}

.modal-content .close {
    display: block;
    height: 20px;
    opacity: .5;
    position: absolute;
    right: 40px;
    top: 38px;
    width: 20px;
    z-index: 100;
    padding: 0;
    outline: transparent;
}

.modal-content .close::before {
    left: 0;
    height: 2px;
    margin-top: -1px;
    top: 50%;
    width: 100%;
}

.modal-content .close::before, 
.modal-content .close::after {
    content: '';
    display: block;
    position: absolute;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    background-color: #282828;
}

.modal-content .close::after {
    left: 50%;
    height: 100%;
    margin-left: -1px;
    top: 0;
    width: 2px;
}

.modal-body {
    padding: 0 60px 60px;
}


/* footer style */
footer {
	background-color: #252525;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 99;
	width: 100%;
}

footer .section-top {
	padding: 70px 0 20px;
}

footer .section-top h6 {
	font-size: 17px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 0;
}

footer .section-top .footer-list ul {
	margin-top: 30px;
}

footer .section-top .footer-list ul li {
	padding-bottom: 12px;
}

footer .section-top .footer-list ul li a,
footer .section-top .footer-list ul li span {
	line-height: 22px;
	font-size: 15px;
	color: #999999;
	font-weight: 400;
	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}

footer .section-top .footer-list ul li a:hover,
footer .section-top .footer-list ul li span:hover {
	color: #fff;
}

footer .section-top .social-medias-wrapper {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: end;
	align-items: flex-end;
	-ms-flex-direction: column;
	flex-direction: column;
}

footer .section-top .social-medias-wrapper .social-medias h6 {
	text-transform: uppercase;
}

footer .section-top .social-medias-wrapper .social-medias ul {
	margin-top: 30px;
	height: 40px;
}

footer .section-top .social-medias-wrapper .social-medias ul li {
	float: left;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 40px;
	height: 40px;
	background-color: #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	position: relative;
	will-change: transform;
}

footer .section-top .social-medias-wrapper .social-medias ul li:not(:last-child) {
	margin-right: 10px;
}

footer .section-top .social-medias-wrapper .social-medias ul li a {
	display: block;
	height: 100%;
}

footer .section-top .social-medias-wrapper .social-medias ul li a i {
	font-size: 14px;
	color: #000;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

footer .section-top .social-medias-wrapper .social-medias ul li:hover {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

footer .section-bottom {
	padding: 55px 0;
}

footer .section-bottom .footer-brand {
	height: 50px;
}

footer .section-bottom .footer-brand img {
	filter: grayscale(100) brightness(100);
	object-fit: contain;
    height: 100%;
}

footer .section-bottom p {
	margin-bottom: 0;
	font-size: 14px;
}

footer .section-bottom p.copyright {
	color: #fff;
	font-weight: 600;
}

footer .section-bottom p.created {
	color: #999999;
	font-weight: 400;
}

footer .section-bottom p.created a {
	margin-left: 5px;
}


/* form style */

.form .effect {
    width: 100%;
    border: 2px solid #e6ecf2;
    padding: 12px 20px;
    margin: 0 0 16px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    font-size: 14px;
    -webkit-appearance: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
}

.form input.effect {
    height: 50px;
}

.form .effect:focus {
    border-color: #2a7d2e;
}

.form .submit-btn {
    background-color: #2a7d2e;
    color: #fff;
    border-radius: 4px;
    height: 50px;
    line-height: 50px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding: 0 26px;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
}

.form .submit-btn:focus,
.form .submit-btn:hover {
    background-color: #085f0c;
}


/* inside pages */

.masha_index {
    display: none;
}

#dle-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

#sendmail {
    width: 100%;
}

.product-row #dle-content {
    -ms-flex-pack: center;
    justify-content: center;
}

.inside-pages {
    margin-top: 92px; 
    width: 100%;
}

.inside-pages .title-page {
    background-size: cover;
    background-repeat: no-repeat;
    height: 260px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.inside-pages .title-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
}

.inside-pages .title-page h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.inside-pages .page-content {
    padding: 60px 0;
}

.inside-pages .page-content .content-all {
    color: #2f2f2f;
    font-size: 16px;
}

.inside-pages .page-content .content-all h4 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 700;
}

.inside-pages .page-content .content-all ul li {
    padding-left: 35px;
    margin: 10px 0;
    font-size: 18px;
}

.inside-pages .page-content .content-all ul li::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url('../img/plant.svg') no-repeat;
    background-size: 16px;
    display: inline-block;
    margin: 0 7px -2px 0;
}

.inside-pages .full-content img {
    width: 40%;
    margin: 0 auto;
}

.inside-pages #references {
    height: 580px;
    padding: 60px 0 0;
}

.inside-pages #references .references-wrapper,
.inside-pages #references .boxes-wrapper {
    top: auto;
}

.inside-pages #references .references-wrap {
    right: 0;
}

.inside-pages #references .boxes-wrapper {
    right: 100px;
}

.inside-pages .contact-content .submit-btn {
    width: 25%;
    float: right;
}

.inside-pages .contact-content .contact-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.inside-pages .contact-content .contact-box .img-box {
    height: 40px;
    margin-right: 28px;
    opacity: .7;
}

.inside-pages .contact-content .contact-box .img-box img {
    height: 100%;
}

.inside-pages .contact-content .contact-box a, 
.inside-pages .contact-content .contact-box address {
    color: #000;
    display: block;
    font-size: 16px;
}

.inside-pages .contact-content .contact-box address {
    margin-bottom: 0;
}

.inside-pages .contact-content .content-all {
    margin-top: 50px;
}

#map {
    width: 100%;
    height: 350px;
}


/* breadcrumb */

.breadcrumb {
    background-color: #fff;
    -webkit-box-shadow: 0 1px 4rem rgb(0 0 0 / 16%);
    -moz-box-shadow: 0 1px 4rem rgb(0 0 0 / 16%);
    -o-box-shadow: 0 1px 4rem rgb(0 0 0 / 16%);
    box-shadow: 0 1px 4rem rgb(0 0 0 / 16%);
    margin: 0;
    padding: 0;
}

.breadcrumb .breadcrumb-list {
    margin: 0 -10px;
}

.breadcrumb .breadcrumb-list li {
    float: left;
    height: 64px;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 2px solid transparent;
}

.breadcrumb .breadcrumb-list li a,
.breadcrumb .breadcrumb-list li span {
    -ms-flex-item-align: center;
    align-self: center;
    line-height: 1;
    font-size: 12px;
    padding: 0 10px;
    text-transform: uppercase;
}

.breadcrumb .breadcrumb-list li a {
    color: #2f2f2f;
}

.breadcrumb .breadcrumb-list li a:hover,
.breadcrumb .breadcrumb-list li span {
    color: #2a7d2e;
}

.breadcrumb .breadcrumb-list li.active {
    border-color: #2a7d2e;
    font-weight: 700;
    margin-left: 15px;
}



@media screen and (max-width: 1750px) {
    #references .references-wrapper,
    #references .boxes-wrapper {
        width: 78%;
    }
}


@media screen and (min-width: 1199.98px) and (max-width: 1300px) {
    #references.main-p-ref .references-wrapper,
    #references.main-p-ref .boxes-wrapper {
        width: 88%;
    }
}


@media screen and (max-width: 1199.98px) {
    .product-box {
        width: calc(20% - 12px);
    }
    
    .inside-pages .contact-content .contact-box .img-box {
        margin-right: 15px;
    }
    
    .inside-pages .contact-content .contact-box a, 
    .inside-pages .contact-content .contact-box address {
        font-size: 12px;
    }
    
    #references .references-wrapper, 
    #references .boxes-wrapper {
        width: 95%;
    }
    
    #references.main-p-ref .references-wrapper, 
    #references.main-p-ref .boxes-wrapper {
        width: 120%;
        top: 240px;
    }
    
    #references.main-p-ref {
        height: 760px;
    }
    
    #advantages .advantage-box .duration-wrap .number {
        font-size: 50px;
    }
    
    #advantages .advantage-box .duration-wrap .text {
        font-size: 26px;
    }
    
    #production .img-wrap,
    #production .production-info {
        width: 100%;
    }
    
    #about-plant .about-wrap .images-wrap {
        padding-top: 60%;
    }
    
    #about-plant .about-wrap .about-info {
        padding-left: 4.81%;
    }
    
    header .nav-item {
        margin-right: 0;
    }
    
    header .nav-item .nav-link {
        padding: 10px !important;
    }
}


@media screen and (max-width: 990.98px) {
	.fixed-nums {
		display: block;
	}
	
	footer {
	    bottom: 56px;
	}
	
	footer .section-top .social-medias-wrapper {
	    -ms-flex-align: start;
        align-items: flex-start;
	}
	
	footer .section-top .social-medias-wrapper .social-medias {
	    margin-top: 30px;
	}
	
	#order {
        margin-bottom: 630px;
    }
	
	.product-box {
        width: calc(25% - 12px);
    }
    
    .inside-pages .contact-content .contact-box {
        margin: 15px 0;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    .inside-pages .contact-content .contact-box a, 
    .inside-pages .contact-content .contact-box address {
        width: 155px;
    }
    
    .inside-pages #references {
        height: 760px;
    }
    
    #references .ref-title {
        width: 100%;
    }
    
    .inside-pages #references .references-wrapper, 
    .inside-pages #references .boxes-wrapper {
         top: 50%;
    }
    
    #references .references-wrapper, 
    #references .boxes-wrapper {
        width: 120%;
    }
    
    #references.main-p-ref {
        margin-top: -100px;
    }
    
    #advantages .plant-wrapper {
        display: none;
    }
    
    #advantages .advantage-box {
        width: 33.33%;
    }
    
    #production .production-info h2 {
        font-size: 30px;
    }
    
    #production .production-info p {
        -webkit-line-clamp: 4;
        margin-bottom: 24px;
    }
    
    #products {
        padding-bottom: 160px;
    }
    
    #about-plant {
        padding-top: 200px;
    }
    
    #about-plant .about-wrap {
        display: block;
        height: 400px;
        position: relative;
    }
    
    #about-plant .about-wrap .images-wrap {
        position: absolute;
        padding-top: 47%;
        top: -70%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    
    #about-plant .about-wrap .images-wrap .img-box:nth-child(1) {
        width: 22%;
        height: 110px;
    }
    
    #about-plant .about-wrap .images-wrap .img-box:nth-child(2) {
        height: 250px;
    }
    
    #about-plant .about-wrap .images-wrap .img-box:nth-child(3) {
        width: 40%;
        height: 200px;
    }
    
    #about-plant .about-wrap .about-info {
        padding-left: 0;
        width: 60%;
        margin: 20px auto;
    }
    
    header .navbar {
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    
    header .navbar-brand {
        margin-right: auto;
    }
    
    header .lang-wrapper,
    header .order-btn {
        margin-right: 15px;
        margin-left: 0;
    }
    
    header #myMenu li:last-child {
        display: list-item;
        text-align: center;
        margin-top: 30px;
    }
    
    header .desktop-btn {
        display: none;
    }
    
    header #myMenu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, .7);
        z-index: 9999999999;
        overflow-y: hidden;
    }
    
    header #myMenu .navbar-nav {
        width: 60%;
        height: 100%;
        background-color: #2a7d2e;
        position: absolute;
        top: 0;
        right: -100%;
        overflow-y: scroll;
        padding: 15% 0;
    }
    
    header .navbar #myMenu .nav-item .nav-link {
        font-size: 20px;
        width: 100%;
        padding: 30px !important;
        text-align: center;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        color: #fff;
    }
    
    header .nav-item .nav-link:hover,
    header.sticky .nav-item .nav-link:hover {
        background-color: transparent;
        opacity: 1;
    }
    
    header .nav-item.active .nav-link,
    header.sticky .nav-item.active .nav-link,
    header .nav-item.active .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        opacity: 1;
    }
    
    header .order-btn,
    header.sticky .order-btn {
        margin-right: 0;
        width: 70%;
        padding: 15px;
        border-color: #fff;
        background-color: #fff;
        margin-top: 30px;
        color: #2a7d2e;
        font-size: 18px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        -o-border-radius: 6px;
        border-radius: 6px;
    }
    
    header.sticky .order-btn:hover {
        border-color: #fff;
        background-color: #fff;
        color: #2a7d2e;
    }
    
    header .close-m {
        display: list-item;
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: rgba(255, 255, 255, 0.1);
        padding: 5px 10px;
        cursor: pointer;
    }
    
    header .close-m img {
        width: 16px;
    }
}


@media screen and (max-width: 850px) {
    #references.main-p-ref .references-wrapper, 
    #references.main-p-ref .boxes-wrapper {
        width: 140%;
    }
}


@media screen and (max-width: 767.98px) {
    .inside-pages .contact-content .contact-box {
        justify-content: left;
    }
    .inside-pages .contact-content .contact-box a, .inside-pages .contact-content .contact-box address {
        width: 100%;
        font-size: 18px;
    }
    .inside-pages .title-page {
        height: 200px;
    }
    
    .inside-pages .title-page h2 {
        font-size: 40px;
    }
    
    .product-box {
        width: calc(33.33% - 12px);
    }
    
    .inside-pages .full-content img {
        width: 50%;
    }
    
    .inside-pages #references {
        height: 600px;
    }
    
    #references p {
        width: 100%;
    }
    
    #references .references-wrapper {
        display: none;
    }
    
    #references .boxes-wrapper {
        max-width: 540px;
        height: 400px;
        margin: 0 -15px;
        padding: 0 15px;
        right: auto !important;
    }
    
    #references .boxes-wrap {
        height: 100%;
    }
    
    #references .boxes-wrap .ref-box:nth-child(1) {
        top: 105px;
        left: 160px;
        width: 100px;
        height: 100px;
    }
    
    #references .boxes-wrap .ref-box:nth-child(2) {
        top: 240px;
        left: 70px;
        width: 75px;
        height: 75px;
    }
    
    #references .boxes-wrap .ref-box:nth-child(3) {
        top: 270px;
        left: 260px;
        width: 100px;
        height: 100px;
    }
    
    #references .boxes-wrap .ref-box:nth-child(4) {
        top: 90px;
        left: 0;
        width: 75px;
        height: 75px;
    }
    
    #references .boxes-wrap .ref-box:nth-child(5) {
        top: 110px;
        right: 0;
        left: auto;
        width: 120px;
        height: 120px;
    }
    
    footer .section-bottom {
        padding: 30px 0;
    }
    
    footer .section-bottom p.created {
        margin-top: 30px;
    }
    
    #order {
        margin-bottom: 600px;
    }
    
    #advantages {
        padding: 15px 0;
    }
    
    #advantages .advantage-box {
        width: 100%;
        padding: 15px;
    } 
    
    #production {
        padding: 50px 0;
    }
    
    #production .production-info {
        padding-top: 30px;
    }
    
    #about-plant .about-wrap .images-wrap {
        width: 90%;
    }
    
    #about-plant .about-wrap .images-wrap .img-box:nth-child(3) {
        right: 20px;
        bottom: 15px;
        width: 34%;
        height: 180px;
    }
    
    header #myMenu .navbar-nav {
        width: 80%;
        padding: 80px 0;
    }
    
    #main, #main #slider,
    #main #slider .carousel-item {
        height: 650px;
    }
    
    #main #slider .carousel-item .container .carousel-caption {
        width: calc(100% - 30px);
        left: auto;
        right: auto;
    }
    
    #main #slider .carousel-item .container .carousel-caption h1 {
        font-size: 40px; 
    }
    
    #references.main-p-ref {
        height: 700px;
    }
    
    #references.main-p-ref h1 {
        font-size: 40px;
        line-height: 50px;
    }
    
    #references.main-p-ref p {
        padding-top: 30px;
    }
    
    #references.main-p-ref .boxes-wrap .ref-box:nth-child(1) {
        top: 155px;
    }
    
    #references.main-p-ref .boxes-wrap .ref-box:nth-child(4) {
        top: 40px;
    }
}


@media screen and (max-width: 575.98px) {
    .inside-pages .page-content .content-all h4 {
        font-size: 22px;
    }

    .inside-pages .page-content .content-all ul li {
        padding-left: 20px;
    }
    
    .product-box {
        width: calc(50% - 12px);
    }
    
    .inside-pages .full-content img {
        width: 70%;
    }
    
    .inside-pages .contact-content .submit-btn {
        width: 40%;
    }
    
    #map {
        height: 300px;
    }
    
    #references .boxes-wrapper {
        max-width: 100%;
    }
    
    .modal-dialog {
        width: 90%;
        margin: 0 auto;
    }
    
    .modal-body {
        padding: 0 20px 20px;
    }
    
    .modal-title {
        font-size: 18px;
    }
    
    .modal-header {
        padding: 10px 60px;
        margin: 0 auto;
    }
    
    footer .section-top {
        padding: 40px 15px 15px;
    }
    
    footer .section-top .footer-list ul {
        margin-top: 20px;
    }
    
    footer .section-top .footer-list .col-sm-6:last-child ul {
        margin-top: 0;
    }
    
    footer .section-bottom {
        padding: 15px 15px 30px;
    }
    
    #order {
        margin-bottom: 620px;
        padding: 40px 0;
    }
    
    #order h4 {
        font-size: 20px;
    }
    
    #order .order-btn {
        margin: 30px auto 0 auto;
        padding: 17px 20px 13px;
        font-size: 14px;
    }
    
    #products {
        padding-bottom: 100px;
    }
    
    #products .title-row {
        display: block;
    }
    
    #production .img-wrap {
        height: 210px;
    }
    
    #about-plant .about-wrap {
        height: 340px;
    }
    
    #about-plant .about-wrap .images-wrap {
        padding-top: 250px;
    }
    
    #about-plant .about-wrap .images-wrap .img-box:nth-child(1) {
        width: 102px;
        height: 110px;
    }
    
    #about-plant .about-wrap .images-wrap .img-box:nth-child(2) {
        height: 200px;    
        width: 209px;
        left: 90px;
    }
    
    #about-plant .about-wrap .images-wrap .img-box:nth-child(3) {
        width: 160px;
        height: 160px;
    }
    
    #about-plant .about-wrap .about-info {
        width: 100%;
    }
    
    #about-plant .about-wrap .about-info p {
        padding-right: 0;
    }
    
    header .navbar #myMenu .nav-item .nav-link {
        font-size: 18px;
    }
    
    header .order-btn, header.sticky .order-btn {
        padding: 15px;
    }
    
    #main, #main #slider,
    #main #slider .carousel-item {
        height: 500px;
    }
    
    #main #slider .carousel-item .container .carousel-caption h1 {
        font-size: 36px;
        margin-bottom: 25px;
    }
}



@media screen and (max-width: 500px) {
    #references p {
        font-size: 22px;
    }
    
    #references .boxes-wrap .ref-box:nth-child(1) {
        left: 110px;
    }
    
    #references .boxes-wrap .ref-box:nth-child(2) {
        left: 30px;
    }
    
    #references .boxes-wrap .ref-box:nth-child(3) {
        left: 170px;
    }
    
    footer .section-bottom p.copyright {
        width: 100%;
    }
    
    footer .section-bottom p.copyright,
    footer .section-bottom p.created {
        margin-top: 20px;
    }
    
    #order {
        margin-bottom: 640px;
    }
}


@media screen and (max-width: 400px) {
    .breadcrumb .breadcrumb-list li {
        float: none;
        height: 40px;
    }
    
    .breadcrumb .breadcrumb-list li.active {
        margin-left: 0;
    }
    
    .inside-pages .contact-content .submit-btn {
        width: 50%;
    }
    
    #references p {
        font-size: 18px;
    }
    
    #references .boxes-wrap .ref-box:nth-child(1) {
        left: 85px;
    }
    
    footer .section-top .col-lg-10,
    footer .section-top .col-lg-2 {
        max-width: 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
    
    footer .section-top .col-4 {
        width: 100%;
        max-width: 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    
    footer .section-top .col-8 {
        display: none;
    }
    
    footer .section-top .social-medias-wrapper .social-medias {
        margin-top: 0; 
    }
    
    #order {
        margin-bottom: 464px;
    }
    
    #about-plant .about-wrap .images-wrap {
        width: 100%;
    }
    
    #about-plant .about-wrap .images-wrap .img-box:nth-child(2) {
        width: 150px;
    }
    
    #about-plant .about-wrap .images-wrap .img-box:nth-child(3) {
        width: 35%;
        height: 110px;
        bottom: 0;
    }
    
    #main #slider .carousel-item .container .carousel-caption h1 {
        font-size: 30px;
        line-height: 35px;
    }
    
    #main #slider .carousel-item .container .carousel-caption p {
        font-size: 13px;
    }
}


@media screen and (max-width: 360px) {
    .product-box {
        width: 100%;
        margin: 6px 0;
    }
    
    #references .boxes-wrap .ref-box:nth-child(1) {
        top: 180px;
        left: 30px;
    }
    
    #references .boxes-wrap .ref-box:nth-child(2) {
        top: 320px;
    }
}




