* {
  font-family: 'Satoshi', sans-serif;
  padding: 0;
  margin: 0;

}

/* ==========================================hEADER ================================================ */

.landing-page-olympus-header {
  background-color: #fff;
  padding: 30px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.landing-page-olympus-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.landing-page-olympus-logo img {
  height: 60px;
  max-width: 100%;
}

.landing-page-olympus-call-btn {
  position: relative;
  background-color: #000;
  text-decoration: none;
  color: #fff;
  padding: 0px 40px;
  border-radius: 40px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  overflow: hidden;
  height: 60px;
  gap: 10px;
  transition: background-color 0.3s ease;
}

/* Default visible content: icon + static number */
.landing-page-olympus-content-default {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
  transition: opacity 0.3s ease;
}

/* Icon spacing */
.landing-page-olympus-icon {
  display: inline-flex;
}

/* Animated number: hidden below initially */
.landing-page-olympus-number-animated {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  white-space: nowrap;
  z-index: 2;
}

/* Hover state changes */
.landing-page-olympus-call-btn:hover {
  background-color: #bd081c;
}

/* Hide default content on hover */
.landing-page-olympus-call-btn:hover .landing-page-olympus-content-default {
  opacity: 0;
}

/* Show animated number on hover */
.landing-page-olympus-call-btn:hover .landing-page-olympus-number-animated {
  transform: translate(-50%, 0%);
  opacity: 1;
}

.landing-page-olympus-number-static, .hero-banner-oly-landin-number-static, .landing-page-olympus-number-animated, .hero-banner-oly-landin-number-animated{
  display: flex;
  gap: 10px;
}

.landing-page-olympus-icon {
  margin-right: 10px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  /* .landing-page-olympus-container {
    flex-direction: column;
    gap: 10px;
  } */

  .landing-page-olympus-logo img {
    height: 50px;
  }

  .landing-page-olympus-contact .landing-page-olympus-call-btn {
    /* width: 100%; */
    padding: 0px 20px;
    justify-content: center;
  }
}

@media(max-width: 480px) {
  .landing-page-olympus-logo img {
    height: 40px;
  }

   .landing-page-olympus-call-btn {
    height: 38px;
  } 
}

/* =================================================================== */
.hero-banner-oly-landin {
  width: 100%;
  background: #bd081c;
  overflow: hidden;
}

/* Desktop View */
.hero-banner-oly-landin-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-banner-oly-landin-left {
  color: white;
  flex: 1;
  padding-left: 8rem;
}

.hero-banner-oly-landin-left h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-banner-oly-landin-left p {
  font-size: 22px;
  margin-bottom: 2rem;
}

.hero-banner-oly-landin-call-btn.banner {
  position: relative;
  align-items: center;
  background-color: black;
  color: white;
  padding: 0px 40px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  width: fit-content;
  height: 60px;
  display: inline-flex;
  overflow: hidden;
  gap: 10px;
  transition: background-color 0.3s ease;
}

.hero-banner-oly-landin-call-btn.banner:hover {
  background-color: #fff;
  color: #000;
}

.hero-banner-oly-landin-content-default {
  z-index: 1;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}

.hero-banner-oly-landin-number-animated {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  white-space: nowrap;
  z-index: 2;
}

.hero-banner-oly-landin-call-btn.banner:hover .hero-banner-oly-landin-content-default {
  opacity: 0;
}

.hero-banner-oly-landin-call-btn.banner:hover .hero-banner-oly-landin-number-animated {
  transform: translate(-50%, 0%);
  opacity: 1;
}

.hero-banner-oly-landin-right {
  flex: 1;
}

.hero-banner-oly-landin-img {
  width: 100%;
  height: auto;
  border-bottom-left-radius: 120px;
}

/* Mobile View */
.hero-banner-oly-landin-mobile {
  display: none;
  padding: 2rem 1.5rem;
}

.hero-banner-oly-landin-mobile-wrapper {
  background: #bd081c;
  border-radius: 30px;
  text-align: center;
  padding: 2rem 1rem;
  color: #fff;
}

.hero-banner-oly-landin-mobile-wrapper h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-banner-oly-landin-mobile-wrapper p {
  font-size: 16px;
  margin-bottom: 1.5rem;
}

.hero-banner-oly-landin-mobile-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-top: 2rem;
}

/* WhatsApp button */
.landing-page-olympus-whatsapp-btn {
  position: fixed;
  bottom: 40px;
  right: 20px;
  background-color: #25d366;
  color: white;
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: background-color 0.3s ease;
}

.landing-page-olympus-whatsapp-btn:hover {
  background-color: #1ebe5d;
}

.landing-page-olympus-whatsapp-btn img {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-banner-oly-landin-desktop {
    display: none;
  }

  .hero-banner-oly-landin-mobile {
    display: block;
  }

  .landing-page-olympus-whatsapp-btn {
    bottom: 15px;
    right: 15px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

@media(max-width: 567px){
.hero-banner-oly-landin-call-btn.banner{
height: 38px;
}
.hero-banner-oly-landin-call-btn.banner, .landing-page-olympus-call-btn{
padding: 0 30px;
}
}





/* ==============================Second Section Below Banner ========================================= */

.second-landing-olympus-benefits {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
}

.second-landing-olympus-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.second-landing-olympus-title {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #000;
}

.second-landing-olympus-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.second-landing-olympus-item {
  flex: 1 1 200px;
  max-width: 250px;
  margin: 0 auto;
}

.second-landing-olympus-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.second-landing-olympus-item h3 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .second-landing-olympus-item {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .second-landing-olympus-title,
  .second-landing-olympus-title span {
    font-size: 28px !important;
    margin-bottom: 1rem;
  }
  .second-landing-olympus-item img{
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
  }
  .second-landing-olympus-item h3{
    font-size: 16px;
  }
  .second-landing-olympus-grid{
    gap: 10px;
  }
  .third-landing-pg-description{
    font-size: 16px !important;
  }
}

@media(max-width: 567px){
.second-landing-olympus-item{
flex: 1 1 150px;
   }
.second-landing-olympus-title br{
display: none;
}
}

/*===================================================== Testimonials ============================================================  */


.testio-land-oly-section {
  padding: 4rem 1rem;
  background: #fff;
}

.testio-land-oly-container {
  display: flex;
  /* gap: 20px; */
  align-items: center;
  flex-wrap: wrap;
  max-width: 1400px; /* limit width */
  margin: 0 auto; /* center */
}

.testio-land-oly-rating {
  flex: 1 1 100px;
  text-align: center;
}

.testio-land-oly-stars img {
  width: 30px;
  margin-top: 10px;
}

.testio-land-oly-stars.add{
  display: flex;
  gap: 5px;
}
.testio-land-oly-stars.add img{
  width: 17px;
  margin-bottom: 10px;
}
.testio-land-oly-rating{
  width: 100px;
}
.testio-land-small-str{
  display: grid;
}
.testio-land-oly-rating a{
  color: #000;
  font-weight: 600;
}

.testio-land-oly-carousel-wrapper {
  position: relative;
  flex: 3 1 600px;
  overflow: hidden;
}

.testio-land-oly-carousel {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.testio-land-oly-card {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 15px 25px;
  margin: 0 10px;
  flex: 0 0 calc(25% - 20px); /* default desktop width */
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.testio-land-oly-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testio-land-oly-header img:first-child {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.testio-land-oly-gicon {
  margin-left: auto;
  width: 20px;
  height: 20px;
}

.testio-land-oly-stars {
  color: gold;
  margin: 5px 0;
}

.testio-land-oly-text {
  flex-grow: 1;
  font-size: 15px;
  line-height: 21px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
}

.testio-land-oly-text.expanded {
  -webkit-line-clamp: unset !important;
}

.testio-land-oly-readmore {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0;
  margin-top: 10px;
  text-align: left;
}

.testio-land-oly-prev,
.testio-land-oly-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  font-size: 15px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
  z-index: 5;
}

.testio-land-oly-prev { left: 0px; }
.testio-land-oly-next { right: 0px; }

@media (max-width: 1023px) {
  .testio-land-oly-card {
    flex: 0 0 calc(33.333% - 20px); /* tablet: 3 per row */
  }
}

@media (max-width: 915px) {
  .testio-land-oly-container{
    /* flex-direction: column; */
  }
}

@media (max-width: 767px) {
  .testio-land-oly-card {
    flex: 0 0 calc(100% - 20px); /* mobile: 1 per row */
  }
}










// ===========================================FAQ'S =========================================



.olympus-testimonials-section-wrapper {
  padding: 4rem 1rem;
  background: #fff;
  overflow: hidden;
}

.olympus-testimonials-section-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.olympus-testimonials-section-left {
  flex: 0 0 200px;
  text-align: center;
}

.olympus-testimonials-section-left h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.olympus-testimonials-section-left .olympus-testimonials-section-stars {
  font-size: 1.5rem;
  color: gold;
  margin: 0.5rem 0;
}

.olympus-testimonials-section-left p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.olympus-testimonials-section-left img {
  margin-top: 0.5rem;
}

.olympus-testimonials-section-slider-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.olympus-testimonials-section-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: max-content;
}

.olympus-testimonials-section-card {
  background: #f7f7f7;
  padding: 1rem;
  border-radius: 10px;
  width: 260px;
  flex-shrink: 0;
  margin-right: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.olympus-testimonials-section-user {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.olympus-testimonials-section-user .avatar {
  width: 32px;
  height: 32px;
  background: #ccc;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.olympus-testimonials-section-user h4 {
  font-size: 0.9rem;
  margin: 0;
}

.olympus-testimonials-section-user small {
  font-size: 0.7rem;
  color: #666;
}

.g-logo {
  width: 16px;
  margin-left: auto;
}

.olympus-testimonials-section-stars {
  color: gold;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.olympus-testimonials-section-card p {
  font-size: 0.9rem;
  color: #222;
}

/* Arrows */
.olympus-testimonials-section-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffffcc;
  border: none;
  font-size: 1.5rem;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 1;
  border-radius: 5px;
}

.olympus-testimonials-section-arrow.left {
  left: 0;
}

.olympus-testimonials-section-arrow.right {
  right: 0;
}

/* Pagination Dots */
.olympus-testimonials-section-dots {
  margin-top: 1rem;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.olympus-testimonials-section-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
  transition: background 0.3s ease;
}

.olympus-testimonials-section-dots span.active {
  background: #c6001a;
}

/* Responsive */
@media (max-width: 768px) {
  .olympus-testimonials-section-container {
    flex-direction: column;
    align-items: center;
  }

  .olympus-testimonials-section-slider-wrapper {
    width: 100%;
  }

  .olympus-testimonials-section-wrapper {
    padding-bottom: 2rem;
  }

  .olympus-testimonials-section-card {
    height: 10rem;
  }

  .olympus-testimonials-section-arrow {
    display: none;
  }

  .olympus-testimonials-section-left {
    flex: none;
  }
  .olympus-testimonials-section-left h3{
    font-size: 28px;
  }
}


/* ==============================================Trustpilot =================================== */

/* CSS */
.trustpilot-secoly-landing-wrapper {
  text-align: center;
  padding: 40px 20px;
}

/* .trustpilot-secoly-landing-heading {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 30px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
} */

.trustpilot-secoly-landing-carousel {
  overflow: hidden;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.trustpilot-secoly-landing-track {
  display: flex;
  animation: trustpilot-secoly-landing-scroll 20s linear infinite;
  width: max-content;
  gap: 20px;
}

.trustpilot-secoly-landing-item {
  flex: 0 0 auto;
  width: 300px !important;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes trustpilot-secoly-landing-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-300px * 4));
    /* Adjust based on number of items */
  }
}

/* Responsive: Show in grid for larger screens */
@media (min-width: 768px) {
  .trustpilot-secoly-landing-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .trustpilot-secoly-landing-item {
    width: 180px;
  }
}

@media (max-width: 1400px) {
  .trustpilot-secoly-landing-carousel {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .trustpilot-secoly-landing-heading {
    font-size: 32px;
  }

  .trustpilot-secoly-landing-item {
    width: 250px !important;
  }
}

@media (max-width: 480px) {
  .trustpilot-secoly-landing-item {
    width: 200px !important;
  }
}


/* ===============================Fourth Section ============================================== */

.third-landing-pg-about-section {
  background: #f7f7f7;
}

.third-landing-pg-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.third-landing-pg-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 62px;
}

.third-landing-pg-image,
.third-landing-pg-image img {
  width: 100%;
}

/* .third-landing-pg-text{
  max-width: 480px;
} */
/* .third-landing-pg-heading{
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 1rem;
} */
.third-landing-pg-description {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 2rem
}

@media (max-width: 1327px) {
  .third-landing-pg-content-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
}

/* ============================================= Average Section ===================================== */

/* CSS */
.avg-tyre-fitt-lan-section {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.avg-tyre-fitt-lan-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* .avg-tyre-fitt-lan-heading {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 40px;
} */

.second-landing-olympus-title span {
  color: #bd081c;
  font-size: 45px;
  display: inline-block;
  margin-top: 5px;
}

.avg-tyre-fitt-lan-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.avg-tyre-fitt-lan-card {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.avg-tyre-fitt-lan-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.avg-tyre-fitt-lan-card:hover .avg-tyre-fitt-lan-card-info strong {
  color: #bd081c;
  font-size: 36px;
  animation: fadeOut 0.3s ease-out;
}

.avg-tyre-fitt-lan-card img {
  width: 100%;
  height: auto;
  display: block;
}

.avg-tyre-fitt-lan-card-info {
  padding: 15px 20px;
  font-size: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.avg-tyre-fitt-lan-card-info p {
  margin: 0;
}

.avg-tyre-fitt-lan-card-info strong {
  font-size: 18px;
  font-weight: bold;
}




.banner-landioly-wrapper {
  background-color: #bd081c;
  padding: 40px 20px;
  color: #fff;
}

.banner-landioly-container {
  max-width: 1400px;
  margin: 0 auto;
  align-items: center !important;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.banner-landioly-heading {
  font-size: 45px;
  font-weight: 600;
  width: 80%;
  line-height: 1.4;
}

@media(max-width: 867px){
.avg-tyre-fitt-lan-card{
max-width: 350px;
}
}


@media (max-width: 768px) {
  .banner-landioly-container {
    flex-direction: column;
    align-items: center;
  }

  .banner-landioly-heading {
    font-size: 28px;
    width: 100%;
    line-height: 100%;
    text-align: center;
  }

  .banner-landioly-break {
    display: none;
  }
  .avg-tyre-fitt-lan-card-info{
    font-size: 20px !important;
  }
.avg-tyre-fitt-lan-card{
max-width: 100%;
}
}


/* ======================================================= How It Works ========================================= */

.landing-olympus-processsss-wrapper {
  background-color: #f7f7f7;
  padding: 50px 20px;
  text-align: center;
}

.landing-olympus-processsss-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* .landing-olympus-processsss-heading {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
} */

.landing-olympus-processsss-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.landing-olympus-processsss-step-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.landing-olympus-processsss-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 250px;
}

.landing-olympus-processsss-icon {
  background-color: #000;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.landing-olympus-processsss-icon img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}

.landing-olympus-processsss-text {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

.landing-olympus-processsss-arrow img {
  height: auto;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .landing-olympus-processsss-steps {
    flex-direction: column;
    /*gap: 30px;*/
  }

  .landing-olympus-processsss-step-group {
    flex-direction: column;
  }

  .landing-olympus-processsss-arrow img {
    transform: rotate(90deg);
  }
}

@media (max-width: 480px) {
  .landing-olympus-processsss-icon {
    width: 80px;
    height: 80px;
  }

  .landing-olympus-processsss-icon img {
    width: 30px;
    height: 30px;
  }

  .landing-olympus-processsss-heading {
    font-size: 24px;
  }

  .landing-olympus-processsss-text {
    font-size: 20px;
  }
}

/* ====================================================== FAQ's Section ============================================= */


.faq-olympus-landing-wrapper {
  background-color: #fff;
  padding: 60px 20px;
  border-bottom: 2px solid #a40e22;
}

.faq-olympus-landing-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-olympus-landing-heading {
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000;
}

.faq-olympus-landing-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.faq-olympus-landing-question {
  width: 100%;
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  padding: 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  color: #000;
}

.faq-olympus-landing-question span:first-child {
  font-weight: 600;
  margin-right: 12px;
  min-width: 24px;
  display: inline-block;
  color: #000;
}

.faq-olympus-landing-icon {
  font-size: 20px;
  color: #bd081c;
  transition: transform 0.3s ease;
}

.faq-olympus-landing-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  font-size: 15px;
  color: #333;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-olympus-landing-item.active .faq-olympus-landing-answer {
  max-height: 200px;
  padding: 10px;
}

.faq-olympus-landing-item.active .faq-olympus-landing-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 767px) {
  .faq-olympus-landing-heading {
    font-size: 28px;
  }

  .faq-olympus-landing-question {
    font-size: 16px;
    flex-direction: row;
    align-items: flex-start;
  }

  .faq-olympus-landing-icon {
    font-size: 18px;
  }
}


/* ===================================================Footer =================================================== */

.footer-landing-olympus-wrapper {
  background-color: #000;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
}

.footer-landing-olympus-container {
  max-width: 800px;
  margin: 0 auto;
}

.footer-landing-olympus-logo img {
  width: 180px;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.footer-landing-olympus-text {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-landing-olympus-payments {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-landing-olympus-payments img {
  width: 50px;
  height: auto;
  transition: transform 0.3s ease;
}

.footer-landing-olympus-payments img:hover {
  transform: scale(1.1);
}
@media(max-width: 567px){
  .footer-landing-olympus-payments {
    gap: 22px;
  }
  }