:root {
  --color-primary: #C4D9C8;
  --color-secondary: #F5E86B;
  --color-secondary-accent: #302E1B;
  --color-base: #0D0D0D;
  --color-white: #FAFAFA;
  --color-muted: #6F8874;
  --color-accent: #A9C5AF;

  --font-primary: 'Avory I PE', sans-serif;
  --font-secondary: 'Inter Tight', sans-serif;
}
:where(*, *::before, *::after) {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-secondary);
  background-color: var(--color-primary);
  color: var(--color-base);
}
.no-scroll {
  overflow: hidden;
}
.page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; /* This centers all children horizontally */
  width: 100%;
  padding: 0;
}
.top-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  margin: 0 2rem;
  background-color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 14px;
  text-transform: uppercase;
  animation: fadeInTop 1s ease-out;
  width: 100%;
  max-width: 1480px;
}

.slogan {
  font-weight: 700;
}

.right-side {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
}

.lang {
  color: var(--color-muted);
  cursor: pointer;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.lang.active {
  color: var(--color-base);
  font-weight: 600;
}

.lang:hover {
  color: var(--color-base);
  text-decoration: underline;
}

.divider {
  width: 1px;
  height: 20px;
  background-color: var(--color-accent);
  margin: 0 0.5rem;
}
.social-icons {
  display: flex;
  gap: 0.5rem;
}
.social-icons a svg {
  width: 20px;
  height: 20px;
  fill: var(--color-base);
  transition: fill 0.3s ease;
}

.social-icons a:hover svg {
  fill: var(--color-muted);
}
.social-icons a {
  text-decoration: none;
}

.hero {
  background-color: var(--color-base);
  color: var(--color-primary);
  border-radius: 54px;
  padding: 3rem 4rem;
  margin: 0 2rem;
  overflow: visible;
  max-width: 1480px;
  position: relative;
  animation: fadeInTop 1s ease-out;
}
.badge-1{
  position: absolute;
  top: 150px;
  right: 90px;
  z-index: 990;
  transform: rotate(5deg);
}
.badge-2{
  position: absolute;
  bottom: 70px;
  right: 80px;
  z-index: 990;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img{
  max-width: 238px;
}

.menu-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001; /* above overlay */
}

.menu-toggle span {
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--color-white);
  left: 0;
  transition: 0.3s ease;
}

.menu-toggle span:first-child {
  top: 8px;
}

.menu-toggle span:last-child {
  bottom: 8px;
}

/* Active state transforms to X */
.menu-toggle.active span:first-child {
  transform: rotate(45deg);
  top: 11px;
}

.menu-toggle.active span:last-child {
  transform: rotate(-45deg);
  bottom: 11px;
}

/* Fullscreen overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(13, 13, 13, 0.96);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 2rem;
  color: var(--color-white);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.menu-items div{
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
}

/* Trigger animation */
.menu-overlay.active .menu-items {
  opacity: 1;
  transform: translateY(0);
}
.menu-items a{
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  transition: color 0.6s ease;
}
.menu-items a.language.active{
  opacity: 100%;
}
.menu-items a.language{
  opacity: 20%;
  transition: opacity 0.6s ease;
}
.menu-items a:hover{
  color: var(--color-primary);
  opacity: 100%;
}
.menu-items a svg{
  width: 32px;
  height: 32px;
  fill: var(--color-white);
  transition: fill 0.6s ease;
}
.menu-items a:hover svg{
  width: 32px;
  height: 32px;
  fill: var(--color-primary);
}
.menu-items div.menu-divider svg{
    width: 32px;
  height: 32px;
  fill: var(--color-white);
  opacity: 20%;
}
/* Content layout */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
  margin-top: 6rem;
}

.hero-left {
  flex: 1;
  min-width: 0;
}



.label-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  color: var(--color-white);
  text-transform: uppercase;

  /* Flat background */
  background-color: var(--color-secondary-accent);

  /* Gradient border */
  border: 1.5px solid transparent;
  background-image: 
    linear-gradient(var(--color-secondary-accent), var(--color-secondary-accent)), /* inner background */
    linear-gradient(90deg, var(--color-secondary), var(--color-secondary-accent));  /* border gradient */
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.label-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.label-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.title {
  font-size: 4.5rem;
  font-family: var(--font-primary);
  color: var(--color-white);
  margin: 2rem 0 1rem 0;
  text-transform: uppercase;
  font-weight: 800;
}
.title span{
  color: var(--color-secondary);
}
.description {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 2rem;
}
.description span{
  font-weight: 600;
}

.cta {
  background-color: var(--color-secondary);
  border: none;
  padding: 1rem 3rem;
  border-radius: 32px;
  color: var(--color-base);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.15rem;
  vertical-align: baseline;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta:hover {
  background-color: var(--color-accent);
}

.helper-msg {
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  vertical-align: baseline;
  margin-top: 6rem;
}
.helper-msg span{
  color: var(--color-secondary);
}
.hero-right {
  flex: 1;
  position: relative;
  display: grid;
}
.slide {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
  overflow: hidden;
}
.slide img {
  border-radius: 48px;
  display: block;
  transition: opacity 1s ease;
  width: 100%;
  object-fit: cover;
}
.comein img{
  position: absolute;
  top: -30px;
  right: 64px;
  width: 150px;
  height: auto;
  z-index: 999;
  border-radius: 0;
  transform: rotate(15deg);
}
.badge img{
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 150px;
  height: auto;
  z-index: 999;
  border-radius: 0;
}
.slider-bullets {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
.bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: gray;
  transition: background-color 0.3s;
}
.bullet.active {
  background-color: white;
}
.container {
  width: 100%;
  height: 100%;
  padding: 120px 64px 120px 64px;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container-small {
  width: 100%;
  height: 100%;
  padding: 64px 64px 64px 64px;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about {
  width: 100%;
  max-width: 1480px;
  height: 100%;
  padding: 72px 64px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 64px; 
}

.about-title {
  flex: 1 1 0;
  color: var(--color-base);
  font-size: 72px;
  font-family: "Avory I PE", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  word-wrap: break-word;

}

.about-description {
  flex: 1 1 0;
  color: var(--color-base);
  font-size: 20px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.50px;
  word-wrap: break-word;
}
.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
    position: relative;
  }

  .carousel-track {
    display: flex;
    gap: 16px;
    will-change: transform;
  }

  .carousel-slide {
    flex: 0 0 auto;
    width: 400px;
    height: 640px;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
  }
  .info-banner {
    position: absolute;
    top: 24px;
    width: 100%;
    height: auto;
    padding: 16px 64px;
    background: linear-gradient(81deg, #F5E86B 0%, #C4D9C8 100%);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    transform: rotate(1deg);
    z-index: 9999;
  }
  .info-text {
    color: #0D0D0D;
    font-size: 14px;
    font-family: 'Avory I PE', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
  .arrow-left img, .arrow-right img{
    width: 20px;
    height: 20px;
  }

.stats-section {
  width: 100%;
  max-width: 1480px;
  height: 100%;
  padding: 72px 64px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 64px;
  flex-wrap: wrap;
}

  .stat-item {
    flex: 1 1 0;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    min-width: 200px;
  }

  .stat-number {
    color: #0D0D0D;
    font-size: 80px;
    font-family: 'Avory I PE', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 87px;
    word-wrap: break-word;
    align-self: stretch;
  }

  .stat-title {
    color: #0D0D0D;
    font-size: 20px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: 0.4px;
    word-wrap: break-word;
    align-self: stretch;
  }

  .stat-description {
    color: #0D0D0D;
    font-size: 18px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.36px;
    word-wrap: break-word;
    align-self: stretch;
  }

.pricing-section {
  max-width: 1480px;
  height: 100%;
  padding: 72px 64px;
  margin: 0 2rem;
  background: #0D0D0D;
  border-radius: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.pricing-header {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-title {
  font-family: 'Avory I PE', sans-serif;
  font-size: 72px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.16px;
  color: #C4D9C8;
  margin: 0;
}

.pricing-subtitle {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: #C4D9C8;
  margin: 0;
}

.pricing-list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.pricing-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid #262626;
}

.pricing-item.no-border {
  border-bottom: none;
}

.service-name {
  flex: 1;
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.4px;
  color: #C4D9C8;
}

.service-price {
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0.4px;
  color: #C4D9C8;
}

.cta-pricing {
  background-color: var(--color-primary);
  border: none;
  padding: 1rem 3rem;
  border-radius: 32px;
  color: var(--color-base);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.15rem;
  vertical-align: baseline;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-pricing:hover {
  background-color: var(--color-accent);
}

  .salons-section {
    width: 100%;
    max-width: 1480px;
    height: 100%;
    padding: 0 64px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 72px;
  }

  .salons-header {
    align-self: stretch;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .salons-title {
    color: #0D0D0D;
    font-size: 72px;
    font-family: "Avory I PE";
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.16px;
    word-wrap: break-word;
  }

  .salons-note {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #0D0D0D;
    font-size: 16px;
    font-family: "Avory I PE";
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.48px;
  }

  .city-block {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
  }
  .reservation-title {
    color: #0D0D0D;
    font-size: 32px;
    font-family: "Avory I PE";
    font-weight: 700;
    text-transform: uppercase;
    line-height: 64px;
    word-wrap: break-word;
  }
  .city-name {
    color: #0D0D0D;
    font-size: 32px;
    font-family: "Avory I PE";
    font-weight: 700;
    text-transform: uppercase;
    line-height: 64px;
    word-wrap: break-word;
  }

  .city-locations {
    align-self: stretch;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 72px;
    flex-wrap: wrap;
  }

  .location-card {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
  }

  .location-image {
    align-self: stretch;
    height: 380px;
    border-radius: 32px;
    object-fit: cover;
  }

  .location-details {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
  }

  .location-title {
    color: #0D0D0D;
    font-size: 48px;
    font-family: "Avory I PE";
    font-weight: 700;
    text-transform: uppercase;
    line-height: 56px;
    word-wrap: break-word;
  }

  .location-address, .location-contact {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
  }

  .location-address div,
  .location-contact div, .location-address a,
  .location-contact a {
    color: #0D0D0D;
    font-size: 18px;
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.4px;
    word-wrap: break-word;
  }

  .location-contact div.contact-label {
    font-size: 18px;
    font-family: var(--font-secondary);
    font-weight: 600;
    letter-spacing: 0.40px;
  }

  .contact-link {
    text-decoration: underline;
  }

  .buttons-wrapper {
    display: inline-flex;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .cta-salon-primary {
    background-color: var(--color-secondary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 32px;
    color: var(--color-base);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.15rem;
    vertical-align: baseline;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .cta-salon-primary:hover {
    background-color: var(--color-base);
    color: var(--color-white);
  }

  .cta-salon-secondary {
    background-color: var(--color-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 32px;
    color: var(--color-base);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.15rem;
    vertical-align: baseline;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .cta-salon-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-base);
  }
  .logo-butter-cut img{
    width: 100%;
    height: auto;
  }
  .social-friends {
    width: 100%;
    max-width: 1480px;
    height: 100%;
    background: var(--color-primary);
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    flex-wrap: wrap;
    }

    .section {
        flex: 1;
        align-self: stretch;
        padding: 72px 64px;
        background: #0D0D0D;
        border-radius: 48px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 64px;
    }

    .section .title {
        text-box-trim: trim-both;
        text-box-edge: cap alphabetic;
        color: #C4D9C8;
        font-size: 32px;
        font-family: "Avory I PE", sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 64px;
        word-wrap: break-word;
    }

    .section .icons {
        display: inline-flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 32px;
    }

    a.icon {
        text-decoration: none;
    }
    a.icon svg {
        width: 72px;
        height: 72px;
        position: relative;
        overflow: hidden;
        fill: var(--color-primary);
        transition: fill 0.3s ease;
    }
    a.icon svg:hover {
        fill: var(--color-white);
    }
    img.friend{
      width: 200px;
      height: auto;
    }
    .footer {
      padding: 2rem 2rem;
      overflow: visible;
      width: 100%;
      max-width: 1480px;
    }

    .footer-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--color-base); 
      border-radius: 54px;
      padding: 3rem 4rem;
    }
    .footer-container div{
      color: var(--color-primary);
      font-size: 16px;
      font-family: var(--font-secondary);
      font-weight: 400;
      line-height: 25px;
      letter-spacing: 0.4px;
      word-wrap: break-word;
    }




/* Responsive Styles */
@media (max-width: 809px) {
  .top-banner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
  }

  .slogan {
    order: 1;
  }

  .right-side {
    display: none;
  }
  .hero {
    margin: 0 0.5rem;
    padding: 3rem 1.5rem;
    border-radius: 48px;
  }
   .hero-content {
    flex-direction: column;
    gap: 40px;
    margin-top: 3rem;
  }
  .hero-left,
  .hero-right {
    width: 100%;
  }
  .badge-1{
    display: none;
  }
  .badge-2{
    display: none;
  }
  .title {
    font-size: 3rem;
    word-break: break-word;
  }
  .description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .cta {
    width: 100%;
  }
  .helper-msg{
    margin-top: 2rem;
  }
  .slider-bullets {
    display: none;
  }
  .logo img{
    max-width: 180px;
  }
  .slide {
    max-height: 500px;
    border-radius: 48px;
  }
  .slide.active {
    max-height: 500px;
  }
  .slide img {
    border-radius: 48px;
    width: 100%;
    height: 100%;
  }
  .container {
    width: 100%;
    height: 100%;
    padding: 80px 32px 120px 32px;
    overflow: hidden;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .about {
    padding: 0px 24px 64px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px; 
  }

  .about-title {
    font-size: 64px;
  }

  .about-description {
    font-size: 18px;
    line-height: 26px;
  }

  .carousel-slide {
    flex: 0 0 auto;
    width: 200px;
    height: 320px;
  }
    .info-banner {
    gap: 24px;
  }
  .stats-section {
    padding: 56px 40px;
    gap: 56px;
  }
  .pricing-section {
    max-width: 1480px;
    height: 100%;
    padding: 56px 40px;
    margin: 0 0.5rem;
  }
  .pricing-title {
    font-size: 64px;
    letter-spacing: 2px;
  }

  .pricing-subtitle {
    font-size: 18px;
    line-height: 26px;
  }

  .service-name {
    font-size: 16px;
    line-height: 26px;
  }

  .service-price {
    font-size: 16px;
    line-height: 26px;
  }
  .cta-pricing {
    width: 100%;
  }
  .salons-section {
    padding: 0 32px;
  }
  .salons-title {
    font-size: 56px;
  }
  .social-friends {
    padding: 0 0.5rem;
    gap: 1rem;
    }
    .footer {
      padding: 1rem .5rem;
      overflow: visible;
      width: 100%;
      max-width: 1480px;
    }

    .footer-container {
      padding: 3rem 2rem;
    }
    .footer-container div{
      color: var(--color-primary);
      font-size: 16px;
      font-family: var(--font-secondary);
      font-weight: 500;
      line-height: 25px;
      letter-spacing: 0.4px;
      word-wrap: break-word;
    }
    .section {
        padding: 3rem 2rem;
        gap: 48px;
    }
}

@media (min-width: 810px) and (max-width: 1199px) {
  .top-banner {
    padding: 1rem 4rem;
  }
  .hero {
    margin: 0 1.5rem;
  }

  .hero-content {
    flex-direction: column;
    gap: 60px;
    margin-top: 4rem;
  }
  .hero-left,
  .hero-right {
    width: 100%;
  }
  .title {
    font-size: 5rem;
    word-break: break-word;
  }
  .description {
    font-size: 1.2rem;
    line-height: 1.75rem;
  }
  .cta {
    width: 100%;
  }
  .helper-msg{
    margin-top: 2rem;
  }
  .slide {
    max-height: 400px;
    border-radius: 48px;
  }

  .slide.active {
    max-height: 600px;
  }
  .slide img {
    border-radius: 48px;
    width: 100%;
    height: 100%;
  }
  .slider-bullets {
    position: absolute;
    right: calc(50% - 32px); 
    top: auto;
    bottom: 16px;
    transform: translateY(0%);
    display: flex;
    flex-direction: row;
    gap: 8px;
    z-index: 2;
  }
  .bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: gray;
    transition: background-color 0.3s;
  }
    .pricing-section {
    margin: 0 1.5rem;
  }
}

@media (min-width: 1200px) {
  .top-banner {
    padding: 1rem 4rem;
  }
}

/* Animation */
@keyframes fadeInTop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
