@import url("https://fonts.googleapis.com/css2?family=Lalezar&family=Poppins:wght@400;500;600;700&family=Scheherazade&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Lugrasimo&family=Luxurious+Roman&family=Mali:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Oswald:wght@200..700&family=Poetsen+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Lugrasimo&family=Luxurious+Roman&family=Mali:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poetsen+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

html,
body {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #e30016;
  --secondary-color: #009035;
  --bg-color: #d1d3d4;
  --liner-color: #102a83;
  --icon-color: #f69c00;
  --black-color: #000000;
  --white-color: #ffffff;
  --font-color: #323232;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}
section {
  padding: 40px 0;
}

/* Titles */
.primary-title {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: var(--icon-color);
  letter-spacing: 1px;
}

.secondary-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--font-color);
  letter-spacing: 1px;
}

.span-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--icon-color);
}
.sub-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--black-color);
  margin: 10px 0 25px 0;
}
@media (max-width: 576px) {
  .secondary-title {
    font-size: 20px;
  }
  .sub-title {
    font-size: 16px;
  }
}

.content-title {
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
/*End Titles */

/* Button */
#more {
  display: none;
}
.btn {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 12px 30px;
  border-radius: 10px;
  transition: 0.5s;
  display: inline-block;
}
.btn:hover {
  background-color: var(--primary-color);
}
/* Button End Here*/

/* header */
.header {
  display: flex;

  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  transition: 0.5s;
  z-index: 99;

  padding: 15px 100px;
}

header.sticky {
  padding: 15px 100px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  background: #fff;
}

.red-logo {
  display: none;
}
.sticky .red-logo {
  display: block;
}
.sticky .white-logo {
  display: none;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
}
.header .logo {
  /* padding: 0 15px; */
}
.header .logo a {
  font-size: 30px;
  text-transform: capitalize;
  color: var(--darkblue);
  font-weight: 600;
}
.header .logo a img {
  width: 180px;
  /* margin-top: 10px; */
}
.header .nav-menu {
  padding: 0 15px;
}
.header .menu > .menu-item {
  display: inline-block;
  margin-left: 20px;
  position: relative;
}
.header .menu > .menu-item > a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: white;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
}

.header .menu > .menu-item > a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none;
  /* color: var(--lightblack); */
  color: var(--black-color);
  margin-left: 5px;
}
.header-button .btn-all{
  margin: 0 !important  ;
}
.header.sticky .menu > .menu-item > a {
  color: var(--black-color);
}

.header.sticky .menu > .menu-item > a .plus:before,
.header.sticky .menu > .menu-item > a .plus:after {
  background-color: var(--black-color);
}

.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: white;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after {
  background-color: var(--icon-color);
}
.header .menu > .menu-item > a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a {
  color: var(--icon-color);
}

.header .menu > .menu-item > .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 220px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: white;
  padding: 10px 0;
  border-top: 3px solid #f69c00;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.contact-nav {
  display: none;
}
.contact-nav h2 {
  font-size: 25px;
  font-weight: 600;
  position: relative;
}
.contact-nav h2::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 2px;
  bottom: 2px;
  background-color: var(--lightblack);
}
.contact-nav a {
  display: flex;
  align-items: center;
  color: var(--lightblack);
  font-size: 18px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.nav-links a i {
  margin-right: 15px;
  color: var(--darkblue);
}
.contact-nav .btn-all {
  margin: 20px 0;
}
.social-nav li {
  width: 40px;
  height: 40px;
  background-color: var(--blue);
  border-radius: 50%;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-nav li i {
  color: var(--white);
  font-size: 18px;
}
.social-nav {
  display: flex;
  margin-top: 30px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-right .contact-whatsapp {
  width: 50px;
  height: 50px;
  margin: 0 5px;
  background-color: var(--green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 30px;
}
.header-right .contact-phone i {
  color: var(--darkblue);
  font-size: 25px;
}

.header-right .call-display span {
  color: var(--darkblue);
  font-size: 20px;
}
.fix-icon {
  position: fixed;
  display: none;
  bottom: 15px;
  right: 20px;
}

.fix-icon .contact-whatsapp,
.fix-icon .contact-phone {
  width: 50px;
  height: 50px;
  margin: 5px 0;
  background-color: var(--green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 30px;
}

.call-display {
  display: flex;
  align-items: flex-start;
}

.call-display span {
  color: var(--darkblue);
}

.nav-btn2 a {
  color: white;
  display: block;
}

.nav-links a {
  margin: 15px 0;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 1300px) {
  .header .menu > .menu-item {
    margin-left: 14px;
  }
}
@media (max-width:1200px) {
  .header-button {
    display: none;
  }
}
@media (min-width: 1101px) {
  .header .menu > .menu-item-has-children:hover > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header .menu > .menu-item-has-children:hover > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--lightblack);
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.header .open-nav-menu {
  height: 34px;
  width: 40px;
  /* margin-right: 15px; */
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: white;
  position: relative;
}
.header.sticky .open-nav-menu span {
  background-color: black;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  box-sizing: border-box;
}
.sticky .open-nav-menu span:before,
.sticky .open-nav-menu span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  box-sizing: border-box;
}
.header .open-nav-menu span:before {
  top: -7px;
}
.header .open-nav-menu span:after {
  top: 7px;
}
.header .close-nav-menu {
  height: 68px;
  width: 40px;
  /* background-color: black; */
  color: black;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.header .close-nav-menu img {
  width: 16px;
}
.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.header-right a span {
  /* font-size: 18px; */
  font-weight: 600;
  color: var(--lightblack);
}


.sub-menu-1{
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0%;
  left: 220px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  padding: 20px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border-top: 3px solid var(--icon-color);
  box-shadow: 0 0 10px ;
}

.sub-menu-1 li {
  padding: 10px 0;
}

.sub-menu-1 li a{
  color: var(--black-color);
  display: flex;
  width: 180px;
  justify-content: space-between;
}

.team-menu:hover .sub-menu-1{
  opacity: 1;
  visibility: visible;
}


 .team-menu > a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none;
  /* color: var(--lightblack); */
  color: var(--black-color);
  margin-left: 5px;
}


.team-menu > a .plus:before,
.team-menu > a .plus:after {
  background-color: var(--black-color);
}

.team-menu > a .plus:before,
.team-menu > a .plus:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: white;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.team-menu > a .plus:before,
.team-menu > a .plus:after {
  background-color: var(--black-color);
}
.team-menu > a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.team-menu:hover .plus::before,
.team-menu:hover .plus::after {
  background-color: var(--icon-color);
}

.team-menu ul li a {
  transition:.3s;
}
.team-menu ul li a:hover {
  color: var(--icon-color);
}


/* /home section/ */
.home-section {
  width: 100%;
  display: block;
  min-height: 100vh;
  background-image: url("../img/home.jpg");
  background-position: center top;
  background-size: cover;
}




/* responsive */

@media (max-width: 992px) {
  .header {
    padding: 0;
    /* padding: 20px 0; */
    display: block;
    /* height: 98px; */
  }
  .header.sticky {
    padding: 0;
  }
  .header-main {
    padding: 15px 0;
  }
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .header .nav-menu {
    position: fixed;
    right: -300px;
    visibility: hidden;
    width: 300px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: white;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  .header .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }
  .header .menu > .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .menu > .menu-item > a {
    color: var(--lightblack);
    padding: 12px 15px;
    border-bottom: 1px solid var(--lightblack);
  }
  .header .menu > .menu-item:first-child > a {
    border-top: 1px solid var(--lightblack);
  }
  .header .menu > .menu-item > a .plus:before,
  .header .menu > .menu-item > a .plus:after {
    background-color: black;
  }
  .header .menu > .menu-item-has-children.active > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .header .menu > .menu-item > .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    z-index: 99;
    overflow: hidden;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 12px 45px;
    color: var(--lightblack);
    border-bottom: 1px solid #333333;
  }
  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex;
  }
  .contact-nav {
    display: block;
    margin-top: 30px;
    padding: 20px;
  }
  /* .we-submenu{
    display: none;
  } */
    /* .sub12{
    display: block;
  } */
  .sub-menu-1{
    position: relative;
    left: 0;
    border: 0;
    display: none;
    padding-left: 70px;
    box-shadow: 0 0 0 0;
  }
  .sub-menu-1 li{
    /* margin: 10px 0; */
    border-bottom: 1px solid rgba(0, 0, 0, 0.501);
  }
}

@media (max-width: 576px) {
  .fix-icon {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    z-index: 2;
  }

  .header-right .contact-whatsapp,
  .header-right .contact-phone {
    display: none;
  }

  .call-display span {
    display: none;
  }
}
/* End Header */

/* For Home slick slider */
.slider-wrapper {
  font-family: "Montserrat", sans-serif;
  padding: 0;
  overflow: hidden;
  height: 700px;
}

.slider-box img {
  width: 100% !important;
  height: 100%;
}

.slick-list,
.draggable {
  padding: 0 !important;
}

.slider .slider-lg-content {
  color: var(--white);
  font-size: 35px;
  font-weight: bold;
  text-align: center;
}
.slider .slick-dots {
  bottom: 25px;
}
.slider .slick-dots li button:before {
  color: #b3b3b3;
  content: "•";
  background: #fff;
  border-radius: 50%;
  font-size: 10px;
  line-height: 12px;
  width: 10px;
  height: 10px;
}
.slick-dots .animated-dot {
  background-image: url("https://img.icons8.com/plasticine/100/000000/play.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 14px;
  width: 16px;
  display: none;
}
/*End For Home slick slider */

/* progress bar */
.slider-progress {
  width: 100%;
  height: 3px;
  background: #eee;
  max-width: 768px;
  margin: 0 auto;
  display: none;
}
.slider-progress .progress {
  width: 0%;
  height: 3px;
  background: #000;
}

.slider-lg-content {
  position: relative;
  height: 700px;
}

.slider-lg-content h3 {
  margin-top: 200px;
  font-weight: 400;
  font-size: 18px;
  color: var(--white-color);
}

.slider-lg-content h2 {
  font-weight: 500;
  font-size: 72px;
  margin: 15px 0;
  color: var(--white-color);
  line-height: 77px;
}

.slider-lg-content p {
  font-weight: 400;
  font-size: 16px;
  padding: 0 385px;
  color: var(--white-color);
}

.slide-img::before {
  position: absolute;
  background-size: cover;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  /* opacity: 0.5; */
  /* min-height: 700px !important; */
  background-image: url("../img/banner-2.png") !important;
  z-index: -1;
}

.slider-lg-content::before {
  position: absolute;
  background-image: url("../img/banner-1.png");
  content: "";
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  /* opacity: 0.5 !important; */
  /* min-height: 600px !important; */
  z-index: -1;
  background-size: cover;
}

.slider-lg-content::after,
.slide-img::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-color: #0000007e;
  z-index: -1;
}

.slider .previous-slide,
.slider .next-slide {
  height: 18px;
  width: 18px;
  position: absolute;
  cursor: pointer;
  z-index: 2;
}
.slider .previous-slide {
  left: 20px !important;
  top: 50%;
}
.slider .next-slide {
  right: 20px !important;
  top: 50%;
}
.slider .previous-slide {
  background: url("https://img.icons8.com/office/16/000000/back.png") no-repeat;
  /* background-size: contain; */
}
.slider .next-slide {
  background: url("https://img.icons8.com/office/16/000000/forward.png")
    no-repeat;
  /* background-size: contain; */
  background-position: right;
}

@media (max-width: 1200px) {
  .slider-lg-content p {
    padding: 0 285px;
  }
}

@media (max-width: 992px) {
  .slider-lg-content h3 {
    margin-top: 300px;
    font-size: 25px;
    font-weight: 700;
  }

  .slider-lg-content h2 {
    font-size: 48px;
    font-weight: 500;
    margin: 20px 0;
    line-height: 53px;
  }

  .slider-lg-content p {
    font-size: 18px;
    font-weight: 500;
    padding: 0 85px;
  }
}

@media (max-width: 576px) {
  .slider-wrapper {
    height: 530px;
  }
  .slider-lg-content {
    height: 530px;
  }
  .slider-lg-content h2 {
    font-size: 30px;
    line-height: 37px;
    margin: 15px 0;
  }

  .slider-lg-content h3 {
    margin-top: 170px;
    font-size: 16px;
    font-weight: 700;
  }

  .slider-lg-content p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    padding: 0 20px;
    /* padding: 0 85px; */
  }
}
/*  end slider  */

/* Inner Banner */

.inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #02074259;
}
.inner-banner {
  /* height: 280px; */
  padding: 110px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/inner-banner.jpg);
  position: relative;
  overflow: hidden;
  text-align: center;
  /* margin-top: 90px; */
}
.inner-banner-overlay {
  /* height: 326px; */
  position: relative;
}
.inner-banner-about {
  text-align: center;
  color: var(--black-color);
  z-index: 1;
  text-decoration: none;
}
/* .inner-banner-about h1:before {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--white-color);
  position: absolute;
  bottom: 0;
} */
.inner-banner-about h1 {
  font-weight: 500;
  font-size: 45px;
  color: var(--white-color);
  position: relative;
  margin-top: 25px;
  letter-spacing: 3px;
}
.inner-banner-about ol {
  display: inline-flex;
  padding-top: 15px;
}
.inner-banner-about ol li {
  font-style: italic;
  font-size: 14px;
  color: var(--white-color);
  font-weight: 500;
  letter-spacing: 1px;
}
.inner-banner-about ol li a {
  color: var(--white-color);
}
.inner-banner-about ol li i {
  padding: 0 8px;
}
/* End Inner Banner */

/* <!-- Our Process Section --> */

.our-process-section .span-title,
.our-process-section .sub-title {
  text-align: center;
}
.single-inner-box .icon {
  height: 160px;
  width: 160px;
  line-height: 160px;
  background-color: rgb(168 212 168);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.single-inner-box .icon img {
  height: 90px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
}

.single-inner-box .icon span {
  font-size: 20px;
  height: 45px;
  width: 45px;
  line-height: 45px;
  font-weight: 500;
  background: #f69c18;
  border: 1px solid #f7f7f7;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: -10px;
  color: #fff;
}

.single-process-box h5 {
  text-align: center;
  margin: 20px 0 8px 0;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}
.single-process-box p {
  text-align: center;
  color: var(--font-color);
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}

.single-process-box .icon::before {
  position: absolute;
  content: "";
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  border: 2px dashed var(--secondary-color);
  border-radius: 50%;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
  animation: spin 10s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 992px) {
  .single-process-box {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .our-process-section {
    padding-bottom: 0;
  }
}
/* <!--End Our Process --> */

/* info box */
.info {
  padding-top: 80px;
}
.info {
  text-align: center;
}

.info-card {
  padding: 10px;
  border-radius: 5px;
  background-color: var(--white-color);
  box-shadow: 0px 0px 12px -4px rgba(0, 0, 0, 0.5);
  color: var(--white-color);
  height: 250px;
}

.info img {
  width: 100px;
  height: 100px;
  padding: 10px;
  border-radius: 5px;
  margin-top: -60px;
  background-color: var(--white-color);
  border: 2px solid var(--secondary-color);
  /* vertical-align: middle; */
}

.info-card h4 {
  color: var(--icon-color);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--black-color);
}

.info-card-content {
  padding: 10px;
}

@media (max-width: 992px) {
  .info-card {
    margin-top: 80px;
  }

  .info-card {
    height: 200px;
  }
  .info {
    padding-top: 0;
  }
}

/* /end info box/ */

/* Quality Control */
.even {
  display: flex;
  flex-direction: row-reverse;
}
.quality-control-images {
  position: relative;
  width: 100%;
}
.quality-first-img img {
  width: 100%;
  border-radius: 10px;
  height: 420px;
}
.quality-second-img img {
  width: 50%;
  border-radius: 10px;
  bottom: 0;
  position: absolute;
  right: -70px;
  bottom: -70px;
  border: 10px solid white;
}

.quality-second-img {
  border-radius: 10px;
}

.quality-first-img {
  overflow: hidden;
}

.quality-control-title p,
.product-capacity-title p {
  font-size: 16px;
}

.quality-list ul li,
.product-list ul li {
  position: relative;
}
.quality-list ul li .quality-check,
.product-list ul li .quality-check {
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--icon-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.quality-list ul li p,
.product-list ul li p {
  padding-left: 35px;
}

.quality-list ul li,
.product-list ul li {
  margin-top: 20px;
}

.quality-list {
  margin-top: 10px;
}

@media (max-width: 992px) {
  .quality-first-img {
    margin-top: 20px;
  }
  .quality-control-section .row {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 576px) {
  .quality-first-img img {
    height: auto;
  }
  .quality-control-section {
    padding-top: 0;
  }
  .quality-first-img img {
    margin-bottom: 20px;
  }
}
/*End Quality Control */

/* Join Our Team */
.single-join-box {
  padding: 50px 16px;
  margin-bottom: 30px;
  height: 400px;
}
.single-join-box h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 15px;
}
.single-join-box p {
  font-size: 16px;
  font-weight: 400;
}
.left-right-border {
  border-right: 1px dashed #ccc;
}
/* End Join Our Team */

/* research */
.tab-box {
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 3px black;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.5s;
}

.research .span-title,
.research .sub-title {
  text-align: center;
}

.tab-box:hover {
  background-color: var(--secondary-color);
  color: white;
}

.tab-box-icon img {
  width: 50px;
  height: 50px;
  transition: 0.5s;
  background-color: white;
  margin-bottom: -7px;
}

.tab-box:hover .tab-box-icon img {
  background-color: white;
  padding: 5px;
  border-radius: 5px;
}

.tab-box-content h3 {
  margin-left: 5px;
  font-size: 19px;
  font-weight: 500;
}

.research-img img {
  width: 100%;
  height: 417px;
  border-radius: 5px;
}

.research-content {
  margin-top: -7px;
}

.research-content p {
  margin: 20px 0;
  font-weight: 400;
  font-size: 16px;
}

.research-tab-content {
  display: none;
}

.research-active {
  /* display: block; */
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.research-active .tab-box-icon img {
  background-color: white;
  padding: 5px;
  border-radius: 5px;
}

@media (max-width: 992px) {
  .research-img img {
    height: 100%;
  }

  .research-content {
    margin-top: 0;
  }
}
/*end research */

/* <!-- Our Product Capacity --> */
.capacity-bg {
  position: absolute;
  width: 100%;
  left: -115px;
  top: 20px;
  opacity: 0.3;
  animation: updown 3s linear infinite;
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.capacity-img1 {
  position: relative;
  width: 100%;
  height: 387px;
  border-radius: 10px;

}
.product-capacity-box {
  text-align: center;
  margin-bottom: 25px;
  border-radius: 10px;
}
.product-capacity-box span {
  font-size: 30px;
}
.product-img-second img {
  width: 100%;
  border-radius: 10px;
}
.product-capacity-box h3 {
  font-size: 30px;
  font-weight: 500;
}
.product-capacity-box p {
  font-size: 20px;
}
@media (max-width: 992px) {
  .product-capacity-box {
    margin-top: 30px;
  }
  .capacity-bg {
    display: none;
  }
}
@media (max-width: 576px) {
  .product-img-second img {
    margin-bottom: 20px;
  }
  .product-capacity-section {
    padding: 0;
  }
}
/* <!-- End Our Product Capacity --> */

/*  */
.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #a3d4a8;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: var(--black-color);
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #a3d4a8;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #a3d4a8;
  border: 1px solid #a3d4a8;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded="true"] {
  color: #a3d4a8;
}
.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

/* body{
  background-color:black;
} */
/*  */

/* ceo message */
.ceo-message {
  position: relative;
}

.ceo-box {
  margin-top: 130px;
}

.ceo-img {
  margin-top: -40px;
}

.ceo-message img {
  width: 100%;
  z-index: 1;
  box-shadow: 07px 7px 30px -5px rgb(0 0 0 / 20%);
  border-radius: 5px;
  height: 600px;
}

.ceo-message-content {
  padding: 18px 18px 18px 18px;
  position: relative;
}

.ceo-message-content::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 0;
  bottom: 0;
  right: 0;
  border: 7px solid rgba(255, 166, 0, 0.324);
  z-index: -1;
  border-radius: 5px;
}

.ceo-message h4 {
  font-size: 20px;
  font-weight: 500;
  color: var(--icon-color);
}

.ceo-message p {
  margin: 20px 0;
  font-weight: 300;
  text-align: justify;
  font-size: 15px;
}

@media (max-width: 992px) {
  .ceo-message-content::before {
    left: 0;
    top: -120px;
  }
}
/*end ceo message */

/* our journey */
.our-journey img {
  width: 100%;
  height: 445px;
  border-radius: 5px 0 0 5px;
}

.journey-content ul li{
  margin-bottom: 20px;
}

.our-journey-content {
  background-color: var(--liner-color);
  color: var(--white-color);
  text-align: center;
  height: auto;
  padding: 10px;
  margin-left: -30px;
  border-radius: 0 5px 5px 0;
}

.our-journey-content {
  /* background-color:rgb(167 255 164 / 22%); */
  background: rgb(167 255 164 / 22%);
  color: var(--white-color);
  text-align: center;
  height: auto;
  padding: 10px;
}

.our-journey-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.tab-button {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: background-color 0.3s;
  font-weight: 600;
  font-size: 15px;
  color: var(--bg-color);
}
@media (max-width:576px) {
  .tab-button{
    padding: 10px 15px !important;
  }
}

.tab-button.active,
.tab-button:hover {
  background-color: var(--icon-color);
  border-radius: 20px;
}

.our-journey .tab-content {
  padding: 20px;
}

.our-journey .tab-content h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.our-journey .tab-content p {
  font-weight: 300;
  font-size: 15px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h2 {
  color: var(--black-color);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.tab-panel p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black-color);
  margin-top: 10px;
}

.tab-all-btn {
  background-color: rgb(75 175 71 / 22%);
  border-radius: 20px;
}

@media (max-width: 992px) {
  .our-journey-content {
    margin-left: 0;
    margin-top: -7px !important;
    border-radius: 0px 0px 5px 5px;
  }

  .our-journey img {
    border-radius: 5px 5px 0 0;
  }
}
@media (max-width:576px) {
  .our-journey-content{
    height: auto !important;
  }
  .slick-dots li {
    display: none !important;
  }
}
/*end our journey */

/* our team */
.teamWrapper {
  margin-top: 50px;
}
.teamGrid {
  margin-top: 100px;
}
.avatar {
  position: absolute;
  left: 0;
  right: 0;
  top: -80px;
  text-align: center;
}
.teamcolinner {
  position: relative;
}
.avatar > img {
  width: 150px;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgb(170 170 173/ 1);
  box-shadow: 0px 3px 10px 3px rgb(170 170 173 / 0.5);
}
.teamcolinner {
  position: relative;
  border: 1px dashed #ddd;
  min-height: 100px;
  background: var(--white-color);
  z-index: 9;
}
.teamcol {
  padding: 15px;
  background: var(--white-color);
  border-radius: 10px;
  position: relative;
  transition: transform 1s ease-in-out;
}
.teamcol:hover {
  transform: translateY(-30px);
  box-shadow: 0px 3px 10px 3px rgb(170 170 173 / 0.5);
  transition: transform 1s ease-in-out;
}
.teamcol:before {
  content: "";
  width: 50%;
  height: 50%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--icon-color);
  border-top-right-radius: 10px;
  transition: width 1s ease-in-out;
}
.teamcol:after {
  content: "";
  width: 50%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--liner-color);
  border-bottom-left-radius: 10px;
  transition: width 1s ease-in-out;
}
.teamcol:hover::before,
.teamcol:hover::after {
  width: 100%;
  transition: width 1s ease-in-out;
}
.member-name {
  margin-top: 80px;
}
.member-info {
  padding: 10px 20px;
}
.social-listing {
  align-items: center;
  justify-content: center;
  display: flex;
  list-style: none;
  padding: 0;
}
.social-listing > li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #f4f5f7;
  border-radius: 50%;
  margin: 5px;
}
/*end our team */

/* award */
.award p {
  text-align: justify;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 300;
}

.award img {
  width: 100%;
  height: 340px;
}

.award-content .primary-title,
.award-content .secondary-title {
  text-align: start;
}
.certificate {
  padding: 0 60px;
}

/* .about-us-info {
  margin-top: 50px;
} */

@media (max-width: 992px) {
  .certificate {
    margin-top: 30px;
  }
}
/*end award */

/* company overview */
.overview-img {
  position: relative;
  /* margin-bottom: 70px; */
}
.img-first img {
  width: 78%;
  border-radius: 10px;
  height: 445px;
}
.img-second img {
  width: 50%;
  border-radius: 10px;
  border: 10px solid var(--white);
  position: absolute;
  right: 0;
  bottom: -116px !important;
  height: 293px;
  left:100;
}
.img-third {
  position: absolute;
  right: 0;
  top: 20px;
  z-index: -1;
  animation: img-about 4s ease infinite;
  /* transition: 2s; */
}

@keyframes img-about {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}
@media (max-width: 1300px) {
  .img-first img {
    height: 475px;
  }
  .img-second img {
    bottom: -130px;
  }
}
@media (max-width: 992px) {
  .overview-img {
    margin-bottom: 165px;
  }
}

@media (max-width: 576px) {
  .img-third svg {
    width: 80%;
    margin-top: -20px;
  }
  .img-second img {
    height: auto !important;
  }
  .img-first img {
    height: auto !important;
  }
  .img-second img {
    bottom: -45px;
  }
  .overview-img {
    margin-bottom: 80px;
  }
}


.company-overview .primary-title,
.company-overview .secondary-title {
  text-align: start;
}

.company-overview .our-journey-content {
  margin-left: 0 !important;
  border-radius: 10px;
}

.company-overview p {
  margin-bottom: 20px;
  color: var(--font-color);
}

.our-journey-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.tab-button {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: background-color 0.3s;
  font-weight: 600;
  font-size: 15px;
  color: var(--font-color);
}

.tab-button.active,
.tab-button:hover {
  color: var(--white-color);
  background-color: var(--secondary-color);
  border-radius: 20px;
}

.our-journey .tab-content {
  padding: 20px;
}

.our-journey .tab-content h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--font-color);
}

.our-journey .tab-content p {
  font-weight: 400;
  font-size: 15px;
  color: var(--font-color);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-all-btn {
  background-color: rgb(75 175 71 / 22%);
  border-radius: 20px;
}

@media (max-width: 992px) {
  .our-journey-content {
    margin-left: 0;
    margin-top: -7px;
  }

  .our-journey-content {
    margin-top: 40px;
  }
}
/* end company overview */

/* our-product */
.titles-btn .btn-all {
  display: inline-block;
  text-align: right;
}

.titles-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.our-product-titles h2,
.our-product-titles h3 {
  text-align: start;
}
.our-product-titles h3 {
  margin-bottom: 0px !important;
}
.our-product-content .btn {
  width: 100%;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  margin-top: 20px;
}
.our-product-box {
  margin-bottom: 20px;
  border-radius: 10px;
}
.our-product-content {
  background-color: #f5f5f5;
  /* height: 300px; */
  padding: 10px 0 0 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.our-product-content h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}

.our-product-content ul {
  height: 150px;
}
.our-product-box ul li {
  margin: 10px 0;
  color: var(--font-color);
}

.our-product-box li i {
  font-size: 7px;
  vertical-align: middle;
  margin-right: 10px;
}

.our-product-box img {
  width: 100%;
  height: 250px;
  margin-bottom: -7px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.our-product-box .btn-all {
  /* margin-bottom: 20px; */
  margin: 0;
}

@media (max-width: 576px) {
  .our-product-box {
    text-align: center;
  }
}
/* end our-product */

/* Counter */
.counter-box {
  display: flex;
  align-items: center;
}

.counter-content h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
}

.counter-content span {
  font-size: 35px;
  font-weight: 500;
  color: var(--white-color);
}

.counter-up {
  position: relative;
  width: 100%;
  padding: 140px 0;
  background-image: url("../img/counter-home-image.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.counter-up::before {
  position: absolute;
  background-color: #070707d1;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.counter-up .row {
  /* background-color: var(--liner-color); */
  /* padding: 40px 0; */
  /* border-radius: 10px; */
  /* position: relative; */
}
.counter-images img {
  width: 55px;
}
.counter-content {
  margin-left: 15px;
}
.counter-images {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 5px;
}
@media (max-width: 992px) {
  .counter-box {
    justify-content: center;
    flex-direction: column;
    margin-bottom: 30px;
  }
}
/* .counter-up::before{
position: absolute;
content: "";
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.743);
} */

/* .counter-up::after{
position: absolute;
content: "";
top: 0;
bottom: 0;
left: 0;
right: 0;
background-image: url("../img/shape-17.webp");
opacity: 0.9;
background-size: contain;
} */
/* End Counter */

/* why choose us */

.why-choose-us-img img {
  width: 100%;
  height: 552px;
  border-radius: 10px;
}
.why-choose-us-img {
  position: relative;
  margin-top: 50px;
  margin-bottom: 20px;
}
.why-choose-us-img::after {
  position: absolute;
  content: " ";
  width: 100%;
  height: 100%;
  top: -40px;
  left: -40px;
  border: 3px solid var(--secondary-color);
  z-index: -1;
  border-radius: 10px;
}

.why-choose-us .primary-title,
.why-choose-us .secondary-title {
  text-align: start;
}
.farming-img {
  /* width: 80px;
    height: 80px; */
  /* background-color: var(--icon-color); */
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.farming-img img {
  width: 60px;
  height: 60px;
}
.why-choose-us-para h3 {
  color: var(--white-color);
}
.why-choose-us-para p {
  color: var(--white-color);
}

.why-choose-us-content ul li {
  margin: 20px 0;
  position: relative;
  height: 110px;
  background: var(--secondary-color);
  padding: 16px 10px;
  border-radius: 10px;
}

.why-choose-us-para {
  padding-left: 80px !important;
}

@media (max-width: 576px) {
  .why-choose-us-content ul li {
    height: 130px;
  }
  .why-choose-us-img img {
    height: auto !important;
  }
  .why-choose-us-img::after {
    left: -15px;
  }
}
@media (max-width: 400px) {
  .why-choose-us-content ul li {
    height: auto;
  }
}
/* end why choose us */

/* All Seeds Product */
.single-seeds-product {
  background-color: #ededed;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.single-seeds-product img {
  width: 185px;
  mix-blend-mode: multiply;
  filter: contrast(1);
}
.single-seeds-product h5 {
  font-size: 16px;
  font-weight: 400;
}
/* End All Seeds Product */

/* Product-info */
.product-information {
  padding: 80px 0;
}
.product-information img {
  width: 100%;
  height: 503px;
  border-radius: 10px;
  background-color: var(--bg-color);
}
.product-information h3 {
  font-size: 20px;
  margin-bottom: 30px;
}
.product-information ul li {
  margin: 10px 0;
  font-weight: 500;
  font-size: 17px;
  color: var(--font-color);
}
.product-information ul li::before {
  content: "->";
}
.product-information-content ul {
  margin: 25px 0;
  display: inline-grid;
}
.product-information-content h2 {
  top: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--black-color);
}
@media (max-width: 576px) {
  .product-information img {
    height: auto;
  }
  .product-information-content h2 {
    font-size: 20px;
  }
}
/* Product-info */

/* diverse service */
.diverse-service-content h3 {
  font-size: 30px;
  font-weight: 500;
}

.diverse-service-content p {
  margin: 10px 0;
  font-weight: 300;
  color: var(--font-color);
}

.diverse-service-img img {
  width: 100%;
  height: 540px;
}

.diverse-service-content h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 10px 0;
}

.diverse-service-content ul {
  display: flex;
  padding: 15px 0;
  background: #fff;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 10px;
}

.diverse-service-content ul li {
  width: 33%;
  text-align: center;
  display: block;
  border-right: 1px solid #eee;
}

.diverse-service-content ul li span {
  font-size: 30px;
  font-weight: 600;
  color: var(--black-color);
}

.diverse-service-content ul li h5 {
  color: #636363;
  font-size: 15px;
}

.diverse-service-content ul li:last-child {
  border: none;
}

.diverse-service-content .all-btn {
  margin: 15px 0;
}
@media (max-width: 1300px) {
  .diverse-service-img img {
    height: 588px;
  }
}

@media (max-width: 992px) {
  .diverse-service .row {
    display: flex;
    flex-direction: column-reverse;
  }
  .diverse-service-img img {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .diverse-service-img img {
    height: auto;
  }
}
/* end diverse service */

/* Client Review */
.client-review img {
  width: 100px;
  /* margin-top: -65px; */
  margin-right: 20px;
}
.img-bio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.client-review-card {
  margin-top: 10px;
  background-color: var(--white);
  box-shadow: 0px 0px 5px -2px rgba(0, 0, 0, 0.5);
  /* border:1px solid var(--black); */
  padding: 20px;
  border-radius: 10px;
  color: var(--white);
  position: relative;
  height: 335px;
  margin-bottom: 15px;
}

.client-bio {
  margin: 15px 0;
}
.client-bio h6 a {
  color: var(--icon-color);
}

.client-review-card h4 {
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--black);
}

.client-review-card h6 {
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--black);
}

.client-review-card i {
  font-size: 35px;
  color: var(--black);
}

.client-review p {
  margin: 10px 0;
  color: var(--black);
  /* text-align: justify; */
  font-size: 16px;
}

@media (max-width: 1300px) {
  .client-review-card {
    height: 390px !important;
  }
}

@media (max-width: 992px) {
  .client-review-card {
    height: 470px !important;
  }
}

@media (max-width: 768px) {
  .client-review-card {
    height: 586px !important;
  }
}

@media (max-width: 576px) {
  .client-review-card {
    height: 415px !important;
  }
  .img-bio {
    flex-direction: column;
  }
  .client-review-card h4 {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .client-review-card {
    height: 525px !important;
  }
}

@media (max-width: 330px) {
  .client-review-card {
    height: 550px !important;
  }
}

/* End Client Review */

/* Blog section */
.blog-section .title-liner img {
  width: 100px;
  height: 10px;
}

.blog-section {
  position: relative;
  /* padding-bottom: 0; */
}
.blog-section h3 {
  text-align: start;
}

.blog-section .btn-holder {
  margin: 10px auto;
}
.blog-section .btn-page {
  text-align: center;
  margin-top: 50px;
}

.blog-section .slick-prev,
.blog-section .slick-next {
  display: none !important;
}

.blog-section .btn-all {
  /* margin-top: 50px; */
}
.card img {
  margin-right: auto;
  margin-left: auto;
  display: block;
  width: 100%;
  height: 200px;
}
.card,
.card-blog {
  width: 100% !important;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  /* margin: auto; */
  margin-bottom: 10px;
}
.card-blog {
  margin-top: 20px;
}
.blog-card-content {
  padding: 20px;
  cursor: pointer;
  background-color: var(--white);
}

.blog-section::before {
  background-image: url("img/pattern-one.png");
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  position: absolute;
  opacity: 0.1;
  z-index: -1;
}
.blog-card-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: black;
}
.blog-card-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.blog-card-content .border {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}
.admin {
  display: flex;
  justify-content: space-between;
}
.slider-admin-icon {
  display: flex;
}
.slider-admin-icon h6 i {
  margin-right: 20px;
  margin-left: 8px;
}
.admin h6 {
  font-size: 12px;
  color: #888;
}
.btn-all {
  margin-top: 20px;
}
.db-btn {
  display: none;
}

@media (max-width: 768px) {
  .titles-btn .btn-all {
    display: none;
  }
  .db-btn {
    display: block;
    margin-top: 50px;
  }
}
/* End Blog section 

/* we are hiring */

.hiring input {
  padding: 20px 10px;
  font-size: 15px;
  border: none;
  border-bottom: 1px solid black;
  margin-bottom: 10px;
  width: 100%;
}

.lable-msg h5 {
  font-size: 15px;
  font-weight: 400;
}
.lable-msg span {
  font-size: 15px;
  font-weight: 400;
}

.careers-first-title {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: var(--icon-color);
  letter-spacing: 1px;
}

.careers-second-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 35px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--font-color);
  letter-spacing: 1px;
}
/* End we are hiring */

/* contact us */
.contact-us-content {
  position: relative;
  background-color: var(--liner-color);
  color: var(--white-color);
  padding: 20px;
  border-radius: 10px 0 0 10px;
  font-size: 16px;
  z-index: 1;
  height: 382px;
  /* font-size: 16px; */
  font-weight: 300;
}

.contact-us-content .icon i {
  align-items: center;
  display: flex;
  font-size: 25px;
  margin-right: 10px !important;
}

.contact-us-content .icon p {
  font-size: 16px;
}

.contact-us-content ul li a {
  font-size: 16px;
}

.contact-number ul li a {
  font-size: 16px;
}

.contact-us-content a {
  color: var(--white-color);
}

.contact-us .icon {
  display: flex;
  margin-bottom: 50px;
}

.contact-us .icon i {
  margin-right: 5px;
  color: var(--icon-color);
}

form {
  display: flex;
  flex-direction: column;
}

.form-container {
  padding: 20px;
  background-color: var(--bg-color);
  margin-left: -30px;
  border-radius: 0 10px 10px 0;
  height: 382px;
}
.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.form-group label {
  margin-right: 10px;
  color: var(--icon-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}
.form-container i {
  font-size: 20px;
}

.form-group textarea {
  /* height: 59px; */
}

form button {
  padding: 10px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 4.3px;
  margin-left: 26px;
}

form button:hover {
  background-color: #218838;
}
.contact-us-content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../img/feature1-right.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.4;
  z-index: -1;
}

@media (max-width: 370px) {
  .contact-us-content {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .contact-us-content {
    border-radius: 10px 10px 0 0;
  }

  .form-container {
    margin-left: 0;
    border-radius: 0 0 10px 10px;
  }
}
.map iframe {
  box-shadow: 0 0 5px var(--font-color);
  border-radius: 10px;
}
/*end contact us */

/* Our Product */
.category ul {
  background-color: var(--offwhite);
}

.category ul li {
  border-bottom: 1px solid #dedede;
  padding: 16px 20px;
}

.category ul li:hover {
  background-color: var(--green);
}

.category ul li a {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
}
.category ul li a i {
  padding-right: 10px;
}

.category h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.seeds-product {
  text-align: center;
  background-color: var(--offwhite);
  border-radius: 10px;
  cursor: pointer;
  transition: 1s;
  padding: 10px 0;
  margin-bottom: 15px;
}

.seeds-product:hover {
  transform: rotate3d(1, 1, 1);

  transition: 1s;
}

.seeds-product img {
  width: 100%;
}

.seeds-product a.all-btn {
  display: inline-block;
}

a.seeds-btn {
  background-color: var(--blue);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  display: inline-block;
}
.responsive-page {
  margin-top: 43px;
}
.slick-prev,
.slick-next {
  display: none !important;
}
/* End Our Product */

/* Seeds Category */

.category-item {
  width: 80px;
  height: 80px;
  border: 1px solid lightgray;
  border-radius: 50%;
  padding: 20px;
  margin: auto;
  transition: 0.3s;
}
.category-item:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
a .single-seeds-category img {
  width: 100%;
  animation: img-scale 2s infinite linear;
}

.single-seeds-category {
  text-align: center;
}

.single-seeds-category h5 {
  font-size: 14px;
  margin: 6px 0;
  font-weight: 500;
}

.single-seeds-category h6 {
  font-size: 12px;
  font-weight: 400;
  color: #888;
}

@keyframes img-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
/*End Seeds Category */

/* Tab content */
.nav-seeds ul li a:hover {
  border-bottom: 0 !important;
}
.active {
  background-color: var(--white);
}
.nav-tabs li.active a,
.nav-tabs li.active a:focus,
.nav-tabs li.active a:hover {
  color: var(--blue) !important;
  cursor: default;
  background-color: var(--green);
  border: 0;
}
.nav-tabs li a {
  color: var(--green);
  margin-right: 2px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  display: inline-block;
}
.nav-tabs {
  border: 0;
  text-align: center;
  /* margin: 50px 0 30px 0 !important; */
}
.tab-content img {
  width: 150px;
  height: 200px;
  margin: 10px 0;
}
ul.nav-seeds {
  display: inline-block;
}
#hotel,
#school,
#re-place,
#indusrty,
#com-build {
  scroll-margin-top: 100px;
}
/* End Tab content */

/* Farmer Review */


.farmer-review-box {
  background-color: var(--bg-color);
  padding: 20px;
  border-radius: 30px 0 30px 0;
  margin-bottom: 15px;
  height:220px;
  margin-bottom:15px;
}

iframe {
  border-radius: 20px 0 20px 0;
  width:100%;
  height:180px;
}
/*End Farmer Review */

/* footer */
footer {
  background-color: var(--liner-color);
  color: var(--white-color);
}
footer i {
  color: var(--secondary-color);
}

.footer-contact {
  padding: 30px;
}

.footer-contact a {
  font-size: 18px;
  color: white;
  font-weight: 400;
}

.footer-contact-box i {
  margin-right: 10px;
}

.footer-contact-icon i {
  margin-right: 36px;
  font-size: 20px;
}

.email-box {
  text-align: center;
}

.footer-logo {
  text-align: center;
  position: relative;
  z-index: 0;
}

.footer-logo img {
  height: 83px;
  margin-top: 7px;
}

.footer-logo::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-color: white;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.footer-content img {
  /* width: 50%; */
  max-width: 100%;
  margin-top: 30px;
}

.footer-content h4 {
  font-size: 28px;
  margin: 30px 0 15px 0;
  font-weight: 500;
}

.footer-content ul {
  margin-bottom: 10px;
}

.footer-contact-icon {
  margin-top: 20px;
}

.footer-content ul li {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--white-color);
  transition: 0.5s;
  font-weight: 400;
}

.footer-content-box ul i {
  font-size: 20px;
  margin-right: 15px;
}

.footer-content ul li:hover {
  transform: translateX(5px);
  color: var(--secondary-color);
}

@media (max-width: 992px) {
  .footer-contact {
    text-align: center;
  }
  .email-box {
    margin: 15px 0;
  }
  .footer-contact-icon i {
    margin-right: 20px;
  }
  .client-review-card h4 {
    font-size: 20px;
  }
}

.footer-address {
  display: flex;
}

.fa-location-dot {
  font-size: 25px;
  margin-right: 10px;
}

.copyright {
  text-align: center;
  margin-top: 15px;
}

.copyright h4 {
  margin: 20px 0;
  font-weight: 400;
}

.copyright img {
  width: 75px;
  vertical-align: middle;
  background-color: white;
}
/* end footer */

/* coming soon */
.coming {
  display: flex;
  justify-content: center;
  /* align-items: center;
  height: 100vh; */
}

/* End coming soon */

/* Whatsapp */
.floating_btn {
  position: fixed;
  bottom: 0px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

.text_icon {
  margin-top: 8px;
  color: white;
  font-size: 13px;
}

@media (max-width: 576px) {
  .floating_btn {
    right: -10px;
    bottom: 0;
  }
}
/*End Whatsapp */

/* Animation Scroll */

.trans-yp,
.trans-yp1 {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.trans-yp.active-yp,
.trans-ym.active-ym,
.trans-ym1.active-ym1,
.trans-yp1.active-yp1 {
  transform: translateY(0);
  opacity: 1;
}

.trans-ym,
.trans-ym1 {
  position: relative;
  transform: translateY(-150px);
  opacity: 0;
  transition: 1s all ease;
}
/*End Animation Scroll */
#our-process,
#quality-control,
#product-capacity,
#research-devlopment {
  scroll-margin-top: 120px !important;
}



#testimonials,
#award-recognition,
#our-team,
#our-journey,
#ceo-message{
  scroll-margin-top: 90px !important;
}


/* investor page */

.investors-box{
  border: 1px solid rgb(185, 185, 185);
  padding: 20px;
  border-radius: 10px;
}

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

li {
  position: relative;
}

ul.submenu-1 {
  display: none;
  /* position: absolute; */
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  padding: 0;
  width: 100%;
}

ul.submenu-1 li {
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid gray;
}



.investors-box > ul > li > a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid #ddd;
  width: 100%;
}

.investors-box ul li a{
  display: flex;
  justify-content: space-between;
}
.investors-box > ul > li > a:hover {
  background-color: #f0f0f0;
}


.pdg-title h2{
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 10px;
}
.pdf-box{
  width: 100%;
  padding: 10px;
  border: 1px dotted var(--primary-color);
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.pdf-box h3{
  font-weight: 400;
  color: #000;
}

.pdf-box img{
  width: 40px;
  margin-right: 10px;
}

/* end investor page */





/* FAQ */
.faq-section .primary-title {
  letter-spacing: 0px;
}

h1.faq-title {
  text-align: center;
  margin: 20px 0;
}

.faq_container {
  border-bottom: 1px solid var(--lightblack);
  margin: 10px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
  background-color: var(--bg-color-first);
}

.faq_question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  cursor: pointer;
  /* transition: 1s; */
}
.faq_question-text {
  margin-left: 10px;
}
.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;
}

.answer {
  padding: 0 10px 20px;
  line-height: 2rem;
  font-size: 16px;
}
.fqa_headline_container h2 span {
  font-weight: 700;
}
.faq_question-text h3 {
  margin: 10px 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--lightblack);
}

.icon-faq.active {
  background: var(--lightblack);
  border: 2px solid var(--lightblack);
}
.icon:hover {
  cursor: pointer;
}
.icon-shape {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  /* border: 1px solid black; */
  border-radius: 50%;
}

.icon-faq .icon-shape::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 3px;
  transition: all 0.5s ease;
}
.icon-faq .icon-shape::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 20px;
  background: white;
  border-radius: 3px;
  transition: all 0.5s ease;
}
/* .faq_question.active:hover{
    background-color: #13a64c;
} */
.icon-faq .icon-shape.active::before {
  transform: translate(-50%, -50%) rotate(180deg);
  transition: all 0.5s ease;
}
.icon-faq .icon-shape.active::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.5s ease;
}
@media (max-width: 576px) {
  .faq_question-text h3 {
    font-size: 18px;
  }
  .answer p {
    font-size: 14px;
  }
}
/* End FAQ */



.pages-link ul {
  height: 55px;
  display: flex;
  align-items: center;
}

.pages-link ul span {
  /* font-family: Lexend-Regular; */
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-align: left;
  margin: 0 10px;
  color: var(--black-color);
}

.pages-link ul li a {
  /* font-family: Lexend-Regular; */
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: var(--black-color);
}

.pages-link .open-pages {
  /* font-family: Lexend-Light; */
  color: var(--font-color);
}
/* Pages links End Here */






/* full detail of events */
h2.primary-title {
  font-size: 36px;
  /* font-family: Lexend-Regular; */
  color: var(--secondary-color);
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width:576px){
    h2.primary-title {
        font-size:30px;
    }
}

ul.date-time {
  /* font-family: Lexend-Regular; */
  color: var(--primary-color);
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
}
ul.date-time li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 18px;
}

.event-detail-img img {
  width: 100%;
  height: 100%;
}

.event-full-detail p {
  margin: 30px 0;
  font-size: 17px;
  line-height: 25px;
  /* font-family: Lexend-Light; */
  font-weight: 500;
  color: var(--text-color);
}

.event-full-detail ul li {
  list-style: disc;
  margin: 0 0 0 30px;
  font-size: 17px;
  line-height: 25px;
  /* font-family: Lexend-Light; */
  font-weight: 500;
  color: var(--text-color);
}
.event-full-detail ul li:first-child {
  margin: 0 0 30px 30px;
}

.related-events {
  background: #f2f7fa;
}

.related-events h3 {
  border: 1px solid #e4ecf9;
  padding: 20px;
  /* font-family: Lexend-Regular; */
  color: var(--title-color);
  font-weight: 600;
}

.related-events ul {
  padding: 0 20px;
}

.related-events ul li {
  padding: 20px 0;
  border-bottom: 1px solid #e4ecf9;
  display: flex;
  gap: 16px;
}
.related-events ul li img {
  width: 90px;
  height: 80px;
}

.related-event-detail .date {
  font-size: 14px;
  /* font-family: Lexend-Regular; */
  color: var(--primary-color);
}

.related-event-detail .date i {
  margin-right: 7px;
}

.related-event-detail p {
  /* font-family: Lexend-Regular; */
  font-weight: 600;
  font-size: 20px;
  margin-top: 10px;
  color: var(--title-color);
}

ul.share-icon {
  padding: 20px;
  display: flex;
  gap: 20px;
}

ul.share-icon li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--primary-color);
}

/* end full detail of events */




/* team section  */
.team-content img{
  width: 400px;
}

.team-title{
  font-size: 36px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
}

.team-content{
  background-color: rgb(249, 249, 249,1);
  display: flex;
  align-items: center;
  /* gap: 30px; */
  margin-bottom: 50px;
}
.team-content h2{
  color: var(--secondary-color);
}

.people-content{
  padding: 30px;
}

.team-section2{
  display: none;
}
.more-show1,
.more-show2,
.more-show3,
 .more-show4,
.more-show5,
.more-show6,
.more-show7,
 .more-show8,
 .more-show9,
 .more-show10,
 .more-show11,
 .more-show12,
 .more-show13,
 .more-show14,
 .more-show15,
 .more-show16,
 .more-show17
 {

  display: none;
}

.more-btn1,
.more-btn2,
 .more-btn3,
 .more-btn4,
 .more-btn5,
 .more-btn6,
 .more-btn7,
 .more-btn8,
 .more-btn9,
 .more-btn10,
 .more-btn11,
 .more-btn12,
 .more-btn13,
 .more-btn14,
 .more-btn15,
 .more-btn16,
 .more-btn17
{
  color: var(--primary-color);
}


@media (max-width: 768px) {
  .team-content{
    flex-direction: column;
  }
  .team-content img{
    width: 100%;
    height: auto;
  }
  .reverse{
    flex-direction: column-reverse;
  }
}

@media (max-width:576px) {
  .team-section{
    display: none;
  }
  .team-section2{
    display: block;
  }
}
/* end team section  */