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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope";
  line-height: 1.8;
  font-size: clamp(1rem, 0.188vw + 0.956rem, 1.125rem);
}

img {
  display: block;
  max-width: 100%;
}

a, a:active {
  text-decoration: none;
}

.wrapper {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 43.75em) {
  .wrapper {
    padding-inline: 2.75rem;
  }
}
@media (min-width: 90em) {
  .wrapper {
    padding-inline: 3.75rem;
  }
}

:root {
  --purple-900: #24053E;
  --purple-500: #584D62;
  --purple-100: #FCF8FF;
  --green: #44FFA1;
  --white: #FFFFFF;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces/Fraunces-VariableFont_SOFT,WONK,opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
h1, h2, h3 {
  font-family: "Fraunces";
  font-weight: 600;
  line-height: 1.2;
}
h1 span, h2 span, h3 span {
  display: inline-block;
}
h1 span::after, h2 span::after, h3 span::after {
  display: block;
  height: 0.125rem;
  background-color: var(--green);
  margin-top: 0.25rem;
  content: " ";
}

h1 {
  font-size: 3.125rem;
  font-size: clamp(3.125rem, 2.1551724138rem + 4.1379310345vw, 5rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 2.254vw + 1.472rem, 3.5rem);
}

h3 {
  font-size: clamp(1.75rem, 0.376vw + 1.662rem, 2rem);
}

.button {
  background-color: var(--green);
  color: var(--purple-900);
  padding: 0.75rem 2rem;
  display: inline-block;
}
.button:hover {
  background-color: var(--purple-900);
  color: var(--green);
  border: 2px solid var(--green);
}

.header {
  background-color: var(--purple-900);
  padding-block: 2rem 4rem;
}
@media (min-width: 43.75em) {
  .header {
    padding-block: 2rem 3.5rem;
  }
}
@media (min-width: 56.25em) {
  .header {
    padding-block: 3.5rem;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  height: auto;
}
.header__link {
  color: var(--white);
  transition: color 0.3s ease-in-out;
}
.header__link:hover {
  color: var(--green);
}
.header__link::after {
  display: block;
  height: 0.125rem;
  background-color: var(--green);
  margin-top: 0.25rem;
  content: " ";
}

.hero {
  background-color: var(--purple-900);
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4.5rem;
  background: var(--purple-900);
  clip-path: ellipse(50% 100% at center 0%);
}
.hero__wrapper {
  padding-block-end: 18.5rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 2.5rem;
  position: relative;
}
.hero__headline {
  color: var(--white);
  text-align: center;
  margin-inline: auto;
  max-width: 13ch;
}
.hero__image {
  margin-inline: auto;
  position: absolute;
  transform: translateY(90%);
  object-fit: contain;
  height: 27.5625rem;
  width: 47.9375rem;
  z-index: 1;
}
@media (max-width: 56.24875em) {
  .hero__image {
    height: 17.9125rem;
    width: 29.994375rem;
  }
}
@media (max-width: 28.31125em) {
  .hero__image {
    height: 11.17875rem;
    width: 18.645rem;
  }
}/*# sourceMappingURL=style.css.map */