/*--------------------------------
	Media Queries
	used for outputting content either between media query tags
	example: basic usage
	.element {
		width: 50%;
		@include mq('tablet-small') {
			width: 20%;
		}
	}
	example: using max-width
	.element {
		width: 50%;
		@include mq('tablet-small', 'max') {
			width: 20%;
		}
	}
*/
/*--------------------------------
	Margin / Padding Quick Resets
	example: top & bottom margin set to $mb
	.element {
		@include push--ends;
	}
	example: left & right padding set to $mb--small
	.element {
		@include soft--sides($mb--small);
	}
*/
/*--------------------------------
	Helper mixins
*/
/*--------------------------------
	Form input placeholder text
	example:
	input,
	textarea {
		@include input-placeholder {
			color: $grey;
		}
	}
*/
/*--------------------------------
	Retina images
	example:
	.element {
		@include retina {
			background-image: url(../img/background@2x.png);
		}
	}
*/
/*--------------------------------
	Content margins
	fore removing first/last child margins
	example: default
	.element {
		@include content-margins;
	}
	output:
	.element > *:first-child {
		margin-top: 0;
	}
	.element > *:last-child {
		margin-bottom: 0;
	}
	example: empty selector
	.element {
		@include content-margins('false');
	}
	output:
	.element:first-child {
		margin-top: 0;
	}
	.element:last-child {
		margin-bottom: 0;
	}
*/
/*--------------------------------
	CSS Triangle
	used for creating CSS only triangles
	example:
	.element {
		&::before {
			@include css-triangle(blue, down);
		}
	}
*/
/*--------------------------------
	Hide text
	example:
	.element {
		@include hide-text;
	}
*/
/*--------------------------------
	Responsive ratio
	Used for creating scalable elements that maintain the same ratio
	example:
	.element {
		@include responsive-ratio(400, 300);
	}
*/
/*--------------------------------
Font size
*/
/*
	.site-header {
    z-index: z('site-header');
}
*/
* {
  margin: 0;
  padding: 0; }

body {
  background: #f1f1f1;
  color: #021132;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400; 
}

#section-top {
  margin: 0 auto;
  /* max-width: 750px; */
  max-width: 850px;
  width: calc(100% - 2rem);
  text-align: center;
  padding-bottom: 3rem; }

#section-top img {
  display: block;
  height: auto;
  width: 100%; }

#section-top h2 {
  font-size: 1.3rem;
  padding: 1.5rem 0; }

#section-top .cta {
  display: inline-block;
  background: #021132;
  padding: 1rem 1.5rem;
  color: #f1f1f1;
  text-decoration: none;
  transition: 250ms;
  font-weight: bold;
  border: 2px solid #021132;
  }

#section-top .cta:hover {
  background: transparent;
  color: #021132;
  }

#section-top h1 {
  display: inline-block;
  margin-bottom: 30px; }
  #section-top h1:after {
    content: '';
    width: 100%;
    background: #020202;
    height: 1px;
    display: block;
    margin-top: 15px; }

/* -----------------------------------------------------------------------------------------------------------
																	    
													Nav
																	    
		------------------------------------------------------------------------------------------------------------- */
#section-top nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin-bottom: 20px; }
  #section-top nav ul {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex; }
    #section-top nav ul li:after {
      content: '|'; }
    #section-top nav ul li:last-child:after {
      content: ''; }
    #section-top nav ul a {
      color: #020202;
      -webkit-transition: opacity 0.3s;
      -moz-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s;
      padding: 0 3px; }
    #section-top nav ul a:hover, #section-top nav ul a:active, #section-top nav ul .active {
      opacity: 0.6; }

.socials {
  margin-bottom: 40px; }
  .socials a {
    color: #020202;
    padding: .25rem .5rem; }
  .socials a:hover {
    opacity: 0.6 !important; }

#section-top nav ul li {
  display: flex;
}

#section-top nav ul.nav-dropdown a {
    color: #f1f1f1;
}

@media screen and (max-width: 991px) {
  #section-top nav ul li {
    display: block;
  }
}

#section-top nav ul.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  padding: 10px 10px;
  top: 28px;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #021132;
}

#section-top nav ul.nav-dropdown.show {
  display: flex;
}

#section-top nav ul.nav-dropdown li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
}

#section-top nav ul.nav-dropdown li:after {
  content: none;
}

#section-top nav ul.nav-dropdown li.spotify-follow iframe {
  max-width: 92px;
}

@media screen and (max-width: 991px) {
  #section-top nav ul.nav-dropdown {
    width: 100vw;
    left: 0;
    position: fixed;
    top: 18vw;
    transform: translateX(0);
    display: none !important;
  }

  #section-top nav ul.nav-dropdown.show {
    display: flex !important;
  }
}

@media screen and (max-width: 991px) {
  #section-top nav {
    /* max-width: 260px; */
    max-width: 820px;
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 774px) {
  #section-top nav ul.nav-dropdown {
    top: 20vw;
  }
}

@media screen and (max-width: 480px) {
  #section-top nav {
    max-width: 260px;
  }

  #section-top nav ul.nav-dropdown {
    top: 24vw;
  }
}

/* -----------------------------------------------------------------------------------------------------------
															Tourdates
																	    
		------------------------------------------------------------------------------------------------------------- */
.tourdates a {
  color: #020202;
  text-align: left; }

.tourdates td {
  text-align: left; }

.tourdates table.umg_live_table a.umg_live_ticket_link {
  border: none !important;
  opacity: 0.8; }

.tourdates table.umg_live_table a.umg_live_ticket_link:hover {
  opacity: 1;
  background-color: #ef95e4 !important; }

.page-template-page-live .tourdates {
  padding-top: 0;
}

/* -----------------------------------------------------------------------------------------------------------
														
														Spotify
																	    
		------------------------------------------------------------------------------------------------------------- */
.spotify iframe {
  margin: 40px 0 30px 0; }

/* -----------------------------------------------------------------------------------------------------------
																	    
													Video link
																	    
		------------------------------------------------------------------------------------------------------------- */
.video-link a {
  display: block;
  margin: 0 0 30px;
  position: relative; }
  .video-link a:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 15%;
    opacity: 0.4;
    background-color: rgba(0, 0, 0, 0);
    background-image: url(../img-spectrum/arrow.svg);
    -webkit-transition: background-color 0.3s, opacity 0.3s;
    -moz-transition: background-color 0.3s, opacity 0.3s;
    -o-transition: background-color 0.3s, opacity 0.3s;
    transition: background-color 0.3s, opacity 0.3s;
    z-index: 1; }
  .video-link a:hover:after {
    opacity: 0.6;
    background-color: rgba(0, 0, 0, 0.2); }

  #player {
      background: #000;
  }

  #player,
  .video-overlay {
    z-index: -1;
    opacity: 0;
    transition: all .5s ease-in-out;
  }

  #player,
  .video-overlay {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    bottom: 0;
    height: 120%;
    width: 100%;
  }

  #player.show,
  .video-overlay.show {
    z-index: 99;
    opacity: 1;
  }

  .video-close-btn {
    position: fixed;
    color: white;
    top: 10%;
    right: 20px;
    z-index: 100 !important;
    opacity: 1;
  }

/* -----------------------------------------------------------------------------------------------------------
																	    
													Home Page
																	    
    ------------------------------------------------------------------------------------------------------------- */
    
.home-link {
  color: #020202;
  display: block;
  margin: 0 0 60px !important;
  opacity: 1;
  transition: opacity .3s ease-in-out;
}

.home-link:hover {
  opacity: 0.6;
}

.home-link:after {
  content: none !important;
}

.featured-section {
  margin: 30px auto;
  border-top: 1px solid #000;
  padding-top: 30px;
}

.featured-section .cta {
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 1rem;
}

.featured-section .cta:hover {
  cursor: pointer;
}

.featured-content .cta {
  margin-top: 30px;
}

/* -----------------------------------------------------------------------------------------------------------
																	    
													Video Page
																	    
    ------------------------------------------------------------------------------------------------------------- */

.videos-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.videos-grid a {
  flex: 0 0 48%;
  margin: 0 1% 2% 1%;
  min-height: 200px;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 768px) {
  .videos-grid a {
    flex: 0 0 100%;
    margin: 10px 0;
  }
}

.videos-grid .video-grid-img {
  position: absolute; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* -----------------------------------------------------------------------------------------------------------
																	    
													Music Page
																	    
    ------------------------------------------------------------------------------------------------------------- */
.page-template-page-music #section-top h1 {
  margin-bottom: 0;
}
.listen-a .spotify {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin: 50px 0;
}

#section-top .listen-a .spotify-album-img {
  height: 380px;
  width: auto;
  margin-right: 20px;
}

@media screen and (max-width: 813px) {
  #section-top .listen-a .spotify-album-img {
    margin-right: 0;
  }
}

.listen-a .spotify-right-block {
  flex: 0 0 300px;
}

.listen-a .spotify-iframe-container {
  display: flex;
  justify-content: flex-end;
}

.listen-a .spotify iframe {
  margin: 0;
}

.listen-c .listen-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.listen-c .listen-group-item {
  flex: 0 0 30%;
  margin: 1.5%;
}

@media screen and (max-width: 991px) {
  /* .listen-c .listen-group-item {
    flex: 0 0 48%;
    margin-bottom: 10px;
  } */
}

@media screen and (max-width: 813px) {
  .listen-a .spotify-iframe-container {
    display: flex;
    justify-content: center;
  }

  #section-top .listen-a .spotify-album-img {
    margin-bottom: 30px;
  }

  .listen-a .spotify-right-block {
    flex: 0 0 100%;
  }

  .listen-c .listen-group {
    justify-content: center;
  }

  .listen-c .listen-group-item {
    flex: 0 0 48%;
    margin: 0.5%;
    max-width: 320px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  #section-top .listen-a .spotify-album-img {
    width: 100%;
    height: auto;
  }

  #section-top .listen-a .spotify-album-img {
    margin-bottom: 20px;
  }

  .listen-c .listen-group-item {
    margin-bottom: 5px;
  }
}

/* -----------------------------------------------------------------------------------------------------------
																	    
														Mosiac
																	    
		------------------------------------------------------------------------------------------------------------- */
.mosiac {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin: 0 0 30px; }
  .mosiac a {
    -webkit-transition: filter 0.3s;
    -moz-transition: filter 0.3s;
    -o-transition: filter 0.3s;
    transition: filter 0.3s; }
  .mosiac a:hover {
    filter: brightness(80%); }
  .mosiac a:nth-of-type(1) {
    width: 39%;
    margin-bottom: 3.5%; }
  .mosiac a:nth-of-type(2) {
    width: 57.5%;
    margin-bottom: 3.5%; }
  .mosiac a:nth-of-type(3) {
    width: 59.5%; }
  .mosiac a:nth-of-type(4) {
    width: 37%; }

.fancybox-navigation {
  position: static !important; }

.fancybox-button--zoom, .fancybox-button--play, .fancybox-button--thumbs {
  display: none !important; }

#section-bottom {
  background: #021132;
  padding: 3rem 0;
  text-align: center;
  color: #f1f1f1;
  }

#section-bottom .socials {
  padding-top: 2rem; }

#section-bottom p {
  font-size: .7rem;
  letter-spacing: 0;
  padding-top: 1.5rem;
  text-transform: uppercase; }

#section-bottom p a {
  color: #f1f1f1;
  text-decoration: none;
  transition: 250ms;
  }

#section-bottom p a:hover {
  opacity: 0.5;
  }

#section-bottom .socials a {
  color: #f1f1f1;
  padding: .25rem .5rem;
  }

.sign-up-listen {
  font-size: 1.6rem; }

.sign-up-listen a {
  color: #f1f1f1;
  text-decoration: none;
  transition: 250ms;
  }

.sign-up-listen a:hover {
  opacity: 0.5;
  }

.sign-up-listen .ae-cform-container .ae-cform-modal-display-cta {
  position: relative;
  display: inline-block; }

.sign-up-listen .ae-cform-container {
  display: inline-block;
  margin-bottom: 0.5em; }

body .ae-cform-title {
  color: white; }

@media (max-width: 992px) {
  #section-top nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  #section-top nav ul li {
    margin-bottom: 8px;
  }

  #section-top nav ul li:after {
    content: ''; }
  #section-top nav ul a {
    font-size: 16px;
    padding: 0 1vw;
    letter-spacing: 1.5px; }
}

@media (max-width: 640px) {
  body {
    font-size: 12px; }
  #section-top h2 {
    font-size: 1rem;
    line-height: 1.3rem;
    margin-top: 0; }
  #section-top .tourdates {
    padding-top: 40px;
    padding-bottom: 40px; }
  #section-top .spotify iframe, #section-top .mosiac {
    margin: 20px 0 40px 0; }
  #section-bottom {
    padding-left: 20px;
    padding-right: 20px; }
  #section-bottom .sign-up-listen {
    font-size: 16px; } 
  #section-top nav ul a {
      font-size: 10px;
  }
}



.grid {
  margin: 0 auto;
  min-height: 50vh;
  opacity: 0;
  transition: all .3s ease-in-out;
}

.grid.show-grid {
  opacity: 1;
}

.grid-item { 
  width: 200px;
  margin-bottom: 10px;
}