/* ---------- GLOBAL ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Geologica';
  font-size: 24px;
  line-height: 34px;
  font-weight: 300;
  color: #223B86;
  background: #fff;
  overflow-x: hidden;
}

p {
  font-family: 'Geologica';
  font-size: 24px;
  line-height: 34px;
  color: #223B86;
  font-weight: 300;
  margin: 0px;
}

h1 {
  font-family: 'Geologica';
  font-size: 58px;
  line-height: 68px;
  font-weight: 600;
}

h2 {
  font-family: 'Geologica';
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
}

h3 {
  font-family: 'Geologica';
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1640px;
  margin: 0px auto;
  position: relative;
  padding: 0px 20px;
}

@font-face {
  font-family: 'Geologica';
  src: url('../fonts/Geologica-Bold.eot');
  src: url('../fonts/Geologica-Bold.eot?#iefix') format('embedded-opentype'),
    url('../Geologica-Bold.woff2') format('woff2'),
    url('../Geologica-Bold.woff') format('woff'),
    url('../Geologica-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geologica';
  src: url('../fonts/Geologica-SemiBold.eot');
  src: url('../fonts/Geologica-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../Geologica-SemiBold.woff2') format('woff2'),
    url('../Geologica-SemiBold.woff') format('woff'),
    url('../Geologica-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geologica';
  src: url('../fonts/Geologica-Medium.eot');
  src: url('../fonts/Geologica-Medium.eot?#iefix') format('embedded-opentype'),
    url('../Geologica-Medium.woff2') format('woff2'),
    url('../Geologica-Medium.woff') format('woff'),
    url('../Geologica-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geologica';
  src: url('../fonts/Geologica-Light.eot');
  src: url('../fonts/Geologica-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Geologica-Light.woff2') format('woff2'),
    url('../fonts/Geologica-Light.woff') format('woff'),
    url('../fonts/Geologica-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Segoe UI';
  src: url('../fonts/SegoeUI-Light.woff2') format('woff2'),
    url('../fonts/SegoeUI-Light.woff') format('woff'),
    url('../fonts/SegoeUI-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

.container.flex {
  display: flex;
  justify-content: space-between;
}

.container.flex>div {
  width: 100%;
  max-width: 50%;
}

.container.flex>div h2 {
  margin-bottom: 80px;
}

/* Header*/
header {
  background: #fff;
  width: 100%;
  z-index: 99;
  position: fixed;
  top: 0;
}

/* STICKY STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
header.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.logo img {
  float: left;
}

#main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hdr-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hdr-right nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

.hdr-right nav ul li a {
  font-size: 16px;
  color: #223B86;
  font-weight: 300;
  text-decoration: none;
  padding: 7px 25px;
  border-radius: 30px;
}
.hdr-right nav ul li.active a{
  background: #223B86;
  color: #fff;
}
.hdr-right nav ul li a:hover{
  background: #223B86;
  color: #fff;
}
.hdr-right nav ul li.active a {
  font-weight: bold;
  color: #fff;
}

.hdr-right nav ul li.contact a {
  background: #AECA37;
  width: 104px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  padding: 0px;
}

.hdr-right nav ul li.contact a:hover {
  background: #223B86;
  color: #fff;
}

.dropdown {
  position: relative;
  width: auto;
  cursor: pointer;
}

.dropdown-selected {
  display: flex;
  align-items: center;
  padding-right: 20px;
  font-size: 16px;
  background: url(../images/arrow.png) no-repeat 55px 9px;

}

.dropdown img {
  width: 19px;
  margin-right: 10px;
}

.dropdown-list {
  position: absolute;
  width: 100%;
  border: 1px solid #ccc;
  background: white;
  display: none;
  z-index: 10;
}

.dropdown-item {
  padding: 8px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.dropdown-item:hover {
  background: #f0f0f0;
}


/* Banner */
.banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.banner-image{
  height: 100%;
}
.banner-image img{
  height: 100%;
}
.banner img {
  width: 100%;
  float: left;
}

.wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  animation: waveAnimation 2s;
}

/* Wave animation */
@keyframes waveAnimation {
  0% {
    transform: translateY(100px);
  }

  100% {
    transform: translateY(0px);
  }
}

.banner-content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  text-align: center;
  margin-top: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  animation: fadeInUp 1.5s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-content h1,
.banner-content p,
.banner-content a {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s ease-out forwards;
}

.banner-content h1 {
  animation-delay: 1s;
}

.banner-content p {
  animation-delay: 1.5s;
}

.banner-content a {
  animation-delay: 2s;
}

.banner-content h1 {
  color: #fff;
}

.banner-content p {
  color: #fff;
  font-size: 36px;
  line-height: 56px;
  margin-top: 40px;
  margin-bottom: 70px;
  font-weight: 600;
}

.banner-content a {
  height: 53px;
  width: 170px;
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  text-decoration: none;
  border-radius: 40px;
  font-size: 18px;
  color: #223B86;
  line-height: 18px;
}

.banner-content a:hover {
  background: #223B86;
  color: #fff;
}

#we-found .content-block p {
  max-width: 647px;
}

#technology {
  padding: 101px 0px 20px;
}

#technology p {
  max-width: 544px;
}

#technology .clients ul {
  list-style: none;
  gap: 30px;
  display: flex;
  flex-direction: column;
  margin-right: 17px;
}

#technology .image-block {
  display: flex;
  align-items: center;
  max-width: 56%;
}

#innovation {
  background: #ECEDF2;
  padding: 82px 0px 42px;
}

#trusted {
  background: #e2e6ef;
  padding: 82px 0px 66px;
}

ul.cities {
  display: flex;
  align-items: center;
  list-style: none;
  margin-top: 20px;
  justify-content: flex-end;
}

.image-box1 {
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

#we-found .image-block {
  margin-top: -170px;
}

#innovation .content-block {
  text-align: right;
  padding-top: 80px;
  max-width: 53%;
}

#innovation .content-block p {
  margin-bottom: 20px;
}

#innovation .image-block {
  max-width: 38%;
}

#trusted .content-block {
  text-align: right;
  padding-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: end;
}

#trusted .content-block p {
  max-width: 654px;
  margin-bottom: 30px;
}

#advanced {
  padding: 101px 0px 250px;
}

#advanced .content-block {
  max-width: 35%;
}

#advanced .container.flex {
  align-items: center;
}

#advanced .content-block p {
  max-width: 497px;
}


section#discover {
  background: url(../images/background.jpg) no-repeat 0px 0px;
  display: inline-block;
  width: 100%;
  padding: 120px 0px;
  position: relative;
}

section#discover:before {
  content: '';

}

section#discover:before {
  content: '';
  background: #223B86B0;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

#discover h3 {
  color: #fff;
  margin-bottom: 80px;
}

#discover .contact-info ul {
  display: flex;
  list-style: none;
  gap: 75px;
}

#discover .contact-info ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#discover .contact-info ul li span img {
  float: left;
}

#discover .contact-info ul li a {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  text-decoration: none;
}

#discover .flex-box {
  display: flex;
  justify-content: space-between;
}

#discover .flex-box .contact-btn a {
  width: 187px;
  height: 29px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  color: #223B86;
  border-radius: 30px;
}


footer {
  background: #0F225A url(../images/footer-bg.png) no-repeat right center;
  position: relative;
  padding: 51px 0px 56px;
}
.menu.footer-item {
    margin-bottom: 100px;
}
.ftr-logo {
  display: inline-block;
  text-align: center;
  width: 100%;
}

footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 39px;
  list-style: none;
}

footer ul li a {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  text-decoration: none;
}
footer ul li a:hover {
    opacity: 0.5;
}
footer ul li.contact a {
  background: #AECA37;
  width: 112px;
  height: 35px;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  display: inline-block;
  text-align: center;
  border-radius: 30px;
}

footer ul li.profile {
  margin-left: 20px;
}

footer ul li.profile a {
  float: left;
  margin-top: 15px;
}

.subscribe {
  max-width: 612px;
  margin: 40px auto;
}

.subscribe form {
  border: 1px solid #fff;
  width: 100%;
  border-radius: 50px;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 8px;
}

.subscribe form input#email {
  width: calc(100% - 167px);
  background: none;
  border: 0px;
  outline: none;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  padding: 20px 30px;
  border-radius: 50px;
  font-family: 'Segoe UI';
}

.subscribe form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}

.subscribe form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}

.subscribe form :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}

.subscribe form :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

.subscribe form button {
  width: 167px;
  height: 53px;
  background: #fff;
  border-radius: 50px;
  font-size: 18px;
  color: #223B86;
  font-weight: 400;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  border: 0px;
}

.subscribe form button:hover {
  background: #000;
  color: #fff;
}

.copy {
  margin-top: 26px;
  display: inline-block;
  width: 100%;
}

.copy ul li {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 300;
  font-family: 'Segoe UI';
}

.copy ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 300;
  text-decoration: underline;
  font-family: 'Segoe UI';
}


/* About Us */
.about {
    padding: 98px 0px 64px;
    text-align: center;
}
.about h2{
  margin-bottom: 55px;
}
.about p {
    margin: 0px auto;
    max-width: 1287px;
}
.wisdom {
    background: #223B86;
    background: linear-gradient(0deg, rgba(34, 59, 134, 1) 70%, rgba(255, 255, 255, 1) 30%);
}
.wisdom ul{
 display: grid;
    justify-content: center;
    column-gap: 85px;
    row-gap: 85px;
    grid-template-columns: 1fr 1fr 1fr;
        max-width: 1259px;
    margin: 0px auto;
}
.wisdom ul li{
    text-align: center;
    list-style:none;
}
.wisdom ul li h3 {
    font-size: 35px;
    color: #b7c550;
    font-weight: bold;
    text-align: center;
    margin: 37px 0px 70px;
}
.biological{
  padding: 160px 0px 0px;
}
.biological h2 {
    text-align: center;
    margin-bottom: 50px;
}
.biological p{
    text-align: center;
    max-width: 1367px;
    margin: 0px auto;
}
.biological.flex {
    padding-top: 80px;
}
.biological ul{
    display: grid;
    justify-content: center;
    column-gap: 25px;
    row-gap: 25px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.biological ul li {
    background: #F2F2F2;
    background: linear-gradient(0deg, rgba(242, 242, 242, 1) 50%, rgba(34, 59, 134, 1) 50%);
    border-radius: 40px;
    list-style: none;
    text-align: center;
}
.biological ul li h4{
  font-size: 35px;
  color: #fff;
      margin: 49px 0px 35px;
}
.biological ul li img{}
.biological ul li p {
    margin: 53px 0px 47px;
    font-size: 18px;
    color: #000000;
}
.sustainable {
    display: inline-block;
    width: 100%;
    position: relative;
}
.sustainable img.abt-wv {
    float: left;
        width: 100%;
}
.sustain-content {
    display: inline-block;
    width: 100%;
    background: #dee2ed;
    padding: 64px 0px 112px;
}
.sustain-content .container {
    display: flex;
    gap: 144px;
}
.sustain-content h2{
  margin-bottom: 116px;
}
.sustain-content p{}
.sustain-content  .left-block {
    max-width: 1088px;
}
.sustain-content .right-block ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.sustain-content .right-block ul li{
  text-align: center;
}
.about-below img {
    width: 100%;
    float: left;
}
.reveal.abt .content-block.reveal-item {
    width: 100% !important;
    max-width: 42% !important;
}
.reveal.abt .content-block.reveal-item p {
    max-width: 100% !important;
}
.reveal.abt .image-block.reveal-item .image-box {
    text-align: center;
}
.market .container {
    max-width: 1432px;
}

#advanced.abt {
    padding-bottom: 0px;
}
/* Solutions */
#solution {
    padding: 20px 0px 100px;
}
.sol-content-block{
  text-align: right;
}
#solution .container.flex {
    align-items: center;
}
.global {
    padding: 161px 0px 67px;
}
.global .container{
  gap: 137px;
      max-width: 1300px;
}
.global .globel-left p {
    max-width: 643px;
}
.global h2 {
    margin-top: 30px;
}
.market {
    padding: 150px 0px 70px;
    text-align: center;
    background: #dee2ed;
}
.market h2{
  margin-bottom: 80px;
}
.market ul {
    display: grid;
    justify-content: center;
    column-gap: 25px;
    row-gap: 25px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.market ul li img{}
.market ul li h5{
  margin: 20px 0px 90px;
}
.market ul li h5 a {
    font-size: 20px;
    font-weight: 600;
    color: #223B86;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.market ul li h5 a svg{
  float: left;
}
.market ul li p {
    font-size: 20px;
    color: #000000;
    max-width: 280px;
    margin: 0px auto;
}
.discover {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 120px;
}
.discover a{
      background: #AECA37;
    color: #223B86;
    text-decoration: none;
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 30px;
}
.discover a:hover{
  background: #223B86;
    color: #fff;
}
#omega-text h2,
#omega-text p,
#omega-text{
  text-align: center;
}
#omega-text {
    padding: 140px 0px;
}
#omega-text h2{
  margin-bottom: 80px;
}
.nutrients {
    background: #f0f5db;
    padding: 62px 0px 122px;
}
.nutrients .heading {
    text-align: center;
}
.nutrients .heading h2{

}
.nutrients ul{
  position: relative;
  display: grid;
  justify-content: center;
  align-items: center;
  row-gap: 25px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-top: 51px;
}
.nutrients ul li{
  text-align: center;
  list-style: none;
  position: relative;
}
.nutrients ul:before{
    content: '';
    position: absolute;
    left: 10%;
    top: 100px;
    background: #AECA37;
    width: 90%;
    height: 27px;
}
.nutrients ul:after{
    background: url(../images/icon.png) no-repeat 0px 0px;
    content: '';
    position: absolute;
    right: -40px;
    top: 71px;
    width: 44px;
    height: 84px;
}
.nutrients ul li p {
    color: #000000;
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
    margin-top: 20px;
}
.add {
    display: inline-block;
    width: 100%;
        padding-right: 10%;
}
.box {
    align-items: center;
    float: right;
    clear: both;
    display: flex;
    gap: 31px;
    margin-top: 20px;
}
.add .pet {
    border-top: 0px;
    padding: 20px;
    text-align: center;
}
.add .pet p {
    color: #000000;
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
}
.more {
    display: flex;
    align-items: center;
    gap: 87px;
    width: 100%;
    max-width: 1341px;
    margin: 0px auto;
}
.nutrients .heading {
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more h2{
max-width: 310px;
    color: #AECA37;
    text-align: left;
    width: 100%;
}
.nutrients .options{
    width: 100%;
    max-width: 883px;
    margin-top: 60px;
}
.options ul {
    display: inline-block;
    text-align: center;
    align-items: center;
    width: 100%;
    border: 0px;
    padding: 0px;
}
.options li {
      display: inline-block;
  text-align: center;
  width: 24%;
      margin-bottom: 20px;
}

.nutrients .options ul:before,
.nutrients .options ul:after{
  display: none;
}
.nutrients .options ul li h5{
  color: #000000;
    font-size:14px;
    line-height: 28px;
    font-weight: 300;
    -webkit-text-stroke: .5px #AECA37;
}
.innerpg .banner-content h1{
  font-size: 58px;
  line-height: 68px;
}
.innerpg .banner-content p {
    max-width: 1110px;
    margin: 40px auto 70px;
}

/* Contact */
#contact {
    padding: 100px 0px;
}
#contact .touch {
    display: flex;
    width: 100%;
    gap: 120px;
}
#contact .touch > div{
    width: 100%;
    max-width: 50%;
}
.touch h2 span {
    color: #AECA37;
}
#contact .form-block h2 {
    margin-bottom: 45px;
}
.touch form .field-row{
  display: inline-block;
  width: 100%;
}
.touch form .field-row input{
  width: 100%;
}
.touch form .field-row textarea{
  width: 100%;
}
.touch form .field-row input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px 10px;
    font-size: 16px;
    font-family: 'Geologica';
    font-weight: 300;
}
.touch form .field-row{
  margin-bottom: 15px;
}
.touch form .field-row textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px 10px;
    font-size: 16px;
    font-family: 'Geologica';
    font-weight: 300;
    min-height: 120px;
}
.touch form .button-row button {
    background: #AECA37;
    color: #fff;
    height: 53px;
    width: 170px;
    margin: 0px auto;
    text-decoration: none;
    border-radius: 40px;
    border: 0px;
    text-transform: uppercase;
    font-family: 'Geologica';
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}
.touch form .button-row button:hover{
  background: #223B86;
}
ul.info {
    display: flex;
    list-style: none;
    gap: 40px;
    margin-top: 50px;
}
ul.info li > span img{
  width: 30px;
}
ul.info li {
    display: flex;
    align-items: center;
    gap: 15px;
}
ul.info li .detail span{
  
}
ul.info li .detail a{
  text-decoration: none;
}
ul.info li .detail {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
ul.info li .detail span{
  font-size: 20px;
  line-height: 20px;
      color: #000;
    text-transform: uppercase;
}
ul.info li .detail a{
  font-size: 17px;
  line-height: 20px;
  color: #223B86;
}










/* Media Queries */
@media only screen and (max-width: 1500px) {

  p {
    font-family: 'Geologica';
    font-size: 18px;
    line-height: 28px;
    color: #223B86;
    font-weight: 300;
    margin: 0px;
  }

  h1 {
    font-family: 'Geologica';
    font-size: 48px;
    line-height: 58px;
    font-weight: 600;
  }

  h2 {
    font-family: 'Geologica';
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
  }

  h3 {
    font-family: 'Geologica';
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
  }

  .banner-content p {
    color: #fff;
    font-size: 28px;
    line-height: 40px;
  }

  .image-box1 img {
    max-width: 40%;
  }

  #technology p {
    max-width: 404px;
  }

  #trusted .content-block p {
    max-width: 503px;
  }

  #advanced .content-block p {
    max-width: 385px;
  }

/*  .nutrients ul li img {
    max-width: 120px;
}*/
.nutrients ul:before {
    left: 8%;
}
    .nutrients ul:after {
right: -13px;
        top: 71px;
        background-size: contain;
    }

}

/* FIX LOGO SIZE – ALL LANGUAGES */

#main-header .logo {
  flex-shrink: 0;
}
#main-header .logo img {
  height: 40px;   /* try 48–52 */
  width: auto;
  max-width: none;
}
#main-header {
  padding: 20px 0;
}

@media only screen and (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
  header {
    padding: 10px 0px;
}

  .hdr-right nav ul {
    gap: 10px;
  }
  .hdr-right nav ul li a{
    padding: 7px 11px;
  }

  #discover .contact-info ul li a {
    font-size: 16px;
  }

  #discover .contact-info ul {
    gap: 10px;
  }

  #discover .flex-box .contact-btn a {
    width: 147px;
  }


.nutrients ul li img {
    max-width: 120px;
}
.nutrients ul:before {
    left: 8%;
    top: 72px;
    height: 15px;
}
    .nutrients ul:after {
        right: -13px;
        top: 47px;
        width: 34px;
        height: 64px;
        background-size: contain;
    }
#contact .touch {
    gap: 40px;
}

}

@media only screen and (max-width: 1023px) {
  p {
    font-size: 16px;
  }

  .container {
    max-width: 750px;
  }

  h1 {
    font-size: 31px;
    line-height: 44px;
  }

  .banner-content p {
    font-size: 18px;
    line-height: 30px;
  }

  .image-box1 img {
    max-width: 40%;
  }

  #innovation .content-block {
    padding-top: 0;
  }

  #technology .container {
    gap: 50px;
  }

  #trusted .content-block {
    padding-top: 0px;
  }

  .container.flex>div {
    max-width: 60%;
  }

  .container.flex .image-block {
    max-width: 40%;
  }

  h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .container.flex>div h2 {
    margin-bottom: 40px;
  }

  ul.cities img {
    max-width: 132px;
  }

  #advanced .content-block {
    max-width: 100%;
  }

  #advanced {
    padding: 50px 0px 90px;
  }

  #discover .flex-box {
    flex-direction: column;
    gap: 20px;
  }

  #discover .contact-info ul li a {
    font-size: 14px;
  }

  footer ul {
    gap: 25px;
  }


  .hdr-right nav ul li a {
        font-size: 13px;
        padding: 7px 4px;
    }

  .hdr-right nav ul {
    gap: 14px;
  }

  header {
    padding: 15px 0px;
  }
  .banner-image {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.banner-image img {
    float: left;
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: left;
}
.biological ul {
    grid-template-columns: 1fr 1fr;
}
.sustain-content .right-block {
    width: 100%;
}
.wisdom ul li h3 {
    font-size: 20px;
}
.market ul{
   grid-template-columns: 1fr 1fr;
}
.nutrients ul li img {
    max-width: 90px;
}
.nutrients ul:before {
    left: 8%;
    top: 53px;
    height: 15px;
}
.nutrients ul:after {
    right: -8px;
    top: 37px;
    width: 24px;
    height: 64px;
    background-size: contain;
}
.nutrients ul li p {
    font-size: 18px;
}

}





@media only screen and (max-width: 767px) {
  .innerpg .banner-content h1 {
    font-size: 31px;
    line-height: 48px;
}
.mobile-nav {
        display: block;
    }
    nav:not(.mobile-nav) ul {
        display: none;
    }

  .hdr-right nav ul {
    gap: 0;
    flex-direction: column;
  }

  .hdr-right nav ul li a {
    font-size: 16px;
  }

  .hdr-right nav ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }

  .subscribe form button {
     line-height: 45px;
  }
.subscribe form {
        display: flex;
        flex-direction: column;
        padding: 0px;
        gap: 15px;
    }
  .subscribe form input#email {
    width: 100%;
  }

  .banner-content a {
    height: 40px;
    width: 150px;
    font-size: 16px;
  }

  .container.flex>div {
    max-width: 100%;
    text-align: center;
  }

  .container.flex {
    flex-direction: column;
  }
  #advanced .container.flex{
    gap: 40px;
  }

  #innovation .content-block,
  #innovation .image-block {
    max-width: 100%;
    text-align: center;
  }

  #innovation .content-block {
    text-align: center;
  }

  #innovation .container.flex,
  #trusted .container.flex {
    flex-direction: column-reverse;
  }

  #we-found .image-block {
    margin-top: 20px;
  }

  .image-box1 img {
    max-width: 100%;
  }
section#we-found {
    padding-top: 80px;
}
  #technology .image-block {
    align-items: center;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  ul.cities {
    width: 100%;
    justify-content: center;
  }

  #trusted .content-block {
    text-align: center;
  }

  .container.flex .image-block {
    max-width: 100%;
  }

  #discover h3 {
    text-align: center;
  }

  .contact-btn {
    text-align: center;
    width: 100%;
    display: inline-block;
  }

  #discover .flex-box .contact-btn a {
    margin: 0px auto;
  }

  #discover .contact-info ul {
    gap: 10px;
    flex-direction: column;
  }

  footer ul li.profile {
    margin-left: 0;
  }

  footer ul {
    gap: 5px;
    flex-direction: column;
  }

.banner-image {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.banner-image img {
    float: left;
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: left;
}
.menu.footer-item nav ul,
.menu.footer-item nav {
    display: flex;
}


/* Hamburger Icon Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.hamburger .bar {
  width: 100%;
  height: 4px;
  background-color: #333;
}


/* Menu Css */
/* ------------- MOBILE MENU CORE ------------- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    padding: 100px 40px;
    opacity: 0;
    pointer-events: none;
    clip-path: circle(0 at 90% -10%);
    transition: clip-path 0.8s ease-out, opacity 0.4s ease-out;
    z-index: 999;
}

/* Menu visible */
#main-header.is-open .mobile-nav {
    pointer-events: all;
    opacity: 1;
    clip-path: circle(150% at 90% -10%);
}

/* ------------- MENU ITEMS ------------- */
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    opacity: 0;
    transform: translateY(20px);
    margin-bottom: 25px;
    transition: all .6s ease-out;
}

#main-header.is-open .mobile-nav ul li {
    opacity: 1;
    transform: translateY(0);
}

/* staggered fade */
#main-header.is-open .mobile-nav ul li:nth-child(1) { transition-delay: .3s; }
#main-header.is-open .mobile-nav ul li:nth-child(2) { transition-delay: .4s; }
#main-header.is-open .mobile-nav ul li:nth-child(3) { transition-delay: .5s; }
#main-header.is-open .mobile-nav ul li:nth-child(4) { transition-delay: .6s; }
#main-header.is-open .mobile-nav ul li:nth-child(5) { transition-delay: .7s; }

.mobile-nav ul li a {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

#nav-icon2 {
  width: 20px;
    height: 15px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon2 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: #223B86;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1),
#nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3),
#nav-icon2 span:nth-child(4) {
  top: 6px;
}

#nav-icon2 span:nth-child(5),
#nav-icon2 span:nth-child(6) {
  top: 12px;
}
.logo, .language,
#nav-icon2.open {
    z-index: 99999;
}
#nav-icon2.open span:nth-child(1),
#nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),
#nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 0px;
  top: 3px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 3px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 0px;
    top: 8px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 8px;
}
    .wisdom {
        background: #223B86;
        padding-top: 50px;
    }
.wisdom ul,
.biological ul {
    grid-template-columns: 1fr;
    list-style: none;
}
    .wisdom ul, .biological ul {
        row-gap: 25px;
    }
.wisdom ul li{
  text-align: center;
}
.reveal.abt .content-block.reveal-item {
    max-width: 100% !important;
}
.sustain-content .container{
  flex-direction: column;
  gap: 20px;
}
.sustain-content h2 {
    margin-bottom: 20px;
    text-align: center;
}
.sustain-content p {
    text-align: center;
}
.biological {
    padding: 50px 0px 0px;
}
    .market ul {
        grid-template-columns: 1fr;
    }
    .market ul li h5{
      margin-bottom: 30px;
    }
    .global {
    padding: 50px 0px 50px;
}
.global .container{
  gap: 50px;
}
.market{
  padding-top: 50px;
}
#solution .image-box img {
    max-width: 200px;
}
#omega-text {
    padding: 50px 0px;
}
.nutrients ul{
  grid-template-columns: 1fr;
}
.nutrients ul:before,
.nutrients ul:after{
  display: none;
}
.nutrients ul:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 100px;
    background: #AECA37;
    width: 27px;
    height: 100%;
    margin-left: -13px;
}
.more {
    gap: 30px;
    flex-direction: column;
    margin-top: 30px;
}
.options li {
    width: 49%;
}
#contact .touch{
  flex-direction: column;
}
#contact .touch > div {
    width: 100%;
    max-width: 100%;
}
ul.info{
  flex-direction: column;
}
#contact .touch .map img {
    width: 100%;
}
#contact .touch .map iframe{
  height: 300px;
}
    .hdr-right nav ul li a {
        padding: 7px 44px;
    }
    .more h2{
        text-align:center;
    }
    .menu.footer-item {
        margin-bottom: 0px;
    }
}


@media only screen and (max-width: 380px) {
  .biological ul li img,
  .wisdom ul li img{
    max-width: 200px;
  }
}
