/*

GLOBAL STYLES

*/
.navbar {
  background-color: white;
  border-bottom: 1px solid gainsboro;
  position: absolute;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%; }
  .navbar .icon-bar {
    background-color: #292929; }
  .navbar a {
    font-weight: 300;
    outline: none;
    color: #292929; }
    .navbar a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: #292929;
      visibility: hidden;
      -webkit-transform: scaleX(0);
      transform: scaleX(0);
      -webkit-transition: all 0.2s ease-in-out 0s;
      transition: all 0.2s ease-in-out 0s; }
    .navbar a:hover, .navbar a:focus {
      font-weight: 300;
      background: none !important; }
      .navbar a:hover :before, .navbar a:focus :before {
        visibility: visible;
        -webkit-transform: scaleX(1);
        transform: scaleX(1); }
  .navbar.transparent {
    background-color: transparent;
    border-bottom: none; }
    .navbar.transparent.white a {
      color: white; }
    .navbar.transparent.white .icon-bar {
      background-color: white; }
  @media (max-width: 767px) {
    .navbar.white .navbar-collapse li a {
      color: #292929; } }

.navbar-brand {
  text-transform: uppercase;
  font-size: 32px;
  margin-top: 7px; }

.navbar-nav {
  margin-top: 7px;
  margin-bottom: 7px; }

.navbar-toggle {
  margin-top: 7px;
  margin-bottom: 7px; }

@media (max-width: 767px) {
  .navbar-collapse {
    background-color: white;
    border-bottom: 1px solid gainsboro;
    border-top: 1px solid gainsboro; }
    .navbar-collapse .navbar-nav {
      margin-top: 0;
      margin-bottom: 0; }
    .navbar-collapse li {
      text-align: center; }

  .transparent .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.9); }

  .navbar-brand {
    margin-top: 0; } }
.albums {
  flex-wrap: wrap;
  display: flex; }
  .albums .album {
    width: 25%;
    padding: 15px;
    position: relative;
    display: inline-block;
    overflow: hidden; }
    .albums .album .album-inner:hover {
      text-decoration: none; }
    .albums .album img {
      display: block;
      width: 100%; }
    @media (max-width: 768px) {
      .albums .album {
        width: 100%; } }
    .albums .album .title {
      font-weight: 300;
      font-size: 25px;
      text-align: center;
      position: relative; }
      @media (min-width: 769px) {
        .albums .album .title {
          position: absolute;
          width: 100%;
          height: 100%;
          bottom: 0;
          left: 0;
          margin: 0;
          padding: 10px;
          opacity: 0;
          transition: opacity 300ms ease-in; } }
      .albums .album .title label {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.6);
        padding: 15px;
        height: 100%;
        cursor: pointer; }
        .albums .album .title label p {
          position: absolute;
          width: 100%;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          font-weight: 300; }
          .albums .album .title label p span {
            display: block;
            margin-bottom: 5px; }
          @media (max-width: 768px) {
            .albums .album .title label p {
              position: relative;
              transform: none; } }
          .albums .album .title label p .record-label {
            font-size: 14px; }
          .albums .album .title label p .publish-year {
            font-size: 14px; }
    @media (min-width: 769px) {
      .albums .album:hover .title {
        opacity: 1; } }

.album-view {
  margin-top: 50px; }
  .album-view h1 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 500; }
  .album-view h2 {
    margin-top: 0;
    font-size: 24px; }
  .album-view h3 {
    margin-top: 10px;
    font-size: 20px; }
  .album-view .tracklist a {
    font-weight: 300; }
    .album-view .tracklist a:after {
      content: ' ';
      width: 0;
      height: 0;
      margin-left: 5px;
      border-style: solid;
      border-width: 4px 0 4px 8px;
      border-color: transparent transparent transparent #292929;
      display: inline-block; }
  .album-view section {
    margin-bottom: 40px; }
    .album-view section:last-child {
      margin-bottom: 0; }
  .album-view .album-details {
    display: flex;
    flex-direction: row; }
    @media (max-width: 993px) {
      .album-view .album-details {
        display: block; } }
    .album-view .album-details img {
      width: 100%; }
    .album-view .album-details .album-meta {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      flex-direction: column; }
      .album-view .album-details .album-meta p {
        margin-top: 0;
        font-size: 16px; }
      .album-view .album-details .album-meta .tracklist {
        list-style-position: inside;
        padding: 0;
        font-size: 12px; }
      @media (max-width: 993px) {
        .album-view .album-details .album-meta {
          margin-top: 20px; } }
  .album-view .soundcloud {
    margin-top: 20px; }

.projects {
  flex-wrap: wrap;
  display: flex; }
  .projects .project {
    width: 25%;
    padding: 15px;
    position: relative;
    display: inline-block;
    overflow: hidden; }
    .projects .project .project-inner:hover {
      text-decoration: none; }
    .projects .project img {
      display: block;
      width: 100%; }
    @media (max-width: 768px) {
      .projects .project {
        width: 100%; } }
    .projects .project .title {
      font-weight: 300;
      font-size: 25px;
      text-align: center;
      position: relative; }
      @media (min-width: 769px) {
        .projects .project .title {
          position: absolute;
          width: 100%;
          height: 100%;
          bottom: 0;
          left: 0;
          margin: 0;
          padding: 10px;
          opacity: 0;
          transition: opacity 300ms ease-in; } }
      .projects .project .title label {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.6);
        padding: 15px;
        height: 100%;
        cursor: pointer; }
        .projects .project .title label p {
          position: absolute;
          width: 100%;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          font-weight: 300; }
          .projects .project .title label p span {
            display: block;
            margin-bottom: 5px; }
          @media (max-width: 768px) {
            .projects .project .title label p {
              position: relative;
              transform: none; } }
          .projects .project .title label p .description {
            font-size: 14px; }
    @media (min-width: 769px) {
      .projects .project:hover .title {
        opacity: 1; } }

.grid-with-filters .grid-item {
  display: block;
  width: 33%;
  position: relative;
  padding: 10px;
  text-decoration: none; }
  @media (max-width: 768px) {
    .grid-with-filters .grid-item {
      width: 100%; } }
  .grid-with-filters .grid-item img {
    width: 100%; }
  @media (min-width: 769px) {
    .grid-with-filters .grid-item .grid-item-meta {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 10px;
      opacity: 0;
      transition: opacity 300ms ease-in;
      background: rgba(255, 255, 255, 0.6); } }
  .grid-with-filters .grid-item .grid-item-meta .grid-item-name {
    font-size: 25px;
    margin-bottom: 5px;
    display: block;
    font-weight: 300;
    padding: 0 10px; }
  @media (min-width: 769px) {
    .grid-with-filters .grid-item:hover .grid-item-meta {
      opacity: 1; } }

.grid-with-filters-filter {
  padding-top: 10px;
  margin-bottom: 20px; }
  .grid-with-filters-filter .filter-selector {
    font-size: 16px;
    margin-right: 10px;
    padding: 10px;
    color: #292929;
    cursor: pointer; }
    .grid-with-filters-filter .filter-selector.active {
      border-bottom: 1px solid #292929;
      font-weight: 500; }

.cssload-container {
  width: 100%;
  height: 49px;
  text-align: center;
  display: none; }

.cssload-speeding-wheel {
  width: 49px;
  height: 49px;
  margin: 0 auto;
  border: 3px solid black;
  border-radius: 50%;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: cssload-spin 725ms infinite linear;
  -o-animation: cssload-spin 725ms infinite linear;
  -ms-animation: cssload-spin 725ms infinite linear;
  -webkit-animation: cssload-spin 725ms infinite linear;
  -moz-animation: cssload-spin 725ms infinite linear; }

@keyframes cssload-spin {
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg); } }
@-o-keyframes cssload-spin {
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-ms-keyframes cssload-spin {
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-webkit-keyframes cssload-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-moz-keyframes cssload-spin {
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg); } }
.soundtrack-view {
  margin-top: 50px; }
  .soundtrack-view h1 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 500; }
  .soundtrack-view h2 {
    margin-top: 0;
    font-size: 24px; }
  .soundtrack-view h3 {
    margin-top: 10px;
    font-size: 20px; }
  .soundtrack-view section {
    margin-bottom: 40px; }
    .soundtrack-view section:last-child {
      margin-bottom: 0; }
  .soundtrack-view .soundtrack-details {
    display: flex;
    flex-direction: row; }
    @media (max-width: 993px) {
      .soundtrack-view .soundtrack-details {
        display: block; } }
    .soundtrack-view .soundtrack-details img {
      width: 100%; }
    .soundtrack-view .soundtrack-details .soundtrack-meta {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      flex-direction: column; }
      .soundtrack-view .soundtrack-details .soundtrack-meta p {
        margin-top: 0;
        font-size: 16px; }
      @media (max-width: 993px) {
        .soundtrack-view .soundtrack-details .soundtrack-meta {
          margin-top: 20px; } }

.inspiration-gallery {
  margin-top: 30px; }

body {
  background: white;
  margin-top: 65px;
  font-family: 'Lato', sans-serif;
  font-weight: 300; }

main {
  padding-bottom: 15px; }
  main img {
    max-width: 100%;
    height: auto; }

/*
UTILS
*/
.lang-separator {
  -webkit-transform: scale(0.7);
  font-weight: 300;
  color: gainsboro; }

.pl {
  color: darkgray; }

.language-info {
  color: #292929;
  font-weight: 500; }

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto; }

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/*
OVERRIDES
*/
a, a:hover, a:focus, a:visited, a:active {
  color: #292929;
  font-weight: bold;
  text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 300; }

h1 {
  margin: 40px 0 30px; }

.owl-nav .owl-prev, .owl-nav .owl-next {
  display: inline-block;
  width: 50%;
  font-size: 16px;
  margin-top: 10px; }
  .owl-nav .owl-prev.disabled, .owl-nav .owl-next.disabled {
    opacity: 0.5;
    cursor: not-allowed; }
.owl-nav .owl-next {
  text-align: right; }

/*
Theme
*/
#home-background {
  width: 100%;
  height: 100vh;
  margin-top: -65px;
  background-image: url("../img/home-bckg.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat; }

.footer p {
  margin-top: 5px;
  opacity: 0.5;
  font-size: 12px; }

.cover-image {
  background-image: url("../img/about-bckg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 30vw;
  min-height: 64px;
  margin-top: -64px; }

.about .gallery {
  margin-top: 30px; }

.logos-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%; }

.logos {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap; }
  .logos a {
    margin: 0 20px 20px 0; }
  .logos img {
    height: 40px;
    width: auto; }
    @media (max-width: 768px) {
      .logos img {
        height: 30px; } }

/**
SHOWS
*/
.shows {
  margin-bottom: 30px; }

.timeline-item {
  padding: 30px 20px 20px;
  position: relative;
  color: rgba(0, 0, 0, 0.7);
  border-left: 2px solid #dddddd; }
  .timeline-item p {
    font-size: 16px;
    margin-bottom: 5px; }
    .timeline-item p.additional-info {
      font-size: 13px;
      opacity: 0.7; }
  .timeline-item::before {
    content: attr(date-is);
    position: absolute;
    left: 20px;
    font-weight: bold;
    top: 5px;
    display: block;
    font-weight: 500;
    font-size: 16px; }
  .timeline-item::after {
    width: 10px;
    height: 10px;
    display: block;
    top: 10px;
    position: absolute;
    left: -6px;
    border-radius: 10px;
    content: '';
    border: 2px solid #dddddd;
    background: white; }
  .timeline-item:last-child {
    border-image: linear-gradient(to bottom, #dddddd 60%, rgba(221, 221, 221, 0)) 1 100%; }
  .timeline-item:first-child {
    border-image: linear-gradient(to top, #dddddd 80%, rgba(221, 221, 221, 0)) 1 100%; }
  .timeline-item.upcoming {
    font-weight: 600; }
    .timeline-item.upcoming::before {
      font-weight: 600; }

.live-embed {
  margin-bottom: 20px; }

.project-view .project-image {
  margin-bottom: 15px; }
.project-view .embed {
  margin-top: 30px; }
