body {
  margin: 0px;
  padding: 0px;
}
/* Mozilla based browsers */
::-moz-selection {
  background-color: #f39e18;
  color: #000;
}
/* Works in Safari */
::selection {
  background-color: #f39e18;
  color: #000;
}
h1 {
  font-size: 26px;
  font-family: 'Montserrat Alternates', sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h2,
h3,
h4,
h5 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h2 {
  font-size: 20px;
}
p {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}
p a {
  color: #f39e18;
}
p a:hover {
  color: #f39e18;
}
p.lead {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.navbar-default {
  background-color: transparent;
  border: none;
}
.navbar-default .navbar-nav li a {
  font-family: 'Montserrat Alternates', sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: lowercase;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.navbar-default .navbar-nav li a:hover {
  color: #c4c4c4;
}
.navbar-brand {
  font-family: 'Montserrat Alternates', sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #fff !important;
  text-transform: lowercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.navbar-default {
  background-color: #273439;
  opacity: 0.4;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-top: -8px;
}
.navbar-default:hover {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-top: 0px;
}
.fullscreenImage {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  background-attachment: fixed;
  position: relative;
}
h1.headline {
  text-align: center;
  font-size: 160px;
  color: #fff;
  padding-top: 270px;
  margin: 0px;
  background: transparent;
}
.fullscreenGallery {
  padding: 70px 0px 70px 0px;
}
.videoHeader h1 {
  margin-bottom: 20px;
}
.videoBlock .videoElement {
  margin-bottom: 20px;
}
.videoBlockWrapper {
  padding: 70px 0px 70px 0px;
}
.textElement {
  padding: 70px 0px 70px 0px;
}
.textElement h1 {
  line-height: 1.2;
  padding-top: 0px;
  margin-top: 0px;
}
.textElementHeader {
  padding-top: 70px;
}
.textElementHeader h1 {
  padding-top: 0px;
  margin-top: 0px;
}
.textBlockBottom {
  padding-bottom: 70px;
}
.socialWrapper {
  padding: 70px 0px 70px 0px;
}
.socialWrapper .textBox {
  margin-bottom: 40px;
}
.socialWrapper h1 {
  margin-bottom: 20px;
}
.socialWrapper p {
  margin-bottom: 20px;
}
.socialWrapper .socialLogo {
  text-align: center;
}
.socialWrapper .socialLogo img {
  width: 70%;
  opacity: 0.6;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.socialWrapper .socialLogo img:hover {
  opacity: 1;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
}
.fade-in.one {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.fade-in.two {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.fade-in.three {
  -webkit-animation-delay: 1.3s;
  -moz-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
.arrow-wrap {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 5em;
  margin-left: -5.1em;
  background: #fff;
  width: 10em;
  height: 10em;
  padding: 4em 2em;
  border-radius: 50%;
  font-size: 0.32em;
  display: block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.arrow {
  float: left;
  position: relative;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3em 3em 0 3em;
  border-color: #273439 transparent transparent transparent;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  transform: rotate(360deg);
}
.arrow:after {
  content: '';
  position: absolute;
  top: -3.2em;
  left: -3em;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3em 3em 0 3em;
  border-color: #fff transparent transparent transparent;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  transform: rotate(360deg);
}
.hint {
  position: absolute;
  top: 0.6em;
  width: 100%;
  left: 0;
  font-size: 2em;
  font-style: italic;
  text-align: center;
  color: #273439;
  opacity: 0;
}
.arrow-wrap:hover .hint {
  opacity: 1;
}
@-webkit-keyframes arrows {
  0% {
    top: 0;
  }
  10% {
    top: 12%;
  }
  20% {
    top: 0;
  }
  30% {
    top: 12%;
  }
  40% {
    top: -12%;
  }
  50% {
    top: 12%;
  }
  60% {
    top: 0;
  }
  70% {
    top: 12%;
  }
  80% {
    top: -12%;
  }
  90% {
    top: 12%;
  }
  100% {
    top: 0;
  }
}
.arrow-wrap .arrow {
  -webkit-animation: arrows 2.8s 0.4s;
  -webkit-animation-delay: 3s;
}
.pageImageHeader {
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
.pageHeader h1 {
  color: #fff;
  font-size: 80px;
  margin-top: 200px;
  text-transform: lowercase;
}
#content {
  padding: 40px 0px 0px 0px;
}
#main article {
  border: none;
}
blockquote {
  border-color: #f39e18;
}
.footerWrapper {
  background-color: #273439;
  padding: 40px 0px 40px 0px;
}
.footerWrapper h4 {
  color: #fff;
}
.footerWrapper p {
  color: #fff;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.footerWrapper p.footerText {
  color: #f39e18;
  font-size: 10px;
}
.footerWrapper p.footerText a {
  color: #f39e18;
  font-size: 10px;
}
.footerWrapper p.footerText a:hover {
  text-decoration: line-through;
}
.footerWrapper .widget {
  margin-bottom: 50px;
}
.music p.lead {
  font-size: 16px;
}
.coverWrapper .cover .coverElement {
  margin-bottom: 30px;
}
.coverWrapper .cover .coverElement .coverImage {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.coverWrapper .cover .coverElement .coverImage img {
  width: 100%;
  height: 100%;
}
.singleCoverImage img {
  width: 100%;
  margin-bottom: 30px;
}
.singleCoverImage .btn-lg {
  border-radius: 0px;
}
.singleCoverImage .btn-primary {
  background-color: #273439;
  border-color: transparent;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.singleCoverImage .btn-primary:hover {
  background-color: #5a6367;
  border-color: transparent;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.singleCoverImage a.musicButton {
  font-family: 'Montserrat Alternates', sans-serif;
  font-style: normal;
  font-weight: 400;
  text-transform: lowercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.singleCoverImage .buttons {
  margin-bottom: 30px;
}
h2.lyricsDropdown {
  font-size: 20px;
  font-weight: 400;
  text-transform: lowercase;
  color: #273439;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
h2.lyricsDropdown:hover {
  color: #f39e18;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.panel-title a:hover {
  text-decoration: none;
  color: #f39e18;
}
.panel-collapse {
  background-color: #ededed;
}
.lyricsFold {
  margin-bottom: 70px;
  padding: 40px 0px 0px 0px;
}
.gigpress-table h4 {
  text-transform: lowercase;
}
.gigpress-table p.tickets {
  font-style: normal;
  font-size: 14px;
  line-height: 1;
}
.gigpress-table p.tickets a {
  color: #f39e18;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
}
.gigpress-table a.gigpress-links-toggle {
  margin-top: 2px;
}
.gigpress-header {
  background-color: #273439;
  border-top: 1px solid #fff;
  color: #fff;
}
.gigpress-header th {
  border: none!important;
}
.gigpress-row td {
  border-bottom: none!important;
}
.gigpress-row p {
  margin-bottom: 0px;
}
.gigpress-table th {
  border-bottom: none!important;
}
strong.gigpress-cancelled,
strong.gigpress-soldout {
  background-color: #333!important;
  padding: 1px 3px 1px 3px!important;
}
#post-not-found .hero-unit {
  margin-top: 150px;
  margin-bottom: 150px;
}
/* Large desktops and laptops */
@media (min-width: 1200px) {
  .coverImage:hover {
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    /* IE 5-7 */
    filter: alpha(opacity=80);
    /* Netscape */
    -moz-opacity: 0.8;
    /* Safari 1.x */
    -khtml-opacity: 0.8;
    /* Good browsers */
    opacity: 0.8;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #instaLink_0 .instalink-feed-post {
    width: 180px!important;
    margin-right: 20px !important;
  }
  .navbar-default .navbar-nav > .active > a,
  .navbar-default .navbar-nav > .active > a:hover,
  .navbar-default .navbar-nav > .active > a:focus {
    padding-top: 21px;
  }
  .navbar-brand {
    padding-top: 21px;
  }
  .navbar-nav > li > a {
    padding-top: 21px;
  }
}
/* Portrait tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  /* MENU */
  .navbar-default {
    background-color: #273439;
    opacity: 1;
    margin-top: 0px;
  }
  body {
    margin-top: 50px;
    padding: 0px;
  }
  .fullscreenImage {
    background-attachment: scroll;
  }
  #instaLink_0 .instalink-feed-post {
    width: 180px!important;
    margin-right: 20px !important;
  }
}
/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
  body {
    margin-top: 50px;
    padding: 0px;
  }
  /* MENU */
  .navbar-default {
    background-color: #273439;
    opacity: 1;
    margin-top: 0px;
  }
  .fullscreenImage {
    background-attachment: scroll;
  }
  #instaLink_0 .instalink-feed-post {
    width: 180px!important;
    margin-right: 20px !important;
  }
  .socialLogo img {
    width: 100%!important;
  }
}
/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
  body {
    margin-top: 50px;
    padding: 0px;
  }
  .navbar-default {
    margin-top: 0px;
    opacity: 1;
  }
  .navbar-default .navbar-toggle {
    border: none;
    margin-top: 10px;
  }
  .navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
  }
  .navbar-default .navbar-toggle:hover,
  .navbar-default .navbar-toggle:focus {
    background-color: transparent;
  }
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border: none;
    border-bottom: 4px solid #f39e18;
  }
  .navbar-collapse {
    border: none;
    box-shadow: none;
  }
  .fullscreenImage {
    background-attachment: scroll;
  }
  h1.headline {
    font-size: 60px;
    padding-top: 170px;
  }
  .gigpress-table p {
    font-size: 12px;
  }
  .gigpress-table h4 {
    font-size: 14px;
  }
  .gigpress-table p.tickets {
    font-size: 12px;
  }
  .gigpress-table p.ticketLink a {
    font-size: 12px;
  }
  .pageHeader h1 {
    font-size: 60px;
  }
  .socialLogo img {
    max-width: 200px;
  }
  h1.instagram {
    text-align: center;
  }
}
/* Landscape phones and smaller */
@media (max-width: 480px) {
  body {
    margin-top: 50px;
    padding: 0px;
  }
  .navbar-default {
    margin-top: 0px;
    opacity: 1;
  }
  .navbar-default .navbar-toggle {
    border: none;
    margin-top: 10px;
  }
  .navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
  }
  .navbar-default .navbar-toggle:hover,
  .navbar-default .navbar-toggle:focus {
    background-color: transparent;
  }
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border: none;
    border-bottom: 4px solid #f39e18;
  }
  .navbar-collapse {
    border: none;
    box-shadow: none;
  }
  .fullscreenImage {
    background-attachment: scroll;
  }
  h1.headline {
    font-size: 60px;
    padding-top: 170px;
  }
  .gigpress-table p {
    font-size: 12px;
  }
  .gigpress-table h4 {
    font-size: 14px;
  }
  .gigpress-table p.tickets {
    font-size: 12px;
  }
  .gigpress-table p.ticketLink a {
    font-size: 12px;
  }
  .pageHeader h1 {
    font-size: 60px;
  }
  .socialLogo img {
    max-width: 200px;
  }
  h1.instagram {
    text-align: center;
  }
}
