@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600&family=Roboto: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&display=swap");

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins";
  /* font-size: 10px; */
}

:root {
  --color-primary: #fd7e04;
  --color-secondary: #b3886b;
  --color-dark: #2c2c31;
  --color-alt: #eee8a9;
  --color-extra: #f0fbff;
  --color-nav: #e3e6f3;
  --black-color: #222;
  --text-color: #465b52;
  --big-font: 4rem;
  --medium-font: 3rem;
  --small-font: 0.8rem;
  --very-small-font: 0.5rem;
  --text-font: 1rem;
  --bold-text: 700;
  --medium-text: 500;
  --thin-text: 300;
  --spaced-line: 5rem;
  --medium-spaced-line: 4rem;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

li {
  list-style: none;
}

h1 {
  font-size: var(--big-font);
  line-height: var(--spaced-line);
  color: var(--black-color);
}

h2 {
  font-size: var(--medium-font);
  line-height: var(--medium-spaced-line);
  color: var(--black-color);
}

h4 {
  font-size: var(--small-font);
  color: var(--black-color);
}

h6 {
  font-size: var(--very-small-font);
  font-weight: var(--bold-text);
}

p {
  font-size: var(--text-font);
  color: var(--text-color);
  margin: 15px 0 20px 0;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s ease;
}

.reveal.read {
  transform: translateY(0px);
  opacity: 1;
}

.side {
  left: -30%;
  opacity: 0;
  transition: all 1.2s ease;
}

.col {
  color: var(--color-primary);
}

.side.move-right {
  left: 10%;
  opacity: 1;
}

/* to the top arrow */
.arrow-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  transition: 0.5s;
  visibility: none;
  opacity: 0;
}

.arrow-btn a {
  height: 45px;
  width: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  display: block;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.5s;
}

.arrow-btn a span {
  font-size: 10px;
  margin-top: 7px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #000;
}

.arrow-btn a:hover {
  background: var(--color-secondary);
}

.arrow-btn a i {
  color: #000;
  width: 40px;
  font-size: 18px;
}

.arrow-btn.active {
  visibility: visible;
  opacity: 1;
}

.btn-normal {
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.5s;
}

.btn-normal:hover {
  background-color: var(--color-secondary);
  color: #fff;
}

.container {
  max-width: 80%;
  margin: 0 auto;
}

.header {
  width: 100%;
  z-index: 1000;
}

.header-top {
  background: var(--color-dark);
  color: #fff;
}

.box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.info-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-basis: 75%;
}

.info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info span {
  margin-right: 20px;
  font-size: 23px;
  color: var(--color-primary);
}

.info p,
.info a {
  display: inline;
  color: #e0e0e0;
  font-weight: 700;
  font-size: 16px;
  margin: 10px 0 10px 0;
}

.info p:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-basis: 8%;
}

.icon {
  font-size: 18px;
  font-weight: 700;
}

.icon a i {
  color: #fff;
  font-size: 18px;
  transition: transform 0.5s;
}

.icon a i:hover {
  transform: translateY(5px);
  color: var(--color-primary);
}

.main-header {
  z-index: 100;
  background: #fff;
  width: 100%;
  padding: 2px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 3s ease ease-in-out;
}

.show {
  display: none;
  transition: all 3s ease;
}

.fixed {
  transition: all 3s ease;
  position: fixed;
  top: 0;
  z-index: 700;
  display: block;
}

.navbar {
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  flex-basis: 20%;
}

.nav-list {
  z-index: 100;
  display: flex;
  justify-content: space-between;
  transition: all 0.5s;
  /* align-items: center; */
}

.nav-list li {
  z-index: 100;
  margin-left: 50px;
  font-size: 19px;
  font-weight: 600;
  transition: transform 0.5s;
}

.fa-angle-down {
  margin-left: 10px;
}

.nav-list li:hover {
  transform: translateY(10px);
}

.nav-list li a:hover {
  color: var(--color-primary);
}

.sub-list {
  z-index: 100;
  position: absolute;
  background: #fff;
  width: 350px;
  border-top: 4px solid #000;
  top: 3.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
  transition: visibility 2s in;
  transition: opacity 2s in;
  height: 310px;
}

.sub-list li {
  margin-left: 0;
  padding: 10px 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #000;
}

/* .sub-list li:last-child {
  border-bottom: none;
} */

.sub-list::before {
  content: "";
  position: absolute;
  top: -2.1rem;
  left: 2rem;
  border: 15px solid transparent;
  border-bottom-color: #000;
}

.nav-list li:hover > .sub-list {
  top: 3.5rem;
  opacity: 1;
  visibility: visible;
}

.sub-list li:hover {
  cursor: pointer;
  transform: translateY(0);
}

.sub-list li a:hover {
  color: var(--color-primary);
}

.menu-toggle {
  font-size: 30px;
  position: absolute;
  right: 10%;
  visibility: hidden;
  cursor: pointer;
}

.menu-close i {
  font-size: 30px;
  display: none;
  cursor: pointer;
}

.menu-toggle i:hover,
.menu-close i:hover {
  color: var(--color-primary);
}

.active-nav {
  visibility: visible;
  right: 0;
}

.hero {
  background: url("../img/hero/banner3.png");
  height: 90vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.overlay {
  position: absolute;
  background: #000;
  opacity: 0.7;
  height: 90vh;
  width: 100%;
  z-index: 1;
}

.info-box {
  z-index: 100;
  position: absolute;
  top: 390px;
  width: 60%;
}

.info-box h1 {
  color: #fff;
}

.info-box p {
  color: #efefef;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.7;
}

.info-box .hero_btn {
  border-radius: 0;
  background-color: var(--color-primary);
}

.info-box .hero_btn:hover {
  background-color: var(--color-secondary);
}

/* About section */
.about {
  width: 100%;
  padding-bottom: 40px;
  margin-bottom: 60px;
}

.details {
  display: flex;
  justify-content: center;
  background: var(--color-dark);
}

.about-img {
  width: 50%;
  background: url("../img/main/img1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 500;
}

.about-txt {
  width: 50%;
  padding: 50px 50px 50px 150px;
  color: #fff;
}

.about-txt h2 {
  font-size: 37px;
  color: #fff;
}

.about-txt p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 2.3;
  color: lightgrey;
}

.about-txt a {
  border: 2px solid #000;
  transition: border 0s;
}

.about-txt a:hover {
  border: 2px solid var(--color-secondary);
}

/* product area */

.services {
  padding: 30px 0 100px 0;
  width: 100%;
  margin-top: 15px;
}

.services .container h2 {
  margin-bottom: 30px;
  font-size: 35px;
}

.card-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.card {
  padding: 70px 20px;
  box-shadow: 0px 0px 40px 5px rgb(0 0 0 / 6%);
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 50px;
  cursor: pointer;
}

.card:hover {
  box-shadow: 0px 0px 40px 5px rgb(0 0 0 / 15%);
}

.card .img {
  width: 55%;
}

.card .img img {
  width: 100%;
  height: auto;
}

.card-details {
  width: 45%;
  padding-left: 15px;
}

.card-details h3 {
  font-size: 20px;
}

.card-details h5 {
  font-size: 18px;
}

.card-details p {
  text-align: justify;
  font-size: 18px;
  margin-bottom: 40px;
  margin-top: 30px;
}

.card-details a {
  background: var(--color-primary);
}

/* testimonial */
.testimonial {
  width: 100%;
  height: 62vh;
  background: url("../img/main/bg-footer.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial .container {
  text-align: center;
  padding: 70px 0;
  color: #fff;
}

.swiper {
  width: 100%;
  height: 100%;
}

.box1{
  padding: 0 70px;
}

.heading h2 {
  font-size: 35px;
  color: #fff;
}

.testimony i {
  font-size: 35px;
  margin: 0 20px;
  color: var(--color-primary);
}

.testimony p {
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
}

.client h6 {
  font-size: 20px;
  margin-bottom: 0px;
  color: var(--color-secondary);
}

.client p {
  color: #fff;
  margin: 5px 0;
  font-size: 18px;
}

.contact .container {
  padding: 70px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-details {
  width: 53%;
}

.contact-details h4 {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-details h1 {
  font-size: 37px;
  line-height: 1;
}

.contact-details p {
  font-weight: 500;
  font-size: 18px;
}

.contact-flexbox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-top: 70px;
}

.contact-details-flex {
  max-width: 40%;
}

.contact-details-flex p {
  margin: 12px 0;
  max-width: 90%;
}

.contact-form {
  width: 40%;
  padding: 30px 25px;
  box-shadow: 0px 0px 40px 5px rgb(0 0 0 / 6%);
}

.form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.form label {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
}

.form input {
  width: 100%;
  height: 40px;
  padding: 20px 0 20px 10px;
  border-radius: 5px;
  border: 1px solid gray;
  outline: none;
  font-size: 16px;
}

.form textarea {
  border: 1px solid gray;
  outline: none;
  border-radius: 5px;
  padding: 15px 0 15px 10px;
  margin-bottom: 20px;
  font-size: 18px;
  width: 100%;
}

.form button {
  font-size: 14px;
  font-weight: 600;
  background: var(--color-primary);
  color: #fff;
  outline: none;
  border: none;
  padding: 15px 25px;
  border-radius: 5px;
  width: 40%;
  margin: 0 auto;
  transition: all 0.5s;
  text-transform: uppercase;
  cursor: pointer;
}

.form button:hover {
  background: var(--color-secondary);
  color: #000;
  transform: translateY(20px);
}

.footer {
  background: var(--color-dark);
  height: 65vh;
  width: 100%;
  font-family: "Roboto", sans-serif;
}

.footer .container {
  padding: 70px 0 50px 0;
}

.footer-main {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.footer-left {
  width: 70%;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  border-right: 0.5px solid #fff;
}

.footer-left-box:first-child {
  width: 40%;
  margin-right: 30px;
}

.footer-left-box {
  width: 30%;
}

.footer-left-box h4,
.footer-right h4 {
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}

.footer-left-box p {
  font-size: 18px;
  color: lightgray;
  margin: 15px 0;
}

.footer-left-box p a {
  color: lightgray;
}

.footer-right a:hover,
.footer-left-box p a:hover {
  color: #fff;
}

hr {
  border-bottom: 0.5px solid #fff;
  border-top: 0;
}

.footer-right {
  width: 30%;
  padding-left: 50px;
}

.footer-right p {
  color: lightgray;
  font-size: 15px;
}

.footer-right a {
  color: lightgray;
  font-size: 18px;
}

.footer-right i {
  color: var(--color-primary);
  margin-right: 10px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom .copyright p {
  color: #fff;
}

.social-list ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-list ul li i {
  font-size: 18px;
  color: #000;
  transition: 0.5s;
  /* width: 20px; */
}

.social-list ul li {
  margin: 0 10px;
  background: #fff;
  padding: 5px 10px;
  border-radius: 50%;
  transition: 0.5s;
  cursor: pointer;
}

.social-list ul li:hover {
  transform: translateY(10px);
}

/* product page */

.section-header {
  background: url("../img/bg/1.png");
  height: 40vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-beans {
  background: url("../img/hero/beansflour.png");
  height: 40vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-plantain {
  background: url("../img/hero/plantainflour.png");
  height: 40vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-pepper {
  background: url("../img/hero/pepper2.png");
  height: 40vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-header .overlay {
  width: 100%;
  height: 40vh;
  background-color: rgba(0, 0, 0, 0.8);
}

.section-header .container h3 {
  font-size: 55px;
  color: var(--color-primary);
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.touch {
  width: 100%;
  height: 30vh;
  margin-top: 20px;
  background: var(--color-primary);
  position: relative;
}

.touch-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 85px;
}

.touch-box a {
  color: var(--color-primary);
  text-transform: uppercase;
}

/* contact  page*/
#contact {
  background: url("../img/bg/2.jpg");
  background-position: left;
}

/* about page */
.about-page {
  height: auto;
  width: 100%;
  padding: 100px 0;
}

.about-page .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.about-dets {
  width: 55%;
  padding: 20px 10px;
}

.about-dets h2 {
  font-size: 25px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.about-dets h3 {
  font-size: 28px;
  font-weight: 700;
}

.about-dets p {
  font-size: 18px;
  line-height: 2;
  text-align: justify;
}

.aboutpge-img {
  width: 40%;
}

.aboutpge-img img {
  height: 450px;
  width: 450px;
}

.mission {
  width: 100%;
  padding: 70px 0;
  background: #fafafa;
}

.mission .container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.mission-box {
  flex: 1;
  text-align: left;
}

.mission .head {
  text-align: center;
  padding: 0;
  margin-bottom: 20px;
}

.mission-box span {
  font-size: 60px;
  text-align: center;
  font-weight: 200;
  color: var(--color-primary);
}

.mission-box h3 {
  font-size: 20px;
  font-weight: 600;
}

.values {
  width: 100%;
  padding: 70px 0 100px 0;
}

.values .container {
  text-align: center;
}

.value-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.value-box {
  padding: 70px;
  box-shadow: 0px 0px 55px 5px rgb(0 0 0 / 6%);
  margin-bottom: 30px;
  margin-top: 30px;
  width: 30%;
  cursor: pointer;
  border: 2px solid #fff;
}

.value-box:hover {
  border: 2px solid var(--color-primary);
  outline: none;
  box-shadow: 0px 0px 55px 5px rgb(0 0 0 / 25%);
}

.value-box span {
  font-size: 70px;
  margin-bottom: 50px;
  color: var(--color-primary);
  transition: all 0.5s;
}

.value-box span:hover {
  transform: scale(1.1);
}

.value-box h4 {
  font-size: 22px;
  font-weight: 600;
}

.staff {
  width: 100%;
  padding: 20px 0 100px 0;
}

.staff .container {
  text-align: center;
}

.staff-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

.staff-box {
  padding: 0 0 30px 0;
  box-shadow: 0px 0px 55px 5px rgb(0 0 0 / 6%);
  margin-bottom: 30px;
  margin-top: 30px;
  width: 22%;
  cursor: pointer;
  overflow: hidden;
}

.staff-box:hover {
  box-shadow: 0px 0px 55px 5px rgb(0 0 0 / 25%);
}

.staff-box:hover > img {
  transform: scale(1.2);
}

.staff-box img {
  width: 100%;
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}

.staff-box h4 {
  font-size: 20px;
}

.staff-box p {
  padding: 0 10px;
  font-size: 16px;
}

/* product-single page */
.product-single {
  padding: 100px 0;
  width: 100%;
}

.card-contain {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card-contain-img {
  width: 45%;
}

.card-contain-img img {
  width: 60%;
  height: auto;
}

.card-contain-detail {
  width: 50%;
  padding-right: 20px;
}

.card-contain-detail h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary);
}

.card-contain-detail p {
  line-height: 1.8;
  font-size: 18px;
  font-weight: 500;
}

.card-contain-detail table {
  width: 100%;
  text-align: left;
  margin: 0 auto;
  padding: 10px 0px;
}

.card-contain-detail table thead tr {
  background-color: var(--color-secondary);
  color: #fafafa;
}

.card-contain-detail table thead tr th {
  padding: 10px 20px;
}

.card-contain-detail table tbody tr:nth-child(odd) {
  background-color: lightgrey;
}

.card-contain-detail table tbody tr:nth-child(even) {
  background-color: #efefef;
}

.card-contain-detail table tbody tr td {
  padding: 10px 20px;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.image-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.images {
  width: 30%;
}

.images img {
  width: 80%;
  margin: 0 40px;
}
