/* ------------------------------------------------------------- *
 * Fonts
/* ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap');
@font-face {
    font-family: 'Bahnschrift';
    src: url('../fonts/Bahnschrift/Bahnschrift.eot');
    src: url('../fonts/Bahnschrift/Bahnschrift.eot?') format('embedded-opentype'),
        url('../fonts/Bahnschrift/Bahnschrift.woff2') format('woff2'),
        url('../fonts/Bahnschrift/Bahnschrift.woff') format('woff'),
        url('../fonts/Bahnschrift/Bahnschrift.ttf') format('truetype'),
        url('../fonts/Bahnschrift/Bahnschrift.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin Regular.ttf');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin Benzin Medium.ttf');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin Benzin Semibold.ttf');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin Bold.ttf');
    font-weight: 700;
    font-style: normal;
}
/* ------------------------------------------------------------- *
 * Global variables
/* ------------------------------------------------------------- */

:root {
	--main-bg-color: #fff;
	--main-color: #163A2E;
	--light-green: #86B23F;
	--grey-bg: #EEEEEE;
	--text-color-dark: #3C3C3C;
}


/* ------------------------------------------------------------- *
 * General
/* ------------------------------------------------------------- */

* { box-sizing: border-box; }

html, body {
	padding: 0;
	margin: 0;
}

body {
	position: relative;
	margin: 0;
	background-color: var(--main-bg-color);
	line-height: 1.6;
	font-size: 16px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	color: #FFF;
	overflow-x: hidden;
}

p {
	font-family: 'Montserrat';
	font-size: 16px;
	margin: 0 0 20px;
	font-weight: 400;
	line-height: 1.4;
}

a {
	color: currentColor;
	text-decoration: none;
	outline: none
}
a:hover, a:focus {
	color: currentColor;
}
p a { 
	color: currentColor;
	opacity: .8;
	font-style: italic;
	border-bottom: 1px solid;
}
p a:hover,
p a:focus { 
	color: currentColor;
	opacity: .6;
}

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

b, strong {
	font-weight: bold;
	font-weight: 700;
}

section { 
	position: relative; 
}

button {}
button:focus { 
	outline: none; 
}

.small, small {
	font-size: 80%;
}

hr {
	width: 100%;
	height: 0;
	border: none;
	border-bottom: 1px solid rgb(144 144 144 / 30%);
}

.anim-image-parallax {
	transform: scale(1.2);
	transform-origin: 50% 100%;
}

/* Selection */
::selection {
	color: #fff;
	text-shadow: none;
	background: var(--main-color);
}
::-moz-selection {
	color: #fff;
	text-shadow: none;
	background: var(--main-color); /* Firefox */
}
::-webkit-selection {
	color: #fff;
	text-shadow: none;
	background: var(--main-color); /* Safari */
}

/* Lists */
.list-unstyled {
	padding-left: 0;
	list-style: none;
}

.list-inline {
	padding-left: 0;
	margin-left: -5px;
	list-style: none;
}
.list-inline > li {
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
}

.list-style-1 {
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

/*.list-style-1 li {
	-webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}*/
.list-style-1 li {
	margin-right: 20px;
	margin-bottom: 10px;
}
.list-style-1 li:last-child {
	margin-bottom: 0;
}
.list-style-1 li img {
	width: 15px;
	margin-right: 5px;
}

/* Disable scroll */
.no-scroll {
	overflow-y: hidden !important;
}


/* ------------------------------------------------------------- *
 * Fonts
/* ------------------------------------------------------------- */

/* Body font
============= */
body {
	font-family: 'Benzin', sans-serif;
}

/* ------------------------------------------------------------- *
 * Body inner
/* ------------------------------------------------------------- */

#body-inner {
	position: relative;
	overflow: hidden;
	height: 100%;
	min-height: 100vh;
}


/* ------------------------------------------------------------- *
 * Content wrap
/* ------------------------------------------------------------- */

#content-wrap {
	position: relative;
	overflow: hidden;
}


/* ------------------------------------------------------------- *
 * Page content
/* ------------------------------------------------------------- */

#page-content {
}


/* ------------------------------------------------------------- *
 * Section
/* ------------------------------------------------------------- */

.section {
	position: relative;
	padding: 90px 0;
}
@media (max-width: 991px) {
	.section {
		padding: 10% 0;
	}
}
@media (max-width: 768px) {
	.section {
		padding: 10% 0;
	}
}
@media (max-width: 480px) {
	.section {
		padding: 15% 0;
	}
}


/* section background image 
=============================== */
.section-image {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	overflow: hidden;
}


/* section inner 
==================== */
.section-inner {
	position: relative;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	z-index: 2;
}


/* ------------------------------------------------------------- *
 * Headings
/* ------------------------------------------------------------- */

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	font-weight: 700;
	color: var(--main-color);
}
.h1, .h2, .h3, h1, h2, h3 {
	line-height: 1.4;
	margin-top: 0px;
	margin-bottom: 30px;
	text-transform: uppercase;
}
.h4, .h5, .h6, h4, h5, h6 {
	line-height: 1.4;
	margin-top: 10px;
	margin-bottom: 30px;
}

.h1, h1 { font-size: 65px; }
.h2, h2 { font-size: 50px; }
.h3, h3 { font-size: 40px; }
.h4, h4 { font-size: 32px; }
.h5, h5 { font-size: 24px; }
.h6, h6 { font-size: 22px; }

.h1 span, .h2 span, .h3 span, h1 span, h2 span, h3 span {
	color: var(--light-green);
}
@media (max-width: 1440px) {
	.h1, h1 { font-size: 60px; }
	.h2, h2 { font-size: 50px; }
	.h3, h3 { font-size: 36px; }
	.h4, h4 { font-size: 28px; }
	.h5, h5 { font-size: 20px; }
	.h6, h6 { font-size: 18px; }
}
@media (max-width: 1200px) {
	.h1, h1 { font-size: 55px; }
	.h2, h2 { font-size: 36px; }
	.h3, h3 { font-size: 25px; }
	.h4, h4 { font-size: 20px; }
}
@media (max-width: 768px) {
	.h1, h1 { font-size: 30px; }
	.h1, .h2, .h3, h1, h2, h3 {
		line-height: 1.2;
	}
}
/* ------------------------------------------------------------- *
 * Headings (custom headings)
/* ------------------------------------------------------------- */

.heading {
	margin-bottom: 30px;
}
@media (max-width: 991px) {
	.heading {
		margin-bottom: 30px;
	}
}
@media (max-width: 768px) {
	.heading h3 br {
		display: none;
	}
}

/* Headings title */
.heading-title {
	margin: 0;
	font-size: calc(24px + 1vw);
	font-weight: bold;
	font-weight: 800;
	color: #FFF;
	margin-bottom: 15px;
	text-transform: uppercase;
}

/* Headings subtitle */
.heading-subtitle {
	margin: 0 auto;
	font-size: calc(13px + 0.1vw);
	font-weight: bold;
	font-weight: normal;
	color: #BBB;
	max-width: 650px;
}
.heading-title + .heading-subtitle {
/*	margin: 15px 0 0 0;*/
}

/* Headings paragraph */
.heading > p:first-child {
	margin-bottom: 0;
}
.heading-title + p,
.heading-subtitle + p {
	margin-top: 50px;
}
.heading > p:last-child {
	margin-bottom: 0;
}

/* Headings positions 
========================= */
/* position center */
.heading.heading-center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

/* Headings sizes 
===================== */
/* size xsm */
.heading.heading-xsm .heading-title {
	font-size: calc(24px + 0.1vw);
	font-weight: bold;
	font-weight: 600;
}
.heading.heading-xsm .heading-subtitle {
	font-size: calc(13px + 0.1vw);
}

/* size sm */
.heading.heading-sm .heading-title {
	font-size: calc(24px + 0.5vw);
	font-weight: bold;
	font-weight: 600;
}
.heading.heading-sm .heading-subtitle {
	font-size: calc(15px + 0.1vw);
}

/* size lg */
.heading.heading-lg .heading-title {
	font-size: calc(22px + 1vw);
	line-height: 1.3;
}
.heading.heading-lg .heading-subtitle {
	font-size: calc(16px + 0.1vw);
	font-weight: bold;
	font-weight: 400;
}

.text-white {
	color: var(--main-color);
}
.text-dark {
	color: var(--text-color-dark);
}

/* ------------------------------------------------------------- *
 * Buttons
/* ------------------------------------------------------------- */

button {
	background-color: transparent;
	cursor: pointer;
	border: none;
	outline: none;
}
.btn {
	position: relative;
	display: inline-block;
	padding: 18px 65px 15px 20px;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	-moz-transition: all .2s ease-in;
	-ms-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.btn-solid {
	border: 1px solid var(--light-green);
	border-radius: 25px;
	background: transparent;
}
.btn-solid:before {
	content: '';
	position: absolute;
	top: -1px;
	right: 0;
	width: 45px;
	height: 100%;
	background: var(--light-green);
  border: 1px solid var(--light-green);
  border-radius: 0 25px 25px 0;
}
.btn-solid:after {
	content: url('../img/arrow-right.svg');
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
}
.btn-solid:hover {
	background: var(--main-color);
	color: #FFF!important;
}
.btn-link {
	padding: 18px 20px 15px 20px;
	text-decoration: underline;
}
.btn-link:hover {
	color: var(--light-green);
}
.btn-solid-dark {
	border: 1px solid var(--main-color);
	background: transparent;
	text-decoration: underline;
}
.btn-solid-dark:hover {
	background: var(--main-color);
	color: #fff;
}
@media (max-width: 1200px) {
	.btn {
		font-size: 12px;
	}
}

/* ------------------------------------------------------------- *
 * Arrows
/* ------------------------------------------------------------- */

[class*="arrow"] {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 1px;
	box-shadow: inset 0 0 0 40px;
	margin: 10px;
	color: #FFF;
}

[class*="arrow"]:before, 
[class*="arrow"]:after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	width: 12px;
	height: 1px;
	box-shadow: inset 0 0 0 40px;
}
[class*="arrow"]:before {
	top: 0px;
	transform: rotate(-45deg);
	transform-origin: bottom left;
}
[class*="arrow"]:after {
	bottom: 0px;
	transform: rotate(45deg);
	transform-origin: top left;
}

.arrow-left {
	/* Left is devault angle */
}
.arrow-right {
	transform: rotate(180deg);
}
.arrow-up {
	transform: rotate(90deg);
}
.arrow-down {
	transform: rotate(270deg);
}
.arrow-left-up {
	transform: rotate(45deg);
}
.arrow-left-down {
	transform: rotate(320deg);
}
.arrow-right-up {
	transform: rotate(135deg);
}
.arrow-right-down {
	transform: rotate(225deg);
}


/* ------------------------------------------------------------- *
 * Header
/* ------------------------------------------------------------- */
.header .container-fluid .header-top {
	padding: 15px 30px;
}
.header .container-fluid .header-bottom {
	padding: 15px 30px;
}
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
/*	background: transparent;*/
}
.header.header-bg {
	background: var(--main-color);
}
.header .header-top {
	padding: 15px 0;
	text-align: right;
}
.header .header-top-bg {
	background: var(--grey-bg);
}
.header .header-bottom-bg {
	background: #FFF;
}
.header .header-top .header-top-item {
	display: inline-block;
	margin-left: 50px;
}
.header .header-top .header-top-item:first-child {
	margin-left: 0;
}
.header .header-top .header-top-item a {
	position: relative;
	display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 20px;
}
.header .header-top .header-top-item a:hover {
	text-decoration: underline;
}
.header .header-top .header-top-item svg {
	width: 22px;
	height: 22px;
	margin-right: 8px;
	fill: var(--main-color);
}
.header .header-top .header-top-item:nth-child(2) svg {
	width: 27px;
	height: 27px;
}
.header .lang-switcher {
	display: inline-flex;
/*	margin-left: 50px;*/
}
.header .lang-switcher-link {
	padding: 18px 10px 15px 10px;
  border: 1px solid transparent;
  border-radius: 20px;
  height: 24px;
  border-radius: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 0.5;
  text-align: center;
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -moz-transition: all .2s ease-in;
	-ms-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.header .lang-switcher-link.active {
	border: 1px solid #FFF;
  border-radius: 20px;
}
.header .lang-switcher-link:hover {
	border: 1px solid #FFF;
  border-radius: 20px;
}

.header .header-bottom {
	width: 100%;
	padding: 25px 0;
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

} 
.header .header-bottom .logo {
	display: inline-block;
	max-width: 220px;
}
.header .header-bottom .logo img {
	width: 100%;
}
.header .header-bottom .header-bottom-nav {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header .header-bottom .header-bottom-nav .navbar {
	display: flex;
	align-items: center;
}
.header .header-bottom .header-bottom-nav .navbar ul li {
	display: inline-block;
  vertical-align: middle;
  margin: 0 12px;
}
.header .header-bottom .header-bottom-nav .navbar ul li a {
	position: relative;
	font-weight: 350;
	font-size: 13px;
	line-height: 100%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #FFF;
	-moz-transition: all .2s ease-in;
	-ms-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.header .header-bottom .header-bottom-nav .navbar ul li a:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0;
	height: 1px;
	background: #fff;
	-moz-transition: all .2s ease-in;
	-ms-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.header .header-bottom .header-bottom-nav .navbar ul li:hover a:before {
	width: 100%;
}
.header .header-bottom .header-bottom-nav .navbar ul li a.active:before {
	width: 100%;
}
.header .header-bottom .header-button {
	display: inline-block;
    vertical-align: middle;
}
.header .header-bottom .navbar-toggler {
	display: none;
}

.header .mob-logo {
	position: absolute;
	bottom: 110px;
  right: 15px;
  width: 75px;
	z-index: 13;
}
.header .mob-contacts {
	display: none;
	margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid;
}
.header .mob-contacts a {
	position: relative;
	display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 20px;
}
.header .mob-contacts a:hover {
	text-decoration: underline;
}
.header .mob-contacts a svg {
	width: 25px;
	height: 25px;
	margin-right: 8px;
	fill: var(--main-color);
}
.header .mob-contacts a:nth-child(2) svg {
	width: 25px;
	height: 25px;
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.navbar-toggler.is-active .hamRotate {
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navbar-toggler.is-active .hamRotate180 {
	-ms-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.navbar-toggler .line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #FFF;
  stroke-width: 5.5;
  stroke-linecap: round;
}
.navbar-toggler .ham-item .top {
  stroke-dasharray: 40 82;
}
.navbar-toggler .ham-item .middle {
  stroke-dasharray: 40 111;
}
.navbar-toggler .ham-item .bottom {
  stroke-dasharray: 40 161;
}
.navbar-toggler.is-active .ham-item .top {
  stroke-dasharray: 17 82;
  stroke-dashoffset: -62px;
}
.navbar-toggler.is-active .ham-item .middle {
  stroke-dashoffset: 23px;
}
.navbar-toggler.is-active .ham-item .bottom {
  stroke-dashoffset: -83px;
}
@media only screen and (max-width: 1301px) {
	.header .header-bottom .header-bottom-nav .navbar {
		margin-right: 20px;
	}
	.header .header-bottom .header-button .btn {
		font-size: 12px;
		padding: 12px 20px
	}
	.header .header-bottom .logo {
		max-width: 150px;
	}
	.header .header-bottom .header-bottom-nav .navbar ul li a {
		font-size: 12px;
	}
}
@media only screen and (max-width: 1200px) {
	.header .header-top .header-top-item,
	.header .header-top .lang-switcher {
		margin-left: 30px;
	}
	.header .lang-switcher-link {
		font-size: 14px;
	}
	.header .header-bottom .logo {
		max-width: 120px;
	}
	.header .header-bottom .header-bottom-nav .navbar ul li {
		margin: 0 10px;
		padding: 0 0 4px 0;
	}
	.header .header-bottom .header-bottom-nav .navbar ul li a {
		font-size: 12px;
	}
	.header .header-bottom .header-button .btn {
		padding: 12px 10px;
	}
}
@media only screen and (max-width: 992px) {
	.column-sm-reverse {
		flex-direction: column-reverse;
	}
	.header {
		position: fixed;
	}
	.header.fixed-top {
		background: var(--main-color);
		border-bottom: 1px solid #D9D5CE;
	}
	.header .header-top,
	.header .header-bottom .header-button {
	  display: none;
	}
	.header .header-bottom .navbar-toggler {
		display: block;
		padding: 0;
	}
	.header .header-bottom .navbar ul {
		margin: 0
	}
	.header .mob-contacts {
		display: block;
	}
	.header .lang-switcher-mob {
		margin: 0;
		position: absolute;
    right: 30px;
    margin-left: 0;
    margin-right: 30px;
	}
	.header .header-bottom {
		position: relative;
		padding: 20px 0;
	}
	.header .header-bottom .header-bottom-nav .navbar {
		position: absolute;
		padding: 30px 0 30px 30px;
	    width: 280px;
	    right: -295px;
	    top: 81px;
	    background: #ffff;
	    border-bottom: 1px solid #D9D5CE;
	    border-left: 1px solid #D9D5CE;
	    margin: 0;
	    -webkit-transition: all .2s ease-in;
	    transition: all .2s ease-in;
	    display: flex;
	    flex-direction: column;
	    align-items: flex-start;
	    opacity: 0;
    	visibility: hidden;
	}
	.header.mobile-nav .header-bottom .navbar  {
		right: -15px;
		opacity: 1;
    	visibility: visible;
	}
	.header .header-bottom .header-bottom-nav .navbar ul li {
		display: block;
		margin: 0 0 25px;
	}
	.header .header-bottom .header-bottom-nav .navbar ul li:last-child {
		margin: 0;
	}
	.header .header-bottom .header-bottom-nav .navbar ul li a {
		border-bottom: 1px solid;
		color: var(--main-color);
	}
	.header .header-bottom .header-bottom-nav .navbar ul li a:before {
		display: none;
	}
	.header .mob-contacts a {
		color: var(--main-color);
		font-family: 'Montserrat', sans-serif;
	}
	.header .header-top .header-top-item a {
		position: relative;
		display: inline-block;
	  vertical-align: middle;
	  font-size: 14px;
	  line-height: 20px;
	}
	.header .header-top .header-top-item a:hover {
		text-decoration: underline;
	}
	.header .header-top .header-top-item svg {
		width: 22px;
		height: 22px;
		margin-right: 8px;
		fill: var(--main-color);
	}
	.header .header-top .header-top-item:nth-child(2) svg {
		width: 27px;
		height: 27px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
	.header .header-bottom .logo {
		max-width: 150px;
	}
}
/*@media only screen and (min-width: 768px) {
	.header .lang-switcher-mob,
	.header .mob-logo {
		display: none;
	}
}*/
@media only screen and (max-width: 768px) {
	.header .header-bottom .logo {
		max-width: 150px;
	}
}
/* ------------------------------------------------------------- *
 * Intro Section
/* ------------------------------------------------------------- */
.intro-section {
	padding-top: 250px;
	padding-bottom: 250px;
	position: relative;
	z-index: 10;
	height: 100%;
	min-height: 767px;
	overflow: hidden;
	background-color: var(--main-color);
}
.intro-section .title-wrapper h1 {
	text-transform: uppercase;
	margin-bottom: 15px;
}
.intro-section .title-wrapper p.subtitle {
	font-size: 18px;
}
.intro-section .buttons-holder {
	margin-top: 40px;
}
.intro-section .buttons-holder .btn:first-child {
	margin-right: 15px;
}
/*.intro-section .intro-banner {
  width: 615px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  animation: scaleBounceTwo 3s linear infinite;
}*/
.intro-section .intro-banner {
	position: absolute;
    top: -50px;
/*    transform: translateY(-50%);*/
    right: -300px;
}
.intro-section .intro-banner img {
	border-radius: 100%;
}
.intro-section .intro-banner .creative-shape {
	position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    z-index: -1;
    -webkit-animation: zoomingShape 3s linear infinite;
    animation: zoomingShape 3s linear infinite;
    background: #85b33f;
    left: -1.5%;
}
.intro-section .intro-banner .creative-shape-2 {
	position: absolute;
	bottom: 0;
    width: 101%;
    height: 101%;
    border-radius: 100%;
    z-index: -2;
    -webkit-animation: zoomingShape 3.5s linear infinite;
    animation: zoomingShape 3.5s linear infinite;
    background: #9ec16a;
    left: -4%;
}
.intro-section .elipse {
	position: absolute;
	bottom: -250px;
	right: -250px;
	width: 700px;
	height: 700px;
	background: transparent;
	border: 80px solid #F8CA45;
	border-radius: 100%;
	animation: scaleBounce 2.5s linear infinite;
}
@-webkit-keyframes zoomingShape {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}
@keyframes zoomingShape {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}
@-webkit-keyframes scaleBounce {
  0% {
    transform: scale(1.0);
  }
  50% {
  	transform: scale(1.2);
  }
  100% {
    transform: scale(1.0);
  }
}
@keyframes scaleBounce {
  0% {
    transform: scale(1.0);
  }
  50% {
  	transform: scale(1.2);
  }
  100% {
    transform: scale(1.0);
  }
}
@-webkit-keyframes scaleBounceTwo {
  0% {
    transform: scale(1.0);
  }
  50% {
  	transform: scale(1.05);
  }
  100% {
    transform: scale(1.0);
  }
}
@keyframes scaleBounceTwo {
  0% {
    transform: scale(1.0);
  }
  50% {
  	transform: scale(1.05);
  }
  100% {
    transform: scale(1.0);
  }
}
.intro-section .scroll-down {
	display: block;
	cursor: pointer;
	position: absolute;
	bottom: 25px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 10;
}
.intro-section .scroll-down .arrow-down {
	position: absolute;
    top: 27px;
    left: 10px;
    width: 30px;
    animation: MoveUpDown 1.5s linear infinite;
}
@keyframes MoveUpDown {
  0% {
    top: 27px;
  }
  25% {
    top: 22px;
  }
  50% {
  	top: 32px
  }
  100% {
    top: 27px;
  }
}
@media only screen and (max-width: 1300px) {
	.intro-section .intro-banner {
	    top: -25px;
	    width: 900px;
	    right: -350px;
	}
}
@media only screen and (max-width: 1200px) {
	.intro-section {
		background-position: 62% 100%;
	}
	.intro-section .intro-banner {
/*		width: 520px;*/
	}
	.intro-section .elipse {
		width: 600px;
		height: 600px;
	}
}
@media only screen and (max-width: 768px) {
	.intro-section {
		padding-top: 150px;
		padding-bottom: 150px;
		min-height: 750px;
		background-position: 65% 100%;
	}
	.intro-section .title-wrapper p.subtitle br {
		display: none;
	}
	.intro-section .intro-banner {
		width: 100%;
		height: 345px;
		top: unset;
		right: 0;
		bottom: 0;
	}
	.intro-section .intro-banner img {
		border-radius: 0;
	}
	.intro-section .intro-banner .creative-shape,
	.intro-section .intro-banner .creative-shape-2 {
		display: none;
	}
	.intro-section .elipse {
		width: 450px;
		height: 450px;
		bottom: -150px;
		right: -150px;
	}
}
/* ------------------------------------------------------------- *
 * About Section
/* ------------------------------------------------------------- */
.about-section {
	background-color: #fff;
	background-image: url('../img/bg/bg-8.jpg');
	background-size: cover;
	background-position: center;
}
@media only screen and (max-width: 767px) {
	.about-section {
		background-position: 62%;
	}
}

/* ------------------------------------------------------------- *
 * Numbers Section
/* ------------------------------------------------------------- */
.numbers-section {
	background-color: var(--grey-bg);
	padding-bottom: 170px;
}
.numbers-section .numbers-wrap {
	position: relative;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.numbers-section .numbers-inner {
	position: relative;
	margin: 0 auto;
}
.numbers-section .numbers-inner:before {
	content: '';
	position: absolute;
	left: -75px;
	bottom: -65px;
	width: 105px;
	height: 119px;
	background-image: url('../img/icons/ae-numbers.svg');
	background-size: cover;
	z-index: 3;
}
.numbers-section .numbers-wrap h2 {
	margin-bottom: 10px;
}
@media only screen and (max-width: 1200px) {
	.numbers-section .numbers-inner:before {
		width: 85px;
		height: 96px;
		left: -55px;
    bottom: -55px;
	}
}
@media only screen and (max-width: 992px) {
	.numbers-section .numbers-wrap {
		padding-bottom: 100px;
	}
	.numbers-section .col-lg-4:last-child .numbers-wrap {
		padding-bottom: 0;
	}
}
@media only screen and (max-width: 768px) {
	.numbers-section {
		padding-bottom: 110px;
	}
	.numbers-section .numbers-inner {
		margin: 0 0 0 55px;
	}
}



/* ------------------------------------------------------------- *
 * About Image Section
/* ------------------------------------------------------------- */
.about-image-section {
	background-color: var(--light-green);
/*	padding-top: 0;*/
/*	padding-bottom: 0;*/
}
.about-image-section .logo-holder {
	position: absolute;
	bottom: -100px;
	left: 30px;
	max-width: 300px;
}
.about-image-section .banner-holder { 
/*	width: 100%;*/
	padding-left: 100px;
	margin-bottom: -200px;
}
.about-image-section .banner-holder img {
	width: 100%;
}
.about-image-section .text-wrapper {
	padding-left: 50px;
}
@media only screen and (max-width: 1560px) {
	.about-image-section .banner-holder {

	}
}
@media only screen and (max-width: 1300px) {
	.about-image-section .banner-holder {
		padding-left: 0;
	}
}
@media only screen and (max-width: 992px) {
	.about-image-section .banner-holder {
		width: 100%;
		margin-top: 30px;
		margin-bottom: 0;
	}
	.about-image-section .row {
/*		flex-direction: column-reverse;*/
	}
}
@media only screen and (max-width: 767px) {
	.about-image-section .text-wrapper {
		padding-left: 0;
	}
}

/* ------------------------------------------------------------- *
 * About Image Section 2
/* ------------------------------------------------------------- */
.about-2 {
	padding: 90px 0;
	background-color: #2c2c2c;
}
.about-2 .banner-holder {
	width: 110%;
	padding: 0;
	margin: 0
}
.about-2:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background: #fff;
	width: 300px;
	height: 100%;
}
@media only screen and (max-width: 1200px) {
	.about-2:before {
		width: 200px;
	}
}
@media only screen and (max-width: 992px) {
	.about-2:before {
		display: none;
	}
	.about-2 .banner-holder {
		width: 100%;
		margin-top: 50px;
	}
}
/* ------------------------------------------------------------- *
 * Services Section
/* ------------------------------------------------------------- */
.service-section {
	padding-top: 200px;
}
.service-section .heading {
	margin-bottom: 50px;
}
.service-section .service-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	-moz-transition: all .2s ease-in;
	-ms-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.service-section .service-wrap:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(44, 44, 44, 0) 0%, rgba(44, 44, 44, 0.8) 44.27%, #2C2C2C 100%);
	opacity: .7;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	-webkit-transition: all .2s ease;
	transition: all .2s ease-in-out;
}
.service-section .service-wrap:hover:before {
	opacity: 1;
}
.service-section .service-wrap .service-inner {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 5;
	padding: 60px 45px;
}
@media only screen and (max-width: 1200px) {
	.service-section .service-wrap .service-inner {
		padding: 25px;
	}
}
@media only screen and (max-width: 1050px) {
	
}
@media only screen and (max-width: 992px) {
	.service-section {
		padding-top: 15%;
	}
	.service-section .service-wrap {
		margin-bottom: 60px;
	}
	.service-section .service-wrap:before {
		display: none;
	}
	.service-section .service-wrap .service-inner {
		position: relative;
		background: linear-gradient(180deg, rgba(44, 44, 44, .2) 0%, rgba(44, 44, 44, 0.8) 44.27%, #2C2C2C 100%);
	}
	.service-section .service-wrap .service-inner h4 {
		margin-top: 0;
	}
}
@media only screen and (max-width: 768px) {
	.service-section .image-wrap {
		margin-bottom: 25px;
	}
}

/* ------------------------------------------------------------- *
 * Cultures Section
/* ------------------------------------------------------------- */
.cultures-section {
	background-color: var(--grey-bg);
}
.cultures-section .cultures-wrap h6 {
	font-size: 16px;
	margin: 0;
}
.cultures-section .cultures-wrap {
	position: relative;
	margin-bottom: 25px;
  padding: 25px;
  height: 400px;
  display: block;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-color: #FFF;
  -moz-transition: all .2s ease-in;
	-ms-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.cultures-section .cultures-wrap.all {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.cultures-section .cultures-wrap.bg-dark {
	background-color: #2c2c2c!important;
}
.cultures-section .cultures-wrap.bg-dark h6 {
	color: #FFF;
}
.cultures-section .cultures-wrap .title-wrap {
	display: flex;
	align-items: center;
}
.cultures-section .cultures-wrap.bg-dark .title-wrap,
.cultures-section.cultures-2 .cultures-wrap.bg-dark h6 {
	position: absolute;
	bottom: 25px;
}
.cultures-section .cultures-wrap .title-wrap img {
	position: relative;
	width: 30px;
	height: 30px;
	margin-left: 10px;
}
.cultures-section .cultures-wrap.bg-1 {
	background-image: url('../img/products/pschenica.png');
}
.cultures-section .cultures-wrap.bg-2 {
	background-image: url('../img/products/yachmen.png');
}
.cultures-section .cultures-wrap.bg-3 {
	background-image: url('../img/products/podsolnuh.png');
	background-position-x: 60%;
}
.cultures-section .cultures-wrap.bg-4 {
	background-image: url('../img/products/kukuruza.png');
	background-position-x: 60%;
}
.cultures-section .cultures-wrap.bg-5 {
	background-image: url('../img/products/soya.png');
}
.cultures-section .cultures-wrap.bg-6 {
	background-image: url('../img/products/oat-seeds.png');
}
.cultures-section .cultures-wrap.bg-7 {
	background-image: url('../img/products/yellow-peas.png');
}
.cultures-section .cultures-wrap.bg-8 {
	background-image: url('../img/products/coriander-seeds.png');
}
.cultures-section .cultures-wrap.bg-9 {
	background-image: url('../img/products/mustard-seeds.png');
}
.cultures-section .cultures-wrap.bg-10 {
	background-image: url('../img/products/lupine-seeds.png');
}
.cultures-section .cultures-wrap.bg-11 {
	background-image: url('../img/products/sorghum-seeds.png');
}
.cultures-section .cultures-wrap.bg-12 {
	background-image: url('../img/products/millet-seeds.png');
}
.cultures-section .cultures-wrap.bg-13 {
	background-image: url('../img/products/rape-seeds.png');
}
.cultures-section .cultures-wrap.bg-14 {
	background-image: url('../img/products/flax-seeds.png');
}
.cultures-section .cultures-wrap.bg-15 {
	background-image: url('../img/products/beans.png');
}
.cultures-section .cultures-wrap p {
	width: 50%;
}
/*.cultures-section .cultures-wrap:hover {
	background-color: var(--light-green);
}*/
.cultures-section .cultures-wrap:hover .cultures-link {
	opacity: 1;
	visibility: visible;
}
.cultures-section .cultures-wrap .cultures-link {
	position: relative;
	display: inline-block;
	opacity: 0;
	visibility: hidden;
	top: 40px;
	-moz-transition: all .2s ease-in;
	-ms-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.cultures-section .cultures-wrap .cultures-link img {
	width: 50px;
}
.cultures-section .cultures-wrap .cultures-link .arrow-right {
	position: absolute;
    top: 18px;
    left: 6px;
    width: 18px;
    color: var(--light-green);
}
@media only screen and (max-width: 1300px) {
	.cultures-section .cultures-wrap {
		padding: 40px 20px;
	}
}
@media only screen and (max-width: 1200px) {
	.cultures-section .cultures-wrap h6 {
		font-size: 15px;
	}
	.cultures-section .cultures-wrap.bg-13 {
		background-position: bottom right;
    background-size: 70%;
	}
	.cultures-section .cultures-wrap.bg-5 {
		background-position-y: 50%;
    background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.cultures-section .cultures-wrap.bg-13 {
		background-position: bottom right;
    background-size: cover;
	}
}
/* ------------------------------------------------------------- *
 * Map Section
/* ------------------------------------------------------------- */
.map-section {
}
.map-section .map-wrapper .map-text {
	display: inline-block;
	position: absolute;
	width: calc(50% + 234px);
  left: -275px;
  top: -53px;
  border-bottom: 0.5px solid var(--main-color);
  z-index: 10;
}
.map-section .map-wrapper .map-text img {
	width: 150px;
	margin-bottom: 20px;
}
.map-section .map-wrapper .map-text h6 {
	margin-top: 0;
	margin-bottom: 5px;
}
.map-section .map-wrapper .map-text p {
	margin-bottom: 10px;
}
.map-section .map-wrapper .map-banner {
	position: absolute;
	top: 21px;
  right: -275px;
  max-width: 500px;
}
.map-section .map-wrapper .map-banner:before {
	content: '';
	position: absolute;
	left: -143px;
  top: 32.5px;
  width: 143px;
  height: 0.5px;
	background: var(--main-color);
	z-index: 10;
}
.map-section .map-wrapper .map-banner p {
	position: relative;
	z-index: 1;
	margin-bottom: 10px;
}
.map-section .map-wrapper .map-banner img {
	position: relative;
	z-index: -1;
	width: 100%;
}
.map-section .map-wrapper .map-item-wrap {
	position: relative;
  margin: 0 auto;
  max-width: 850px;
  height: 100%;
  width: 100%;
  left: unset;
  -webkit-transform: unset;
  transform: unset;
  padding-top: 0;
}
.map-section .map-wrapper .map-item-wrap .map-item {
	position: relative;
	left: unset;
}
.map-section .button-holder {
	position: absolute;
	left: 30px;
	bottom: 0;
}
@media only screen and (max-width: 1560px) {
	.map-section .map-wrapper .map-text {
		width: calc(50% + 134px);
    left: -175px
	}
}
@media only screen and (max-width: 1430px) {
	.map-section .map-wrapper .map-item-wrap {
		max-width: 823px;
	}
	.map-section .map-wrapper .map-text {
		width: calc(50% + 100px);
    left: -137px
	}
	.map-section .map-wrapper .map-banner {
    right: -225px;
    max-width: 450px;
	}
}
@media only screen and (max-width: 1300px) {
	.map-section .map-wrapper .map-item-wrap {
		max-width: 620px;
	}
	.map-section .map-wrapper .map-text {
    width: calc(50% + 130px);
    left: -200px;
    top: -91px;
	}
	.map-section .map-wrapper .map-item-wrap .map-item {
		left: -40px;
	}
	.map-section .map-wrapper .map-banner {
    right: -200px;
    max-width: 365px;
    top: 6px;
	}
}
@media only screen and (max-width: 1200px) {
	.map-section .map-wrapper .map-item-wrap {
    max-width: 550px;
	}
	.map-section .map-wrapper .map-text {
    width: calc(50% + 34px);
    left: -100px;
    top: -83.5px;
	}
	.map-section .map-wrapper .map-text img {
		width: 100px;
	}
	.map-section .map-wrapper .map-banner {
		top: 2px
	}
	.map-section .map-wrapper .map-banner:before {
		left: -113px;
		width: 113px;
	}
}
@media only screen and (max-width: 992px) {
	.map-section {
		padding: 90px 0;
	}
	.map-section .line-right,
	.map-section .line-left {
		display: none!important;
	}
	.map-section .map-wrapper .map-text {
		display: inline-block;
		position: relative;
		width: 248.5px;
    left: 0;
		top: -100px;
    border-bottom: 0.5px solid var(--main-color);
	}
	.map-section .map-wrapper .map-text:before {
		content: '';
		position: absolute;
		right: 0;
		bottom: -190px;
		width: .5px;
		height: 190px;
		background: var(--main-color);
		z-index: 10;
	}
	.map-section .map-wrapper .map-text img {
		width: 70px;
		margin-bottom: 20px;
	}
	.map-section .map-wrapper .map-text h6 {
		margin-top: 0;
	}
	.map-section .map-wrapper .map-text p {
		margin-bottom: 10px;
	}
	.map-section .map-wrapper .map-banner {
		top: -45px;
		right: -79px;
    max-width: 317px;
	}
	.map-section .map-wrapper .map-banner:before {
		content: '';
		position: absolute;
		top: unset;
		right: unset;
		left: 0;
		bottom: -60px;
		width: .5px;
		height: 60px;
		background: var(--main-color);
		z-index: 10;
	}
	.map-section .map-wrapper .map-banner img {
		width: 100%;
	}
	.map-section .map-wrapper .map-item-wrap {
		position: relative;
    margin: 0 auto;
    max-width: 550px;
    height: 100%;
    width: 100%;
    left: unset;
    padding-top: 150px;
	}
	.map-section .map-wrapper .map-item-wrap .map-item {
		position: relative;
		left: unset;
	}
	.map-section .button-holder {
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.map-section .map-wrapper .map-item-wrap {
		padding-top: 50px;
		max-width: 330px;
	}
	.map-section .map-wrapper .map-banner {
		max-width: 155px;
		right: 0;
	}
	.map-section .map-wrapper .map-banner:before {
		bottom: -70px;
		height: 70px;
	}
	.map-section .map-wrapper .map-text:before {
		bottom: -153px;
		height: 153px;
	}
	.map-section .map-wrapper .map-text {
		width: 149.5px;
	}
	.map-section .map-wrapper .map-text img {
    width: 50px;
	}
	.map-section .button-holder {
    display: block; 
    position: relative;
    margin-top: 30px;
    left: 0;
    margin: 40px auto 0;
    text-align: center;
	}
}
/* ------------------------------------------------------------- *
 * Clients Section
/* ------------------------------------------------------------- */
.clients-section {
	padding-bottom: 160px;
	background-color: var(--grey-bg);
}
.clients-section p {
	font-size: 18px;
}
.clients-section .clients-slider-wrap {
	position: relative;
	width: 100%;
}
.clients-section .clients-slider {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #D9D5CE;
}
.clients-section .clients-slider .clients-slide {
	width: 25%;
}
.clients-section .clients-slider .clients-logo {
	width: 100%;
	height: 100%;
  padding: 10px;
	border-right: 1px solid #D9D5CE;
	background-color: var(--grey-bg);
}
.clients-section .clients-slider .clients-logo img {
	opacity: 1;
/*  -webkit-filter: grayscale(100%);*/
/*  filter: grayscale(100%);*/
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.clients-section .clients-slider .clients-logo:hover img {
	opacity: 1;
	-webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.clients-section .clients-slider-buttons {
	display: inline-block;
  position: absolute;
  top: -140px;
  right: 0;
  z-index: 10;
}
.clients-section .clients-slider-buttons .slider-prev svg,
.clients-section .clients-slider-buttons .slider-next svg {
	-moz-transition: all .2s ease-in;
	-ms-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.clients-section .clients-slider-buttons .slider-prev svg {
	fill: transparent;
}
.clients-section .clients-slider-buttons .slider-next svg {
	fill: var(--light-green);
}
.clients-section .clients-slider-buttons .slider-prev:hover svg {
	fill: var(--light-green);
}
.clients-section .clients-slider-buttons .slider-next:hover svg {
/*	fill: #F8CA45;*/
}
.slick-arrow {
	width: auto;
	height: auto;
	background: none;
	color: transparent;
	box-shadow: none;
	margin: 0;
	padding: 0;
}
.clients-section .progress-wrap {
	display: flex;
    align-items: center;
    margin-top: 50px;
    margin-left: 12px;
}
.clients-section .progress-wrap .progress {
  display: block;
  width: 200px;
  height: 2.5px;
  border-radius: 10px;
  margin: 0 20px;
  overflow: hidden;
  background-color: #d4d4d4;
  background-image: linear-gradient(to right, var(--light-green), var(--light-green));
  background-repeat: no-repeat;
  background-size: 0 100%;
  -moz-transition: background-size .4s ease-in-out;
  -ms-transition: background-size .4s ease-in-out;
  -o-transition: background-size .4s ease-in-out;
  -webkit-transition: background-size .4s ease-in-out;
  transition: background-size .4s ease-in-out;
}
.clients-section .progress-wrap .slider-counter {
    font-size: 18px;
}
@media only screen and (max-width: 992px) {
	.clients-section .clients-slider-wrap {
		margin-top: 50px;
	}
}
@media only screen and (max-width: 768px) {
	.clients-section {
		padding-bottom: 90px;
	}
	.clients-section .heading {
		margin-bottom: 30px!important;
	}
	.clients-section .progress-wrap .progress {
		width: 100px;
	}
	.clients-section .clients-slider-buttons {
		top: -74px;
	}
	.clients-section .clients-slider-buttons .slider-next svg,
	.clients-section .clients-slider-buttons .slider-prev svg {
		width: 40px;
		height: 53px;
	}
}

/* ------------------------------------------------------------- *
 * Footer
/* ------------------------------------------------------------- */
.footer {
	position: relative;
	z-index: 10;
	padding: 90px 0 90px 0;
	background-color: #fff;
}
.footer-top {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	border-top: .5px solid var(--main-color);
	border-bottom: .5px solid var(--main-color);
	margin: 0 15px 35px 15px;
}
.footer-top .footer-logo {
	max-width: 270px;
	width: 100%;
}
.footer-top .footer-logo a {
	display: inline-block;
	width: 100%;
}
.footer-top .footer-logo a img {
	width: 100%;
}
.footer-top .footer-nav ul {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 80px;
}
.footer-top .footer-nav ul li a {
	position: relative;
	color: var(--main-color);
	font-size: 16px;
}
.footer-top .footer-nav ul li a:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0;
	height: 1px;
	background: var(--main-color);
	-moz-transition: all .2s ease-in;
	-ms-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.footer-top .footer-nav ul li:hover a:before {
	width: 100%;
}
.footer-bottom {
	width: 100%;
	margin: 0 15px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.footer-bottom .footer-item {
	width: 33.3%;
}
.footer-bottom .footer-item a {
	position: relative;
	display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 20px;
}
.footer-bottom .footer-item a:hover {
	text-decoration: underline;
}
.footer-bottom .footer-item svg {
	width: 22px;
	height: 22px;
	margin-right: 8px;
	fill: var(--main-color);
}
.footer-bottom .footer-item:nth-child(2) svg {
	width: 27px;
	height: 27px;
}
.footer-bottom .footer-item.phone-item,
.footer-bottom .footer-item.mail-item {
	text-align: center;
	color: var(--main-color);
}
.footer-bottom .footer-item.cta-item {
	text-align: right;
}
@media only screen and (max-width: 1430px) {
	.footer-top .footer-nav ul {
		gap: 40px;
	}
	.footer-top .footer-nav ul li a {
		font-size: 14px;
	}
}
@media only screen and (max-width: 1200px) {
	.footer-top .footer-logo {
		max-width: 200px;
	}
	.footer-top .footer-nav ul {
		gap: 25px;
	}
}
@media only screen and (max-width: 992px) {
	.footer {
		padding: 90px 0;
		background-color: #fff;
		background-image: none;
	}
	.footer-top .footer-logo {
		max-width: 220px;
	}
	.footer-top .footer-logo a {
		width: 100%;
	}
	.footer-bottom .footer-item.phone-item,
	.footer-bottom .footer-item.mail-item {
		text-align: left;
	}
	.footer-bottom .footer-item.phone-item {
		display: flex;
		flex-direction: column;
	}
	.footer-top,
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-top .footer-nav ul {
		gap: 20px;
		margin-top: 30px;
		flex-direction: column;
	}
	.footer-bottom .footer-item {
		width: 100%;
	}
	.footer-bottom .footer-item.phone-item,
	.footer-bottom .footer-item.mail-item {
		margin-bottom: 15px;
	}
	.footer-bottom .footer-item.cta-item {
		margin-top: 15px;
		text-align: left;
	}
}
/* ------------------------------------------------------------- *
 * Lines + Postioning
/* ------------------------------------------------------------- */
.section .container {
	position: relative;
	z-index: 10;
}

.lines {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
}
.lines-inner {
    height: 100vh;
    position: relative;
}
 .lines-inner:after {
    content: '';
    width: 1px;
    height: 100%;
    display: block;
    position: absolute;
    right: 15px;
    top: 0;
    z-index: 1;
    background: #D9D5CE;
}
.lines-inner:before {
    content: '';
    width: 1px;
    height: 100%;
    display: block;
    position: absolute;
    left: 15px;
    top: 0;
    z-index: 1;
    background: #D9D5CE;
}
.lines-item {
    width: 1px;
    height: 100vh;
    position: absolute;
    top: 0;
}
.lines-item-cl {
    left: 45%;
    opacity: .2;
    background: #D9D5CE;
}
.lines-item-cr {
    left: 55%;
    opacity: .2;
    background: #D9D5CE;
}

/* ------------------------------------------------------------- *
 * Image Holders
/* ------------------------------------------------------------- */
.image-holder.corn {
	width: 100px;
  position: absolute;
  top: -150px;
	left: 0;
	z-index: 10;
}
.image-holder.sunflower {
	width: 120px;
  position: absolute;
  top: 750px;
	left: 0;
	z-index: 10;
}
.image-holder.soy {
	width: 120px;
  position: absolute;
  top: 700px;
	left: -10px;
	z-index: 10;
}
.image-holder.corn img {
	width: 100%;
}
.image-holder.wheat {
	width: 130px;
	position: absolute;
	top: -50px;
	right: -10px;
	z-index: 10;
	animation: move 3s linear infinite;
}
.image-holder.wheat img {
	width: 100%;
}

@-webkit-keyframes move {
	0% {
		-webkit-transform: translateY(-50px) skewX(0) rotate(0deg);
		transform: translateY(-50px) skewX(0) rotate(0deg);
	}
	50% {
		-webkit-transform: translateY(-80px) skewX(3deg) rotate(-3deg);
		transform: translateY(-80px) skewX(3deg) rotate(-3deg);
	}
	100% {
		-webkit-transform: translateY(-50px) skewX(0) rotate(0deg);
		transform: translateY(-50px) skewX(0) rotate(0deg);
	}
}
@keyframes move {
	0% {
		-webkit-transform: translateY(-50px) skewX(0) rotate(0deg);
	}
	50% {
		-webkit-transform: translateY(-80px) skewX(3deg) rotate(-3deg);
		transform: translateY(-80px) skewX(3deg) rotate(-3deg);
	}
	100% {
		-webkit-transform: translateY(-50px) skewX(0) rotate(0deg);
		transform: translateY(-50px) skewX(0) rotate(0deg);
	}
}
@media only screen and (max-width: 1300px) {
	.image-holder.sunflower {
		width: 80px;
		top: 680px;
	}
	.image-holder.corn {
		width: 70px;
		bottom: 50px;
	}
	.image-holder.wheat {
		width: 110px;
	}
}
@media only screen and (max-width: 992px) {
	.image-holder.wheat {
		width: 100px;
	}
}
@media only screen and (max-width: 768px) {
	.image-holder.wheat {
		width: 70px;
	}
}



/* ------------------------------------------------------------- *
 * Section Header
/* ------------------------------------------------------------- */
.section-header {
	padding: 0;
	height: 450px;
  margin-top: 107.75px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 10;
}
.section-header:before {
	content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
	/*background: var(--main-color);
  opacity: 0.2;*/
}
.section-header .container,
.section-header .container .row {
	height: 100%;
}
.section-header .heading {
  position: absolute;
  top: unset;
  bottom: 270px;
/*  color: #FFF;*/
  z-index: 10;
  margin-bottom: 0;
}
.section-header .heading h2 {
	margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
	.section-header {
		margin-top: 70px;
	}
}

/* ------------------------------------------------------------- *
 * Contacts Section
/* ------------------------------------------------------------- */
.contacts-section .contacts-wrapper {
	display: flex;
	justify-content: space-between;
}
.contacts-section .contact-item {
	width: 33.3%;
	text-align: center;
}
.contacts-section .contact-item span {
	display: block;
	font-size: 14px;
	margin-bottom: 5px;
	color: var(--main-color);
}
.contacts-section .contact-item a {
	position: relative;
	display: inline-block;
  font-size: 18px;
  line-height: 20px;
  color: var(--main-color);
}
.contacts-section .contact-item a:hover {
	text-decoration: underline;
}
.contacts-section .contact-item svg {
	width: 22px;
	height: 22px;
	margin-right: 8px;
	fill: var(--dark-green);
}
.contacts-section .contact-item:nth-child(2) svg {
	width: 27px;
	height: 27px;
}
.contacts-section .contact-form {
	margin-top: 90px;
}
@media only screen and (max-width: 768px) {
	.contacts-section .contacts-wrapper {
		align-items: flex-start;
		flex-direction: column;
	}
	.contacts-section .contacts-wrapper .contact-item {
		width: 100%;
		text-align: left;
		margin-bottom: 30px;
	}
	.contacts-section .contacts-wrapper .contact-item:last-child {
		margin-bottom: 0;
	}
	.contacts-section .contact-form {
		padding: 0 15px;
	}
}
/* ------------------------------------------------------------- *
 * Form Styles
/* ------------------------------------------------------------- */

.form {
	margin-top: 50px;
}
.form .form-info p {
	font-size: 14px;
}
.form .form-info p a {
	font-style: normal;
	color: var(--dark-green);
	border-bottom: 0;
}
.form-group {
  position: relative;
}
.form-group input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: var(--main-color);
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid var(--main-color);
  outline: none;
  background: transparent;
}
.form-group label {
  position: absolute;
  top:0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: var(--main-color);
  pointer-events: none;
  transition: .5s;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label {
  top: -22px;
  left: 0;
  color: var(--light-green);
  font-size: 12px;
}
/* ------------------------------------------------------------- *
 * Modal Window
/* ------------------------------------------------------------- */

.modal {
	display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99998;
  padding: 30px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.1s,opacity 0.3s ease;
}
.modal p {
	color: var(--main-color);
}
.modal.open {
	display: block;
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 21;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  outline: none;
  background: none;
  font-weight: bold;
}
.modal__close:hover {
  color: var(--main-color);
}
.modal__close img {
	width: 50px;
}
.modal__container {
  position: relative;
  z-index: 22;
  width: 460px;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  padding: 75px 45px 75px;
  background-color: #fff;
}
.modal__container .form-modal {
	margin-top: 50px;
}
.modal__container .form-modal p {
	font-size: 14px;
}
.modal__container .form-modal p a {
	font-style: normal;
	color: var(--dark-green);
	border-bottom: 0;
}
.modal__container .button-holder {
	text-align: center;
}
@media (max-width: 768px) {
	.modal__container {
		width: calc(100% - 30px);
		padding: 50px 30px;
	}
	.modal__container .form-modal {
		margin-top: 0;
	}
	.modal__close {
		top: 12px;
		right: 5px;
	}
	.modal__close img {
		width: 35px;
	}
	.modal p {
		font-size: 14px;
	}
	.modal .btn-solid {
		width: 100%;
		font-size: 14.5px;
	}
}



