:root {
  --raye-official-yellow-pantone: #ffb500;
}

.section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100svw;
  height: auto;
  min-height: 100svh;
  padding: 64px 16px;
  display: flex;
}

.footer {
  color: #fff;
  text-align: center;
  background-color: #da291c;
  justify-content: space-between;
  width: 100%;
  min-height: 5vh;
  padding: 8px;
  display: flex;
  position: relative;
  inset: auto 0% 0%;
}

.link {
  color: #fff;
  font-family: ivyjournal, sans-serif;
  font-size: 10px;
  line-height: 1.5;
  text-decoration: underline;
}

.link:hover {
  color: #fff;
  text-decoration: none;
}

.div-block {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 100svh;
  padding: 48px 8px 16px;
  display: flex;
}

.logo {
  max-width: 360px;
  margin-top: auto;
  margin-bottom: 1rem;
}

.heading-2 {
  color: var(--raye-official-yellow-pantone);
  text-align: center;
  text-transform: uppercase;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: ivyjournal, sans-serif;
  font-style: normal;
  line-height: 1.1;
}

.presave-links {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: wrap;
  flex: 0 auto;
  place-content: flex-start center;
  align-items: center;
  width: 100%;
  max-width: 960px;
  height: auto;
  margin-top: 1rem;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  position: relative;
}

.button {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: var(--raye-official-yellow-pantone);
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: var(--raye-official-yellow-pantone);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--raye-official-yellow-pantone);
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: var(--raye-official-yellow-pantone);
  background-color: var(--raye-official-yellow-pantone);
  color: #000;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  width: 30%;
  max-width: none;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: ivyjournal, sans-serif;
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 600;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: ease;
  box-shadow: 0 8px 10px 2px #0003;
}

.button:hover {
  color: var(--raye-official-yellow-pantone);
  background-color: #0000;
  border-width: .1px;
  text-decoration: none;
  box-shadow: 0 8px 10px #0000;
}

.button.mailing-list-signup-button {
  border-color: var(--raye-official-yellow-pantone);
  background-color: var(--raye-official-yellow-pantone);
  color: #000;
}

.button.mailing-list-signup-button:hover {
  border-color: var(--raye-official-yellow-pantone);
  color: var(--raye-official-yellow-pantone);
  background-color: #0000;
  background-image: none;
}

.form-buttons {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: var(--raye-official-yellow-pantone);
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: var(--raye-official-yellow-pantone);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--raye-official-yellow-pantone);
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: var(--raye-official-yellow-pantone);
  background-color: var(--raye-official-yellow-pantone);
  color: #fff;
  cursor: pointer;
  border-radius: 2px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  max-width: none;
  font-family: ivyjournal, sans-serif;
  font-size: clamp(10px, 2vw, 14px);
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: ease;
  display: flex;
  position: relative;
  box-shadow: 0 8px 10px 2px #0003;
}

.form-buttons:hover {
  color: var(--raye-official-yellow-pantone);
  background-color: #0000;
  box-shadow: 0 8px 10px #0000;
}

.text-block {
  color: #000;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  padding: 12px 15px;
  font-family: ivyjournal, sans-serif;
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 600;
}

.embedded-form {
  color: #000;
  width: 100%;
  min-width: 300px;
  max-width: none;
  margin: 0;
  font-family: ivyjournal, sans-serif;
  display: none;
}

.contents {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template: "main-text-area image-area"
                 "main-text-area image-area"
                 / 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  place-items: center stretch;
  width: 100%;
  height: auto;
  min-height: 100svh;
  display: grid;
}

.section-2 {
  background-color: #da291c;
  background-image: linear-gradient(#00000054, #0000 50%, #00000054), url('../images/bg.jpg');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-flow: column;
  justify-content: space-around;
  align-items: center;
  width: 100vw;
  height: auto;
  min-height: 100svh;
  padding: 0 1rem;
  display: flex;
  position: relative;
}

.contents-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  grid-template: "main-text-area image-area"
                 "main-text-area image-area"
                 / 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  place-items: center stretch;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin-top: auto;
  display: flex;
}

.text-block-2 {
  color: var(--raye-official-yellow-pantone);
  text-align: center;
  text-transform: uppercase;
  font-family: ivyjournal, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

.text-block-3 {
  color: var(--raye-official-yellow-pantone);
  text-align: center;
  font-family: ivyjournal, sans-serif;
  font-size: 16px;
  line-height: 1.1;
}

.footer-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: #fff;
  text-align: center;
  background-color: #0000;
  justify-content: center;
  width: 100%;
  min-height: 0;
  margin-top: auto;
  margin-bottom: 0;
  padding: 40px 8px;
  font-family: cofo-raffine, sans-serif;
  display: flex;
  position: relative;
  inset: auto 0% 0%;
}

.image {
  max-width: 104px;
}

.mailing-list-popup-button {
  transition: all .2s;
}

.mailing-list-popup-button:hover {
  filter: brightness(200%) saturate(0%);
}

.div-block-2 {
  position: fixed;
}

.mailing-list-popup-wrapper {
  z-index: 99;
  opacity: 0;
  background-color: #000000e0;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  transition: all .2s;
  display: none;
  position: fixed;
  inset: 0%;
}

.mail-code {
  width: 100%;
  max-width: 600px;
  font-family: ivyjournal, sans-serif;
  display: flex;
}

.footer-2-copy {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: #fff;
  text-align: center;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 0;
  margin-top: auto;
  margin-bottom: 0;
  padding: 40px 8px;
  font-family: cofo-raffine, sans-serif;
  display: flex;
  position: relative;
  inset: 0 0% 0%;
}

@media screen and (max-width: 991px) {
  .link {
    max-width: 28ch;
    font-size: 8px;
    line-height: 1.2;
  }

  .heading-2 {
    line-height: 1.1;
  }

  .button, .form-buttons.form-buttons-apple, .text-block {
    font-size: clamp(12px, 2vw, 14px);
  }

  .contents, .contents-2 {
    grid-template: "main-text-area main-text-area"
                   "image-area image-area"
                   / 1fr;
    grid-auto-flow: row dense;
  }

  .text-block-2 {
    font-size: 36px;
    line-height: 1;
  }

  .text-block-3 {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .heading-2 {
    text-align: center;
    font-size: 24px;
  }

  .button {
    width: 48%;
  }

  .form-buttons {
    width: 96%;
    max-width: 480px;
  }

  .contents {
    grid-template-columns: 1fr;
  }

  .contents-2 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr;
  }

  .text-block-2 {
    font-size: 24px;
    line-height: 1;
  }
}

@media screen and (max-width: 479px) {
  .footer {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    min-height: 10vh;
  }

  .link {
    max-width: none;
    font-size: 9px;
    font-weight: 400;
  }

  .div-block {
    height: auto;
    padding-bottom: 40px;
  }

  .logo {
    width: 100%;
  }

  .heading-2 {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.1;
  }

  .presave-links {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: center;
    align-items: flex-start;
  }

  .button {
    width: 100%;
    min-width: 0%;
    max-width: none;
  }

  .form-buttons {
    width: 100%;
    max-width: 100%;
  }

  .contents {
    grid-template-columns: 1fr;
    place-items: start stretch;
  }

  .section-2 {
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 100svh;
    padding: 40px 12px;
  }

  .contents-2 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    text-align: center;
    grid-template-columns: 1fr;
    justify-content: center;
    place-items: center stretch;
  }

  .text-block-2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
  }

  .text-block-3 {
    text-align: center;
    font-size: 14px;
  }

  .footer-2, .footer-2-copy {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    min-height: 10vh;
    margin-top: auto;
  }
}

#w-node-_00175846-b4a3-3df9-6d8c-bf6b89fe4495-4eb65927 {
  grid-area: main-text-area;
  place-self: center;
}


