
@font-face {
  font-family: "Engravers MT";
  src: url("https://umb-4553t5.s3.eu-west-1.amazonaws.com/8723/fonts/EngraversMTBold.woff2") format("woff2"),
    url("https://umb-4553t5.s3.eu-west-1.amazonaws.com/8723/fonts/EngraversMTBold.woff") format("woff"),
    url("https://umb-4553t5.s3.eu-west-1.amazonaws.com/8723/fonts/EngraversMTBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  
}

body {
  background: #FAFBFB;
  min-height: 100vh;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  color: #000000;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 19px;
}

.type-eng {
  font-family: "Engravers MT", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.fw-300 {
font-weight: 300 !important;
}
.fw-700 {
font-weight: 700 !important;
}
.fw-900 {
font-weight: 900 !important;
}

.main-title {
  font-size: 31px;
  line-height: 1.25;
  font-weight: 900;
  line-height: 31px;
}

.body-text {
  font-size: 19px;
  line-height: 1.25;
}

.notes{
  font-size: 13px;
  font-weight: 300;
  line-height: normal;
}

.text-form{
  color: #696969;
  font-size: 17px;
  line-height: normal;
}


.page-wrapper {
  max-width: 100%;
  margin: 0 auto;
  background: #FAFBFB;
  box-shadow: none;
}

.hero {
  position: relative;
  width: 100%;
  height: 463px;
  overflow: hidden;
  background: #FAFBFB;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
  object-position: 53% top;
    object-fit: cover;
      object-position: 57% 0%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-overlay>img {
  position: absolute;
  height: auto;
}


.logo {
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
}

.d-logo {
  width: clamp(200px, 18vw, 260px);
}

/* HEADLINE */
.hero-headline {
  top: 120px;
  left: 38%;
  transform: translateX(-50%);
  width: 190px;
}

/* KV (mobile) */
.hero-kv {
  top: 370px;
  left: 50%;
  transform: translateX(-50%);
  width: 134px;
}



/* =======================
      buttons 
   ======================= */

.legal-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 30px auto;
}

.legal-btn {
  position: relative;
  width: 248px;
  height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #000;
  background: transparent;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.store-btn{
  width: 275px;
  height: 67px;
}

.legal-btn:visited,
.legal-btn:hover,
.legal-btn:active {
  color: #000;
}

.legal-btn_line {
  width: 100%;
  height: auto;
  display: block;
}

.legal-btn_text {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  line-height: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Hover for lines */
.legal-btn .btn-line-left,
.legal-btn .btn-line-right {
  transition: transform .35s ease;
}


.legal-btn .btn-line-left {
  transform-origin: right center;
}

.legal-btn .btn-line-right {
  transform-origin: left center;
}

.legal-btn:hover .btn-line-left {
  transform: scaleX(1.18);
}

.legal-btn:hover .btn-line-right {
  transform: scaleX(1.18);
}

.legal-btn:focus-visible {
  outline: 2px solid #000;
  outline-offset: 4px;
}

@media (min-width: 992px) {
  .legal-buttons {
    gap: 40px;
    flex-wrap: nowrap;
  }
}

.main-btn {
  position: relative;
  display: inline-block;
  width: 294px;
  height: 75px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform .25s ease;
  transform-origin: center;
}

.main-btn:hover {
  transform: scale(1.04);
}

/* SVG frame */
.main-btn_frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Text into the frame */
.main-btn_text {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 8.82px;
  text-transform: uppercase;
  color: #000;
}

/* focus */
.main-btn:focus-visible {
  outline: 2px solid #000;
  outline-offset: 5px;
  border-radius: 6px;
}

/* FORM */

  .form-control,
  .form-select,
  .upload-label {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }

  .form-floating>.form-control,
  .form-floating>.form-control-plaintext,
  .form-floating>.form-select,
  .form-floating>.upload-label {
    height: 42px !important;
    padding-bottom: 14px !important;
  }

  .form-floating>.form-control,
  .form-floating>.form-control-plaintext,
  .form-floating>.form-select {
    line-height: 1.25;
  }

  .form-floating>label {
    top: -8px;
  }

  .form-check-input {

    width: 22px;
    height: 22px;
    background-color: #fff;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }

  .form-check .form-check-input {
    /* margin-left: -32px; */
    margin-top: 0;
  }

  .form-check-label {
    padding-top: 0px !important;
    padding-left: 20px;
  }

  .form-check-input.is-valid~.form-check-label,
  .was-validated .form-check-input:valid~.form-check-label {
    color: #0b0b0b;
  }

  .form-check-label {
    line-height: 1.2;
  }

  .invalid-feedback {

    color: #740c16;
  }

  .form-check-input.is-invalid~.form-check-label,
  .was-validated .form-check-input:invalid~.form-check-label {
    color: #740c16;
  }

  .form-check-input.is-valid:checked,
  .was-validated .form-check-input:valid:checked {
    background-color: #000000;
  }

  .upload-label {
    display: block;
    /* padding: 12px 18px; */
    background: #fff;
    cursor: pointer;
    text-align: start;
    padding: 9px 0px 10px 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }

/* AGE Form */

.age-field {
  position: relative;
  width: 100%;
  min-width: 0;
}

/* Ornament frame */
.age-frame {
  position: relative;
  width: min(240px, 100%);
  margin: 0 auto;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

/* Label default */
.age-label {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 21px;
  letter-spacing: 6px;
  line-height: 1;
  color: #000;
  white-space: nowrap;
  transition: transform .25s ease, top .25s ease, font-size .25s ease, opacity .25s ease;
}

/* Value  */
.age-value {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: .18em;
  color: #000;
  min-height: 16px;
  font-size: 16px;
  opacity: 0;
  transition: opacity .2s ease, top .25s ease, font-size .25s ease;
}

/* Invisible but clickable select over the whole frame */
.age-select {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(240px, 100%);
  height: 80px;
  opacity: 0;
  cursor: pointer;
  border: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}

/* Focus ring */
.age-field:focus-within .age-frame {
  /* outline: 2px solid #0b5cff; */
  outline-offset: 6px;
  border-radius: 12px;
}

/* Hover lines  */
.age-field .btn-line-left,
.age-field .btn-line-right {
  transition: transform .35s ease;
}

.age-field:hover .btn-line-left {
  transform-origin: right center;
  transform: scaleX(1.14);
}

.age-field:hover .btn-line-right {
  transform-origin: left center;
  transform: scaleX(1.14);
}

/* ==============================
   SELECTED STATE 
   ============================== */

.age-field.is-selected .age-label {
  top: 26px;
  font-size: 12px;
  letter-spacing: .22em;
  opacity: .7;
  transform: translate(-50%, -50%);
}


.age-field.is-selected .age-value {
  opacity: 1;
  top: 34px;
  font-size: 24px;
}

/* shrink ONLY the horizontal lines */
.age-field .btn-line-left {
  transform-origin: right center;
  transform: scaleX(0.98);
}

.age-field .btn-line-right {
  transform-origin: left center;
  transform: scaleX(0.98);
}

.age-form .main-btn {
  width: 360px;
  height: 95px;
}



/* ============ DESKTOP 992 ============ */
@media (min-width: 992px) {

  .page-wrapper {
    max-width: 1600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25), 0 5px 20px rgba(0, 0, 0, .15);
  }

  .hero {
    height: 520px;
  }
  /* HEADLINE */
  .hero-headline {
    top: 175px;
    left: 32%;
    transform: none;
    width: 230px;
  }

  /* KV*/
  .hero-kv {
    top: 387px;
    width: 163px;
  }

}
/* ============ DESKTOP ultra 992 ============ */
@media (min-width: 1200px) {

  /* HEADLINE */
  .hero-headline {
  left: 38%;
  }

  .logo {
    top: 39px;
    width: 134px;
  }


  .hero-bg {
    object-position: top center;
    object-fit: contain;
  }

  .hero {
    height: 520px;
  }

  /* HEADLINE */
  .hero-headline {
  top: 175px;
  left: 31%;
  width: 260px;
  }

  /* KV*/
  .hero-kv {
    top: 380px;
    width: 184px;
  }

}

@media (min-width: 1400px) {

  /* HEADLINE */
  .hero-headline {
    top: 175px;
    left: 36%;
    width: 260px;
  }


}
