@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --light-yellow1: #f5f7e1;
  --light-yellow2: #e3cb61;
  --dark-yellow: #c49926;
  --light-green: #005238;
  --dark-green: #013020;
  --green: #097969;
  --light-green2: #79924e;
  --white-text: #fff;
  --dark-text: #000;
}

nav {
  padding: 0 50px;
  width: 100%;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-one {
  background-color: var(--light-yellow2);
  color: var(--dark-green);
  height: 40px;
  cursor: default;
  border-bottom: 2px solid var(--light-yellow1);
}

.navbar-one .left .email,
.navbar-one .left .call {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: text;
  margin-left: 20px;
}

.navbar-one .left .email a,
.navbar-one .left .call a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  color: var(--dark-green);
  text-transform: lowercase;
  text-decoration: none;
}

.navbar-one .left .email a:hover,
.navbar-one .left .call a:hover {
  color: var(--light-yellow1);
  transition: all 0.5s;
}

.right .facebook a,
.right .instagram a,
.right .linkedin a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  color: var(--dark-green);
  justify-content: center;
}

.right .facebook a:hover,
.right .instagram a:hover,
.right .linkedin a:hover {
  color: var(--light-yellow1);
  transition: all 0.5s;
}

.navbar-second {
  background-color: var(--dark-green);
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
  color: var(--light-yellow2);
}

.menu-btn {
  display: none;
}

li {
  list-style: none;
}

.navbar-one a,
.navbar-second a {
  text-transform: capitalize;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin-left: 30px;
  color: var(--light-yellow2);
}

.navbar-second a:hover {
  color: var(--light-yellow1);
  transition: all 0.5s;
}

section {
  width: 100%;
  min-height: 100vh;
}

/* ------------------------ Home Design ----------------------- */

.home {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-color: #000;
  background-position: center;
  transition: background-image 3s ease-in-out; /* Smooth transition for background image */
}

.home .home-content {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.7);
  gap: 0;
}

.home .h-contents {
  display: flex;
  flex-direction: column;
  margin-left: 150px;
  margin-bottom: 50px;
  cursor: default;
}

.home .home-content .logo {
  cursor: default;
}

.home .home-content .logo img {
  margin-left: 80px;
  width: 250px;
}

.home .home-content .home-text {
  padding: 30px;
}

.home .home-content .home-text h1 {
  color: var(--light-yellow2);
  font-size: 36px;
  margin-bottom: 10px;
}

.home .home-content .home-text h2 {
  text-transform: uppercase;
  color: var(--light-yellow1);
  font-size: 26px;
}

/* ------------------------ Who We Are Design ----------------------- */

.wwa {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wwa .wwa-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  font-size: 20px;
  padding: 20px;
}

.wwa .wwa-content .wwa-header {
  font-size: 20px;
  text-transform: uppercase;
}

.wwa .wwa-content .wwa-text {
  width: 80%;
}

.wwa .wwa-content .values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50%;
}

.wwa .wwa-content .wwa-text p {
  color: var(--dark-text);
  text-align: left;
  font-size: 18px;
}

.wwa .wwa-content2 {
  display: flex;
  height: 270px;
  width: 100%;
  flex-direction: row;
  align-items: center;
  margin-top: 60px;
}

.wwa .wwa-content2 .wwa-text1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  height: 100%;
  gap: 30px;
  padding: 30px;
  font-size: 17px;
  color: var(--white-text);
}

.wwa .wwa-content2 .wwa-text1 p {
  text-align: center;
  width: 80%;
}

.wwa .wwa-content2 .wwa-bg1 {
  background-color: var(--dark-green);
}

.wwa .wwa-content2 .wwa-bg2 {
  background-color: var(--light-green);
}

/* .wwa .wwa-content2 .wwa-bg3 {
  background-color: var(--dark-green);
} */

/* ------------------------ What We Do Design ----------------------- */

.wwd {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wwd .wwd-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  font-size: 20px;
  padding: 20px;
}

.wwd .wwd-content .wwd-header {
  margin-top: 20px;
  font-size: 25px;
  text-transform: uppercase;
  color: var(--dark-text);
}

.wwd .wwd-content .wwd-text {
  font-size: 20px;
  width: 55%;
}

.wwd .wwd-content .wwd-text p {
  color: var(--dark-text);
  text-align: center;
  font-size: 18px;
}

.wwd .wwd-content2 {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  margin-top: 30px;
}

.wwd .wwd-content2 .wwd-text1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 30%;
  height: 100%;
  font-size: 20px;
  gap: 30px;
  padding: 30px;
  color: var(--dark-text);
}

.wwd .wwd-content2 .wwd-text1 p {
  text-align: center;
  font-size: 18px;
  width: 80%;
}

.wwd .wwd-content3 {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  background-image: url(images/sustainability.jpg);
  background-size: cover;
  background-position: center;
  align-items: center;
  justify-content: center;
}

.wwd .wwd-content3 .cont3-dark {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.wwd .wwd-content3 .cont3-dark .wwd-text1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 80%;
  height: 100%;
  gap: 30px;
  font-size: 20px;
  padding: 30px;
  color: var(--white-text);
}

.wwd .wwd-content3 .cont3-dark .wwd-text1 p {
  text-align: center;
  font-size: 18px;
  width: 75%;
}

/* ------------------------ Products Design ----------------------- */

.products {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.products .products-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 20px;
}

.products .products-content .products-header {
  margin-top: 5%;
  font-size: 25px;
  text-transform: uppercase;
  color: var(--dark-text);
}

.products .products-content .products-text {
  font-size: 20px;
  width: 60%;
}

.products .products-content .products-text p {
  color: var(--dark-text);
  text-align: center;
  font-size: 18px;
}

.products .products-content2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.wrapper {
  padding: 10px 10%;
}
#card-area {
  padding: 50px 0;
}
.box-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  margin-top: 50px;
}
.box-area .box {
  height: 450px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background-color: #000;
  box-shadow: 5px 5px 15px var(--dark-green);
}
.box-area .box .p-name {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 20px;
  font-weight: 700;
  text-shadow: 2px 5px 10px #000;
  color: var(--white-text);
}
.box-area .box img {
  width: 580px;
  height: 550px;
  opacity: 100%;
  border-radius: 10px;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  transition: transform 0.5s;
}
.overlay {
  width: 100%;
  height: 0;
  background: linear-gradient(transparent, #013020 58%);
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  font-size: 14px;
  transition: height 0.5s;
}
.overlay h3 {
  font-weight: 500;
  margin-bottom: 5px;
  text-align: center;
  margin-top: 10%;
  font-size: 18px;
  color: var(--white-text);
}
.overlay p {
  font-size: 10px;
  text-align: center;
  color: var(--white-text);
}
.overlay a {
  margin-top: 20px;
  color: var(--dark-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  border-radius: 50px;
  text-align: center;
  padding: 5px 15px;
}
.box-area .box:hover img {
  transform: scale(1.1);
}
.box-area .box:hover .overlay {
  height: 100%;
}

/* ----------------- Footer Design ------------------ */
.content1 {
  position: relative;
  margin: 130px auto;
  text-align: center;
  padding: 0 20px;
}
.content1 .text {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--light-yellow1);
}
.content1 .p {
  font-size: 2.1875rem;
  font-weight: 600;
  color: var(--light-yellow1);
}
footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  margin-top: 80px;
  bottom: 0px;
  height: 100%;
  width: 100%;
  background: var(--dark-green);
}
.main-content {
  display: flex;
}
.main-content .box {
  flex-basis: 50%;
  padding: 10px 20px;
}
.main-content .box h2 {
  color: var(--light-yellow1);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
}
.box .content {
  margin: 20px 0 0 0;
  position: relative;
}
.box .contents {
  margin: 10px 0 0 0;
  position: relative;
}
.box .contents img {
  width: 150px;
  margin-bottom: 20px;
}
/* .box .content:before {
  position: absolute;
  content: "";
  top: -10px;
  height: 2px;
  width: 100%;
  background: var(--light-yellow1);
}
.box .content:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 15%;
  background: var(--light-yellow2);
  top: -10px;
} */
.left .contents {
  display: flex;
  flex-direction: row;
  width: 150%;
  margin-left: 22%;
}
.footer-first {
  display: flex;
  flex-direction: column;
}
.left .contents .fas {
  font-size: 1.4375rem;
  background: var(--light-yellow1);
  height: 45px;
  color: var(--dark-yellow);
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
  cursor: pointer;
}
.left .contents .fas:hover {
  color: var(--white-text);
  background: var(--light-yellow2);
}
.left .contents .text {
  color: var(--light-yellow1);
  font-size: 15px;
  font-weight: 500;
  padding-left: 10px;
}
.left .contents .phone {
  margin: 15px 0;
}
.left .contents .place a,
.left .contents .phone a,
.left .contents .email a {
  text-decoration: none;
}
.left .contents .social-link {
  /* margin-left: 140px; */
  margin-top: 20px;
}
.left .contents .social {
  display: flex;
  width: 70px;
  margin-right: 10px;
  flex-direction: row;
  gap: 20px;
  margin: 20px 0 0 0;
}
.left .contents .social a {
  width: 40px;
}
.left .contents .social a span {
  height: 40px;
  width: 40px;
  background: var(--light-yellow1);
  color: var(--dark-yellow);
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  border-radius: 5px;
  transition: 0.3s;
}
.left .contents .social a span:hover {
  color: var(--white-text);
  background: var(--light-yellow2);
}
.right {
  margin-left: 20%;
  margin-right: 5%;
}
.right h2 {
  margin-top: 15px;
}
.right form .text {
  font-size: 1.0625rem;
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--light-yellow1);
}
.right form .msg {
  margin-top: 10px;
}
.right form input,
.right form textarea {
  width: 90%;
  font-size: 1.0625rem;
  background: var(--light-yellow1);
  padding-left: 10px;
  border: 1px solid #222222;
}
.right form input:focus,
.right form textarea:focus {
  outline-color: var(--dark-yellow);
}
.right form input {
  background: var(--light-yellow1);
  border: none;
  height: 35px;
}
.right form .btn {
  margin-top: 10px;
}
.right form .btn button {
  height: 40px;
  width: 90%;
  border: none;
  outline: none;
  background: var(--light-yellow1);
  color: var(--dark-yellow);
  font-size: 1.0625rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}
.right form .btn button:hover {
  color: var(--white-text);
  background: var(--light-yellow2);
}
.bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  height: 80px;
  font-size: 0.9375rem;
  background: var(--light-yellow2);
}

.bottom center {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 80px;
  font-size: 0.9375rem;
}

.bottom center .credit {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 50px;
}

.bottom center span {
  color: var(--dark-green);
}
.bottom center a {
  color: var(--dark-green);
  text-decoration: none;
}
.bottom center a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 900px) {
  footer {
    position: relative;
    bottom: 0px;
  }
  .main-content {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-content .box {
    margin: 5px 0;
  }
  .left .contents .place {
    display: flex;
    gap: 5px;
  }
  .box .contents {
    margin-left: 30px;
  }
  .left .contents .social-link {
    margin-left: 0px;
  }
  .right form {
    margin-left: 0px;
    margin-right: 0px;
    padding: 10px;
    width: 99%;
  }
  .right form input,
  .right form textarea,
  .right form .btn button {
    width: 95%;
    border-radius: 5px;
  }
}

/*----------------- Whatsapp Button -----------------*/

.whatsapp-btn {
  position: fixed;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #10b842;
  right: 3rem;
  bottom: -15%;
  width: 70px;
  height: 70px;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  z-index: 10;
  transition: 0.5s;
  text-decoration: none;
}

.whatsapp__icon {
  margin-bottom: 3px;
  margin-left: 3px;
  font-size: 50px;
  color: var(--white-text);
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #0d9736;
}

/* Show whatsappBtn*/

.show-whatsappBtn {
  bottom: 3rem;
}

/* -------------------------- Mobile Responsive (1200px) ----------------------- */
@media screen and (max-width: 1200px) {
  .navbar-one {
    font-size: 12px;
  }
  .navbar-one a {
    font-size: 12px;
  }
  .logo {
    font-size: 13px;
  }
  footer {
    position: relative;
    bottom: 0px;
  }
  .overlay p {
    font-size: 9px;
    text-align: center;
    color: var(--white-text);
  }
  .main-content {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-content .box {
    margin: 5px 0;
  }
  .box .contents {
    margin-left: 0px;
  }
  .left .contents .social-link {
    margin-left: 0px;
    margin-top: 30px;
  }
  .right {
    margin-left: 25%;
    margin-right: 0%;
  }
  .right h2 {
    margin-left: 5px;
  }
  .right form {
    margin-left: 5px;
    padding: 10px;
    width: 99%;
  }
  .right form input,
  .right form textarea,
  .right form .btn button {
    width: 98%;
  }
}
/* -------------------------- Mobile Responsive (1100px) ----------------------- */
/* -------------------------- Navbar Responsive ----------------------- */
@media screen and (max-width: 1100px) {
  .navbar-one {
    display: none;
  }
  .navbar-second {
    background-color: var(--dark-green);
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .logo {
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    color: var(--light-yellow2);
  }
  .navbar-second a {
    font-size: 12px;
  }
  .menu-btn {
    display: block;
    color: var(--light-yellow2);
  }
  .navbar-second ul {
    display: none;
    transition: all 0.3s ease;
  }
  .left .contents .social-link {
    margin-left: 0px;
  }
  .navbar-second ul.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    text-align: right;
    top: 70px; /* Adjust according to your design */
    right: 0;
    width: 40%;
    background-color: var(--light-green);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .navbar-second ul.active li {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid var(--light-yellow2);
  }

  .navbar-second ul.active {
    opacity: 1;
    visibility: visible;
  }
  /* -------------- Home Responsive ---------------- */
  .home .home-content {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    gap: 0;
  }
  .home .h-contents {
    margin-left: 00px;
    cursor: default;
  }
  .home .home-content .logo {
    cursor: default;
  }
  .home .home-content .logo img {
    margin-left: 80px;
    width: 180px;
  }
  .home .home-content .home-text {
    padding: 30px;
  }
  .home .home-content .home-text h1 {
    color: var(--light-yellow2);
    font-size: 30px;
    margin-bottom: 10px;
  }
  .home .home-content .home-text h2 {
    text-transform: uppercase;
    color: var(--light-yellow1);
    font-size: 20px;
  }
  /* ----------------- Who We Are Responsive ------------------ */
  .wwa .wwa-content {
    font-size: 22px;
  }
  .wwa .wwa-content .wwa-header {
    font-size: 20px;
  }
  .wwa .wwa-content .values {
    width: 80%;
  }
  .wwa .wwa-content .wwa-text p {
    font-size: 18px;
  }
  .wwa .wwa-content2 {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
  }
  .wwa .wwa-content2 .wwa-text1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 30px;
    padding: 30px;
    font-size: 19px;
    color: var(--white-text);
  }
  /* ----------------- What We Do Responsive ------------------ */
  .wwd .wwd-content {
    font-size: 22px;
  }

  .wwd .wwd-content .wwd-header {
    margin-top: 20px;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--dark-text);
  }

  .wwd .wwd-content .wwd-text {
    font-size: 18px;
    width: 80%;
  }

  .wwd .wwd-content .wwd-text p {
    color: var(--dark-text);
    text-align: center;
    font-size: 18px;
  }

  .wwd .wwd-content2 .wwd-text1 {
    width: 80%;
    font-size: 20px;
  }

  .wwd .wwd-content2 .wwd-text1 p {
    text-align: center;
    font-size: 18px;
    width: 80%;
  }

  .wwd .wwd-content3 .cont3-dark .wwd-text1 {
    font-size: 20px;
  }

  .wwd .wwd-content3 .cont3-dark .wwd-text1 p {
    font-size: 18px;
  }
  /* ----------------- Products Responsive ------------------ */

  .products .products-content .products-text {
    font-size: 20px;
    width: 80%;
  }

  .products .products-content .products-text p {
    font-size: 18px;
  }

  .overlay p {
    font-size: 12px;
    text-align: center;
    color: var(--white-text);
  }

  .box-area {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -------------------------- Mobile Responsive (680px) ----------------------- */
/* -------------------------- Navbar Responsive ----------------------- */

@media screen and (max-width: 680px) {
  .logo {
    font-size: 10px;
  }
  .navbar-second a {
    font-size: 14px;
  }
  /* -------------- Home Responsive ---------------- */
  .home .home-content .logo img {
    margin-left: 80px;
    width: 150px;
  }
  .home .home-content .home-text h1 {
    font-size: 25px;
  }
  .home .home-content .home-text h2 {
    font-size: 20px;
  }
  /* ----------------- Who We Are Responsive ------------------ */
  .wwa .wwa-content .wwa-header {
    font-size: 18px;
  }
  .wwa .wwa-content .wwa-text p {
    font-size: 16px;
  }
  .wwa .wwa-content2 .wwa-text1 {
    font-size: 16px;
  }
  /* ----------------- What We Do Responsive ------------------ */
  .wwd .wwd-content .wwd-header {
    font-size: 18px;
  }
  .wwd .wwd-content .wwd-text {
    font-size: 16px;
  }
  .wwd .wwd-content .wwd-text p {
    color: var(--dark-text);
    text-align: center;
    font-size: 16px;
  }
  .wwd .wwd-content2 .wwd-text1 {
    font-size: 18px;
  }
  .wwd .wwd-content2 .wwd-text1 p {
    font-size: 16px;
  }

  .wwd .wwd-content3 .cont3-dark .wwd-text1 {
    font-size: 18px;
  }

  .wwd .wwd-content3 .cont3-dark .wwd-text1 p {
    font-size: 16px;
  }
  /* ----------------- Products Responsive ------------------ */

  .products .products-content .products-header {
    font-size: 18px;
  }

  .products .products-content .products-text p {
    font-size: 16px;
  }
  .box-area {
    grid-template-columns: repeat(1, 1fr);
  }
  .left .contents {
    gap: 30px;
    flex-direction: column;
    width: 100%;
    margin-left: 10px;
  }
}

/* -------------------------- Mobile Responsive (480px) ----------------------- */
/* -------------------------- Navbar Responsive ----------------------- */

@media screen and (max-width: 480px) {
  .logo {
    font-size: 8px;
  }
  .navbar-second a {
    font-size: 12px;
  }
  /* -------------- Home Responsive ---------------- */
  .home .home-content .logo img {
    margin-left: 80px;
    width: 150px;
  }
  .home .home-content .home-text h1 {
    font-size: 20px;
  }
  .home .home-content .home-text h2 {
    font-size: 15px;
  }
  /* ----------------- Who We Are Responsive ------------------ */
  .wwa .wwa-content .wwa-header {
    font-size: 18px;
  }
  .wwa .wwa-content .values {
    font-size: 16px;
  }
  .wwa .wwa-content .wwa-text {
    font-size: 16px;
  }
  .wwa .wwa-content2 .wwa-text1 {
    font-size: 16px;
  }
  /* ----------------- What We Do Responsive ------------------ */
  .wwd .wwd-content .wwd-header {
    font-size: 18px;
  }
  .wwd .wwd-content .wwd-text {
    font-size: 16px;
  }
  .wwd .wwd-content .wwd-text p {
    color: var(--dark-text);
    text-align: center;
    font-size: 16px;
  }
  .wwd .wwd-content2 {
    align-items: center;
    flex-direction: column;
  }
  .wwd .wwd-content2 .wwd-text1 {
    font-size: 18px;
  }
  .wwd .wwd-content2 .wwd-text1 p {
    font-size: 16px;
  }

  .wwd .wwd-content3 .cont3-dark {
    width: 100%;
  }

  .wwd .wwd-content3 .cont3-dark .wwd-text1 h1 {
    width: 100%;
    font-size: 16px;
  }

  .wwd .wwd-content3 .cont3-dark .wwd-text1 p {
    font-size: 14px;
  }
  /* ----------------- Products Responsive ------------------ */

  .products .products-content .products-header {
    font-size: 18px;
  }

  .products .products-content .products-text p {
    font-size: 16px;
  }
  .box-area {
    grid-template-columns: repeat(1, 1fr);
  }
  .overlay p {
    font-size: 12px;
    text-align: center;
    color: var(--white-text);
  }
  .overlay a {
    margin-top: 20px;
    color: var(--dark-text);
    text-decoration: none;
    font-size: 10px;
    background: #fff;
    border-radius: 50px;
    text-align: center;
    padding: 5px 15px;
  }
  .left .contents {
    gap: 30px;
    flex-direction: column;
    width: 100%;
    margin-left: 10px;
  }
  nav {
    padding: 0 15px;
    width: 100%;
  }
  .whatsapp-btn {
    right: 1rem;
    bottom: 5%;
    width: 50px;
    height: 50px;
  }

  .whatsapp__icon {
    margin-bottom: 1px;
    margin-left: 2px;
    font-size: 35px;
    color: var(--white-text);
    text-decoration: none;
  }
  .bottom {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    height: 100px;
    font-size: 0.9375rem;
    background: var(--light-yellow2);
  }

  .bottom center {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80px;
    font-size: 0.9375rem;
  }

  .bottom center .credit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}
