/*
    Reversed the styles for mobile first development
*/

/*---------------------
    Mobile styles start
-----------------------*/
body {
  background: #fff;
}

/* --- Hero / Banner --- */
.banner-5 {
  padding: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}
#banner-5-section-1 {
  display: flex;
  padding: 72px 24px 0;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

#banner-5-section-1-small-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
#banner-5-section-1-small-text-charcoal {
  color: #303030;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}
#banner-5-section-1-small-text-medium {
  color: #6a6f76;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
#banner-5-section-1-big-text {
  max-width: 666px;
  color: #303030;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 0;
}
#banner-5-section-1-big-text-blue {
  color: #2290e9;
  font-size: 40px;
  font-weight: 700;
  line-height: 110%;
}
.hero-deco {
  display: none;
  position: absolute;
  width: 368px;
  height: 320px;
  top: 360px;
  pointer-events: none;
}
.hero-deco-left {
  left: -168px;
  transform: rotate(180deg) scaleY(-1);
}
.hero-deco-right {
  right: -174px;
}

/* --- Decorative Bubbles --- */
.bubble-wrapper {
  position: relative;
  background: linear-gradient(
    180deg,
    #ffffff 3%,
    #f4f6fb 35%,
    #f4f6fb 50%,
    #ffffff 100%
  );
}
.bubble {
  display: block;
  position: absolute;
  border-radius: 50%;
  background: #f5f6fc;
  pointer-events: none;
  z-index: 1;
  transform: translate(0, 0);
  animation-fill-mode: both;
}
.bubble:nth-child(odd) {
  animation: bubbleFloatOdd 12s linear infinite;
}
.bubble:nth-child(even) {
  animation: bubbleFloatEven 12s linear infinite;
}
.bubble:nth-child(1) {
  animation-delay: 0s;
}
.bubble:nth-child(2) {
  animation-delay: 0.25s;
}
.bubble:nth-child(3) {
  animation-delay: 0.75s;
}
.bubble:nth-child(4) {
  animation-delay: 1.25s;
}
.bubble:nth-child(5) {
  animation-delay: 1.45s;
}
.bubble:nth-child(6) {
  animation-delay: 1.75s;
}

.bubble-left-lg {
  width: 120px;
  height: 120px;
  top: 120px;
  left: -80px;
}
.bubble-left-md {
  width: 70px;
  height: 70px;
  top: 210px;
  left: 10px;
}
.bubble-left-sm {
  width: 40px;
  height: 40px;
  top: 290px;
  left: -5px;
}
.bubble-right-lg {
  width: 120px;
  height: 120px;
  top: 120px;
  right: -80px;
}
.bubble-right-md {
  width: 70px;
  height: 70px;
  top: 210px;
  right: 10px;
}
.bubble-right-sm {
  width: 40px;
  height: 40px;
  top: 290px;
  right: -5px;
}

/* --- Plans Section --- */
#plans-section {
  display: flex;
  padding: 40px 24px 16px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: transparent;
  position: relative;
  z-index: 2;
}
#toggle-plan {
  display: flex;
  padding: 8px;
  align-items: flex-start;
  border-radius: 50px;
  background: #f6f7fc;
  cursor: pointer;
}

.plan-button,
.plan-button-selected {
  display: flex;
  padding: 16px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 45px;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
}

.plan-button-selected {
  background: #fff;
  box-shadow: 0 0 12.3px 6px rgba(206, 213, 223, 0.2);
}

/*
  Supported by all Major browsers including Safari since 2022 (:has)
  https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Selectors/:has
*/
/*
  Daily x Monthly Plans section animated
*/
#toggle-plan:has(.plan-button-selected) ~ #daily-wash .plan-card {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}
#toggle-plan:has(.plan-button-selected) ~ #monthly-wash .plan-card {
  animation: fadeIn 0.5s ease-out 0s forwards;
  opacity: 0;
}

.plans-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.plan-card {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 12.3px 6px rgba(206, 213, 223, 0.2);
  overflow: hidden;
}
.plan-card-img {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.plan-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plan-cut-out {
  position: absolute;
  z-index: 4;
  bottom: -1px;
  right: -1.4px;
  min-height: 31px; /*Declarative*/
}

.plan-card-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px 16px 0 0;
}
.plan-card-img-overlay-navy {
  background: rgba(24, 42, 122, 0.4);
}
.plan-card-img-overlay-blue {
  background: linear-gradient(
    58deg,
    rgba(0, 80, 161, 0.12) 3.7%,
    rgba(0, 80, 161, 0.6) 96.3%
  );
}
.plan-card-img-overlay-gold {
  background: rgba(83, 74, 64, 0.25);
}
.plan-card-gold {
  overflow: visible;
  box-shadow: 0 0 12.3px 0px rgba(206, 213, 223, 0.2);
  position: relative;
}
.plan-card-img-gold {
  display: flex;
}

#plan-premium {
  display: flex;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  background: linear-gradient(-19deg, #ffaf25 7.31%, #ffe77c 92.69%);
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.plan-card-details {
  display: flex;
  padding: 0 24px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.plan-card-details-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 24px;
  color: #303030;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: normal;
}
.plan-card-details-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  color: #6a6f76;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.plan-card-details-small-text {
  display: flex;
  align-items: center;
  gap: 12px;
}
.plan-duration {
  display: flex;
  align-items: center;
  gap: 4px;
}
.plan-card-details-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 96px;
}
.plan-card-details-item {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}
.plan-card-details-price {
  color: #303030;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: normal;

  display: flex;
  align-items: center;
  gap: 4px;
}

.plan-card-details-price .aed-wrapper .aed {
  max-width: 34px; /*Match font-size w/2px offset*/
}

.book-plan-button {
  display: flex;
  padding: 19px 59px;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 32px;
  background: #2290e9;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.book-plan-button:hover {
  background: #1a7ad4;
}
.monthly-plans-grid {
  justify-content: center;
}
.monthly-plans-grid .plan-card {
  max-width: 470px;
}
.plan-card-details-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.plan-price-old {
  color: #303030;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: line-through;

  display: flex;
  align-items: center;
  gap: 4px;
}

.plan-price-old .aed-wrapper img {
  max-width: 16px;
}

.plan-premium-badge {
  display: flex;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  background: linear-gradient(-19deg, #ffaf25 7.31%, #ffe77c 92.69%);
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* --- Diamond Detailing --- */
.diamond-section {
  background: #fff;
  padding: 0 24px 64px;
}
.diamond-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.diamond-image {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}
.diamond-image video,
.testimonial-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card video {
  border-radius: 18px;
}

.diamond-image-overlay,
.testimonial-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 42, 122, 0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.diamond-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
}

.diamond-play-btn:hover {
  transform: scale(1.1);
  background: rgba(34, 144, 233, 0.471);
}

.diamond-description {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.diamond-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f6f7fc;
  border-radius: 25px;
  padding: 10px 16px;
  width: fit-content;
}
.diamond-badge span {
  color: #2290e9;
  font-size: 18px;
  font-weight: 600;
}
.diamond-title {
  color: #303030;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}
.diamond-subtitle {
  color: #6a6f76;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 0;
}
.diamond-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.diamond-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #303030;
  font-size: 18px;
  line-height: 1.4;
}
.diamond-price {
  color: #303030;
  font-size: 36px;
  font-weight: 500;
  line-height: normal;

  display: flex;
  align-items: center;
  gap: 4px;
}
.diamond-book-btn {
  width: 212px;
  height: 60px;
  padding: 0;
}

/* --- Perks Section --- */
.perks-section {
  padding: 0;

  position: relative;
}

.perks-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/front_end/images/utils/pendelum-sm.png");
  background-size: 200% 100%;
  background-repeat: no-repeat;
  background-position: 0% 50%;
  animation: pendulumSwing 2s ease-in-out infinite alternate;
  z-index: 0;
}

.perks-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 128px 24px 76px;
  gap: 64px;
  text-align: center;
  position: relative;
}
.perks-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.perks-left h3 {
  --bs-heading-color: #fff;
  --themehr-text-color: #fff;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;

  text-align: left;
}
.perks-left > p {
  color: #f6f7fc;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 0;

  text-align: left;
}
.perks-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.perks-qr-box {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 16px;
  border: 1px solid #fff;
  border-radius: 16px;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  cursor: pointer;
}

.perks-qr-box img {
  max-width: 51px;
}

.perks-register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: #2290e9;
  border-radius: 32px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.perks-register-btn:hover {
  background: #1a7ad4;
}
.perks-right {
  width: 100%;
  flex-shrink: 0;
}
.perks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.perk-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-height: 146px;
  text-align: left;
}
.perk-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  flex-shrink: 0;
}
.perk-card svg {
  flex-shrink: 0;
}
.perk-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.perk-card h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.perk-card p {
  color: #f6f7fc;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- Before & After --- */
.before-after-section {
  background: #fff;
  padding: 64px 0 96px !important; /*TODO: find out why this was placed and remove*/
}
.section-header {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 24px;
}
.section-header h4,
.section-header h5 {
  color: #303030;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
}
.section-header p {
  color: #303030;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 0;
}
.before-after-gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ba-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: auto;
  padding: 0 24px;
}
.ba-image {
  flex: 1;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.ba-left {
  border-radius: 16px 16px 0 0;
}
.ba-right {
  border-radius: 0 0 16px 16px;
}
.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Testimonials --- */
.testimonials-section {
  background: #f6f7fc;
  padding: 64px 24px 128px !important;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
}

.testimonial-card video {
  aspect-ratio: 1/1;
}

/* --- Steps --- */
.steps-section {
  background: #fff;
  padding: 104px 24px 96px !important;
}

.steps-section .section-header {
  margin-bottom: 0;
}

h5.steps-book-sh {
  margin-bottom: 24px;
}

p.steps-book-flavor-text {
  padding-bottom: 80px;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-bottom: 64px;
}
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.step-phone {
  width: 255px;
  height: 535px;
  object-fit: cover;
  border-radius: 20px;
}
.step-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.step-number {
  font-family: "Montserrat", sans-serif;
  color: #303030;
  font-size: 48px !important;
  font-weight: 600;
  line-height: normal;
}
.step-info p {
  font-family: "Montserrat", sans-serif;
  color: #6a6f76;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 229px;
  margin-bottom: 0;
}
.steps-download-box {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px;
  border: 1px solid #303030;
  border-radius: 16px;
  margin: 0 auto;
  width: fit-content;
  cursor: pointer;
}
.steps-download-box span {
  color: #303030;
  font-size: 18px;
  line-height: 1.4;
  width: 175px;
}

.steps-download-box img {
  max-width: fit-content;
  width: 51px;
}

/*---------------------
    Mobile styles end
-----------------------*/

/*---------------------
    Tablet and Above
-----------------------*/
@media screen and (min-width: 767px) {
  /* Hero */
  #banner-5-section-1 {
    padding: 80px 72px 0;
    flex-direction: column; /* reset reverse */
  }
  #banner-5-section-1-big-text,
  #banner-5-section-1-big-text-blue {
    font-size: 56px;
  }

  /* Scale down bubbles for smaller desktops */
  .bubble-left-lg {
    width: 150px;
    height: 150px;
    top: 140px;
    left: -100px;
  }
  .bubble-left-md {
    width: 85px;
    height: 85px;
    top: 240px;
    left: 30px;
  }
  .bubble-left-sm {
    width: 50px;
    height: 50px;
    top: 330px;
    left: -10px;
  }
  .bubble-right-lg {
    width: 150px;
    height: 150px;
    top: 140px;
    right: -100px;
  }
  .bubble-right-md {
    width: 85px;
    height: 85px;
    top: 240px;
    right: 30px;
  }
  .bubble-right-sm {
    width: 50px;
    height: 50px;
    top: 330px;
    right: -10px;
  }

  /* Plans */
  #plans-section {
    padding: 40px 10px 80px;
  }
  .plans-grid {
    flex-direction: column;
    max-width: 540px;
    margin: 0 auto;
  }
  .plan-card {
    width: 100%;
    max-width: 100%;
  }
  .plan-button,
  .plan-button-selected {
    padding: 16px 24px;
    font-size: 18px;
  }

  /* Diamond */
  .diamond-section {
    padding: 0 64px 64px;
  }

  /* Perks */
  .perks-inner {
    padding: 128px 80px;
    text-align: center;
  }

  .perks-left h3 {
    font-size: 48px;
  }

  .perks-right {
    width: 100%;
  }
  .perks-actions {
    flex-direction: row;
    justify-content: center;
  }
  .perks-grid {
    grid-template-columns: 1fr 1fr;
  }

  .perks-section::before {
    background-image: url("/front_end/images/utils/pendelum-md.png");
  }

  /* Before & After */
  .ba-row {
    padding: 0 64px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 64px 64px 128px !important;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 538px;
  }

  /* Steps */
  .steps-section {
    padding: 104px 64px 96px !important; /*TODO: Find out why !important and remove*/
  }

  .steps-grid {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 64px 24px;
  }
  .step-card {
    width: calc(50% - 12px);
  }

  /* Section header */
  .section-header {
    padding: 0 64px;
  }
  .section-header h4,
  .section-header h5 {
    font-size: 48px;
  }
}
/*---------------------
    Tablet styles end
-----------------------*/

/*---------------------
    Desktop and Above
-----------------------*/
@media screen and (min-width: 1024px) {
  /* Hero */
  #banner-5-section-1 {
    padding: 100px 72px 0;
  }
  #banner-5-section-1-big-text,
  #banner-5-section-1-big-text-blue {
    font-size: 64px;
  }
  .hero-deco {
    display: block;
  }

  /* Bubbles — full size */
  .bubble-left-lg {
    width: 199px;
    height: 199px;
    top: 165px;
    left: -148px;
  }
  .bubble-left-md {
    width: 112px;
    height: 112px;
    top: 276px;
    left: 59px;
  }
  .bubble-left-sm {
    width: 65px;
    height: 65px;
    top: 386px;
    left: -14px;
  }
  .bubble-right-lg {
    width: 199px;
    height: 199px;
    top: 165px;
    right: -148px;
  }
  .bubble-right-md {
    width: 112px;
    height: 112px;
    top: 276px;
    right: 59px;
  }
  .bubble-right-sm {
    width: 65px;
    height: 65px;
    top: 386px;
    right: -14px;
  }

  /* Plans */
  #plans-section {
    padding: 40px 64px 80px;
  }

  .plans-grid {
    flex-direction: row;
    gap: 16px;
    align-items: stretch;
    justify-content: center;
    max-width: unset;
    margin: 0;
  }

  .plan-card {
    width: unset;
    max-width: 434px;
    justify-content: space-between;
  }

  .plan-cut-out {
    right: -3px;
  }

  /* Diamond */
  .diamond-section {
    padding: 64px 80px 96px;
  }
  .diamond-section-inner {
    flex-direction: row;
    gap: 64px;
    align-items: center;
  }
  .diamond-image {
    width: 570px;
    height: 570px;
    aspect-ratio: 1;
  }
  .diamond-title {
    font-size: 48px;
  }

  /* Perks */

  .perks-section::before {
    background-image: url("/front_end/images/utils/pendelum-lg.png");
  }

  .perks-inner {
    padding: 128px 80px;
    gap: 48px;
    text-align: left;
  }
  .perks-left {
    align-items: flex-start;
  }
  .perks-left h3 {
    font-size: 48px;
  }
  .perks-right {
    flex-shrink: 0;
  }
  .perks-actions {
    flex-direction: row;
    align-items: center;
  }

  /* Before & After */
  .before-after-gallery {
    gap: 24px;
  }
  .ba-row {
    flex-direction: row;
    height: 558px;
    padding: 0 64px;
  }
  .ba-image {
    height: auto;
  }

  .ba-left {
    border-radius: 16px 0 0 16px;
  }
  .ba-right {
    border-radius: 0 16px 16px 0;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 1108px;
  }

  /* Steps */
  .steps-section {
    padding: 104px 64px 96px !important;
  }
  .steps-grid {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: stretch;
  }
  .step-card {
    width: 298px;
  }
}

/*---------------------
   lg - xl end
-----------------------*/

/*---------------------
    xl - 3xl start
-----------------------*/
@media screen and (min-width: 1280px) {
  .perks-inner {
    flex-direction: row;
  }

  .perks-right {
    width: 653px;
  }

  .xl-wrapper,
  .perks-section {
    display: flex;
    justify-content: center;
  }

  .before-after-section,
  .perks-wrapper {
    max-width: 1400px;
  }
}
/*------------------
    Animations
--------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bubbleFloatOdd {
  0% {
    transform: rotate(0deg) translateX(0px) translateY(0px) scale(1);
  }
  15% {
    transform: rotate(15deg) translateX(-2px) translateY(8px) scale(1.01);
  }
  30% {
    transform: rotate(0deg) translateX(0px) translateY(2px) scale(0.98);
  }
  45% {
    transform: rotate(8deg) translateX(2px) translateY(-2px) scale(0.99);
  }
  60% {
    transform: rotate(12deg) translateX(5px) translateY(-2px) scale(1);
  }
  75% {
    transform: rotate(6deg) translateX(2px) translateY(-6px) scale(1.01);
  }
  90% {
    transform: rotate(12deg) translateX(0px) translateY(6px) scale(1.01);
  }
  100% {
    transform: rotate(0deg) translateX(0px) translateY(0px) scale(1);
  }
}
@keyframes bubbleFloatEven {
  0% {
    transform: rotate(0deg) translateX(0px) translateY(0px) scale(1);
  }
  15% {
    transform: rotate(-15deg) translateX(3px) translateY(-6px) scale(1.01);
  }
  30% {
    transform: rotate(5deg) translateX(-3px) translateY(4px) scale(1.01);
  }
  45% {
    transform: rotate(-8deg) translateX(-2px) translateY(-2px) scale(0.99);
  }
  60% {
    transform: rotate(-12deg) translateX(-5px) translateY(6px) scale(0.98);
  }
  75% {
    transform: rotate(4deg) translateX(2px) translateY(-2px) scale(1.02);
  }
  90% {
    transform: rotate(-5deg) translateX(1px) translateY(-5px) scale(1.01);
  }
  100% {
    transform: rotate(0deg) translateX(0px) translateY(0px) scale(1);
  }
}

@keyframes pendulumSwing {
  from {
    background-position: 0% 75%;
  }
  to {
    background-position: 30.5% 50%;
  }
}
