@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
}

:root {
  --white-color: #ffffff;
  --blue-color: rgb(0, 57, 93);
  --light-blue-color: #00588e;
  --ash-color: #576269;
  --color-orange: #ef4623;
  --light-ash-color: #d9d9d9;
  --yellow-color: #ffd400;
  --green-color: rgb(0, 88, 88);
  --light-green-color: rgb(239, 250, 242);
  --theme-green-color: rgb(0, 135, 95);
}

html,
body {
  font-family: "Open Sans", serif;
  font-style: normal;
  font-optical-sizing: auto;
  letter-spacing: 0.6px;
  /* overflow-X: hidden; */
  position: relative;
}

.theme-green-color-bg {
  background-color: var(--theme-green-color);
}
.theme-green-color-text {
  color: var(--theme-green-color);
}

.white-color-text {
  color: var(--white-color);
}
.white-color-bg {
  background-color: var(--white-color);
}

.blue-color-text {
  color: var(--blue-color);
}
.blue-color-bg {
  background-color: var(--blue-color);
}
.light-blue-color-bg {
  background-color: var(--light-blue-color);
}

.ash-color-text {
  color: var(--ash-color);
}
.ash-color-bg {
  background-color: var(--ash-color);
}

.green-color-bg {
  background-color: var(--green-color);
}
.green-color-text {
  color: var(--green-color);
}

.light-green-color-bg {
  background-color: var(--light-green-color);
}

.yellow-color-bg {
  background-color: var(--yellow-color);
}
.yellow-color-text {
  color: var(--yellow-color);
}

a,
a:active,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  color: var(--white-color);
}

body {
  font-size: 16px;
  color: var(--white-color);
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

h5 {
  font-size: 20px;
  font-weight: 700;
}
h2 {
  font-size: 36px;
  font-weight: 700;
}
h3 {
  font-size: 32px;
  font-weight: 700;
}

p {
  font-size: 18px;
  font-weight: 400;
}

h6 {
  font-size: 18px;
  font-weight: 600;
}

.big-text {
  font-size: 24px;
  letter-spacing: 0.6px;
  line-height: 32px;
}

@media only screen and (max-width: 991px) {
  h5 {
    font-size: 20px;

  }
  h2 {
    font-size: 28px;

  }
  h3 {
    font-size: 24px;

  }
  
  p {
    font-size: 16px;

  }
  
  h6 {
    font-size: 18px;

  }

  .big-text {
    font-size: 20px;
    letter-spacing: 0.6px;
    line-height: 32px;
  }
}

@media only screen and (max-width: 575px) {
  h5 {
    font-size: 18px;

  }
  h2 {
    font-size: 25px;

  }
  h3 {
    font-size: 22px;

  }
  
  p {
    font-size: 16px;

  }
  
  h6 {
    font-size: 16px;
    font-weight: 700;

  }


}





/* button */

.effect {
 text-align: center;
 display: inline-block;
 position: relative;
 text-decoration: none;
 color: var(--white-color);
 text-transform: capitalize;
 /*background-color:;
 -addyourownbackground-color*/padding: 20px 0px;
 width: max-content;
 border-radius: 39px;
 overflow: hidden;
 padding: 10px 36px;
 -webkit-border-radius: 39px;
 -moz-border-radius: 39px;
 -ms-border-radius: 39px;
 -o-border-radius: 39px;
 background-color: var(--color-orange);
 font-size: 18px;
 font-weight: 600;
 text-transform: uppercase;
 transition: .3s all ;
 -webkit-transition: .3s all ;
 -moz-transition: .3s all ;
 -ms-transition: .3s all ;
 -o-transition: .3s all ;
}
.effect-green {
  text-align: center;
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: var(--white-color);
  text-transform: capitalize;
  /*background-color:;
  -addyourownbackground-color*/padding: 20px 0px;
  width: max-content;
  border-radius: 39px;
  overflow: hidden;
  padding: 10px 36px;
  -webkit-border-radius: 39px;
  -moz-border-radius: 39px;
  -ms-border-radius: 39px;
  -o-border-radius: 39px;
  background-color: var(--theme-green-color);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition: .3s all;
  -webkit-transition: .3s all;
  -moz-transition: .3s all;
  -ms-transition: .3s all;
  -o-transition: .3s all;
}

.effect.effect-5 {
  transition: all 0.2s linear 0s;
  position: relative;
}

.effect.effect-5:before {
  content: "\f054";
  font-family: FontAwesome;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0 50% 50% 0;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: all 0.2s linear 0s;
}
.effect.effect-5:hover {
  text-indent: 30px;
}
.effect.effect-5:hover:before {
  transform: scale(1, 1);
  text-indent: 0;
}









.effect.effect-5 {
  transition: all 0.2s linear 0s;
  position: relative;
}

.effect-green.effect-5:before {
  content: "\f054";
  font-family: FontAwesome;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0 50% 50% 0;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: all 0.2s linear 0s;
}
.effect-green.effect-5:hover {
  text-indent: 30px;
}
.effect-green.effect-5:hover:before {
  transform: scale(1, 1);
  text-indent: 0;
}


.text-justify {
  text-align: justify;
}



/* .preloader {
  position: fixed;
  background-color: var(--white-color);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.preloader img {
  height: 250px;
  width: 250px;
} */


/* preloader start */

@-webkit-keyframes flower {
  0%, 10% {
    transform: rotate(120deg);
  }
  45%, 55% {
    transform: rotate(90deg);
  }
  90%, 100% {
    transform: rotate(60deg);
  }
}
@-moz-keyframes flower {
  0%, 10% {
    transform: rotate(120deg);
  }
  45%, 55% {
    transform: rotate(90deg);
  }
  90%, 100% {
    transform: rotate(60deg);
  }
}
@keyframes flower {
  0%, 10% {
    transform: rotate(120deg);
  }
  45%, 55% {
    transform: rotate(90deg);
  }
  90%, 100% {
    transform: rotate(60deg);
  }
}


.bodypre {
  position: fixed;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  background: var(--light-green-color);
  text-align: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 100000;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
  padding-left: 75px;
}

i#test {
  display: inline-block;
  width: 0;
  height: 0;
  padding: 40px 20px;
  background: transparent;
  transform: rotate(120deg);
  border-top-left-radius: 99px;
  border-bottom-right-radius: 99px;
  box-shadow: var(--theme-green-color) 0 0 30px;
  -webkit-animation: flower 3s ease-in-out infinite alternate;
  -moz-animation: flower 3s ease-in-out infinite alternate;
  animation: flower 3s ease-in-out infinite alternate;
}

i#test ~ ii#test:nth-child(odd),
ii#test ~ ii#test:nth-child(odd) i {
  transform: rotate(90deg);
  animation-delay: -1.5s;
}

ii#test ~ ii#test:nth-child(even),
ii#test ~ ii#test:nth-child(even) i#test {
  transform: rotate(60deg);
  margin-right: 0;
  animation-delay: -3s;
}

.bodypre > ii#test {
  margin: 0 80px;
}

ii#test:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-style: solid;
  border-width: 20px 20px;
  border-color: var(--theme-green-color) var(--theme-green-color) transparent transparent;
}

.innerpre {
  /* margin: auto; */
}
/* po=reloader end  */


/* navbar */

.top-bar-right p{
margin: unset  !important;
font-size: 16px;
}

.top-bar-right i{
  font-size: 18px;
}

nav {
  /* position: fixed;
    z-index: 99;
    width: 100%; */
  background: var(--white-color);
  color: var(--ash-color);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.wrapper .logo a {
  color: #f2f2f2;
  /* font-size: 30px; */
  font-weight: 600;
  text-decoration: none;
}



.navbar-expand-lg .navbar-nav .nav-link {
  color: var(--blue-color);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;


  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link.show {
  color: var(--light-blue-color);
  font-weight: 600;
  /* text-decoration: underline; */
}
.navbar-nav .nav-item:hover .nav-link {
  color: var(--white-color);
  background-color: var(--blue-color);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.navbar-nav
  .nav-item:hover
  .nav-link:where(.navbar-nav .nav-item .nav-link.active) {
  color: var(--white-color);
  background-color: var(--theme-green-color);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.wrapper .btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
  z-index: 1000;
}

nav input {
  display: none;
}

.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}

.navbar-brand{
padding: unset !important;
}

.navbar-brand img{
width: 150px;
}

/* Navbar ends */

/* footer starts  */

.site-footer {
  position: relative;
  display: block;
  background: var(--blue-color);
  padding: 70px 0 10px;
}
.site-footer_farm_image {
  position: absolute;
  bottom: -22%;
  right: -1%;
  opacity: 0.07;
  z-index: 0;
}

.footer-widget__column.margin_left_30 {
  margin-left: 30px;
}

.footer-widget__about {
  margin-right: 70px;
  background: var(--yellow-color);
  border-radius: 5px;
  padding: 16px;
  color: var(--ash-color);
  min-height: 195px;
}

.footer-widget__about_subscribe {
  /* width: 80%; */
  /* background: var(--thm-base); */
  /* border-radius: 8px; */
  padding: 8px;
  text-align: center;
}

.footer-widget__about p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 20px;
}

.footer-widget__about_subscribe a {
  font-size: 20px;
  font-weight: 500;
  color: var(--thm-black);
}

.footer-widget__title {
  position: relative;
  display: block;
  margin-bottom: 36px;
}
.footer-widget__title h3 {
  color: #ffffff;
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-widget__title:before {
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 4px;
  width: 20px;
  background: var(--thm-base);
  content: "";
  border-radius: 5px;
}

.footer-widget_about_text p {
  color: #c5c9c4;
  font-size: 16px;
  margin: 0;
}

.footer-acknowledgement {
  margin-right: 70px;
  border: 1px solid var(--thm-base);
  border-radius: 5px;
}

.footer-acknowledgement .image-left {
  height: 100%;
}

.footer-acknowledgement .acknowledge-content p {
  font-size: 14px;
  line-height: 1.2em;
  margin-bottom: 0;
  color: var(--thm-base);
}

.footer_input-box {
  position: relative;
  display: block;
  margin-top: 29px;
}
.footer_input-box input {
  height: 70px;
  width: 100%;
  background: #394336;
  border: none;
  padding: 0 30px;
  border-radius: 5px;
}

.footer_input-box input[type="Email"] {
  font-size: 16px;
  color: #c5c9c4;
  height: 70px;
  width: 100%;
  background: #394336;
  border: none;
  padding: 0 30px;
  border-radius: 5px;
}
.footer_input-box .button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 5px;
  background: #394336;
}
.footer_input-box .button i {
  color: var(--thm-base);
}

.footer_input-box input[type="email"]:focus {
  outline: none;
}
.footer_input-box input[type="email"]::-webkit-input-placeholder {
  color: #c5c9c4;
}
.footer_input-box input[type="email"]:-moz-placeholder {
  color: #c5c9c4;
}
.footer_input-box input[type="email"]::-moz-placeholder {
  color: #c5c9c4;
}
.footer_input-box input[type="email"]:-ms-input-placeholder {
  color: #c5c9c4;
}

.footer-widget__links-list li a {
  position: relative;
  color: #c5c9c4;
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.footer-widget__links-list li a:hover {
  padding-left: 15px;
  color: var(--thm-primary);
}
.footer-widget__links-list li a::before {
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--thm-base);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.footer-widget__links-list li a:hover::before {
  opacity: 1;
}
.footer-widget__news {
  position: relative;
  display: block;
  margin: 0;
  padding-top: 2px;
  margin-left: 7px;
}
.footer-widget__news li {
  position: relative;
  display: block;
  padding-left: 70px;
  padding-bottom: 28px;
}
.footer-widget__news_image {
  position: absolute;
  left: 0;
  top: 10px;
  display: block;
  overflow: hidden;
  height: 50px;
  width: 50px;
  border-radius: 5px;
}
.footer-widget__news_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.footer-widget__news_image img:hover {
  opacity: 0.5;
}

.footer-widget__news_text p {
  margin: 0;
  line-height: 29px;
}
.footer-widget__news_text a {
  color: #c5c9c4;
  font-size: 16px;
  transition: 500ms;
}
.footer-widget__news_text a:hover {
  color: #fff;
}

.footer-widget__news_date_box p {
  font-size: 14px;
  color: var(--thm-base);
  font-weight: 600;
  margin: 0;
}
.footer-widget__contact {
  padding-left: 50px;
}
.footer-widget_contact p {
  color: #c5c9c4;
  font-size: 16px;
  margin: 0;
  margin-bottom: 4px;
}
.footer-widget_contact a {
  color: var(--thm-base);
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.footer-widget_contact a:hover {
  color: var(--thm-primary);
}
.site-footer__social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 19px;
}

.site-footer__social a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  width: 45px;
  height: 45px;
  background-color: #fff;
  color: var(--thm-black);
  font-size: 16px;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__social a + a {
  margin-left: 10px;
}

.site-footer__social a:hover {
  background-color: var(--thm-primary);
  color: #ffffff;
}

.site-footer_bottom {
  position: relative;
  display: block;
  padding: 28px 0 29px;
  background: #394336;
}
.site-footer_bottom .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.site-footer_bottom_copyright p {
  color: #c5c9c4;
  font-size: 16px;
  margin: 0;
}
.site-footer_bottom_copyright a {
  color: #c5c9c4;
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.site-footer_bottom_copyright a:hover {
  color: var(--thm-base);
}

.site-footer_bottom_menu ul {
  margin: 0;
}
.site-footer_bottom_menu ul li {
  display: inline-block;
  margin-right: 20px;
}
.site-footer_bottom_menu ul li:last-child {
  margin-right: 0;
}
.site-footer_bottom_menu ul li a {
  color: #c5c9c4;
  font-size: 16px;
  display: inline-block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.site-footer_bottom_menu ul li a:hover {
  color: var(--thm-base);
}

.site-footer.site-footer_two {
  background: none;
}
.site-footer_farm_image.site-footer_two_img {
  opacity: 1;
}

.site-footer.site-footer_two .footer-widget__title h3 {
  color: var(--thm-black);
}
.site-footer.site-footer_two .footer-widget_about_text p {
  color: #090909;
}
.site-footer.site-footer_two .footer_input-box input[type="Email"] {
  background: #f5f0e9;
}
.site-footer.site-footer_two .footer_input-box .button {
  background: #f5f0e9;
}
.site-footer.site-footer_two .footer_input-box .button i {
  color: var(--thm-primary);
}
.site-footer.site-footer_two .footer_input-box input[type="email"]:focus {
  outline: none;
}
.site-footer.site-footer_two
  .footer_input-box
  input[type="email"]::-webkit-input-placeholder {
  color: #090909;
}
.site-footer.site-footer_two
  .footer_input-box
  input[type="email"]:-moz-placeholder {
  color: #090909;
}
.site-footer.site-footer_two
  .footer_input-box
  input[type="email"]::-moz-placeholder {
  color: #090909;
}
.site-footer.site-footer_two
  .footer_input-box
  input[type="email"]:-ms-input-placeholder {
  color: #090909;
}

.footer-widget__links-list.type2 li a {
  color: #090909;
}
.site-footer.site-footer_two .footer-widget__news_text a {
  color: #090909;
}
.site-footer.site-footer_two .footer-widget__news_date_box p {
  color: var(--thm-primary);
}
.site-footer.site-footer_two .footer-widget_contact p {
  color: #090909;
}
.site-footer.site-footer_two .footer-widget_contact a {
  color: var(--thm-primary);
}
.site-footer.site-footer_two .footer-widget_contact a:hover {
  color: var(--thm-base);
}
.site-footer.site-footer_two .site-footer__social a {
  background: var(--thm-black);
  color: #ffffff;
}
.site-footer.site-footer_two .site-footer__social a:hover {
  color: #ffffff;
  background: var(--thm-primary);
}
.site-footer_bottom.site-footer-bottom-two {
  background: #f5f0e9;
}
.site-footer_bottom.site-footer-bottom-two .site-footer_bottom_copyright p {
  color: #090909;
}
.site-footer_bottom.site-footer-bottom-two .site-footer_bottom_copyright a {
  color: #090909;
}
.site-footer_bottom.site-footer-bottom-two .site-footer_bottom_menu ul li a {
  color: #090909;
}
.site-footer_bottom.site-footer-bottom-two
  .site-footer_bottom_menu
  ul
  li
  a:hover {
  color: var(--thm-primary);
}

.footer-bottom-right i{
  font-size: 30px;
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
}

.footer-bottom-right i:hover{
  color: var(--yellow-color);
  
}


@media only screen and (max-width: 991px) {
  .footer-widget__contact {
    padding-left: 0;
  }

  .footer-widget__title {

    margin-bottom: 20px;
  }

  hr{
    margin: 2rem 0 !important;
  }

  .footer-widget__about {
    margin-right: 0;
    background: var(--yellow-color);
    border-radius: 5px;
    padding: 16px;
    color: var(--ash-color);
  }
}






.cta_three_btn .thm-btn {
  background: var(--blue-color);
  color: #ffffff;

}

.thm-btn {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  background-color: var(--thm-base);
  font-size: 20px;
  color: var(--thm-black);
  font-weight: 600;
  padding: 23px 50px;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sign-up-btn {
  padding: 13px 40px;
}

/* footer ends  */

/* universal */

.hero {
  height: 100vh;
  background-color: var(--blue-color);
  /* background: black; */
  position: relative;
}



.hero-content h1 {
  font-size: 80px;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-content p {
  width: 55%;
  font-size: 22px;
  font-weight: 500;
  margin-top: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.curved-bg {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

@media only screen and (max-width: 1399px) {
  .hero-content h1 {
    font-size: 60px;
    color: #ffffff;
  }
}
@media only screen and (max-width: 1199px) {


  .hero-content p {
    width: 60%;
    font-size: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .hero {
    height: 100vh;
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5)),
      url(/assets/images/hero/mobile-hero-four.jpg); */
      /* background-position: right; */
   
  }

  .hero-content p {
    width: 80%;
    font-size: 20px;
  }

  
}

@media only screen and (max-width: 767px) {
  .hero-content h1 {
    font-size: 34px;
    margin-bottom: 20px;
  }
  .hero-content p {
    width: 86%;
    font-size: 20px;
    /* text-align: justify; */
  }

  .curved-bg {
   display: none;
  }
}

@media only screen and (max-width: 398px) {

  .hero-content h1 {
    font-size: 30px;
    
}
  .hero-content p {
    width: 95%;
    font-size: 20px;
  }
}

section {
  padding: 90px 0;
}

@media only screen and (max-width: 991px) {
  section {
    padding: 60px 0;
  }
}

.hero-sub {
  height: 55vh;
  background-color: var(--blue-color);
  /* background-image:linear-gradient(rgba(0,0,0,.9), rgba(0,0,0,.4)), url(/assets/images/hero/hero-sub.jpg); */
  background-image: radial-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)),
    url(/assets/images/hero/about-us-final.webp);
  background-position:  center 60px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  /* background: black; */
}
.hero-sub-growers {
  
  /* background-image:linear-gradient(rgba(0,0,0,.9), rgba(0,0,0,.4)), url(/assets/images/hero/hero-sub.jpg); */
  background-image: radial-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3)),
    url(/assets/images/hero/grower-ub-bg.webp) !important;
    background-position: center center !important
  /* background: black; */
}
.hero-sub-supply-chain {
 
  /* background-image:linear-gradient(rgba(0,0,0,.9), rgba(0,0,0,.4)), url(/assets/images/hero/hero-sub.jpg); */
  background-image: radial-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
    url(/assets/images/hero/international-trade.jpg) !important;
    background-position: center center !important
  /* background: black; */
}
.hero-sub-grains {
  height: 55vh;
  /* background-image:linear-gradient(rgba(0,0,0,.9), rgba(0,0,0,.4)), url(/assets/images/hero/hero-sub.jpg); */
  background-image: radial-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
    url(/assets/images/hero/hero-grains.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center !important;
  width: 100%;
  /* background: black; */
}

@media only screen and (max-width: 767px) {
  .hero-sub{
    height: 40vh;
    background-position:  center 30px;
  }

  .hero-sub-grains{
    height: 40vh;
  }
}

.sub-banner {
  height: 55vh;
  position: relative;
  display: flex;
  align-items: center;
}

.sub-banner h1 {
  font-size: 50px;
  margin-top: 80px;
  font-weight: 700;
}

.sub-banner h1 span {
  color: var(--yellow-color);
}

.sub-banner-absolute {
  width: 30%;
  height: 100%;

  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.05;
}

.sub-banner-absolute img {
  margin-top: 80px;
  width: 100%;
  height: 110%;
  object-fit: cover;
}

.top-left-rounded-image-container {
  overflow: hidden;
  border-top-left-radius: 60px;
  height: 300px;
  width: 100%;
}

.top-left-rounded-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  -ms-border-radius: inherit;
  -o-border-radius: inherit;
}
.top-left-rounded-image-container-news {
  overflow: hidden;
  border-top-left-radius: 60px;

  width: 200px;
}

.top-left-rounded-image-container-news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  -ms-border-radius: inherit;
  -o-border-radius: inherit;
}

.img-scale-hover img {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.img-scale-hover:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.hidden-rounded-image-container {
  position: relative;
  height: 100%;
}

.hidden-rounded-image-container img {
  border-bottom-left-radius: 70px;
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;

  /* object-fit: cover; */
  /* height: 100%; */
  /* height: 100%; */
}

@media only screen and (max-width: 991px) {
  .hidden-rounded-image-container {

    height: 550px;
    margin-top: 40px;
  }
  
  .hidden-rounded-image-container img {
    border-bottom-left-radius: 70px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
  
    /* object-fit: cover; */
    /* height: 100%; */
    /* height: 100%; */
  }
}

.text-justify-hypens {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  text-align: justify;
}


.bullet-list {
  margin-left: 30px;
}

.bullet-list li {
  list-style: square !important;
  /* list-style: ; */
}

.vcard-shadow {
  /*box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
  */
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  
}

.vcard-shadow p{
  font-size: 16px;
  text-align:center;
}

.vcard-shadow:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  /*box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
  */
 
}

.vcard-shadow:hover .whatwe-bridging-point-container {
  background-color: var(--blue-color);
}

.vcard-shadow:hover h5 {
}
.vcard-shadow:hover h5 {
  color: var(--blue-color);
}











.vcard-shadow-service {
  /*box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
  */
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  background: var(--light-green-color);
  /* border-bottom-left-radius: 30px; */
  /* border-top-left-radius: 60px; */
}
.vcard-shadow-service:hover {
  box-shadow: 0 10px 20px -6px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  /*box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
  */
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.vcard-shadow-service .whatwe-bridging-point-container {
 
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;

}
.vcard-shadow-service:hover .whatwe-bridging-point-container {
  background-color: var(--theme-green-color);
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;

}

.vcard-shadow-service p{
  font-size: 17px;
}

.vcard-shadow-service h5 {
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
}
.vcard-shadow-service:hover h5 {
  color: var(--theme-green-color);
}

/* //HOme page hover slider effect */

.tab li {
  cursor: pointer;
}

.category-area .tab li.active {
  color: var(--color-orange);
}

.all_product_single_container .tabcontent {
  display: none;
  padding: 6px 12px;
  height: 600px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

.all_product_single_container .tabcontent img {
  height: 100%;
}

@media only screen and (max-width: 1199px) {
  .all_product_single_container .tabcontent {

    height: 550px;
    /* margin-top: 150px; */

  }
}
@media only screen and (max-width: 991px) {
  .all_product_single_container .tabcontent {

    height: 510px;
    /* margin-top: 150px; */

  }

  .mobile-tab{
margin-left: 30px;
  }
  .what-we-btn{
    margin-left: 30px;
  }
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

.category-area .tab li div {
  width: 5px;
  background-color: var(--light-ash-color);
  margin-right: 40px;
}

.category-area .tab li h5 {
  padding: 12px 0;
}

.category-area .tab li.active div {
  background-color: var(--color-orange);
}

.we-serve-header{
width: 60%;
}

@media only screen and (max-width: 767px) {
  .we-serve-header{
    width: 95%;
    }
}

.we-serve-item .text-title {
  width: fit-content;
  text-align: center;
}



.we-serve-item .text-title::after {
  content: "\f061";
  font-family: FontAwesome;
  font-size: 18px;
  color: white;
  position: absolute;
  left: 110%;
  top: 0;
  opacity: 0;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
}

.we-serve-item .text-title:hover:after {
  opacity: 1;
}

.we-serve-item img {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
}

.we-serve-item img:hover {
  scale: 1.05;
}

.about-us-home {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)),
    url(/assets/images/hero/homepage-about-us.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-us-home h5,
.about-us-home p,
.about-us-home-button {
  /* margin: 0 100px; */
  padding: 0 170px;
}

.about-us-home p {
  font-size: 39px;
  line-height: 52px;
  letter-spacing: 0.6px;
}

@media only screen and (max-width: 1399px){
  .about-us-home p {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0.6px;
  }
}



@media only screen and (max-width: 991px) {
  .about-us-home h5,
  .about-us-home p,
  .about-us-home-button {
    /* margin: 0 100px; */
    padding: 0 10px;
  }
  
  .about-us-home p {
    font-size: 27px;
    line-height: 36px;
    letter-spacing: 1px;
  }
}

@media only screen and (max-width: 767px){
  .about-us-home p {
    font-size: 28px;
    line-height: 40px;
   
  }
}

.career-home {
  background-image: url(/assets/images/hero/red-pattern-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.career-home h3 {
  padding: 0 280px;
}

.efeect-white {
  background-color: var(--white-color) !important;
  color: var(--color-orange) !important;
}

.efeect-white::before {
  background-color: rgba(0, 0, 0, 0.05) !important;
}

.efeect-transperant {
  background-color: transparent !important;
  border: 1px solid var(--white-color);
}

.efeect-transperant::before {
  background-color: transparent !important;
}

.contact-us {
  padding-bottom: 40px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url(../images/hero/red-pattern-bg.svg);
  background-position: center;
  background-size: cover;
  /* background-attachment: fixed; */
}

@media only screen and (max-width: 767px){
  .contact-us {
    padding-top: 40px;
  }
}

.pattern-right-one {
  position: absolute;
  top: 100px;
  right: 0;
  width: 609px;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
  /* opacity: 0.4; */
}



.pattern-right-yellow {
  position: absolute;
  top: 120px;
  right: 0;
  height: 86%;
  object-fit: contain;
  /* opacity: 0.4; */
}

.pattern-left-two {
  position: absolute;
  max-width: 350px;
  top: 260px;
}
.pattern-left-two-unique {
  position: absolute;
  width: 70%;
  top: 520px;
  z-index: 1;
}

.farmer-details{
  z-index: 10000;
}
.pattern-left-four {
  position: absolute;
  max-width: 350px;
  top: 450px;
}
.pattern-right-two {
  position: absolute;
  max-width: 350px;
  top: 700px;
  right: 0;
}
.pattern-right-three {
  position: absolute;
  max-width: 350px;
  top: 450px;
  right: 0;
}


@media only screen and (max-width: 991px) {
  .pattern-right-one {
    top: 70px;
    width: 80%;
    opacity: 0.4;
    z-index: 0;
    filter: blur(1px);
    -webkit-filter: blur(1px);
}

.pattern-left-two {
 
  max-width: 200px;
  top: 360px;
}

.pattern-right-two {
 
  max-width: 200px;
  top: 1000px;
 
}


.pattern-right-yellow {
  
display: none;

}

.pattern-right-three {

  max-width: 200px;
  top: 750px;

}
}

.agrocom .agrocom-list {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr 1fr 1fr;
  height: 581px;
  gap: 20px;
}

.agrocom .agrocom-item-single {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.agrocom .agrocom-item {
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}

.agrocom .agrocom-item-multiple {
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.agrocom .agrocom-item-multiple:hover {
  background-color: var(--light-ash-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.agrocom .agrocom-item-single h3 {
  padding: 30px;
}

.agrocom .agrocom-item-multiple-content p {
  font-size: 16px;
  height: 60px;
  font-weight: 600;
}

.agrocom .agrocom-item-multiple:hover p {
  color: var(--green-color);
}

.agrocom .agrocom-item-single .devider {
  background-color: var(--light-ash-color);
  height: 0.5px;
  width: 70%;
  margin: 0 auto;
  opacity: 0.5;
}

.agrocom .agrocom-item-single .agrocom-item-bg-card {
  position: absolute;
  inset: 1;
}
.agrocom .agrocom-item-single .agrocom-item-absolute-card {
  position: absolute;

  bottom: 0;
  left: 0;
}

.agrocom .agrocom-item-multiple {
  overflow: hidden;
  box-shadow: rgba(241, 241, 241, 0.2) -2px -6px 12px 0px,
    rgba(234, 236, 241, 0.5) 0px 12px 24px 0px;
}

.agrocom-item-multiple-content {
  padding: 30px;
  color: var(--ash-color);
}
.agrocom-item-multiple-content .image-container {
  height: 64px;
  width: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(229, 238, 247);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;

  margin-bottom: 20px;
}

.agrocom
  .agrocom-item-multiple:hover
  .agrocom-item-multiple-content
  .image-container {
  background-color: var(--light-green-color);
}

.agrocom-item-multiple-content .image-container img {
  width: 32px;
  width: 32px;
}

.agrocom-item-multiple-content-main-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
}

.agrocom .agrocom-item-multiple:hover .agrocom-item-multiple-content-main-img {
  /* width: 101%;
  height: 101%; */
}


@media only screen and (max-width: 991px) {
  .agrocom .agrocom-list {

    grid-template-columns:1fr 1fr;
    height: auto;
   
  }

  .agrocom-item{
    height: 500px !important;
  }

  .agrocom-item:first-child{
    grid-column: span 2;
  }

  .agrocom .agrocom-item-single .agrocom-item-bg-card {
    width: 100%;
  }

  .agrocom .agrocom-item-single .devider {
    
    width: 99%;
  
  }


}
@media only screen and (max-width: 405px) {
  .agrocom .agrocom-list {

    grid-template-columns:1fr;
    height: auto;
   
  }

  .agrocom-item{
    height: 500px !important;
  }

  .agrocom-item:first-child{
    grid-column: span 1;
  }

  .agrocom .agrocom-item-multiple-content p {
   
    height: 32px;
  }


}




/* // about us Page */

.aboutus-area .list.active {
  color: var(--yellow-color);
}

.aboutus-list li {
  cursor: pointer;
}

.aboutus-list li h5 {
  padding: 16px 0;
}

.aboutus-list li div {
  width: 5px;
  background: var(--light-ash-color);
  margin-right: 20px;
}

.aboutus-area .list.active div {
  background: var(--yellow-color);
}

.about-tablink .all_products .itemBox h4 {
  color: var(--yellow-color);
  margin-bottom: 30px;
  font-size: 26px;
}

.about-gradient p {
  font-size: 82px;
  font-weight: 700;
  line-height: 81px;
  letter-spacing: -1.1px;
  margin-bottom: 6px !important;
}

.aboutus-breif p,
.workpace-safety-content p span {
  font-size: 24px;
  letter-spacing: 0.6px;
  line-height: 32px;
}

@media only screen and (max-width: 1399px){
  .about-gradient p {
    font-size: 72px;
 
    line-height: 69px;
    letter-spacing: -1.1px;
  }
}
@media only screen and (max-width: 1199px){
  .about-gradient p {
    font-size: 61px;
 
    line-height: 59px;
    letter-spacing: -1.1px;
  }
}

@media only screen and (max-width: 991px) {
  
  .aboutus-breif p{

    width: 100% !important;
  }

  .aboutus-area{
    margin-bottom: 40px;
  }

  .aboutus-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
   
  }

  .aboutus-list li{
    /* align-items: center; */
  }

  .aboutus-list li h5 {
    padding: 0 0;
}

.about-gradient p {
  font-size: 44px;

  line-height: 40px;

}

}

@media only screen and (max-width: 575px) {
  .aboutus-list{

    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
   
  }

  .about-gradient p {
    font-size: 32px;
  
    line-height: 41px;
  
  }
}

@media only screen and (max-width: 500px) {
  .about-gradient p {
    font-size: 29px;
  
    line-height: 38px;
  
  }
}
@media only screen and (max-width: 450px) {
  .about-gradient p {
    font-size: 24px;
  
    line-height: 38px;
  
  }
}
@media only screen and (max-width: 372px) {
  .about-gradient p {
    font-size: 22px;
  
    line-height: 38px;
  
  }
}

.aboutus-commitments-image-container {
  position: relative;
  height: 100%;
}

.aboutus-commitments-image-container img {
  border-bottom-left-radius: 70px;
  position: absolute;
  top: 0;
  left: 40px;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .aboutus-commitments-image-container {
    display: none;
  }
}

.workplace-partner {
  grid-template-columns: 1fr 2.1fr;
  /* margin-top: 80px; */
  gap: 20px;
}

.workplace-partner-title-sticky {
  position: sticky;
  top: 150px;
  padding-bottom: 70px;
  /* height: 100%; */
}

@media only screen and (max-width: 767px) {
  .workplace-partner-title-sticky{
    top: 300px;
  }
}

.workplace-partner-cards-item-img-container {
  height: 250px;
  width: 100%;
  border-top-right-radius: 80px;
  overflow: hidden;
}

.workplace-partner-cards-item-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: inherit;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.workplace-partner-cards-item-img-container:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.workplace-partner-cards-item-title {
  cursor: pointer;
}

.workplace-partner-cards-item-title h5 a {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.workplace-partner-cards-item-title:hover h5 a {
  color: var(--yellow-color);
  /* position: relative; */
}

.workplace-partner-cards-item-title h5 a::after {
  content: "";
  display: inline-block;
  /* position: absolute; */
  margin-left: 10px;
  width: 12px;
  height: 10px;
  margin-bottom: 1px;
  background-image: url(../images/svgimages/arrow.svg);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  opacity: 0;
}

.workplace-partner-cards-item-title:hover h5 a::after {
  opacity: 1;
}

/* What We Do Pages */

.whatwe-bridging-image-container {
  position: relative;
  height: 100%;
}

.whatwe-bridging-image-container img {
  border-bottom-left-radius: 70px;
  position: absolute;
  top: 0;
  left: 40px;
  /* height: 100%; */
}

.whatwe-bridging-point-container {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-blue-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.whatwe-bridging-point-container img {
  width: 40px;
  height: auto;
}

.whatwe-about-left,
.whatwe-about-right {
  position: absolute;

  height: 100%;
  width: 50.02%;
  z-index: -1;
  top: 0;
}

.whatwe-about-left {
  left: 0;
  /* background-color: var(--light-blue-color); */
}

.whatwe-about-right {
  right: 0;
  /* background-color: var(--blue-color); */
}

@media only screen and (max-width: 991px) {

  .whatwe-about{
    background: var(--light-green-color);
  }
}
.whatwe-solution-wrapper-five {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 400px;
}
.whatwe-solution-wrapper-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 400px;
}

.whatwe-solution-item {
  height: 100%;
  cursor: pointer;
}

.whatwe-solution-wrapper .whatwe-solution-item h5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.whatwe-solution-item-text {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 30px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  position: relative;
}

.whatwe-solution-item-text p {
  margin-bottom: 0 !important;
  z-index: 2;
}

.whatwe-solution-item-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
  z-index: 1;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.whatwe-solution-item:hover .whatwe-solution-item-text,
.whatwe-solution-item:hover .whatwe-solution-item-text::before {
  opacity: 1;
}

.whatwe-solution-wrapper .whatwe-solution-item:hover h5 {
  opacity: 0;
}

.whatwe-transportatiom {
  padding-top: 0 !important;
  padding-bottom: 50px;
}

.whatwe-transportatiom .shape-one {
  /* top: 50%;
  left: 50%; */
  /* transform: translate(-50%, -50%) ;
  -webkit-transform: translate(-50%, -50%) ;
  -moz-transform: translate(-50%, -50%) ;
  -ms-transform: translate(-50%, -50%) ;
  -o-transform: translate(-50%, -50%) ; */
}

.whatwe-transportatiom .shape-two {
  top: 85%;
  left: 55%;
  width: 200px;
}

@media only screen and (max-width: 991px) {

  .whatwe-solution-wrapper-five{
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    height: auto ;
  }

  .whatwe-solution-wrapper-five .whatwe-solution-item{
    height: 400px !important;
  }

  .whatwe-transportatiom{
    padding-top: 30px !important;
  }

  .whatwe-transportatiom-image-container{
    margin-top: 70px;
  }
}
@media only screen and (max-width: 767px) {

  .whatwe-solution-wrapper-five{
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    height: auto ;
  }

 
}

.supply-chain-summary-main {
  margin-top: 50px;
}

.new-card {
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  border: 0.5px solid var(--theme-green-color);
}

.new-card-content-counts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 36px;
}

.new-card img {
  height: 40px;
  object-fit: contain;
}

.new-card p {
  font-size: 14px;
}


@media only screen and (max-width: 991px) {
  .supply-chain-summary-main {
    margin-top: 0;
  }
}

.whatwe-transportatiom{
  position: relative;
}


.whatwe-transportatiom-img-container{
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
overflow: hidden;
}

.whatwe-transportatiom-img-container img{
  height: 100%;
  object-fit: cover;
  width: 100%;
}


.whatwe-story {
  background-image: url(../images/picture/supply-chain-story.webp);
  background-size: 50% 100%;
  background-repeat: no-repeat;
  background-position: right;

}

@media only screen and (max-width: 991px){
  .whatwe-story, .whatwe-transportatiom {
    background-image: unset
  
  }

  .whatwe-transportatiom-img-container{
    display: none;
  }
}



.whatwe-story-new {
  background-image: url(../images/picture/whatwe-story.jpg);
  background-size: 50% 100%;
  background-repeat: no-repeat;
  background-position: left;
}

.whatwe-story-img img {
  height: 24px;
  object-fit: contain;
}

.whatwe-story-dscp {
  margin: unset !important;
}

/* GRAINS PAGE STARTS */

.grains-product-list-item-dscp {
  padding: 30px 20px 10px 0;
  cursor: pointer;
}

.grains-product-list-item-dscp h5 a {
  color: var(--color-orange);
}

.grains-product-list-item-dscp:hover h5 a {
  text-decoration: underline;
}

.grains-product-list-item-dscp h5 a::after {
  content: "";
  display: inline-block;
  /* position: absolute; */
  margin-left: 10px;
  width: 15px;
  height: 12px;
  margin-bottom: 1px;
  background-image: url(../images/svgimages/arrow-orange.svg);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  opacity: 0;
}

.grains-product-list-item-dscp:hover h5 a::after {
  opacity: 1;
}

.barley-protein {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)),
    url(/assets/images/bg/emerge_barley_field.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.barley-wrapper {
  padding: 50px 8%;
  border-top-left-radius: 80px;
}

.barley-wrapper img {
  height: 40px;
  object-fit: contain;
}

.small-image-size {
  height: 300px;
}
.small-image {
  height: 200px !important;
}




.farmers-story {
  background-image: url(../images/picture/farmer-cornfield.jpg);
  background-size: 50% 100%;
  background-repeat: no-repeat;
  background-position: right;
  /* object-fit: cover; */
  padding: 50px 0 !important;
}


.farmer-services li{
  list-style-type: square !important;
  list-style: inside;
}

@media only screen and (max-width: 991px) {

  .farmers-story {
    background-image: unset;
   
    padding: 50px 0 !important;
  }
  .farmer-details .pattern-left-two-unique{
    display: none;
  }
}

/* contact form area  */

.contact-form-area-form .controls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  caret-color: var(--theme-green-color) !important;
}

.contact-form-area-form input, .contact-form-area-form textarea {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border: 1px solid rgb(216, 238, 222);
  
}

.contact-form-area-form input:focus,  .contact-form-area-form textarea:focus {
  border: 1px solid var(--theme-green-color) !important;
  box-shadow: unset !important;
}






@media only screen and (max-width: 767px) {
  .contact-form-area-form .controls {
    
    grid-template-columns: repeat(1, 1fr);
    
  }
}


.contact-form-area-form button {
  /* background-color: unset !important; */
  border: unset !important;
  outline: unset !important;
}

.contact-info-wrapper {
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.contact-info-wrapper p {
  margin: unset !important;
  font-size: 16px;
}

.contact-info-wrapper img {
  height: 40px;
  object-fit: contain;
}

.contact-form-area-form textarea {
  height: 150px !important;
}

/* news page  */

.news-group{
  grid-template-columns: 1.4fr 1fr;
}

.top-left-rounded-image-container-news {
  overflow: hidden;
  border-top-left-radius: 60px;
  width: 100%;
  height: auto;
  /* height: 100%; */
}

.top-left-rounded-image-container-news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  -ms-border-radius: inherit;
  -o-border-radius: inherit;
}

.news-item {
  grid-template-columns: .7fr 1fr;
}

.news-item-content-title-truncate {
  /* height: 45px; */
}

.news-item .news-item-content-title a {
  margin: 16px 0 10px;
  color: var(--blue-color);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
}

.news-item .news-item-content-title a:hover {
  color: var(--theme-green-color);
}

.news-item .news-item-content p {
  color: var(--ash-color);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: unset !important;
}

.news-item .news-item-content .date {
  font-size: 14px;
  margin-top: 12px !important;
}

.news-item .news-item-content .effect-6 {
  /* padding: 10px 0px; */
  width: max-content;
  border-radius: 39px;
  overflow: hidden;
  padding: 6px 20px;
  -webkit-border-radius: 39px;
  -moz-border-radius: 39px;
  -ms-border-radius: 39px;
  -o-border-radius: 39px;
  background-color: var(--light-blue-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;


}

.news-item img{
height: 270px;
width: 100%;
object-fit: cover;
}

.singleNewsPost{
  margin-top: 170px;
}

.singleNewsPost h1{
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  
}



.singleNewsPost img{
  margin-top: 40px;
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: inherit;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  -ms-border-radius: inherit;
  -o-border-radius: inherit;
}


.news_detail_one_text br{
  margin-bottom: 16px;
}

.latestnews .top-left-rounded-image-container-news{
  height: 280px;
}

.keynote-news{
 margin: 36px 0;


padding: 30px 20px 30px 60px !important;
/* background-color: red; */
border-left: 2px solid var(--theme-green-color);
}

.financial-container-item{
  /* padding-top: 150px !important; */
  position: sticky;
  top: 120px;
  display: flex;
  justify-content: end;
  /* margin-right: auto; */
}


.financial-container-item-frame{
  width: 380px;
  height: 690px;
}


.widgetContainer:nth-child(1){
 color: red !important;
 display: none !important;
}




@media only screen and (max-width: 991px) {

  .news-group{
    grid-template-columns: 1fr;
    /* row-gap: 30px; */
    overflow-x: hidden;
  }

  .financial-container{
    margin-bottom: 30px;
    order: 1;
    margin-top: -100px;
  }

  .news-container{
    order: 2;
    margin-top: 60px;
  }

  .financial-container-item{
    /* padding-top: 150px !important; */
    position: relative;

    display: flex;
    justify-content: center;
    /* margin-right: auto; */
    margin-bottom: 20px;
  }

  .financial-container-item-frame{
    height: 730px;
    width: 100%;
  }

  .news-item {
    grid-template-columns: .7fr 1fr;
  }

  .singleNewsPost{
    margin-top: 160px;
  }
  
  .singleNewsPost h1{
    font-size: 50px;
    
  }
}


@media only screen and (max-width: 767px) {

  .singleNewsPost{
    margin-top: 120px;
  }
  
  .singleNewsPost h1{
    font-size: 40px;
    
  }

}
@media only screen and (max-width: 567px) {

 
  
  .singleNewsPost h1{
    font-size: 30px;
    
  }

}










div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled{
  background-color: var(--theme-green-color) !important;
}



.big-gap-layer > div{

  padding-inline-end: 40px;
}

.big-gap-layer h6{
  font-size: 16px;
  margin-bottom: 10px;
}
.big-gap-layer p{
  font-size: 16px;
}


.image-object-position{
  background-position: top center !important;
}

.hero-image-gsap-container{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image-gsap{
  width: 100%;
  height: 100%;
  object-fit: cover;

  

}

.hero-image-gsap-layer{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  display: block;
  z-index: 0;
}



.subscribe-form{
  visibility: hidden;
  display: none;
  opacity: 0;
  transition: all 5s ease-in-out;
  -webkit-transition: all 5s ease-in-out;
  -moz-transition: all 5s ease-in-out;
  -ms-transition: all 5s ease-in-out;
  -o-transition: all 5s ease-in-out;
}

.subscribe-form.show{
  display: flex;
  align-items: center;
  column-gap: 20px;
  visibility: visible;
  opacity: 1;
}

.subscribe-form .subscribe-input{
  height: 40px;
  flex:1;
  background: var(--light-blue-color);
  border: unset;
  color: var(--white-color);
  padding-inline: 20px;
}

.subscribe-confirm-btn{
  padding: 6px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  background-color: var(--light-blue-color) !important;

}

.subscribe-confirm-btn:disabled{
  color: var(--ash-color);
  cursor: not-allowed;
  background-color: var(--blue-color);
}

.subscribe-btn{
  cursor: pointer;
}

.subscribe-btn.hidebtn{
  display: none;
}