@import url("https://fonts.googleapis.com/css2?family=Interstate&display=swap");

:root {
  --nero: hsl(0, 0%, 5%);
  --white: hsl(0, 0%, 100%);
  --off-white: hsl(33, 39%, 95%);
  --fawn: hsl(37, 40%, 56%);
  --xtra-light-fawn: hsl(from var(--fawn) h s l / 0.2);
  --light-grey: hsl(0, 0%, 91%);
  --steel: hsl(0, 0%, 56%);
}

* {
  margin: 0;
  padding: 0;
}

html {
  block-size: 100%;
  scroll-behavior: smooth;
  timeline-scope: --location, --hours, --uptown, --services, --footer;
}

html {
  scroll-snap-type: y mandatory;
}

@media (max-width: 768px) {
  html,
  footer {
    margin: 0;
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  html,
  footer {
    margin: 0;
    overflow-x: hidden;
  }
}

body {
  background-image: url("https://cdn.shopify.com/s/files/1/0071/6197/0758/files/wallpaper30.jpg?v=1749713902");
  background-size: cover;
  font-family: "Interstate", sans-serif;
}

.content {
  overflow: hidden;
  inset: 0;
}

section {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

.section-location {
  view-timeline: --location;
  height: 100dvh;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-uptown {
  view-timeline: --uptown;
  height: 100dvh;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-services {
  view-timeline: --services;
  height: 100dvh;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
  scroll-snap-align: start;
}

.section-hours {
  view-timeline: --hours;
  height: 100dvh;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

footer {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  view-timeline: --footer;
}

@media (max-width: 768px) {
  .section-location,
  .section-hours,
  .section-services,
  .section-uptown {
    height: 100%;
    scroll-snap-type: unset;
    scroll-snap-align: unset;
  }

  footer {
    scroll-snap-align: unset;
    scroll-snap-type: unset;
  }
}

@media (max-width: 480px) {
  .section-location,
  .section-hours,
  .section-services,
  .section-uptown {
    height: 100%;
    scroll-snap-type: unset;
    scroll-snap-align: unset;
  }

  footer {
    scroll-snap-align: unset;
    scroll-snap-type: unset;
  }
}

a {
  text-decoration: unset;
}

#callBtn {
  position: fixed;
  top: 90%;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--nero);
  background-image: url(call-us-white.svg);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  padding: 25px;
  border-radius: 50%;
  height: 75px;
  width: 75px;
}

#callBtn:hover {
  background-color: var(--fawn);
}
/* ------ uptown  css ------ */
.uptown-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #eae0d0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #0e0e0e;
  margin-bottom: 36px;
}

.uptown-badge::before {
  content: "📍";
  font-size: 16px;
}

.hero-uptown {
  display: grid;
  grid-template-columns: 0.15fr 1.5fr 0.15fr 1.5fr 0.1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-uptown__content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

.hero-uptown__content .highlight {
  background: linear-gradient(135deg, #64b2bc, #bc9a64);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.spa-info {
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.spa-info__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.spa-info__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #000, rgb(14, 14, 14));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.spa-info__title {
  font-size: 18px;
  font-weight: 600;
}

.spa-info__address {
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}

.spa-info__details {
  font-size: 14px;
  color: #888;
}

.description {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
}

.features-uptown {
  display: flex;
  width: 80%;
  margin: 0 auto;
}

.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.feature__icon--excellence {
  background: linear-gradient(-135deg, rgba(14, 14, 14, 0.75), var(--nero));
}

.feature__icon--warmth {
  background: linear-gradient(-135deg, var(--nero), rgba(14, 14, 14, 0.75));
}

.feature__icon--technology {
  background: linear-gradient(-135deg, rgba(14, 14, 14, 0.75), var(--nero));
}

.feature__icon--personalized {
  background: linear-gradient(-135deg, var(--nero), rgba(14, 14, 14, 0.75));
}

.feature__content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature__content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.hero-uptown__images {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  margin-top: 220px;
  max-width: 400px;
}

.grid-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.grid-image:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-uptown {
    grid-template-columns: 1fr;
  }

  .image-grid {
    margin-top: 30px;
    max-width: 100%;
  }
}
/* ------ END Uptown css ------ */

/* ------ services css------ */
.badge-services {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #eae0d0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #0e0e0e;
  margin-bottom: 36px;
}

.badge-services::before {
  content: "💬";
  font-size: 16px;
}

.hero-services {
  text-align: center;
  margin-bottom: 60px;
}

.hero-services__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-services__highlight {
  background: linear-gradient(135deg, #64b2bc, #bc9a64);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-services__subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.treatments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.treatment-card {
  background: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(232, 232, 232, 0.75);
}

.treatment-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  color: white;
}

.treatment-card__icon--laser {
  background: linear-gradient(135deg, var(--nero), var(--steel));
}

.treatment-card__icon--hydra {
  background: linear-gradient(135deg, var(--steel), var(--nero));
}

.treatment-card__icon--cosmetic {
  background: linear-gradient(135deg, var(--nero), var(--steel));
}

.treatment-card__icon--resurfacing {
  background: linear-gradient(135deg, var(--steel), var(--nero));
}

.treatment-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0e0e0e;
}

.treatment-card__description {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.5;
}

.treatment-card__benefits {
  list-style: none;
  margin-bottom: 24px;
}

.treatment-card__benefit {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.treatment-card__benefit::before {
  content: "•";
  color: #bc9a64;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.treatment-card__link {
  color: #bc9a64;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.treatment-card__link:hover {
  color: #fff;
  text-decoration: unset;
}

.cta-services-section {
  background: linear-gradient(135deg, #bc9a64, rgb(203, 186, 169));
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(188, 154, 100, 0.9),
    rgb(203, 186, 169, 0.9)
  );
  z-index: 1;
}

.cta-services-section__content {
  position: relative;
  z-index: 2;
  align-items: center;
}

.cta-services-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 24px;
}

.cta-services-section__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-services-section__description {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  background: #ffffff;
  color: #bc9a64;
  padding: 16px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.cta-button:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ______ END Services Css ______ */

/* ------ conveniently located css ------ */

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--xtra-light-fawn);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #0e0e0e;
  margin-bottom: 24px;
}

.location-badge::before {
  content: "📍";
  font-size: 16px;
}

.hero-location {
  display: grid;
  grid-template-columns: 0.25fr 1.25fr 0.3fr 1.25fr 0.1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-location__content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}

.hero-location__content .highlight {
  background: linear-gradient(135deg, #64b2bc, #bc9a64);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.spa-info {
  --border-width: 1px;
  border-radius: 1rem;
  position: relative;
  color: var(--white);
  background: linear-gradient(-135deg, rgba(14, 14, 14, 0.85), var(--nero));
  backdrop-filter: blur(12px);
  padding: 24px;
  margin-bottom: 24px;
}

.spa-info::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  background: linear-gradient(var(--nero), var(--steel)) border-box;
  mask: linear-gradient(black, black) border-box,
    linear-gradient(black, black) padding-box;
  mask-composite: subtract;
}

.spa-info__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.spa-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}

.spa-info__title {
  font-size: 18px;
  font-weight: 600;
}

.spa-info__address {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
}

.spa-info__details {
  font-size: 14px;
  color: var(--steel);
}

.description {
  font-size: 16px;
  color: var(--nero);
  margin-bottom: 40px;
  line-height: 1.7;
  text-align: justify;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}

.feature__icon--subway {
  background: linear-gradient(135deg, rgba(14, 14, 14, 0.75), var(--nero));
}

.feature__icon--parking {
  background: linear-gradient(135deg, var(--nero), rgba(14, 14, 14, 0.75));
}

.feature__icon--access {
  background: linear-gradient(135deg, rgba(14, 14, 14, 0.75), var(--nero));
}

.feature__content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature__content p {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--primary {
  background: linear-gradient(135deg, #64b2bc, var(--fawn));
  color: var(--white);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(188, 154, 100, 0.3);
  background: var(--white);
  color: var(--fawn);
  transition: background 1s ease-in-out;
}

.btn--secondary {
  background: transparent;
  color: var(--fawn);
  border: 2px solid var(--fawn);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  background-color: var(--fawn);
  color: var(--white);
  transition: background 1s ease-in-out;
}

.hero-location__image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 400px;
  width: 400px;
  margin-top: 50px;
}

.hero-location__image img {
  width: 400px;
  height: 400px;
  object-fit: fit;
}

.image-location-overlay {
  position: absolute;
  bottom: 20px;
  left: 40px;
  right: 40px;
  background: rgba(14, 14, 14, 0.5);
  color: white;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
}

.image-location-overlay__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.image-location-overlay__subtitle {
  font-size: 14px;
  opacity: 0.9;
}

/*.background-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #64b2bc, #bc9a64);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(188, 154, 100, 0.4);
  }
*/

/* ------ conveniently located css END ------ */

/* ------ hours css ------ */
.section-hours {
  background-color: var(--xtra-light-fawn);
}

.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
  margin-top: 24px;
}

.hours-badge::before {
  content: "🕐";
  font-size: 16px;
}

.hero-hours {
  display: grid;
  grid-template-columns: 0.1fr 2fr 0.25fr 1.75fr 0.1fr;
  gap: 20px;
  align-items: center;
}

.hero-hours__content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-hours__content .highlight {
  color: #bc9a64;
  background: linear-gradient(135deg, #bc9a64, #64b2bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.description-hours {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
  text-align: justify;
}

.schedule {
  background-color: #0e0e0e;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.schedule__day {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #0e0e0e;
  transition: all 0.3s ease;
}

.schedule__day:last-child {
  border-bottom: none;
}

.schedule__day--today {
  background-color: #bc9a64;
  color: #0e0e0e;
}

.schedule__day--today:hover {
  background-color: #cbbaa9;
  color: var(--nero);
}

.schedule__day:hover:not(.schedule__day--today) {
  background-color: #f8f9fa;
  color: #0e0e0e;
}

.schedule__day-name {
  font-weight: 600;
  font-size: 16px;
}

.schedule__hours {
  font-size: 16px;
  color: var(--white);
}

.schedule__day:not(.schedule__day--today) .schedule__hours {
  color: var(--white);
}

.schedule__day:not(.schedule__day--today):hover .schedule__hours {
  color: var(--nero);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-hours__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 180px;
  height: 368px;
}

.hero-hours__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-hours-overlay {
  position: absolute;
  top: 18px;
  left: 70px;
  right: 70px;
  bottom: 280px;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.image-hours-overlay__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.image-hours-overlay__hours {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.image-hours-bottom-overlay {
  position: absolute;
  bottom: 20px;
  left: 70px;
  right: 70px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.image-hours-bottom-overlay__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.image-hour-bottom-overlay__subtitle {
  font-size: 14px;
  opacity: 0.9;
}

/* ------ hours css END ------ */

footer {
  height: 50vh;
  width: 100vw;
  font-size: 0.9em;
}

.flex-container {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px 10px;
  font-family: "Interstate", sans-serif;
  background: #ffffff;
}

.flex-4-cols {
  display: flex;
  flex-wrap: wrap;
}
.flex-4-cols > * {
  width: 25%;
  box-sizing: border-box;
}

.gradient {
  background-image: linear-gradient(
    90deg,
    #64b2bc 0%,
    rgba(188, 154, 100, 1) 100%
  );
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: move 1s infinite;
}

ul li {
  line-height: 1.5;
}

img {
  align-items: center;
}

/* ------- RESPONSIVE --------- */
@media (max-width: 768px) {
  .section-location,
  .section-uptown,
  .section-services {
    padding: 20px 16px;
    margin: 0 10px;
  }

  .section-hours {
    padding: 0;
    margin: 0;
  }

  .hero-location {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-location__content h1 {
    font-size: 36px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .treatments {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
  }

  .treatment-card {
    padding: 24px;
  }

  .hero-hours {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .hero-hours__content h1 {
    font-size: 24px;
  }

  .schedule__day {
    padding: 14px 20px;
  }

  .hero-hours__image {
    height: 200px;
    width: 200px;
  }
}

@media (max-width: 480px) {
  .section-location,
  .section-uptown,
  .section-services {
    padding: 20px 16px;
    margin: 0 10px;
  }

  .section-hours {
    padding: 0;
    margin: 0;
  }

  .hero-location__content h1 {
    font-size: 18px;
  }

  .hero-location__image {
    display: none;
  }

  .hero-services__content h1 {
    font-size: 16px;
  }

  .hero-services__image {
    height: 150px;
    width: 150px;
  }

  .section-hours {
    margin-inline: 0;
  }

  .hero-hours__content h1 {
    font-size: 22px;
    width: 320px;
  }

  .schedule__day {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-hours__image {
    display: none;
  }
}

/* --------- END RESPONSIVE ------------ */

/* ------ BLOB ------ 
  .background-container {
    position: relative;
    /*height: 100vh;
    height: 100dvh;
    width: 100%;
    max-width: calc(100vh * 16 / 9);
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
    align-items: center;
  }

  .blob-bg {
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    filter: blur(80px) opacity(0.5);
    overflow: hidden;
  }

  .blob {
    background-color: pink;
    position: absolute;
    border-radius: 50%;
    height: 25rem;
    width: 25rem;
    transform: translate(-50%, -50%);
    animation: blob-animation 30s alternate infinite;
  }

  @keyframes blob-animation {
    0% {
      transform: translate(-50%, -50%);
    }
    20% {
      transform: translate(-20%, -70%);
    }
    60% {
      transform: translate(-70%, -50%);
    }
    80% {
      transform: translate(-20%, -30%);
    }
    100% {
      transform: translate(10%, -20%);
    }
  }
  /* ------ BLOB END ------ */

.blob-c {
  min-height: 100vh;
  overflow: hidden;
  position: absolute;
  width: 100%;
  filter: blur(40px);
  /*   background: rgba(255,255,255,0.1) */
}

.shape-blob {
  background: var(--white);
  height: 60px;
  width: 80px;
  border-radius: 40% 50% 30% 40%;
  animation: transform 18s ease-in-out infinite both alternate,
    movement_one 12s ease-in-out infinite both;
  opacity: 0.7;
  position: absolute;
  left: 75%;
  top: 40%;
  filter: blur(50px);
}
.shape-blob.one {
  background: #967b50;
  height: 150px;
  width: 200px;
  left: 10px;
  top: 10px;
  transform: rotate(-180deg);
  animation: transform 8s ease-in-out infinite both alternate,
    movement_two 20s ease-in-out infinite both;
}

.shape-blob.six {
  background: var(--off-white);
  height: 70px;
  width: 100px;
  left: 160px;
  top: 200px;
  transform: rotate(-180deg);
  animation: transform 5s ease-in-out infinite both alternate,
    movement_two 5s ease-in-out infinite both;
}

.shape-blob.four {
  background: #64b2bc;
  height: 100px;
  width: 80px;
  left: 350px;
  top: 60px;
  transform: rotate(-180deg);
  animation: transform 17s ease-in-out infinite both alternate,
    movement_two 13s ease-in-out infinite both;
}

.shape-blob.five {
  background: #a2d0d6;
  height: 100px;
  width: 80px;
  left: 480px;
  top: 30px;
  transform: rotate(-180deg);
  animation: transform 12s ease-in-out infinite both alternate,
    movement_two 18s ease-in-out infinite both;
}

.shape-blob.two {
  background: var(--white);
  height: 150px;
  width: 150px;
  left: 600px;
  top: 150px;
  transform: rotate(-180deg);
  animation: transform 10s ease-in-out infinite both alternate,
    movement_two 10s ease-in-out infinite both;
}

.shape-blob.three {
  background: #705c3c;
  height: 150px;
  width: 150px;
  left: 800px;
  top: 30px;
  transform: rotate(-180deg);
  animation: transform 7s ease-in-out infinite both alternate,
    movement_two 23s ease-in-out infinite both;
}

@keyframes transform {
  0%,
  100% {
    border-radius: 33% 67% 70% 30% / 30% 40% 70% 70%;
  }
  20% {
    border-radius: 37% 63% 51% 49% / 37% 35% 35% 63%;
  }
  40% {
    border-radius: 36% 64% 64% 36% / 64% 48% 52% 26%;
  }
  60% {
    border-radius: 37% 63% 51% 49% / 30% 30% 70% 73%;
  }
  80% {
    border-radius: 40% 60% 42% 58% / 51% 51% 49% 59%;
  }
}

@keyframes movement_one {
  0%,
  100% {
    transform: none;
  }
  50% {
    transform: translate(50%, 20%) rotateY(10deg) scale(1);
  }
}

@keyframes movement_two {
  0%,
  500% {
    transform: none;
  }
  50% {
    transform: translate(50%, 20%) rotate(-200deg) scale(1.3);
  }
}

.dot {
  color: #e8e8e8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
