:root {
    --primary-color: black;
    --secondary-color: white;
  }
  
  
  
  .hero-slider {
    margin: 0 !important;
    padding: 0px;
    /** Autoplay toggle button in the top left corner */
    /** Custom previous and next arrows in the top right corner */
    /** Default slide navigation dots */
    /** Slide content */
  }
  .hero-slider .slick-autoplay-toggle-button {
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: auto;
    background: none;
    border: 0;
    z-index: 10;
    font-size: 32px;
    opacity: 1;
    cursor: pointer;
    color: black;
  }
  .hero-slider .slick-autoplay-toggle-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .hero-slider .slick-autoplay-toggle-button:focus {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
  }
  .hero-slider .slick-autoplay-toggle-button:active {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
  }
  .hero-slider .custom-prev-button,
  .hero-slider .custom-next-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    display: block;
    float: left;
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    font-size: 32px;
    cursor: pointer;
  }
  .hero-slider .custom-prev-button:hover,
  .hero-slider .custom-next-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .hero-slider .custom-prev-button:focus,
  .hero-slider .custom-next-button:focus {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
  }
  .hero-slider .custom-prev-button {
    right: 30px;
  }
  .hero-slider .slick-dots {
    bottom: 20px;
  }
  .hero-slider .slick-slide {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    /** Float text overlay */
  }
  .hero-slider .slick-slide .overlay {
    position: absolute;
    width: 30%;
    padding: 20px;
  }
  @media screen and (max-width: 768px) {
    .hero-slider .slick-slide .overlay {
      width: 80%;
      left: 0 !important;
      top: 100px;
      text-align: left;
    }
  }
  .hero-slider .slick-slide .overlay h2 {
    padding: 0;
    margin: 0;
    font-size: 28px;
  }
  .hero-slider .slick-slide .overlay .primary-link {
    display: inline-block;
    color: black;
    text-decoration: none;
    margin-top: 20px;
    padding: 10px 15px;
    border: 2px solid black;
    font-weight: bold;
    transition: outline 0.1s linear;
  }
  .hero-slider .slick-slide .overlay .primary-link:hover, .hero-slider .slick-slide .overlay .primary-link:focus {
    text-decoration: underline;
    background-color: black;
    color: white;
  }
  .hero-slider .slick-slide .overlay .primary-link:focus {
    outline: 4px dashed black;
    outline-offset: 3px;
  }
  .hero-slider .slick-slide .background-image {
    width: 100%;
    height: auto;
    background-size: cover;
  }
  @media screen and (max-width: 768px) {
    .hero-slider .slick-slide .background-image {
      width: auto;
      height: 400px;
      margin: 0 auto;
    }
  }
  
  main {
    background-color: white;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    /** Documentation under carousel */
  }
  main .content {
    padding: 20px 15%;
    color: rgba(0, 0, 0, 0.9);
    line-height: 26px;
  }
  main .content h1 {
    line-height: 36px;
  }
  main .content a {
    color: black;
    font-weight: bold;
  }
  main .content a:hover, main .content a:focus {
    color: royalblue;
  }
  main .content li {
    margin-bottom: 15px;
    padding-left: 5px;
  }
  main .content code {
    background-color: rgba(0, 0, 0, 0.05);
    color: red;
    padding: 2px 8px;
  }
  main .content .btn {
    margin-top: 30px;
    font-size: 18px;
    padding: 10px 20px;
  }
  
  /** Generic ghost button styles */
  .slick-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 14px;
    color: black;
    border: 2px solid black;
    box-shadow: 3px 3px 0 0 black;
    text-decoration: none;
    transition: all 0.1s linear;
  }
  .slick-btn:hover, .slick-btn:focus {
    background-color: black;
    color: white !important;
    text-decoration: underline;
    box-shadow: none;
  }
  .slick-btn:focus {
    box-shadow: none;
    outline: 4px dashed black;
    outline-offset: 2px;
  }
  
  /** Gavin's Code */
  /* ### DESKTOP ### */
  
  /* fit hero into main container */
  .hero-slider .slick-slide {
      height: auto;
      display: block;
  }
  /* style heading and paragraph */
  h2.hero-slider-heading {
      color: #fff;
      text-shadow: 
      -2px -2px 0 #000,
       0   -2px 0 #000,
       2px -2px 0 #000,
       2px  0   0 #000,
       2px  2px 0 #000,
       0    2px 0 #000,
      -2px  2px 0 #000,
      -2px  0   0 #000;
  }
  p.hero-slider-paragraph {
      color: #fff;
      font-family: Gotham A, Gotham B, sans-serif;
      text-shadow: 0 2px 4px rgb(0 0 0 / 80%);
      background-color: rgba(133, 9, 40, 0.8);
      padding: .75em;
      margin-top: 1.25em;
  }
  .hero-slider .slick-slide .overlay p {
      font-size: 17px;
      /*width: 25%;*/
  }
  .hero-slider .slick-slide .overlay h2 {
      font-size: 3.75rem;
  }
  
  /* widen text area for desktop */
  .hero-slider .slick-slide .overlay {
      width: 100%;
  }
  
  /* remove additional line height from button bottom */
  button, input, optgroup, select, textarea {
      line-height: 0;
  }
  
  /* make play/pause smaller and semi-transparent */
  .hero-slider .slick-autoplay-toggle-button {
      font-size: 26.5px;
      background-color: rgba(255,255,255,0.5);
  }
  .hero-slider .slick-autoplay-toggle-button:hover {
      background-color: rgba(0,0,0,0.5);
      color: #fff;
  }
  .hero-slider .slick-autoplay-toggle-button:active {
      background-color: rgba(255,255,255,0.5);
      color: #000;
  }
  
  /* separate arrows and make semi-transparent */
  .hero-slider .custom-prev-button {
      right: 41px;
  }
  .hero-slider .custom-prev-button, .hero-slider .custom-next-button {
      background-color: rgba(255,255,255,0.5);
      font-size: 27px;
  }
  .hero-slider .custom-prev-button, .hero-slider .custom-prev-button {
      background-color: rgba(255,255,255,0.5);
      font-size: 27px;
  }
  .hero-slider .custom-prev-button, .hero-slider .custom-prev-button:hover {
      background-color: rgba(0,0,0,0.5);
      color: #fff;
  }
  .hero-slider .custom-prev-button, .hero-slider .custom-next-button:hover {
      background-color: rgba(0,0,0,0.5);
      color: #fff;
  }
  .hero-slider .custom-prev-button, .hero-slider .custom-prev-button:active {
      background-color: rgba(255,255,255,0.5);
      color: #000;
  }
  .hero-slider .custom-prev-button, .hero-slider .custom-next-button:active {
      background-color: rgba(255,255,255,0.5);
      color: #000;
  }
  
  /*make slider dots white and larger */
  .slick-dots li.slick-active button .slick-dot-icon {
      color: #fff;
  }
  .slick-dots li.slick-active button .slick-dot-icon:before {
      font-size: 25px;
  }
  .slick-dots li button .slick-dot-icon:before {
      font-size: 25px;
      margin-top: -3px;
  }
  
.secondary-text {
    display: inline-block;
  }
.overlay-button {
  display: table;
  clear: both;
  }
  
/* kaushan script alternative for h2 */
.cursive-heading {
  font-family: kaushan script;
  font-size: 4.8rem !important;
  }

  
  /* ### MOBILE ###  */
  @media screen and (max-width: 768px) {
  /* crop hero on sides */
  .hero-slider .slick-slide .background-image {
      overflow: hidden;
      object-fit: cover;
   }
  .hero-slider .slick-slide .overlay h2 {
      padding: 0;
      margin: 0;
      font-size: 28px;
  }
   p.hero-slider-paragraph {
     color: #fff;
     font-family: Gotham A, Gotham B, sans-serif;
     text-shadow: 0 2px 4px rgb(0 0 0 / 80%);
     background-color: rgba(133, 9, 40, 0.8);
     padding: .75em;
     margin-top: 1.25em;
  }
  .hero-slider .slick-slide .overlay p {
      font-size: 17px;
      width: 100%;
  }  
  .cursive-heading {
      font-size: 35px !important;
  }   
 }
  
/* overrides for smaller Kaushan Script at mobile GD 12-15-21 */
@media screen and (max-width: 1024px) {
  .cursive-heading {
    font-size: 3.8rem !important;
  }
}
@media screen and (max-width: 768px) {
  .cursive-heading {
    font-size: 2.8rem !important;
  }
}
/* overrides for rectangular overlay at bottom GD 12-15-21 */
.overlay-2 {
  padding: 18px 20px 20px 20px !important;
  background-color: rgba(133, 9, 40, 0.8) !important;
  margin-bottom: 8px; /* pushes dynamic slickslider inline-block div to bottom */
  display: flex !important;
  flex-direction: row !important;
  }
.text-column {
  flex-grow: 2;
  padding-left: 2.5rem;
  }
.button-column {
  float: right;
  padding-right: 2.5rem;
  }
h2.hero-slider-heading-2 {
  text-shadow: 0 2px 4px rgb(0 0 0 / 80%) !important;
  } 
p.hero-slider-paragraph-2 {
  background: none !important;
  padding: 8px 0 0 5px !important; 
  margin: 0 !important;
  }
.white-button-2 {
  margin-top: .5em !important;
  }
.white-button-2:hover {
  border-color: #FFF;
}
@media screen and (max-width: 1024px) {
  .overlay-2 h2 {
    font-size: 44px !important;
  }
}
@media screen and (max-width: 768px) {
  .overlay-2 {
    top: auto !important; /* force slickslider to position from bottom instead of top */
    }
  .overlay-2 {
    flex-direction: column !important;
    }
  .text-column {
    flex-grow: 0;
    padding-left: 0rem;
    }
  .button-column {
    /*float: left;*/
    padding-left: 0rem;
    padding-right: 0rem;
    text-align: center;
    } 
  .overlay-2 h2 {
    font-size: 28px !important;
    text-align: center;
    }
  .secondary-text-2 {
    display:block !important;
    text-align: center;
    }
  p.hero-slider-paragraph-2 {
    padding: 8px 0 0 0px !important;
    }
}

