  *{
    margin: 0;
    padding: 0;
  }
  body {
    margin: 0;
    padding: 0;
    opacity: 1;
    overflow-x: hidden;
    transition: opacity 0.4s ease;
  }
  body.fade-out {
    opacity: 0;
  }
  body.preload {
    opacity: 0;
  }
  body.loaded {
    opacity: 1;
  }
  body.preload .jumbotron,
  body.preload .jumbotron-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  body.loaded .jumbotron,
  body.loaded .jumbotron-buttons {
    opacity: 1;
    transform: translateY(0);
  }
  .body-toggle{
    overflow: hidden;
  }
  img{
    display: block;
    max-width: 100%;
    width: 100%;
  }
  a{
    text-decoration: none;
  }
  li{
    list-style: none;
  }
/********************
 * Z-INDEX TRACKER *

  100 - .header-main
  1000 - .artist-promo-video-popup
  2000 - .skip-link
********************/

/**********
 * FONTS *
**********/
  @font-face {
      font-family: 'felton-compressed';
      src: url('../fonts/felton-compressed.woff') format('woff'),
           url('../fonts/felton-compressed.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
  }

/**********
 * COLORS *
**********/
    :root {
    --black: #1A1A1A;
    --red: #FF0000;
    --white: #FFFFFF;
  }

/********************
 * SKIP NAVIGATION *
********************/
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--red);
  color: var(--white);
  font-family: source-sans-pro, sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 16px;
  z-index: 2000;
  text-decoration: none;
  text-transform: uppercase;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/***********
 * HEADER *
***********/
  .header-main{
    background-color: var(--white);
    height: 80px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
  }
  .desktop-nav {
    display: flex;
  }
  /*MOBILE MENU*/
  .mobile-nav {
    display: none;
  }
  .nav-burger{
    align-items: center;
    background: none;
    border: none;
    display: flex;
    height: 100%;
    justify-content: flex-end;
    position: absolute;
    right: 10px;
    top: 0;
    width: 55px;
  }
  .nav-burger-container{
    display: flex;
    flex-direction: column;
    height: 20%;
    justify-content: space-between;
    width: 90%;
  }
  .nav-burger-line{
    width: 100%;
  }
  .nav-burger-line-solid{
    background-color: var(--black);
    height: 1.5px;
  }
  .nav-burger-line-dashed{
    background-color: transparent;
    background-image: repeating-linear-gradient(
      to right,
      red 0 9px,
      transparent 9px 13.5px
    );
    background-repeat: no-repeat;
    height: 1.5px;
  }
  .mobile-menu {
    align-items: center;
    background-color: var(--white);
    border-bottom: 1px solid var(--red);
    box-shadow: 0 15px 10px 3px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    width: 100%;

    /* START COLLAPSED */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    transition:
      max-height 0.3s ease,
      opacity 0.3s ease,
      padding 0.3s ease;
  }

  .mobile-menu.open {
    max-height: 600px;
    opacity: 1;
    padding: 20px 0;
    pointer-events: auto;
  }
  .header-mobile-main-links-ul{
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
  }
  .header-mobile-main-links-ul li{
    margin: 10px 0;
  }
  .header-mobile-main-links-ul a{
    color: var(--black);
    font-family: source-sans-pro, sans-serif;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    padding: 2px 10px;
  }
  .header-mobile-main-links-icons{
    margin-left: 0;
  }
  .header-mobile-main-links-icons{
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-left: 0;
    width: 50px;
  }
  .header-mobile-main-links-icons img{
    height: 16px;
    width: auto;
  }
  /*END MOBILE MENU*/
  .header-container{
    align-items: center;
    display: flex;
    height: 80px;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 20px;
    width: 1260px;
  }
  .header-logo{
    width: 350px;
  }
  .header-logo img {
    object-fit: contain;
  }
  .header-main-links{
    align-items: center;
    display: flex;
    justify-content: flex-end;
    width: 500px;
  }
  .header-main-links-ul{
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .header-main-links-ul a{
    color: var(--black);
    font-family: source-sans-pro, sans-serif;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    padding: 2px 10px;
  }
  .header-main-link-active{
    position: relative;
  }
  .header-main-link{
    position: relative;
  }

  .header-main-link-inactive-container {
    display: block;
    height: 100%;
    position: relative;
    width: 100%;
  }
  .header-main-link-inactive-container::before,
  .header-main-link-inactive-container::after{
    content: "";
    background-color: var(--red);
    height: 2px;
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .header-main-link-inactive-container::before{
    top: 0;
    left: 0;
    transform: translateY(-10px);
  }

  .header-main-link-inactive-container::after {
    bottom: 0;
    right: 0;
    transform: translateY(10px);
  }

  .header-main-link-inactive:hover .header-main-link-inactive-container::before {
    transform: translateY(0);
    opacity: 1;
  }

  .header-main-link-inactive:hover .header-main-link-inactive-container::after {
    transform: translateY(0);
    opacity: 1;
  }

  .header-main-link-inactive::before,
  .header-main-link-inactive::after{
    content: "";
    background-color: var(--red);
    position: absolute;
    height: 100%;
    width: 2px;
    opacity: 0;
    transition: left 0.3s ease, right 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  .header-main-link-inactive::before{
    left: -10px;
    top: 0;
  }
  .header-main-link-inactive::after{
    right: -10px;
    top: 0;
  }
  .header-main-link-inactive:hover::before{
    left: 0;
    opacity: 1;
  }
  .header-main-link-inactive:hover::after{
    right: 0;
    opacity: 1;
  }
  .header-main-links-ul a {
    display: block;
    border-color: transparent;
    border-style: solid;
    border-width: 2px;
  }
  .header-main-link-cta a{
    border: 2px solid var(--red);
    color: var(--red);
  }
  .header-main-links-icons{
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between;
    margin-left: 20px;
    width: 50px;
  }
  .header-main-links-icons img{
    height: 16px;
    width: auto;
  }

/********************
 * CONTENT WRAPPER *
********************/
  .content-wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    margin: 80px auto 0 auto;
    width: calc(100% - 40px);
  }

/**************
 * JUMBOTRON *
**************/
  .jumbotron{
    display: flex;
    justify-content: center;
    margin: 0 auto 40px -20px;
    width: 100vw;
  }
  .jumbotron-container{
    height: 550px;
    position: relative;
    width: 100vw;
  }
  .jumbotron-slider{
    height: 100%;
    width: 100%;
  }
  .jumbotron-slide{
    background-size: cover;
    min-height: 100%;
    object-position: top;
    width: 100vw !important;
  }
  .jumbotron-homepage-slide-1{
    background-image: url('../media/jumbotron-slider/jumbotron-slide-1.jpg');
    background-position: center;
  }
  .jumbotron-homepage-slide-2{
    background-image: url('../media/jumbotron-slider/jumbotron-slide-2.jpg');
    background-position: 50% 60%;
  }
  .jumbotron-homepage-slide-3{
    background-image: url('../media/jumbotron-slider/jumbotron-slide-3.jpg');
    background-position: 50% 80%;
  }
  .jumbotron-homepage-slide-4{
    background-image: url('../media/jumbotron-slider/jumbotron-slide-4.jpg');
    background-position: center;
  }
  .jumbotron-slide-content{
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    justify-content: flex-end;
    margin: 0 auto;
    width: 100%;
  }
  .jumbotron-slide-content-wrapper{
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.8), var(--black));
    height: auto;
    margin: 0 auto;
    width: 100%;
  }
  .jumbotron-slide-content-container{
    height: auto;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
    width: 100%;
  }
  .jumbotron-slide-content-body{
    width: 50%;
  }
  .jumbotron-slide-content-heading{
    color: var(--white);
    filter: drop-shadow(0 3px 1px var(--red));
    font-family: source-sans-pro, sans-serif;
    font-size: 54px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
  }
  .jumbotron-slide-content-cta{
    background-color: var(--red);
    border: 2px solid var(--black);
    color: var(--white);
    display: inline-block;
    font-family: "montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    margin: 15px 0;
    padding: 5px 10px;
    text-shadow: 0 1px var(--black),
                 0 2px var(--black);
  }
  .jumbotron-slide-content-body{
    color: var(--white);
    font-family: "open-sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -.5px;
  }

/********************
 * JUMBOTRON SLIDER *
********************/
  .jumbotron .slick-list,
  .jumbotron .slick-track{
    height: 100%;
  }

/********************
 * JUMBOTRON BUTTONS *
********************/
  .jumbotron-buttons{
    margin: 0 auto;
    width: 1240px;
  }
  .jumbotron-buttons .slick-list{
    margin: 0 auto;
    padding: 0 !important;
    width: 100%;
  }
  .jumbotron-button{
    border: 1px solid var(--red);
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, .6);
    box-sizing: border-box;
    height: 230px !important;
    margin: 20px;
    position: relative;
    transition: .3s;
    width: 400px;
  }
  .jumbotron-button:hover{
    cursor: pointer;
  }
  .jumbotron-button img{
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  .jumbotron-button-caption{
    align-items: flex-end;
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.5) 80%, var(--black));
    display: flex;
    height: calc(100% - 20px);
    left: 0;
    padding: 10px;
    position: absolute;
    top: 0;
    width: calc(100% - 20px);
  }
  .jumbotron-button-caption span{
    color: var(--white);
    font-family: "montserrat", sans-serif;
    font-weight: 500;
  }
  .jumbotron-buttons-static{
    display: none;
  }
/********************
 * BUTTONS SLIDER *
********************/
  .jumbotron-buttons .slick-slide:not(.slick-center){
    opacity: .7;
    transform: scale(.8);
    transition: .3s;
  }
  .jumbotron-buttons .slick-slide:not(.slick-center) > .jumbotron-button-caption{
    color: #000;
  }

/*****************************
 * HOMEPAGE SECTION DIVIDER *
*****************************/
  .homepage-section-divider{
    background-color: var(--black);
    height: 1px;
    margin: 40px auto;
    max-width: 1300px;
    width: 100%;
  }

/*********************************
 * HOMEPAGE COLLECTIVE TOUR DATES *
*********************************/
  .homepage-collective-dates-body{
    font-family: "open-sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -.5px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
  .homepage-collective-dates-body-1{
    margin-bottom: 40px;
  }
  .artist-tour-artist{
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 60px;
    text-indent: -9999px;
    height: 100px;
    width: 100px;
    display: block;
  }
  .artist-tour-artist-90s-pop-nation {
    background-image: image-set(
      url("../media/logos/90s-pop-nation-logo.webp"),
      url("../media/logos/90s-pop-nation-logo.png")
    );
  }
  .artist-tour-artist-american-pie {
    background-image: image-set(
      url("../media/logos/american-pie-logo.webp"),
      url("../media/logos/american-pie-logo.png")
    );
  }
  .artist-tour-artist-country-2k {
    background-image: image-set(
      url("../media/logos/country-2k-logo.webp"),
      url("../media/logos/country-2k-logo.png")
    );
  }
  .artist-tour-artist-dance-parties {
    background-image: image-set(
      url("../media/artists/dance-parties/dance-parties-promo.webp"),
      url("../media/artists/dance-parties/dance-parties-promo.png")
    );
  }
  .artist-tour-artist-fearless {
    background-image: image-set(
      url("../media/logos/fearless-logo.webp"),
      url("../media/logos/fearless-logo.png")
    );
  }
  .artist-tour-artist-funkd-up {
    background-image: image-set(
      url("../media/logos/funkd-up-logo.webp"),
      url("../media/logos/funkd-up-logo.png")
    );
  }
  .artist-tour-artist-lolla {
    background-image: image-set(
      url("../media/logos/lolla-logo.webp"),
      url("../media/logos/lolla-logo.png")
    );
  }
  .artist-tour-artist-motown-nation {
    background-image: image-set(
      url("../media/logos/motown-nation-logo.webp"),
      url("../media/logos/motown-nation-logo.png")
    );
  }
  .artist-tour-artist-raise-your-glass {
    background-image: image-set(
      url("../media/logos/raise-your-glass-logo.webp"),
      url("../media/logos/raise-your-glass-logo.png")
    );
  }
  .artist-tour-artist-shady {
    background-image: image-set(
      url("../media/logos/shady-logo.webp"),
      url("../media/logos/shady-logo.png")
    );
  }
  .artist-tour-artist-sarahs-place {
    background-image: image-set(
      url("../media/logos/sarahs-place-logo.webp"),
      url("../media/logos/sarahs-place-logo.png")
    );
  }
  .artist-tour-artist-the-boy-band-night {
    background-image: image-set(
      url("../media/logos/the-boy-band-night-logo.webp"),
      url("../media/logos/the-boy-band-night-logo.png")
    );
  }
  .artist-tour-artist-the-country-night {
    background-image: image-set(
      url("../media/logos/the-country-night-logo.webp"),
      url("../media/logos/the-country-night-logo.png")
    );
  }
  .artist-tour-artist-the-hair-band-night {
    background-image: image-set(
      url("../media/logos/the-hair-band-night-logo.webp"),
      url("../media/logos/the-hair-band-night-logo.png")
    );
  }
  .artist-tour-artist-the-ron-burgundys {
    background-image: image-set(
      url("../media/logos/the-ron-burgundys-logo.webp"),
      url("../media/logos/the-ron-burgundys-logo.png")
    );
  }
  .collective-dates-section-divider{
    background-color: var(--black);
    height: 1px;
    margin: 5px auto;
    max-width: 100%;
    width: 100%;
  }

/**********************
 * HOMEPAGE ABOUT US *
**********************/
  .homepage-about-us{
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
  }
  .homepage-white-bkg-h2-heading{
    color: rgba(var(--red), .5);
    border-bottom: 3px solid var(--red);
    font-family: source-sans-pro, sans-serif;
    font-size: 54px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    position: relative;
  }
  .homepage-white-bkg-h2-heading::before{
    content:"";
    position: absolute;
    background-color: rgba(var(--red), .5);
    bottom: 10px;
    left: 0;
    width: 100%;
  }
  .artist-list-container,
  .homepage-about-us-container{
    margin: 0 auto;
    width: 100%;
  }
  .homepage-about-us-logo{
    float: left;
    margin: 5px 20px 0px 0;
    width: 600px;
  }
  .homepage-about-us-body{
    font-family: "open-sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -.5px;
    line-height: 1.5;
  }
  .homepage-about-us-body-1{
    margin-bottom: 40px;
  }
  .homepage-red-border-ctas{
    align-items: center;
    display: flex;
    justify-content: flex-end;
    text-align: center;
    width: 100%;
  }
  .white-bkg-cta{
    border: 3px solid var(--red);
    font-family: "montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    margin: 40px 0 0 0;
    padding: 5px 10px;
  }
  .white-bkg-cta a{
    color: var(--black);
  }
  .homepage-red-border-ctas .white-bkg-cta:last-child{
    margin-left: 40px;
  }

/**********************
 * HOMEPAGE VIDEO PROMO *
**********************/
  .homepage-video-promo{
    height: 600px;
    margin: 0 auto 500px auto;
    max-width: 1200px;
    width: 100%;
  }
  .homepage-video-promo-container{
    border: 1px solid var(--black);
    height: 600px;
    width: calc(100% - 2px);
    position: relative;
    overflow: hidden;
  }
  .homepage-video-promo video{
    object-fit: cover;
    height: 600px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .homepage-video-controls{
    bottom: 15px;
    left: 15px;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 1300px;
  }
  .homepage-video-control{
    background-color: var(--red);
    border: 2px solid var(--black);
    color: var(--white);
    display: inline-block;
    font-family: "montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    padding: 5px 10px;
    text-shadow: 0 1px var(--black),
                 0 2px var(--black);
  }
  .homepage-video-control:nth-child(2){
    margin: 0 10px;
  }
  .homepage-video-control:hover{
    cursor: pointer;
  }

/****************************
****************************
 * ARTISTS PAGE *
****************************
****************************/
  .jumbotron-artists-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }
  .jumbotron-artists-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
  }
  .jumbotron-artists-slider {
    position: relative;
    z-index: 2;
  }
  .jumbotron-artists-slide {
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }
  .jumbotron-artists-slide.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .jumbotron-artists-slide-content {
    min-height: 550px;
    position: relative;
    z-index: 3;
  }
  .artist-list h1{
    font-family: 'source-sans-pro', cursive;
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.1;
    text-align: center;
  }
  .homepage-collective-dates-body{
    font-family: "open-sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -.5px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
  .homepage-collective-dates-body-1{
    margin-bottom: 40px;
  }
  .artists-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .artist-card{
    border: 1px solid var(--red);
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, .6);
    margin: 10px;
    max-width: 300px;
    padding: 12px;
    text-align: center;
  }
  .artist-logo{
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
  }
  .artist-name{
    color: var(--black);
    font-family: 'source-sans-pro', cursive;
    font-size: 16px;
    text-transform: uppercase;
  } 

/****************************
****************************
 * INDIVIDUAL ARTIST PAGES *
****************************
****************************/
  .artist-video-promo{
    display: flex;
    justify-content: center;
    margin: 0 auto 40px -20px;
    width: 100vw;
  }
  .artist-video-promo-container{
    height: 550px;
    position: relative;
    width: 100%;
  }
  .artist-video-promo figure{
    height: 100%;
    width: 100%;
  }
  .artist-video-promo video{
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .artist-promo-video-popup {
    align-items: center;
    background-image: radial-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 3s ease;
  }
  .artist-promo-video-popup-container {
    max-width: 80%;
    position: relative;
    width: 960px;
  }
  .artist-promo-video-popup-container video {
    border: 1px solid var(--black);
    box-shadow: none;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: translateY(-150px) scale(1.2);
    width: 100%;
    transition:
      opacity 3s ease,
      transform 3s ease,
      box-shadow 3s ease;
  }
  .artist-promo-video-popup-container.video-visible video {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.6);
  }
  .artist-promo-video-popup-close {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    width: 100%;
  }
  .artist-promo-video-popup-close span {
    border: 3px solid var(--red);
    font-family: "montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 10px;
    transition: all 3s ease;
  }
  .artist-promo-video-popup-close span:hover {
    cursor: pointer;
    background-color: var(--red);
    color: #fff;
  }
  .fancybox__caption {
    font-family: "montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
  }
  .fancybox__content,
  .fancybox__content:focus,
  .fancybox__content *:focus,
  .fancybox__content *:hover {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
  }
  .artist-video-controls{
    bottom: 15px;
    left: 0;
    margin: 0 auto;
    padding: 0 20px;
    position: absolute;
    right: 0;
    width: 1200px;
  }
  .artist-video-control{
    background-color: var(--red);
    border: 2px solid var(--black);
    color: var(--white);
    display: inline-block;
    font-family: "montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    padding: 5px 10px;
    text-shadow: 0 1px var(--black),
                 0 2px var(--black);
  }
  .artist-video-control:nth-child(2){
    margin: 0 10px;
  }
  .artist-video-control:hover{
    cursor: pointer;
  }
  .artist-info-section{
    margin: 0 auto;
    width: 100%;
  }
  .artist-info-width{
    margin: 0 auto;
    max-width: 1200px;
  }
  .artist-header-top{
    display: flex;
    justify-content: space-between;
  }
  .artist-header{
    display: flex;
    flex-direction: column;
  }
  .artist-header h1,
  .band-title-bio{
    font-family: 'source-sans-pro', cursive;
    font-size: 62px;
    font-weight: 700;
    line-height: .7;
  }
  .artist-white-bkg-cta{
    background-color: var(--white);
    color: var(--black);
    display: inline-block;
    font-size: 14px;
    text-align: center;
    margin: 0;
  }
  .artist-white-bkg-cta-left{
    margin: 10px 0 0 20px;
  }
  .artist-white-bkg-cta:hover{
    cursor: pointer;
  }
  .artist-header-links{
    margin: 10px 0;
    width: 80px;
  }
  .artist-header-links ul{
    display: flex;
  }
  .artist-header-links li{
    margin: 0 5px;
    height: 25px;
  }
  .artist-header-links img{
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
  }
  .artist-promo-photo{
    border: 1px solid var(--red);
    box-shadow: 0 0 10px 3px rgba(0,0,0,.6);
    height: 675px;
    margin-top: 20px;
    overflow: hidden;
  }
  .artist-promo-photo img{
    object-fit: cover;
    height: 100%;
  }

/*********************************
 * INDIVIDUAL ARTIST TOUR DATES *
*********************************/
  .artist-list,
  .artist-tour{
    position: relative;
  }
  .artist-tour-dates-internal-link{
    height: 10px;
    position: absolute;
    top: -100px;
    width: 10px;
  }
  .artist-list h1,
  .artist-tour h2{
    font-family: 'source-sans-pro', cursive;
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.1;
    text-align: center;
  }
  .artist-tour-dates{
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .artist-tour-red-bold{
    color: var(--red);
    font-family: 'source-sans-pro', cursive;
    font-weight: 700;
    margin-right: 2px;
  }
  .artist-tour-black-bold{
    color: var(--black);
    font-family: 'source-sans-pro', cursive;
    font-weight: 700;
  }
  .artist-tour-info-wrapper{
    align-items: center;
    display: flex;
  }
  .artist-tour-body-text{
    font-family: "source-sans-pro", sans-serif;
    font-size: 19px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: -.5px;
  }
  .artist-tour-right-margin{
    margin-right: 40px;
  }
  .artist-tour-right-margin-cta{
    margin-right: 20px;
  }
  .artist-tour-date{
    align-items: center;
    display: flex;
  }
  .artist-tour-dates > .artist-tour-date:last-of-type {
    margin-bottom: 0;
  }
  .artist-tour-date-month-day{
    align-items: center;
    display: flex;
    font-size: 24px;
    width: 120px;
  }
  .artist-tour-day{
    margin-left: 2px;
  }
  .artist-tour-time{
    width: 110px;
  }
  .artist-tour-venue{
    width: 250px;
  }
  .artist-tour-city{
    width: 250px;
  }
  .artist-tour-body-text a{
    color: var(--black);
  }
  .artist-tour-ctas{
    align-items: center;
    display: flex;
    margin-left: 20px;
  }
  .artist-tour-cta{
    align-items: center;
    background-color: var(--red);
    border: 2px solid var(--black);
    color: var(--white);
    display: flex;
    font-family: "montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    padding: 5px 10px;
    text-shadow: 0 1px var(--black),
                 0 2px var(--black);
  }
  .artist-tour-cta-text a{
    color: var(--white);
    font-size: 14px;
    justify-content: center;
    width: 90px;
  }
  .artist-tour-date-fb-logo{
    margin: 2px 6px 0 0;
    width: 7px;
  }
  .artist-tour-date-fb-logo img{
    filter: drop-shadow(0 2px #000);
  }
  .artist-tour-not-visible{
    visibility: hidden;
  }

/*****************************
 * ARTIST TOUR SECTION DIVIDER *
*****************************/
  .artist-tour-section-divider{
    background-color: var(--black);
    height: 1px;
    margin: 20px auto;
    max-width: 100%;
    width: 100%;
  }
  /*.artist-tour-section-divider:last-of-type {
    display: none !important;
  }*/

/*********************************
 * INDIVIDUAL ARTIST LOGO SIZES *
*********************************/
  .artist-bio-logo{
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto 40px auto;
    width: 80%;
  }
  .artist-bio-logo h3{
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
    height: 180px;
    width: 100%;
    display: block;
  }
  .artist-bio-logo-90s-pop-nation-h3{
    background-image: url("../media/logos/90s-pop-nation-logo.png");
    background-image: image-set(
      url("../media/logos/90s-pop-nation-logo.webp"),
      url("../media/logos/90s-pop-nation-logo.png")
    );
  }
  .artist-bio-logo-american-pie-h3{
    background-image: url("../media/logos/american-pie-logo.png");
    background-image: image-set(
      url("../media/logos/american-pie-logo.webp"),
      url("../media/logos/american-pie-logo.png")
    );
  }
  .artist-bio-logo-country-2k-h3{
    background-image: url("../media/logos/country-2k-logo.png");
    background-image: image-set(
      url("../media/logos/country-2k-logo.webp"),
      url("../media/logos/country-2k-logo.png")
    );
  }
  .artist-bio-logo-dance-parties-h3{
    background-image: url("../media/logos/dance-parties-logo.png");
    background-image: image-set(
      url("../media/artists/dance-parties/dance-parties-promo.webp"),
      url("../media/artists/dance-parties/dance-parties-promo.png")
    );
  }
  .artist-bio-logo-fearless-h3{
    background-image: url("../media/logos/fearless-logo.png");
    background-image: image-set(
      url("../media/logos/fearless-logo.webp"),
      url("../media/logos/fearless-logo.png")
    );
  }
  .artist-bio-logo-funkd-up-h3{
    background-image: url("../media/logos/funkd-up-logo.png");
    background-image: image-set(
      url("../media/logos/funkd-up-logo.webp"),
      url("../media/logos/funkd-up-logo.png")
    );
  }
  .artist-bio-logo-lolla-h3{
    background-image: url("../media/logos/lolla-logo.png");
    background-image: image-set(
      url("../media/logos/lolla-logo.webp"),
      url("../media/logos/lolla-logo.png")
    );
  }
  .artist-bio-logo-motown-nation-h3{
    background-image: url("../media/logos/motown-nation-logo.png");
    background-image: image-set(
      url("../media/logos/motown-nation-logo.webp"),
      url("../media/logos/motown-nation-logo.png")
    );
  }
  .artist-bio-logo-raise-your-glass-h3{
    background-image: url("../media/logos/raise-your-glass-logo.png");
    background-image: image-set(
      url("../media/logos/raise-your-glass-logo.webp"),
      url("../media/logos/raise-your-glass-logo.png")
    );
  }
  .artist-bio-logo-sarahs-place-h3{
    background-image: url("../media/logos/sarahs-place-logo.png");
    background-image: image-set(
      url("../media/logos/sarahs-place-logo.webp"),
      url("../media/logos/sarahs-place-logo.png")
    );
  }
  .artist-bio-logo-shady-h3{
    background-image: url("../media/logos/shady-logo.png");
    background-image: image-set(
      url("../media/logos/shady-logo.webp"),
      url("../media/logos/shady-logo.png")
    );
  }
  .artist-bio-logo-the-boy-band-night-h3{
    background-image: url("../media/logos/the-boy-band-night-logo.png");
    background-image: image-set(
      url("../media/logos/the-boy-band-night-logo.webp"),
      url("../media/logos/the-boy-band-night-logo.png")
    );
  }
  .artist-bio-logo-the-country-night-h3{
    background-image: url("../media/logos/the-country-night-logo.png");
    background-image: image-set(
      url("../media/logos/the-country-night-logo.webp"),
      url("../media/logos/the-country-night-logo.png")
    );
  }
  .artist-bio-logo-the-hair-band-night-h3{
    background-image: url("../media/logos/the-hair-band-night-logo.png");
    background-image: image-set(
      url("../media/logos/the-hair-band-night-logo.webp"),
      url("../media/logos/the-hair-band-night-logo.png")
    );
  }
  .artist-bio-logo-the-ron-burgundys-h3{
    background-image: url("../media/logos/the-ron-burgundys-logo.png");
    background-image: image-set(
      url("../media/logos/the-ron-burgundys-logo.webp"),
      url("../media/logos/the-ron-burgundys-logo.png")
    );
  }
  .artist-bio-logo-subtitle{
    align-items: center;
    color: var(--black);
    display: flex;
    font-family: 'source-sans-pro', sans-serif;
    font-size: 34px;
    font-weight: 500;
    margin-top: 20px;
  }
  .artist-bio-logo-dot{
    background-color: var(--red);
    border-radius: 50%;
    height: 10px;
    margin: 0 10px;
    width: 10px;
  }
  .artist-bio-content,
  .artist-booking-text{
    font-family: "open-sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -.5px;
    line-height: 1.5;
  }
  .artist-bio-content p,
  .artist-booking-text p{
    margin: 20px 0;
  }


/****************************
****************************
 * ABOUT US PAGE *
****************************
****************************/
  .jumbotron-about-slide-motown-nation{
    background-image: url('../media/about/jumbotron-about-slide-motown-nation.jpg');
    background-position: 50% 40%;
  }
  .jumbotron-about-slide-shady{
    background-image: url('../media/about/jumbotron-about-slide-shady.jpg');
    background-position: 50% 70%;
  }
  .jumbotron-about-slide-the-boy-band-night{
    background-image: url('../media/about/jumbotron-about-slide-the-boy-band-night.jpg');
    background-position: 50% 50%;
  }
  .about-us{
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
  }
  .about-us-bio-pic{
    border: 1px solid var(--red);
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, .6);
    height: 500px;
    margin: 20px 0 40px 0;
    overflow: hidden;
    width: 100%;
  }
  .about-us-bio-pic img{
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .about-us-container{
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
  }
  .about-us-logo{
    margin: 20px 0 40px 0;
    width: 600px;
  }
  .about-us-text{
    margin-top: 40px;
  }
  .about-us-body{
    font-family: "open-sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -.5px;
    line-height: 1.5;
  }
  .about-us-body-1{
    margin-bottom: 40px;
  }
  .homepage-red-border-ctas .white-bkg-cta:last-child{
    margin-left: 40px;
  }

/***********
 * FOOTER *
***********/
  footer{

  }
  .footer-container{
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto 40px auto;
    max-width: 1200px;
    width: 100%;
  }
  .footer-logo{
    margin-bottom: 20px;
    width: 200px;
  }
  .footer-links{
    align-items: center;
    display: flex;
  }
  .footer-links a{
    background-color: var(--black);
    color: var(--white);
    font-family: source-sans-pro, sans-serif;
    font-weight: 700;
    margin: 0 5px;
    padding: 5px 10px;
  }
  .footer-icons{
    margin: 20px 0 0 -5px;
  }
  .footer-icons-container{
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 340px;
  }
  .footer-icons-container a{
    align-items: center;
    border: 2px solid var(--black);
    color: var(--red);
    display: flex;
    font-family: source-sans-pro, sans-serif;
    font-weight: 700;
    padding: 5px 10px;
  }
  .footer-icons-container img{
    height: 20px;
    margin-right: 5px;
    min-width: 20px;
    object-fit: contain;
    width: 20px;
  }
  .footer-legal{
    font-family: source-sans-pro, sans-serif;
    font-weight: 400;
    margin-top: 10px;
    text-align: center;
  }
  .footer-legal a{
    color: var(--black);
    text-decoration: underline;
  }

/***********
 * CONTACT FORM *
***********/
  .contact-form-wrapper{
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
  }
  .contact-form-container{
    width: 100%;
  }
  .contact-form-header{
    font-family: 'source-sans-pro', cursive;
    font-size: 44px;
    font-weight: 700;
    line-height: .7;
    margin-bottom: 40px;
    text-align: center;
  }
  .contact-form{
    margin: 40px auto 0 auto;
    width: 800px;
  }
  .contact-form-section-top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .contact-form-section-bottom{
    display: flex;
    flex-direction: column;
  }
  .contact-form label{
    color: var(--black);
    font-family: 'source-sans-pro', cursive;
    font-size: 20px;
    font-weight: 500;
    margin: 5px 0;
    width: 155px;
    text-transform: uppercase;
  }
  .contact-form input{
    border: 2px solid var(--red);
    font-family: "open-sans", sans-serif;
    font-weight: 600;
    height: auto;
    margin: 5px 0;
    padding: 3px 10px;
    width: 180px;
  }
  .contact-form textarea{
    border: 2px solid var(--red);
    font-family: "open-sans", sans-serif;
    font-weight: 600;
    height: 130px;
    padding: 3px 10px;
  }
  .contact-form-submit{
    background-color: var(--red);
    border: 2px solid var(--black);
    color: var(--white);
    float: right;
    font-family: "montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    margin: 15px 0;
    padding: 5px 10px;
    text-transform: uppercase;
    text-shadow: 0 1px var(--black),
                 0 2px var(--black);
  }
  /*.grecaptcha-badge{
    right: -2000% !important;
  }*/
  #form-loading,
  #form-message{
    font-family: "open-sans", sans-serif;
    font-size: .8em;
    margin-top: 5px;
    color: var(--black);
  }
/****************************
****************************
 * BOOKING PAGE *
****************************
****************************/
  .booking-page-email-link{
    color: var(--red);
    font-family: source-sans-pro, sans-serif;
    font-weight: 700;
  }
/*******************
 * MEDIA QUERIES *
*******************/
  @media(max-width:1300px){
    .header-container{
      width: calc(100% - 40px);
    }
  }
  @media(max-width:1240px){
    .jumbotron-buttons{
      width: 100%;
    }
  }
  @media(max-width:1230px){
    .artist-header-top{
      flex-direction: column;
    }
    .artist-header-links{
      margin: 20px 0 10px 0;
    }
    .artist-header-ctas-about .artist-white-bkg-cta-left{
      margin: 10px 0 0 0;
    }
  }
  @media(max-width:1100px){
    .artist-tour-artist{
      margin-right: 0;
    }
    .artist-tour-date-month-day{
      flex-direction: column;
      width: 50px;
    }
    .collective-dates-section-divider{
      margin: 20px 0;
    }
    .artist-tour-info-wrapper{
      align-items: flex-start;
      flex-direction: column;
    }
    .artist-tour-date-month-day{
      line-height: 1.2;
    }
    .artist-tour-date{
      justify-content: space-between;
      width: 80%;
    }
    .artist-tour-body-text{
      font-size: 17px;
    }
    .artist-tour-ctas{
      flex-direction: column;
      height: 100%;
      justify-content: space-between;
      margin-left: 0;
    }
    .artist-tour-not-visible{
      display: none;
    }
    .artist-tour-ctas-not-ticketed{
      justify-content: center;
    }
    .artist-tour-date{
      height: 80px;
    }
    .artist-tour-right-margin-cta{
      margin-right: 0;
    }
    .artist-tour-time{
      order: 1;
    }
  }
  @media(max-width:950px){
    .jumbotron-slide-content-container{
      align-items: center;
      display: flex;
      flex-direction: column;
      width: calc(100% - 40px);
    }
    .jumbotron-slide-content-heading{
      text-align: center;
      width: 100%;
    }
    .jumbotron-slide-content-body{
      margin: 0 auto;
      text-align: center;
      width: 85%;
  }
  @media(max-width:900px){
    .jumbotron-buttons .slick-slide:not(.slick-center){
      transform: scale(1);
      transition: .3s;
    }
    .artists-section .homepage-red-border-ctas,
    .homepage-red-border-ctas{
      justify-content: center;
    }
    .artists-section .homepage-red-border-ctas .white-bkg-cta:last-child{
      margin-left: 0;
    }
    .jumbotron-button-caption{
      font-size: 14px;
      text-align: center;
    }
    .jumbotron-button-caption span{
      width: 100%;
    }
    .about-us-container,
    .artist-list-container,
    .homepage-about-us-container{
      align-items: center;
      display: flex;
      flex-direction: column;
      text-align: center;
    }
    .homepage-about-us-logo{
      float: none;
      margin: 0 0 40px 0;
    }
    .about-us-logo{
      margin: 0;
    }
    .collective-dates{
      text-align: center;
    }
    .artist-tour-date{
      width: 90%;
    }
    .artist-tour-artist{
      height: 80px;
      margin-right: 10px;
      width: 80px;
    }
    .artist-tour-date-month-day{
      width: 50px;
    }
    .artist-tour-time{
      width: 100%;
    }
    .artist-header-top-about{
      align-items: flex-start;
    }
    .artist-header h1,
    .band-title-bio{
      font-size: 58px;
    }
  }
  @media(max-width:840px){
    .contact-form{
      width: 100%;
    }
  }
  @media(max-width:800px){
    .contact-form input{
      width: calc(100% - 210px);
    }
  }
  @media(max-width:780px){
    .artist-header h1,
    .band-title-bio{
      font-size: 54px;
    }
  }
  @media (max-width: 768px) {
    .desktop-nav {
      display: none;
    }
    .mobile-nav {
      display: block;
    }
    #mobile-menu[hidden] {
      display: none;
    }
    .header-container{
      justify-content: flex-start;
      margin: 0 auto;
      width: calc(100% - 20px) !important;
    }
    .header-logo{
      width: 300px;
    }

  }
  @media(max-width:750px){
    .artist-promo-photo{
      height: 300px;
    }
  }
  @media(max-width:730px){
    .artist-header h1,
    .band-title-bio{
      font-size: 50px;
    }
  }
  @media(max-width:700px){
    .artist-list,
    .artist-tour{
      width: 90%;
    }
    .artist-list h1,
    .artist-tour h2{
      font-size: 36px;
    }
    .artist-tour-date{
      width: 100%;
    }
    .artist-card{
      align-items: center;
      display: flex;
      justify-content: center;
      margin: 10px 0;
      max-width: none;
      min-height: 205px;
      width: 100%;
    }
    .artist-card a{
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
  }
  @media(max-width:670px){
    .white-bkg-cta a{
      font-size: 14px;
    }
    .homepage-red-border-ctas .white-bkg-cta:last-child{
      margin-left: 10px;
    }
    .artist-header h1,
    .band-title-bio{
      font-size: 46px;
    }
    .artist-tour-date-month-day{
      margin-right: 10px;
    }
    .artist-tour-venue{
      width: 220px;
    }
    .artist-tour-city{
      width: 220px;
    }
  }
  @media(max-width:650px){
    .about-us-logo,
    .homepage-about-us-logo{
      width: 95%;
    }
  }
  @media(max-width:630px){
    .artist-header h1,
    .band-title-bio{
      font-size: 40px;
    }
  }
  @media(max-width:600px){
    .footer-icons-container{
      width: calc(100% - 70px);
    }
  }
  @media(max-width:550px){
    .artist-header h1,
    .band-title-bio{
      font-size: 36px;
    }
  }

/*******************
* MOBILE PORTRAIT *
*******************/
  @media only screen and (max-width: 600px) and (orientation: portrait){
/***HEADER***/
  .header-container{
    padding: 0;
    width: 100%;
  }
  .header-main-links{
    display: none;
  }
  .jumbotron{
    margin: -100px auto 20px -20px;
  }
  .jumbotron-slide-content-heading{
    font-size: 42px;
  }
  .jumbotron-buttons{
    display: none !important;
  }
  .jumbotron-buttons-static {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: -20px;
    width: 100%;
  }
  .jumbotron-button-static {
    flex: 1 1 calc(50% - 20px);
    height: 150px !important;
    margin: 0;
    overflow: hidden;
  }
  .jumbotron-button-caption-static{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .jumbotron-button-body{
    height: 100%;
  }
  .jumbotron-button img{
    transform: scale(1.2);
  }
  .homepage-red-border-ctas {
    display: flex;
    gap: 20px;
  }
  .white-bkg-cta {
    flex: 1;
    width: auto;
  }
  .homepage-red-border-ctas .white-bkg-cta:last-child{
    margin-left: 0;
  }
  .artist-video-promo-container{
    height: 450px;
  } 
  .artist-video-controls{
    display: flex;
    justify-content: center;
    padding: 0;
    width: 100%;
  }
  .homepage-collective-dates-body{
    margin-bottom: 30px;
  }
  .artist-header-top{
    align-items: center;
  }
  .artist-header h1{
    line-height: 1.1;
    text-align: center;
  }
  .artist-header-links{
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .artist-header-links ul{
    justify-content: center;
    width: 30%;
  }
  .artist-header-ctas{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin: 10px 0;
    width: 100%;
  }
  .artist-header-ctas-about{
    justify-content: center;
  }
  .artist-white-bkg-cta-left{
    margin: 0;
  }
  .artist-promo-photo{
    height: 200px;
  }
  .artist-info-width{
    max-width: 100%;
  }
  .artist-list h1,
  .artist-tour h2{
    margin-bottom: 30px;
  }
  .collective-dates .artist-tour-date{
    flex-wrap: wrap !important;
  }
  .collective-dates .artist-tour-artist{
    margin-bottom: 15px;
    margin-right: 0;
    order: 0;
    width: 100%;
  }
  .collective-dates .artist-tour-date-month-day{
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    margin-right: 0;
    flex-direction: row;
    order: 1;
    width: 100%;
  }
  .collective-dates .artist-tour-black-bold{
    margin-top: 0;
    width: fit-content;
  }
  .collective-dates .artist-tour-red-bold{
    margin-bottom: 0;
    width: fit-content;
  }
  .collective-dates .artist-tour-info-wrapper{
    align-items: center;
    margin-bottom: 10px;
    order: 2;
    width: 100%;
  }
  .collective-dates .artist-tour-ctas{
    flex-direction: row;
    gap: 20px;
    height: auto;
    justify-content: space-between;
    margin-left: 0;
    order: 3;
    width: 100%;
  }
  .collective-dates .artist-tour-cta-text a{
    margin: 0 auto;
    width: calc(100% - 205px);
  }
  .collective-dates .artist-tour-ctas a:only-of-type{
    width: 100%;
  }
  .artist-tour-dates-internal-link{
    top: -120px;
  }
  .artist-list,
  .artist-tour{
    width: 100%;
  }
  .artist-tour-date{
    height: auto;
    justify-content: space-between;
    width: 100%;
  }
  .artist-tour-date-month-day{
    align-items: center;
    flex-direction: column;
    margin-left: -5px;
    margin-right: 20px;
    text-align: center;
    width: 60px;
  }
  .artist-tour-red-bold{
    line-height: .8;
    margin-bottom: 5px;
    margin-right: 0;
    text-align: center;
    width: 100%;
  }
  .artist-tour-black-bold{
    line-height: .8;
    margin-top: 5px;
    width: 100%;
  }
  .artist-tour-info-wrapper{
    line-height: 1.1;
    margin-top: 10px;
    width: 140px;
  }
  .artist-tour-venue{
    width: auto;
  }
  .artist-tour-city{
    margin: 10px 0;
    width: auto;
  }
  .artist-tour-ctas{
    height: 80px;
    margin-left: 10px;
  }
  /*ARTIST BIO*/
  .artist-bio-content,
  .artist-booking-text{
    text-align: center;
  }
  /*CONTACT FORM*/
  .contact-form-header{
    margin-bottom: 40px;
  }
  #contact-form-heading{
    line-height: 1.1;
    text-align: center;
  }
  #event-date{
    background-color: var(--white);
    color: var(--black);
    min-width: 150px;
    text-align: left !important;
    text-align-last: left !important;
    width: calc(100% - 200px) !important;
  }
  /*FOOTER*/
  .footer-links{
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links li{
    margin: 10px 0;
  }
  .footer-icons{
    width: calc(100% + 15px);
  }
  .footer-icons-container{
    max-width: 100%;
    width: 100%;
  }
  .footer-legal{
    margin: 20px auto 0 auto;
    text-align: center;
  }
}






