.container1 {
  margin-top: 0px;
}

.banner {
  max-width: 100%; /* Set the maximum width to full screen width */
  position: relative;
  overflow: hidden;
}

.banner img {
  width: 100%; /* Set the image width to 100% */
  height: auto; /* Allow the image to adjust its height accordingly */
  opacity: 1;
  background-position: 50% 50%;
}

.contact {
  font-family: sans-serif;
  font-weight: 400;
  position: fixed;
  bottom: 30px;
  padding-right: 5px;
  font-size: 25px;
  font-weight: 700;
  background: #d9d9d9;
  color: #47823d;
  align-items: center;
  text-align: center;
  z-index: 999;
  border-radius: 5px;
  left: 65px;
  padding: 0;
  margin-left: 5px;
  border: 1px solid #47823d;
}

.quick-connect {
  position: fixed;
  bottom: 20px;
  border: none;
  background-color: #ffffff;
  color: #ffffff;
  border: none;
  padding: 0;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.8s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 10px;
  border: 1px solid black;
}

.quick-connect img {
  width: 40px;
  height: auto;
  object-fit: cover;
}

.contact-options a {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 10px;
  text-decoration: none;
  border-radius: 50%;
  padding: 10px;
  left: 10px;
  transition: transform 0.8s ease;
}

.contact-options {
  display: none;
  position: fixed;
  bottom: 90px;
  left: 5px;
  z-index: 999;
  transition: transform 0.8s ease;
}

.contact-options a {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  text-decoration: none;
  border-radius: 50%;
}

.contact-options a:nth-child(1) {
  /* WhatsApp */
  background-color: #32cd32;
  color: white;
}

.contact-options a:nth-child(2) {
  /* Phone */
  background-color: #3f00ff;
  color: white;
}

.contact-options a:nth-child(3) {
  /* Email */
  background-color: #ff5733;
  color: white;
}

@media only screen and (max-width: 5000px) {
  .banner img {
    height: auto; /* Set height to auto for screens smaller than 1800px */
  }
  .rectangContainer {
    height: auto; /* Auto height for smaller screens */
    margin: 10px; /* Reduce margin for smaller screens */
    border-radius: 10px; /* Adjust border radius for smaller screens */
  }
}

@media only screen and (max-width: 768px) {
  .banner img {
    aspect-ratio: 2/1;
  }
  .container1 {
    margin-top: 0px;
  }
}

.rectangContainer {
  padding: 5px;
  background-image: url("asset/wordmap.png");
  background-color: #47823d;
  background-blend-mode: color-burn;
  margin: 20px;
  margin-top: 50px;
  border-radius: 15px;
  min-height: 250px;
  max-height: auto;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}

.recElements {
  display: flex;
  gap: 10px;
  padding: 20px 0;
  justify-content: space-around;
}
.recItem {
  font-family: Anton, sans-serif; /* Added a fallback font */
  font-size: 21px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  align-items: center; /* Centers the content vertically */
  text-align: center;
  padding: 5px 0;
  flex-direction: column; /* Added for column direction */
  width: fit-content; /* Ensures the width fits the content */
}

.recItem:first-child
  /* .recItem:hover */ {
  border-bottom: 5px solid #ffffff;
  width: fit-content; /* Ensures the width fits the content */
}

.my-input-container {
  position: relative;
  width: 95%;
  margin-left: 35px;
}

.my-input-container input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
  padding: 12px 40px 12px 20px;
  outline: none;
}

.my-input-container .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  cursor: pointer;
  z-index: 1;
}

.featuredCategories {
  margin-top: 40px;
}


.belowtext {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  overflow: hidden; /* Ensures content stays within the container */
  width: 100%; /* Make sure the container takes full width */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */

  text-align: center;
  font-family: Inter;
  font-size: 25px;
  font-weight: 800;
  color: #fff;
  margin-top: 20px;
}
.btext {
  flex-wrap: nowrap;
  align-items: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.typewriter {
  overflow: hidden;
  white-space: nowrap;
  display: inline-flex;
  color: orange;
  font-size: 25px;
  box-sizing: border-box;
  flex-shrink: 0;
  border-right: 2px solid orange;
}
.typewriter span {
  display: inline-block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.copyRight {
  text-align: center;
  background-color: #47823d;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyRight p {
  text-align: center;
  align-items: center;
  width: auto;
  font-size: 18px;
}

.upload-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: transparent;
  padding: 40px;

  border: 2px;
  min-height: 200px;
  border: 2px solid white; /* White border */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light box shadow */
  border-radius: 8px; /* Rounded corners */

  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.upload-template-download {
  display: flex;
  align-items: center;
}

.upload-template-download img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.upload-template-download a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.upload-file-upload {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-box {
  max-width: 400px;
  width: 100%;
  height: 150px;
  border: 3px dashed #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.upload-box a {
  color: #fff;
  text-decoration: underline;
}

.upload-search-button {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: not-allowed;
  font-weight: bold;
}

.bestSellerText {
  margin-left: 100px;
  max-width: 113px;
  height: auto;
  font-family: Inter;
  font-size: 24.95px;
  font-weight: 700;
  line-height: 30.2px;
  text-align: left;
  color: #47823d;
  border-bottom: 2.08px solid #47823d;
}
.product-container {
  position: relative;
  overflow: hidden;
  height: 460px;
} 

.product-wrapper {
  display: flex;
  overflow: hidden;
  margin: 0 70px;
}

@media (max-width: 420px) {
  .product-wrapper {
    margin: 0 10px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }
}

.product {
  flex: 0 0 auto;
  width: 275px; /* Adjust as needed */
  margin: 10px 10px 10px 15px;
  box-sizing: border-box;
  text-align: center;
  padding: 2px;
  border-radius: 15px;
  position: relative;

  overflow: hidden;
}


.ProductImage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width:275px;
  background-color:#f8f8f8;
  padding: 10px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.product img {
  width: 100%;
  height: 100%;
  object-fit:contain; 
  border-radius: 10px;

}

.product img:not([src]), 
.product img[src=""] { /* If no image, keep space */
  content: url("placeholder-image.png"); /* Set a placeholder */
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures it doesn't shrink */
}

.prouductDescription {
  text-align: justify !important;
}

.Heart {
  font-size: 18px;
  position: absolute; /* Position heart icon absolutely */
  right: 18px;
  top: 18px;
  color: white;

  display: flex;
  justify-content: center;
  z-index: 1;
}

.WishIcom {
  background-color: #000000;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0px 2.42px 14.53px 0px #00000014;
}

.scroll-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #47823d;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.scroll-button.prev {
  left: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
  padding: 10px; /* Adjust padding as needed */
  width: 37px; /* Adjust size as needed */
  height: 37px; /* Adjust size as needed */
  background-color: #47823d; /* Adjust background color as needed */
  color: #fff;
}

.scroll-button.next {
  right: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
  padding: 10px; /* Adjust padding as needed */
  width: 37px; /* Adjust size as needed */
  height: 37px; /* Adjust size as needed */
  background-color: #47823d; /* Adjust background color as needed */
  color: #fff;
}

.product h3 {
  padding-top: 10px;
  text-transform: capitalize;
  white-space: nowrap;
  /* Align text to the left */
  text-align: left;
  color: #2c2c2c;
  padding-right: 10px;
}

.ratings,
.rating-count,
.comments {
  /* Decrease the font size */
  font-size: 0.8em; /* Adjust as needed */
  /* Align to the right */
  float: right;
  margin-left: 10px; /* Add some space between elements */
}

.ratings::before {
  content: "\2605"; /* Unicode character for star */
  /* Increase space between rating number and star */
  margin-right: 3px;
  /* Set star color to green */
  color: #47823d;
}
.prouductDescription {
  max-width: 250px;
  padding-left: 10px;
}
.MainDetails {
  padding-top: 10px;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
.mainPrice {
  font-weight: 700;
}
.strikePrice {
  color: #d9d9d9;
}
.offPrice {
  color: #47823d;
  font-weight: 600;
}
.addCart {
  text-align: left;

  padding-top: 18px;
}
.button-container1 {
  position: absolute;
  bottom: 20px;
  right: 50px;
  text-align: right;
  color: white;
}
.addCart button {
  background-color: transparent;
  border-width: 0.61px;
  border-style: solid;
  border-color: rgb(0, 0, 0);
  border-image: initial;
  border-radius: 15px;
  padding: 9.68px, 22.4px, 9.68px, 22.4px;
  padding: 6px 9px;
}
.addCart button:hover {
  background-color: #ff5f1f;
}

.featuredCategories {
  display: grid;
  gap: 15px;
  margin: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-item {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 15px;
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  flex-direction: column;
}

.grid-item img {
  width: 100%;
  height: 70%;
  object-fit: contain;
  margin: auto;
}


.CartAndWishFeature {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
}

.CartAndWishFeature span i {
  margin: 2px;
  padding-right: 10px;
  border: 0.91px solid #00000029;
  padding: 5px;
  border-radius: 50%;
}

.featureCategoriesText {
  color: #565A5C;
  font-size: 14px;
  margin-top: auto;
  padding-top: 10px;
  text-align: center;
  line-height: 1.3;
}





.CartAndWish span i {
  margin: 2px;
  padding-right: 10px;
  border: 0.91px solid #00000029;
  padding: 5px;
  border-radius: 50%;
}

.featureCategoreisText {
  font-family: Inter;
  font-size: 18.29px;
  font-weight: 600;
  line-height: 17.37px;
  text-align: center;
}

footer {
  background-color: #333333;
  color: #fff;
  padding: 20px 0;
  font-family: inter;
  margin-top: 20px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  margin: 10px 30px;
}

.footer-section h3 {
  padding-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  text-align: center;
  border-bottom: 1px solid #555
}

.aboutlinks {
  display: flex;
  justify-content: center;
  gap:50px;
}

.aboutImageNameLink {
  text-align:center;
  display: flex;
  justify-content: center;
  flex-direction:column;
  align-items: center;
  font-size:12px;
}

.aboutImageNameLink img {
  width:100px; /* Adjust size */
  height: auto;
  display:flex;
  justify-content: center;
  align-items: center;
 
  border-radius: 50%;
  background-color: #ffffff;
  
}

.icon-section {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.icon-section a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  width:80; 
}

.icon-section img {
  max-width: 70px;
  width: 100%;
  height: 70px; 
  object-fit:contain ;
  transition: transform 0.3s ease;
}

.icon-section p {
  margin: 5px 0 0; 
  text-align: center;
}


.policy-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Two items per row */
  gap: 20px;
  justify-content: center;
}

.policy-item {
  text-align: center;
}
.policy-icon {
  font-size:18px; 
  color:#fff;
  display: block;
  margin: 0 auto 4px; 
  transition: color 0.3s ease, transform 0.3s ease;
 
}

.policy-item a {
  text-decoration: none;
}

.policy-item a:hover .policy-icon {
  color:#ffffff !important; 
  
}

.policy-item p {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  color:#fff;
 
}



.footer-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
  display: flex;
  justify-content: center;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  line-height: 24px;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.footer-section ul li a:hover {
  color: #d9d9d9;
  font-size: 13px;
}

.safeaddress {
  margin-top: 10px;
  line-height: 1.5;
  font-family: "Inter", sans-serif !important;
  text-align: center;
  font-size: 12px;
}
.safeaddress a {
  color: #ffffff !important;
  text-align: center;
  display: flex;
  justify-content: center;
  transition: color 0.3s ease;
}

.safeaddress a:hover {
  color: #ccc !important;
}

.safelocation {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.sourceimage {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.keepInTouch {
  text-align: center;
  font-size: 12px;
}

.footer-section a {
  display: flex;
  align-items: center;
  margin-top: 10px;
  color: #bbb;
  text-decoration: none;
}

.footer-section a:hover {
  color: #fff;
}

.footer-bottom p {
  margin: 10px 0;
}

.social-icons {
  display: flex;
  justify-content: center; 
  align-items: center; 
  gap:10px; 
  padding: 20px; 
  margin-top: -25px;
}


.social-icons a {
  color: #47823d !important;
  font-size:18px;
  text-decoration: none;
  background-color: #fff;
  padding:5px;

  display: flex;
  align-items: center;
  justify-content: center; /* Change from space-between to center */
  transition: background-color 0.3s, color 0.3s;
  border-radius: 50%;
  width:30px; /* Ensure equal width and height */
  height:30px;
}

.social-icons a:hover {
  background-color: #555;
  color: #fff;
}

.footer-section i.icon-circle {
  background-color: #fff;
  color: #333333;
  padding: 10px;
  border: 2px solid #fff;
  transition: background-color 0.3s, color 0.3s;

  align-items: center;
}

.footer-section a i.icon-circle:hover {
  background-color: #555;
  color: #fff;
}

.contact-section {
  padding: 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.address,
.contact-details,
.social-links {
  color: #bbb;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
}
.mny {
  width: 66.66%;
}
.xyz {
  display: flex;
  justify-content: space-between;
}
.address p,
.contact-details a {
  font-family: "Inter", sans-serif;
  font:18px;
  text-align: center;
  line-height: 24.05px;
  color: #ffffff;
}


.contactEmailAndNumber a {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}


.socialIconlink {
  display: flex;
  align-items: center;
}



.socialIconlink a:hover {
  background-color: #555;
  color: #fff;
}

.socialIconlink i.icon-circle {
  background-color: #fff;
  color: #333;
  padding: 10px;
  border: 2px solid #fff;
  transition: background- color 0.3s, color 0.3s;

  align-items: center;
}

.socialIconlink a i.icon-circle:hover {
  background-color: #555;
  color: #fff;
}

.footerDownloadImage{
  display: flex;
  justify-content:space-around;
  gap: 10px;
 
}

.footerDownloadImage img {
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  max-width: 100px;
  width: 100%;
}

@media (max-width: 768px) {
  .footer-section {
    margin: 10px;
  }
  .aboutlinks{
    gap: 20px;
  }
  .mny {
    width: 100%;
  }
  .xyz {
    flex-direction: column;
  }
  .footerDownloadImage {
    gap: 10px;
  }
  
  .contactEmailAndNumber a {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .social-links {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .socialIconlink {
    justify-content: center;
    align-items: center;
  }

  .map iframe {
    height: 300px;
  }

  .whyChoose p {
    padding: 5px !important;
  }
  .subChoose p {
    padding: 5px !important;
  }
  #footerText {
    padding: 5px !important;
  }
  #ThankYouFooter {
    padding: 5px !important;
  }
}
.horizontal-section {
  background-color: #333333;
  padding:10px;
  margin:10px 0;
  color:gray;
  margin: 0 auto;
}

.horizontal-section h3 {
  
  padding-bottom: 0; 
  color:#898989;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}


.horizontal-section ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.footerSectionItem ul.open {
  max-height: 100%;
}



.horizontal-section ul li {
  margin: 3px 8px;
  border-right: 1px solid white;
}

.horizontal-section ul li a {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-right: 5px;
}

.horizontal-section ul li a:hover {
  color: #fff;
}

.horizontalLine {
  max-width: 1800px;
  border-bottom: 1px solid #ffffff63;
}

.whyChoose {
  padding: 10px;
}

.whyChoose h3 {
  color: #47823d;
  font-family: Inter;
  font-weight: 700;
  line-height: 22.05px;
  text-align: left;
}
.whyChoose p {
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 24px;
  padding: 20px; /* Space inside the footer */
  margin-top: 10px; /* Space above the footer */
}

.subChoose p {
  color: rgba(255, 255, 255, 0.42);

  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: justify;

  padding: 20px; /* Space inside the footer */
  margin-top: 20px; /* Space above the footer */
}
.subHead {
  font-size: 16px;
  color: #fff;
  font-family: "Inter", sans-serif;
  line-height: 24px;
}

#footerText {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: justify;

  padding: 20px; /* Space inside the footer */
  margin-top: 20px; /* Space above the footer */
}

#ThankYouFooter {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: justify;

  padding: 20px; /* Space inside the footer */
  margin-top: 20px; /* Space above the footer */
}

@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .recItem {
    font-size: 13px;
    text-align: left;
  }
}

@media only screen and (max-width: 768px) {
  .featuredCategories {
    gap: 20px;
    margin: 40px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .oemItems {
    gap: 20px;
    margin: 40px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
  }
  .oemitem {
    padding: 20px;
  }
  .grid-item {
    padding: 20px;
  }
  
  .recItem {
    font-size: 10px;
    text-align: center;
  }
  .rectangContainer {
    height: auto; 
    margin: 10px; 
    border-radius: 10px;
  }

  .my-input-container {
    margin-left: 10px;
  }
  .my-input-container {
    width: 95%; /* Adjust width for smaller screens */
  }

  .my-input-container input[type="text"] {
    padding: 8px;
    font-size: 14px; 
  }

  .world-map {
    height: 300px; 
  }
}

@media only screen and (max-width: 900px) {
  .bestSellerText {
    margin-left: 20px; 
    max-width: 100px; 
    font-size: 20px; 
    line-height: 28px; 
  }
 

  

}

@media screen and (max-width: 600px) {
  .recItem:nth-of-type(4),
  .recItem:nth-of-type(5) {
    display: none;
  }
  .upload-container {
    display: none !important;
  }
  .recItem:first-child {
    border: none;
  }
  
  .belowtext {
    font-size: 20px;
  }
  .typewriter {
    font-size: 20px;
  }

  .button-container1 button {
    border-radius: 50%;
    font-size: 15px;
  }
  .button-container1 {
    position: absolute;
    bottom: 10px;
    right: 50px;
    text-align: right;
    color: white;
    border-radius: 50%;
  }
  #pemlearnsMore,
  #pemshop {
    display: none;
  }
}
@media screen and (max-width: 460px) {
  .belowtext {
    font-size: 18px;
  }
  .typewriter {
    font-size: 18px;
  }
  .recItem:nth-of-type(4),
  .recItem:nth-of-type(5) {
    display: none;
  }
}
@media screen and (max-width: 390px) {
  .belowtext {
    font-size: 12px;
  }
  .typewriter {
    font-size: 12px;
  }
  .recItem:nth-of-type(4),
  .recItem:nth-of-type(5) {
    display: none;
  }
}


.mySlides {
  display: none;
}
.mySlides img {
  border-radius: 30px;
  height: auto;
  width: 100%;
}
img {
  vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
  max-width: 4000px;
  position: relative;
  margin: auto;
}

.ContainerSlide {
  margin: 40px;
}
/* Next & previous buttons */

@media screen and (max-width: 767px) {
  /* Adjust the border-radius for smaller screens */
  .mySlides img {
    border-radius: 10px; /* You can adjust this value as needed */
    aspect-ratio: 2/1;
  }
}

.prev,
.next {
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -22px;
  font-weight: bold;
  transition: 0.6s ease;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  width: 37px;
  height: 37px;
  background-color: #47823d;
  color: #fff;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 50%;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: yellow;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.faseSafe {
  animation-name: faseSafe;
  animation-duration: 1.5s;
}

.slideText {
  margin-top:40px;
  margin-left:50px;
  max-width: 300px;
  height: auto; /* Change height to auto */
  font-family: Inter;
  font-size: 24.95px;
  font-weight: 700;
  line-height: 30.2px;
  text-align: left;
  color: #47823d;
  display: inline-block; /* Change display to inline-block */
  border-bottom: 2.08px solid #47823d;
}

.featuresText {
  margin-left:50px;
  max-width: 350px;
  height: auto; /* Change height to auto */
  font-family: Inter;
  font-size: 24.95px;
  font-weight: 700;
  line-height: 30.2px;
  text-align: left;
  color: #47823d;
  display: inline-block; /* Change display to inline-block */
  border-bottom: 2.08px solid #47823d;
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 11px;
  }
  .safeprev,
  .safenext {
    margin-top: -50px;
    top: 30%;
  }
}


.button-container {
  position: absolute;
  bottom: 20px;
  right: 50px;
  text-align: right;
  color: white;
}

.Safeslideshow-container {
  display: flex;
  align-items: center;
  position: relative;
}
.safeSlidesWrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.safeSlides {
  min-width: 100%;
}

.safeSlides img {
  width: 100%;
  display: block;
}

/* Next & previous buttons */
.safeprev,
.safenext {
  border-radius: 3px 0 0 3px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -22px;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  color: black;
  text-shadow: 2px 2px #ffff;
  transform: scale(0.7, 1);
  z-index: 2;
}

/* Position the "next button" to the right */
.safenext {
  right: 0;
  border-radius: 3px 0 0 3px;
  text-shadow: 0px 0px 2px 2px #ffff;
}

/* On hover, add a black background color with a little bit see-through */
.safeprev:hover,
.safenext:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid black;
}

@media only screen and (max-width: 300px) {
  .safeprev,
  .safenext {
    margin-top: -80px;
    top: 30%;
  }
}

/* top prmotion css  */

.topPromtion {
  padding: 20px 0;
}


.topPromtionCantainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width:100%;
  margin: 0 auto;
  padding: 0 20px;
}

.promtionItem {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1200 / 630; /* Maintain the aspect ratio of your images */
}

.promtionItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




.promotionText {
  margin-left:50px;
  max-width: 170px;
  height: auto; /* Change height to auto */
  font-family: Inter;
  font-size: 24.95px;
  font-weight: 700;
  line-height: 30.2px;
  text-align: left;
  color: #47823d;
  display: inline-block; /* Change display to inline-block */
  border-bottom: 2.08px solid #47823d;
}
.oem {
  margin-left:50px;
  max-width: 600px;
  height: auto; /* Change height to auto */
  font-family: Inter;
  font-size: 24.95px;
  font-weight: 700;
  line-height: 30.2px;
  text-align: left;
  color: #47823d;
  display: inline-block; /* Change display to inline-block */
  border-bottom: 2.08px solid #47823d;
  margin-top: 30px;
}



/* Container for the OEM items */
.oemContainer {
  margin-top: 30px;
}


.oemItems {
  display: grid;
  gap: 15px;
  margin: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.oemitem {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 15px;
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.oemImageAndText {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.oemitem img {
  width: 100%;
  height:100%;
  object-fit: contain;
  padding: 10px;
}

.CartAndWish {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}
.oemText {
  color: #565A5C;
  font-size: 14px;
  margin-top: auto;
  padding-top: 10px;
  text-align: center;
  line-height: 1.3;
  font-weight: 600;
}


/* Media query for smaller screens */
@media screen and (max-width: 768px) {
  .oemContainer {
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  

  .oemitem {
    justify-content: center;
  }
  .promotionText {
    margin-left: 20px; 
    max-width: calc(100% - 40px); 
    font-size: 20px; 
    line-height: 24px; 
  }
  .promotionText {
    margin-left: 20px; 
    max-width: calc(100% - 40px); 
    font-size: 20px; 
    line-height: 24px;
  }
  .oem {
    margin-left: 20px; 
    max-width: calc(100% - 40px); 
    font-size: 20px; 
    line-height: 24px; 
  }

  .slideText {
    margin-left: 20px;
    max-width: calc(100% - 40px); 
    font-size: 20px; 
    line-height: 24px; 
  }
  .featuresText {
    margin-left: 20px; 
    max-width: calc(100% - 40px); 
    font-size: 20px;
    line-height: 24px; 
  }
  .featuredCategories {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 20px;
    margin: 10px;
  }
  

  .topPromtionCantainer {
    grid-template-columns: repeat(1, 1fr); /* Keep 3 columns on mobile */
    gap: 10px; /* Reduce gap for smaller screens */
    padding:10px 10px; /* Adjust padding for smaller screens */
    overflow-x: auto; /* Enable horizontal scrolling if needed */
  }

  .promtionItem {
    width: 100%;
  }
}

/* Media query for even smaller screens */
@media screen and (max-width: 480px) {
  .oemContainer {
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  
  
}

/* equipment info css */

#equipment-info {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap to the next line */
  justify-content: left;
  margin: 0 auto; /* Center the container */
  max-width: 1000px; /* Set maximum width */
}
.euqipment-infoContainer {
  width: 107px;
  height: 103px;
  padding: 8px;
}
#equipment-info img {
  border-radius: 9px;
  padding: 5px;
  width: 80px;
  height: 80px;
  margin-bottom: 5px; 
}

.hidden-option {
  display: none;
}

#equipemntBrand {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  margin: 0 auto; 
  max-width: 1000px; 
}
.brand-infoContainer {
  width: 107px;
  height: 103px;
  padding: 8px;
}

#equipemntBrand img {
  border-radius: 9px;
  padding: 5px;
  width: 80px;
  height: 80px;
  margin-bottom: 5px; /* Add some space between images */
}

#equipmentmodel {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap to the next line */
  justify-content: left;
  margin: 0 auto; /* Center the container */
  max-width: 1000px;
}

.model-infoContainer {
  width: 80px;
  height: 80px;
  padding: 8px;
}

#equipmentmodel img {
  border-radius: 9px;
  padding: 5px;
  width: 80px;
  height: 80px;
  margin-bottom: 5px; /* Add some space between images */
}

#submodel {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap to the next line */
  justify-content: left;
  margin: 0 auto; /* Center the container */
  max-width: 1000px; /* Set maximum width */
}

.sub-infoContainer {
  width: 107px;
  height: 103px;
  padding: 8px;
}

#submodel img {
  border-radius: 9px;
  padding: 5px;
  width: 80px;
  height: 80px;
  margin-bottom: 5px; /* Add some space between images */
}

#attributeInfo {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  margin: 0 auto;
}

.attribute-infoContainer {
  width: 107px;
  height: 104px;
}

#attributeInfo img {
  border-radius: 9px;
  width: 80px;
  height: 80px;
}

.attribute-infoContainer {
  text-align: center; /* Center-align the content */
  margin-bottom: 10px;
}

.attribute-infoContainer img {
  display: block; /* Ensure the image takes its own line */
  margin: 0 auto; /* Center the image */
}

.attribute-infoContainer p {
  margin: 0; /* Remove default margin */
  padding: 5px 0; /* Add padding top and bottom */
  color: white;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  z-index: 998; /* Ensure the overlay is behind the popup */
  backdrop-filter: blur(5px); /* Apply blur effect to the overlay */
}
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  color: black;
  padding: 20px;
  border-radius: 5px;
  z-index: 999;
  width: 400px; /* Set the desired width */
  height: 300px; /* Set the desired height */
  overflow: auto; /* Add overflow for content scrolling if needed */
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: black;
}

@media screen and (max-width: 600px) {
  .popup {
    width: 90%; /* Adjust width for small screens */
    height: 200px; /* Allow height to adjust based on content */
    max-height: 80%; /* Limit maximum height for small screens */
    padding: 10px; /* Adjust padding for small screens */
  }
}

.my-input-container {
  display: flex;
  align-items: center;
}

.oemTypesContainer,
.catalogueContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.oemTypesContainer select {
  width: calc(20% -15px); /* Four items per row with some spacing */
  margin: 10px;
}

@media (max-width: 768px) {
  .oemTypesContainer,
  .catalogueContainer {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
}

.dropdown-equipment-type,
.dropdown-catalogue-type,
.search-button-equipment-brand,
.search-button-catalogue-brand {
  width: 150px; /* Adjust width as needed */
  height: 30px;
  background-color: white;
  padding: 2px;
  border-radius: 3px;
  color: black;
  font-family: Inter;
  font-size: 16.25px;
  font-weight: 400;
  line-height: 23.21px;
  margin-left: 50px;
}
.additional-elements-hidden option,
.catalogue-elements-hidden option {
  display: none;
  outline: none;
  color: transparent;
}
.dropdown-equipment-brand,
.dropdown-catalogue-brand,
.dropdown-catalogue-model,
.dropdown-model,
.dropdown-submodel,
.dropdown-catalogue-submodel {
  background: #ffffffbd;
  width: 150px; /* Adjust width as needed */
  height: 30px;
  padding: 2px;
  border-radius: 3px;
  color: black;
  font-family: Inter;
  font-size: 16.25px;
  font-weight: 400;
  line-height: 23.21px;
  margin-left: 50px;
}
.search-button-equipment-brand,
.search-button-catalogue-brand {
  background: #a3ec59;
  color: #565a5c;
  border: none;
  outline: none;
}

@media screen and (max-width: 768px) {
  .additional-elements-hidden {
    display: flex;
    justify-content: left;
    text-align: left;
    justify-content: space-between;
  }
  .dropdown-equipment-brand,
  .dropdown-equipment-type,
  .dropdown-model,
  .dropdown-submodel,
  .search-button-equipment-brand {
    margin: 5px;
    width: 100px;
  }
}


/* footer */
.FooterCategoryAndDownload {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

}

.CategorySection {
  width: 70%;

}

.downloadSection {
  width: 25%;
}


.footerflexitem {
  display: flex;
  justify-content:space-evenly;
  align-items: center;
  gap:0px;

  color: #898989 !important;
  cursor: pointer;
}

.footerflexitem a {
  text-decoration: none;
  color: gray;
}

.accordion {
  background: none !important;
  color: gray;
  cursor: pointer;
  width: auto;
  border: none;
  outline: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;

}

.accordion:hover {
  color: #fff;
}

.accordion i {
  transition: transform 0.3s ease-in-out;
}

.whyChoose {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.whyChoose.active {
  max-height: 100%;

}

/* Rotate icon when expanded */
.accordion.active i {
  transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  .footer-container{
    flex-direction: column;
  }
  .FooterCategoryAndDownload {
      flex-direction: column;
  }

  .CategorySection {
      width: 100%;
  }

  .downloadSection {
      width: 100%;
  }

  .footerflexitem {
      font-size: 11.5px;
      text-align: center;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap:0 px;

  }

  .footerflexitem .accordion {
      font-size: 14px;
      grid-column: 1 / -1;
      justify-self: center;

  }
}