.mega--menu > .mega--item--content {
  width:50%;
  height: 100%;
  position: relative;
  padding: 50px 50px;
  overflow: auto;
  padding-top: 30px;
}
/* width */
.mega--menu > .mega--item--content::-webkit-scrollbar {
  width: 0px;
}


.mega--menu > .mega--item--content > .close--btn {
  border: 0;
  background: transparent;
  font-size: 20px;
  font-weight: 300;
  color: #111;
  cursor: pointer;
  line-height: 1;
}

.mega--menu > .mega--item--content > .menu--content {
  margin-top: 0px;
  margin-bottom: 10%;
}

.mega--menu > .mega--item--content > .menu--content > .menu--heading span {
  font-family: LT Superior Serif;
  font-size: 32px;
  font-weight: 500;
}

.mega--menu > .mega--item--content > .menu--content > .menu--heading h2 {
  font-family: LT Superior Serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  line-height: 50px;
}

.mega--item--menu {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.mega--item--menu a {
  position: relative;
  color: #000000;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.mega--item--menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: #111;
  transition: width 0.3s ease;
}

.mega--item--menu a:hover::after {
  width: 100%;
}

.newsletter {
  position: relative;
  left: 0;
  bottom: 0;
  width: 280px;
}

.newsletter--label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  /* margin-bottom: 5px; */
}

.newsletter--label .arrow {
  font-size: 19px;
}

.newsletter input {
  width: 100%;
  padding: 4px 0 7px;
  border: 0;
  border-bottom: 1px solid #555;
  outline: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: italic;
  color: #333;
}

.newsletter input::placeholder {
  color: #222;
  opacity: 1;
}

.mega--item--image {
  /* flex: 1; */
  /* flex-shrink: 0; */
  /* height: 100%; */
  /* position: relative; */
  /* overflow: hidden; */
  /* position: relative; */
}
.mega--item--image::before{
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #f0f0ee 2%, transparent 26%);
  position: relative;
  width: 100%;
  position: absolute;
  height: 100%;
}
.mega--item--image img {
  width: 100%;
  height: -webkit-fill-available;
  object-fit: contain;
  /* aspect-ratio: 16 / 20; */
  /* object-fit: cover; */
  /* object-position: right; */
}

.mega--menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 86vh;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
  display: flex;
  overflow: hidden;
  background: linear-gradient(270deg, #f0f0ee 51.67%, #f9e7d6 100%);
  justify-content: space-between;
  gap: 10px;
  padding-top: 100px;
}

.mega--menu.active {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.gradient--intro {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.mega--item--content,
.mega--item--image {
  position: relative;
  z-index: 2;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1280px) {
  .mega--menu > .mega--item--content {
    padding: 20px 50px;
  }
  .mega--menu > .mega--item--content > .menu--content > .menu--heading span {
      font-size: 26px;
      line-height: 1;
  }

  .mega--menu > .mega--item--content > .menu--content > .menu--heading h2 {
      font-size: 44px;
      line-height: 1;
  }

  .mega--item--menu {
      margin-top: 20px;
      gap: 10px;
  }

  .mega--item--menu a {
      font-size: 16px;
  }
  .mega--menu > .mega--item--content > .menu--content {
      margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .mega--menu > .mega--item--content {
    padding: 40px 40px;
    width: 100%;
    z-index: 99;
    position: relative;
    background: transparent;
  }
  .mega--item--image {
    width: 100%;
    position: absolute;
    right: 0;
    z-index: 3;
  }

  .menu--heading h1 {
    font-size: 52px;
    line-height: 48px;
  }

  .menu--heading span {
    font-size: 28px;
  }

  .mega--item--image:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f3ede6 10%, #f3ede6e8 50%, transparent);
    position: absolute;
    left: 0;
    top: 0;
  }

  .mega--menu {
    background: linear-gradient(270deg, #f0f0ee 51.67%, #f9e7d6 100%);
    padding-top: 65px;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {
  .mega--menu {
    flex-direction: column;
  }

  .mega--menu > .mega--item--content {
    width: 100%;
    padding: 50px 20px;
  }

  .mega--menu > .mega--item--content > .menu--content > .menu--heading span {
    font-size: 22px;
  }

  .mega--menu > .mega--item--content > .menu--content > .menu--heading h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .mega--item--section {
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
  }

  .mega--item--content {
    width: 100%;
    min-height: auto;
    padding: 30px 24px 45px;
  }

  .close--btn {
    font-size: 20px;
  }

  .mega--menu > .mega--item--content > .menu--content {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .menu--heading span {
    font-size: 24px;
  }

  .menu--heading h1 {
    font-size: 44px;
    line-height: 42px;
  }

  .mega--item--menu {
    margin-top: 40px;
    gap: 22px;
  }

  .mega--item--menu a {
    font-size: 16px;
  }

  .newsletter {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 20px;
    padding: 0 15px;
  }
  .mega--item--image:before {
    background: #f3ede6;
    opacity: 0.96;
  }
  .mega--item--image {
    width: 100%;
    max-width: none;
    min-height: auto;
    height: 100%;
  }

  .mega--item--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .mobile-menu .menu--item--image img {
      width: 100%;
  }
}
