@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap&subset=cyrillic');



/* === GLOBAL BEST PRACTICE === */
*, *::before, *::after {
  box-sizing: border-box;
}


body {
   background: linear-gradient(
    180deg,
    #1A4D2E 0%,      /* Lighter tint */
    #17643A 31%,     /* Slightly lighter */
    #0F361B 52%,     /* Main color */
    #17643A 72%,     /* Repeat lighter */
    #1A4D2E 92%      /* Lighter tint */
  );
  /*font-size: 1.25rem; /* Set body text size */
  font-family: Noto sans-serif, sans-serif;
  font-weight: 400; 
  line-height: 1.5; /* Set line height */
}



body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/fabric-of-squares.png'); /* example soft texture */
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
}

/* =========== MENU ===============*/



/* ------- Mobile Hamburger Menut ---------*/

.hamburger-flex-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: auto;
  overflow: visible;
  z-index: 999;
  min-height: 5rem;
  box-sizing: border-box;
}

.hamburger-link {
  display: flex;
  align-items: center;      /* vertical centering */
  justify-content: flex-end;/* horizontal right alignment */
  width: 100%;
  height: 100%;
  min-height: 5rem;         /* match your container */
  box-sizing: border-box;
  text-decoration: none;    /* remove underline */
}

.hamburger {
  display: inline-block;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 6px;
  width: 28px;
  height: 4px;
  background: #6a11cb;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.68,-0.55,.27,1.55);
}

.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 18px; }
.hamburger span:nth-child(3) { top: 26px; }

#hamburger-toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#hamburger-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}
#hamburger-toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#hamburger-toggle { display: none; }




/* =========== HERO: VISUAL ===============*/

/* Video Hero */

#recorddiv1099745476 .t-cover__filter::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  /*background: linear-gradient(120deg, rgba(255,214,250,0.22) 0%, rgba(241,48,48,0.06) 100%);*/
  background: linear-gradient(120deg, rgba(15,54,27,0.22) 0%, rgba(15,54,27,0.06) 100%);
}




/* ================= HERO: Title =================== */

#rec1036804186 .t001__title {
  background: linear-gradient(90deg, #D13EDF 0%, #FFD6FA 60%, #9A2DB8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 12px rgba(209,62,223,0.08);
}





/* ================= Buttons ===================== */

.sd-button-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
}

.sd-button {
  background: linear-gradient(90deg, #FF7D54 0%, #FF7D54 100%);
  color: #0F361B;
  border: none;
  border-radius: 99px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 24px rgba(209, 62, 223, 0.25);
  cursor: pointer;
  transition: background 0.25s, transform 0.18s, box-shadow 0.18s;
  outline: none;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  font-family: 'Noto Sans Display', sans-serif;
  /*padding: 12px 24px;*/
}

.sd-button:hover,
.sd-button:focus {
  background: linear-gradient(90deg, #9A2DB8 0%, #D13EDF 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(209, 62, 223, 0.35);
}

.sd-button-secondary {
  background: linear-gradient(90deg, #0F361B 0%, #0F361B 100%);
  color: #0F361B;
  border: 1px solid #F8E0B4;
  border-radius: 99px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px rgba(209, 62, 223, 0.10);
  cursor: pointer;
  transition: background 0.25s, color 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  outline: none;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  font-family: 'Noto Sans Display', sans-serif;
}

.sd-button-secondary:hover,
.sd-button-secondary:focus {
  background: linear-gradient(90deg, #FFD6FA 0%, #fff 100%);
  color: #0F361B;
  border-color: #9A2DB8;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px rgba(209, 62, 223, 0.18);
}

.sd-button,
.sd-button-secondary {
  padding: 12px 24px;
}

.sd-button:focus-visible,
.sd-button-secondary:focus-visible {
  outline: 2px solid #9A2DB8;
  outline-offset: 2px;
}

.sd-button:active,
.sd-button-secondary:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(209, 62, 223, 0.18);
}




/* Target the button inside your specific block */

/* TertiaryButton */

.uc-hero .t-btn {
    font-size: 18px !important;
    padding: 0.4em 0.234em;
}
  

 /* Button on Hero IMG */

.t001 .t001__btn {
    color: #F8E0B4 !important;
  background: #FF7D54 !important;
  border: 1.5px solid #FF7D54 !important;
  border-radius: 30px !important;
  font-family: 'Noto Sans Display', sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.5 !important;
  padding: 12px 48px;
  transition: 
    color 0.18s,
    border-color 0.18s,
    background 0.18s,
    box-shadow 0.18s !important;
}

#rec1036804186 .t001__btn:hover,
#rec1036804186 .t001__btn:focus {
  background: transparent !important;
    color: #9A2DB8 !important;
  border-color: #D13EDF !important;
  box-shadow: 0 2px 12px rgba(209, 62, 223, 0.10) !important;
}

.sd-button-tertiary {
  background: transparent;
  color: #9A2DB8;
  border: 1.5px solid #FF7D54;
  border-radius: 30px;
  font-family: 'Noto Sans Display', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  /*padding: 12px 48px;*/
  transition: 
    color 0.18s,
    border-color 0.18s,
    background 0.18s,
    box-shadow 0.18s;
}

.sd-button-tertiary:hover,
.sd-button-tertiary:focus {
  background: rgba(255,214,250,0.13);
  color: #FFD6FA;
  border-color: #D13EDF;
  box-shadow: 0 2px 12px rgba(209, 62, 223, 0.10);
}


.sd-button-quaternary {
  background: transparent;
  color: #9A2DB8;
  border: 1.5px solid #D13EDF;
  border-radius: 99px;
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(209, 62, 223, 0.10);
  transition: 
    background 0.25s,
    color 0.18s,
    border-color 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  gap: 0.5em;
  outline: none;
  position: relative;
  overflow: hidden;
}

.sd-button-quaternary:hover,
.sd-button-quaternary:focus {
  background: linear-gradient(90deg, #FFD6FA 0%, #FFD6FA 50%, #FFD6FA 100%);
  color: #9A2DB8;
  border-color: #9A2DB8;
  box-shadow: 0 4px 24px rgba(209, 62, 223, 0.18);
  transform: translateY(-2px) scale(1.04);
  border: 0px;
}





/* ============== HeroArrow ======================== */ 

/*.t-cover__arrow-svg {*/
/*  width: 38px;*/
/*  height: 19px;*/
/*  fill: #7D4E7D !important;*/
/*  filter: drop-shadow(0 4px 12px rgba(40, 10, 60, 0.32));*/
/*  transition: filter 0.25s;*/
/*}*/

.t-cover__arrow-svg {
  width: 20vw;    /* 8% of viewport width */
  height: 10vw;   /* Adjust ratio as needed */
  min-width: 24px;
  min-height: 12px;
  max-width: 60px;
  max-height: 60px;
  fill: #F8E0B4 !important;
  filter: drop-shadow(0 4px 12px rgba(40, 10, 60, 0.32));
  transition: filter 0.25s;
}

/* Optional: Slightly stronger shadow on hover/focus */
.t-cover__arrow-wrapper_animated:hover .t-cover__arrow-svg,
.t-cover__arrow-wrapper_animated:focus .t-cover__arrow-svg {
  filter: drop-shadow(0 8px 24px rgba(40, 10, 60, 0.45));
}


/* ================ SECTIONS ===================== */

/*.sun-small {*/
/*  background: linear-gradient(135deg, #EDB4EA 40%, #F13030 100%);*/
/*  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;*/
/*  padding: 0.168rem;*/
/*  color: #63535A;*/
/*  animation: blob-morph 8s ease-in-out infinite alternate;*/
/*}*/

/*@keyframes blob-morph {*/
/*  0% {*/
/*    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;*/
/*  }*/
/*  50% {*/
/*    border-radius: 60% 40% 50% 60% / 40% 60% 50% 60%;*/
/*  }*/
/*  100% {*/
/*    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;*/
/*  }*/
/*}*/


.sun-small {
  background: linear-gradient(
    135deg,
    #007100 0%,
    #007200 20%,
    #008a00 40%,
    #00d200 60%,
    #5cf700 80%,
    #7dff00 100%
  );
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  padding: 0.168rem;
  color: #63535A;
  animation: blob-morph 8s ease-in-out infinite alternate;
}

@keyframes blob-morph {
  0% {
    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  }
  50% {
    border-radius: 60% 40% 50% 60% / 40% 60% 50% 60%;
  }
  100% {
    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  }
}

/* ================ CARDS: About ======================= */

.pattern-yoga {
  width: 100px;
  height: 100px;
  border-radius: 9%;
  overflow: hidden;
  background: linear-gradient(0deg, #ffd6fa 0%, #EDB4EA 100%);
  position: relative;
  box-shadow: 0 4px 16px rgba(125, 78, 125, 0.08), 0 1.5px 6px rgba(0,0,0,0.04);
 transition: 
    box-shadow 0.25s cubic-bezier(.4,2,.3,1),
    transform 0.25s cubic-bezier(.4,2,.3,1);
    background-color: transparent;
}

.pattern-yoga::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: transparent;
  background: repeating-linear-gradient(
    90deg,
    rgba(209,62,223,0.07) 6px 14px,
    transparent 14px 20px
  );
  border-radius: 9%;
  pointer-events: none;

  /* Smoother, longer vertical fade */
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 35%,
    rgba(0,0,0,1) 35%,
    rgba(0,0,0,0.3) 55%,
    transparent 75%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 35%,
    rgba(0,0,0,1) 35%,
    rgba(0,0,0,0.3) 55%,
    transparent 75%
  );
}

.pattern-yoga:hover,
.pattern-strength:hover,
.pattern-breath:hover {
  box-shadow: 0 8px 32px rgba(125,78,125,0.16), 0 4px 16px rgba(209,62,223,0.12);
  transform: translateY(-6px) scale(1.025);
  cursor: pointer;
  z-index: 11;
  background-color: transparent;
}


.pattern-strength {
  width: 100px;
  height: 100px;
  border-radius: 9%;
  overflow: hidden;
  background: linear-gradient(0deg, #FFDAD3 0%, #FFD6FA 100%);
  position: relative;
  box-shadow: 0 4px 16px rgba(125, 78, 125, 0.08), 0 1.5px 6px rgba(0,0,0,0.04);
  transition: 
    box-shadow 0.25s cubic-bezier(.4,2,.3,1),
    transform 0.25s cubic-bezier(.4,2,.3,1);
    
}


.pattern-strength::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(125, 78, 125, 0.08) 1.5px, transparent 2.5px),
    radial-gradient(circle, rgba(241, 48, 48, 0.06) 1.5px, transparent 2.5px);
  background-size: 18px 18px, 18px 18px;
  background-position: 0 0, 9px 9px;
  border-radius: 9%;
  pointer-events: none;

  /* Smoother, longer vertical fade */
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 35%,
    rgba(0,0,0,1) 35%,
    rgba(0,0,0,0.3) 55%,
    transparent 75%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 35%,
    rgba(0,0,0,1) 35%,
    rgba(0,0,0,0.3) 55%,
    transparent 75%
  );
}

.pattern-breath {
  width: 100px;
  height: 100px;
  border-radius: 9%;
  overflow: hidden;
  background: linear-gradient(0deg, #FFDAD6 0%, #FFD6FA 100%);
  position: relative;
  box-shadow: 0 4px 16px rgba(125, 78, 125, 0.08), 0 1.5px 6px rgba(0,0,0,0.04);
  transition: 
    box-shadow 0.25s cubic-bezier(.4,2,.3,1),
    transform 0.25s cubic-bezier(.4,2,.3,1);
}

.pattern-breath::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(125, 78, 125, 0.06) 0 6px,
      transparent 6px 24px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(241, 48, 48, 0.04) 0 4px,
      transparent 4px 20px
    );
  border-radius: 9%;
  pointer-events: none;
  opacity: 0.8;

  /* Smoother, longer vertical fade */
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 35%,
    rgba(0,0,0,1) 35%,
    rgba(0,0,0,0.3) 55%,
    transparent 75%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 35%,
    rgba(0,0,0,1) 35%,
    rgba(0,0,0,0.3) 55%,
    transparent 75%
  );
}



.card-svg-yoga {
  mix-blend-mode: difference; /* or try soft-light, overlay, etc. */
  opacity: 0.95;            /* Optional: further soften the effect */
}

.card-svg-strength {
  mix-blend-mode: difference; /* or try soft-light, overlay, etc. */
  opacity: 0.99;            /* Optional: further soften the effect */
}

.card-svg-breath {
  mix-blend-mode: difference; /* or try soft-light, overlay, etc. */
  opacity: 0.95;            /* Optional: further soften the effect */
}




/* ================ CARDS: Preview ======================= */


.trust-symbol-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: relative;
}

.trust-symbols-bg {
  background: linear-gradient(120deg, #F6E8EA 0%, #FFD6FA 100%);
  border-radius: 24px;
  padding: 0.8rem 0.8rem;
  box-shadow: 0 4px 24px rgba(154, 45, 184, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin: 2rem auto;
  /*max-width: 800px;*/

}


/* ================ CARDS: TOOLS ======================= */



.scene-background {
  width: 100vw;
  min-height: 100vh;
  background: linear-gradient(0deg, #ffd6fa 0%, #EDB4EA 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(125, 78, 125, 0.08), 0 1.5px 6px rgba(0,0,0,0.04);

  /* Elliptical radial gradient for stronger top/bottom fade */
  -webkit-mask-image: radial-gradient(
    ellipse 60% 40% at 50% 50%,
    #fff 40%,
    rgba(255,255,255,0.92) 55%,
    rgba(255,255,255,0.7) 65%,
    rgba(255,255,255,0.45) 75%,
    rgba(255,255,255,0.18) 85%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 60% 40% at 50% 50%,
    #fff 40%,
    rgba(255,255,255,0.92) 55%,
    rgba(255,255,255,0.7) 65%,
    rgba(255,255,255,0.45) 75%,
    rgba(255,255,255,0.18) 85%,
    transparent 100%
  );
}

.scene-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(209,62,223,0.018) 6px 14px,
    transparent 14px 20px
  );
  pointer-events: none;
}


.scene-background-tools {
  width: 100vw;
  min-height: 100vh;
  background: linear-gradient(0deg, #ffd6fa 0%, #EDB4EA 150%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(125, 78, 125, 0.08), 0 1.5px 6px rgba(0,0,0,0.04);

  /* Elliptical radial gradient for stronger top/bottom fade */
  -webkit-mask-image: radial-gradient(
    ellipse 60% 40% at 50% 50%,
    #fff 40%,
    rgba(255,255,255,0.92) 55%,
    rgba(255,255,255,0.7) 65%,
    rgba(255,255,255,0.45) 75%,
    rgba(255,255,255,0.18) 85%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 60% 40% at 50% 50%,
    #fff 40%,
    rgba(255,255,255,0.92) 55%,
    rgba(255,255,255,0.7) 65%,
    rgba(255,255,255,0.45) 75%,
    rgba(255,255,255,0.18) 85%,
    transparent 100%
  );
}

.scene-background-tools::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(125,78,125,0.03) 0.8px, transparent 1.2px);
  background-size: 16px 16px;
  pointer-events: none;
}



.bg-vertical-lines {
  background-image: repeating-linear-gradient(
    90deg,
    rgba(209,62,223,0.025) 0 8px,
    transparent 8px 16px
  );
  overflow: visible;
  border-radius: 30px;
  transition: 
    box-shadow 0.25s cubic-bezier(.4,2,.3,1),
    transform 0.25s cubic-bezier(.4,2,.3,1);
  box-shadow: 0 2px 12px rgba(125,78,125,0.07), 0 1.5px 6px rgba(0,0,0,0.04);
}

.bg-vertical-lines:hover {
  box-shadow: 0 8px 32px rgba(125,78,125,0.16), 0 4px 16px rgba(209,62,223,0.12);
  transform: translateY(-6px) scale(1.025);
  cursor: pointer;
}


/* ================ CARDS: FREE  ======================= */


.free-try-card--telegram {
  /*background: rgba(255, 255, 255, 0.92);*/
  border-radius: 2px 2px 2px 18px;
  box-shadow: 0 2px 12px rgba(125, 78, 125, 0.07);
  transition: box-shadow 0.22s, transform 0.22s;
  border-top: 4px solid transparent;
  background: linear-gradient(135deg, #fff0f5 0%, #ffd6d9 100%);
  background-size: 300% 100%; /* 3 cards horizontally */
  background-position: left center;
}

.free-try-card--telegram:hover {
  box-shadow: 0 8px 32px rgba(125, 78, 125, 0.14), 0 4px 16px rgba(209, 62, 223, 0.10);
  transform: translateY(-6px) scale(1.025);
  cursor: pointer;
  border-top: 4px solid #229ED9;
}

.free-try-card--youtube {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px 2px 2px 2px;
  box-shadow: 0 2px 12px rgba(125, 78, 125, 0.07);
  transition: box-shadow 0.22s, transform 0.22s;
  border-top: 4px solid transparent;
  background: linear-gradient(135deg, #fff0f5 0%, #ffd6d9 100%);
  background-size: 300% 100%; /* 3 cards horizontally */
  background-position: center center;
}

.free-try-card--youtube:hover {
  box-shadow: 0 8px 32px rgba(125, 78, 125, 0.14), 0 4px 16px rgba(209, 62, 223, 0.10);
  transform: translateY(-6px) scale(1.025);
  cursor: pointer;
  border-top: 4px solid #FF4343;
}

.free-try-card--courses {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px 2px 18px 2px;
  box-shadow: 0 2px 12px rgba(125, 78, 125, 0.07);
  transition: box-shadow 0.22s, transform 0.22s;
  border-top: 4px solid transparent;
  background: linear-gradient(135deg, #fff0f5 0%, #ffd6d9 100%);
  background-size: 300% 100%; /* 3 cards horizontally */
  background-position: right center;
}

.free-try-card--courses:hover {
  box-shadow: 0 8px 32px rgba(125, 78, 125, 0.14), 0 4px 16px rgba(209, 62, 223, 0.10);
  transform: translateY(-6px) scale(1.025);
  cursor: pointer;
  border-top: 4px solid #7d4e7d;
}


/* ================ CARDS: MEMBERS ======================= */



.membership-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 30px 30px 0px 0px;
  background: linear-gradient(135deg, #fff0f5 0%, #ffd6d9 100%);
  background-size: 300% 100%; /* 3 cards horizontally */
  background-position: right center;
}

.membership-card-calendar {
  border-radius: 30px 30px 0px 0px;
  background: linear-gradient(135deg, #fff0f5 0%, #ffd6d9 100%);
  background-size: 300% 100%;
  background-position: right center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(125,78,125,0.07), 0 1.5px 6px rgba(0,0,0,0.04);
}





/* =================== CARDS: PRICING ===================== */



.pricing-section h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #22181c;
  font-family: 'Noto Sans Display', sans-serif;
}

.pricing-section p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  color: #22181c;
  font-family: 'Noto Sans Display', sans-serif;
}

.pricing-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 0.3rem;
}

.pricing-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 2rem;
  background: linear-gradient(135deg, #fff0f5 0%, #ffd6d9 100%);
  background-size: 300% 100%;
  background-position: right center;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  /* Glass look */
  background: rgba(255, 255, 255, 0.15); /* transparent white */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.pricing-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(180,122,255,0.06), 0 2px 8px rgba(125,78,125,0.03);
  padding: 3.5rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content:space-evenly;
  text-align: left;
  transition: box-shadow 0.2s;
  flex: 1 1 auto;
  min-width: 280px;
  max-width: 350px;
  min-height: 520px;
  box-sizing: border-box;
  font-family: 'Noto Sans Display', sans-serif;
  font-weight: 400;
}


.pricing-card-intro {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(180,122,255,0.06), 0 2px 8px rgba(125,78,125,0.03);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content:space-evenly;
  text-align: left;
  transition: box-shadow 0.2s;
  flex: 1 1 auto;
  min-width: 280px;
  max-width: 350px;
  min-height: 520px;
  box-sizing: border-box;
  font-family: 'Noto Sans Display', sans-serif;
  font-weight: 400;
}


/* Left card */
.pricing-card--side {
  background: none;
  color: #22181c;
}

/* Center card */
.pricing-card--center {
  flex: 1;
  background: linear-gradient(135deg, #edb4ea 0%, #d13edf 100%);
  color: #22181c;
  box-shadow: 0 4px 24px rgba(209,62,223,0.13), 0 2px 8px rgba(125,78,125,0.05);
  position: relative;
  border: none;
}

/* Custom gradient card */
.pricing-card--custom {
  flex: 1;
  background: linear-gradient(135deg, #f4e9fa 0%, #d6c6f7 100%);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.pricing-card--center .pricing-price {
  color: #22181c;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
}

.pricing-period {
  font-size: 1.1rem;
  font-weight: 400;
}

.pricing-card--center .pricing-period {
  color: #22181c;
}

.pricing-card-intro {
  flex: 1 1 auto;
  min-width: 280px;
  max-width: 350px;
  min-height: 520px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #fff0f5 0%, #ffd6d9 100%);
  background-size: 300% 100%; /* 3 cards horizontally */
  background-position: left center;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex-grow: 1;
  font-family: 'Noto Sans Display', sans-serif;
  height: 100%;
  padding: 0;
}

.card-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.pricing-card-intro .card-content h2 {
  font-family: 'Dancing Script', cursive;
  color: #b47aff;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 0.7em;
  text-shadow: 0 2px 8px rgba(180,122,255,0.08);
  text-align: left;
}

.pricing-card-intro img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  margin: 0;
  box-shadow: 0 4px 16px rgba(180,122,255,0.08);
}

.pricing-card-intro .card-content h2,
.pricing-card-intro .card-content p {
  padding-left: 1.5em;
  padding-right: 1.5em;
  text-align: left;
}

.pricing-card-intro .card-content p {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
}

.pricing-divider {
  width: 100%;
  height: 1px;
  background: #22181c;
  opacity: 0.1;
  margin: 0.1em 0 1em 0;
  border-radius: 2px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.2em 0 1.2em 0;
}

.pricing-features li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 0.7em;
  font-size: 1.08rem;
  color: #473a74;
  font-family: 'Noto Sans Display', sans-serif;
}

.pricing-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #b47aff;
  font-size: 1.1em;
  line-height: 1;
}

.pricing-card--center .pricing-features li::before {
  color: #f4e8fa;
}

.card-actions .sd-button {
      background: linear-gradient(90deg, #D13EDF 0%, #9A2DB8 100%);
  color: #fff;
  border: none;
  border-radius: 99px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 24px rgba(209, 62, 223, 0.25);
  cursor: pointer;
  transition: background 0.25s, transform 0.18s, box-shadow 0.18s;
  outline: none;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  font-family: 'Noto Sans Display', sans-serif;
}




/* ================= REVIEW CONTAINER ================== */



.review-container {
  position: relative;
  width: 100vw;
  max-width: 1200px;
  z-index: 5;
  overflow-x: visible;
  margin: 0 auto;
  justify: center;
}

/* === FLEX ROW FOR CARDS === */
.scroll-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  height: clamp(20rem, 22vw, 22.5rem);
  z-index: 10;
  padding-bottom: 1.2rem; 
  padding-top: 1.2rem;
  -webkit-overflow-scrolling: touch;
  /*min-width: 90vw;*/
  /*width: 100%;*/
  
}

/* --- INDIVIDUAL CARD WRAPPER --- */
.scroll-item {
  flex: 0 0 auto;
  /*min-width: clamp(20rem, 80vw, 22rem);*/
  width: clamp(20rem, 80vw, 22rem);
  margin: 0;
  padding: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* --- REVIEW CARD --- */

.review-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 1.125rem; /* 18px */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem 1.25rem;
  min-height: 15rem;
  background: linear-gradient(135deg, #f4e9fa 0%, #d6c6f7 100%);
  box-shadow: 0 0.5rem 2rem rgba(154, 45, 184, 0.08);
  overflow: auto;
}

/* --- CARD HEADER: AVATAR, NAME, DETAILS --- */
.review-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 0.125rem solid #D13EDF;
  box-shadow: 0 0.125rem 0.5rem rgba(209,62,223,0.10);
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-author {
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 1rem;
  color: #9A2DB8;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.review-details {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.9rem;
  color: #7a4f9a;
  margin-bottom: 0.375rem;
}
.review-details span {
  font-weight: 500;
}

/* === STAR RATING === */
.star-rating {
  display: flex;
  gap: 0.125rem;
}
.star {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.star-rating path {
  fill: #9A2DB8;
}

/* === CARD CONTENT === */
.review-title {
  font-family: 'Noto Sans Display', sans-serif;
  font-size: clamp(1.1rem, 1vw, 1.5rem);
  color: #333;
  margin: 0 0 0.625rem 0;
}

.review-text {
  font-family: 'Noto Sans', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.5;
  color: #555;
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  overflow: hidden;
  max-width: 100%;
}

.review-member-type {
  color: #B4A7D6;
}



/* --- Review Buttons --- */

.custom-arrow-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  position: static;   /* Remove absolute positioning */
  transform: none;    /* Remove transform */
  padding: 0;         /* Remove side padding */
  pointer-events: auto;
  z-index: auto;
}

.arrow-btn {
  background: linear-gradient(135deg, #f4e9fa 0%, #d6c6f7 100%);
  border: none;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 1.5rem rgba(209,62,223,0.13), 
              0 0.125rem 0.5rem rgba(125,78,125,0.05);
  cursor: pointer;
  transition: all 0.22s ease;
  outline: none;
  pointer-events: auto;
}

.arrow-btn:active {
  transform: scale(0.96) translateZ(0);
}

.arrow-btn:hover,
.arrow-btn:focus {
  background: linear-gradient(135deg, #f0e5f6 0%, #d0c0f0 100%);
  box-shadow: 0 0.5rem 2rem rgba(125, 78, 125, 0.14), 
              0 0.25rem 1rem rgba(209, 62, 223, 0.10);
}

.arrow-btn:focus {
  outline: 2px solid #9A2DB8;
  outline-offset: 2px;
}

.arrow-btn svg {
  width: 60%;
  height: 60%;
  display: block;
  stroke: #9A2DB8;
  transition: stroke 0.18s;
}

.arrow-btn:hover svg,
.arrow-btn:focus svg {
  stroke: #D13EDF;
}


/* ==========================================================================
   Z — Footer
   ========================================================================== */

.sun {
  background: linear-gradient(135deg, #D13EDF 40%, #F13030 100%);
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  padding: 2rem;
  color: #63535A;
  animation: blob-morph 8s ease-in-out infinite alternate;
  /* Sun glow effect */
  box-shadow:
    0 0 32px 8px #F1303088,   /* outer warm glow */
    0 0 64px 16px #FFD6FA66,  /* pastel/pinkish halo */
    0 0 8px 2px #fff2;        /* subtle white core */
  animation:
    blob-morph 8s ease-in-out infinite alternate,
    sun-glow 3s ease-in-out infinite alternate;
}

@keyframes sun-glow {
  0% {
    box-shadow:
      0 0 32px 8px #F1303088,
      0 0 64px 16px #FFD6FA66,
      0 0 8px 2px #fff2;
  }
  100% {
    box-shadow:
      0 0 48px 16px #F13030aa,
      0 0 96px 32px #FFD6FA99,
      0 0 16px 4px #fff4;
  }
}


/* BIRD */

.hero-section {
  position: relative; /* container for absolute positioning */
  overflow: visible;
}

.bird {
  position: absolute;
  top: 35%;
  left: -40px; /* start just off left */
  width: 32px;
  height: 16px;
  z-index: 10;
  pointer-events: none;
  animation: fly 18s linear infinite;
}

/* Bird body */
.body {
  position: absolute;
  left: 10px;
  top: 6px;
  width: 12px;
  height: 8px;
  background: #9A2DB8;
  border-radius: 50% 50% 60% 60%;
  z-index: 2;
  box-shadow: 1px 2px 5px rgba(40,10,60,0.14);
  opacity: 0.2;
}

/* Wings */
.wing {
  position: absolute;
  top: 7px;
  width: 12px;
  height: 12px;
  background: transparent;
  border-top: 4px solid #352E34;
  border-radius: 50% 50% 0 0;
  transform-origin: left bottom;
  animation: flap 0.7s ease-in-out infinite alternate;
  z-index: 1;
  opacity: 0.2;
}

.wing.right {
  left: 14px;
  transform-origin: right bottom;
  border-top: 4px solid #352E34;
  animation-delay: 0.35s;
}

.wing.left {
  left: 2px;
}

@keyframes flap {
  0%   { transform: rotate(24deg); }
  100% { transform: rotate(-28deg); }
}

@keyframes fly {
  0%   { left: -40px; opacity: 0; }
  10%  { left: 0px; opacity: 1; }
  75%  { left: 100%; opacity: 1; }
  90%  { left: 115%; opacity: 0; }
  100% { left: 115%; opacity: 0; }
}



.clouds-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 180px;
  pointer-events: none;
  z-index: 10;
  overflow: visible;
}

/* Modern cloud styling as before */
.spot-cloud {
  position: absolute;
  left: 50%;
  top: 60px;
  width: 140px;
  height: 70px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50px 60px 40px 50px / 30px 50px 40px 40px;
  filter: blur(2px);
  opacity: 0.92;
  transform: translateX(-50px);
  animation: cloudOscillate 12s ease-in-out infinite;
  z-index: 2; /* Make sure it's in front of the sun */
}

.spot-cloud::before,
.spot-cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: inherit;
  filter: inherit;
}

.spot-cloud::before {
  width: 40px;
  height: 40px;
  top: -15px;
  left: 20px;
  transform: rotate(-5deg);
}

.spot-cloud::after {
  width: 60px;
  height: 50px;
  top: -10px;
  right: 30px;
  transform: rotate(3deg);
}

@keyframes cloudOscillate {
  0%   { transform: translateX(-50px); }
  50%  { transform: translateX(50px); }
  100% { transform: translateX(-50px); }
}







/* ======================= MEDIA =============================
==============================================================*/



/* 1. XXXS - Mobile Vertical (280px - 319px) */
@media screen and (max-width: 319px)  {
  /* iPhone 5, SE and similar small devices */
  
  .pricing-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;       
    min-width: 275px;
    width: 100%;
    margin: 0;
  }
  
  .pricing-row {
    display: flex;
    flex-direction: column;
    align-items: center;       
    min-width: 280px;
    padding: 0.2rem 0.2rem;
  }
  
  /* Original order: Intro (1st), Center (2nd), Right (3rd) */
  .pricing-card-intro {
    order: 3; /* Move intro card to the bottom */
  }
  .pricing-card--custom {
    order: 1; /* Center card becomes first */
  }
  .pricing-card--center {
    order: 2; /* Right card becomes second */
  }
  
  .trust-symbol-container {
    max-width: 200px; /* root em is 320px divided by root font size of 16 px*/
}

.review-container {
    padding-top: 1.5rem;
    /*width: auto;*/
    min-width: 100%;
  }
  .scroll-row {
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 0.75rem;
    
  }
  .scroll-item {
    min-width: 95vw;
    width: 95vw;
    max-width: 100vw;
  }
  .review-card {
    /*padding: 0.75rem 0.5rem;*/
    min-height: 16rem;
  }
  .review-avatar {
    width: 3.5rem;
    height: 3.5rem;
  }

  .custom-arrow-buttons {
    display: none !important;
}

}


/* 1. XXS - Mobile Vertical (320px - 479px) */
@media screen and (min-width: 320px) and (max-width: 479px)  {
  
  .pricing-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;       
    max-width: 320px;
    width: 100vw;
    margin: 0;
    
  }
  
  .pricing-row {
      display: flex;
    flex-direction: column;
    /*flex-wrap: wrap;*/
    align-items: center;       
    /*margin-left: auto;*/
    /*margin-right: auto;*/
     max-width: 320px;
    gap: 1.2rem;
    padding: 0.6rem 0.6rem;
    /*width: 100%;*/
        /*margin: 0;*/
    
  }
  
  /* Original order: Intro (1st), Center (2nd), Right (3rd) */
  .pricing-card-intro {
    order: 3; /* Move intro card to the bottom */
  }
  .pricing-card--custom {
    order: 1; /* Center card becomes first */
  }
  .pricing-card--center {
    order: 2; /* Right card becomes second */
  }
  
 .review-container {
    padding-top: 1.5rem;
    min-width: 100%;

  }
  .scroll-row {
    padding: 0 0.5rem;
    gap: 0.75rem;
  }
  .scroll-item {
    min-width: 80vw;
    width: 80vw;
    max-width: 85vw;
  }
  .review-card {
    padding: 0.9rem 0.6rem;
    min-height: 17rem;
  }
  .review-avatar {
    width: 4rem;
    height: 4rem;
  }

  .custom-arrow-buttons {
    display: none !important;
}
}




@media screen and (max-width: 479px) and (orientation: portrait) {
  .t001__buttons {
    padding-left: 10px;
}
/*.review-container {*/
/*    padding-top: 1.5rem;*/
    


/*  }*/
/*  .scroll-row {*/
/*    padding: 0 0.5rem;*/
/*    gap: 0.75rem;*/
/*  }*/
/*  .scroll-item {*/
/*    min-width: 90vw;*/
/*    width: 90vw;*/
/*    max-width: 95vw;*/
/*  }*/
/*  .review-card {*/
/*    padding: 0.9rem 0.6rem;*/
/*    min-height: 17rem;*/
/*  }*/
/*  .review-avatar {*/
/*    width: 4rem;*/
/*    height: 4rem;*/
/*  }*/

/*  .custom-arrow-buttons {*/
/*    display: none !important;*/
/*}*/
}





/* 2. XS - Mobile Horizontal (480px – 639px) */
@media (min-width: 480px) and (max-width: 639px) {
  
    .pricing-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;       
    min-width: 350px;
    width: 360px;
    margin: auto;
    
  }

   .pricing-row {
    flex-direction: column;
    /*flex-wrap: wrap;*/
    align-items: center;       
    /*margin-left: auto;*/
    /*margin-right: auto;*/
     max-width: 350px;
    gap: 1.2rem;
    padding: 0.6rem 0.6rem;
    width: 100vw;
        /*margin: 0;*/

  }
   
  
  /* Original order: Intro (1st), Center (2nd), Right (3rd) */
  .pricing-card-intro {
    order: 3; /* Move intro card to the bottom */
  }
  .pricing-card--custom {
    order: 1; /* Center card becomes first */
  }
  .pricing-card--center {
    order: 2; /* Right card becomes second */
  }
  .scroll-row {
    display: flex;
    padding: 0 0.5rem; 
    overflow-x: auto;
    gap: 1rem;
    width: auto; /* Let it grow with content */
    min-width: 100%; /* Prevents it from shrinking */
  }

 .review-container {
    padding-top: 1.75rem;
  }
  .scroll-row {
    padding: 0 1rem;
    gap: 1rem;
  }
  .scroll-item {
    min-width: 60vw;
    width: 60vw;
    max-width: 65vw;
  }
  .review-card {
    padding: 1rem 0.75rem;
    min-height: 18rem;
  }
  .review-avatar {
    width: 4.5rem;
    height: 4.5rem;
  }

}





/* 3. S - Tablet (640px–959px) */
@media (min-width: 640px) and (max-width: 959px) {

  

  
  .pricing-section {
     display: flex;
     flex-direction: column;
     flex-wrap: wrap;
      justify-content: center;
    align-items: center; 
    min-width: 620px;
    width: 640px;
  }
  
  .pricing-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;       /* Center cards horizontally in the row */
    /*margin-left: auto;*/
    /*margin-right: auto;*/
     max-width: 620px;
    gap: 1.2rem;
    padding: 1rem;
    width: 100vw;
  }
  /* Original order: Intro (1st), Center (2nd), Right (3rd) */
  .pricing-card-intro {
    order: 3; /* Move intro card to the bottom */
    
  }
  
  
  .pricing-card--custom {
    order: 1; /* Center card becomes first */
  }
  .pricing-card--center {
    order: 2; /* Right card becomes second */
  }
  
  .review-container {
    padding-top: 2rem;
  }
  .scroll-row {
    padding: 0 1.5rem;
    gap: 1.25rem;
  }
  .scroll-item {
    min-width: 35vw;
    width: 35vw;
    max-width: 35vw;
  }
  .review-card {
    padding: 1.25rem 1rem;
    min-height: 19rem;
  }
  .review-avatar {
    width: 5rem;
    height: 5rem;
  }

  .custom-arrow-buttons {
    display: none !important;
}
}



/* 4. M - Desktop (960px–1199px) */
@media (min-width: 960px) and (max-width: 1199px) {
  
    .pricing-section {
     display: flex;
     flex-direction: column;
     flex-wrap: wrap;
      justify-content: center;
    align-items: center; 
    min-width: 620px;
    width: 100%;
  }
  
  /*.pricing-row {*/
  /*  flex-direction: row;*/
  /*  flex-wrap: wrap;*/
    /*align-items: center;       */
    /*margin-left: auto;*/
    /*margin-right: auto;*/
  /*   max-width: 640px;*/
  /*  gap: 1.2rem;*/
  /*  padding: 1rem;*/
  /*  width: 100vw;*/
  /*}*/
  
    .pricing-row {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
    .pricing-card-intro {
    order: 3; /* Move intro card to the bottom */
    
  }
  
  
  .pricing-card--custom {
    order: 1; /* Center card becomes first */
  }
  .pricing-card--center {
    order: 2; /* Right card becomes second */
  }

  .review-container {
    padding-top: 2.5rem;
  }
  .scroll-row {
    padding: 0 2rem;
    gap: 1.5rem;
  }
  .scroll-item {
    min-width: 32vw;
    width: 32vw;
    max-width: 40vw;
  }
  .review-card {
    padding: 1.5rem 1.25rem;
    min-height: 20rem;
  }
  .review-avatar {
    width: 5.5rem;
    height: 5.5rem;
  }

  .custom-arrow-buttons {
    display: none !important;
}
  
}

/*@media and (min-width: 960px) and (max-width: 1199px) {*/
/*  .pricing-row {*/
/*    max-width: 940px;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*    flex-direction: row;*/
/*    gap: 1.5rem;*/
/*    padding: 1.5rem;*/
/*  }*/
  
 
/*}*/





/* 5. L - Desktop (1200px - 1919px) */
@media and (min-width: 1200px) {
    
  .review-container {
    padding-top: 3rem;
  }
  .scroll-row {
    padding: 0 2.5rem;
    gap: 2rem;
  }
  .scroll-item {
    min-width: 22rem;
    width: 22rem;
    max-width: 26rem;
  }
  .review-card {
    padding: 1.75rem 1.5rem;
    min-height: 22rem;
  }
  .review-avatar {
    width: 6rem;
    height: 6rem;
  }

  .custom-arrow-buttons {
    display: none !important;
}
}





/* 7. XL - Desktop (≥1920px) */

@media and (min-width: 1920px) {
    
   .review-container {
    padding-top: 3rem;
    justify-content: center;
  }
  .scroll-row {
    padding: 0 2.5rem;
    gap: 2rem;
  }
  .scroll-item {
    min-width: 22rem;
    width: 22rem;
    max-width: 26rem;
  }
  .review-card {
    padding: 1.75rem 1.5rem;
    min-height: 22rem;
  }
  .review-avatar {
    width: 6rem;
    height: 6rem;
  }
}

