/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

progress {
  vertical-align: baseline;
}

template, [hidden] {
  display: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: inherit;
}

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

button, input, select, textarea {
  font: inherit;
  margin: 0;
}

optgroup {
  font-weight: bold;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* --------------------------------

 Navigation

-------------------------------- */
.header {
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
}
.header nav {
  position: relative;
}
.header nav .nav li.menu-item {
  display: inline-block;
  padding: 0;
  padding-left: 1em;
  /*margin-top: 5px;
    opacity: 0;*/
  opacity: 1;
  /*transform: scale(1.15) translateY(-30px);*/
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
.header nav .nav li.menu-item:nth-child(1) {
  transition-delay: 0.49s;
}
.header nav .nav li.menu-item:nth-child(2) {
  transition-delay: 0.42s;
}
.header nav .nav li.menu-item:nth-child(3) {
  transition-delay: 0.35s;
}
.header nav .nav li.menu-item:nth-child(4) {
  transition-delay: 0.28s;
}
.header nav .nav li.menu-item:nth-child(5) {
  transition-delay: 0.21s;
}
.header nav .nav li.menu-item:nth-child(6) {
  transition-delay: 0.14s;
}
.header nav .nav li.menu-item a {
  display: block;
  position: relative;
  font-family: "Poppins", Arial, san-serif;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  background-color: transparent;
  font-size: 1.2rem;
  font-size: 1rem;
  line-height: 2.35;
  cursor: pointer;
  color: #FFFFFF;
  opacity: 0.7;
  letter-spacing: 0.1em;
  transition: all 0.3s ease-in;
}
.header nav .nav li.menu-item a:hover, .header nav .nav li.menu-item a:active {
  opacity: 0.9;
}

/*ul.nav {
	margin: 20px !important;
	padding: 0px 20%;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}*/
.burger-container {
  position: absolute;
  top: 0;
  right: 0;
  /*display: inline-block;*/
  display: none;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.burger-container #burger {
  width: 30px;
  height: 30px;
  position: relative;
  display: block;
  /*margin: -4px auto 0;
  top: 50%;*/
  fill: #fff;
  opacity: 0.7;
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0s;
}

/*.nav li.menu-item {
	transform: scale(1.15) translateY(0px);
}*/
/* STYLES FOR MOBILE MENU */
.xxheader .mobile-menu-open .burger-container {
  transform: rotate(90deg);
}
.xxheader nav {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  /*overflow: hidden;*/
  background-color: #000;
  transition: all 0.3s ease-in, background 0.5s ease-in;
  transition-delay: 0.25s;
}
.xxheader ul.nav li.menu-item {
  display: block;
  text-align: center;
  padding: 0 2em;
  /*padding-left:1em;*/
  border-bottom: 1px solid rgba(245, 254, 254, 0.3);
  transform: scale(1) translateY(0px);
  opacity: 1;
}
.xxheader ul.nav li.menu-item:first-child {
  border-top: 1px solid rgba(245, 254, 254, 0.3);
}
.xxheader ul.nav li.menu-item:nth-child(1) {
  transition-delay: 0.27s;
}
.xxheader ul.nav li.menu-item:nth-child(2) {
  transition-delay: 0.34s;
}
.xxheader ul.nav li.menu-item:nth-child(3) {
  transition-delay: 0.41s;
}
.xxheader ul.nav li.menu-item:nth-child(4) {
  transition-delay: 0.48s;
}
.xxheader ul.nav li.menu-item:nth-child(5) {
  transition-delay: 0.55s;
}
.xxheader ul.nav li.menu-item:nth-child(6) {
  transition-delay: 0.62s;
}

/*  MEDIA QUERIES */
@media screen and (max-width: 790px) {
  .header nav {
    /*position: absolute;
    display: flex;*/
    z-index: 3;
    top: 0;
    left: 0;
    /*height: 100vh;
    width: 100%;*/
    overflow: hidden;
    background-color: #000;
    transition: all 0.3s ease-in, background 0.5s ease-in;
    transition-delay: 0.25s;
    /*display: none;*/
    height: 0;
    position: fixed;
    width: 100%;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
  }
  .header nav ul.nav li.menu-item {
    display: block;
    text-align: center;
    padding: 0 2em;
    /*padding-left:1em;*/
    border-bottom: 1px solid rgba(245, 254, 254, 0.3);
    transform: scale(1.15) translateY(-30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  }
  .header nav ul.nav li.menu-item:first-child {
    border-top: 1px solid rgba(245, 254, 254, 0.3);
  }
  .header nav ul.nav li.menu-item:nth-child(1) {
    transition-delay: 0.27s;
  }
  .header nav ul.nav li.menu-item:nth-child(2) {
    transition-delay: 0.34s;
  }
  .header nav ul.nav li.menu-item:nth-child(3) {
    transition-delay: 0.41s;
  }
  .header nav ul.nav li.menu-item:nth-child(4) {
    transition-delay: 0.48s;
  }
  .header nav ul.nav li.menu-item:nth-child(5) {
    transition-delay: 0.55s;
  }
  .header nav ul.nav li.menu-item:nth-child(6) {
    transition-delay: 0.62s;
  }
  .header nav.mobile-menu-open {
    position: fixed;
    display: flex;
    opacity: 1;
    height: 100%;
    height: 100vh;
  }
  .header nav.mobile-menu-open ul.nav li.menu-item {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
  .header nav.mobile-menu-open ul.nav li.menu-item:nth-child(1) {
    transition-delay: 0.27s;
  }
  .header nav.mobile-menu-open ul.nav li.menu-item:nth-child(2) {
    transition-delay: 0.34s;
  }
  .header nav.mobile-menu-open ul.nav li.menu-item:nth-child(3) {
    transition-delay: 0.41s;
  }
  .header nav.mobile-menu-open ul.nav li.menu-item:nth-child(4) {
    transition-delay: 0.48s;
  }
  .header nav.mobile-menu-open ul.nav li.menu-item:nth-child(5) {
    transition-delay: 0.55s;
  }
  .header nav.mobile-menu-open ul.nav li.menu-item:nth-child(6) {
    transition-delay: 0.62s;
  }
  .header nav.mobile-menu-open ul.nav li.menu-item a {
    font-size: 1.2rem;
  }
  .burger-container {
    display: flex;
    z-index: 10;
  }
  .burger-container.rotate {
    transform: rotate(90deg);
  }
  .header nav a {
    float: none;
    display: block;
    text-align: center;
  }
}
/* --------------------------------

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html, body {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Poppins", Arial, san-serif;
  font-size: 1rem;
}

.wrapper {
  position: relative;
  /*overflow: hidden;*/
  width: 100%;
  height: 100%;
  color: #FFFFFF;
}
.wrapper.fix-footer {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.wrapper.fix-footer .content-wrapper {
  flex: 1;
}
.wrapper .content-wrapper {
  color: #FFFFFF;
}

.container {
  padding: 0 2em;
}
.container h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1.5em;
  margin-bottom: 0.3em;
}
.container.aboutPage h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-stretch: condensed;
}
.container.aboutPage p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 2;
  font-stretch: condensed;
}
.container.aboutPage a {
  color: #FFFFFF;
  font-style: italic;
  border-bottom: 1px dashed #FFFFFF;
}

.background {
  position: fixed;
  width: 100%;
  height: 100%;
  width: 100vw;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: -1;
  background: url(../img/quinn-oulton-background-sml.jpg) no-repeat center center fixed;
  background-size: cover;
  background-attachment: scroll; /* get background-size cover to work iphone */
  box-sizing: content-box; /* get background-size cover to work iphone */
  backface-visibility: hidden;
  animation: backgroundimageAnimation 4s linear;
  /* Add tinted overlay */
}
.background:after {
  content: " ";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.background.gigs { /* background img for gigs page */
  position: fixed;
  width: 100%;
  height: 100%;
  width: 100vw;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: -1;
  background: url(../img/quinn-oulton-live.jpg) no-repeat 50% 10% fixed;
  background-size: cover;
  background-attachment: scroll; /* get background-size cover to work iphone */
  box-sizing: content-box; /* get background-size cover to work iphone */
  backface-visibility: hidden;
  animation: backgroundimageAnimation 4s linear;
  /* Add tinted overlay */
}
.background.gigs:after {
  content: " ";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

/* Replacing main background-images with reg imgs and using */
.header-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
  animation: backgroundimageAnimation 4s linear;
}

a {
  color: #2a6558;
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

.flex {
  display: flex;
}

.text-center {
  text-align: center;
}

/* --------------------------------

 Header

-------------------------------- */
header {
  position: relative;
  height: 60px;
  background-color: #1a2223;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social {
  transition: opacity 0.5s, visibility 0.5s ease-in-out;
}

/*.social.project-open {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s, visibility 0.5s ease-in-out;
}*/
.qm-logo {
  position: absolute;
  top: 8px;
  left: 20px;
  display: inline-block;
  height: 40px;
  width: 133.440008px;
  fill: rgba(254, 254, 254, 0.7);
  transition: opacity 0.3s, visibility 0.3s;
  /*margin-left: 20px;*/
}

/* TEMP Transparent Header & Socials */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: transparent;
  z-index: 1;
}

.socials_transHeader {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 60px;
}

/* --------------------------------

 Footer

-------------------------------- */
footer {
  /*position: fixed;*/
  width: 100%;
  bottom: 0;
  background-color: #1a2223;
  height: 50px;
}

/* --------------------------------

 Projects

-------------------------------- */
/* --------------------------------

 Support for no js

-------------------------------- */
.no-js .cd-nav-trigger, .no-js .cd-scroll {
  display: none;
}

.no-js .cd-primary-nav {
  position: relative;
  height: auto;
  min-height: 94px;
  display: block;
  opacity: 1;
}
.no-js .cd-primary-nav::after {
  clear: both;
  content: "";
  display: block;
}
.no-js .cd-primary-nav ul {
  display: block;
  padding-left: calc(5% + 60px);
  float: right;
  transform: translateY(0);
}
.no-js .cd-primary-nav ul::after {
  clear: both;
  content: "";
  display: block;
}
.no-js .cd-primary-nav li {
  display: inline-block;
  float: left;
  margin-top: 1.4em;
}
.no-js .cd-primary-nav li.cd-label {
  display: none;
}
.no-js .cd-primary-nav a {
  font-size: 1.6em;
}

.no-js .cd-projects-container {
  height: auto;
}
.no-js .cd-projects-container .single-project {
  position: relative;
  transform: translateY(0);
  top: 0;
  cursor: auto;
}
.no-js .cd-projects-container .cd-title {
  height: 300px;
}
.no-js .cd-projects-container .cd-title::before {
  height: 300px;
}
.no-js .cd-projects-container h2 {
  transform: translateY(0);
}
.no-js .cd-projects-container h2::after {
  display: none;
}

.no-js .cd-project-info {
  position: relative;
  height: auto;
  top: 0;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.no-js .cd-project-info .content-wrapper {
  margin-top: 0;
}

/* === MY STYLES === */
.text-uppercase {
  text-transform: uppercase;
}

.bold {
  font-weight: bold;
}

.font-italic {
  font-style: italic;
}

.text-white {
  color: #fff !important;
}

/* Specific */
.photo-credit {
  font-size: 0.8rem;
}

.photo-credit__bottom {
  position: absolute;
  font-size: 0.8rem;
  bottom: 0;
  width: 100%;
}

.event {
  border: 1px solid #193827;
}

/* Spacing */
.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pb-0 {
  padding-top: 0 !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.pb-4 {
  padding-bottom: 4rem !important;
}

.pb-5 {
  padding-bottom: 5rem !important;
}

.pb-6 {
  padding-bottom: 6rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mt-6 {
  margin-top: 6rem !important;
}

.d-block {
  display: block;
}

/* Testimonials */
/*.quote {
	margin-bottom: 0.5rem !important;
	font-size: 1.2em;
	.quote-by {
		font-size: 1rem;
		margin: 0;
		.name {
			font-weight: bold;
		}
	}
}*/
.bottom-rule::after {
  content: " ";
  display: block;
  background-color: rgba(254, 254, 254, 0.4);
  height: 2px;
  padding-bottom: 0rem;
  margin: 4rem auto 4rem auto;
  width: 20%;
}

/* Images */
.header-img {
  width: 100%;
}

.merch-item {
  text-align: center;
}
.merch-item img {
  width: 50%;
  max-width: 600px;
  margin: auto;
}
.merch-item p {
  line-height: 1.2 !important;
}

.feature .logo {
  width: 55%;
  max-width: 400px;
}

.event-img img {
  width: 100%;
  height: auto;
}

/* Backgrounds */
.about-wrapper {
  /*background-color: tint($QM-color-1, 55%) !important;*/
  max-width: 600px;
  margin: auto;
}
.about-wrapper p {
  font-size: 1.2em;
}

.music-wrapper {
  /*background-color: tint($QM-color-2, 65%) !important;*/
}
.music-wrapper .container {
  display: flex;
  align-items: flex-start;
  gap: 20px 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.gigs-wrapper {
  /*background-color: tint($QM-color-3, 75%) !important;*/
}

.merch-wrapper {
  /*background-color: tint($QM-color-5, 75%) !important;*/
}

/*.bg-qm-4 {
	background-color: $QM-color-4;
}*/
/* Button Styles */
button {
  display: block !important;
  text-align: center;
  margin: 16px auto;
}

.btn,
.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  display: inline-block;
  border-radius: 100px;
  transition: all 0.2s;
  position: relative;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-merch {
  background-color: #D17D7D;
  color: #fff;
}

.btn-about {
  background-color: #A9CED4;
  color: #fff;
}

.btn-event {
  background-color: #193827;
  color: #fff;
}

.btn-home {
  background-color: #D17D7D;
  color: #fff;
}

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.btn-white::after {
  background-color: #fff;
}

.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

/* Multi Store Button */
/*.button-wrap {
	font-size:0;//we set this to 0 so we do NOT get 4px gaps between the buttons
  font-family:$primary-font;
	padding: 0;
  &:before {
    content:"BUY";
		background-color: $QM-color-4;
    color: #fff;
    font-size:1rem;
    display:inline-block;
    position:relative;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    font-family:$primary-font;
    padding:16px 10px 16px 20px;
    border-radius:100px 0 0 100px;
    border-right:2px solid #efefef;
		margin-top:-10px;
  }
  &.tee-btns{
			&:after {
	    content:"SIZE";
			background-color: $QM-color-4;
	    color: #fff;
			font-size:1rem;
	    display:inline-block;
	    position:relative;
	    font-weight: 400;
	    text-align: center;
	    white-space: nowrap;
	    vertical-align: middle;
	    font-family:$primary-font;
			padding:16px 20px 16px 10px;
	    border-radius:0 100px 100px 0;
	    border-right:0px solid #efefef;
			margin-top:-10px;
	  }
	}
	&.sock-btns{
			&:after {
	    content:"COL";
			background-color: $QM-color-4;
	    color: #fff;
			font-size:1rem;
	    display:inline-block;
	    position:relative;
	    font-weight: 400;
	    text-align: center;
	    white-space: nowrap;
	    vertical-align: middle;
	    font-family:$primary-font;
	    padding:16px 20px 16px 10px;
	    border-radius:0 100px 100px 0;
	    border-right:0px solid #efefef;
			margin-top:-10px;
	  }
	}
	button {
		font-size: 1rem;
		display: inline-block!important;
		margin: 0;
		padding: 0;
	}
  .btn {
    border:0;
  }
  .btn.btn-merch {
    border-radius:0;
    border-right:2px solid #efefef;
    font-weight:700;
    padding:16px 16px;
  }
}*/
/* Header Link */
.logo-header {
  position: relative;
  height: 20%;
  width: 100vw;
  text-align: center;
  /* vertical align its content */
  display: table;
}
.logo-header .home-link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
}

/* Animation */
.btn-animated {
  animation: moveInBottom 5s ease-out;
  animation-fill-mode: backwards;
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
/*.bounce {
	-moz-animation: bounce 3s infinite;
	-webkit-animation: bounce 3s infinite;
	animation: bounce 3s infinite;
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}*/
/* Social */
ul.social {
  margin: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

.social {
  display: flex;
  flex-direction: row;
  text-align: center;
  height: 100%;
  justify-content: space-evenly;
  align-items: center;
}
.social li {
  display: inline-block;
  flex: 1;
}
.social li a {
  background-color: transparent;
  /*background-color: yellow;*/
  /*font-size: 1.2rem;*/
  line-height: 1;
  cursor: pointer;
  height: auto;
}
.social li svg {
  fill: #fff;
  opacity: 0.7;
  width: 25px;
  height: 25px;
  /*margin-right: 2rem;*/
}

/*.svg-icon {
	position: relative;
  padding: 0;
	margin: 0;
	fill: #fff;
	&.svg-section {
		height:20%;
		width: auto;
	}
	&.svg-logo {
		height:60%;
		width: auto;
	}
}*/
/* Music Track */
.track {
  position: relative;
  text-align: center;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 64%;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /*.svg-arrow-right {
  	fill:$color-6;
  	width: 31px;
  	height: 72px;
  	background-color: yellow;
  }*/
}
.track a {
  color: #FFFFFF;
  /*h3 {
  	font-size: 1.5em;
  	margin-bottom: 0.3em;
  }*/
}
.track a p {
  font-size: 1.2em;
}
.track a p:last-of-type {
  font-size: 0.8em;
}
.track .artwork {
  position: relative;
  /*width: 80%;
  height: 80%;*/
  max-width: 200px;
  max-height: 200px;
  margin: auto;
  /*display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;*/
}
.track .artwork img {
  position: relative;
  width: 100%;
  height: auto;
  /*width: 80%;
  height: 80%;
  max-width: 300px;
  max-height: 300px;*/
}
.track .artwork .play {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /*background-color: rgba(1, 1, 1, 0.3);*/
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.track .svg-play {
  width: 20%;
  height: 20%;
  opacity: 0.6;
  fill: #FFFFFF;
}
.track .long-right-arrow {
  position: relative;
  font-size: 1.2em;
  top: -0.08em;
}

/* Live Gigs Page */
.songkick-box {
  margin: auto;
  margin-top: 6rem;
  max-width: 600px;
  background-color: rgba(1, 1, 1, 0.4);
}

/* h2s in cd-title replaced by SVGs */
/*h1.cd-title-h1,
h2.cd-title-h2 {
	text-indent: -99999px;
	font-size: 1px;
}*/
/*
  * Modal Specific styles
  * these styles are what make the modal work
*/
.modal-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.modal {
  position: relative;
  padding: 2em;
  background-color: #ecf0f1;
  border-radius: 6px;
  max-width: 260px;
  overflow: visible;
  visibility: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}
.modal .X {
  position: absolute !important;
  top: 0;
  right: 0;
  opacity: 1;
  text-decoration: none;
  width: 40px;
  height: 40px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  transform: translate(50%, -50%);
}
.modal .X svg {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 44px;
  height: 44px;
  fill: rgb(0, 0, 0);
}
.modal .modal-body {
  position: relative;
  top: 0px;
  font-size: 1.4em;
  color: #253031;
  opacity: 0.8;
}
.modal .modal-body h2 {
  margin: 0 0 1em 0;
  font-size: 1.2em;
  color: #1a2223;
  opacity: 0.6;
}
.modal .modal-body a {
  display: block;
  display: flex;
  align-items: center;
  text-decoration-color: #253031 !important;
  text-decoration-thickness: 1px !important;
  text-decoration-style: dotted !important;
  text-decoration-line: underline !important;
  text-underline-offset: 4px;
  margin-bottom: 1em;
  color: #1a2223;
  font-weight: bold;
}
.modal .modal-body a svg {
  width: 22px;
  height: 1.2rem;
  line-height: 1;
  fill: #1a2223;
  margin-right: 0.5em;
  display: inline-block;
  vertical-align: middle;
}
.modal .modal-body .far {
  margin-right: 0.8em;
  font-weight: normal;
}
.modal .modal-body .close {
  margin-bottom: 0;
  font-weight: normal;
}

/* If the target is #modal then apply following styles
* Here it actually means, if element with class "modal" is target then apply below styles
*/
.modal-wrapper:target {
  display: flex;
  z-index: 100;
  animation: anim 0.3s ease-in-out;
}
.modal-wrapper:target .modal {
  visibility: visible;
}

/* Animation to fade in modal & wrapper */
@keyframes anim {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: flex;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes backgroundimageAnimation {
  0% {
    opacity: 1;
    transform: scale(1.12);
    animation-timing-function: ease-out;
  }
  100% {
    opacity: 1;
  }
}
/*  MEDIA QUERIES */
@media screen and (max-width: 599px) {
  .track.outNow {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(1, 1, 1, 0.4);
    transition: background-color 0.3s ease-in;
    overflow: hidden;
    padding-top: 1em;
    display: inline-block;
  }
  .outNow--bottom {
    display: none;
  }
  /* this styles on tour badge on homepage. edit of latest release box */
  .track.outNow.tour {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 1em;
    text-align: left;
  }
  .track.outNow.tour p {
    font-size: 1em;
  }
  .track.outNow.tour h3 {
    font-size: 1.2em;
  }
  .track.outNow.tour img {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .track {
    flex-basis: 40%;
  }
  .home-wrapper {
    display: flex;
  }
  .home-wrapper .container.text-center {
    position: relative;
    text-align: left;
    display: flex;
  }
  .track.outNow {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(1, 1, 1, 0.4);
    transition: background-color 0.3s ease-in;
    overflow: hidden;
    align-self: flex-end;
    /* Adjust positioning on screen width */
    margin-left: 2em;
    margin-bottom: 4em;
  }
  .track.outNow:hover, .track.outNow:active {
    background-color: rgba(1, 1, 1, 0.6);
  }
  .track.outNow .titleStream {
    padding: 1em 2em;
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .track.outNow .outNow--top {
    display: none;
  }
  .track.outNow .outNow--bottom {
    display: block;
  }
  .track.outNow .artwork {
    order: 1;
  }
  .track.outNow .titleStream {
    order: 2;
  }
  /* this styles on tour badge on homepage. edit of latest release box */
  .track.outNow.tour {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 0;
    text-align: left;
  }
  .track.outNow.tour p {
    font-size: 1em;
  }
  .track.outNow.tour h3 {
    font-size: 1.2em;
  }
  .track.outNow.tour img {
    display: block;
  }
  .container {
    padding-left: 15%;
    padding-right: 15%;
  }
}
@media screen and (min-width: 800px) {
  .track {
    flex-basis: 30%;
  }
  .container {
    padding-left: 20%;
    padding-right: 20%;
  }
  .container.aboutPage p {
    font-size: 1.25em;
    line-height: 2.2;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    padding-left: 30%;
    padding-right: 30%;
  }
}
/* Add Apple specific media queries */
