@font-face {
  font-family: Test Domaine Display Cnd;
  src: url('../fonts/Test-Domaine-Display-Cnd-Xbold.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Testdomainetext Bf 66174 A 2088477";
  src: url('../fonts/TestDomaineText-Medium-BF66174a2088477.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #301016;
  --white: #fffee1;
  --orange: #f34313;
  --body-text: #fffee1b3;
}

.page-wrapper {
  overflow: hidden;
}

.hero {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--background), #1e0a0e);
  height: auto;
}

.padding-global {
  padding-left: 4rem;
  padding-right: 4rem;
}

.wrapper_hero {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  position: relative;
}

.button {
  background-color: var(--background);
  color: var(--white);
  border-radius: 2rem;
  width: 100%;
  height: 2.5rem;
  margin-top: .5rem;
  transition: all .3s;
}

.button:hover {
  background-color: var(--orange);
  color: var(--white);
}

.input {
  border: 1px solid var(--background);
  background-color: var(--white);
  color: var(--background);
  border-radius: 2rem;
  height: 2.5rem;
  padding: 1rem;
  font-size: 1rem;
}

.input:focus {
  border-color: var(--orange);
}

.input::placeholder {
  color: var(--background);
}

.form-title {
  color: var(--white);
  text-align: center;
  max-width: 30rem;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Testdomainetext Bf 66174 A 2088477", Impact, sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 95%;
}

.form-title.small {
  font-family: Lato, sans-serif;
  font-size: 1rem;
}

.text-span {
  color: var(--orange);
}

.body-text {
  color: var(--background);
  text-align: left;
  font-size: 1.25rem;
  font-weight: 400;
  position: relative;
}

.body-text.success {
  color: var(--white);
  font-size: 2rem;
  line-height: 80%;
}

.form-block {
  z-index: 1;
  position: relative;
}

.form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 50vw;
  display: flex;
}

.wrapper_form-inputs {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border: 1px solid var(--white);
  background-color: var(--white);
  border-radius: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 1.5rem #00000080;
}

.image {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: .5rem;
  width: clamp(16rem, 20vw, 20rem);
  position: absolute;
  top: -3rem;
  left: -6%;
}

.image._2 {
  width: clamp(16rem, 18vw, 24rem);
  top: auto;
  bottom: 15%;
  left: 2%;
}

.image._3 {
  width: clamp(18rem, 15vw, 24rem);
  top: auto;
  bottom: -10%;
  left: auto;
}

.image._4 {
  width: clamp(18rem, 18vw, 24rem);
  inset: auto 2% 15% auto;
}

.image._5 {
  width: clamp(16rem, 20vw, 20rem);
  left: auto;
  right: -6%;
}

.wrapper_carousel {
  display: none;
}

.image_logo {
  width: 8rem;
}

.image_logo.success {
  width: 12rem;
  padding-bottom: 0;
}

.wrapper_form-inputs-holder {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.wrapper_footer-links {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 2rem;
  padding-left: 15%;
  padding-right: 15%;
  display: flex;
}

.link_footer {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  transition: opacity .3s;
  display: flex;
}

.image_link-icon {
  width: 1.25rem;
}

.image_shell {
  width: 10rem;
}

.image_shell._1 {
  position: absolute;
  inset: -3.5rem auto auto -2rem;
}

.image_shell._2 {
  position: absolute;
  inset: auto -2rem -3.5rem auto;
}

.success_hero {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--background);
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-bottom: 2rem;
  display: flex;
}

.wrapper_thank-you {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.filler {
  height: 0;
}

@media screen and (max-width: 991px) {
  .hero {
    height: auto;
  }

  .padding-global {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .wrapper_hero {
    padding-top: 2rem;
  }

  .form-block {
    width: 100%;
    margin-top: 2rem;
  }

  .form {
    width: 100%;
  }

  .image {
    display: none;
  }

  .wrapper_carousel {
    width: 100%;
    margin-top: 1.5rem;
    display: flex;
  }

  .carousel-holder {
    flex: none;
    display: flex;
  }

  .image-carousel {
    aspect-ratio: 1;
    object-fit: cover;
    flex: none;
    width: 20rem;
    padding-right: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .padding-global {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .wrapper_hero {
    padding-top: 1rem;
  }

  .button {
    margin-top: .25rem;
  }

  .form-title {
    max-width: 20rem;
    font-size: 2rem;
  }

  .body-text {
    font-size: 1.125rem;
  }

  .form-block {
    width: 100%;
  }

  .wrapper_form-inputs {
    margin-top: 1rem;
  }

  .wrapper_footer-links {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column-reverse;
    padding-left: 0%;
    padding-right: 0%;
  }

  .image_shell._1 {
    top: -4rem;
  }

  .image_shell._2 {
    bottom: -4rem;
  }
}


@font-face {
  font-family: 'Test Domaine Display Cnd';
  src: url('../fonts/Test-Domaine-Display-Cnd-Xbold.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Testdomainetext Bf 66174 A 2088477';
  src: url('../fonts/TestDomaineText-Medium-BF66174a2088477.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}