

/* Content formatting*/
html, body {
  height: 100%;
  background-color: #060606;
  -webkit-overflow-scrolling: touch;
}
body {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #e5e5e5;
    background-color: transparent;
    /*background: linear-gradient(0deg, red, #0000b7);*/
}

h1, h2, h3, h4, h5 {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
}

h1 {
  font-size: 2em;
  letter-spacing: -0.01em;
}

.content-column-content h1 {
  text-align: center;
}

h3 {
  font-size: 1.6em;
  letter-spacing: -0.02em;
}

.content-column-content ol, .content-column-content ul {
    margin-top: 0;
    margin-bottom: 4em;
}

.content-column-content ul li {
  margin-bottom: 1em;
}
.box-masonry h4 {
  text-transform: capitalize;
  letter-spacing: 0.0em;
  font-size: 1.4em;
  line-height: 1.2;
}

.content-column-content p, .content-column-content li {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: #e5e5e5;
}

.intro {
  margin-bottom: 1.2em;
  padding: 10px;
}

.intro-p {
  font-size: 1.1em;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
}

.accent-image {
  display: block;
  margin: 0 auto;
  width: 12px;
  height: 12px;
}

.sidebar-p {
  font-size: 1em;
  font-weight: 300;
}
.sidebar-menu {
  font-size: 1.4em;
}
.sidebar-heading, .small-navbar-heading {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1.2;
  text-transform: capitalize;
  letter-spacing: 0;
}

.small-navbar-heading {
  margin-right: 10px;
}



.content-column-content img {
  max-width: 100%;
}

.content-column-content .small-image {
  max-width: 50%;
}

iframe {
  display:block;
  margin:auto;
  margin-bottom: 4em;
}

.gallery-grid img {
  display: block;
  margin: 0 auto;
}

.gallery-grid {
  margin-bottom: 4em;
}

.metadata {
  overflow: auto;
  border-top: 1px solid rgba(240,240,240,0.2);
  border-bottom: 1px solid rgba(240,240,240,0.2);
  margin: 2em 0;
  font-size: 0.8em;
}
.metadata h5 {
  font-weight: 500;
  color: #969696;
  text-transform: uppercase;
}

.metadata ul {
  list-style-type: none;
  margin: 0 0 1em;
  padding: 0;
}

.content-column-content .metadata ul li, .content-column-content .metadata ul li a {
    color: #969696;
}

.metadata ul li:before {
  content: none;
  margin: 0;
}
/* Theme hacks */
.copyright p.credit {
  display: none;
}

.sidebar-content {
  padding-right: 30px;
}

.box-masonry {
  box-shadow: none;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.0, 1.0);
  transform: translateZ(0);
}
.box-masonry:hover {
  box-shadow: none;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.0, 1.0);
  box-shadow: none;
}

.box-masonry-text {
  position: relative;
  z-index: 2;
  background-color: #060606;
}

.box-masonry h4 a, .box-masonry h4 a:hover {
  color: white;
}

.box-masonry .box-masonry-image {
  position: relative;
  z-index: 1;
  -webkit-transition: all 300ms cubic-bezier(0.195, 0.660, 0.135, 0.990);
          transition: all 300ms cubic-bezier(0.195, 0.660, 0.135, 0.990);
}

.box-masonry:hover > .box-masonry-image {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.box-masonry .box-masonry-image img {
   width: 100%;
}

.box-masonry .box-masonry-image.with-hover-icon:after {
  color: white;
}

p.social a {
  font-size: 20px;
  margin: 6px 0;
  border: 0;
  }

p.social a:hover {
  color: white;
}

/* Nav Toggle */
.nav-toggle {
  width: 50px;
  height: 50px;
  position: relative;
  background: transparent;
  border: none;
  vertical-align: middle;
  padding: 10px;
  margin: 0;
  cursor: pointer;
}
.nav-toggle:focus {
  outline: 0;
}
.nav-toggle:hover span,
.nav-toggle:hover span:before,
.nav-toggle:hover span:after {
  background: white;
}
.nav-toggle:before {
  content: '';
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.nav-toggle span {
  display: block;
  position: relative;
}
.nav-toggle span:before, .nav-toggle span:after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-toggle span:before {
  top: -8px;
}
.nav-toggle span:after {
  bottom: -8px;
}
.nav-toggle span,
.nav-toggle span:before,
.nav-toggle span:after {
  width: 100%;
  height: 4px;
  background: #bebebe;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.nav-toggle.active:before {
  opacity: 1;
  width: 50px;
  height: 50px;
  background: #111111;
}
.nav-toggle.active span {
  background: transparent;
}
.nav-toggle.active span:before {
  top: 0;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.nav-toggle.active span:after {
  bottom: 0;
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
}
/* Helpers */

img[src$='#center'] {
    display: block;
    margin: 0.7rem auto; /* you can replace the vertical '0.7rem' by
                            whatever floats your boat, but keep the
                            horizontal 'auto' for this to work */
    /* whatever else styles you fancy here */
}

img[src$='#floatleft'] {
    float:left;
    margin: 0.7rem;      /* this margin is totally up to you */
    /* whatever else styles you fancy here */
}

img[src$='#floatright'] {
    float:right;
    margin: 0.7rem;      /* this margin is totally up to you */
    /* whatever else styles you fancy here */
}

img[src$='#fullwidth'] {
  min-width: 100%;
}


/* Color Theme*/

.box-masonry {
  background-color: transparent; 
}

#sidebar, .row, .row-offcanvas, .row-offcanvas-left {
  background-color: transparent;
}

h1, h2, h3, h4, body, .sidebar-content {
  color: white;
}

.sidebar-heading a, .small-navbar-heading a, .sidebar-heading a:hover {
color: white;
border: 0;
}

.sidebar-p {
  color: #969696;
}

.sidebar-menu li a, p.social a {
 color: #d3d3d3;
}

p.social a {
  color: #d3d3d3;
}

a, .sidebar-menu li.active a, .sidebar-menu li.active:before {
  color: white;
}


.box-masonry h4 a, .box-masonry h4 a:hover {
  border: 0;
}

/* Glitch */

.small-navbar .glitch {
  position: relative;
  left: 10px;
}

.small-navbar .glitch .text {
  right: 10px;
  width: 9em;
  position: absolute;
}

.glitch {
  position: relative;
  margin-top: 12px;
  margin-bottom: 4em;
  width: 100%;
  /*overflow: auto;*/
}

.glitch .text {
  -webkit-animation: jerkwhole 7s infinite;
  /*position: relative;*/
  padding: 0;
  margin: 0;
}

.glitch span {
  position: absolute;
  color: white;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;;
  text-align: center;
  -webkit-animation: blur 30ms infinite, jerk 50ms infinite;
  left: 0;
}

.glitch span:nth-child(1) {
  color: red!important;
  margin-left: 1px;
  margin-top: 2px;
  -webkit-filter: blur(2px);
}

.glitch span:nth-child(2) {
  color: green!important;
  margin-left: 0px;
  -webkit-filter: blur(1px);
}

.glitch span:nth-child(3) {
  color: blue!important;
  margin-left: 0px;
  margin-top: 0px;
  -webkit-filter: blur(1px);
  -webkit-animation: jerkblue .5s infinite;
}

.glitch span:nth-child(4) {
  /*color: white;*/
  -webkit-filter: blur(3px);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.glitch span:nth-child(5) {
  color: rgba(255, 255, 255, 0.4);
  -webkit-filter: blur(1px);
}

@-webkit-keyframes blur {
  0% {
    -webkit-filter: blur(3px);
    opacity: 0.4;
  }
  50% {
    -webkit-filter: blur(18px);
    opacity: 1;
  }
  100% {
    -webkit-filter: blur(4px);
    opacity: 0.6;
  }
}
@-webkit-keyframes jerk {
  50% {
    left: 0.02em;
  }
  51% {
    left: 0;
  }
}
@-webkit-keyframes jerkup {
  50% {
    top: 2px;
  }
  51% {
    top: 0;
  }
}
@-webkit-keyframes jerkblue {
  0% {
    left: 0;
  }
  30% {
    left: 0;
  }
  31% {
    left: 0.02em;
  }
  32% {
    left: 0;
  }
  98% {
    left: 0;
  }
  100% {
    left: 0.02em;
  }
}
@-webkit-keyframes jerkgreen {
  0% {
    left: 0;
  }
  30% {
    left: 0;
  }
  31% {
    left: -0.02em;
  }
  32% {
    left: 0;
  }
  98% {
    left: 0;
  }
  100% {
    left: 0.02em;
  }
}
@-webkit-keyframes jerkwhole {
  40% {
    opacity: 1;
    top: 0;
    /*left: 0px;*/
    -webkit-transform: scale(1, 1);
    -webkit-transform: skew(0, 0);
  }
  40.25% {
    opacity: 0.8;
    top: 0px;
    /*left: -50px;*/
    -webkit-transform: scale(1, 1.2);
    -webkit-transform: skew(20deg, 0);
  }
  40.75% {
    opacity: 0.8;
    top: 0px;
    /*left: 2em;*/
    -webkit-transform: scale(1, 1.2);
    -webkit-transform: skew(-10deg, 0);
  }
  41% {
    opacity: 1;
    top: 0;
    /*left: 0;*/
    -webkit-transform: scale(1, 1);
    -webkit-transform: skew(0, 0);
  }
}

/* ---- grid ---- */

/* clear fix */
.workshop-grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.workshop-item {
  width: 33.333%;
}

.workshop-item {
  float: left;
}

.workshop-item img {
  display: block;
  width: 100%;
}
.workshop-item.med {
  width: 66.666%;
}

.instagram-media{
  margin: 15px auto !important;
}

iframe {
  border: 0;
}

video {
  margin-bottom: 4em;
}