* {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html,
body {
 height: 100%;
 /* font-family: 'Poppins', sans-serif; */
}

/* .hero-swiper {
 height: 106vh;
} */

nav {
 position: absolute;
 z-index: 100;
 /* background: #fff; */
 border-radius: 0 0 20px 20px;
 left: 0;
}

.dd {
 position: absolute;
 left: 40%;
 padding-top: .5rem;
}

.products {
 position: relative;
 display: inline-block;
 transition: .3s ease-in;
}

.drop-down {
 display: none;
 position: absolute;
 background-color: #fff;
 min-width: 200px;
 box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
 z-index: 999;
 transition: 5s ease-in-out;
}

.drop-down a {
 color: #333;
 padding: 10px 16px;
 text-decoration: none;
 display: block;
}

.drop-down a:hover {
 color: #f2f2f2;
}

/* Show dropdown on hover */
.products:hover .drop-down {
 display: block;
}

/* Trigger show on hover */
.products:hover .drop-down {
 display: block;
 opacity: 1;
 visibility: visible;
}

/* .drop-down a {
 color: #000 !important;
} */

.swiper-slide {
 position: relative;
 background-size: cover;
 background-position: center;
 border-radius: 20px !important;
 display: flex;
 justify-content: center;
 align-items: center;
}

.swiper-slide img {
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
}

.slide-content {
 position: absolute;
 top: 40%;
 left: 22%;
 transform: translate(-50%, -50%);
 color: white;
 text-align: center;
 background-color: rgba(0, 0, 0, 0.5);
 padding: 30px;
 border-radius: 12px;
 animation: fadeInUp 1s ease-in-out;
}

.slide-content h2 {
 font-size: 3rem;
 margin-bottom: 10px;
}

.slide-content p {
 font-size: 1.2rem;
 margin-bottom: 20px;
}

.cta-btn {
 padding: 12px 30px;
 background-color: #fff;
 color: #111;
 text-decoration: none;
 border-radius: 30px;
 font-weight: bold;
 transition: background 0.3s;
}

.cta-btn:hover {
 background-color: #ddd;
}

.swiper-button-next,
.swiper-button-prev {
 color: white;
}

.swiper-pagination-bullet-active {
 background-color: white;
}

@keyframes fadeInUp {
 from {
  opacity: 0;
  transform: translate(-50%, -40%);
 }

 to {
  opacity: 1;
  transform: translate(-50%, -50%);
 }
}


.social-icons {
 margin-left: 1rem;
 display: flex;
 width: 7%;
 justify-content: space-between;
}

.social-icons a {
 color: #d10d0e;
}

header {
 padding: 1rem;
}

.inside-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.header-contact {
 display: flex;
 width: 65%;
 gap: 35px;
}

.contact {
 display: flex;
 align-items: center;
 gap: 11px;
 font-size: 14px;
 font-family: roboto;
 font-weight: 500;
 /* letter-spacing: .1px; */
}

.contact i {
 font-size: 17px;
}

.inside-nav {
 display: flex;
 justify-content: space-between;
 /* padding: 2rem; */
 align-items: center;
}


.menu {
 display: flex;
 width: 50%;
 justify-content: space-between;
 font-family: "space grotesk";
 text-transform: capitalize;
 font-weight: 600;
 font-size: 18px;
 padding: 0 1rem;
 background: #fff;
 background: rgba(255, 255, 255, 0.15);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 border-radius: 16px;
 border: 1px solid rgba(255, 255, 255, 0.2);
 box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
 padding: 0.8rem 2rem;
 color: #fff;
 margin-top: 2rem;
}

.padding {
 padding-top: 2.5rem;
 padding-right: 2rem;
}

.hero-section {
 margin: 0 1rem 1rem 1rem;
 background-size: cover;
 border-radius: 1rem;
}

.swiper-slide {
 display: flex;
 justify-content: center;
 align-items: center;
}

.menu-link a {
 color: #fff;
 text-decoration: none;
 position: relative;
}

.drop-down {
 display: none;
 position: absolute;
 top: 100%;
 left: 0;
 background: #333;
 border-radius: 8px;
 padding: 0.5rem 0;
 z-index: 999;
 min-width: 200px;
 opacity: 0;
 pointer-events: none;
 transition: 0.9s ease-in;
}

.drop-down a {
 display: block;
 padding: 0.5rem 1rem;
 color: #fff;
 text-decoration: none;
 white-space: nowrap;
}

.drop-down a:hover {
 background: #444;
}

/* Show dropdown smoothly */
.product-link:hover .drop-down {
 transition: .5s ease-in;
 display: block;
 opacity: 1;
 pointer-events: auto;
}

/* Hamburger icon (top right) */
.hamburger {
 display: none;
 font-size: 3.5rem;
 color: #121212;
 position: absolute;
 top: 1.5rem;
 right: 3.5rem;
 z-index: 3000;
 cursor: pointer;
}

/* Sidebar opens from right */
.sidebar {
 font-family: 'Space Grotesk';
 height: 100%;
 width: 0;
 position: fixed;
 top: 0;
 right: 0;
 background: #454545;
 overflow-x: hidden;
 transition: 0.3s ease;
 padding-top: 60px;
 z-index: 9999;
 /* Below hamburger */
}

.sidebar a {
 display: block;
 padding: 1rem 2rem;
 color: #fff;
 text-decoration: none;
 font-size: 1.1rem;
}

.sidebar a:hover {
 background: #333;
}

.sidebar .dropdown {
 padding-left: 1rem;
}

.close-btn {
 position: absolute;
 top: 1rem;
 right: 2rem;
 font-size: 2.5rem;
 color: white;
 cursor: pointer;
}

@media (max-width: 900px) {
 .menu {
  display: none;
 }

 .hamburger {
  display: block;
 }
}

.logo-h {
 width: 30%;
}

.logo-h {
 width: 20%;
 background: #fff;
 border-radius: 0 0 20px 0;
 padding: 0 1rem;
}

.logo-h {
 width: 20%;
 background: #fff;
}

.logo-h img {
 width: 100%;
}

.btn {
 display: flex;
 text-decoration: none;
 text-transform: capitalize;
 font-size: 17px;
 font-family: 'Space Grotesk';
 align-items: center;
 font-weight: 700;
 color: #d10d0e;
}

/* .btn.grey {
 color: #505050;
} */

.btn p {
 padding: 0.8rem 2rem;
 border: 1px solid;
 border-radius: 50px;
}

.btn i {
 padding: 1rem;
 background: #d10d0e;
 border-radius: 50%;
 transform: rotateZ(-45deg);
 /* margin-left: -1.5rem; */
 display: flex;
 align-items: center;
 color: #fff;
 translate: -1.5rem;
 transition: all 0.3s ease;
}

/* .btn.grey i {
 background: #8b8b8b;
} */

.btn:hover i {
 transform: rotateZ(0deg);
 translate: -0.8rem;
}

.heading span {
 width: 12px;
 height: 14px;
 background: #d10d0e;
 display: block;
 border-radius: 50px 0 0 50px;
}

.heading p {
 text-transform: uppercase;
 font-size: 14px;
 font-weight: 600;
 letter-spacing: 0.2px;
 font-family: "space grotesk" !important;
 color: #d10d0e;
}

.heading.white p {
 color: #fff;
}

.heading h1 {
 font-size: 38px;
 line-height: 41px;
 text-transform: capitalize;
}

.heading h3 {
 font-size: 20px;
}

.heading.white h1 {
 color: #fff;
}

.heading {
 font-family: "space grotesk";
 display: flex;
 flex-direction: column;
 row-gap: 13px;
 margin-bottom: 1rem;
}

.h-top {
 display: flex;
 align-items: center;
 gap: 10px;
}

.about-us-section {
 padding: 1rem;
 margin: 2rem 0;
 padding-bottom: 0;
}

.inside-aus {
 display: flex;
 align-items: stretch;
 padding: 3rem;
 border-radius: 20px;
}

.iaus-middle {
 width: 33%;
}

.iaus-right {
 width: 33%;
 display: flex;
 flex-direction: column;
 justify-content: space-around;
}

.ir-card {
 padding: 1rem;
}

.irc-content h3 {
 font-family: 'Space Grotesk';
 font-size: 19px;
 margin-bottom: 9px;
}

.irc-content p {
 font-family: 'Roboto';
}

.iaus-left {
 width: 33%;
 display: flex;
 flex-direction: column;
 row-gap: 20px;
 padding-right: 2rem;
}

.iaus-middle img {
 width: 100%;
 background: #f6f6f6;
 border-radius: 15px;
}

.ilp {
 font-family: roboto;
 font-size: 16px;
 line-height: 26px;
}

.irc-icon img {
 width: 3.5rem;
 position: relative;
 z-index: 100;
 filter: invert(11%) sepia(62%) saturate(7456%) hue-rotate(351deg) brightness(95%) contrast(119%);
}

.irc-icon {
 padding: 1rem;
 /* background: #f6f6f6; */
 border-radius: 50%;
 position: relative;
}

.irc-icon::before {
 position: absolute;
 content: '';
 width: 40%;
 height: 40%;
 background-color: #d10d0e;
 top: 35%;
 left: 35%;
 border-radius: 50%;
 opacity: 0;
 z-index: 1;
 transition: all 0.3s ease;
}


.ir-card {
 padding: 1rem;
 display: flex;
 align-items: center;
 gap: 25px;
}

.ir-card:hover .irc-icon::before {
 width: 100%;
 height: 100%;
 top: 0;
 left: 0;
 opacity: 1;
}

.ir-card:hover .irc-icon img {
 filter: invert(1);
}

/* points section  */
.points-section {
 padding: 5rem 4rem;
 /* padding-top: 0; */
 background: #f6f6f6;
 border-radius: 0 0 20px 20px;
}

.inside-pts-section {
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.pt-card {
 width: 25%;
 padding: 1rem;
}

.icon img {
 width: 3rem;
}

.ptcu {
 display: flex;
 align-items: center;
 gap: 20px;
 font-family: 'space grotesk';
 margin-bottom: 0.5rem;
}

.ptcu h2 {
 font-size: 20px;
}

p.ptcl {
 font-family: roboto;
 margin-top: 2rem;
 padding-top: 2rem;
 border-top: 1px solid;
}

.icon {
 padding: 0.5rem;
 /* background: rebeccapurple; */
 border-radius: 50%;
 display: flex;
 /* border: 1px solid #000; */
}

/* product section */
.product-section {
 height: 180vh;
 padding: 1rem;
}

.product-section.sticky {
 position: absolute;
 /* top: 0; */

}

.inside-product-section {
 background: #121212;
 display: flex;
 justify-content: space-between;
 height: 100%;
 padding: 3rem;
 border-radius: 20px;
}

.ips-left {
 width: 45%;
}

.ips-left img {
 width: 100%;
}

.ips-right {
 width: 50%;
 /* padding: 2rem; */
 height: 100%;
 /* overflow-y: scroll; */
}

.product-cards {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 /* flex-wrap: wrap; */
 gap: 20px;
 justify-content: center;
}

.pc {
 width: 100%;
 position: relative;
}

.pc img {
 width: 100%;
 border-radius: 5px;
}

.card-detail {
 position: absolute;
 bottom: -56%;
 padding: 1rem;
 background: #fff;
 width: 90%;
 left: 5%;
 border-radius: 6px;
 visibility: none;
 opacity: 0;
 transition: all 0.3s ease;
}

.pc:hover .card-detail {
 bottom: 5%;
 visibility: block;
 opacity: 1;
}

.card-detail h3 {
 font-family: 'space grotesk';
 font-weight: 700;
 margin-bottom: 0.5rem;
}

.card-detail p {
 font-family: roboto;
 line-height: 22px;
 font-size: 15px;
 margin-bottom: 10px;
}

.card-detail a {
 font-family: roboto;
 text-decoration: none;
 font-weight: 600;
 color: #d10d0e;
 background: transparent;
 border: 1px solid #d10d0e;
 padding: 2px 10px;
 border-radius: 15px;
 /* border-radius: 10px; */
}

.ips-left img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 border-radius: 10px;
}

.ips-left {
 width: 45%;
 height: 100%;
}


/* why choose us */
.why-choose-us {
 height: 105vh;
 padding: 4rem;
 background: #f6f6f6;
 margin-top: 3rem;
}

.tab-num {
 display: flex;
 gap: 20px;
 padding: 1rem;
}

.content-card {
 opacity: 0;
}

.wcu-img {
 opacity: 0;
}

.wcu-img.active {
 opacity: 1;
}

.content-card.active {
 opacity: 1;
}

.wcu-content {
 display: flex;
 justify-content: center;
 align-items: center;
}

.wcuc-left {
 width: 40%;
}

.wcuc-right {
 width: 40%;
 position: relative;
}

.content-card {
 opacity: 0;
 position: absolute;
 font-family: 'Roboto';
 line-height: 30px;
 padding: 1rem;
 transition: all 0.3s ease;
}

.wcu-img {
 opacity: 0;
 width: 85%;
 position: absolute;
 top: 0;
 transition: all 0.3s ease;
}

.wcuc-left {
 width: 50%;
 display: flex;
 flex-direction: column;
 row-gap: 30px;
 position: relative;
}

.wcu-content {
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
}

.wcu-img img {
 width: 100%;
 /* position: absolute; */
 border-radius: 20px;
}

.num {
 padding: 1rem;
 /* background: red; */
 border-radius: 50%;
 height: 3rem;
 width: 3rem;
 display: flex;
 justify-content: center;
 align-items: center;
 text-align: center;
 font-size: 20px;
 font-family: "space grotesk";
 cursor: pointer;
}

.num.active {
 background-color: #d10d0e;
 color: #fff;
}


/* about-company */
.about-company-section {
 padding: 4rem;
 margin: 4rem 2rem;
 display: flex;
 justify-content: flex-end;
 background-image: url(/assets/images/section-bg.png);
 border-radius: 20px;
 background-size: cover;
}

.inside-acs {
 width: 50%;
 display: flex;
 flex-direction: column;
 row-gap: 23px;
 background: brown;
 padding: 4rem;
 border-radius: 21px;
}

.inside-acs p {
 font-family: roboto;
 line-height: 22px;
}

.inside-acs ul {
 font-family: roboto;
 padding: 0 1rem;
}

/* testimonial */
.testimonial-section {
 padding: 4rem;
}

.inside-testi-section {
 display: flex;
 flex-direction: column;
 row-gap: 30px;
}

.inside-testi-section .heading {
 align-items: center;
}

.testi-slide {
 padding: 2.5rem 5rem;
 background: #121212;
 border-radius: 25px;
 display: flex;
 flex-direction: column;
 row-gap: 30px;
}

.stars {
 font-size: 20px;
 color: #ffa72a;
}

.user {
 display: flex;
 padding-top: 3rem;
 border-top: 1px solid #fff;
 margin-top: 1rem;
}

.user-info {
 display: flex;
}

.u-img {
 width: 20%;
 margin-right: 20px;
}

.testi-slide p {
 font-family: roboto;
 line-height: 30px;
 color: #fff;
}

.u-img img {
 width: 100%;
 border-radius: 50%;
}

.u-name h1 {
 font-size: 21px;
 text-transform: capitalize;
 font-family: "space grotesk";
 color: #fff;
}

.u-name p {
 text-transform: capitalize;
 font-family: roboto;
}

.quotes {
 font-size: 70px;
 color: #fff;
}


/* faq section */


.faq-section {
 margin: 2rem 0;
 padding: 2rem;
}

.inside-faq-section {
 display: flex;
 justify-content: space-between;
 padding: 3rem;
 background: #121212;
 border-radius: 20px;
 align-items: center;
}

.faq-l {
 width: 35%;
}

.faq-l p {
 color: #c9c9c9;
 font-family: roboto;
 line-height: 24px;
}

.faq-r {
 width: 60%;
}

.acc-container {
 margin-top: 3rem;
}

.acc-item {
 border-bottom: 1px solid #fff;
 padding: 1rem 0;
}

.acc-ans {
 /* opacity: 0; */
 margin-top: 0.5rem;
 font-family: 'Roboto';
 line-height: 23px;
 font-size: 15px;
 height: 0;
 overflow: hidden;
 transition: all 0.3s ease;
}

.acc-ans.active {
 height: 4rem;
 overflow: auto;
 color: #fff;
}

.acc-ques {
 font-family: 'Space Grotesk';
 font-weight: 500;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: space-between;
 color: #fff;
}

/* footer */
footer {
 padding: 2rem;
 background: #121212;
}

.upper-footer {
 display: flex;
 justify-content: space-between;
 padding: 2rem;
}

.f-about {
 width: 35%;
 font-family: 'Space Grotesk';
 color: #fff;
 line-height: 30px;
 display: flex;
 flex-direction: column;
 /* justify-content: center; */
 align-items: flex-start;
}

.f-about img {
 background-color: #fff;
 /* border-radius: 8px; */
 width: 15rem;
 margin-bottom: 1rem;
}

.footer-links h3 {
 font-family: 'Space Grotesk';
 color: #fff;
}

.footer-links {
 display: flex;
 flex-direction: column;
 row-gap: 19px;
}

.footer-links a {
 font-family: roboto;
 text-transform: capitalize;
 text-decoration: none;
 font-weight: 500;
 color: #cbcaca;
 transition: color 0.3s ease;
}

.footer-links a:hover {
 color: #fff;
}

.f-cinfo {
 display: flex;
 align-items: center;
 color: #fff;
}

.f-cinfo p {
 font-family: roboto;
 font-size: 15px;
}

.f-cinfo i {
 color: #000;
 margin-right: 15px;
 padding: 1rem;
 background: #e5e5e5;
 border-radius: 50%;
 width: 40px;
 height: 40px;
 display: flex;
 justify-content: center;
 align-items: center;
}

.footer-links.two {
 width: 15%;
}

.footer-links.c {
 width: 25%;
}

@media (max-width: 1326px) {
 .wcu-img img {
  width: 90%;
 }
}

@media (max-width: 1024px) {
 .contact {
  gap: 8px;
 }

 .padding {
  padding-top: 2rem;
 }

 .header-contact {
  width: 85%;
  gap: 25px;
 }

 .padding {
  padding-right: 1rem;
 }

 .inside-aus {
  flex-direction: column;
  padding: 2rem;
 }

 .iaus-left {
  width: 100%;
  margin-bottom: 2rem;
 }

 .iaus-middle {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
 }

 .iaus-middle img {
  width: 90%;
 }

 .iaus-right {
  width: 100%;
  margin-top: 2rem;
 }

 .wcuc-left {
  row-gap: 20px;
 }

 .wcu-img {
  width: 100%;
 }

 .wcu-img img {
  width: 100%;
 }

 .points-section {
  padding: 5rem 2rem;
 }

 .ptcu {
  gap: 16px;
 }

 .testi-slide {
  padding: 2.5rem 2rem;
  row-gap: 15px;
 }

 .user {
  padding-top: 2.5rem;
 }

 .heading h1 {
  font-size: 35px;
 }

 .f-about {
  width: 30%;
 }

 .footer-links.two {
  width: 16%;
 }
}

@media (max-width: 900px) {

 .header-contact {
  display: none;
  gap: 20px;
 }

 .padding {
  margin-right: 5rem;
 }

 .btn p {
  padding: 0.7rem 2rem;
 }

 .btn i {
  padding: 0.9rem;
 }

 .inside-product-section {
  padding: 2rem;
 }

 .inside-pts-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
 }

 .why-choose-us {
  padding: 3rem 2rem;
 }

 .pt-card {
  width: 100%;
  padding: 1rem;
 }

 .heading h1 {
  font-size: 30px;
 }

 .stars {
  font-size: 17px;
 }

 .user {
  padding-top: 1.5rem;
  margin-top: 0;
 }

 p.ptcl {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
 }

 .ics-right h2 {
  font-size: 40px;
 }

 .inside-cs {
  flex-direction: column;
 }

 .inside-product-section {
  flex-direction: column;
  gap: 2rem;
 }

 .product-section {
  height: 355vh;
 }

 .ips-left {
  width: 70%;
 }

 .ips-right {
  width: 100%;
 }

 .points-section {
  padding: 5rem 1rem;
 }

 .upper-footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
 }

 .f-about {
  width: 70%;
 }

 .footer-links.two {
  width: 60%;
 }

 .footer-links.c {
  width: 60%;
 }
}

@media (max-width: 768px) {
 .social-icons {
  width: 10%;
 }

 .logo-h {
  width: 30%;
 }

 .why-choose-us {
  height: 220vh;
 }

 .wcu-content {
  flex-direction: column;
 }

 .wcuc-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
 }

 .wcuc-right {
  top: 18rem;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
 }

 .points-section {
  padding: 10rem 1rem;
 }

 .inside-pts-section {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
 }

 .ptcu {
  gap: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
 }

 p.ptcl {
  text-align: center;
 }

}

@media (max-width: 550px) {
 .btn p {
  padding: 0.5rem 1.2rem;
 }

 .btn i {
  padding: 0.7rem;
 }

 .padding {
  margin-right: 4rem;
 }

 .hamburger {
  top: 1.4rem;
  right: 2.8rem;
 }

 .social-icons {
  width: 15%;
 }

 .logo-h {
  width: 40%;
 }

 .ips-left {
  width: 100%;
  height: 60%;
 }

 .ips-left img {
  width: 100%;
 }

 .ir-card {
  padding: 0;
  gap: 15px;
 }

 .inside-aus {
  flex-direction: column;
  padding: 1rem;
 }

 .product-section {
  height: 580vh;
 }

 .product-cards {
  grid-template-columns: repeat(1, 1fr);
 }

 .heading.white h1 {
  font-size: 30px;
 }

 .points-section {
  padding: 0 1rem;
 }

 .stars {
  font-size: 14px;
 }

 .heading {
  row-gap: 5px;
 }

 .user {
  flex-direction: column;
 }

 .user-info {
  display: flex;
  flex-direction: column;
 }

 .u-name h1 {
  font-size: 18px;
 }

 .u-name p {
  font-size: 14px;
 }

 .quotes {
  font-size: 40px;
 }

 .upper-footer {
  grid-template-columns: repeat(1, 1fr);
  padding: 0;
  gap: 2rem;
 }

 .f-about {
  width: 100%;
 }
}

@media (max-width: 425px) {

 #enquiry-btn {
  display: none;
 }

 .social-icons {
  width: 20%;
 }

 .padding {
  margin-right: 4rem;
 }

 .tab-num {
  gap: 30px;
 }

 .iaus-right {
  gap: 2rem;
 }

 .ips-left {
  height: 20%;
 }

 .product-section {
  height: 435vh;
 }

 p {
  font-size: 15px;
 }

 .faq-section {
  padding: 1rem;
 }

 .why-choose-us {
  height: 205vh;
 }

 .hamburger {
  top: -2.3rem;
  font-size: 3rem;
  right: 2rem;
 }

 .heading h1 {
  font-size: 26px;
 }

 .footer-links.c {
  width: 100%;
 }
}

@media (max-width: 375px) {
 .social-icons {
  width: 25%;
 }

 .logo-h {
  width: 50%;
 }

 /* .product-section {
  height: 385vh;
 } */

 .inside-aus {
  padding: 0;
 }

 .pt-card {
  width: 100%;
  padding: 1rem 0;
 }

 .heading h1 {
  font-size: 21px;
 }

 .irc-icon {
  padding: .5rem;
 }

 .irc-icon img {
  width: 3rem;
 }

 .ir-card {
  gap: 20px;
 }

 .irs-left {
  row-gap: 15px;
  padding: 2.5rem 1rem;
 }

 .percent-container {
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
 }

 .percent-card {
  width: 100%;
 }

 .number {
  height: 4rem;
  width: 4rem;
 }

 .hamburger {
  top: -2.1rem;
  font-size: 2.8rem;
 }

 .close-btn {
  font-size: 2rem;
 }

 .sidebar a {
  font-size: 1rem;
 }

 .inside-product-section {
  padding: 2rem 1rem;
 }
}

@media (max-width: 310px) {
 .heading h1 {
  font-size: 20px;
 }

 .ilp {
  font-size: 15px;
 }

 /* .product-section {
  height: 355vh;
 } */

 .inside-aus {
  padding: 0;
 }

 .inside-product-section {
  padding: 1rem;
 }

 .hamburger {
  top: 1rem;
  right: 2rem;
  font-size: 2.6rem;
 }

 .hamburger {
  top: -2rem;
  font-size: 2.6rem;
  right: 1.5rem;
 }

 p {
  font-size: 15px;
 }

 .irc-content h3 {
  font-size: 17px;
 }

 .heading.white h1 {
  font-size: 25px;
 }

 .why-choose-us {
  margin-top: 0;
 }

 .pctu {
  gap: 10px;
 }

 .ptcu h2 {
  font-size: 18px;
 }

 .why-choose-us {
  padding: 3rem 1.3rem;
 }

 .ics-left {
  padding: 1rem 0;
 }
}

@media (max-width: 425px) and (min-width: 400px) {
 .product-section {
  height: 435vh;
 }
}

@media (max-width: 399px) {
 .product-section {
  height: 420vh;
 }
}

@media (max-width: 320px) {
 .product-section {
  height: 360vh;
 }
}