@font-face {
  font-family: 'Cubano';
  src: url('https://umb-4553t5.s3.eu-west-1.amazonaws.com/8661/fonts/Cubano.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Barmeno';
    src: url('https://umb-4553t5.s3.eu-west-1.amazonaws.com/8661/fonts/Barmeno_Extra_Bold.woff2') format('woff2'),
        url('https://umb-4553t5.s3.eu-west-1.amazonaws.com/8661/fonts/Barmeno_Extra_Bold.woff') format('woff'),
        url('https://umb-4553t5.s3.eu-west-1.amazonaws.com/8661/fonts/Barmeno_Extra_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}



/* ============ Base ============ */
:root {
  --orange: #EB8602;
  --blue: #58C6F2;
  --dark-blue: #003B75;
  --red: #D1343A;
  --text: #fff;
  --barmeno: 'Barmeno', sans-serif;
  --cubano: 'Cubano', sans-serif;

}

.barmeno {
  font-family: var(--barmeno);
}

body {

  background: var(--orange);
  color: #FFF;
  font-family: 'Roboto Condensed', sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: 700;
}

/* html,
body {
  overflow-x: hidden;
  overflow-y: auto;
      min-height: 100vh;
} */

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

.fw-400 {
  font-weight: 400 !important;
}

.big-title {
  font-size: 30px;
  line-height: 31px;
  -webkit-text-stroke: 6px #000;
  paint-order: stroke fill;
  font-weight: 700;
  text-transform: uppercase;
  /* 100% */
}

.lg-title {
  font-size: 28px;
  line-height: 31px;
  -webkit-text-stroke: 6px #000;
  paint-order: stroke fill;
  font-weight: 700;
  /* 100% */
}

.title {
  font-size: 25px;
  line-height: 27px;
  -webkit-text-stroke: 6px #000;
  paint-order: stroke fill;
  font-weight: 700;
  /* 100% */
}


.sub-title {
  font-size: 20px;
  line-height: normal;
  font-weight: 700;
}

.body-text {
  font-size: 17px;
  line-height: 28px;
  font-weight: 700;
}

.copyright {
  font-size: 19px;
  font-family: var(--cubano);
}

.form-styling {
  font-family: var(--barmeno);
  font-size: 15px;
  color: var(--dark-blue);
}

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

.form-floating>.form-select {
  padding-top: 0.625rem;
}

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

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

.check-text {
  font-family: var(--barmeno);
  font-size: 15px;

}

.btn-primary,
.btn-primary:visited,
.btn-primary:active,
.btn-primary:focus {
  height: 54px;
  color: #FFF;
  font-size: 23px;
  border-radius: 50px;
  border: 3px solid #FFF;
  background: var(--blue);
  text-align: center;
  font-family: var(--cubano);
  font-weight: 900;
  line-height: normal;
  align-items: center;
  justify-content: center;
  display: flex;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

.btn-primary:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}


.btn-secondary,
.btn-secondary:visited,
.btn-secondary:active,
.btn-secondary:focus {
  height: 44px;
  font-size: 18px;
  border-radius: 50px;
  border: 3px solid #FFF;
  background: linear-gradient(90deg, #F8AE22 0%, #E25F0F 100%);
  text-align: center;
  font-family: var(--cubano);
  font-weight: 900;
  line-height: normal;
  align-items: center;
  justify-content: center;
  display: flex;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.4px;
    text-shadow:
      0.3px 0 #fff,
      -0.3px 0 #fff;


}

.btn-secondary:hover {
  background: linear-gradient(90deg, #FFC14A 0%, #FF7A1A 100%);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.logos {
  width: 180px;
  height: auto;
}

.hero_image {
  width: 253px;
  height: auto;
  pointer-events: none;
}

/* FORM */

.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);
}

.form-control,
.form-select, .upload-label {
  border-radius: 8px;
  color: var(--dark-blue)
}

.form-check-input:checked {
  background-color: var(--blue);
  border-color: var(--blue);
}

.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
  background-color: var(--blue);
  border-color: var(--blue);
}

.form-check-input {
  border-radius: 5px;
  width: 22px;
  height: 22px;
  border: transparent;
}

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

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

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

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: .875em;
  color: #ffffff;
}

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

/* =========================
   SIDE SNACKS WRAPPER
========================= */

.jacobs-wrapper {
  position: relative;
  inset: 0;
  width: 100%;
  /* height: 100%; */
  overflow: hidden;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 100vh;
}

/* .snacks-layer {
  position: absolute;
  inset: 0;
} */

img.jabobs-snacks {
  position: absolute;
  object-fit: cover;
  height: auto;
  width: 80px;
  pointer-events: none;
  z-index: -1;
}

/* Left / Right */
.jacobs-snackL {
  left: -14px;
  top: -54px;
}

.jacobs-snackR {
  right: -20px;
  top: -40px;
}

.bb-card {
  background: var(--red);
  border: 5px solid #fff;
  border-radius: 27px;
  max-width: 620px;
  width: 100%;
  position: relative;
  padding-bottom: 40px;
}

  .bb-logo {
    width: 120px;
    height: auto;
  }

.bb-btn-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);

}

.btn.bb-btn, .btn.bb-btn:visited, .btn.bb-btn:active, .btn.bb-btn:focus {
    background: var(--red);
      color: white;
      border: 3px solid #fff;
      border-radius: 50px;
      padding: 8px 60px;
      white-space: nowrap;
      transition: opacity 0.2s;
      font-family: var(--cubano);
      font-weight: 900;
      text-transform: uppercase;
      font-size: 24px;
}

.btn.bb-btn:hover {
  background-color: #a02429;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.prize-bg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.prize-bg::before {
  content: '';
  position: absolute;
  background: #FFE1BA;
  border-radius: 50%;
  filter: blur(42px);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.prize-bg img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}


.prize-bg--speaker img {
  max-width: 100px;

}

.prize-bg--speaker::before {
  width: 160px;
  height: 160px;
}

.prize-bg--wide::before {
  width: 280px;
  height: 140px;
}

.prize-bg::before {
  content: '';
  position: absolute;
  background: #FFE1BA;
  border-radius: 50%;
  filter: blur(42px);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.packs {
  width: clamp(240px, 32vw, 380px);
  height: auto;
  margin: 0 auto;
}


@media (min-width: 520px) {

  img.jabobs-snacks {
    width: 80px;
  }

  /* Left / Right */
  .jacobs-snackL {
    left: 1px;
    top: -4px;
  }

  .jacobs-snackR {
    right: 0px;
    top: 0px;
  }

}

@media (min-width: 768px) {

  img.jabobs-snacks {
    width: 192px;
  }

  /* Left / Right */
  .jacobs-snackL {
    left: -18px;
    top: 0
  }

  .jacobs-snackR {
    right: -50px;
    top: 191px;
  }

  .btn-primary,
  .btn-primary:visited,
  .btn-primary:active,
  .btn-primary:focus {
    height: 54px;
    font-size: 33px;
    border-radius: 50px;
    border: 3px solid #FFF;
    background: var(--blue);
    text-align: center;
    font-family: var(--cubano);

  }

    .btn.bb-btn,
    .btn.bb-btn:visited,
    .btn.bb-btn:active,
    .btn.bb-btn:focus {

      padding: 8px 80px;
      font-size: 24px;
    }


  .title {
    font-size: 31px;
    -webkit-text-stroke: 6px #000;
    paint-order: stroke fill;
    line-height: 31px;
    /* 100% */
  }

    .lg-title {
      font-size: 39px;
      /* 100% */
    }

    .big-title {
      font-size: 58px;
      line-height: 31px;
      -webkit-text-stroke: 6px #000;
      paint-order: stroke fill;

    }

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


  .logos {
    width: 259px;
    height: auto;
  }

  .hero_image {
    width: 343px;
    height: auto;
  }
  .bb-logo {
    width: 138px;
    height: auto;
  }

  .prize-bg--speaker img {
    max-width: 135px;
  }

  .prize-bg--speaker::before {
    width: 328px;
    height: 114px;
  }

  .prize-bg--wide::before {
    width: 630px;
    height: 220px;
  }

  .prize-bg--wide img {
    max-width: 490px;
  }


}

@media (min-width: 992px) {

  img.jabobs-snacks {
    width: 222px;
  }

  .jacobs-snackL {
    left: -18px;
    top: 0
  }

  .jacobs-snackR {
    right: -99px;
    top: 191px;
  }

}

@media (min-width: 1280px) {

  img.jabobs-snacks {
    width: 364px;
  }

  .jacobs-snackL {
    left: -48px;
    top: -13px;
  }

}

@media (min-width: 1600px) {

  .jacobs-snackL {
    left: 0px;
  }

  .jacobs-snackR {
    right: 0px;
  }


}


.terms .jabobs-snacks,
.faq .jabobs-snacks,
.privacy .jabobs-snacks {
  display: none;

}

.modal-content {

  background-color: var(--orange);

}