
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .main-container{
      width: 80%;
      max-width: 1200px;
      margin: auto;
      background-color: #fff;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    body {
      font-family: Arial, sans-serif;
      background-color: #f0f0f5;
    }

    .hero-wrapper {
      padding: 40px 20px;
      background-image: url('../images/Header.jpg');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      position: relative;
      text-align: left;
      color: #fff;
    }

    .hero-wrapper::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-tagline {
      font-style: italic;
      color: #000000;
      font-size: 1.7rem;
      margin-bottom: 20px;
    }

    .hero-title,
    .hero-subtitle,
    .hero-highlight {
      background-color: #000;
      display: inline-block;
      padding: 10px 15px;
      font-weight: bold;
      font-size: 3rem;
      margin-bottom: 10px;
      line-height: 1.3;
    }

   .hero-final-line {
    font-size: 2rem;
    color: #000000;
    margin-top: 20px;
    font-weight: bold;
    text-shadow:
      -1px -1px 0 #fff,
      1px -1px 0 #fff,
      -1px  1px 0 #fff,
      1px  1px 0 #fff;
    }

    .header-image-mobile{
    display: none;
    }

    @media (max-width: 768px) {

      .hero-title,
      .hero-subtitle,
      .hero-highlight {
        font-size: 1.4rem;
        padding: 8px 12px;
      }

      .hero-final-line {
        font-size: 1.7rem;
      }

      p {
        font-size: 1.3rem !important;
      }

      h1 {
        font-size: 1.7rem !important;
      }

         h2 {
        font-size: 1.4rem !important;
      }

        .hero-tagline{
        font-size: 1.4rem;

      }

      .main-container{
        width: 100%;
      }

      .header-image-mobile{
      display: block; 
      margin-top: -110%;
      }
      
      .hero-wrapper{
        padding: 20px 20px 0px 20px;
        background-image: none;

      }

    }

  .features-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #2f2f2f;
  border-bottom: 6px solid #c4a4d6;
  padding: 10px 10px;
  color: white;
  flex-wrap: wrap;
  gap: 12px;  
  justify-content: flex-start;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
/*  flex: 1 1 200px;*/
/*  max-width: 300px;*/
  margin-left: 4% ;
}

.feature-icon {
  width: 36px;
  height: auto;
  filter: invert(75%) sepia(10%) saturate(300%) hue-rotate(240deg);
}

.feature-text {
  font-size: 1.2rem;
  line-height: 1.3;
}


.offer-section {
  background-color: #c7a2db; /* soft purple */
  padding: 20px 20px;
}

.offer-content {
  text-align: center;
  color: #000;
}

.offer-content h2 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.offer-content .red-text {
  color: red;
  font-weight: bold;
  text-decoration: underline;
}

.offer-content .highlight {
  color: red;
  font-weight: bold;
}

.offer-subtext {
  font-size: 1.5rem;
  margin: 5px auto 0px;
  color: #000;
  font-weight: 700;
  line-height: 27px !important;
  padding: 0 20px;
}

.offer-image {
  max-width: 80%;
  height: auto;
}


@media (max-width: 768px) {


.container {
    padding: 0 20px !important;
  }

.card-wrapper {
  display: block !important;
}

  .offer-content h2 {
    font-size: 1.4rem;
  }

  .offer-subtext {
    font-size: 1.5rem;
    line-height: 35px;
  }

.offer-image {
  max-width: 100%;
  height: auto;
}
  
}

.py-5 {
  padding: 0 16px 0 16px !important;
}


h2 {
font-size: 2.5rem;
}


h1 {
font-size: 3rem;
}

p {
  font-size: 1.4rem;
  line-height: 30px;
  margin-bottom: 10px;
}

.text-center {
 text-align: center;
}

.text-right {
 text-align: right;
}

.text-yellow{
  color: #ffef17;
}

.bg-yellow {
  background-color: #ffef17;
  padding: 3px;
  font-weight: bold;
}

.text-dark {
  color: black;
}

.bg-darker {
  background-color: #353535;
}

.img-container {
  max-width: 500px;
  margin: auto;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.bg-dark {
  background-color: #454444;
}

.bg-white {
  background-color: #fff;
  font-weight: bold;
}

.text-blue {
  background: #a4dff5;
  padding: 3px;
  font-weight: bold;
}

.text-magenta {
  background: #ceafe1;
  padding: 3px;
}

.bg-header-title {
   background-color: #a786ba;
}

.text-magenta-highlight {
  background: #d6c1e4;
  padding: 3px;
}


.card-wrapper {
  border: 2px dashed #c7a2db;
  border-radius: 20px;
  background-color: #454444;
}

.text-danger {
  color: #d00101;
}

.text-white {
  color: #fff;
}

 .strikethrough {
            position: relative;             /* Positioning for the pseudo-elements */
            color: black;                  /* Text color */
        }

        .strikethrough::before,
        .strikethrough::after {
            content: "";                   /* Create pseudo-elements */
            position: absolute;            /* Position them absolutely */
            width: 100%;                  /* Full width for the line */
            height: 2px;                  /* Thickness of the line */
            background-color: red;        /* Color of the lines */
        }

        .strikethrough::before {
            transform: rotate(45deg);     /* Rotate to create the diagonal effect */
            top: 50%;                     /* Center it vertically */
            left: 0;                      /* Start from the left */
        }

        .strikethrough::after {
            transform: rotate(-45deg);    /* Rotate in the opposite direction */
            top: 50%;                     /* Center it vertically */
            left: 0;                      /* Start from the left */
        }

.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.check {
  color: #a66abb;
  margin-right: 0.75rem; font-size: 30px;
}

.vertical-align-center {
  display: flex; align-items: center;
}

.margin-auto {
  margin: auto;
}

.img-layout {
  overflow: hidden; border-radius: 15px; box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4);
}

.mt-8 {
  margin-top: 8px;
}

.mt-5 {
  margin-top: 5px !important;

}
.m-20 {
  margin: 20px !important;

}
.row.card-wrapper {
    display: flex; /* Enable Flexbox */
    align-items: center; /* Vertically center the items */
    justify-content: center;
}

.rating-container {
    text-align: center; /* Center text */
}


.rating {
    display: inline-block; /* Inline block for centering */
    background-color: white; /* Background color for rating */
     padding: 2px 12px;
    border-radius: 20px; /* Rounded corners */
    color: #f39c12; /* Gold color for stars */
    font-size: 24px; /* Size of the stars */
}

.m-0 {
  margin: 0 !important;
}

.m-15 {
  margin: 20px !important;
}


.senior-soccer {
   background-image: url('../images/Grandparent.jpg'); 
   background-size: cover; 
   background-position: center; 
   transform: scaleX(-1); 
   position: absolute; 
   background-repeat: no-repeat;
   top: 0; 
   left: 0; 
   width: 100%; 
   z-index: 0; 
   opacity: 0.2;
   height: 100ch;

  }

  .senior-pick-basket {
   background-image: url('../images/FemaleSenior.jpg'); 
   background-size: cover; 
   position: absolute; 
   background-repeat: no-repeat;
   top: 0; 
   left: 0; 
   width: 100%; 
   z-index: 0; 
   opacity: 0.2;
   height: 100%;
   background-position: center;
  }

    .muscle-anatomy {
     background-image: url('../images/BG6.jpg'); 
     position: absolute; 
     background-repeat: no-repeat;
     background-size: cover; 
     top: 0; 
     left: 0; 
     width: 100%; 
     height: 100%;
     background-position: center;
  }


/*.muscle-anatomy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1; 
}*/

  .m-senior-woman-squat-exercise {
    display: none;
  }

  .img-setting-on-air-bg {
     background-image: url('../images/BG 11.jpg'); 
     background-size: cover; background-position: right;
     background-repeat: no-repeat;
  }


.img-setting-on-air-bg > * {
    position: relative;
    z-index: 1; /* keep text above overlay */
}


  .mature-woman {
    transform: scaleX(-1);
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
  }

    .mature-woman-mobile {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: none;
  }

  .mobile-mature-woman-title {
    display: none;
  }


  
    .chevron-icon {
      margin-right: 1rem;
      height: 40px;
    }

    .m-hip-spine {
      margin-top: 20px; border-radius: 20px;
      padding: 20px !important;
    }


  .short-description {
    font-size: 15px !important;
    line-height: 22px;
  }

  .real-solution-mobile {
    display: none;
  }

  .pb-20 {
    padding-bottom: 20px !important;
  }

  .real-solution {
    max-width: 800px;
     background: linear-gradient(to bottom,#e1beed,#E8D8EE);
      padding: 20px; 
     border-radius: 20px;
  }

  .real-solution-bg {
    background: linear-gradient(to bottom,white,#e1beee ); padding-bottom: 20px
  } 

  .bg-gradient-pink {
    background: linear-gradient(to bottom,#e5c5f0, white );
  }

  .section-4-bg {
    background-color: #ece0f4;
  }



  .bg-pink-tile {
      background-color: #a786ba;
  }

  .bg-pink{
      background-color: #ece0f4;
  }
  .p-0 {
    padding: 0 !important;
  }
  .p-5 {
    padding: 5px;
  }

  .img2-anatomy {
    margin-left: 20px;
  }


  .m-img-setting-on-air {
    display: none;
  }

  .p-20 {
    padding: 20px;
  }

  .buy-bnt-max-w {
    max-width: 300px;
  }

  .mature-woman-thinking {
    display: flex;
    align-items: flex-end;
  }

  .x-icon {
    font-size: 30px; margin-right: 10px; color: #f13e36;
  }
   .circle-icon {
    font-size: 20px; margin-right: 10px; color: #fff; margin-top: 4px;
  }


.d-old-woman-back-pain {
  background-image: url('../images/BG 7.jpg');
  background-size: cover;
}

.m-old-woman-back-pain{
  display: none;
}


.old-woman-stretch {
  background-image: url('../images/BG 4.jpg'); background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}


/* Responsive adjustments */
@media (max-width: 768px) {

   .hip-spine-tab {
    flex-wrap: wrap !important;
    align-items: flex-end;
    flex-direction: column-reverse;
}

   .mature-woman-thinking {
       flex-wrap: wrap;
  }


   .mature-woman-mobile {
    display: block;
    height: 35%;
  }

    .mature-woman {
    height: 28%;
  }

   .mobile-mature-woman-title {
    display: block;
    font-size: 2rem !important;
  }

  .desktop-mature-woman-title {
    display: none;
  }

.senior-soccer {
   height: 100%; 
 }


  .short-description {
    font-size: 15px !important;
    line-height: 22px;
  }

  .py-5 {
    padding: 0 0 0 0 !important;
  }

    .container {
        padding: 0 20px !important; /* Less padding on smaller screens */
    }

    .col-md-4, .col-md-8 {
        flex: 0 0 100% !important; /* Make columns full width */
    }

     .col-md-6, .col-md-6 {
        flex: 0 0 100% !important; /* Make columns full width */
    }


    .img-width-mobile {
      max-width: 200px;
      margin: auto;
    }
}


.container {
    max-width: 1200px; /* Maximum width for the container */
    margin: 0 auto; /* Center the container */
    padding: 0 50px; /* Padding to prevent overflow */
}

.row {
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap */
    margin: 0 -10px; /* Negative margin to offset column padding */
}

[class*="col-md-"] {
    padding: 10px; /* Padding for each column */
    box-sizing: border-box; /* Include padding in width calculation */
}

.col-md-1 { flex: 0 0 8.33%; }
.col-md-2 { flex: 0 0 16.67%; }
.col-md-3 { flex: 0 0 25%; }
.col-md-4 { flex: 0 0 33.33%; }
.col-md-5 { flex: 0 0 41.67%; }
.col-md-6 { flex: 0 0 50%; }
.col-md-7 { flex: 0 0 58.33%; }
.col-md-8 { flex: 0 0 66.67%; }
.col-md-9 { flex: 0 0 75%; }
.col-md-10 { flex: 0 0 83.33%; }
.col-md-11 { flex: 0 0 91.67%; }
.col-md-12 { flex: 0 0 100%; }

.row > div {
    padding: 10px; /* Inner padding for columns */
}


.m-GSSoftPsoasMassageTool {
    display: none;
  }


.muscle-anatomy-content1 {
    display: flex;
    align-items: center;
    justify-content: center;
    }

.muscle-anatomy-content2 {
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .m-Womanbackpain {
    display: none;
  }

   .m-old-woman-stretch{
    display: none;
  }



@media (max-width: 576px) {

  .d-GSSoftPsoasMassageTool {
    display: none;
  }


  .m-GSSoftPsoasMassageTool {
    display: block;
  }

  .p-10 {
    padding: 10px;
  }

  .features-bar {
    justify-content: center;
  }

  .m-old-woman-stretch{
    display: block;
  }

  .old-woman-stretch{
    display: none;
  }



    .mature-woman-mobile {
    height: 34% !important;
  }


    .m-mature-woman-thnking {
    width: 100%;
  }

    .m-mature-woman-thinking-con {
    margin: auto;
    max-width: 300px
  }

  .true-posture {
  margin-left: 0;
}

.one-shif {
  margin-left: 0;
}

  .img-setting-on-air-bg {
    display: none;
  }

    .m-senior-woman-squat-exercise {
    display: block;
  }

  .m-reverse-img {
    flex-direction: column-reverse;
  }


.m-20 {
  margin: 3px !important;
}



 .hip-spine-tab {
    flex-wrap: wrap !important;
    align-items: flex-end;
    flex-direction: column;
}

  .m-hip-spine {
    max-width: 400px;
  }

  .m-section-4-last-container {
    display: grid;
  }

    .img-setting-on-air-bg {
     background-image: none; 
  }

    .m-img-setting-on-air {
    display: block;
  }


  .m-muscle-anatomy-content1 {
    display: contents !important;
  }

    .reset {
        flex-wrap: wrap;
  }

    .real-solution-mobile {
    display: block;
  }

  .real-solution-desktop {
    display: none;
  }

  .order-1 {
    order: 1;
    margin-top: 0 !important;
  }

  .muscle-anatomy-content1 {
    flex-direction: column-reverse;
  }

  .muscle-anatomy-content2 {
    flex-direction: column;
  }
  
  .shipping {
    font-size: 13px !important;
  }
  .buy-bnt-max-w {
    max-width: 200px;
  }

  .mature-woman {
    height: 38%;
    display: none;
  }

  .mature-woman-mobile {
    display: block;
    height: 32%;
  }
}


@media (max-width: 992px) {



.row.card-wrapper {
   flex-direction: column;
}

 .mature-woman {
    height: 35%;
  }

}

 .hip-spine-tab {
    align-items: flex-end;
}

  .tab_con_Mature_woman_uestion_mark {
  position: absolute;
  right: 0;
  bottom: 0;
}

  .m-mature-woman-thnking-desktop{
    display: none;
  }

  .old-woman-stretch-content {
    max-width: 700px
  }


@media (max-width: 1200px) {

   .img2-anatomy {
    margin-left: 0;
  }


    .feature-item {
 flex: 1 1 200px;
 max-width: 300px;
}

.img-setting-on-air-bg {
  background-position: right;

}


.old-woman-stretch {
  background-size: cover;
}

  .m-mature-woman-thnking-desktop{
    display: block;
  }


  .m-Womanbackpain-column {
        flex-direction: column;
  }

    .m-Womanbackpain {
    display: block;
  }

   .d-Womanbackpain {
    display: none;
  }

  .d-mature-woman-thinking {
    display: none;
  }

    .m-old-woman-back-pain{
  display: block;
}


  .d-old-woman-back-pain{
    display: none;
  }

  .tab_con_Mature_woman_uestion_mark {
  position: absolute;right: -110px;bottom: 0;width: 47%;
}

   .tab_Mature_woman_uestion_mark {
    width: 80%;
  }

  .m-20 {
  margin: 10px !important;
}


  .mature-woman {
    display: none;
  }

  .mature-woman-mobile {
    height: 45%;
    display: block;
  }


    .real-solution {
       max-width: 530px;
  }


   .mature-woman-thinking {
     align-items: flex-end;
  }


 .hip-spine-tab {
    flex-wrap: nowrap;
    align-items: flex-end;
}

      .real-solution {
       max-width: 530px;
  }

.row.card-wrapper {
    flex-wrap: nowrap;
}


}


.section-5-r1-container {
  background: #a786ba75;;
  padding-block: 30px;
  position: relative;
} 
.section-5-r1-ovelay {
   position: absolute;
   top: 0;
   left: 0;
   bottom:0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: 0;
   opacity: 0.1;
}
.section-5-r1{
  position: relative;
  z-index: 2;
}
.section-5-r1 > div{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
.section-5-r1 > div:nth-child(1){
  margin-bottom: 30px;
}
.section-5-r1-text{
  padding: 10px;
}
.section-5-r1-img-left, .section-5-r1-img-right {
  padding: 5px;
  background-color: white;
  box-shadow: 9px 9px 0px rgb(171 171 171);
  width: 300px;
  min-width: 300px;;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.section-5-r1-img-right{
  width: 350px;
  min-width: 350px;
  box-shadow: -9px 9px 0px rgb(171 171 171);
}

.section-5-r1-img-left img, .section-5-r1-img-right img {
  width: 100%;
  border-radius: 16px;
}



@media screen and (max-width: 1050px) {

  .section-5-r1 > div{
    flex-direction: column;
  }
  .section-5-r1 > div:nth-child(2){
    gap: 0;
  }
  .section-5-r1 > div:nth-child(1){
    margin-bottom: 0;
  }
  .section-5-r1-img-left, .section-5-r1-img-right {
    max-width: 350px;
    width: 100%;
    margin: auto;
  }
  .section-5-r1-container{
    padding-block: 30px !important;
  }
}

@media screen and (max-width: 400px) {
  .section-5-r1-img-left, .section-5-r1-img-right {
    min-width: 100%;
  }
}


.section-5-r2-container{
  background: #c7a2db;
  padding-block: 30px;
  position: relative;
}

.section-5-r2 h2, .section-5-r2 h1{
  text-align: center;
  margin-bottom: 10px;
}

.section-5-r2 h1{
  text-align: center;
  color: white;
  font-size: 60px;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}


.section-5-r2-text-2{
  margin-top: 30px;
}

.fw-400{
  font-weight: 400;
}

.section-5-r3-container{
  padding: 30px 30px 30px 0;
  background: #c7a2db;
  position: relative;
  margin-top: -2px;
}

.section-5-r3{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.section-5-r3 img{
  width: 500px;
  min-width: 500px;
  display: block;
  border-radius: 20px;
  height: auto;
}


@media screen and (max-width: 1100px) {

  .section-5-r3{
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }
  .section-5-r3 img{
    width: 100%;
    max-width: 600px;
    display: block;
    border-radius: 20px;
  }
  .section-5-r3 > div{
    padding-left: 50px;
  }
  .section-5-r3-container{
    padding: 50px 50px 50px 0;
  }
}

@media screen and (max-width: 768px) {
  .section-5-r3 > div{
    padding-left: 20px;
  }
  .section-5-r3-container{
    padding-left: 0 !important;
  }
  .section-5-r2-text-2 h2{
    margin-bottom: 0;
  }
  .section-5-r2-container{
    padding-block: 30px !important;
  }
}

@media screen and (max-width: 500px) {
  .section-5-r3 img{
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    display: block;
    border-radius: 20px;
  }
}

.section-5-r4-container{
  padding:0 30px;
  background: #c7a2db;
  position: relative;
}
.section-5-r4 h2{
  text-align: center;
  margin-bottom: 10px;
}
.section-5-r4-text{
  text-align: center;
}

.section-5-r4-itemlist{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
.section-5-r4-item{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  text-align: center;
  width: 100%;
}

.section-5-r4-item img{
  width: 300px;
  height: auto;
}

.section-5-r4-item > div{
  text-align: left;
}
.section-5-r4-item > div > ul{
  font-size: 1.4rem;
    line-height: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
  padding-left: 20px;
}
.section-5-r4-item > div > ul > li{
  margin-bottom: 10px;
}

.section-5-r4-img-last{
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-5-r4-img-last img{
  width: 100%;
  height: auto;
  max-width: 160px;
}
.section-5-r4-item > h2{
  display: none;
}

@media screen and (max-width: 900px) {
  .section-5-r3 img{
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    display: block;
    border-radius: 20px;
  }
  .section-5-r4-item > h2{
    display: block;
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
  }
  .section-5-r4-item div > h2{
    display: none;
  }
  .section-5-r4-item{
    flex-direction: column;
    gap: 0;
  }
}

.section-5-r4-boxs{
  display: flex;
  gap: 30px ;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.section-5-r4-box{
  width: 47%;
  background: rgb(233, 249, 255);
  border-radius: 20px;
  padding: 20px;
}
.section-5-r4-box p{
  text-align: center;
}

.section-5-r4-box-cardt{
  color: #a66abb;
  font-weight: bold;
}

.cardt1{
  margin-top: -55px;
}
.cardt2{
  margin-top: 5px;
}
.cardt3{
  margin-top: -35px;
}
.cardt4{
  margin-top: -35px;
}

.section-5-r4-box-lastp{
     font-size: 18px;
    line-height: 24px;
    color: #000000c9;
}

.section-5-r4-box img{
  width: 100%;
  height: auto;;
}


@media screen and (max-width: 1000px) {
  .cardt1{
    margin-top: -25px;
  }
  .cardt2{
    margin-top: 5px;
  }
  .cardt3{
    margin-top: -15px;
  }
  .cardt4{
    margin-top: -15px;
  }
}

@media screen and (max-width: 600px) {
  .section-5-r4-boxs{
    flex-direction: column;
    align-items: center;
  }
  .section-5-r4-box{
    width: 100%;
  }
}

.textCenter{
  text-align: center !important;
}

.section-5-mature-woman{
  transform: scale(1);
  bottom: 0;
  width: 530px;
  height: auto;
  top: unset;
}
.section-5-mature-woman-text{
  width: 70%;
  max-width: 100%;
}

.section-5-mature-woman-text *{
  position: relative; z-index: 1;
}

@media (max-width: 1200px) {
    .section-5-mature-woman {
        display: block;
    }
}

@media (max-width: 1000px) {
    .section-5-mature-woman-text{
    width: 100%;
    max-width: 100%;
  }
  .section-5-mature-woman{
    bottom: unset;
    max-width: 500px;
    width: 100%;
    height: auto;
    position: relative;
  }
}
.desktop-guarantee-text{
    display: none;
  }
@media (max-width: 1000px) {

  .desktop-guarantee-text{
    display: block;
  }
}



.custom-gap-table {
	border-collapse: separate; /* Merge borders */
	background-color: transparent;
	border-spacing: 10px;
}

.custom-gap-table td {
	background-color: #d6c1e4 !important; /* Cell background color */
	padding: 15px; /* Padding inside cells */
	vertical-align: middle; /* Vertical alignment */
	border: 2px solid #ffffff; /* Cell border */
	box-sizing: border-box; /* Include padding and border in width/height */
}

.custom-gap-table td:last-child {
	text-align: center; /* Center text in last cell */
	color: red; /* Text color */
	font-weight: bold; /* Bold text */
	vertical-align: middle; /* Vertical alignment */
}

.section-5-table-text {
	font-size: 1.2rem;
	color: #333;
}

/* .custom-gap-table {
	padding: 20px;
} */
.section-1-testimonial-text {
	color: #000;
}
/* .section-5-r5-table table td:nth-child(1) p:nth-child(1){
  margin-bottom: 10px !important;
} */

.section-5-r5-table table td:nth-child(1) p:nth-child(2){
  margin-bottom: 0;
}

.section-5-r5-table table td:nth-child(2) {
  /* width: 20%; */
  width: 200px;
}
.section-5-r5-table table td:nth-child(2) p{
  color: #d32626;
  font-weight: normal;
  word-wrap: break-word;
}

.section-5-r5-table table tr:last-child td:nth-child(2) p:nth-child(1) {
  font-size: 28px;
}

.blackcolor {
  color: #000 !important;
}
.redcolor{
  color: #d32626;
}



.section-5-setting-on-air {
  position: relative;                                   
  overflow: hidden;
}

/* .section-5-setting-on-air::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    background-color: rgba(255, 255, 255, 0.8); white with 50% opacity
} */

.section-5-s6img-desk{
  position: absolute;
    right: -2%;
    z-index: 0;
        bottom: 0;
    height: 100%;
}
.sec-rel{
  position: relative;
}

.section-5-s6img-mob{
  display: none;
  justify-content: flex-end;
  align-items: baseline;
  margin-top: -100px;
}

.section-5-s6img-mob img{
  max-width: 700px;
  height: auto;
  width: 100%;
}

@media (max-width: 1150px) {
  .section-5-s6img-desk{
    display: none;
  }
  .section-5-s6img-mob{
    display: flex;
  }
}

.section-5-60-day img{
  max-width: 500px;
  height: auto;
  width: 100%;
}

.s5-60daycont{
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.mobile-60day{
    display: none;
    width: 100%;
  }

@media (max-width: 1150px) {
  
  .s5-60daycont{
    margin-top: 50px;
    flex-direction: column;
    align-items: center;
  }
  .desktop-60day{
    display: none;
  }
  .mobile-60day{
    display: block;
    width: 100%;
  }
}


.section-7-faqs {
	background-color: #fff;
	padding: 20px 50px 30px;
	width: 100%;
	max-width: 1350px;
	margin: auto;
}

.section-7-faqs .accordion-cont {
	margin: 20px auto;
}

.section-7-faqs .accordion-cont .acc-title {
	width: 100%;
	font-weight: bold;
	font-size: 48px;
  text-align: center;
	margin-bottom: 20px;
}

.section-7-faqs .accordion-cont hr,
.section-7-faqs .accordhr {
	width: 100%;
	margin: 30px 0;
}

.section-7-faqs .acc-accordions {
	width: 100%;
}

.section-7-faqs .acc-item input {
	display: none;
}

.section-7-faqs .acc-item .acc-q {
	background: #fff;
	font-weight: bold;
	margin: 0;
	position: relative;
	width: 100%;
	border: 1px solid #9c9c9c;
}

.section-7-faqs .acc-item .acc-q label {
	cursor: pointer;
	padding: 20px 20px 20px 50px;
	display: block;
	width: 100%;
	text-align: left;
}

.section-7-faqs .acc-item .acc-q::after {
	content: "−";
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.2s;
}

.section-7-faqs .acc-item .acc-ans {
	padding: 0;
	background-color: #ece0f4;
	transition: all 0.7s, height 0.3s, padding 0.1s;
	height: 0;
	visibility: hidden;
	opacity: 0;
	overflow: hidden;
	text-align: left;
}



.section-7-faqs
	.acc-item
	input[type="checkbox"]:checked
	+ .acc-item-cont
	.acc-ans {
	visibility: visible;
	opacity: 1;
	height: auto;
	padding: 30px;
}

.section-7-faqs
	.acc-item
	input[type="checkbox"]:checked
	+ .acc-item-cont
	.acc-q::after {
	transform: translateY(-40%) rotateZ(180deg);
	content: "🞦";
}

.section-7-faqs .acc-item .acc-ans p,
.section-7-faqs .acc-item .acc-ans ol,
.section-7-faqs .acc-item .acc-ans ul {
	margin: 0;
	font-size: 20px !important;
  word-break: break-word;
}
.section-7-faqs .acc-item .acc-ans ul {
	padding-left: 40px;
}
.section-7-faqs .acc-item .acc-ans ol{
	padding-left: 20px;
}
.section-7-faqs .acc-item .acc-ans p:not(:last-child) {
	margin-bottom: 20px;
}

.section-7-faqs .acc-item .acc-ans p.accmt10 {
	margin-bottom: 10px;
}

.section-7-faqs .acc-item .acc-ans p.accmttop {
	margin-top: 20px;
}

.section-7-faqs .acc-item .acc-ans ol li:not(:last-child),
.section-7-faqs .acc-item .acc-ans ul li:not(:last-child) {
	margin-bottom: 10px;
}

@media (max-width: 769px) {
	.section-7-faqs {
		padding: 15px 30px 30px;
  }
}

/* Footer */

.footer {
	padding: 0 20px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	max-width: 1250px;
	width: 100%;
	margin: auto;
}

.footer-content p {
	font-size: 14px !important;
	font-weight: 200 !important;
}

.footer-links span {
	margin-left: 5px;
	color: #81b71a;
}

.footer-links {
    padding-left: 20px;
    text-align: right;
}

.footer-links a {
	text-decoration: none;
	color: #000;
}

@media (max-width: 1000px) {
	.footer-content {
		flex-direction: column;
		align-items: center;
	}
}

/* End of Footer CSS */

.section-5-r2-row{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 30px;
}


.section-5-r2-img{
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-5-r2-img img{
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: auto;
}

@media (max-width: 1000px) {
	.section-5-r2-row{
    flex-direction: column;
  }

  .section-5-r2-container{
    padding-bottom: 0;
  }
  .section-5-r3-container{
    padding-top: 20px;
  }

}


.section-5-buynowheaderalt{
  background-color: #c7a2db;
  padding: 0 !important;
  padding-top: 10px !important;;
}

.section-5-buynowheaderalt-inner{
  background-color: red;
}

.section-5-buynowheaderalt-inner *{
  text-align: center;
  color: white;
}
.section-5-buynowheaderalt-inner p{
  margin-bottom: 0;
}

.w-full{
  width: 100%;
}

.textshadow{
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}