body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.hero {
  position: relative;
  text-align: center;
  color: white;
}
.hero img {
  width: 100%;
  height: auto;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-text h1 {
  font-size: 48px;
  margin: 10px 0;
}
.hero-text p {
  font-size: 24px;
  margin: 10px 0;
}
.hero-buttons {
  margin-top: 20px;
}
.hero-buttons #a {
  text-decoration: none;
  color: white;
  background-color: #2f5e2e;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0 10px;
  font-weight: 700;
}

.hero-buttons #b {
  text-decoration: none;
  color: white;
  border: 3px solid white;

  padding: 10px 20px;
  border-radius: 5px;
  margin: 0 10px;
  font-weight: 700;
}

.hero-buttons a:hover {
  background-color: #65bc7b;
}

.hero-buttons #a:hover {
  background-color: #65bc7b;
}

.sidebar {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #2f5e2e;
  color: white;
  padding: 20px;
  border-radius: 20px;
  width: 300px;
}
.sidebar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.sidebar h2 {
  font-size: 24px;
  margin: 10px 0;
}
.sidebar p {
  font-size: 16px;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
.image-section {
  flex: 1;
  padding-right: 20px;
}
.image-section img {
  width: 500px;
  height: 500px;
  border-radius: 20px;
}
.text-section {
  flex: 1;
  padding-left: 20px;
}
.text-section h1 {
  font-size: 36px;
  color: #000000;
  margin-bottom: 20px;
}
.text-section p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 20px;
}
.text-section a {
  font-size: 16px;
  color: #4caf50;
  text-decoration: none;
  font-weight: bold;
}
.text-section a i {
  margin-left: 5px;
}

.container2 {
  width: 97.32%;

  padding: 20px;
  background-color: rgba(255, 255, 255, 0);
  background-image: linear-gradient(
    180deg,
    #eaf4e1 0%,
    rgba(255, 249, 243, 0) 100%
  );
  background-position: center center;
  background-repeat: no-repeat;
  border-width: 0px 0px 0px 0px;
  border-color: #e2e2e2;
  border-style: solid;
}

.view-all {
  text-align: right;
  font-size: 16px;
  color: #006400;
  margin-bottom: 20px;
}
.videos {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.video-item {
  width: 32%;
  text-align: center;
}
.video-item iframe {
  width: 100%;
  height: 200px;
}
.video-title {
  font-size: 16px;
  color: #000;
  margin-top: 10px;

  .container2 {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
  }
  #title {
    font-size: 100px;
    color: #000;
    margin-bottom: 20px;
    font-weight: bold;
    font-style: normal;
  }
  .view-all {
    text-align: right;
    font-size: 16px;
    color: #006400;
    margin-bottom: 20px;
  }
  .videos {
    display: flex;
    justify-content: space-between;
  }
  .video-item {
    width: 32%;
    text-align: center;
  }
  .video-item iframe {
    width: 100%;
    height: 200px;
  }
  .video-title {
    font-size: 16px;
    color: #000;
    margin-top: 10px;
  }
}

.container {
  width: 80%;
  margin: 0 auto;
}
.header {
  font-size: 36px;
  font-weight: bold;
  margin: 20px 0;
}
.view-all {
  float: right;
  font-size: 16px;
  color: #2e7d32;
  text-decoration: none;
  margin-top: -40px;
}
.products {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.product {
  width: 45%;
  text-align: left;
}
.product img {
  width: 100%;
  height: auto;
}
.product-title {
  font-size: 18px;
  margin: 10px 0;
}
.product-price {
  color: #2e7d32;
  font-size: 16px;
}
.product-overlay {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-color: #2e7d32;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s;
}
.product:hover .product-overlay {
  opacity: 1;
}
.product-overlay i {
  margin-bottom: 10px;
}

.container5 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.header2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}
.view-all {
  font-size: 16px;
  color: #006400;
  text-decoration: none;
  float: right;
  margin-top: -40px;
}
.products {
  display: flex;
  justify-content: space-around;
}
.product {
  text-align: center;
  margin: 20px;
}
.product img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
.product-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}
.product-price {
  font-size: 16px;
  color: #006400;
  margin-top: 5px;
}

.container7 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  background-image: url("./assets/banner-subscribe-2\ \(1\).jpg");
  background-size: cover;
  background-position: center;
}
.content7 {
  background-color: white;
  padding: 20px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  margin-top: 20px;
}
.content7 h2 {
  margin: 0 0 10px;
  font-size: 24px;
}
.content7 p {
  margin: 0 0 20px;
  font-size: 16px;
  color: #555;
}
.btn2 {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #22622a;
  border: none;
  border-radius: 4px;
  text-decoration: none;
}

.btn2:hover {
  background-color: #28a745;
}

.container8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 100px;

  background-position: left center;
  background-repeat: no-repeat;
  border-width: 0px;
  border-color: rgb(226, 226, 226);
  border-style: solid;
  background-size: cover;
  background-image: url(https://ecoprintbali.com/wp-content/uploads/2024/08/BG-FOOTER1.png);
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 100px;
  height: auto;
}
.logo-text {
  margin-left: 20px;
}
.logo-text h1 {
  margin: 0;
  font-size: 24px;
  color: #000;
}
.logo-text p {
  margin: 0;
  font-size: 16px;
  color: #000;
}
.review,
.address {
  text-align: left;
}
.review h2,
.address h2 {
  font-size: 20px;
  color: #000;
}
.review p,
.address p {
  font-size: 16px;
  color: #000;
}
.review button {
  background-color: #22622a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.review button:hover {
  background-color: #28a745;
}
.address a {
  color: #000;
  text-decoration: none;
  margin-right: 10px;
}
.address a:hover {
  color: #4caf50;
}

.background {
  background-image: url("./assets/bannersubscribe.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.content2 {
  padding: 20px;
  border-radius: 10px;
}
.content2 h1 {
  font-size: 2.5em;
  margin: 0;
  margin-bottom: 20px;
}
.content2 p {
  font-size: 1.2em;
  margin: 10px 0;
}
.button2 {
  background-color: #22622a;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
}

.button2:hover {
  background-color: #28a745;
}

.footers {
  background-color: #22622a;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  position: relative;
}
.footers p {
  margin: 0;
}
.back-to-top {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: #333;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.back-to-top i {
  font-size: 16px;
}

/* /////////////////////////////////////////////////////////home //////////////////////////////////////////////////////*/

.content3 {
  [data-aos][data-aos][data-aos-delay="2500"].aos-animate,
  body[data-aos-delay="2500"] [data-aos].aos-animate {
    transition-delay: 2.5s;
  }

  html:not(.no-js) [data-aos^="fade"][data-aos^="fade"].aos-animate {
    opacity: 1;

    transform: none;
  }

  html:not(.no-js) [data-aos^="fade"][data-aos^="fade"] {
    transition-property: opacity, transform, -webkit-transform;
  }

  [data-aos][data-aos][data-aos-duration="2000"],
  body[data-aos-duration="2000"] [data-aos] {
    transition-duration: 2s;
  }
  [data-aos][data-aos][data-aos-easing="ease"],
  body[data-aos-easing="ease"] [data-aos] {
    transition-timing-function: ease;
  }

  [data-aos].aos-animate {
    pointer-events: auto;
  }
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 100px;
  height: auto;
}
.logo-text {
  margin-left: 20px;
}
.logo-text h1 {
  margin: 0;
  font-size: 24px;
  color: #000;
}
.logo-text p {
  margin: 0;
  font-size: 16px;
  color: #000;
}
.review,
.address {
  text-align: left;
}
.review h2,
.address h2 {
  font-size: 20px;
  color: #000;
}
.review p,
.address p {
  font-size: 16px;
  color: #000;
}
.review button {
  background-color: #22622a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.review button:hover {
  background-color: #4caf50;
}
.address a {
  color: #000;
  text-decoration: none;
  margin-right: 10px;
}
.address a:hover {
  color: #4caf50;
}

.content2 {
  padding: 20px;
  border-radius: 10px;
}
.content2 h1 {
  font-size: 2.5em;
  margin: 0;
  margin-bottom: 20px;
}
.content2 p {
  font-size: 1.2em;
  margin: 10px 0;
}
.button2 {
  background-color: #22622a;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
}

.button2:hover {
  background-color: #4caf50;
}

.container9 {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("./assets/banner-about.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content3 {
  position: absolute;
  left: 50px;
  color: white;
  max-width: 600px;
}
.content h1 {
  font-size: 48px;
  margin: 0;
}
.content3 p {
  font-size: 18px;
  line-height: 1.6;
}
.bag-image {
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 400px;
  height: auto;
}

.container10 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}
.image-container img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
}
.text-container {
  flex: 1;
  padding-left: 50px;
}
.text-container h2 {
  font-size: 36px;
  color: #000000;
  margin-bottom: 20px;
}
.text-container ul {
  list-style: none;
  padding: 0;
}
.text-container ul li {
  font-size: 18px;
  color: #333333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.text-container ul li i {
  color: #4caf50;
  margin-right: 10px;
}

.container11 {
  text-align: center;
  padding: 50px 0;
  background-color: #eaf6e5;
}
.title {
  font-size: 36px;
  color: #2f4f2f;
  margin-bottom: 50px;
}
.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.stat-item {
  text-align: center;
}
.stat-item .number {
  font-size: 48px;
  color: #2f4f2f;
  margin-bottom: 10px;
}
.stat-item .description {
  font-size: 18px;
  color: #2f4f2f;
}

/* ///////////////////////////////////////////////////////////////////////////About US///////////////////////////////////////// */

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 100px;
  height: auto;
}
.logo-text {
  margin-left: 20px;
}
.logo-text h1 {
  margin: 0;
  font-size: 24px;
  color: #000;
}
.logo-text p {
  margin: 0;
  font-size: 16px;
  color: #000;
}
.review,
.address {
  text-align: left;
}
.review h2,
.address h2 {
  font-size: 20px;
  color: #000;
}
.review p,
.address p {
  font-size: 16px;
  color: #000;
}
.review button {
  background-color: #22622a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.review button:hover {
  background-color: #4caf50;
}
.address a {
  color: #000;
  text-decoration: none;
  margin-right: 10px;
}
.address a:hover {
  color: #4caf50;
}

.content2 {
  padding: 20px;
  border-radius: 10px;
}
.content2 h1 {
  font-size: 2.5em;
  margin: 0;
  margin-bottom: 20px;
}
.content2 p {
  font-size: 1.2em;
  margin: 10px 0;
}
.button2 {
  background-color: #22622a;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
}

.button2:hover {
  background-color: #4caf50;
}

.container9 {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("./assets/banner-about.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content3 {
  position: absolute;
  left: 50px;
  color: white;
  max-width: 600px;
}
.content h1 {
  font-size: 48px;
  margin: 0;
}
.content3 p {
  font-size: 18px;
  line-height: 1.6;
}
.bag-image {
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 400px;
  height: auto;
}

.container10 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}
.image-container img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
}
.text-container {
  flex: 1;
  padding-left: 50px;
}
.text-container h2 {
  font-size: 36px;
  color: #000000;
  margin-bottom: 20px;
}
.text-container ul {
  list-style: none;
  padding: 0;
}
.text-container ul li {
  font-size: 18px;
  color: #333333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.text-container ul li i {
  color: #4caf50;
  margin-right: 10px;
}

.container11 {
  text-align: center;
  padding: 50px 0;
  background-color: #eaf6e5;
}
.title {
  font-size: 36px;
  color: #2f4f2f;
  margin-bottom: 50px;
}
.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.stat-item {
  text-align: center;
}
.stat-item .number {
  font-size: 48px;
  color: #2f4f2f;
  margin-bottom: 10px;
}
.stat-item .description {
  font-size: 18px;
  color: #2f4f2f;
}

.container12 {
  display: flex;
  justify-content: space-between;
  padding: 50px;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.video-items {
  width: 300px;
  text-align: center;
}
.video-items iframe {
  width: 100%;
  height: 200px;
}

/* ////////////////////////////////////////////////////////////////////video//////////////////////////////////////// */

.container8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 100px;

  background-position: left center;
  background-repeat: no-repeat;
  border-width: 0px;
  border-color: rgb(226, 226, 226);
  border-style: solid;
  background-size: cover;
  background-image: url(https://ecoprintbali.com/wp-content/uploads/2024/08/BG-FOOTER1.png);
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 100px;
  height: auto;
}
.logo-text {
  margin-left: 20px;
}
.logo-text h1 {
  margin: 0;
  font-size: 24px;
  color: #000;
}
.logo-text p {
  margin: 0;
  font-size: 16px;
  color: #000;
}
.review,
.address {
  text-align: left;
}
.review h2,
.address h2 {
  font-size: 20px;
  color: #000;
}
.review p,
.address p {
  font-size: 16px;
  color: #000;
}
.review button {
  background-color: #22622a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.review button:hover {
  background-color: #28a745;
}
.address a {
  color: #000;
  text-decoration: none;
  margin-right: 10px;
}
.address a:hover {
  color: #4caf50;
}

.content2 {
  padding: 20px;
  border-radius: 10px;
}
.content2 h1 {
  font-size: 2.5em;
  margin: 0;
  margin-bottom: 20px;
}
.content2 p {
  font-size: 1.2em;
  margin: 10px 0;
}
.button2 {
  background-color: #22622a;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
}

.button2:hover {
  background-color: #4caf50;
}

.container9 {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("./assets/banner-about.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content3 {
  position: absolute;
  left: 50px;
  color: white;
  max-width: 600px;
}
.content h1 {
  font-size: 48px;
  margin: 0;
}
.content3 p {
  font-size: 18px;
  line-height: 1.6;
}
.bag-image {
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 400px;
  height: auto;
}

.container10 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}
.image-container img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
}
.text-container {
  flex: 1;
  padding-left: 50px;
}
.text-container h2 {
  font-size: 36px;
  color: #000000;
  margin-bottom: 20px;
}
.text-container ul {
  list-style: none;
  padding: 0;
}
.text-container ul li {
  font-size: 18px;
  color: #333333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.text-container ul li i {
  color: #4caf50;
  margin-right: 10px;
}

.container11 {
  text-align: center;
  padding: 50px 0;
  background-color: #eaf6e5;
}
.title {
  font-size: 36px;
  color: #2f4f2f;
  margin-bottom: 50px;
}
.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.stat-item {
  text-align: center;
}
.stat-item .number {
  font-size: 48px;
  color: #2f4f2f;
  margin-bottom: 10px;
}
.stat-item .description {
  font-size: 18px;
  color: #2f4f2f;
}

.container12 {
  display: flex;
  justify-content: space-between;
  padding: 50px;
}
.contact-info {
  max-width: 40%;
}
.contact-info h1 {
  font-size: 24px;
  margin-bottom: 20px;
}
.contact-info p {
  margin: 5px 0;
}
.contact-info .social-icons {
  margin-top: 20px;
}
.contact-info .social-icons a {
  color: green;
  font-size: 24px;
  margin-right: 10px;
  text-decoration: none;
}
.contact-form {
  max-width: 50%;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-form button {
  background-color: green;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.map {
  width: 100%;
  height: 500px;
}

.footers {
  background-color: #22622a;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  position: relative;
}
.footers p {
  margin: 0;
}
.back-to-top {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: #333;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.back-to-top i {
  font-size: 16px;
}

/* /////////////////////////contact/////////////////////// */

.container8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 100px;

  background-position: left center;
  background-repeat: no-repeat;
  border-width: 0px;
  border-color: rgb(226, 226, 226);
  border-style: solid;
  background-size: cover;
  background-image: url(https://ecoprintbali.com/wp-content/uploads/2024/08/BG-FOOTER1.png);
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 100px;
  height: auto;
}
.logo-text {
  margin-left: 20px;
}
.logo-text h1 {
  margin: 0;
  font-size: 24px;
  color: #000;
}
.logo-text p {
  margin: 0;
  font-size: 16px;
  color: #000;
}
.review,
.address {
  text-align: left;
}
.review h2,
.address h2 {
  font-size: 20px;
  color: #000;
}
.review p,
.address p {
  font-size: 16px;
  color: #000;
}
.review button {
  background-color: #22622a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.review button:hover {
  background-color: #4caf50;
}
.address a {
  color: #000;
  text-decoration: none;
  margin-right: 10px;
}
.address a:hover {
  color: #4caf50;
}

.content2 {
  padding: 20px;
  border-radius: 10px;
}
.content2 h1 {
  font-size: 2.5em;
  margin: 0;
  margin-bottom: 20px;
}
.content2 p {
  font-size: 1.2em;
  margin: 10px 0;
}
.button2 {
  background-color: #22622a;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
}

.button2:hover {
  background-color: #4caf50;
}

.container9 {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("./assets/banner-about.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content3 {
  position: absolute;
  left: 50px;
  color: white;
  max-width: 600px;
}
.content h1 {
  font-size: 48px;
  margin: 0;
}
.content3 p {
  font-size: 18px;
  line-height: 1.6;
}
.bag-image {
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 400px;
  height: auto;
}

.background5 {
  background-image: url("./assets/bannersubscribe.jpg");
  background-size: cover;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.main-text {
  font-size: 48px;
  font-weight: bold;
  margin: 0;
}
.sub-text {
  font-size: 16px;
  margin-top: 10px;
}

.container0 {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
  margin-right: 20px;
}
.card {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
.card img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  margin-right: 20px;
}
.card-content {
  max-width: 600px;
}
.card-content h2 {
  font-size: 24px;
  color: #000;
  margin: 0 0 10px;
}
.card-content p {
  font-size: 16px;
  color: #333;
  margin: 0 0 20px;
}
.card-content .btn12 {
  background-color: #2e7d32;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
}

.footers {
  background-color: #22622a;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  position: relative;
}
.footers p {
  margin: 0;
}
.back-to-top {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: #333;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.back-to-top i {
  font-size: 16px;
}

/* ///////////////////class///////////////////// */

/* Responsive Styling */
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    text-align: center;
  }

  header nav ul li a {
    display: block;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 0 10px;
  }

  section {
    margin: 20px 0;
  }
}

/* //////////////////////// */

.container100 {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}
.filters {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.filters select {
  padding: 10px;
  font-size: 16px;
}
.products100 {
  display: flex;
  justify-content: space-between;
}
.product100 {
  width: 45%;
  border: 1px solid #ddd;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  margin-top: 5px;
  margin-bottom: 200px;
}
.product100 img {
  width: 500px;
  height: 500px;
}
.sale-badge {
  position: absolute;
  background-color: red;
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  left: 70px;
  font-size: 24px;
  font-weight: bold;
}
.product-title {
  font-size: 24px;
  color: #2f4f2f;
  margin: 10px 0;
}
.product-price {
  font-size: 20px;
  color: #2f4f2f;
  margin: 10px 0;
}
.product-options {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #2f4f2f;
}
.product-options i {
  margin-right: 5px;
}

/* ////produts/////////////// */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: white;
  border-bottom: 1px solid #ddd;
}
.navbar img {
  height: 80px;
}
.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.navbar ul li {
  margin: 0 15px;
}
.navbar ul li a {
  text-decoration: none;
  color: black;
  font-size: 16px;
}
.navbar ul li a:hover {
  color: green;
}
.navbar ul li a.active,
.navbar a.active {
  color: green;
  text-decoration: none;
}
.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  .navbar ul li {
    margin: 10px 0;
  }
  .navbar ul.show {
    display: flex;
  }
  .menu-icon {
    display: block;
  }

  .navbar img {
    display: none;
  }

  .active {
    margin-right: 20px;
  }
}
@media (max-width: 480px) {
  .navbar img {
    height: 40px;
  }
  .menu-icon {
    font-size: 18px;
  }
  .navbar ul li a {
    font-size: 14px;
  }
}

@media (max-width: 819px) {
  .hero img {
    height: 300px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .image-section img {
    height: 250px;
    width: 250px;
  }

  .logo {
    display: none;
  }

  .review button {
    font-size: 10px;
  }

  .content7 p {
    margin-right: 200px;
  }

  .container5 a {
    margin-top: 0.1px;
  }
}

@media (max-width: 525px) {
  #b {
    display: none;
  }

  .hero img {
    height: 400px;
    width: 500px;
  }
}
