.container {
  width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  background: transparent;
  padding: 12px 20px;
  z-index: 99;
}

header::after {
  content: "";
  position: absolute;
  top: 100%;      
  left: 0;
  right: 0;
  height: 0;       
  background: var(--header-gradient);
  transition: height 0.2s ease;
  pointer-events: none;
}

    
header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header.scrolled::after {
  height: 6px;      
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;  
  border: none;
  cursor: pointer;
  z-index: 100;
  padding: 0; 
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff; 
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.expand span{
  background: #fff;  
}
.menu-toggle.expand span:nth-child(1) {
  transform: rotate(45deg) translate(20%,280%);
}

.menu-toggle.expand span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.expand span:nth-child(3) {
  transform: rotate(-45deg) translate(20%,-250%);
}

.sticky {
  position: sticky;
  top: 0;
  background: rgb(1, 1, 1, 0.6);
  transition: all 0.5s ease-in-out;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 10px;
}

.navbar {
    background: var(--primary-blue);
  /*background: rgba(1, 1, 1, 0.5);*/
  color: black;
  font-family: Arial, sans-serif;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
}

.navbar {
  transition: transform 0.3s ease-in-out;
}

.menu > li {
  position: relative;
  display: inline-block;
}

.menu > li > a {
  color: #fff;
  padding: 14px 20px;
  text-decoration: none;
  display: block;
  cursor: var(--pointer);
}



.menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  overflow: hidden;
  color: #fff;
}

.menu > li > a .nav-icon {
  position: absolute;
  left: 0px;              
  opacity: 0;
  transform: translateY(12px);
  font-size: 1rem;
  transition: all 0.35s ease;
  pointer-events: none;
  width: 14px;
  height: 14px;
  stroke-width: 1.8;  
  margin-right: 6px;
}

.menu > li > a span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.menu > li > a:hover .nav-icon {
  opacity: 1;
  transform: translateY(0);
}

.menu > li > a:hover span {
  color: #ffcc00;
}


.submenu {
  display: none;
  position: absolute;
  background: rgba(1, 1, 1, 0.5);
  margin: 0;
  backdrop-filter: blur(10px);
  min-width: 200px;
  border-radius: 0 0 8px 8px;
  top: 100%;
  left: 0;
  z-index: 99;
}

.submenu li {
  position: relative;
}

.submenu a {
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  cursor: var(--pointer);
}

.submenu a:hover {
  text-decoration: none;
}

.menu li:hover > .submenu {
  display: block;
}

.submenu .submenu {
  top: 0;
  left: 100%;
}

.logo {
  width: 160px;
  height: 80px;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-banner {
  width: 100%;
  height: 87vh;
  position: relative;
  overflow: hidden;
 
}

.banner-swiper,
.banner-slide {
  width: 100%;
  height: 100%;
}

.banner-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.banner-slide > img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}




.banner-slide .banner-content {
  z-index: 3;
  max-width: 80%;
  text-align: left;
  position: absolute;
  bottom: 15%;
  left: 10%;
}

.banner-slide h2 {
  font-family: "Gothic A1", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.banner-slide p {
  font-family: "Century Gothic", sans-serif;
  font-size: 40px;
  max-width: 600px;
  margin-top: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 300;
}



.spinning-text {
  position: absolute;
  z-index: 10;
  bottom: 10px;
  right: 20px;
  width: 180px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo_spinning {
  position: absolute;
  width: 100%;
  height: 100%;
  scale: 0.5;
  object-fit: contain;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: #fff !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff !important;
  transition: transform 0.2s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.2);
}


.about-section {
  position: relative;
  z-index: 0;
}

.about-header img {
  position: relative;
  width: 100%;
  height: 100%;
  transform: scaleX(-1.1);
  z-index: 6;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,0.4));
}

.about-content {
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 12;
}

.about-content h2 {
  font-family: "Faustina", serif;
  font-size: var(--fs-32);
  line-height: 40px;
}

.about-content p {
  text-align: justify;
}

.about-animate {
  position: absolute;
  top: 30px;
  left: 120px;
  width: 280px;
  aspect-ratio: 1;
  margin-left: 60px;
  background-color: var(--primary-green);
  border-radius: 999px;
}

.product-title-home{
  font-family: "Faustina", serif;
  font-size: var(--fs-32);
  color: var(--primary-blue);
  text-align: center;
  margin: 2rem 0;
}

.product-display {
  display: flex;
  align-items: center;
  position: relative;
  height: 400px;
}


.product-banner {
  background-color: var(--primary-blue);
  color: white;
  padding: 1rem;
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Hide overflowing video */
  background-image: none; /* Remove image since using video now */
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;cccccccccccccccccc
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none; /* Allow clicking through video */
}

/* Content that sits on top of the video */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  color: white;
}


#menu-trigger {
  z-index: 9;
  background: var(--primary-blue);
  padding: 10px 20px;
  outline: 1px solid white;
  color: white;
  font-size: 14px;
  border-radius: 999px;
  cursor: var(--pointer);
}

.banner-title {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  color: white;
  font-weight: 500;
}


.product-slider {
  position: absolute; 
  /*right: 40px;*/
  padding:0 5rem;
  margin: auto;
  width: 100%;              
  /*max-width: 1200px;        */
  height: auto;
}

.product-swiper {
  width: 100%;
  height: auto;
}


.card-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  height: 100%;
  padding: 20px;
  white-space: nowrap;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}


.product-card {
    min-width: 180px;

height: auto;
background-color: #fff;
padding: 4px; 
text-align: center;
flex-shrink: 0; 
font-size: 16px; 

border-radius: 12px;

box-shadow: 0px 4px 10px rgba(0,0,0,0.1); 
    
}

.product-card > div {
  display: flex;
  border-radius: 12px;
  padding:15px;

  background-color: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-card img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


.product-card .title {
  margin-top: 15px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1rem;
}
.product_title_image{
   width: 80px !important;
    height: 60px !important;
    margin-bottom: 15px;
}

.vivere-section {
  padding: 4rem 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100vw;
}

.vivere-section > .about-header {
  width: 40%;
}

.vivere-section > .about-content {
  width: 60%;
}


.product-card a {
  margin-top: 10px;
  font-weight: 500;
  font-size: 14px;
  color: white;
  background-color: var(--primary-blue);
  padding: 10px 20px;
  border-radius: 12px;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.testimonial-section {
  padding: 4rem 0;
  text-align: center;
  position: relative;
  height: 170vh;
}

.testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background: #2a7b9b;
  background: radial-gradient(
    circle,
    rgba(42, 123, 155, 1) 0%,
    rgba(0, 90, 156, 1) 70%,
    rgba(0, 70, 135, 1) 99%
  );
  z-index: 0;
  overflow: hidden;
  color: white;
  z-index: 2;
}

.testimonial-section h2 {
  font-family: "Faustina", serif;
  font-size: 4.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  position: absolute;
  color: #2a7b9b;
  top: -50px;
  left: 10%;
  font-weight: 700;
}

.testimonial-bg .testimonial-title {
  color: white;
}

.testimonial-swiper {
  z-index: 9 !important;
}

.testimonial-card-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  height: 400px;
}

.testimonial-cards {
  position: absolute;
  width: 350px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.testimonial-cards li {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 350px;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: white;
}

.testimonial-actions {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-actions button {
  padding: 10px 20px;
  background: #2a7b9b;
  color: white;
  border: none;
  border-radius: 5px;
  margin: 0 5px;
  cursor: pointer;
}

.testimonial-swiper .swiper-slide {
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.6;
}

.testimonial-swiper .swiper-slide-active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
}

.testimonial-card {
  position: relative;
  background-color: #e2e2e2;
  padding: 30px 20px 20px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 100%;
  min-height: 400px;
  scale: 0.95;
  font-style: italic;
}

.testimonial-quote {
  position: relative;
  width: 80px;
  aspect-ratio: 1;
}

.client-name {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 10px;
  position: relative;
}

.client-name:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-blue);
}

.star-rating {
  width: fit-content;
  display: flex;
}

.product-card img {
  max-width: 80%;
  height: 150px;
  border-radius: 8px;
}

.star img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

footer {
  background: linear-gradient(135deg, #003366, #001a33);
  color: white;
  padding: 3rem 1rem 0;
  font-family: Arial, sans-serif;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2rem;
}
.footer-column-width{
    min-width: 200px;
    max-width: 250px;
    
}

.footer-logo img {
  width: 160px;
  margin-bottom: 1rem;
}

.footer-logo p {
  max-width: 280px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s, transform 0.2s;
}

.footer-social a:hover {
  color: white;
  transform: scale(1.2);
}

.footer-nav h4,
.footer-contact h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: white;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin-bottom: 0.6rem;
}

.footer-nav ul li a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-nav ul li a:hover {
  color: #74c15c; 
}

.footer-contact p {
  font-size: 0.95rem;
  margin: 0.4rem 0;
  display: flex;
 align-items: flex-start;
  gap: 8px;
}

.footer-contact a {
  color: white;
  text-decoration: none;
}
.footer-contact i{
    margin-top: 5px;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  background: #002244;
  font-size: 0.85rem;
  margin-top: 1rem;
}


.footer-contact p{
    line-height: 1.5;
}

.testimonial-gallery {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.cards {
  position: absolute;
  width: 20rem;
  height: 18rem;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cards li {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 20rem;
  height: 18rem;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.8rem;
}

.cards li img {
  max-width: 90%;
}

.actions {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}

button {
  display: inline-block;
  outline: none;
  padding: 8px 14px;
  background: var(--dark);
  border: solid 2px var(--light);
  color: var(--light);
  text-decoration: none;
  border-radius: 99px;
  padding: 12px 25px;
  font-weight: 600;
  cursor: pointer;
  line-height: 18px;
  margin: 1rem;
}

a {
  color: #88ce02;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.leadership-messages {
  padding: 4rem var(--padding-horizontal);
  background: #f8f9fa;
}

.messages-container {
  max-width: 1100px;
  margin: auto;
}

.messages-title {
  font-family: "Faustina", serif;
  font-size:var(--fs-32);
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 3rem;
}



.message-card {
  display: flex;
  gap: 2rem;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border-left: 6px solid transparent;
  border-image: var(--gradient-red-blue) 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}



.message-image img {
  width: 160px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.message-content h2 {
  font-family: "Faustina", serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.leader-post-title{
    padding: 18px;
    text-align: center;
}
.message-content h2 span {
  color: var(--primary-red);
  font-weight: bold;
}

.message-content p {
  font-family: "Fira Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
}

.stats-section {
  padding: 80px var(--padding-horizontal);
  background: #f8f9fa;
  text-align: center;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0; /* or lower than content */
}


.stats-section {
  text-align: center;
  padding: 4rem 2rem;
  background: #f9fafc;
}

.stats-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #003366;
  font-family: "Poppins", sans-serif;
}

.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.stat-box {
  flex: 1 1 250px;
  min-height: 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #ff6a00, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Fira Sans", sans-serif;
  color: #333;
}


@media (max-width: 900px) {
  .message-card {
    flex-direction: column;
    text-align: center;
  }

  .message-card:nth-child(odd) {
    flex-direction: column;
  }

  .message-image img {
    max-height: 250px;
    object-fit: cover;
  }
}


@media (max-width: 992px) {

.last-banner-para{
  line-height: 1 ;
  font-size: 2.5rem !important;
}

  .navbar {
    position: fixed;
    top: 0;
    right: -260px; 
    width: 260px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    padding-top: 80px;
    transition: right 0.3s ease;
    border-radius: 0;
  }

  .navbar.active {
    right: 0; 
  }

  .menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .menu > li {
    display: block;
  }

  .menu > li > a {
    color: #fff;
    padding: 12px 20px;
    display: block;
  }

  .submenu {
    position: static;
    background: rgba(255, 255, 255, 0.1);
    display: none;
  }

  .menu li:hover > .submenu {
    display: block;
  }
  .banner-slide .banner-content {
    bottom: 25%;
  }
  .vivere-section {
    flex-direction: column;
  }

  .vivere-section > div:nth-child(1) {
    width: 100%;
  }

  .vivere-section > div:nth-child(2) {
    width: 100%;
  }

  .about-animate { 
    top: 5%;
    left: 40%;
  }
  
}

@media screen and (max-width: 600px) {
 
  .home-banner {
    height: 50vh;    
  }
 
  .vivere-section {
    padding: 40px 32px;
  }

  .product-slider {
    left: 0;
    /*right: 0;*/
  }
  
  .banner-slide h2 {
    font-size: 25px;
  }
  
  .banner-slide p {
    font-size: 17px;
  }

  .about-animate { 
    top: -5%;
    left: 10%;
  }
  
  .about-content p {
      font-size: 14px;
  }

  .leadership-messages {
    padding: 40px 32px;
  }

  .spinning-text {
    width: 70px;
    bottom: -10%;
    right: 5%;
  }
.swiper-button-prev,.swiper-button-next{
    font-size: 15px;
}
  .spinning-text .rotation {
    scale: 0.6 !important;
  }
  
  .product-banner {
    width: 100%;
  }
  .container {
    width: 100%;
  }

  .stats-section {
    padding: 40px 32px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}


.vivere-strengths-section {
  background: #f5f5f5;
  padding: 40px 32px;
  text-align: center;
  position: relative;
   z-index: 1;
  overflow: hidden; /* optional: to prevent canvas overflow */
}



.background-strengths-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* Behind content */
  pointer-events: none; /* Allows clicks through the video */
  opacity: 1; /* Adjust visibility for readability */
}



.vivere-section-title {
  color: #fff;
  font-family: "Faustina", serif;
  font-size: var(--fs-32);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.stats-section-title {
  color:var(--primary-blue);
  font-family: "Faustina", serif;
  font-size: var(--fs-32);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.stats-section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background-color:var(--primary-blue);
  margin: 10px auto 0;
}

.strengths-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
}

.strength-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  max-width: 350px;
  padding: 20px;
  border-top: 4px solid var(--primary-blue);
  text-align: left;
}

.strength-card {
  transform-origin: center;
  perspective: 800px;
}

.icon-box {
  background-color: var(--primary-blue);
  color: white;
  padding: 12px;
  border-radius: 8px;
  font-size: 1.5rem;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 50px;
}

.strength-content h4 {
  font-family: "Fira Sans", sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.strength-content p {
  font-size: 0.95rem;
  color: #333;
  font-family: "Fira Sans", sans-serif;
}

.banner-slide{
 overflow: hidden;   
}
@media (min-width:1024px){
    video{
    width: 100% !important;
}

}
@media (max-width:1024px){
     .vivere-section{
        padding: 4rem 2rem;
    }
    
     video{
    height: 100% !important;
}
}

@media (max-width:768px){
    .product-slider{
        padding:0rem 0rem 0rem 1rem;
    }
    .banner-content img{
        width: 100px !important;
    }
   
}
