:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-black: #212121;
  --c-salmon: #ffece4;
  --c-pink: #e5aae5;
  --c-blue: #00007f;
  --c-dark-blue: #000055;
  --c-purple: #a164ff;
  --c-dark-purple: #00003a;
  --c-green: #00ff9e;

  --font-primary: "Poppins";
  --font-headings: "Asap";
}

body {
  font-family: var(--font-primary), -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.heroTitle {
  font-family: var(--font-headings);
}

.main {
  background-color: var(--c-blue);
}

.heroImageContainer {
  grid-column: 1;
  grid-row: 3;
  align-content: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  width: 100%;
}

.heroImageBackground {
  position: absolute;
  top: 0;
  left: 0;
  background: radial-gradient(
    ellipse 300px 300px at 50% 45%,
    #ffece4 0%,
    transparent 70%
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.heroImageMobile {
  width: 100%;
  height: auto;
  max-width: 320px;
  z-index: 1;
}

.heroImageDesktop {
  display: none;
  z-index: 1;
}

.featureTitle {
  font-family: var(--font-headings);
}

.headerBanner {
  background-color: var(--c-salmon);
}

.heroText {
  max-width: 700px;
}

.heroSection {
  background-color: var(--c-white);
  padding-bottom: 0;
}

.curveWrapper {
  background-color: var(--c-blue);
  width: 100%;
  position: relative;
  z-index: 1;
}

.curveSeparator {
  width: 100%;
  height: 60px;
  background-color: var(--c-white);
  border-radius: 0 0 50% 50% / 0 0 60px 60px;
}

.featuresSection {
  background-color: var(--c-blue);
  position: relative;
  z-index: 2;
}

.highlight {
  color: var(--c-purple);
}

.featuresTitle {
  color: var(--c-white);
}

.featureTitle {
  color: var(--c-white);
}

.featureDescription {
  color: var(--c-white);
}

.button {
  border-radius: 24px;
  width: 250px;
  color: #000;
  font-weight: 600;
  font-size: 18px;
}

.buttonPrimary {
  background-color: var(--c-green);
  color: var(--c-black);
}

.buttonSecondary {
  background-color: var(--c-pink);
  color: var(--c-black);
}

.green {
  background-color: var(--c-green);
}

.pink {
  background-color: var(--c-pink);
}

.content {
  background-color: var(--c-blue);
}

.footer {
  background-color: var(--c-dark-purple);
  color: var(--c-white);
}

.customers {
  background: var(--c-dark-blue);
}

.customersWrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  padding: 24px 30px;
  color: var(--c-white);
}

.customersTitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.customersTextContainer {
  display: flex;
  flex-direction: column;
}

.customersCaptionMobile {
  font-size: 10px;
  line-height: 14px;
}

.customersCaptionDesktop {
  display: none;
}

.customersLogos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
}

.customerLogo {
  height: 30px;
  width: auto;
  flex-grow: 1;
}

.customerLogoWV {
  height: 35px;
}

.customerLogoRossmann {
  height: 20px;
}

@media (min-width: 768px) {
  .heroImageContainer {
    margin: 0;
    width: 50%;
  }

  .heroImageBackground {
    background-position: 70% center;
  }

  .heroImageMobile {
    display: none;
  }

  .heroImageDesktop {
    display: block;
    margin: 27px 2px 34px 78px;
    height: auto;
    width: 100%;
  }

  .curveSeparator {
    height: 160px;
    border-radius: 0 0 50% 50% / 0 0 160px 160px;
  }

  .customersWrapper {
    flex-direction: row;
    gap: 56px;
    text-align: left;
  }

  .customersTitle {
    font-size: 18px;
    line-height: 28px;
  }

  .customersCaptionMobile {
    display: none;
  }

  .customersCaptionDesktop {
    display: inline;
    font-size: 12px;
    line-height: 16px;
    margin-top: 4px;
  }

  .customersLogos {
    gap: 7%;
    padding: 0;
    flex-wrap: nowrap;
    flex: 1;
  }

  .customerLogo {
    height: 55px;
  }

  .customerLogoWV {
    height: 55px;
  }

  .customerLogoRossmann {
    height: 26px;
  }

  .customerLogoSAP {
    height: 45px;
  }

  .customerLogoTmobile {
    height: 39px;
  }
}

@media (min-width: 992px) {
  .heroImageContainer {
    grid-column: 2;
    grid-row: 1 / 4;
    margin: 0;
    width: 100%;
  }
}
