.framer-21r45o {
  display: flex;
  align-items: center;
  background-color: #bb222217;
  width: 14.1rem;
  padding: 5px;
  border-radius: 20px;
  margin-bottom: 10px;
  /* margin: 0 auto; */

}

.circle {
  width: 1.6rem;
  /* Adjust size as needed */
  height: 1.6rem;
  /* Adjust size as needed */
  border-radius: 50%;
  /* This creates a circle */
  background-color: #f48c00;
  /* Background color of the circle */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  /* Adjust spacing between text and circle */
}

.fa {
  color: white;
  /* Color of the bolt icon */
  size: 1rem;
}

/***********************
* hsm custom
***********************/
.section-features {
  position: relative;

  top: -25vh;
}

.scroller2024 {
  max-width: 100%;
  justify-content: center;
}


.scroller__inner2024 {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller__inner2024 img {
  width: 10rem;
}



.movies-cust img {
  height: 30rem;
  width: 20rem;
  border-radius: 25px;
}

.reviews-cust img {
  height: 25rem;
  width: 15rem;
  border-radius: 25px;
}

.custsport img {
  height: 7rem;
  border-radius: 15px;

}


.scrollerdiv {
  display: grid;
  min-block-size: 10vh;
  place-content: center;
  font-family: system-ui;
  font-size: 1.125rem;
  background-color: #ffffff;

}

@media screen and (max-width: 767px) {
  .scroller__inner2024 img {
    width: 7.5rem;
  }
  .movies-cust img {
    height: 20rem;
    width: 12rem;
    border-radius: 25px;
  }

  .custsport img {
    height: 5rem;
    width: 7rem;
    border-radius: 15px;
  }

 
}

.scroller2024[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg,
      transparent,
      white 20%,
      white 80%,
      transparent);
  mask: linear-gradient(60deg, transparent, white 20%, white 80%, transparent);
}

.scroller2024[data-animated="true"] .scroller__inner2024 {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller2024[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller2024[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller2024[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller2024[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

.tag-list {
  margin: 0;
  padding-inline: 0;
  list-style: none;
}

.tag-list li {
  padding: 1rem;
  background: var(--clr-primary-400);
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-primary-900);
}

#title {
  font-size: 2.6em;
  vertical-align: middle;
}

.main-title {
  font-weight: 600;
  font-size: 2.3rem;

}

.footer-widget-newsletter .reondesdiv {
  width: 3.3rem;
  /* Adjust as per your design */
  height: 2.5rem;
  /* Adjust as per your design */
  border-radius: 0.7rem;
  /* Makes the div rounded */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  overflow: hidden;
  /* Ensures image won't exceed div */
  margin-left: 0.3rem;

}

.footer-widget-newsletter .reondesdiv img {
  width: auto;
  height: auto;
  display: block;
  overflow: hidden;

}

.payment-list {
  padding-left: 0rem;
}

.footer-widget-logo img {
  width: 80px;
  margin-bottom: 1.5rem;
}

/***Whatsapp style****/
/*.whatsapp_float {*/
/*      position: fixed;*/
/*      width: 60px;*/
/*      height: 60px;*/
/*      bottom: 40px;*/
/*      right: 40px;*/
/*      background-color: #25d366;*/
/*      color: #fff;*/
/*      border-radius: 50px;*/
/*      text-align: center;*/
/*      font-size: 30px;*/
/*      box-shadow: 2px 2px 3px #999;*/
/*      z-index: 100;*/
/*    }*/
/*    .whatsapp-icon {*/
/*      margin-top: 16px;*/
/*    }*/

/* for mobile */
/*    @media screen and (max-width: 767px){*/
/*      .whatsapp-icon {*/
/*        margin-top: 13px;*/
/*      }*/
/*      .whatsapp_float {*/
/*        width: 60px;*/
/*        height: 60px;*/
/*        bottom: 25px;*/
/*        right: 20px;*/
/*        font-size: 32px;*/
/*      }*/
/*    }*/
.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  animation: pulse 2s infinite;
}

.whatsapp-icon {
  margin-top: 16px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* for mobile */
@media screen and (max-width: 767px) {
  .whatsapp-icon {
    margin-top: 13px;
  }

  .whatsapp_float {
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 20px;
    font-size: 32px;
  }
}


/*    titre de site */


.font-selector-hsm {
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 1.1em;
  text-align: center;
  color: rgb(11, 14, 41);

}

.corner-ribbon {
  position: absolute;
  top: -3px;
  left: -3px;
  height: 9.3em;
  width: 9.3em;
  padding: 0px;
  text-align: center;

  .cr-inner {
    position: absolute;
    inset: 0;
    background: #ffffff;
    color: rgb(75, 83, 240);
    border-radius: 16px 8px 0 8px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }

  .cr-text {
    align-items: center;
    display: block;
    font-weight: bold;
    font-size: 1em;
    line-height: 1.3;
    transform: rotate(-45deg) translateY(.7em) translateX(-2.7em);

    strong {
      display: block;
      font-weight: normal;
      text-transform: uppercase;
    }
  }

  &::before,
  &::after {
    content: '';
    position: absolute;
    background: #ffffff;
    z-index: -1;
  }

  &::before {
    top: calc(100% - 8px);
    left: 0;
    height: 8px;
    width: 3px;
    border-radius: 0 0 0 50%;
  }

  &::after {
    left: calc(100% - 8px);
    top: 0;
    width: 8px;
    height: 3px;
    border-radius: 0 50% 0 0;
  }
}

.corner-ribbon-blue {
  position: absolute;
  top: -5px;
  left: -5px;
  height: 8.3em;
  width: 8.3em;
  padding: 0px;
  text-align: center;

  .cr-inner {
    position: absolute;
    inset: 0;
    background: rgb(75, 83, 240);
    color: #ffffff;
    border-radius: 16px 8px 0 8px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }

  .cr-text {
    align-items: center;
    display: block;
    font-weight: bold;
    font-size: .8em;
    line-height: 1.3;
    transform: rotate(-45deg) translateY(.6em) translateX(-2.8em);

    strong {
      display: block;
      font-weight: normal;
      text-transform: uppercase;
    }
  }

  &::before,
  &::after {
    content: '';
    position: absolute;
    background: rgb(75, 83, 240);
    z-index: -1;
  }

  &::before {
    top: calc(100% - 8px);
    left: 0;
    height: 8px;
    width: 3px;
    border-radius: 0 0 0 50%;
  }

  &::after {
    left: calc(100% - 8px);
    top: 0;
    width: 8px;
    height: 3px;
    border-radius: 0 50% 0 0;
  }
}

.cr-text {
  align-items: center;
  display: block;
  font-weight: bold;
  font-size: .8em;
  line-height: 1.3;
  transform: rotate(-45deg) translateY(.7em) translateX(-2.8em);

  strong {
    display: block;
    font-weight: normal;
    text-transform: uppercase;
  }
}

/* &::before,
  &::after {
    content: '';
    position: absolute;
    background: rgb(75, 83, 240);
    z-index: -1;
  } */

&::before {
  top: calc(100% - 8px);
  left: 0;
  height: 8px;
  width: 3px;
  border-radius: 0 0 0 50%;
}

&::after {
  left: calc(100% - 8px);
  top: 0;
  width: 8px;
  height: 3px;
  border-radius: 0 50% 0 0;
}




























@media (max-width: 767px) {
  #title {
    display: inline-block;
    text-align: left;
    font-size: 2rem;
  }

  .headerText {
    display: inline-block;
    text-align: left;
  }

  section {
    padding: 2rem 0
  }

  .star-rating {
    display: block;
  }

  .custumh2>h2 {
    font-size: 1.4rem;

  }

  .framer-21r45o {
    margin-bottom: 4%;
  }

  .custmarg {
    margin-top: 4%;
  }

  .justify-content-center {
    justify-content: center !important;
  }
}



.card-body p {
  font-size: 0.875rem;
}