@import url("https://fonts.googleapis.com/css2?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&display=swap");
@import url(../fonts/font-style.css);

:root {
  --hero-bg: #eaeaea;
  --light-bg: #eaeaea;
  --purple-primary: #6c3668;
  --primary-color: #39563a;
  --dark-green: #0a5c42;
  --light-text: #515151;
  --button-color: #191919;
  --white: #ffffff;
  --dark-gray-color: #191919;
  --medium-gray-color: #323232;
  --border-color: #535353;
  --light-border: #dddddd;
  --green-border: #3b553c;
  --headin-color: #101a24;
  --primary-gradient: linear-gradient(80deg, #095b43 0%, #8da83e 100%);
}

p {
  font-family: "Poppins", sans-serif;
  color: var(--light-text);
  font-size: 16px !important;
  font-weight: 400 !important;
}

@font-face {
  font-family: "Porter Sans Block";
  src: url("PorterSansBlock.woff2") format("woff2"),
    url("PorterSansBlock.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.black-button-style {
  background-color: var(--button-color);
  color: var(--white);
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 12px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;

  img {
    transform: rotate(-40deg);
    width: 15px;
    transition: transform 0.3s ease;
  }
}

.black-button-style:hover {
  background-color: var(--primary-color);

  img {
    transform: rotate(0deg);
    width: 15px;
  }
}

.section-padding {
  padding: 100px 0px;
  color: var(--light-text);
}
.p-style {
  font-size: 16px;
  font-weight: 400;
}
.text-style {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--light-text);
}

.title-wrapper {
  position: relative;
  margin-bottom: 30px;

  .title-left-vector {
    position: absolute;
    left: 0px;
    top: 20px;
    opacity: 0.1;
  }

  .title-right-vector {
    position: absolute;
    right: 0px;
    top: 20px;
    opacity: 0.1;
  }
}

.title {
  border: 2px dashed var(--green-border);
  padding: 15px 35px;
  text-align: center;
  color: var(--headin-color);
  font-size: 32px;
  font-weight: 600;
  width: max-content;
  margin: 15px auto;
  border-radius: 100px;
}

.after-title-text {
  color: var(--light-text);
  font-size: 24px;
  line-height: 29px;
  font-weight: 400;
  margin: 15px 0px;
}

.small-title {
  font-size: 24px;
  font-weight: 700;
  background: -webkit-linear-gradient(80deg, #095b43 40%, #8da83e 60%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-tagline {
  font-size: 30px;
  font-weight: 700;
  background: -webkit-linear-gradient(80deg, #095b43 0%, #8da83e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.line-style {
  background: linear-gradient(80deg, #095b43 0%, #8da83e 100%);
  height: 5px;
  width: 100%;
}

.m-t-25 {
  margin-top: 25px;
}

.content-center {
  display: flex;
  justify-content: center;
}

header {
  background-color: #d7d7d7;

  nav {
    background-color: transparent;
    padding: 0px;
  }

  .navbar-brand {
    width: 90px;

    img {
      width: 100%;
    }
  }

  .navbar-collapse {
    justify-content: right;
  }

  .nav-item {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--headin-color);
    position: relative;
    text-decoration: none;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: var(--dark-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .nav-link:hover::after {
    transform: scaleX(1);
  }

  .nav-item:last-child .nav-link {
    background: var(--primary-gradient);
    border-radius: 10px;
    color: #fff;
  }
}

/* ========Hero Section========== */

.hero-section {
  background-color: var(--hero-bg);
  text-align: center;
  padding: 80px 0px 0px;
  overflow: hidden;

  .vector-1 {
    position: absolute;
    right: 0px;
    top: 215px;
  }

  .vector-2 {
    position: absolute;
    left: 0px;
    bottom: 140px;
    width: 265px;
  }

  .right-green-vector {
    transform: rotate(-180deg);
    left: -15px;
  }

  h2 {
    font-family: "Porter Sans Block";
    color: var(--primary-color);
    font-size: 48px;
    text-align: center;
  }

  h3 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
  }

  .hero-content-box {
    background: rgba(109, 108, 108, 0.09);
    border: 1px solid #b4b4b445;
    padding: 15px;
    margin-top: 15px;
    border-radius: 15px;
    position: absolute;
    top: 130px;
    backdrop-filter: blur(5px);
    text-align: center;
    z-index: 1;

    p {
      font-size: 20px;
      font-weight: 400;
      color: var(--light-text);
    }
  }

  .row {
    display: flex;
    justify-content: center;
  }
}

.hero-right-content-box {
  background: rgba(109, 108, 108, 0.09);
  border: 1px solid #b4b4b445;
  padding: 15px;
  border-radius: 15px;
  position: absolute;
  backdrop-filter: blur(5px);
  bottom: 35px;
  right: 5px;
  text-align: right;
  z-index: 1;

  p {
    text-align: left;
    color: var(--dark-gray-color);
  }
}

.hero-img {
  animation: heroImgRotate 2s ease-in-out infinite;
}

@keyframes heroImgRotate {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.01);
  }
}

/* ========After Hero Section========== */

.hero-bottom-section {
  padding: 30px 0px;
  background-color: var(--dark-gray-color);

  .scroll-product-box {
    /* display: inline-flex;
    overflow-x: scroll; */
    display: grid;
    /* overflow-x: scroll; */
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-bottom-product-box {
    background-color: var(--medium-gray-color);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 10px 15px 10px 15px;
    display: inline-flex;
    align-items: center;
    /* width: max-content;
    margin: 10px 10px; */
    /* min-width: 410px; */

    .product-img-box {
      width: 80px;
      width: 80px;
      border-radius: 50%;
      overflow: hidden;
      background-color: var(--purple-primary);
      padding: 10px;
    }

    .product-overview-content {
      padding-left: 15px;

      h4 {
        color: var(--white);
        font-size: 20px;
        font-weight: 500;
      }

      p {
        font-size: 16px;
        font-weight: 400;
        color: #868686;
        margin: 0px;
      }
    }
  }
}

/* ========About us Section========== */


.about-section {
  background-color: var(--light-bg);
}

.sub-content-box {
  background-color: #d9d9d960;
  border-radius: 20px 20px 0px 0px;
  padding: 20px;

  p {
    color: var(--dark-gray-color);
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
  }
}

.bottom-box {
  display: flow-root;

  p {
    float: left;
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    color: var(--light-text);
    margin: 10px 0px;
  }

  .black-button-style {
    float: right;
  }
}

.leaf-shape-1 {
  position: absolute;
  top: 300px;
  left: 72px;
  width: 87px;
  animation: leafShapeSlideUpDown 2s ease-in-out infinite;
}

@keyframes leafShapeSlideUpDown {

  0%,
  100% {
    top: 300px;
  }

  50% {
    top: 320px;
  }
}

.leaf-shape-2 {
  position: absolute;
  top: 300px;
  left: 35px;
  width: 40px;
  animation: leafShapeTwoSlideUpDown 2s ease-in-out infinite;
}

@keyframes leafShapeTwoSlideUpDown {

  0%,
  100% {
    top: 260px;
  }

  50% {
    top: 250px;
  }
}

.leaf-shape-3 {
  position: absolute;
  top: 280px;
  right: 41px;
  width: 40px;
  animation: leafShapeThreeSlideUpDown 2s ease-in-out infinite;
}

@keyframes leafShapeThreeSlideUpDown {

  0%,
  100% {
    top: 280px;
  }

  50% {
    top: 300px;
  }
}

.leaf-shape-4 {
  position: absolute;
  top: 370px;
  right: 120px;
  width: 35px;
  animation: leafShapeFourSlideUpDown 2s ease-in-out infinite;
}

@keyframes leafShapeFourSlideUpDown {

  0%,
  100% {
    right: 120px;
  }

  50% {
    right: 140px;
  }
}

/* ========Why Baobab Section========== */

.why-baobab-section {
  background-color: var(--light-bg);
  padding-top: 0px;
  padding-bottom: 100px;
}

.product-feature-box {
  background-color: var(--white);
  border: 1px solid #51515140;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 20px;
  margin-top: 15px;
  transition: transform 0.3s ease;

  .left-product-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--dark-green);
    text-align: center;
    padding: 5px;

    img {
      width: 100%;
    }
  }

  .right-content-box {
    margin-left: 15px;
    width: calc(100% - 80px);

    h4 {
      font-size: 22px;
      font-weight: 600;
      background: -webkit-linear-gradient(80deg, #095b43 0%, #8da83e 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    p {
      columns: var(--light-text);
      margin-bottom: 0px;
    }
  }
}

.product-feature-box:hover {
  transform: scale(1.05);
}

.common-section {
  background-color: var(--light-bg);
  padding-top: 0px;
  padding-bottom: 100px;
}

.feature-img {
  animation: featureRotateImage 2s ease-in-out infinite;
}

@keyframes featureRotateImage {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(1deg);
  }
}

/* ========Did you know======== */
.padd-l-40 {
  padding-left: 40px;
}

.mrr-b-50 {
  margin-bottom: 50px;
}

.did-you-know-img-box {
  background-color: #e9e9e9;
  border-left: 2px solid #cdcdcd;
  border-radius: 100px 15px 15px 15px;
  overflow: hidden;
  padding-top: 15px;
  padding-left: 15px;

  img {
    border-radius: 100px 15px 15px 15px;
  }
}

.did-you-know-left {
  position: relative;
  z-index: 1;
}

.did-you-know-right {
  position: absolute;
  right: 0px;
}

.did-you-know-box {
  border-radius: 20px;
  border: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  padding: 15px;
  margin-top:0px;
  background: var(--light-bg);

  .img-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--dark-green);
    text-align: center;
    padding: 5px;

    img {
      width: 100%;
    }
  }

  .content-box {
    margin-right: 15px;
    width: 100%;
	  .content-tagline {
		  text-align: right
	  }

    p {
      text-align: right;
      font-size: 18px;
      font-weight: 500;
      color: var(--light-text);
      margin: 0px;
    }
  }
}

/* ========testimonial======== */

.testimonial-section {
  background-color: var(--white);

  .carousel-item {
    padding: 10px 50px 50px;
  }

  .carousel-inner {
    box-shadow: none;
  }

  .carousel-indicators [data-bs-target] {
    background-color: var(--dark-green);
    height: 10px;
    border-radius: 12px;
    border-top: 0px;
    border-bottom: 0px;
  }
}

.testimonial-box {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: var(--white);
  border-radius: 14px 56px 14px 56px;
  padding: 50px;
  display: inline-flex;
  align-items: center;
  width: 100%;

  .person-thumb {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--dark-green);
    padding: 2px;

    img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
    }
  }

  .testimonial-content {
    /* width: calc(100% - 150px); */
    width: 100%;
    margin-left: 20px;

    p {
      font-size: 18px;
    }

    .client-name {
      color: var(--primary-color);
      font-weight: 600;
    }
  }
}

.join-us-section {
  background-color: var(--light-bg);

  .grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 15px;

    .grid-box {
      background-color: #e5e5e5;
      border: 1px solid var(--light-border);
      border-radius: 15px;
      text-align: center;
      padding: 60px 15px 30px;
      margin-top: 50px;
      position: relative;

      h3 {
        font-size: 18px;
        line-height: 28px;
        font-weight: 600;
        color: var(--dark-gray-color);
        margin-bottom: 20px;
      }

      p {
        font-size: 14px;
        margin-bottom: 0px;
      }

      .icon-box {
        width: 80px;
        height: 80px;
        border: 1px solid #ccc;
        border-radius: 50%;
        margin: 0 auto;
        line-height: 80px;
        position: absolute;
        top: -40px;
        left: calc(50% - 40px);
        background: #e5e5e5;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;

        img {
          width: 100%;
        }
      }
    }
  }
}

/* ========Footer======== */

.footer {
  background-color: #f9f9f9;

  .footer-top {
    padding: 50px 0px;
  }

  .third-box {
    padding-right: 20px;
    padding-left: 0px;
  }

  .footer-logo {
    width: 100px;
    margin-bottom: 18px;
  }

  .company-text {
    font-size: 14px;
  }

  h4 {
    color: var(--dark-gray-color);
    font-size: 18px;
    font-weight: 600;
  }

  ul {
    list-style: none;
    margin: 0px;
    padding: 0px;

    li {
      font-size: 16px;
      color: var(--light-text);
      font-weight: 500;
      padding: 6px 0;
    }
  }

  .social-links {
    list-style: none;
    display: flex;
    gap: 10px;

    .social-icon {
      width: 45px;
      height: 45px;
      border: 1px solid var(--light-border);
      padding: 10px;
      border-radius: 50%;

      img {
        width: 100%;
      }
    }
  }

  .footer-copyright {
    text-align: center;
    border-top: 1px solid var(--light-border);
    padding: 15px 0px;

    p {
      font-size: 13px;
      margin: 0px;
    }
  }
}

@media (max-width: 980px) {
  .text-style {
    font-size: 18px;
    line-height: 30px;
  }

  .content-tagline {
    font-size: 24px;
    text-align: CENTER;
  }

  .title-wrapper {
    margin-bottom: 10px;
  }

  .title {
    padding: 15px 35px;
    font-size: 24px;
    line-height: 34px;
    width: auto;
  }

  .after-title-text {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
  }

  .small-title {
    font-size: 18px;
  }

  .hero-section {
    padding: 35px 0px 0px;

    h2 {
      font-size: 30px;
    }

    h3 {
      font-size: 20px;
    }

    .hero-content-box {
      position: unset;
      margin: 0px 15px;
      width: calc(100% - 30px);

      p {
        font-size: 16px;
      }
    }
  }

  .join-us-section {
    .grid-wrapper {
      display: block;
      gap: 15px;
    }
  }

  .hero-right-content-box {
    position: unset;
    width: calc(100% - 30px);
    margin: 15px;
  }

  .scroll-product-box {
    display: inline-flex;
    overflow-x: scroll;

    .hero-bottom-product-box {
      min-width: 280px;
    }
  }

  .hero-bottom-section {
    .hero-bottom-product-box {
      .product-overview-content {
        padding-left: 10px;

        h4 {
          font-size: 18px;
        }

        p {
          font-size: 14px;
        }
      }
    }
  }

  .section-padding {
    padding: 30px 0px;
  }

  .sub-content-box {
    p {
      font-size: 16px;
      line-height: 26px;
    }
  }

  .why-baobab-section {
    padding-bottom: 40px;
  }

  .product-feature-box {
    padding: 15px;

    .right-content-box {
      h4 {
        font-size: 20px;
      }
    }
  }

  .padd-l-40 {
    padding-left: 0px;
    padding-top: 30px;
  }

  .did-you-know-box {
    .content-box {
      p {
        font-size: 16px;
      }
    }
  }

  .did-you-know-left {
    position: unset;
    margin-right: 0px !important;
    padding-right: 0px !important;
  }

  .did-you-know-right {
    position: unset;
  }

  .testimonial-section {
    .carousel-item {
      padding: 10px 15px 50px;
    }

    .testimonial-box {
      padding: 20px;
      display: block;

      .testimonial-content {
        width: 100%;
        margin-left: 0px;
        text-align: center;

        p {
          font-size: 16px;
        }
      }

      .person-thumb {
        width: 100px;
        height: 100px;
        margin: 0 auto;
      }
    }
  }

  .common-section {
    padding-bottom: 50px;
  }

  .mrr-b-50 {
    margin-bottom: 20px;
  }

  .order1 {
    order: 1;
  }

  .footer {
    .footer-top {
      padding: 20px 0px;
    }

    .third-box {
      padding-right: 15px;
      padding-left: 15px;
    }
  }

  .nav-item {
    text-align: center;
  }
}



/* ========inner Pages========== */

.page-section {
  background-color: var(--hero-bg);
  padding: 80px 0px 0px;
  overflow: hidden;

  .vector-1 {
    position: absolute;
    right: 0px;
    top: 215px;
  }

  .vector-2 {
    position: absolute;
    left: 0px;
    top: 50px;
    width: 265px;
  }

  .right-green-vector {
    transform: rotate(-180deg);
    left: -25px;
  }
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.3);
  padding: 35px;
  border-radius: 45px;
  backdrop-filter: blur(3px);
  border: 1px solid var(--light-border);
  margin-bottom: 50px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sub-head-style {
  font-size: 26px;
  font-weight: 700;
  background: -webkit-linear-gradient(80deg, #095b43 0%, #8da83e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 15px
}

.list-style {
  list-style-type: disc
}

.list-style li {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--light-text);
  padding: 8px 0;
}


@media(max-width:980px) {
  .page-section {
    padding: 30px 0px 0px;
  }

  .sub-head-style {
    font-size: 21px;
    margin-top: 15px;
  }

  .list-style li {
    font-size: 16px;
    padding: 5px 0;
  }

  .disclaimer-box {
    padding: 25px;
    margin-bottom: 30px;
  }
}

/* ========Contact Pages========== */

.contact-box {
  background-color: var(--purple-primary);
  border-radius: 25px;
  padding: 15px;
  margin-top: 25px;

  .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--white);
    margin: -55px auto 15px auto;
    border: 2px solid var(--purple-primary);
    align-items: center;
    display: flex;
    justify-content: center;

    img {
      width: 45px;
    }
  }

  h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    text-align: center;
  }

  p {
    color: var(--white);
    text-align: center;
  }
}

@media(max-width:980px) {
  .contact-box {
    margin-bottom: 25px;

    .icon-box {
      width: 60px;
      height: 60px;
      margin: -45px auto 15px auto;

      img {
        width: 35px;
      }
    }
  }
}


/* ========Team Pages========== */
.gray-line {
  border: 1px dashed var(--light-border);
}

.testimonial-photo-box {
  border-radius: 25px;
  padding: 15px;
  background-color: #d9d9d960;

  img {
    border-radius: 25px;
  }
}

.testimonial-name-wrapper {
  background-color: #d9d9d960;
  border-radius: 20px 20px 0px 0px;
  padding: 20px;
  margin-top: 15px;

  p {
    margin: 0px;
  }

}

.team-name {
  font-size: 20px;
  font-weight: 600;
  margin: 0px;
}

.team-member-wrapper {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-top: 15px;
  margin-bottom: 15px;

  .left-member-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--purple-primary);
    text-align: center;

    img {
      width: 100%;
      height: 100%;
    }
  }

  .right-content-box {
    margin-left: 15px;
    width: calc(100% - 300px);

    .sub-head-style {
      margin-top: 0px;
    }
	  
  .member-tagline {
    font-size: 20px !important;
    font-weight: 700 !important;
    background: -webkit-linear-gradient(80deg, #095b43 0%, #8da83e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 15px
  }
  }


}

@media(max-width:980px) {
  .team-member-wrapper {
    display: unset;
    padding: 15px;

    .right-content-box {
      margin-left: 0px;
      width: 100%;
      text-align: center;
    }

    .left-member-img {
      width: 180px;
      height: 180px;
      margin: 0 auto;
    }
  }

  .order1 {
    order: 1;
  }
}


/* ========inner Banner========== */

.inner-banner {
  background: url(../images/inner-banner-bg.jpg);
  background-size: cover;
  padding: 80px 0px;

  .page-title {
    border: 2px dashed var(--green-border);
    padding: 15px 35px;
    text-align: center;
    color: var(--white);
    font-size: 34px;
    font-weight: 600;
    width: fit-content;
    margin: 15px auto;
    border-radius: 100px;
    text-transform: uppercase;
	  background: transparent;
  }
}

@media(max-width:980px) {
  .inner-banner {
    padding: 30px 0px;

    .page-title {
      padding: 12px 35px;
      font-size: 30px;
      margin: 0px auto;
    }
  }

}