@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('../fonts/NeueHaasDisplayRoman.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('../fonts/NeueHaasDisplayMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('../fonts/NeueHaasDisplayBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/*! HTML5 Boilerplate v9.0.0-RC1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #d9d9d9;
  font-size: 20px;
  line-height: 1.3;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

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

  a[href]::after {
    content: " ("attr(href) ")";
  }

  abbr[title]::after {
    content: " ("attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  color: #d9d9d9;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

a,
input,
select,
button {
  color: #d9d9d9;
  text-decoration: none;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
}

img {
  width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.no-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-wrap {
  flex-direction: row;
}

.buttons {
  gap: 12px;
}

.button {
  position: relative;
}

.button a,
.button>* {
  color: #d9d9d9;
  background-color: #C91918;
  border: 1px solid #C91918;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 24px;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  transition: all .25s ease-in-out;
  position: relative;
  z-index: 0;
}



.button a:hover {
  background: transparent;
  border-color: #d9d9d9;
}

input:focus {
  outline: none;
}

.mobile-only,
.hide {
  display: none !important;
}

/* ==========================================================================
   header
   ========================================================================== */
#site-header {
  width: 100%;
  padding: 24px 60px;
  position: relative;
  top: 0;
  left: 0;
  z-index: 100;
}

#site-header .artist-logo {
  text-align: center;
}

#site-header .artist-logo img {
  width: 364px;
}


/* ==========================================================================
   footer
   ========================================================================== */
#site-footer {
  width: 100%;
  padding: 20px 120px;
  z-index: 10;
  position: relative;

}

.footer-legal {
  max-width: 960px;
  margin: 0 auto;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-legal .copyright {
  text-align: center;
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  row-gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal .copyright a {
  transition: all .2s ease;
}

.footer-legal .copyright a:hover {
  color: white;
}

.footer-legal .copyright a:not(.cr-link):after {
  width: 1px;
  height: 8px;
  margin-left: 10px;
  background: #fff;
  content: '';
  display: inline-block;
  vertical-align: baseline;
}

.footer-legal .copyright a:not(.cr-link):last-child:after {
  display: none;
}

/* .footer-legal > .flex {
  gap: 20px;
} */
.footer-links {
  padding-bottom: 10px;
  gap: 20px;
  align-items: center;
}

.footer-links .socials {
  justify-content: center;
  gap: 18px;
  margin-bottom: 10px;
}

.footer-links .social-item a {
  width: 20px;
  height: 25px;
  display: block;
}

.footer-links .socials svg {
  width: 100%;
  height: 100%;
  fill: #d9d9d9;
  transition: all .2s ease-in;
}

.footer-links .social-item a:hover svg {
  fill: white;
}

/* ==========================================================================
   main
   ========================================================================== */
#page {
  /* min-height: 100vh; */
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 78.5%, rgba(0, 0, 0, 0.40) 100%);
}

#main-content {
  position: relative;
  z-index: 5;
  overflow: hidden;

}

#internal {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#internal>.section {
  width: 100%;
}

/* ==========================================================================
   home
   ========================================================================== */

#home section.promo {
  position: relative;
}

#home section.promo [class*="section-"] {}

#home section.promo .section-background {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: -1;
}

#home section.promo .section-background:before {
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.40); */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  content: '';
}

#home section.promo .section-background.show:before {
  background: rgba(0, 0, 0, 0.60);
}


#home section.promo .section-background video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
}

.section-tarot {
  width: 100%;
  padding: 72px 120px;
  display: none;
}

.tarot {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  display: none;
  transition: .3s ease-in-out all;
}

.tarot.show {
  display: flex;
}

.tarot img {
  width: 240px;
  margin: 0 120px;
}

.tarot-result span {
  font-size: 14px;
  font-weight: 500;
}

.tarot-result h2 {
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.50);
  color: #C91918;
  font-size: 56px;
  font-weight: bold;
  line-height: 1;
  margin-top: .5rem;
  margin-bottom: 1rem;
}

.tarot-result p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  max-width: 480px;
}


/* ==========================================================================
   mailing
   ========================================================================== */
#mailing-list {
  width: 100%;
  padding: 72px 120px;
}


.section.mailing {
  max-width: 480px;
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.section.mailing h2 {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
}

.section.mailing h2 span {
  display: block;
}

.section.mailing .form-subtitle p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  margin: 0;
  margin-bottom: 2rem;
}

.section.mailing h2 img {}

.section.mailing form {
  width: 100%;
  margin: 0 auto;
}

.section.mailing .form-row {
  margin-bottom: 10px;
  position: relative;
  font-size: 24px;
  color: #3a3624;
  font-style: italic;
}

.section.mailing .form-group {
  margin-bottom: 32px;
}

.section.mailing .form-group.last {
  margin-bottom: 0;
}

.section.mailing .form-group input,
.section.mailing .form-group select {
  width: 100%;
  padding: 12px 8px;
  background: none;
  color: #d9d9d9;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.4;
  font-weight: 500;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #fff;
  -webkit-appearance: none;
  border-radius: 0;

 
}

.section-mailing .form-group select  {
}
option {
  color: black !important;
}
.section.mailing .form-group select {
  background-image:url(../img/arrow-down.svg); background-repeat:no-repeat; background-position:calc(100% - 10px)

}

.section.mailing .form-row input::placeholder {
  color: #d9d9d9;
  opacity: 1;
}

.section.mailing .form-group label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.33;
  text-transform: uppercase;
}

.section.mailing .form-row--submit {
  margin-top: 24px;
  margin-bottom: 12px;
  margin-bottom: 0;
  text-align: center;
}

.section.mailing .form-row--submit .button {
  display: inline-block;
  width: 100%;
}

.terms {
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

.section.mailing .form-row--submit button {
  color: #d9d9d9;
  background-color: #C91918;
  border: 1px solid #C91918;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 24px;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  transition: all .25s ease-in-out;
  position: relative;
  z-index: 0;
  width: 100%;
}



.section.mailing .button button:hover {
  background: transparent;
  color: #fff;
  border-color: white;
  cursor: pointer;
}

.section.mailing #thankyou-mailinglist {
  color: #3a3624;
  font-size: 25px;
  text-align: center;
}

/* mobile */
@media only screen and (max-width: 767px) {
  .mobile-only {
    display: block !important;
  }

  .desktop-only {
    display: none;
  }

  #site-header {
    padding: 24px;
  }

  #site-header .artist-logo img {
    width: 300px;
  }

  body.home .artist-logo {
    visibility: visible;
  }

  #mailing-list {
    padding: 60px 24px;
  }

  .section-tarot {
    padding: 24px 32px;
  }

  .tarot {
    flex-flow: column;
    align-items: center;
    text-align: center;
  }

  .tarot-img img {
    margin: 0 auto;
    width: 290px;
  }

  .tarot-result {
    padding: 40px 0;
  }

  .tarot-result h2 {
    font-size: 40px;
  }

  .tarot-result p {
    font-size: 18px;
  }

  #main-content {
    min-height: inherit;
  }


  #site-footer {
    position: relative;
    padding-right: 10px;
    padding-left: 10px;
  }

  .footer-links {
    flex-direction: column-reverse;
    gap: 7px;
  }

  /* ==========================================================================
    home
    ========================================================================== */
  .home #main-content {}



}