#section-1 {
  background-image: url(../../../images/site_imgs/splash/default.png);
  background-color: var(--website-color-2);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

#section-1 #center-container.flexbox-row {
  height: 100%;
  justify-content: center;
}

#section-1 section {
  max-width: 60rem;
  padding: 0;
}


#section-1 section h2 {
  font-size: calc(1.125rem + 0.5vw);
  text-align: center;
}
#section-1 section h3 {
  font-size: calc(0.825rem + 0.2vw);
  margin: var(--space-2) 0;
}

#section-1 section h4 {
  font-size: calc(0.67rem + 0.15vw);
}

#section-1 ul.flexbox-col {
  justify-content: space-evenly;
  align-items: start;
  height: 100%;
  background-color: var(--website-color-4);
  border: 1px solid var(--website-color-3);
  border-radius: var(--border-radius-medium);
  padding: var(--space-8);
  margin: var(--space-12) 0;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
}

#section-1 ul.flexbox-col ul{ 
  list-style-type: disc;
  margin: var(--space-2) 0 0 var(--space-6);
}


#section-1 ul.flexbox-col li,#section-1 ul.flexbox-col p {
  color: var(--font-color-alt);
  margin-bottom: var(--space-2);
}

#section-1 ul.flexbox-col a {
  display: inline-block;
  color: var(--font-color-alt);
  margin-bottom: var(--space-2);
}

#section-1 img {
  width: 100%;
  max-width: auto;
  height: auto;
}

#section-1 section #timer {
  text-align: center;
  text-transform: capitalize;
  font-size: calc(0.825rem + 0.2vw);
  font-weight: 700;
  color: var(--font-color);
}

  #section-1 section #heart-icon {
    background-image: url(../../images/site_imgs/icons/heart.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10rem;
    height: 10rem;
    padding: var(--space-6);
    background-color: transparent;
  }

/* =============================================================================
  MEDIA RESPONSIVE 
  ================================================================================ */

@media (max-width: 48rem) {
  /* 768px */

  #section-1 section h2 {
    text-align: center;
  }
  #section-1 #center-container.flexbox-col {
    height: 100%;
  }

  #section-1 {
    padding: var(--space-12) var(--space-4);
  }

  #section-1 a {
    max-width: 100%;
    max-height: 100%;
  }

  #section-1 {
    height: 100%;
    max-height: 60rem;
    overflow-y: scroll;
  }

  #section-1 .grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
