:root {
  color-scheme: dark;
  --hero-height: clamp(620px, 42.24vw, 811px);
  --accent: #ff7474;
  --text: #ffffff;
}


.content-wrapper.internal {
padding-top: 40px;
padding-bottom: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
 /* min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: #000000;
  color: var(--text);*/
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: var(--hero-height);
  overflow: hidden;
  background: #000000;
}

.hero__media {
  position: absolute;
  z-index: -3;
  top: 0;
  display: block;
  height: 100%;
  max-width: none;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.hero__media--left {
  left: 0;
  width: 35.9375%;
  object-position: center;
}

.hero__media--right {
  right: 0;
  width: 53.0208%;
  object-position: center;
}

.hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 41.71875%;
  background-image: linear-gradient(
    101.852deg,
    #000000 31.431%,
    rgb(0 0 0 / 0%) 76.801%
  );
  pointer-events: none;
}

.hero__content {
  position: absolute;
  z-index: 1;
  top: 30.1554%;
  left: 50%;
  width: min(94%, 760px);
  transform: translateX(-50%);
  text-align: center;
}

.hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(31px, 1.9792vw, 38px);
  font-weight: 700;
  line-height: 1.25;
}

.hero p {
  color: var(--text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.36;
}

.hero__intro {
  width: min(100%, 722px);
  margin: 9px auto 0;
}

.hero__details {
  width: min(100%, 663px);
  margin: 14px auto 0;
}

.hero__button {
  display: inline-flex;
  width: 226px;
  min-height: 45px;
  margin-top: 17px;
  align-items: center;
  justify-content: center;
  padding: 10px 36px;
  border-radius: 4px;
  background: var(--accent);
 text-decoration: none;
  color: white!important;
cursor:pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.hero__button:hover {
  background: #ff6565;
  box-shadow: 0 8px 24px rgb(255 116 116 / 24%);

}

.hero__button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.hero__button:active {
  transform: translateY(0);
}

.palette-showcase {
  padding: 130px 24px 121px;
  background: #ffffff;
  color: #263238;
  scroll-margin-top: 24px;
}

.palette-showcase__inner {
  position: relative;
  width: min(100%, 1546px);
  aspect-ratio: 1546 / 634;
  margin: 0 auto;
}

.palette-showcase__text {
  position: absolute;
  z-index: 2;
  top: 0.9464%;
  left: 0;
  width: 34.7995%;
  margin: 0;
  color: #263238;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.palette-showcase__media {
  position: absolute;
  margin: 0;
  overflow: hidden;
}

.palette-showcase__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.palette-showcase__media--fan {
  top: 24.2902%;
  left: 0;
  width: 37.1281%;
  height: 75.7098%;
}

.palette-showcase__media--paint {
  top: 17.6656%;
  left: 34.2173%;
  width: 25.4851%;
  height: 64.6688%;
}

.palette-showcase__media--samples {
  top: 0;
  left: 60.9961%;
  width: 39.0039%;
  height: 100%;
}

@media (min-width: 768px) and (max-width: 1100px) {
  :root {
    --hero-height: 512px;
  }

  .hero__media--left {
    left: calc(50% - 679px);
    width: 505px;
  }

  .hero__media--right {
    right: auto;
    left: calc(50% - 41px);
    width: 766px;
  }

  .hero__shade {
    inset: 0 0 0 calc(50% - 106px);
  }

  .hero__content {
    top: 136px;
    width: min(calc(100% - 40px), 600px);
  }

  .hero h1 {
    font-size: 24px;
    line-height: 1.25;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.35;
  }

  .hero__intro {
    width: min(100%, 579px);
    margin-top: 13px;
  }

  .hero__details {
    width: min(100%, 597px);
    margin-top: 20px;
  }

  .hero__button {
    width: 193px;
    min-height: 38px;
    margin-top: 31px;
    padding: 8px 30px;
    font-size: 14px;
  }

  .palette-showcase {
    padding: 90px 0 44px;
  }

  .palette-showcase__inner {
    display: block;
    width: min(calc(100% - 182px), 717px);
    height: 373px;
    aspect-ratio: auto;
  }

  .palette-showcase__text {
    position: absolute;
    top: 6px;
    left: 0;
    width: 406px;
    font-size: 16px;
    line-height: normal;
  }

  .palette-showcase__media--fan {
    position: absolute;
    top: 171px;
    left: 0;
    width: 266px;
    height: 202px;
  }

  .palette-showcase__media--paint {
    position: absolute;
    top: 142px;
    left: 252px;
    width: 153px;
    height: 158px;
  }

  .palette-showcase__media--samples {
    position: absolute;
    top: 0;
    left: 421px;
    width: 296px;
    height: 373px;
  }
}

@media (min-width: 421px) and (max-width: 767px) {
  :root {
    --hero-height: 538px;
  }

  .hero__media--left {
    left: calc(50% - 679px);
    width: 538px;
    opacity: 1;
  }

  .hero__media--right {
    right: auto;
    left: calc(50% - 62px);
    width: 808px;
    opacity: 1;
  }

  .hero__shade {
    inset: 0 0 0 calc(50% - 106px);
    background-image: linear-gradient(
      101.852deg,
      #000000 31.431%,
      rgb(0 0 0 / 0%) 76.801%
    );
  }

  .hero__content {
    top: 140px;
    width: min(calc(100% - 80px), 517px);
  }

  .hero h1 {
    font-size: 24px;
    line-height: 1.25;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.38;
  }

  .hero__intro {
    width: 100%;
    margin-top: 12px;
  }

  .hero__details {
    width: 100%;
    margin-top: 20px;
  }

  .hero__details br {
    display: none;
  }

  .hero__button {
    width: 193px;
    min-height: 38px;
    margin-top: 25px;
    padding: 8px 30px;
    font-size: 14px;
  }

  .palette-showcase {
    padding: 60px 40px;
  }

  .palette-showcase__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    width: min(100%, 520px);
    height: auto;
    gap: 0;
    aspect-ratio: auto;
  }

  .palette-showcase__media {
    top: auto;
    left: auto;
  }

  .palette-showcase__text {
    position: static;
    grid-row: 2;
    width: auto;
    margin: 31px 0 25px;
    font-size: 16px;
    line-height: 22px;
  }

  .palette-showcase__media--samples {
    position: relative;
    grid-row: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 520 / 341;
  }

  .palette-showcase__media--paint {
    position: relative;
    z-index: 2;
    grid-row: 3;
    grid-column: 1;
    align-self: start;
    justify-self: end;
    width: 39.8077%;
    height: auto;
    aspect-ratio: 207 / 214;
  }

  .palette-showcase__media--fan {
    position: relative;
    z-index: 1;
    grid-row: 3;
    grid-column: 1;
    align-self: start;
    justify-self: start;
    width: 92.8846%;
    height: auto;
    margin-top: 30px;
    aspect-ratio: 483 / 359;
  }
}

@media (max-width: 420px) {
  :root {
    --hero-height: 560px;
  }

  .hero__media--left {
    left: calc(50% - 679px);
    width: 538px;
    opacity: 0.86;
  }

  .hero__media--right {
    right: auto;
    left: calc(50% - 62px);
    width: 808px;
    opacity: 0.8;
  }

  .hero__shade {
    inset: 0;
    background:
      linear-gradient(
        180deg,
        rgb(0 0 0 / 28%) 0%,
        rgb(0 0 0 / 76%) 40%,
        rgb(0 0 0 / 64%) 100%
      ),
      linear-gradient(
        90deg,
        rgb(0 0 0 / 58%) 0%,
        rgb(0 0 0 / 8%) 54%,
        rgb(0 0 0 / 42%) 100%
      );
  }

  .hero__content {
    top: 64px;
    width: calc(100% - 32px);
  }

  .hero h1 {
    font-size: 20px;
    line-height: 1.25;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.42;
  }

  .hero__intro {
    width: 100%;
    margin-top: 16px;
  }

  .hero__details {
    width: 100%;
    margin-top: 18px;
  }

  .hero__details br {
    display: none;
  }

  .hero__button {
    width: 193px;
    min-height: 38px;
    margin-top: 22px;
    padding: 8px 24px;
    font-size: 14px;
  }

  .palette-showcase {
    padding: 40px 16px 50px;
  }

  .palette-showcase__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    width: 100%;
    height: auto;
    gap: 0;
    aspect-ratio: auto;
  }

  .palette-showcase__media {
    top: auto;
    left: auto;
  }

  .palette-showcase__text {
    position: static;
    grid-row: 2;
    width: auto;
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .palette-showcase__media--samples {
    position: relative;
    grid-row: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 603 / 634;
  }

  .palette-showcase__media--paint {
    position: relative;
    z-index: 2;
    grid-row: 3;
    grid-column: 1;
    align-self: start;
    justify-self: end;
    width: 42%;
    height: auto;
    aspect-ratio: 394 / 410;
  }

  .palette-showcase__media--fan {
    position: relative;
    z-index: 1;
    grid-row: 3;
    grid-column: 1;
    align-self: start;
    justify-self: start;
    width: 100%;
    height: auto;
    margin-top: 24px;
    aspect-ratio: 574 / 480;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__button {
    transition: none;
  }
}
