@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:wght@400&family=Raleway:wght@300;400;500;800&display=swap");
/* Defaults
-------------------------------------------------------------- */
html {
  font-size: 19px;
  scroll-behavior: smooth;
}

body {
  color: #0B3A25;
  font-size: 1rem;
  direction: ltr;
  line-height: 1.43;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
}
body.has-overflow {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  display: block;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 300;
  line-height: 1.1;
}

h1 {
  font-size: 3.1818rem;
}

h2 {
  font-size: 3.1818rem;
}

h3 {
  font-size: 2.2727rem;
}

h4 {
  font-size: 1rem;
}

div,
p,
span,
a,
input,
input[type=submit],
select,
textarea {
  font-family: "Raleway", sans-serif;
}

strong,
b {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

ul li,
ol li {
  text-align: left;
}

a,
input[type=submit],
button,
.transition {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  color: #9bc438;
}

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

img.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}

img.grayscale:hover {
  filter: none;
  -webkit-filter: grayscale(0%);
}

.round {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.content ol,
.content ul {
  margin-left: 10px;
  padding-left: 10px;
  font-size: 1rem;
  line-height: 1.4em;
  margin-bottom: 8px;
}

.content ol {
  list-style: decimal;
}

.content p {
  font-size: 1rem;
  line-height: 1.2em;
  margin-bottom: 0.6rem;
}

/****************************************************************
    LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT
****************************************************************/
.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
}

.flex_container {
  max-width: 95vw;
  margin: 0 auto;
  padding: 10px 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fixed-to-top {
  position: fixed;
  bottom: 50px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.fixed-to-top::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 63%;
  transform: translate(-50%, -50%) rotate(-135deg);
  border-right: 4px solid #0B3A25;
  border-bottom: 4px solid #0B3A25;
}

header {
  width: calc(100vw - 63px);
  margin: 0 auto;
  border-radius: 50px;
  position: fixed;
  left: 0;
  right: 0;
  background-color: transparent;
  background-image: linear-gradient(to bottom, rgba(11, 58, 37, 0), rgba(11, 58, 37, 0));
  z-index: 5555555;
  transition: 0.4s;
}
header .nav {
  align-items: center;
}
header .social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #9bc438;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
}
header .social svg {
  max-width: 50%;
  max-height: 50%;
  height: auto;
  width: auto;
}
header .social svg path {
  fill: #0B3A25;
}
header .logo {
  padding-bottom: 10px;
}
header .logo #Group_82 {
  transition: 0.4s;
}
header .logo svg {
  max-width: 340px;
  height: auto;
  transition: 0.6s;
}
header.active {
  background-image: linear-gradient(to bottom, rgb(11, 58, 37), rgb(11, 58, 37));
}
header.active .logo #Group_82 {
  opacity: 1;
}
header.active .logo svg {
  max-width: 300px;
}

/** Main Menu */
ul#main-menu {
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin-right: 15px;
  align-items: center;
  margin-bottom: 0;
}

ul#main-menu > li {
  position: relative;
  list-style: none;
}
ul#main-menu > li > a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.4s;
  background-color: #9bc438;
  border-radius: 30px 30px;
  z-index: -1;
}
ul#main-menu > li:hover a {
  color: #fff;
}
ul#main-menu > li:hover a::before {
  opacity: 1;
}
ul#main-menu > li.contact {
  padding: 7px 20px;
  transition: 0.5s;
  margin-left: 5px;
  padding-right: 0;
}
ul#main-menu > li.contact a::before {
  display: none;
}
ul#main-menu > li.contact > a {
  color: #0B3A25;
  border-radius: 30px;
  background-color: #9bc438;
  font-weight: 500;
  padding: 13px 25px 11px 25px;
}
ul#main-menu > li.contact > a:hover {
  color: #fff;
  background-color: #0B3A25;
}

ul#main-menu > li > a {
  position: relative;
  display: block;
  font-size: 0.8182rem;
  color: #fff;
  line-height: 1;
  padding: 12px 25px 12px 25px;
  min-width: 125px;
  text-align: center;
}

ul#main-menu > li.current-menu-item > a {
  color: #9bc438;
}

ul#main-menu > li > a:focus,
ul#main-menu > li > a:hover {
  text-decoration: none;
  color: #fff;
}

/** Sub Menu  ***/
ul#main-menu ul.sub-menu {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 100%;
  width: 100%;
  display: none;
  background-color: #9bc438;
  border-radius: 0 0 30px 30px;
  padding: 0 10px 10px 10px;
}

ul#main-menu > li.menu-item-has-children {
  position: relative;
}
ul#main-menu > li.menu-item-has-children > a::before {
  border-radius: 30px 30px 0 0;
}
ul#main-menu > li.menu-item-has-children a {
  padding-right: 35px;
}
ul#main-menu > li.menu-item-has-children::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  display: inline-block;
  transition: 0.5s;
  top: 47%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.7s;
  position: absolute;
  right: 25px;
  transition: 0.4s;
}
ul#main-menu > li.menu-item-has-children:hover::after {
  border-color: #0B3A25;
  transform: translateY(-50%) rotate(-135deg);
  transform-origin: 4px 6px;
}

ul#main-menu > li.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}

ul#main-menu ul.sub-menu li {
  position: relative;
  display: flex;
  text-align: center;
  text-align: center;
  justify-content: center;
}
ul#main-menu ul.sub-menu li:last-of-type a {
  border-bottom: 0;
}

ul#main-menu ul.sub-menu li a {
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  padding: 7px 10px;
  color: #fff;
  margin-right: 2px;
  margin-left: 2px;
  font-size: 16px;
  border-bottom: 1px solid #0B3A25;
  font-weight: 500;
}

ul#main-menu ul.sub-menu li a:hover,
ul#main-menu ul.sub-menu li a:focus {
  text-decoration: none;
  color: #fff;
}

ul#main-menu ul.sub-menu li:hover > a {
  color: #fff;
}

section {
  width: calc(100vw - 53px);
  margin: 0 auto;
}
section .container {
  max-width: 100%;
}

.home h1 {
  font-size: 6.1364rem;
  max-width: 1070px;
  margin: 0 auto;
}
.home .top-section {
  position: relative;
  margin-top: 20px;
  height: calc(100vh - 53px);
}
.home .top-section .top-gallery {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.home .top-section .top-gallery .mobile {
  display: none;
}
.home .top-section .sub {
  max-width: 785px;
  margin: 40px auto 50px auto;
}
.home .top-section .bg-color {
  z-index: 2;
  background-image: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0.5));
  opacity: 0.7;
}
.home .top-section .container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.stain-section {
  position: relative;
  height: 600px;
}
.stain-section img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.invest-section {
  width: calc(100vw - 25px) !important;
  min-height: 870px;
  z-index: 3;
  position: relative;
}
.invest-section .investions {
  position: relative;
  z-index: 2;
  margin: 60px auto 0 auto;
  display: flex;
  justify-content: space-between;
}
.invest-section .images {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 260px;
  height: 600px;
  width: 99%;
}
.invest-section .images .bg-image {
  opacity: 0;
  transition: 0.5s;
  border-radius: 30px;
}
.invest-section .images .bg-image.active {
  opacity: 1;
}
.invest-section .single-invest {
  width: 100%;
  text-align: center;
  position: relative;
  transition: 0.5s;
  padding: 25px 40px;
  min-height: 370px;
}
.invest-section .single-invest .image {
  display: none;
}
.invest-section .single-invest .bg-color {
  background-image: linear-gradient(to bottom, rgb(11, 58, 37) 35%, rgba(11, 58, 37, 0.7));
  opacity: 0;
  border-radius: 30px;
}
.invest-section .single-invest .title {
  transition: 0.5s;
  font-size: 300;
  margin-bottom: 30px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  font-size: 1.08rem;
}
.invest-section .single-invest .text {
  opacity: 0;
  position: relative;
  z-index: 2;
}
.invest-section .single-invest.active .bg-color, .invest-section .single-invest.active .text, .invest-section .single-invest.active .bg-image {
  opacity: 1;
}
.invest-section .single-invest.active .title {
  font-weight: bold;
  color: #9bc438;
}

.agrifood-section {
  position: relative;
  margin: 20vw auto 100px auto !important;
}
.agrifood-section .stane {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 90%;
}
.agrifood-section .stane img {
  min-width: 53vw;
  height: auto;
}
.agrifood-section .bg-color {
  background-color: #0B3A25;
  border-radius: 30px;
  z-index: 2;
}
.agrifood-section .container {
  padding: 80px 15px;
  z-index: 2;
  max-width: 1560px;
}
.agrifood-section .col-lg-6:first-of-type {
  display: flex;
  justify-content: center;
}
.agrifood-section .text {
  max-width: 700px;
  margin: 25px 0;
  font-size: 20px;
}
.agrifood-section .image {
  max-width: 700px;
  width: 100%;
  border-radius: 30px;
  height: 665px;
  position: relative;
  margin: 0 auto -140px auto;
}

.news-section {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.news-section h2 {
  margin-bottom: 25px;
}
.news-section .container {
  padding: 100px 15px;
}
.news-section .single-news {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}
.news-section .single-news .title {
  color: #0B3A25;
}
.news-section .single-news .top {
  width: 100%;
}
.news-section .single-news .image {
  width: 100%;
  max-width: 600px;
  height: 320px;
  border-radius: 30px;
}
.news-section .single-news .date {
  color: #B2B2B2;
  font-size: 17px;
  margin: 12px 0 15px 0;
}
.news-section .single-news .text {
  margin: 15px 0;
  max-width: 95%;
}

.partners-section {
  position: relative;
  z-index: 3;
  background-color: #fff;
}
.partners-section .container {
  padding: 100px 15px 40px 15px;
}
.partners-section h2 {
  margin-bottom: 40px;
}
.partners-section .title {
  margin-bottom: 15px;
}
.partners-section .category {
  margin-bottom: 40px;
}
.partners-section .single {
  width: 100%;
  height: 145px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}
.partners-section .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.partners-section .partners-repeater {
  margin-bottom: 40px;
}
.partners-section .partners-repeater.not-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-section .container {
  padding: 0 15px 30px 15px;
}
.portfolio-section h2 {
  margin-bottom: 60px;
}
.portfolio-section .col-lg-3 {
  margin-bottom: 35px;
}
.portfolio-section .single-portfolio {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.16);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 40px;
  text-align: center;
  min-height: 265px;
}
.portfolio-section .single-portfolio .hide {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.portfolio-section .single-portfolio .text {
  line-height: 1.5;
}
.portfolio-section .single-portfolio .read-more {
  margin-top: 30px;
}
.portfolio-section .single-portfolio .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio-section .single-portfolio .logo img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
}
.portfolio-section .single-portfolio:hover .logo {
  display: none;
}
.portfolio-section .single-portfolio:hover .hide {
  display: flex;
}

.cooperate-section {
  position: relative;
  z-index: 4;
}
.cooperate-section .container {
  padding: 70px 15px 0 15px;
}
.cooperate-section h2 {
  margin-bottom: 60px;
}
.cooperate-section .single {
  width: 100%;
  border-radius: 30px;
  min-height: 670px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.cooperate-section .single .plus {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  bottom: 33%;
  width: 50px;
  height: 50px;
  background-color: #9bc438;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0B3A25;
  font-size: 60px;
  font-weight: 300;
  opacity: 1;
  transition: 0.4s;
}
.cooperate-section .single .bg-image {
  border-radius: 30px;
}
.cooperate-section .single .title {
  font-size: 2.0727rem;
  margin-bottom: 25px;
  color: #fff;
  transform: translateY(0);
  transition: 0.5s;
}
.cooperate-section .single .text {
  opacity: 0;
  max-width: 400px;
  margin: 0 auto;
  color: #fff;
  transform: translateY(0);
  transition: 0.5s;
  max-height: 0;
}
.cooperate-section .single .bg-color {
  background-color: rgba(0, 0, 0, 0.4);
  transition: 0.4s;
  border-radius: 30px;
}
.cooperate-section .single .read-more {
  position: absolute;
  opacity: 0;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  transition: 0.4s;
}
.cooperate-section .single:hover .plus {
  opacity: 0;
}
.cooperate-section .single:hover .read-more {
  opacity: 1;
}
.cooperate-section .single:hover .bg-color {
  background-color: #0B3A25;
}
.cooperate-section .single:hover .title {
  color: #9bc438;
  transform: translateY(-40px);
  height: auto;
}
.cooperate-section .single:hover .text {
  transform: translateY(-40px);
  opacity: 1;
  max-height: 400px;
}

.contact-section {
  margin-top: 290px !important;
  position: relative;
  font-weight: 500;
}
.contact-section .label {
  padding-left: 15px;
}
.contact-section .bg-color {
  background-color: #9bc438;
  border-radius: 30px;
  z-index: 2;
}
.contact-section .stain-wrapper {
  max-width: 1560px;
  margin: 0 auto;
  position: relative;
}
.contact-section .stane {
  position: absolute;
  left: -20vw;
  top: -30vw;
  height: 45vw;
}
.contact-section .stane img {
  max-height: 150%;
  width: auto;
}
.contact-section .container {
  padding: 60px 15px;
  z-index: 3;
  max-width: 1560px;
}
.contact-section .social {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #0B3A25;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-section .social img, .contact-section .social svg {
  max-width: 50%;
  max-height: 50%;
  height: auto;
  width: auto;
}
.contact-section .social img path, .contact-section .social svg path {
  fill: #9bc438;
}
.contact-section h2 {
  margin-bottom: 30px;
}
.contact-section .text-social {
  display: flex;
  align-items: flex-end;
}
.contact-section .text-social .text {
  margin-right: 25px;
}
.contact-section .text-social .text p {
  margin-bottom: 10px;
  font-size: 19px;
}
.contact-section form {
  margin-top: 40px;
}
.contact-section form > p {
  margin-bottom: 0.6rem;
}
.contact-section form > p:nth-last-of-type(2) {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.contact-section form > p:nth-last-of-type(3) {
  margin-bottom: 10px;
}
.contact-section a {
  color: #0B3A25;
}
.contact-section .stain {
  position: absolute;
  left: 0;
  top: -300px;
}
.contact-section .col-lg-6 {
  display: flex;
  justify-content: center;
}
.contact-section .left {
  max-width: 615px;
  margin: 0 auto;
}
.contact-section .details-social {
  display: flex;
  align-items: flex-end;
  margin: 25px 0;
}
.contact-section .details-social .details {
  margin-right: 20px;
}
.contact-section label {
  width: 100%;
  margin-bottom: 5px;
  max-width: 100%;
  font-size: 16px;
}
.contact-section .wpcf7-spinner {
  position: absolute;
  top: -10px;
  right: -10px;
}
.contact-section .image {
  height: 795px;
  width: 100%;
  border-radius: 30px;
  margin-top: -130px;
}
.contact-section form p:last-child {
  display: flex;
  justify-content: flex-end;
}
.contact-section input, .contact-section textarea {
  background-color: #fff;
  border: 0;
  color: #0B3A25;
  border-radius: 30px;
  padding: 10px;
  font-size: 17px;
  width: 100%;
  max-width: 100%;
}
.contact-section input[type=submit], .contact-section textarea[type=submit] {
  width: auto;
  padding: 10px 40px;
  background-color: #0B3A25;
  color: #9bc438;
}
.contact-section textarea {
  max-height: 100px;
}

.page-template-about-us .invest-section {
  min-height: 980px;
}
.page-template-about-us .invest-section .images {
  top: 375px;
}
.page-template-about-us .top-section {
  position: relative;
  z-index: 2;
}
.page-template-about-us .top-section h2 {
  margin-bottom: 50px;
}
.page-template-about-us .top-section .container {
  padding: 100px 15px 30px 15px;
  max-width: 1200px;
}
.page-template-about-us .top-section .single {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
.page-template-about-us .top-section .single:nth-of-type(even) {
  flex-direction: row-reverse;
}
.page-template-about-us .top-section .single:nth-of-type(even) .wrapper {
  padding-right: 0;
  padding-left: 40px;
}
.page-template-about-us .top-section .single:nth-of-type(even) .image {
  margin-left: 0;
  margin-right: 40px;
}
.page-template-about-us .top-section .single:last-of-type {
  margin-bottom: 0;
}
.page-template-about-us .top-section .single .wrapper {
  padding-right: 40px;
}
.page-template-about-us .top-section .single .image {
  height: 630px;
  border-radius: 30px;
  margin-left: 40px;
}
.page-template-about-us .invest-text {
  max-width: 755px;
  margin: 15px auto 25px auto;
  font-weight: 800;
}

.post-type-archive-team .container {
  max-width: 1200px;
}
.post-type-archive-team h2 {
  font-size: 3.1818rem;
}
.post-type-archive-team .team-section {
  position: relative;
  z-index: 3;
}
.post-type-archive-team .team-section .col-md-6 {
  margin-bottom: 40px;
}
.post-type-archive-team .team-section h2 {
  margin-bottom: 35px;
  font-weight: 100;
}
.post-type-archive-team .team-section .top-text {
  max-width: 755px;
  margin: 0 auto 60px auto;
  font-weight: bold;
}
.post-type-archive-team .team-section .main-image {
  width: 100%;
  height: 450px;
  border-radius: 30px;
  background-color: #D5D5D5;
  margin-bottom: 100px;
}
.post-type-archive-team .team-section .container {
  padding: 60px 15px;
}
.post-type-archive-team .single-category {
  margin-bottom: 80px;
}
.post-type-archive-team .single-category h2 {
  margin-bottom: 25px;
}
.post-type-archive-team .single-team .title {
  font-size: 1.5909rem;
}
.post-type-archive-team .single-team .top {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}
.post-type-archive-team .single-team .top .image {
  min-width: 275px;
  height: 340px;
  margin-right: 25px;
  border-radius: 30px;
}
.post-type-archive-team .single-team .top .role {
  margin: 8px 0;
}
.post-type-archive-team .single-team .top .email-link {
  display: flex;
}
.post-type-archive-team .single-team .top .email-link a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9bc438;
}
.post-type-archive-team .single-team .top .email-link .email {
  margin-right: 15px;
}

.criteria-section {
  position: relative;
  z-index: 3;
  background-color: #fff;
}
.criteria-section h2 {
  max-width: 900px;
  margin: 0 auto 50px auto;
  font-size: 2.2727rem;
}
.criteria-section .container {
  padding: 110px 15px;
  max-width: 1200px;
}
.criteria-section .criterias {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
}
.criteria-section .single {
  width: 45%;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-right: 10px;
  padding-bottom: 15px;
  border-bottom: 2px solid #E6E6E6;
  max-width: 470px;
}
.criteria-section .single .number {
  font-size: 9.0909rem;
  margin-right: 13px;
  line-height: 1;
  font-family: "DM Serif Display";
}

.page-template-cooperate .top-section {
  position: relative;
  z-index: 2;
}
.page-template-cooperate .top-section .container {
  padding: 120px 15px 70px 15px;
  max-width: 1200px;
}
.page-template-cooperate .top-section .bottom-text {
  font-size: 2.2727rem;
  margin-top: 120px;
}
.page-template-cooperate .top-section .single {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 120px;
}
.page-template-cooperate .top-section .single .small {
  line-height: 1.6;
}
.page-template-cooperate .top-section .single h2 {
  font-size: 2.1727rem;
  line-height: 1.25;
  margin-bottom: 10px;
}
.page-template-cooperate .top-section .single:nth-of-type(even) {
  flex-direction: row-reverse;
}
.page-template-cooperate .top-section .single:nth-of-type(even) .wrapper {
  padding-right: 0;
  padding-left: 40px;
}
.page-template-cooperate .top-section .single:last-of-type {
  margin-bottom: 0;
}
.page-template-cooperate .top-section .single .wrapper {
  padding-right: 40px;
}
.page-template-cooperate .top-section .single .image {
  height: 630px;
  border-radius: 30px;
}

.post-type-archive-news .news-section .container {
  max-width: 1200px;
  padding: 120px 0 50px 0;
}
.post-type-archive-news .news-section .col-lg-4 {
  margin-bottom: 60px;
}
.post-type-archive-news .news-section .single-news .image {
  height: 270px;
}

.post-type-archive-portfolio .main-section {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.post-type-archive-portfolio .main-section .container {
  padding: 70px 15px;
}
.post-type-archive-portfolio .main-section .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
.post-type-archive-portfolio .main-section .nav .single-nav {
  width: 31%;
  padding: 10px 13px;
  border: 2px solid #9bc438;
  background-color: #9bc438;
  border-radius: 35px;
  text-align: center;
  transition: 0.5s;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.post-type-archive-portfolio .main-section .nav .single-nav:hover {
  background-color: transparent;
  color: #9bc438;
}
.post-type-archive-portfolio .container {
  max-width: 1330px;
}
.post-type-archive-portfolio .top-text {
  max-width: 750px;
  margin: 0 auto 50px auto;
}
.post-type-archive-portfolio h2 {
  margin-bottom: 40px;
  font-size: 2.6727rem;
}
.post-type-archive-portfolio .single-category {
  margin-bottom: 80px;
}
.post-type-archive-portfolio .single-portfolio {
  display: flex;
  margin-bottom: 45px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E6E6E6;
  display: flex;
}
.post-type-archive-portfolio .single-portfolio a {
  color: #0B3A25;
}
.post-type-archive-portfolio .single-portfolio .blockquote {
  margin: 0;
}
.post-type-archive-portfolio .single-portfolio .icon-link {
  display: flex;
  align-items: center;
}
.post-type-archive-portfolio .single-portfolio .icon-link p {
  margin-bottom: 0;
}
.post-type-archive-portfolio .single-portfolio .icon-link svg {
  margin-right: 10px;
}
.post-type-archive-portfolio .single-portfolio .logo-wrapper {
  min-width: 375px;
  height: 230px;
  border-radius: 30px;
  margin-right: 30px;
  background-color: #fff;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.16);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.post-type-archive-portfolio .single-portfolio .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body.single-news .back {
  display: block;
  font-size: 22px;
  color: #0B3A25;
  font-weight: 600;
}
body.single-news .back.top {
  margin-bottom: 40px;
}
body.single-news .back.bottom {
  margin-top: 40px;
}
body.single-news h2 {
  margin-bottom: 25px;
}
body.single-news .main-section {
  position: relative;
  z-index: 3;
  margin-bottom: 100px;
}
body.single-news .main-section .container {
  padding: 80px 15px;
  max-width: 1100px;
  margin: 0 auto;
}
body.single-news .main-section .text {
  max-width: 800px;
  margin: 15px 0;
  line-height: 1.6;
}
body.single-news .main-section .image {
  width: 100%;
  height: 450px;
  border-radius: 30px;
  margin-bottom: 25px;
}

/****** General ******/
body #acwp-toolbar-btn-wrap {
  top: 170px !important;
  border-color: #0B3A25 !important;
}
body #acwp-toolbar-btn-wrap button {
  background: #0B3A25 !important;
}

.error-container {
  padding: 80px 15px;
  position: relative;
  background-color: #fff;
  z-index: 3;
}
.error-container h1 {
  margin-bottom: 40px;
  font-size: 2.7rem;
  text-align: center;
}
.error-container h1 a {
  color: #9bc438;
  font-weight: bold;
}
.error-container h2 {
  margin: 30px 0 10px 0;
  font-size: 1.7rem;
}

.eroror404 .error-container h1 {
  font-size: 2.2rem;
  text-align: center;
}

.accept {
  padding-left: 10px;
  margin-top: 40px;
}
.accept p:last-of-type {
  justify-content: flex-start !important;
}
.accept .privacy-policy-link {
  color: #fff;
}
.accept .wpcf7-form-control-wrap {
  display: flex;
}
.accept a {
  text-decoration: underline;
}
.accept .gdpr-label-text {
  font-size: 15px;
  line-height: 1.5;
  max-width: 375px;
}
.accept .wpcf7-checkbox {
  position: relative;
}
.accept .wpcf7-list-item {
  display: flex;
}
.accept label {
  max-width: 530px;
}
.accept .wpcf7-acceptance label::before, .accept .wpcf7-acceptance label::after {
  display: none;
}
.accept .wpcf7-acceptance label .gdpr-label-text {
  margin-top: 0;
}
.accept .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 10px;
}
.accept .wpcf7-acceptance::before,
.accept .wpcf7-checkbox::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #0B3A25;
  box-shadow: 1px 1px 3px rgba(11, 58, 37, 0.2);
}
.accept .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  margin-top: 3px;
  padding-left: 15px;
}
.accept .gdpr-checkbox {
  display: flex;
}
.accept input[type=checkbox] {
  opacity: 0;
  position: absolute;
  margin-top: 0 !important;
  top: 8px;
  left: -7px;
  cursor: pointer;
  width: auto;
  z-index: 99;
  width: 20px;
  height: 20px;
}
.accept input[type=checkbox]:checked + span::before {
  content: "✔";
  position: absolute;
  left: -3px;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  font-size: 15px;
  color: #0B3A25;
}

blockquote {
  margin: 0 !important;
}

.top-banner {
  position: relative;
  border-radius: 30px;
}
.top-banner .bg-color {
  opacity: 0.5;
  background-image: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0.5));
  border-radius: 30px;
}
.top-banner .bg-image {
  border-radius: 30px;
}
.top-banner .container {
  z-index: 3;
  padding: 200px 15px 140px 15px;
}
.top-banner h1 {
  font-size: 5rem;
  color: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #0B3A25;
  font-size: 16px;
  padding-left: 10px;
}

.wpcf7-not-valid-tip {
  position: absolute;
  font-size: 15px;
  left: 15px;
}

.not-slider .swiper-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.not-slider .swiper-wrapper .swiper-slide {
  width: auto !important;
}

.rights-credit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer {
  background-color: #0B3A25;
  width: calc(100vw - 53px);
  border-radius: 30px;
  color: #fff;
  margin: 20px auto;
  font-size: 15px;
  font-weight: 500;
}
footer a {
  color: #fff;
  font-weight: 500;
}
footer .container {
  padding: 15px 25px;
  max-width: 100%;
}

.read-more {
  display: inline-block;
  font-size: 0.75rem;
  background-color: rgb(152, 194, 56);
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  transition: 0.5s;
  font-weight: 500;
}
.read-more:hover, .read-more:focus {
  background-color: #0B3A25;
  color: #fff;
}

.reg-radius {
  border-radius: 30px;
}

.bold {
  font-weight: bold;
}

.light {
  font-weight: 400;
}

.med {
  font-weight: 500;
}

.big {
  font-size: 1.1364rem;
  line-height: 1.3;
}

.small {
  font-size: 0.85rem;
}

.center {
  text-align: center;
}

.white {
  color: #fff;
}

.primary {
  color: #9bc438;
}

.full-absolute {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.bg-image {
  background-position: center;
  background-size: cover;
}

.page-template-accessibility {
  direction: rtl;
}
.page-template-accessibility a.accessibility {
  margin-top: 5px;
  display: block;
}
.page-template-accessibility .main-container {
  padding: 70px 15px;
}
.page-template-accessibility h1 {
  text-align: center;
}
.page-template-accessibility h2 {
  font-size: 2rem;
  margin-top: 50px;
  text-align: right;
}
.page-template-accessibility p {
  text-align: right !important;
  line-height: 1.4;
}
.page-template-accessibility .content ul {
  direction: rtl;
  list-style: disc;
}
.page-template-accessibility .content ul p {
  text-align: right;
}
.page-template-accessibility .content ul li {
  font-size: 0.9rem;
  text-align: right;
  margin-bottom: 10px;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

/* Edit Above Only*/
.mobile_menu_button {
  position: relative;
  display: none;
}

.triggerMobileMenu {
  position: relative;
  width: 35px;
  height: 28px;
  padding: 0;
  border: 0;
  margin: 0 auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: none;
  text-indent: -99999px;
}

.triggerMobileMenu span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #9bc438;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.triggerMobileMenu span:nth-child(1) {
  top: 0px;
}

.triggerMobileMenu span:nth-child(2) {
  top: 11px;
}

.triggerMobileMenu span:nth-child(3) {
  top: 22px;
}

.triggerMobileMenu.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.triggerMobileMenu.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.triggerMobileMenu.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.button.triggerMobileMenu:focus,
.button.triggerMobileMenu:hover {
  background: none;
  outline: none;
}

/** off-cnavas (mobile menu wrapper) ****************/
.off-canvas {
  position: fixed;
  z-index: 1;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 9999;
  background: rgb(11, 58, 37);
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.off-canvas.is-open {
  z-index: 9999;
  background: rgb(11, 58, 37);
  transform: translate(0);
}

.position-left {
  transform: translateX(-100%);
  left: 0;
}

.position-right {
  transform: translateX(100%);
  right: 0;
}

body.admin-bar .off-canvas {
  top: 32px;
}

/** Mobile Menu Style **************/
.mobile_menu_holder {
  position: relative;
}

.mobile_menu_title {
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  padding: 10px 0;
  background: #9bc438;
  border-bottom: 1px solid #9bc438;
  font-weight: 500;
  color: #fff;
}

ul#mobile-menu {
  position: relative;
  display: block;
  width: 100%;
  list-style: none;
  padding: 50px 0 0 0;
}

ul#mobile-menu li {
  position: relative;
  display: block;
  text-align: center;
}

ul#mobile-menu > li {
  max-width: 90%;
  margin: 0 auto 10px auto;
}

ul#mobile-menu li a {
  position: relative;
  display: block;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 12px 10px 12px 15px;
  color: #fff;
}

ul#mobile-menu ul.sub-menu {
  position: relative;
  display: block;
  margin-left: 0;
  padding: 0;
}

ul#mobile-menu ul.sub-menu li a {
  padding: 0px 15px 10px 15px;
  font-size: 1.2rem;
  color: #fff;
}

ul#mobile-menu > li > a:focus,
ul#mobile-menu > li.current-menu-item > a,
ul#mobile-menu ul.sub-menu li.current-menu-item a,
ul.mobile_menu > li a:hover {
  color: #9bc438;
}

/****************************************************************************************************************/
@media only screen and (max-width: 1540px) {
  html {
    font-size: 18px;
  }
  ul#main-menu > li.contact {
    padding: 7px 0 7px 15px;
  }
  ul#main-menu > li.contact a {
    padding: 10px 20px 7px 20px;
  }
  ul#main-menu > li.menu-item-has-children::after {
    right: 30px;
  }
  .fixed-to-top {
    width: 50px;
    height: 50px;
  }
  .fixed-to-top::before {
    width: 17px;
    height: 17px;
    top: 61%;
    transform: translate(-50%, -50%) rotate(-135deg);
    border-right: 3px solid #0b3a25;
    border-bottom: 3px solid #0b3a25;
  }
  header .logo svg {
    max-width: 300px;
  }
  header.active .logo svg {
    max-width: 250px;
  }
  .top-banner h1 {
    font-size: 4rem;
  }
  .top-banner .container {
    padding: 150px 15px 25px 15px;
  }
  .page-template-about-us h2 {
    font-size: 2.6818rem;
  }
  .page-template-about-us .top-section .single .image {
    margin-left: 20px;
    height: 400px;
  }
  .page-template-about-us .top-section .single:nth-of-type(even) .wrapper {
    padding-left: 20px;
  }
  .page-template-about-us .top-section .single .wrapper {
    padding-right: 20px;
  }
  .page-template-about-us .top-section .single .image {
    margin-right: 20px;
  }
  .page-template-about-us .top-section .container {
    padding: 40px 15px 0px 15px;
  }
  .page-template-about-us .invest-section {
    min-height: 875px;
  }
  .page-template-about-us .invest-section .investions {
    margin: 20px auto 0 auto;
  }
  .page-template-about-us .invest-section .images {
    height: 400px;
    top: 420px;
  }
  .page-template-about-us .invest-section .container {
    padding-top: 2vw;
  }
  .page-template-cooperate .top-section .bottom-text {
    font-size: 1.7727rem;
    margin-top: 80px;
    margin-bottom: 50px;
  }
  .page-template-cooperate .top-section .single h2 {
    font-size: 1.8727rem;
  }
  .page-template-cooperate .top-section .single:nth-of-type(even) .wrapper {
    padding-left: 20px;
  }
  .page-template-cooperate .top-section .single .wrapper {
    padding-right: 20px;
  }
  .page-template-cooperate .top-section .single .image {
    height: 450px;
  }
  .page-template-cooperate .top-section .container {
    padding: 60px 15px;
  }
  .criteria-section .container {
    padding-top: 30px;
  }
  .criteria-section h2 {
    font-size: 1.6rem;
  }
  .criteria-section .single .number {
    font-size: 7.0909rem;
    margin-right: 8px;
  }
  .home h1 {
    font-size: 3.4364rem;
    max-width: 900px;
    margin-top: 50px;
  }
  .home h2 {
    font-size: 2.7818rem;
  }
  .home .top-section .sub {
    margin: 25px auto 35px auto;
  }
  .home .stain-section {
    height: 32vw;
  }
  .home .stain-section.bottom {
    height: 25vw;
  }
  .home .stain-section.bottom img {
    max-width: 72vw;
  }
  .home .portfolio-section h2 {
    margin-bottom: 30px;
  }
  .home .portfolio-section .single-portfolio {
    min-height: 210px;
    padding: 25px 15px;
  }
  .home .invest-section {
    min-height: 700px;
  }
  .home .invest-section .investions {
    margin: 30px auto 0 auto;
  }
  .home .invest-section .single-invest {
    padding: 20px 15px;
    min-height: 330px;
  }
  .home .invest-section .single-invest .title {
    margin-bottom: 15px;
    font-size: 0.9rem;
  }
  .home .invest-section .single-invest .text {
    font-size: 17px;
  }
  .home .invest-section .images {
    height: 380px;
    top: 210px;
  }
  .home .agrifood-section {
    padding-left: 10px;
  }
  .home .agrifood-section .image {
    max-width: 500px;
    height: 475px;
  }
  .home .cooperate-section .container {
    padding-top: 20px;
  }
  .home .cooperate-section .single {
    min-height: 480px;
  }
  .home .cooperate-section .single .plus {
    font-size: 47px;
    width: 40px;
    height: 40px;
    bottom: 33%;
  }
  .home .cooperate-section .single .title {
    font-size: 1.5727rem;
    line-height: 1.2;
  }
  .home .news-section .container {
    padding: 50px 15px;
  }
  .home .news-section .single-news .image {
    height: 230px;
  }
  .home .news-section .single-news .text {
    margin: 5px 0 20px 0;
  }
  .home .news-section .single-news .date {
    margin: 8px 0 7px 0;
  }
  .home .partners-section .container {
    padding: 25px 15px 15px 15px;
  }
  .home .partners-section .not-slider img {
    max-height: 140px;
    max-width: 200px;
    width: auto;
    height: auto;
  }
  .contact-section {
    margin-top: 130px !important;
  }
  .stain-section {
    height: 32vw;
  }
  .stain-section img {
    max-width: 70vw;
  }
  .post-type-archive-team .team-section .main-image {
    margin-bottom: 60px;
  }
  .post-type-archive-team .team-section .single-team .top .image {
    min-width: 230px;
    height: 275px;
  }
  .post-type-archive-team .team-section .container {
    padding: 40px 15px;
  }
  .post-type-archive-team .team-section .top-text {
    margin-bottom: 30px;
  }
  .post-type-archive-news .news-section .container {
    padding: 60px 15px;
  }
  .post-type-archive-news .news-section .single-news .image {
    height: 230px;
  }
  .post-type-archive-news .news-section .single-news .text {
    margin: 5px 0 20px 0;
  }
  .post-type-archive-news .news-section .single-news .date {
    margin: 8px 0 7px 0;
  }
  body.single-news .main-section .image {
    height: 350px;
  }
  .post-type-archive-portfolio .main-section .container {
    padding: 50px 15px;
  }
  .post-type-archive-portfolio .main-section .top-text {
    margin: 0 auto 40px auto;
  }
  .post-type-archive-portfolio .main-section .nav {
    justify-content: center;
    margin-bottom: 40px;
  }
  .post-type-archive-portfolio .main-section .nav .single-nav {
    width: auto;
    min-width: 400px;
    margin: 0 10px 20px 10px;
  }
  .post-type-archive-portfolio .main-section .single-portfolio {
    margin-bottom: 30px;
    padding-bottom: 25px;
  }
  .post-type-archive-portfolio .main-section .single-portfolio .logo-wrapper {
    min-width: 300px;
    height: 185px;
  }
  .post-type-archive-portfolio .main-section .single-portfolio .logo-wrapper img {
    max-width: 65%;
    max-height: 65%;
  }
}
/* end of (max-width: 1540px) */
/****************************************************************************************************************/
@media only screen and (max-width: 1200px) {
  .agrifood-section .image {
    height: 520px;
  }
  footer {
    width: calc(100vw - 30px) !important;
    padding: 0 15px;
  }
  section {
    width: calc(100vw - 30px);
  }
  .agrifood-section .row {
    flex-direction: column-reverse;
  }
  .agrifood-section .text {
    padding-top: 0;
  }
  .agrifood-section .right {
    padding-left: 0;
  }
  .agrifood-section .image {
    max-width: 100%;
    border-radius: 30px;
    padding-top: 0;
    position: relative;
    margin: 35px auto -70px 0;
    width: 97%;
    height: 231px;
    background-position: 10% 25%;
  }
  .home section.top-section {
    height: calc(100vh - 45px);
  }
  .home .cooperate-section .single {
    min-height: 250px;
    margin-bottom: 20px;
    padding: 25px 15px;
  }
  .home .cooperate-section .single .title {
    margin-bottom: 10px;
  }
  .home .cooperate-section .single .plus {
    bottom: 10%;
  }
  .home .cooperate-section .single .read-more {
    bottom: 20px;
  }
  header {
    width: calc(100vw - 30px);
  }
  body.single-news .main-section .container {
    padding: 40px 15px 10px 15px;
  }
  body.single-news #contact-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .invest-section .images {
    display: none;
  }
  .invest-section .investions {
    flex-direction: column;
  }
  .invest-section .investions .single-invest {
    max-width: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 75px;
    padding: 25px 15px;
  }
  .invest-section .investions .single-invest .title {
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  .invest-section .investions .single-invest .image {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 30px;
    position: relative;
    margin-bottom: -75px;
    margin-top: 25px;
  }
} /* end of (max-width: 1200px) */
/****************************************************************************************************************/
@media only screen and (max-width: 990px) {
  html {
    font-size: 17px;
  }
  header .social {
    display: none;
  }
  header .logo svg {
    max-width: 230px;
  }
  header.active .logo svg {
    max-width: 170px;
  }
  .mobile_menu_button {
    display: flex;
  }
  .wrap_main_menu {
    display: none;
  }
  body.admin-bar .off-canvas {
    top: 46px;
  }
  .home h1 {
    font-size: 3.0364rem;
    margin-top: 0;
  }
  .home .agrifood-section h2 {
    font-size: 2.1818rem;
  }
  .home .agrifood-section .container {
    padding: 50px 7px !important;
  }
  .home .agrifood-section .text {
    padding-left: 0;
    padding-right: 0;
  }
  .home .agrifood-section .right {
    padding-right: 10px;
  }
  .home .news-section .col-lg-4 {
    margin-bottom: 40px;
  }
  .home .news-section .single-news {
    height: auto;
  }
  .home .partners-section .single {
    height: 110px;
  }
  .post-type-archive-news .news-section .col-lg-4 {
    margin-bottom: 40px;
  }
  .post-type-archive-news .news-section .single-news {
    height: auto;
  }
  .contact-section {
    margin-bottom: 50px !important;
  }
  .contact-section h2 {
    margin-bottom: 15px;
  }
  .contact-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .contact-section .col-lg-6 {
    display: block;
  }
  .contact-section .image {
    height: 300px;
    width: 100%;
    border-radius: 30px;
    margin-top: 15px;
    margin-bottom: -90px;
  }
  .contact-section .text-social {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-section .left {
    max-width: 100%;
  }
  .top-banner h1 {
    font-size: 3.7rem;
  }
  .top-banner .container {
    padding: 115px 15px 15px 15px;
  }
  .page-template-about-us .contact-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-template-about-us .top-section h2 {
    margin-bottom: 20px;
  }
  .page-template-about-us .top-section .single {
    margin-bottom: 50px;
  }
  .page-template-about-us .top-section .single .wrapper {
    padding: 0 !important;
  }
  .page-template-about-us .top-section .single .image {
    height: 285px;
    margin-top: 10px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .page-template-cooperate .top-section .single {
    margin-bottom: 50px;
  }
  .page-template-cooperate .top-section .single .wrapper {
    padding: 0 !important;
  }
  .page-template-cooperate .top-section .single .image {
    height: 285px;
    margin-top: 10px;
  }
  .post-type-archive-team .contact-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .post-type-archive-team h2 {
    font-size: 2.3818rem;
    line-height: 1.2;
  }
  .post-type-archive-team .team-section .main-image {
    height: 350px;
  }
  .post-type-archive-team .team-section .col-md-6 {
    margin-bottom: 25px;
  }
  .post-type-archive-team .team-section .single-team .top .image {
    min-width: 180px;
    height: 210px;
  }
  .criteria-section .single .big {
    font-size: 0.9rem;
  }
  .criteria-section .single .number {
    font-size: 5.4rem;
  }
  .post-type-archive-portfolio .main-section .container {
    padding-left: 0;
    padding-right: 0;
  }
  .post-type-archive-portfolio .main-section .nav {
    flex-direction: column;
  }
  .post-type-archive-portfolio .main-section .nav .single-nav {
    min-width: 350px;
    margin: 0 0 15px 0;
    font-size: 16px;
  }
  body.single-news .main-section .image {
    height: 250px;
  }
  .stain-section.bottom img {
    max-width: 65%;
  }
} /* end of (max-width: 990px) */
/****************************************************************************************************************/
@media only screen and (max-width: 768px) {
  .criteria-section h2 {
    margin-bottom: 25px;
  }
  .criteria-section .criterias .single {
    width: 47%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    padding-right: 0px;
    padding-bottom: 8px;
    text-align: center;
  }
  .criteria-section .criterias .single .number {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .post-type-archive-portfolio .top-banner h1 {
    font-size: 2.9rem;
  }
  .post-type-archive-portfolio h2 {
    font-size: 1.6727rem;
  }
  .post-type-archive-portfolio .main-section .single-category {
    margin-bottom: 40px;
  }
  .post-type-archive-portfolio .main-section .single-portfolio {
    flex-direction: column;
    align-items: flex-start;
  }
  .post-type-archive-portfolio .main-section .single-portfolio h2 {
    margin-bottom: 25px;
  }
  .post-type-archive-portfolio .main-section .single-portfolio .logo-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
    min-width: 250px;
    width: 250px;
    height: 150px;
  }
} /* end of (max-width: 768px) */
/****************************************************************************************************************/
/* end of (max-width: 640px) */
/****************************************************************************************************************/
@media only screen and (max-width: 480px) {
  .fixed-to-top {
    bottom: 50px;
    right: 10px;
    width: 50px;
    height: 50px;
  }
  .fixed-to-top::before {
    width: 16px;
    height: 16px;
    top: 61%;
    transform: translate(-50%, -50%) rotate(-135deg);
    border-right: 3px solid #0B3A25;
    border-bottom: 3px solid #0B3A25;
  }
  body #acwp-toolbar-btn-wrap {
    top: auto !important;
    bottom: 50px !important;
    left: 10px !important;
  }
  .top-banner h1 {
    font-size: 3.2rem;
  }
  .home h1 {
    font-size: 2.2364rem;
    margin-top: 0;
  }
  .home h2 {
    font-size: 2.4818rem;
  }
  .home .top-section .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .home .top-section .top-gallery .desktop {
    display: none;
  }
  .home .top-section .top-gallery .mobile {
    display: block;
  }
  .home .top-section .sub {
    margin: 20px auto 25px auto;
  }
  .home .portfolio-section .single-portfolio {
    min-height: 170px;
  }
  .home .portfolio-section .single-portfolio img {
    max-height: 150px;
  }
  .home .agrifood-section .image {
    height: 230px;
    margin: 35px auto -70px 0;
  }
  .home .news-section .single-news .image {
    height: 180px;
  }
  .home .stain-section {
    height: 38vh;
  }
  .home .stain-section img {
    max-width: 115vw;
  }
  .home .stain-section.bottom {
    height: 38vh;
  }
  .home .stain-section.bottom img {
    max-width: 115vw;
  }
  .post-type-archive-news .top-banner h1 {
    font-size: 2.7rem;
  }
  .post-type-archive-news .news-section .single-news .text {
    margin: 4px 0 12px 0;
  }
  .post-type-archive-news .news-section .single-news .image {
    height: 180px;
  }
  .rights-credit {
    flex-direction: column;
  }
  .contact-section {
    margin-top: 40px !important;
  }
  .contact-section .image {
    height: 200px;
  }
  footer {
    border-radius: 45px;
    padding: 10px;
  }
  .page-template-about-us h2 {
    font-size: 2.3818rem;
  }
  .page-template-about-us .top-section .single .image {
    height: 230px;
    margin-top: 5px;
  }
  .page-template-cooperate .top-section .single .image {
    height: 230px;
    margin-top: 5px;
  }
  .post-type-archive-team .team-section .main-image {
    height: 250px;
  }
  .post-type-archive-team .team-section .single-category {
    margin-bottom: 10px;
  }
  .post-type-archive-team .team-section .single-team .top {
    flex-direction: column;
    align-items: flex-start;
  }
  .post-type-archive-team .team-section .single-team .top .image {
    margin-right: 0;
    margin-bottom: 10px;
    min-width: 160px;
    height: 180px;
  }
  .agrifood-section .stane {
    bottom: 99%;
  }
  .agrifood-section .stane img {
    min-width: 60vw;
  }
  body.single-news .main-section .image {
    height: 210px;
  }
  .post-type-archive-news .top-banner h1, body.single-news .top-banner h1 {
    font-size: 2.6rem;
  }
  .post-type-archive-news h2, body.single-news h2 {
    font-size: 2.3818rem;
  }
  .criteria-section h2 {
    font-size: 1.5818rem;
    margin-bottom: 10px;
  }
  .page-template-cooperate .top-banner h1 {
    font-size: 2.8rem;
  }
  .page-template-cooperate .top-section .container {
    padding-top: 40px;
  }
  .page-template-cooperate .top-section .single h2 {
    font-size: 1.5727rem;
  }
  .page-template-cooperate .top-section .bottom-text {
    font-size: 1.2727rem;
    margin-top: 50px;
    margin-bottom: 0px;
  }
  .page-template-accessibility .main-container {
    padding: 40px 15px;
  }
  .page-template-accessibility h2 {
    font-size: 1.2rem;
  }
  .contact-section {
    margin-top: 100px !important;
  }
  .contact-section .text-social .text p:nth-of-type(2) {
    max-width: 249px;
  }
  .contact-section .stane {
    left: -24vw;
    top: -43vw;
    height: 60vw;
  }
  .post-type-archive-portfolio .main-section .nav .single-nav {
    min-width: unset;
    width: 100%;
  }
} /* end of (max-width: 480px) */
/****************************************************************************************************************/
/* end of (max-width: 320px) */
/****************************************************************************************************************//*# sourceMappingURL=style.css.map */