html,
body {
  overflow-x: hidden;
}

.kb-hero-slider {
  position: relative;
  width: 100vw;
  min-height: calc(100vh - 90px);
  overflow: hidden;
  background: #111;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.kb-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: opacity .7s ease, visibility .7s ease;
}

.kb-hero-slide--active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.kb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.66) 0%,
    rgba(0,0,0,.42) 42%,
    rgba(0,0,0,.08) 100%
  );
}

.kb-hero-content {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  width: 720px;
  max-width: 720px;
  min-height: calc(100vh - 90px);
  padding: 95px 0 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.kb-hero-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.kb-hero-content h1,
.kb-hero-content h2 {
  width: 720px;
  max-width: 720px;
  min-height: 135px;
  margin: 0 0 16px;
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.045em;
  text-transform: uppercase;
  color: #fff;
}

.kb-hero-content p {
  width: 420px;
  max-width: 420px;
  min-height: 52px;
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(255,255,255,.86);
}

.kb-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  min-width: 250px;
  height: 54px;
  padding: 0 18px;
  box-sizing: border-box;
  background: #f36f21;
  color: #fff !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-decoration: none !important;
  transition: background .25s ease, transform .25s ease;
}

.kb-hero-btn:hover {
  background: #111;
  color: #fff !important;
  transform: translateY(-1px);
}

.kb-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(0,0,0,.25);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.kb-hero-arrow--prev {
  left: 20px;
}

.kb-hero-arrow--next {
  right: 24px;
}

.kb-hero-arrow {
  opacity: .35;
}

.kb-hero-dots {
  position: absolute;
  left: 80px;
  bottom: 48px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.kb-hero-dot {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}

.kb-hero-dot--active {
  background: #fff;
}

@media (max-width: 1200px) {
  .kb-hero-content {
    width: 620px;
    max-width: 620px;
    padding-left: 64px;
  }

 .kb-hero-content h1,
.kb-hero-content h2 {
  width: 620px;
  max-width: 620px;
  font-size: 56px;
  min-height: 120px;
}

  .kb-hero-dots {
    left: 64px;
  }
}

@media (max-width: 767px) {
  .kb-hero-slider {
    min-height: 76vh;
  }
  
  .kb-hero-slide--spring {
  background-position: 68% center;
}

  .kb-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.08) 0%,
      rgba(0,0,0,.34) 45%,
      rgba(0,0,0,.76) 100%
    );
  }

  .kb-hero-content {
    width: 100%;
    max-width: none;
    min-height: 76vh;
    padding: 70px 24px 70px;
    justify-content: flex-end;
  }

  .kb-hero-label {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .kb-hero-content h1,
  .kb-hero-content h2 {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 18px;
  }

  .kb-hero-content p {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .kb-hero-btn {
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 18px;
  box-sizing: border-box;
  white-space: nowrap;
}

  .kb-hero-arrow {
    display: none;
  }

  .kb-hero-dots {
    left: 24px;
    bottom: 28px;
  }
}

/*
====================================
HOME CATEGORIES
====================================
*/

.kb-section-head {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 64px 64px 42px;
  background: #fff;
  box-sizing: border-box;
}

.kb-section-head span {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
}

.kb-section-head h2 {
  margin: 0 0 10px;
  font-size: 48px;
  line-height: 1;
  text-transform: uppercase;
  color: #111;
}

.kb-section-head p {
  margin: 0;
  font-size: 17px;
  color: #666;
}

.kb-category-grid {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 320px;
  gap: 16px;
  padding: 0 64px 64px;
  background: #fff;
  box-sizing: border-box;
}

.kb-category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  padding: 32px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff !important;
  text-decoration: none !important;
  transition: filter .35s ease;
}

.kb-category-card:hover {
  filter: brightness(1.08);
}

.kb-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.62) 100%);
  z-index: 1;
}

.kb-category-card span,
.kb-category-card strong {
  position: relative;
  z-index: 2;
}

.kb-category-card span {
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.78);
}

.kb-category-card strong {
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.kb-category-card--large {
  grid-row: span 2;
}

.kb-category-card--large strong {
  font-size: 52px;
}

.kb-category-card--sale::before {
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.72) 100%);
}

.kb-category-card:hover strong {
  color: #f36f21 !important;
}

@media (max-width: 767px) {
  .kb-section-head {
    padding: 44px 24px 18px;
  }

  .kb-section-head h2 {
    font-size: 34px;
  }

  .kb-category-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 2px;
    padding: 0 24px 44px;
    background: #fff;
  }

  .kb-category-card {
    min-height: 190px;
    height: 190px;
    padding: 18px;
  }

  .kb-category-card--large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 270px;
    height: 270px;
  }

  .kb-category-card strong {
    font-size: 22px;
    line-height: 1;
  }

  .kb-category-card--large strong {
    font-size: 32px;
    line-height: 1;
  }

  .kb-category-card span {
    margin-bottom: 6px;
    font-size: 11px;
    line-height: 1;
  }
}

/*
====================================
Products
====================================
*/

.kb-custom-products {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 64px 90px;
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
}

.kb-custom-products__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.kb-custom-products__track::-webkit-scrollbar {
  display: none;
}

.kb-custom-product-card {
  flex: 0 0 calc((100% - 96px) / 5);
  min-width: 0;
  color: #111 !important;
  text-decoration: none !important;
  scroll-snap-align: start;
}

.kb-custom-product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f4f4f4;
}

.kb-custom-product-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.kb-custom-product-card:hover img {
  transform: scale(1.035);
}

.kb-custom-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 9px;
  background: #f36f21;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.kb-custom-product-card__body {
  padding-top: 13px;
}

.kb-custom-product-card__body h3 {
  margin: 0 0 7px;
  min-height: 40px;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -.02em;
  text-transform: none;
  color: #111;
}

.kb-custom-product-card__price {
  margin-bottom: 9px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #111;
}

.kb-custom-product-card__price del {
  margin-right: 8px;
  color: #9b9b9b;
  font-weight: 400;
}

.kb-custom-product-card__price ins {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.kb-custom-product-card__colors {
  display: flex;
  gap: 5px;
  min-height: 13px;
  margin-bottom: 12px;
}

.kb-custom-product-card__color {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 50%;
  box-sizing: border-box;
}

.kb-custom-product-card__cta {
  display: inline-flex;
  align-items: center;
  color: #111;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid #111;
  padding-bottom: 4px;
}

.kb-custom-products__hint {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.kb-custom-products__hint span {
  display: block;
  width: 36px;
  height: 3px;
  background: #111;
  opacity: .22;
}

.kb-custom-products__hint span.is-active {
  opacity: 1;
}

@media (max-width: 1024px) {
  .kb-custom-products {
    padding: 0 32px 70px;
  }

  .kb-custom-product-card {
    flex-basis: calc((100% - 48px) / 3);
  }
}

@media (max-width: 767px) {
  .kb-custom-products {
    padding: 0 24px 64px;
  }

  .kb-custom-products__track {
    gap: 14px;
    padding-bottom: 20px;
  }

  .kb-custom-product-card {
    flex-basis: 68%;
  }

  .kb-custom-product-card__body h3 {
    min-height: 42px;
    font-size: 16px;
  }

  .kb-custom-product-card__price {
    font-size: 17px;
  }

  .kb-custom-product-card__cta {
    font-size: 12px;
  }

  .kb-custom-products__hint span {
    width: 32px;
  }
}

.kb-custom-product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 46px;
  padding: 0 22px;
  margin-top: 14px;

  border: 1px solid #111;
  background: transparent;

  color: #111;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none;

  transition: all .25s ease;
}

.kb-custom-product-card__cta:hover {
  background: #111;
  color: #fff;
}

/*
====================================
Promo
====================================
*/
.kb-promo-banner {
  position: relative;
  width: 100vw;
  min-height: 520px;
  margin-left: calc(50% - 50vw);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.kb-promo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 45%, rgba(0,0,0,.08) 100%);
}

.kb-promo-banner__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 110px 64px;
  color: #fff;
}

.kb-promo-banner__content span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 11px;
  background: rgba(255,255,255,.16);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.kb-promo-banner__content h2 {
  margin: 0 0 18px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: .92;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -.05em;
}

.kb-promo-banner__content p {
  max-width: 420px;
  margin: 0 0 34px;
  font-size: 19px;
  line-height: 1.45;
  color: rgba(255,255,255,.86);
}

.kb-promo-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 56px;
  padding: 0 28px;
  background: #f36f21;
  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .04em;
}

@media (max-width: 767px) {
  .kb-promo-banner {
    min-height: 480px;
  }

  .kb-promo-banner__overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.76) 100%);
  }

  .kb-promo-banner__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 24px 42px;
  }

  .kb-promo-banner__content h2 {
    font-size: 54px;
  }

  .kb-promo-banner__content p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .kb-promo-banner__btn {
    width: 100%;
    min-width: 0;
  }
}

/*
====================================
Advantages
====================================
*/
.kb-trust-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 84px 64px 68px;
  background: #f7f7f7;
  box-sizing: border-box;
}

.kb-trust-head {
  max-width: 760px;
  margin-bottom: 52px;
}

.kb-trust-head span {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #999;
}

.kb-trust-head h2 {
  margin: 0 0 14px;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: #111;
}

.kb-trust-head p {
  max-width: 620px;
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  color: #666;
}

.kb-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.kb-trust-item {
  padding-right: 20px;
}

.kb-trust-item > span {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  color: #999;
}

.kb-trust-item h3 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: #111;
}

.kb-trust-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #666;
}

@media (max-width: 1024px) {
  .kb-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 28px;
  }
}

@media (max-width: 767px) {
  .kb-trust-section {
    padding: 58px 24px 64px;
  }

  .kb-trust-head {
    margin-bottom: 38px;
  }

  .kb-trust-head h2 {
    font-size: 34px;
  }

  .kb-trust-head p {
    font-size: 16px;
  }

  .kb-trust-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .kb-trust-item h3 {
    font-size: 24px;
  }

  .kb-trust-item p {
    font-size: 15px;
  }
}

/*
====================================
Reviews
====================================
*/
.kb-life-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 82px 64px 90px;
  background: #fff;
  box-sizing: border-box;
}

.kb-life-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.kb-life-head span {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #999;
}

.kb-life-head h2 {
  margin: 0 0 14px;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: #111;
}

.kb-life-head p {
  max-width: 640px;
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  color: #666;
}

.kb-life-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
}

.kb-life-tab {
  height: 42px;
  padding: 0 18px;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
}

.kb-life-tab.is-active {
  border-color: #111;
  background: #111;
  color: #fff;
}

.kb-life-panel {
  display: none;
}

.kb-life-panel.is-active {
  display: block;
}

.kb-life-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 300px;
  gap: 18px;
}

.kb-life-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  background-size: cover;
  background-position: center;
  color: #fff !important;
  text-decoration: none !important;
  overflow: hidden;
}

.kb-life-card--tall {
  grid-row: span 2;
}

.kb-life-card::before,
.kb-life-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.58));
}

.kb-life-card span {
  position: relative;
  z-index: 2;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.kb-life-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.kb-life-video {
  position: relative;
  min-height: 460px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff !important;
  text-decoration: none !important;
  overflow: hidden;
}

.kb-life-video span,
.kb-life-video p {
  position: relative;
  z-index: 2;
}

.kb-life-video span {
  width: 54px;
  height: 54px;
  margin-bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.9);
  color: #111;
  border-radius: 50%;
  font-size: 18px;
}

.kb-life-video p {
  margin: 0;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.kb-life-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.kb-life-review {
  padding: 34px;
  background: #f7f7f7;
  box-sizing: border-box;
}

.kb-life-review p {
  margin: 0 0 28px;
  font-size: 21px;
  line-height: 1.35;
  color: #111;
}

.kb-life-review span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
}

@media (max-width: 767px) {
  .kb-life-section {
    padding: 64px 24px;
  }

  .kb-life-head h2 {
    font-size: 38px;
  }

  .kb-life-head p {
    font-size: 16px;
  }

  .kb-life-tabs {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .kb-life-grid,
  .kb-life-video-grid,
  .kb-life-reviews {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .kb-life-grid::-webkit-scrollbar,
  .kb-life-video-grid::-webkit-scrollbar,
  .kb-life-reviews::-webkit-scrollbar {
    display: none;
  }

  .kb-life-card,
  .kb-life-card--tall,
  .kb-life-video,
  .kb-life-review {
    flex: 0 0 82%;
    min-height: 420px;
    height: 420px;
    grid-row: auto;
    scroll-snap-align: start;
  }

  .kb-life-review {
    height: auto;
    min-height: 280px;
    padding: 28px;
  }

  .kb-life-review p {
    font-size: 19px;
  }
}

/*
====================================
About
====================================
*/
.kb-about-brand {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 90px 64px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 64px;
  background: #111;
  color: #fff;
  box-sizing: border-box;
}

.kb-about-brand__text span {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.kb-about-brand__text h2 {
  margin: 0;
  max-width: 820px;
  font-size: 54px;
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.kb-about-brand__desc {
  align-self: end;
}

.kb-about-brand__desc p {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.76);
}

.kb-about-brand__link {
  display: inline-flex;
  color: #fff !important;
  text-decoration: none !important;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

@media (max-width: 767px) {
  .kb-about-brand {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 64px 24px;
  }

  .kb-about-brand__text h2 {
    font-size: 34px;
    line-height: 1;
  }

  .kb-about-brand__desc p {
    font-size: 16px;
  }
}



.kb-animate {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(.22,1,.36,1);
}

.kb-animate.kb-visible {
  opacity: 1;
  transform: translateY(0);
}

.kb-hero-slide--active .kb-hero-label,
.kb-hero-slide--active h1,
.kb-hero-slide--active h2,
.kb-hero-slide--active p,
.kb-hero-slide--active .kb-hero-btn {
  opacity: 0;
  transform: translateY(34px);
  animation: kbHeroFadeUp 1s cubic-bezier(.22,1,.36,1) forwards;
}

.kb-hero-slide--active .kb-hero-label {
  animation-delay: .1s;
}

.kb-hero-slide--active h1,
.kb-hero-slide--active h2 {
  animation-delay: .25s;
}

.kb-hero-slide--active p {
  animation-delay: .45s;
}

.kb-hero-slide--active .kb-hero-btn {
  animation-delay: .65s;
}

@keyframes kbHeroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
