*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Removes horizontal scrollbar */
    font-family:'Merriweather', serif;
}
/* Hide on tablet and mobile */
@media (max-width: 991px) {
    br {
        display: none;
    }
}

/* 

.navbar {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(95% - 180px);
    padding: 18px 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 95px 95px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 40px;  
    width: auto;
    max-width: 170px; 
    display: block;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    font-family: 'Merriweather', serif;
    font-size: 29px;
    cursor: pointer;
    font-weight: 500;
    color: #000;
}

.navbar img {
    height: 50px;
    width: auto;
    margin-right: 28px;
}


.navbar .dropdown {
    position: relative;
}

.navbar .product-link {
    font-family: 'Merriweather', serif;
    font-size: 29px;
    cursor: pointer;
    font-weight: 500;
    color: #000;
}

.navbar .dropdown-arrow {
    cursor: pointer;
    font-size: 18px;
    margin-left: 8px;
}


.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #004e89;
    width: 100%;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 10;
    padding: 20px;
    box-sizing: border-box;
    flex-wrap: wrap;
    display: flex;
}

.mega-menu-item {
    flex: 1;
    padding: 10px;
    color: white;
}

.mega-menu-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.mega-menu-item a {
    display: block;
    margin-bottom: 10px;
    color: white;
    text-decoration: none;
}

.mega-menu-item a:hover {
    background-color: #ddd;
    color: #004e89;
}


.navbar .dropdown.active .mega-menu {
    display: flex;
}


.hamburger {
    display: none;
}

.hamburger div {
    width: 25px;
    height: 4px;
    background-color: #000;
    margin: 4px 0;
}


@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        padding: 18px 20px;
        width: 90%;
        align-items: flex-start;
        background: #faf8f8;
        box-shadow: none; 
        border-radius: 30px;
    }

    .navbar ul {
        display: none; 
        flex-direction: column;
        gap: 16px;
        margin-top: 15px;
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .navbar.active ul {
        display: flex; 
    }

    .navbar .hamburger {
        display: block; 
        background: none;
        border: none;
        cursor: pointer;
    }

    .navbar ul li {
        font-size: 22px;
    }

    .navbar img {
        height: 30px;
    }

    .navbar .logo img {
        max-width: 120px;
    }
}


@media (max-width: 480px) {
    .navbar ul li {
        font-size: 22px;
    }

    .navbar img {
        height: 30px;
    }

    .navbar .logo img {
        max-width: 120px;
    }
} */

.shade-section,
.icon-menu,
.features-section {
  position: relative;
  z-index: 1;
}

/* ===== HERO ===== */
.hero{
    background:url("/images/Rectangle\ 27.png") center/cover no-repeat;
    height: 850px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
}

.hero-content{
    position: relative;
    color: #101010;
    align-items: center;
    text-align: center;
   
}

.hero h1{
    font-family: 'Merriweather', serif;
     /* Adding shadow */
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4); /* Shadow applied to each letter */
    font-size: 70px; /* Slightly reduced size */
    font-weight: 900;
    margin-top: -10px; /* Adjusted margin for better alignment */
    line-height: 1.2; /* Adjust line height for better spacing */
}

.hero button {
    font-family:'Merriweather', serif;
    padding: 16px 20px;
    font-size: 30px;
    background: #D9D9D9;
    margin-top:40px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    border: none;
    border-radius: 50px; /* ✔ pill shape */
    transition: all 0.3s ease;
}

/* Responsive Design for Tablets and Below */
@media (max-width: 1024px) {
    .hero {
        height: 700px; /* Adjust height for tablets */
    }

    .hero h1 {
        font-size: 50px; /* Adjust font size for tablets */
    }

    .hero button {
        font-size: 24px; /* Adjust button size for tablets */
        padding: 14px 18px;
    }
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .hero {
        height: 500px; /* Adjust height for mobile */
    }

    .hero h1 {
        font-size: 35px; /* Adjust font size for mobile */
        line-height: 1.5; /* Slightly adjust line height for mobile */
        margin-top:60px; /* Remove negative margin */
    }

    .hero button {
        font-size: 20px; /* Adjust button size for mobile */
        padding: 12px 16px;
    }
}

/* Responsive Design for Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        height: 400px; /* Adjust height for very small screens */
    }

    .hero h1 {
        font-size: 28px; /* Adjust font size for small mobile screens */
        line-height: 1.4; /* Adjust line height for better readability */
    }

    .hero button {
        font-size: 18px; /* Adjust button size for small screens */
        padding: 12px 14px;
    }
}
/* ===== PRODUCT INTRO ===== */

/* SECTION */
.shade-section {
  padding: 80px 20px;
}

.shade-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:90px;
  align-items: center;
}

/* IMAGE AREA */
.image-wrapper {
  position: relative;
  max-width: 500px;
}



/* CIRCLE IMAGE */
.circle-image {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 290px;
  height: 290px;
  background: #fff;
  border-radius: 50%;
  padding: 9px;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* CONTENT */
.content-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight:900;
  margin-bottom:20px;
  color:black;
}

.content-wrapper p {
  font-size:20px;
  line-height: 1.8;
  color:black;
  margin-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .shade-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .shade-section{
    align-items:center;
    padding: 5px;
  }
  .image-wrapper {
    margin: auto;
  }

  .circle-image {
    right: 50%;
    transform: translateX(50%);
  }
  .shade-container {
    gap:20px;
  }
}



/* ===== ICON ROW START ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.body {
  background: #fff;
}

/* MENU BAR */
.icon-menu {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 22px 0;
}

.icon-menu-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ITEM */
.menu-item {
  text-align: center;
  cursor: pointer;
}

/* ICON */
.icon-circle {
  width: 52px;
  height: 52px;
  background: #2f3947;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.icon-circle i {
  color: #fff;
  font-size: 16px;
}

/* TEXT */
.menu-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  font-weight:700;
  color: #000;
}

/* HOVER EFFECT */
.menu-item:hover .icon-circle {
  background: #000;
  transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .icon-menu-inner {
    flex-wrap: wrap;
    flex-direction:row;
    gap:20px;
    justify-content: center;
    font-size:14px;
  }
  .menu-item h4 {
    font-size:12px;
  }
 
}


 /* SECTION */
    .made-usa-section {
      padding: 0; /* Removed padding for full width */
      background: #fff;
      margin-top:150px;
     
    }

    /* CONTAINER */
    .made-usa-container {
      max-width: 100%; /* Full width */
      margin: 0; /* Removed margin */
      display: flex;
      align-items: stretch;   /* 🔥 SAME HEIGHT */
      box-shadow: 0 15px 35px rgba(0,0,0,0.12);
      border-radius: 6px;
      overflow: hidden;       /* 🔥 CLEAN EDGES */
    }

    /* LEFT IMAGE */
    .made-usa-image {
      width: 65%;  /* Increased the width of the image */
    }

    .made-usa-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* RIGHT CONTENT */
    .made-usa-content {
      width: 35%;  /* Reduced the width of the right content */
      background: #1e5aa8;
      color: #fff;
      padding: 28px 30px;  /* Reduced padding to bring the content closer */
      display: flex;
      flex-direction: column;
      justify-content: center; /* 🔥 VERTICAL CENTER */
    }

    /* TEXT */
    .made-usa-content h3 {
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .made-usa-content p {
      font-size: 16.5px;
      line-height: 1.7;
      opacity: 0.95;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .made-usa-container {
        flex-direction: column;
      }

      .made-usa-image,
      .made-usa-content {
        width: 100%;
      }

      .made-usa-image img {
        height: 220px;
      }
    }


/* ===============================
   SHEERWEAVE FEATURES SECTION
================================ */

/* Section Styling */
.features-section {
  width: 100%;
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.2em;
  font-weight:600;
  margin-bottom: 20px;
  color:black;
  font-family: 'Merriweather';
}

.section-intro {
  font-size: 2em;
  color: #666;
  line-height:1.5;
 
}

/* Features Container */
.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  display:none;
}

.feature-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  max-width: 150px;
  margin-right: 20px;
}

.feature-text h3 {
  font-size: 1.3em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.feature-text p {
  font-size: 1em;
  color: #555;
  line-height: 1.5;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;
  }

  .feature-item {
    flex-direction: column;
  }

  .feature-image {
    margin-bottom: 15px;
  }
}


/* ===============================
   GLOBAL VARIABLES
================================ */
 
.styles-section {
  padding: 50px 20px;
  
}
.styles-section h2{
  font-weight:600;
  font-size:40px;
}
.styles-section p{
  font-size:20px;
}
.styles-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* TEXT SECTION */
.text-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full height of the viewport */
}


/* HEADER */
.text-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  color: #333;
  margin-bottom: 20px;
}

/* PARAGRAPH */
.text-section p {
  text-align: center;
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  font-weight: normal;
  margin-top: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CARD */
.style-card {
  background: #fff;
  text-align: center;
}

/* IMAGE */
.image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 15px;
}

/* IMAGE */
.image-wrap img {
 width: 100%;
  height: 260px;
  object-fit: cover;

  /* Top rounded */
  border-radius: 30px 30px 0 0;

  
  /* clip-path: polygon(
    0 0,
    100% 0,
    100% 85%,
    92% 100%,
    8% 100%,
    0 85%
  ); */

  display: block;
}

/* WHITE CURVE AT BOTTOM */
/* .image-wrap::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  height: 38px;
  background: #fff;
  border-radius: 40px;
  z-index: 1;
} */

/* IMAGE TITLE */
.image-title {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  z-index: 2;
}



/* TEXT */
.style-card h4 {
 background: #fff;
  width: calc(90% - 50px);
  margin: -60px auto 0;
  padding: 20px 10px;
  /* border-radius: 50px 50px 0px 0px; */
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  /* font-size: 16px; */
  font-weight: 600;
  color: #111;    
  text-align: center;
  z-index: 2;
  position: relative;
}

.style-card p {
  font-size: 18px;
  line-height: 1.6;
  color:black;
  padding: 0 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .styles-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .styles-section h2{
  font-weight:600;
  font-size:25px;
}
}

@media (max-width: 576px) {
  .styles-container {
    grid-template-columns: 1fr;
  }

  
}

/* FAQ SECTION */
/* Custom styling for the accordion */
.accordian1{
  padding-top:50px;
}
/* .accordion-button {
  background-color: transparent; 
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  padding: 20px 20px;
  border-radius:24px;
  box-shadow: none;
} */
.accordion-button:focus {
    background-color:  #0099FF; /* Keep the same color when expanded */
    color:white;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #ffffff;
}
.accordion-button {
  display: flex !important;
  align-items: center !important;   /* 🔥 FIX */
  justify-content: space-between;

  background-color: transparent;
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  padding: 20px;
}

/* REMOVE BOOTSTRAP DEFAULT ICON */

.accordion-button::after {
  content: "›";
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: #ffffff;
  color: #0099FF;
  font-size: 26px;
  font-weight: bold;

  margin-left: auto;
  flex-shrink: 0;

  background-image: none !important;
}
.accordion-button {
  line-height: 1.2; /* 🔥 stabilizes height */
}
.accordion{
    font-family: 'Fredoka One', sans-serif ; /* Correct property to set the font family */
}

.accordion-button:focus {
  box-shadow: none; /* Remove default focus shadow */
}


.accordion-button::before {
  display: none;
}

/* .accordion-body {
  background-color: transparent; 
  color: #ffffff;
  font-size: 24px;
  line-height: 1.6;
  padding: 0 32px 28px 32px;
  border-radius:24px;
  box-shadow: none;
} */

.accordion-item {
  background-color: #0099FF;
  border-radius:32px;
  overflow: hidden; 
  margin-bottom: 18px !important;
  border: none;
  color: white;

  align-items:center;
  width:80%;
  margin: 0 auto;

  
}
#contactFormSection{
  scroll-margin-top: 150px !important; 
}
.accordion-header {
  padding: 0;
  margin: 0;
}

/* .accordion-button:after {
  content: '\f078'; 
  font-family: 'FontAwesome';
  background-color: #0099FF;
  font-weight: bold;
  font-size:25px;
  color:white;
  float: right;
  transition: transform 0.3s ease;
} */
.accordion-button::after {
  position: relative;
  top: 0;
  content: "›";
  background: #ffffff;
  color: #0099FF;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;

  margin-left: auto !important; /* 🔥 FIX */
  flex-shrink: 0;

  background-image: none !important;
}

/* rotation */
.accordion-button.collapsed::after {
  transform: rotate(0deg);
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}
/* 🔥 REMOVE ALL FOCUS / ACTIVE BORDERS */
.accordion-button:focus,
.accordion-button:focus-visible,
.accordion-button:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.accordion-button:hover::after,
.accordion-button:focus::after {
  background: #ffffff;
  color: #0099FF;
  filter: none !important; /* 🔥 force white */
}

.accordion-button.collapsed::after {
  transform: rotate(0deg);
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}
.accordion-button {
  border-radius: 0 !important;   /* 🔑 prevents mismatch */
}

.accordion-body {
  border-radius: 0 !important;
}
.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 32px;
}

/* Responsive styling */
@media (max-width: 767px) {
   .accordion-button {
    font-size: 18px;
    padding: 20px;
  }

  .accordion-body {
    font-size: 16px;
    padding: 0 20px 20px;
  }
.faq-new{
  padding-top:0 !important;
}
}
.accordion-button strong {
  margin-right: 20px; /* Add margin to the right to space out the text */
}

.FAQ{
  font-size:90px;
  font-weight:600;
  padding-bottom:0;
}
.faq2{
  padding-bottom:30px;
}
/* ===== FOOTER START ===== */
.site-footer {
  background: #3c4a5e;
  color: #fff;
  padding-top:40px;
  padding-right:20px;
  padding-left:20px;
  padding-bottom:20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;   /* 🔑 MAIN FIX */
  gap: 150px;
}

/* LEFT SIDE */
.footer-left {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* margin-left: 40px; */
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 18px;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 18px;
}

.footer-divider {
  width: 260px;      /* 👈 screenshot jaisa */
  height: 2px;
  background: #fff;
  margin-bottom: 18px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #fff;
  color: #3c4a5e;
}

/* RIGHT SIDE */
.footer-right {
  flex: 1;
  display: flex;
  gap: 90px;
  align-items: flex-start;   /* 🔑 VISIT & LINKS same line */
  margin-top: 70px;
}

.footer-col h4 {
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  opacity: 0.9;
}

.footer-col ul li a:hover {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-right {
    gap: 40px;
  }

  .footer-divider {
    width: 180px;
  }
}

/* ===== FOOTER END ===== */


/* ===== RESPONSIVE ===== */
@media(max-width:900px){
    .product-intro,
    .usa{
        flex-direction:column;
    }

    .product-img,
    .product-text,
    .usa img{
        width:100%;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .navbar{
        flex-direction:row;
        gap:10px;
    }
}

/* Responsive for tablets and below */
@media (max-width: 1024px) {
  .shade-container {
    flex-direction: column;
    text-align: center;
  }

  .image-wrapper {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .content-wrapper {
    flex: 1 1 100%;
    padding:20px;

  }

  .content-wrapper h2 {
    font-size: 28px;
  }

  .content-wrapper p {
    font-size: 16px;
  }
}

/* Mobile responsive design */
@media (max-width: 768px) {
  .shade-container {
    padding: 20px;
  }
 .image-wrapper img{
  width:330px;
 }
  .image-wrapper {
    margin-bottom: 20px;
  }

  .content-wrapper h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .content-wrapper p {
    font-size: 14px;
  }
}

/* Small mobile screen (e.g., portrait phones) */
@media (max-width: 480px) {
  .shade-container {
    padding: 15px;
  }

  .content-wrapper h2 {
    font-size: 20px;
  }

  .content-wrapper p {
    font-size: 12px;
  }
}
.footer-bottom {
  margin-top: 0px;
  /* margin-bottom:0px; */
  /* padding: 8px 0px; */
  text-align: center;
 
  font-size: 18px;
  color: #ffffff;
}

.footer-bottom p {
  margin: 0;
  
}

.footer-bottom strong {
  font-weight: 700;
}


.designer-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.designer-link:hover {
  opacity: 0.8;
}
.screen-features {
  padding: 80px 20px;
  background: #fff;
}

/* WRAPPER */
.features-wrapper {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

/* CENTER IMAGE */
.features-wrapper > img {
  width: 90%;
  display: block;
  margin-left: 60px;
}

/* COMMON TEXT STYLE */
.feature-text {
  position: absolute;
  max-width: 260px;
  font-family: 'Open Sans', sans-serif;
}

.feature-text h3 {
  font-family:'Merriweather', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
  text-decoration:underline;
}

.feature-text p {
  font-size: 12px;
  line-height: 1.5;
  color: #444;
}

/* ---- INDIVIDUAL POSITIONS ---- */

/* Top Left */
.feature-text.visibility {
  top:15%;
  left:-12%;
  bottom:-4%;
}

/* Top Right */
.feature-text.durability {
  top: -3%;
  right: -1px;
  left: 75%;
}

/* Right Middle */
.feature-text.privacy {
  top:48%;
  right: -12%;
  max-width: 240px;
}

/* Bottom Left */
.feature-text.pet {
  bottom: 4%;
  left: 0;
}

/* Bottom Center / Slight Right */
.feature-text.insects {
  bottom:-21%;
  left: 75%;
  max-width: 260px;
  transform: translateX(-30%);
}
.feature-text.Occupants {
 left:25%;
}


/* ---------------- RESPONSIVE ---------------- */

/* TABLET */
@media (max-width: 992px) {
  .feature-text {
    position: static;
    max-width: 100%;
    margin: 20px 0;
  }
 .insects{
  display:none;
 }
  .features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .feature-text h3 {
    font-size: 18px;
  }

  .feature-text p {
    font-size: 18px;
  }

}