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

/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  margin: 0;
  height: 100%;
  font-family: 'Montserrat', Helvetica, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline-offset: 2px;
}

/* CSS Variables */
:root {
  --cherolina-font-family: "Cherolina", Helvetica;
  --montserrat-font-family: "Montserrat", Helvetica;
  --container-padding: clamp(1rem, 5vw, 7.5rem);
  --content-max-width: 75rem;
  --header-height: auto;
}

@font-face {
    font-family: "Cherolina";
    src: url("https://db.onlinewebfonts.com/t/57f0d312017e3471c956900c601e683d.eot");
    src: url("https://db.onlinewebfonts.com/t/57f0d312017e3471c956900c601e683d.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/57f0d312017e3471c956900c601e683d.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/57f0d312017e3471c956900c601e683d.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/57f0d312017e3471c956900c601e683d.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/57f0d312017e3471c956900c601e683d.svg#Cherolina")format("svg");
}

/* Main Container */
.container {
  background: white;
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Header Section */
.header-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  padding: 0 0 1.5rem 0;
  position: relative;
  z-index: 10;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--container-padding);
  width: 100%;
  max-width: var(--content-max-width);
  background: white;
}

.header {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
}

.heading-margin {
  width: min(29rem, 90vw);
  height: auto;
  aspect-ratio: 465 / 228;
  object-fit: contain;
}

.navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-family: 'Montserrat', Helvetica;
  font-weight: 400;
  color: rgba(118, 118, 118, 0.75);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  letter-spacing: 0.0375rem;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s ease;
  text-align: center;
}

.nav-item:hover,
.nav-item:focus {
  color: rgba(118, 118, 118, 1);
}

/* Main Content Section */
.main-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  flex: 1;
  padding: 2rem 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: white;
  padding: 0 var(--container-padding) 2.75rem;
}

.content-inner {
  display: flex;
  width: 100%;
  max-width: var(--content-max-width);
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1rem, 3vw, 3.125rem);
}

.content-center {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 67.5rem;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: 1.25rem 0 0 0;
}

.heading-container {
  position: relative;
  width: 100%;
  max-width: 60.7rem;
  aspect-ratio: 971.11 / 131.03;
  background: url(https://c.animaapp.com/8jXYWzWA/img/heading-2.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-heading {
  width: 100%;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cherolina-font-family);
  font-weight: 400;
  color: #bd9c6c;
  font-size: clamp(1.5rem, 7vw, 6.3rem);
  text-align: center;
  letter-spacing: 0.0375rem;
  line-height: 1.3;
  white-space: normal;
  word-wrap: break-word;
}

.button-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 28.125rem;
  align-items: center;
  justify-content: center;
}

.shop-button {
  display: inline-flex;
  min-width: 7.625rem;
  min-height: 2.9375rem;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.875rem;
  background: #b4cade;
  border-radius: 0.6875rem;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Helvetica;
  font-weight: 400;
  color: #010b15;
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  text-align: center;
  letter-spacing: 0.0625rem;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.shop-button:hover {
  background: #a0b8cc;
  transform: translateY(-2px);
}

.shop-button:active {
  background: #8fa4b8;
  transform: translateY(0);
}

.shop-button:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 3px;
}

/* Footer Section */
.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.125rem);
  padding: clamp(1.5rem, 4vw, 2.8125rem) 0 clamp(2rem, 4vw, 3rem) 0;
  background: white;
  border-top: 1px solid rgba(118, 118, 118, 0.08);
  margin-top: auto;
}

.footer-image {
  width: min(68.75rem, 90vw);
  height: auto;
  object-fit: contain;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.9375rem) var(--container-padding) 0;
  width: 100%;
  border-top: 1px solid rgba(118, 118, 118, 0.08);
}

.footer-inner {
  display: flex;
  width: 100%;
  max-width: var(--content-max-width);
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 2vw, 0.9375rem) clamp(1rem, 3vw, 3.125rem) 0;
}

.footer-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.5rem;
  padding: 0 0 0.0625rem 0;
}

.copyright,
.powered-by,
.link {
  font-family: 'Montserrat', Helvetica;
  font-weight: 400;
  color: rgba(118, 118, 118, 0.75);
  font-size: clamp(0.625rem, 1.5vw, 0.6875rem);
  text-align: center;
  letter-spacing: 0.04375rem;
  line-height: 1.7;
  white-space: nowrap;
}

.separator-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
}

.separator {
  font-family: 'Montserrat', Helvetica;
  font-weight: 400;
  color: rgba(118, 118, 118, 0.75);
  font-size: clamp(0.625rem, 1.5vw, 0.75rem);
  text-align: center;
  letter-spacing: 0.04375rem;
  line-height: 1.7;
}

.privacy-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.link {
  cursor: pointer;
  transition: color 0.3s ease;
}

.link:hover,
.link:focus {
  color: rgba(118, 118, 118, 1);
  text-decoration: underline;
}

/* Mobile Specific Adjustments */
@media (max-width: 640px) {
  .navigation {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-item {
    width: 100%;
    justify-content: center;
    padding: 0.625rem 1rem;
  }

  .main-heading {
    font-size: clamp(1.25rem, 8vw, 2rem);
    line-height: 1.2;
  }

  .footer-text {
    flex-direction: column;
    gap: 0.5rem;
  }

  .separator-wrapper {
    display: none;
  }
}

/* Tablet Adjustments */
@media (min-width: 641px) and (max-width: 1024px) {
  .navigation {
    gap: 0.25rem 0.5rem;
  }

  .nav-item {
    padding: 0.625rem 0.75rem;
  }

  .main-heading {
    font-size: clamp(2rem, 6vw, 4rem);
  }
}

/* Large Screen Adjustments */
@media (min-width: 1441px) {
  .container {
    max-width: 100%;
  }

  .header-content,
  .content-inner,
  .footer-inner {
    max-width: 90rem;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .shop-button:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .navigation,
  .shop-button {
    display: none;
  }

  .container {
    background: white;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .nav-item,
  .link {
    color: rgba(0, 0, 0, 0.9);
  }

  .shop-button {
    border: 2px solid #010b15;
  }
}

.element-light {
  position: relative;
  width: 1440px;
  height: 900px;
  background-color: #ffffff;
}

.element-light .main {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  padding: 20px 120px 0px;
  position: absolute;
  top: 305px;
  left: 0;
}

.element-light .container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  align-items: center;
  gap: 20px;
  padding: 0px 50px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.element-light .heading {
  position: relative;
  width: 382.39px;
  height: 111.8px;
  background-image: url(https://c.animaapp.com/CIEk6iRX/img/heading-1@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.element-light .text-wrapper {
  position: absolute;
  top: -1px;
  left: 0;
  width: 323px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--kimberlydetomasis-com-semantic-heading-1-font-family);
  font-weight: var(--kimberlydetomasis-com-semantic-heading-1-font-weight);
  color: #bd9c6c;
  font-size: var(--kimberlydetomasis-com-semantic-heading-1-font-size);
  letter-spacing: var(--kimberlydetomasis-com-semantic-heading-1-letter-spacing);
  line-height: var(--kimberlydetomasis-com-semantic-heading-1-line-height);
  white-space: nowrap;
  font-style: var(--kimberlydetomasis-com-semantic-heading-1-font-style);
}

.element-light .list {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 1789.38px;
}

.element-light .item {
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: calc(100% - 760px);
  height: calc(100% - 1372px);
  align-items: flex-start;
  justify-content: center;
  position: absolute;
}

.element-light .background {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 1;
  align-self: stretch;
  width: 100%;
  flex-grow: 1;
  background-color: #ffffff;
  border-radius: 12px;
}

.element-light .div {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  z-index: 2;
}

.element-light .container-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 12px 12px 0px 0px;
  overflow: hidden;
}

.element-light .container-2 {
  height: 100%;
  width: 340px;
  background-image: url(https://c.animaapp.com/CIEk6iRX/img/beauty-products@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.element-light .rectangle {
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
}

.element-light .div-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
  position: relative;
  flex: 1;
  align-self: stretch;
  width: 100%;
  flex-grow: 1;
  z-index: 1;
}

.element-light .heading-link-wrapper {
  display: flex;
  flex-direction: column;
  height: 57.39px;
  align-items: flex-start;
  padding: 17px 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.element-light .heading-link {
  display: flex;
  height: 23.39px;
  align-items: center;
  gap: 8px;
  padding: 0px 59.4px 1.39px 59.41px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.element-light .text-wrapper-2 {
  position: relative;
  display: -webkit-box;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.70px;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #767676;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.60px;
  line-height: 23.4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 0;
  -webkit-box-orient: vertical;
}

.element-light .img {
  position: relative;
  flex: 0 0 auto;
  margin-right: -0.86px;
}

.element-light .overlay-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #ffffff01;
  border-radius: 12px;
  box-shadow: 10px 10px 35px #2e2a390d;
}

.element-light .background-wrapper {
  top: 0;
  left: 380px;
  display: flex;
  flex-direction: column;
  width: calc(100% - 760px);
  height: calc(100% - 1372px);
  align-items: flex-start;
  justify-content: center;
  position: absolute;
}

.element-light .container-3 {
  height: 100%;
  width: 340px;
  background-image: url(https://c.animaapp.com/CIEk6iRX/img/handbags@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.element-light .heading-link-2 {
  padding: 0px 89.33px 1.39px 89.32px;
  display: flex;
  height: 23.39px;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.element-light .container-4 {
  position: relative;
  flex: 0 0 auto;
}

.element-light .overlay-shadow-2 {
  width: 100.00%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #ffffff01;
  border-radius: 12px;
  box-shadow: 10px 10px 35px #2e2a390d;
}

.element-light .item-2 {
  top: 0;
  left: 760px;
  display: flex;
  flex-direction: column;
  width: calc(100% - 760px);
  height: calc(100% - 1372px);
  align-items: flex-start;
  justify-content: center;
  position: absolute;
}

.element-light .container-5 {
  height: 100%;
  width: 340px;
  background-image: url(https://c.animaapp.com/CIEk6iRX/img/home-finds@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.element-light .heading-link-3 {
  padding: 0px 80.48px 1.39px 80.47px;
  display: flex;
  height: 23.39px;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.element-light .item-3 {
  top: 457px;
  left: 0;
  display: flex;
  flex-direction: column;
  width: calc(100% - 760px);
  height: calc(100% - 1372px);
  align-items: flex-start;
  justify-content: center;
  position: absolute;
}

.element-light .container-6 {
  height: 100%;
  width: 340px;
  background-image: url(https://c.animaapp.com/CIEk6iRX/img/jewelry@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.element-light .heading-link-4 {
  padding: 0px 102.45px 1.39px;
  display: flex;
  height: 23.39px;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.element-light .overlay-shadow-3 {
  width: 100%;
  height: 100.00%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #ffffff01;
  border-radius: 12px;
  box-shadow: 10px 10px 35px #2e2a390d;
}

.element-light .item-4 {
  top: 457px;
  left: 380px;
  display: flex;
  flex-direction: column;
  width: calc(100% - 760px);
  height: calc(100% - 1372px);
  align-items: flex-start;
  justify-content: center;
  position: absolute;
}

.element-light .container-7 {
  height: 100%;
  width: 340px;
  background-image: url(https://c.animaapp.com/CIEk6iRX/img/kitchen@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.element-light .heading-link-5 {
  padding: 0px 101.57px 1.39px 101.55px;
  display: flex;
  height: 23.39px;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.element-light .container-8 {
  position: relative;
  flex: 0 0 auto;
  margin-right: -0.17px;
}

.element-light .overlay-shadow-4 {
  width: 100.00%;
  height: 100.00%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #ffffff01;
  border-radius: 12px;
  box-shadow: 10px 10px 35px #2e2a390d;
}

.element-light .item-5 {
  top: 457px;
  left: 760px;
  display: flex;
  flex-direction: column;
  width: calc(100% - 760px);
  height: calc(100% - 1372px);
  align-items: flex-start;
  justify-content: center;
  position: absolute;
}

.element-light .container-9 {
  height: 100%;
  width: 340px;
  background-image: url(https://c.animaapp.com/CIEk6iRX/img/lets-get-dressed@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.element-light .heading-link-6 {
  padding: 0px 57.52px 1.39px 57.51px;
  display: flex;
  height: 23.39px;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.element-light .container-10 {
  position: relative;
  flex: 0 0 auto;
  margin-right: -0.08px;
}

.element-light .item-6 {
  top: 915px;
  left: 0;
  display: flex;
  flex-direction: column;
  width: calc(100% - 760px);
  height: calc(100% - 1372px);
  align-items: flex-start;
  justify-content: center;
  position: absolute;
}

.element-light .container-11 {
  height: 100%;
  width: 340px;
  background-image: url(https://c.animaapp.com/CIEk6iRX/img/lighting@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.element-light .heading-link-7 {
  padding: 0px 97.78px 1.39px;
  display: flex;
  height: 23.39px;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.element-light .item-7 {
  top: 915px;
  left: 380px;
  display: flex;
  flex-direction: column;
  width: calc(100% - 760px);
  height: calc(100% - 1372px);
  align-items: flex-start;
  justify-content: center;
  position: absolute;
}

.element-light .container-12 {
  height: 100%;
  width: 340px;
  background-image: url(https://c.animaapp.com/CIEk6iRX/img/pre-loved@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.element-light .heading-link-8 {
  padding: 0px 91.22px 1.39px 91.21px;
  display: flex;
  height: 23.39px;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.element-light .item-8 {
  top: 915px;
  left: 760px;
  display: flex;
  flex-direction: column;
  width: calc(100% - 760px);
  height: calc(100% - 1372px);
  align-items: flex-start;
  justify-content: center;
  position: absolute;
}

.element-light .container-13 {
  height: 100%;
  width: 340px;
  background-image: url(https://c.animaapp.com/CIEk6iRX/img/sweat@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.element-light .heading-link-9 {
  padding: 0px 109.48px 1.39px;
  display: flex;
  height: 23.39px;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.element-light .container-14 {
  position: relative;
  flex: 0 0 auto;
  margin-right: -0.01px;
}

.element-light .item-9 {
  top: 1372px;
  left: 0;
  display: flex;
  flex-direction: column;
  width: calc(100% - 760px);
  height: calc(100% - 1372px);
  align-items: flex-start;
  justify-content: center;
  position: absolute;
}

.element-light .container-15 {
  height: 100%;
  width: 340px;
  background-image: url(https://c.animaapp.com/CIEk6iRX/img/wallpaper-era@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.element-light .heading-link-10 {
  padding: 0px 71.45px 1.39px;
  display: flex;
  height: 23.39px;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.element-light .footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 50px;
  padding: 45px 0px 48px;
  position: absolute;
  top: 2246px;
  left: 0;
  background-color: #ffffff;
  border-top-width: 1px;
  border-top-style: solid;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-color: #76767614;
}

.element-light .container-16 {
  position: relative;
  width: 1100px;
  flex: 0 0 auto;
  object-fit: cover;
}

.element-light .horizontal-border {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 31px 120px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-top-width: 1px;
  border-top-style: solid;
  border-color: #76767614;
}

.element-light .container-17 {
  display: flex;
  max-width: 1200px;
  align-items: flex-start;
  padding: 15px 50px 0px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.element-light .container-18 {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 0px 1px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.element-light .small-kimberly {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--kimberlydetomasis-com-semantic-small-font-family);
  font-weight: var(--kimberlydetomasis-com-semantic-small-font-weight);
  color: #767676bf;
  font-size: var(--kimberlydetomasis-com-semantic-small-font-size);
  text-align: right;
  letter-spacing: var(--kimberlydetomasis-com-semantic-small-letter-spacing);
  line-height: var(--kimberlydetomasis-com-semantic-small-line-height);
  white-space: nowrap;
  font-style: var(--kimberlydetomasis-com-semantic-small-font-style);
}

.element-light .small-link-powered {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #767676bf;
  font-size: 11px;
  text-align: right;
  letter-spacing: 0.70px;
  line-height: 18.7px;
  white-space: nowrap;
}

.element-light .list-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.78e-14px;
  position: relative;
  flex: 0 0 auto;
}

.element-light .container-19 {
  display: flex;
  flex-direction: column;
  width: 19.73px;
  height: 21.38px;
  align-items: flex-end;
  padding: 0px 8px;
  position: relative;
}

.element-light .text-wrapper-3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  margin-left: -0.27px;
  font-family: var(--kimberlydetomasis-com-semantic-item-font-family);
  font-weight: var(--kimberlydetomasis-com-semantic-item-font-weight);
  color: #767676bf;
  font-size: var(--kimberlydetomasis-com-semantic-item-font-size);
  text-align: right;
  letter-spacing: var(--kimberlydetomasis-com-semantic-item-letter-spacing);
  line-height: var(--kimberlydetomasis-com-semantic-item-line-height);
  white-space: nowrap;
  font-style: var(--kimberlydetomasis-com-semantic-item-font-style);
}

.element-light .div-wrapper-2 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.element-light .link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  flex: 0 0 auto;
}

.element-light .text-wrapper-4 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #767676bf;
  font-size: 11px;
  text-align: right;
  letter-spacing: 0.70px;
  line-height: 18.7px;
  white-space: nowrap;
}

.element-light .margin {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  padding: 0px 0px 24px;
  position: absolute;
  top: 0;
  left: 0;
}

.element-light .sticky-header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.element-light .sticky-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 120px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
}

.element-light .header {
  position: relative;
  max-width: 1200px;
  width: 100%;
  height: 281.09px;
  background-color: transparent;
}

.element-light .details-modal {
  position: absolute;
  top: 92px;
  left: 50px;
  width: 44px;
  height: 44px;
}

.element-light .link-2 {
  position: absolute;
  top: 20px;
  left: 368px;
  width: 465px;
  height: 188px;
}

.element-light .nav-margin {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10.5px 0px 0px;
  position: absolute;
  top: 208px;
  left: calc(50.00% - 298px);
}

.element-light .nav-list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0px 0px;
  position: relative;
  flex: 0 0 auto;
}

.element-light .link-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.element-light .link-3 {
  display: inline-flex;
  align-items: center;
  padding: 12px;
  position: relative;
  flex: 0 0 auto;
}

.element-light .text-wrapper-5 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--kimberlydetomasis-com-semantic-link-font-family);
  font-weight: var(--kimberlydetomasis-com-semantic-link-font-weight);
  color: #767676bf;
  font-size: var(--kimberlydetomasis-com-semantic-link-font-size);
  letter-spacing: var(--kimberlydetomasis-com-semantic-link-letter-spacing);
  line-height: var(--kimberlydetomasis-com-semantic-link-line-height);
  white-space: nowrap;
  font-style: var(--kimberlydetomasis-com-semantic-link-font-style);
}

.element-light .container-20 {
  position: absolute;
  top: 92px;
  left: 1066px;
  width: 84px;
  height: 44px;
}

.wrapper {
    min-width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;

}
.wrapper img{
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

}
