@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
/* -----CSS Default Reset----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
@font-face {
  font-family: "ClashDisplay-Extralight";
  src: url("../assets/fonts/ClashDisplay-Extralight.woff2") format("woff2"),
    url("../assets/fonts/ClashDisplay-Extralight.woff") format("woff"),
    url("../assets/fonts/ClashDisplay-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay-Light";
  src: url("../assets/fonts/ClashDisplay-Light.woff2") format("woff2"),
    url("../assets/fonts/ClashDisplay-Light.woff") format("woff"),
    url("../assets/fonts/ClashDisplay-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay-Regular";
  src: url("../assets/fonts/ClashDisplay-Regular.woff2") format("woff2"),
    url("../assets/fonts/ClashDisplay-Regular.woff") format("woff"),
    url("../assets/fonts/ClashDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay-Medium";
  src: url("../assets/fonts/ClashDisplay-Medium.woff2") format("woff2"),
    url("../assets/fonts/ClashDisplay-Medium.woff") format("woff"),
    url("../assets/fonts/ClashDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay-Semibold";
  src: url("../assets/fonts/ClashDisplay-Semibold.woff2") format("woff2"),
    url("../assets/fonts/ClashDisplay-Semibold.woff") format("woff"),
    url("../assets/fonts/ClashDisplay-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay-Bold";
  src: url("../assets/fonts/ClashDisplay-Bold.woff2") format("woff2"),
    url("../assets/fonts/ClashDisplay-Bold.woff") format("woff"),
    url("../assets/fonts/ClashDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
:root {
  --clr-1: #fffce5;
  --clr-3: #696666;
  --btn-clr: #ff4747;
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased !important;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Urbanist", sans-serif;
}

img {
  user-select: none;
  pointer-events: none;
}

.hero-section__div_left__siteLogo{
  width: 350px;
  height: auto;
}

ul,
ol {
  list-style: none;
}

.faq-section__div {
  text-align: center; 
}

.faq-section__div button {
  display: inline-block; 
  margin: 20px auto;
}

a {
  color: unset;
  text-decoration: none;
}
.container {
  max-width: 1250px;
  width: 92%;
  margin: 0 auto;
}
.heading-2 {
  font-family: "ClashDisplay-Semibold";
  font-size: 48px;
  font-weight: 600;
  line-height: 57.6px;
  letter-spacing: -0.02em;
}
/* -----------Hero Section------------ */
.hero-section {
  width: 100%;
  background-color: var(--clr-1);
  background-image: url("../assets/images/Shapes.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-section__div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 50px;
  padding: 120px 0;
}

.hero-section__div_left h1 {
  font-family: ClashDisplay-Semibold;
  font-size: 64px;
  font-weight: 600;
  line-height: 76.8px;
  letter-spacing: -0.02em;
  margin: 40px 0 10px 0;
}
.hero-section__div_left h1 span {
  display: block;
}

.hero-section__p span{
  font-family: ClashDisplay-Semibold;
  font-weight: bold;
  font-size: 23px;
  color: #000;
}


.hero-section__div_left p {
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  color: #000000;
  margin-bottom: 30px;
}
.hero-section__div_left > p:first-of-type {
  display: block;
}
.hero-section__div_left > p:last-of-type {
  display: none;
}

.hero-section__div_left__inputDiv {
  position: relative;
  max-width: 570px;
  width: 100%;
  margin-bottom: 10px;
}
.hero-section__div_left__inputDiv input {
  padding: 8px 8px 8px 24px;
  border-radius: 20px 0px 20px 20px;
  opacity: 0px;
  outline: none;
  border: none;
  background-color: white;
  box-shadow: 0px 8px 40px 0px #00000014;
  width: 100%;
  height: 70px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
}

.hero-section__div_left__inputDiv button {
  position: absolute;
  right: 8px;
  padding: 0px 32px 0px 32px;
  border-radius: 20px 0px 20px 20px;
  background-color: #ff4747;
  color: white;
  outline: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  font-family: "ClashDisplay-Medium";
  height: 55px;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.hero-section__div_left__inputDiv button:hover {
  background-color: var(--clr-3);
  color: white;
}

.hero-section__div_left__users {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
}
.hero-section__div_left__users > div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.hero-section__div_left__users > div img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid white;
  object-position: center;
  object-fit: cover;
}
.hero-section__div_left__users > div img:nth-child(2),
.hero-section__div_left__users > div img:nth-child(3),
.hero-section__div_left__users > div img:last-of-type {
  margin-left: -10px;
}

.hero-section__div_left__users span {
  margin-left: 15px;
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-3);
  line-height: 28.8px;
}

.hero-section__div_left__users > div > div {
  position: relative;
}

.hero-section__div_left__users > div > div > .total-users {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid white;
  left: -10px;
  top: 0;
  left: -10px;
  right: 0;
  bottom: 0;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: "ClashDisplay-Medium";
}
/* .hero-section__div_right img {
  width: 100%;
} */
/* .heroImg__web {
  display: block;
}
.heroImg__mob {
  display: none;
} */

.hero-section__div_right {
  position: relative;
  justify-self: right;

  display: flex;
  align-items: center;
  justify-content: right;
}

.hero__img-main {
  display: block;
  width: 80%;
  border-radius: 80px 0 80px 80px;
}

.img-1-container {
  position: absolute;

  left: -4.5%;
  top: 5.5%;
}

.img-2-container {
  position: absolute;

  left: 79.5%;
  top: 80%;
}

.img-3-container {
  position: absolute;

  left: 0%;
  top: 37%;
}

.hero__img-1 {
  display: block;
}
.hero__img-2 {
  display: block;
}
.hero__img-3 {
  display: block;
}

.swal2-confirm {
  background-color: var(--btn-clr) !important;
  color: #000000 !important;
}

/* -----------------Proceed Section------------------- */
.proceed-section {
  padding: 40px 0;
}

.proceed-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.proceed-section__flex {
  display: grid;
  grid-template-columns: 1fr 130px 1fr 130px 1fr;
  grid-column-gap: 15px;
}

.proceed-section__flex .proceed-section__flex__card {
  background-color: var(--clr-1);
  border-radius: 17px;
  padding: 35px 40px 35px 30px;
}
.proceed-section__flex .proceed-section__flex__card > h1 {
  font-family: "ClashDisplay-Semibold";
  font-size: 64px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: var(--clr-3);
  opacity: 0.25;
}
.proceed-section__flex .proceed-section__flex__card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  color: var(--clr-3);
}
.arrow__img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.arrow__img img {
  width: 100%;
}
/* ---------------Offers Section---------------- */
.offers-section {
  width: 100%;
  background-color: #f8f8f8;
}
.offers-section__div-temp{
  padding: 30px 0;
}

.offers-section__div {
  padding: 20px 0 100px 0;
}
.offers-section__div > h2,
.offers-section__div-temp > h2 {
  text-align: center;
  margin-bottom: 10px;
}
.offers-section__div > p,
.offers-section__div-temp > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  text-align: center;
  color: var(--clr-3);
  margin-bottom: 50px;
}

.offers-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px; 
}

#offer-container {
  display: flex;                  
  gap: 1rem;                      
  overflow-x: auto;               
  scroll-behavior: smooth;        
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 1500px; 
  padding: 1rem;
  border-radius: 6px;
}

#offer-container::-webkit-scrollbar {
  display: none;
}

.offers-section__div__flex__card {
  flex: 0 0 auto; 
  width: 250px;    
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.offers-section__div__flex__card a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.offers-section__div__flex__card a img {
  width: 90%;
  object-position: center;
  object-fit: cover;
  height: 150px;
  border-radius: 16px 0px 16px 16px;
  margin: 0 auto;
  z-index: 10;
}

.offers-section__div__flex__card__offerTag {
  position: absolute;
  top: 14px;
  left: 5%;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
  z-index: 11;
  background-color: var(--btn-clr);
  padding: 8px 12px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  color: white;
}
.offers-section__div__flex__card__offerTime {
    position: absolute;
    top: 14px;
    right: 5%;
    font-size: 14px;
    font-weight: 500;
    line-height: 22.4px;
    text-align: right;
    z-index: 11;
    background-color: #007bff; /* bleu */
    padding: 8px 12px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    color: #fff;
}

.offers-section__div__flex__card__content {
  padding: 36px 14px 28px 14px;
  margin-top: -20px;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
}

.offers-section__div__flex__card__content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}
.offers-section__div__flex__card__content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  color: var(--clr-3);
  text-align: left;
  margin: 0; 
}

.offers-section__div__flex__card__content__des {
  display: none;
  margin-top: 10px;
}

.offers-section__div__flex__card__content::after {
  content: "+";
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #ff4747;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
}
.offers-section__div__flex__card__content.clicked::after {
  content: "-";
  background-color: #ff4d4d;
}
.clicked .offers-section__div__flex__card__content__des {
  display: block;
}

.scroll-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  margin: 0 1rem;
  user-select: none; 
}

.btn_offers_inscription {
  padding: 10px 18px 10px 18px;
  outline: none;
  border: none;
  margin: 5px;
  border-radius: 20px 0px 20px 20px;
  background-color: var(--btn-clr);
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  margin-top:10px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  color: black;
  position: relative;
}

.moreOffers__btn {
  padding: 20px 36px 20px 36px;
  outline: none;
  border: none;
  margin: 5px;
  border-radius: 20px 0px 20px 20px;
  background-color: var(--btn-clr);
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  margin-top: 45px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  color: white;
}

.container_offers_btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {

  .offers-wrapper {
    max-width: 100%;
  }

  #offer-container {
    max-width: 100%;
    padding: 0.5rem;
  }

  .scroll-btn {
    display: none;
  }
}


@keyframes slide {
  0% {
    height: 10%;
  }
  50% {
    height: 50%;
  }
  100% {
    height: 100%;
  }
}
@keyframes slideUp {
  0% {
    height: 100%;
  }
  50% {
    height: 50%;
  }
  100% {
    height: 0;
  }
}
/* -------------Discount Section-------------- */
.discount-section {
  background-color: black;
  background-image: url("../assets/images/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.discount-section h2 {
  margin-bottom: 40px;
  color: white;
}

.discount-section__flex {
  display: grid;
  grid-template-columns: 5fr 3fr;
  grid-column-gap: 40px;
}
.discount-section__flex__left {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  width: 100%;
  align-items: flex-start;
  padding: 30px 0;
}

.discount-section__flex__right {
  margin-left: auto;
  height: 100%;
  width: 100%;
}

.discount-section__flex__right img {
  width: 100%;
  height: 100%;
}
/* ---------------FAQs Section--------------- */
.faq-section {
  width: 100%;
  background-color: white;
  padding: 80px 0;
  position: relative;
}
.faq-section__div > h2 {
  text-align: center;
  margin-bottom: 45px;
}
.faq_floatImg_1 {
  position: absolute;
  width: 200px;
  top: 20px;
  left: 0;
  z-index: 10;
}

.faq-section-container {
  width: 900px;
  max-width: 92%;
  margin: 0 auto;
}

.accordion {
  width: 100%;
  margin: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.accordion-title {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: var(--clr-3);
}
.accordion-title h3 {
  padding-right: 26px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28.8px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.accordion-title h3 i {
  font-size: 9px;
  padding-right: 11px;
}
.accordion-toggle {
  font-size: 27px;
  position: relative;
  display: block;
  color: black;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 0;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}

.accordion-content.active {
  max-height: 500px; /* Set to a large enough value */
  opacity: 1;
  padding: 0 0 20px 0; /* Ensure padding is added when active */
}

.accordion-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  text-align: left;
  color: var(--clr-3);
  margin-left: 15px;
}
.accordion-content ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-top: 0;
}
.accordion-content ul li {
  margin-left: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  text-align: left;
  color: var(--clr-3);
}
.accordion-content ul li::marker {
  font-size: 6px;
}
.adisplay {
  display: none;
}
.adisplay_block {
  display: block;
}
/* ------------Subscribe Section------------- */
.subscribe-section {
  width: 100%;
  background-color: var(--clr-1);
  background-image: url("../assets/images/Shapes.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.subscribe-section__div {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.subscribe-section__div h2 {
  text-align: center;
  width: 70%;
  margin-bottom: 10px;
}

.subscribe-section__div p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  text-align: center;
  color: var(--clr-3);
  width: 70%;
  margin: 10px auto 40px auto;
}

.subscribe-section__div .hero-section__div_left__inputDiv {
  max-width: 620px;
  width: 90%;
}
.subscribe_floatImg_1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.subscribe_floatImg_2 {
  position: absolute;
  top: -180px;
  right: 0;
  z-index: 10;
}
/* -----------Reels Section------------- */
.reels-section {
  width: 100%;
  background-color: white;
  padding: 60px 0;
}
.reels-section__heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.reels-section__heading h2 {
  text-align: left;
}
.joinInsta_btn1,
.joinInsta_btn2 {
  outline: none;
  border: none;
  background-color: transparent;
  display: block;
}

.joinInsta_btn1 a,
.joinInsta_btn2 a {
  background-image: url("../assets/images/insta\ icon\ bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 16px;
  font-weight: 600;
  line-height: 25.6px;
  color: white;
  padding: 14px 28px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
  border-radius: 20px 0px 20px 20px;
  transform: scaleX(1);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.joinInsta_btn1 a:hover,
.joinInsta_btn2 a:hover {
  transform: scaleX(1.05);
}
.joinInsta_btn1 a i,
.joinInsta_btn2 a i {
  font-size: 20px;
}
.joinInsta_btn2 {
  display: none;
}
.mySwiper {
  width: 100%;
  height: 100%;
  padding: 0 30px;
  margin: 60px 0 30px 0;
}

.swiper-slideReels {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px 0px 40px 40px;
  position: relative;
  height: 360px;
}

.swiper-slideReels::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 59.9%, #000000 93.75%);
  border-radius: 40px 0px 40px 40px;
}
.swiper-slideReels > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 40px 0px 40px 40px;
}
.swiper-slide__content {
  position: absolute;
  bottom: 25px;
  left: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  z-index: 15;
}

.swiper-slide__content img {
  width: 25px;
  margin-right: 15px;
}
.swiper-slide__content p span:first-of-type {
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  color: #bdbdbd;
  display: block;
  margin-bottom: 4px;
}
.swiper-slide__content p span:last-of-type {
  font-family: "ClashDisplay-Medium";
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  letter-spacing: -0.02em;
  display: block;
  color: white;
  padding-right: 10px;
}
/* ---------------Footer---------------- */
footer {
  width: 100%;
  background-color: black;
}

.footer__div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0 40px 0;
  border-bottom: 1px solid #303030;
}

.footer__div p {
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  text-align: center;
  color: white;
  margin: 20px 0 0 0;
}

.footer__div p > span {
  color: #bdbdbd;
  display: block;
}
.footer__div nav {
  margin: 20px 0 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 5px;
}
.footer__div nav a {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  color: #bdbdbd;
  transition: all 0.4s ease-in-out;
}
.footer__div nav a:hover {
  color: white;
}

.footer__div > div a {
  background-color: #303030;
  color: white;
  width: 35px;
  height: 35px;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 2px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.footer__div > div a:hover {
  background-color: var(--btn-clr);
  color: black;
}

.footer__div img{
  width: 60px;
  height: auto;
}

.footer__copyright {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  color: #bdbdbd;
  padding: 20px 10px;
}

.selected_icon {
  background-color: var(--btn-clr) !important;
  color: black !important;
}

/* --------------Legal and other Pages------------------- */
.terms-section {
  margin: 90px auto;
}
.terms-section h2 {
  font-family: "ClashDisplay-Semibold";
  font-size: 48px;
  font-weight: 600;
  line-height: 57px;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}

.terms-section h3 {
  font-family: "ClashDisplay-Semibold";
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.48px;
  margin: 18px 0 14px 0;
}

.terms-section p {
  font-size: 18px;
  line-height: 28px;
  color: #7e7b7b;
  margin-bottom: 15px;
}

.terms-section ul {
  list-style-type: disc;
  margin-bottom: 15px;
  list-style-position: inside;
}

.terms-section ul li {
  margin-bottom: 4px;
  color: #7e7b7b;
  font-size: 18px;
  line-height: 28px;
}
.terms-section ul li b {
  color: black;
}
.terms-section p b {
  color: black;
}
.terms-section a {
  text-decoration: underline;
}

.terms-section div span {
  display: block;
  margin-bottom: 2px;
  font-size: 18px;
  line-height: 28px;
  color: #7e7b7b;
}

.terms-section ul li::marker {
  color: black;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center; 
  z-index: 999;
}

.modal-subscriptions-succesful {
  max-width: 750px;
  border: 1px solid black;
  overflow: hidden;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); 
  z-index: 1000;
}

.top-illustration-modal-subscription {
  display: flex;
  justify-content: center;
}

.top-illustration-modal-subscription img {
  flex: 1;
  width: 100%;
  height: auto;
  object-fit: cover; 
}
.title-subscription-succes{
  top: -70px;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.title-subscription-succes h1{
  font-weight: bold;
  font-size: 48px;
}
.modal-description-subscription-succesful{
  top: -100px;
  margin-top: 2em;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.global-modal-subscription-information{
  top: -80px;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.modal-subscription-information{
  padding: 20px;
  background-color: black;
  border-radius: 10px;
  color: white;
  text-align: center;
  width: 50%;
}
.modal-subscription-information h3{
  font-weight: bold;
  font-size: 45px;
  color: #ffe600;
  margin: 0px;
}
.global-add-pass-wallet{
  top: -50px;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.add-wallet-button{
  background-color: black;
  color: white;
  margin-bottom: 1em;
  padding: 1em;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap:5px;
  justify-content: center;
  border: none;
}
.imgWallet{
  width: 10%;
  height: auto;
}
.imgWalletGoogle{
  cursor: pointer;
}

.blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 999;
}

.popup-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  max-width: 90%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  padding: 20px;
  z-index: 1000;
  text-align: center;
}

.valid-btn {
  padding: 0px 32px;
  border-radius: 20px 0px 20px 20px;
  background-color: #ff4747;
  color: black;
  text-decoration: none;
  border: none;
  height: 55px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.container-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

input[type="email"] {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  background-color: #f3f3f3;
  border: none;
}

.popup-content p{
  margin-top: 10px;
}
.offers-section__div__flex__card.blur {
  filter: blur(4px);
  pointer-events: none;
  transition: filter 0.3s ease;
}
.blur {
  filter: blur(4px);
  pointer-events: none;  
  user-select: none;     
  transition: filter 0.3s ease;
}

.wallet-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

.wallet-button:focus {
  outline: none;
}

.wallet-button,
.wallet-button img {
  cursor: pointer;
}

input.invalid {
  border: 2px solid red;
  outline: none;
  padding: calc(0.5em - 1px) calc(1em - 1px);
}

input:focus.invalid {
  border-color: red;
}
