* {
  margin: 0px;
  padding: 0px;
  outline: none;
  border: none;
}

html {
  height: 100%;
  width: 100%;
}

body {
  height: 100%;
  width: 100%;
  font-family: helvetica, arial, sans-serif;
  color: #1c1c1c;
  font-size: 10px;
}

h1 {
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 1px;
}

h2 {
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 1px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === SCROLL BARS === */

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  /* The Inner Behind Trck */
  width: 7px;
  background: rgba(234, 234, 234, 1);
}

::-webkit-scrollbar-thumb {
  /* The Main Drag Bar */
  background: rgba(191, 191, 191, 1);
  margin-left: -10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #999;
}

::-webkit-scrollbar-button {
  border: 0px solid red;
  display: none;
  height: 0px;
}
::-webkit-scrollbar-button:start {
  display: none;
}
::-webkit-scrollbar-button:end {
  display: none;
}
::-webkit-scrollbar-button:vertical:end:increment {
  height: 0px;
}

#wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  background: transparent;
}

#sidebar {
  width: 165px;
  padding-left: 45px;
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  background-color: #fff;
  z-index: 200;
}

.logo {
  margin-top: 42px;
  width: 142px;
  height: auto;
  display: block;
}

#separator {
  height: 1px;
  border-top: 1px solid #a1a1a1;
  border-bottom: 1px solid #a1a1a1;
  width: 142px;
  margin-top: 10px;
}

ul.nav {
  list-style-type: none;
  line-height: 21px;
  margin-top: 20px;
}

ul.nav li.category a {
  display: block;
  padding-left: 4px;
  width: 90px;
  padding-top: 2px;
  padding-bottom: 1px;
  height: 22px;
  margin-bottom: 1px;
  letter-spacing: 1px;
}

#secondaryNav {
  position: absolute;
  bottom: 25px;
  left: 45px;
}

ul.nav#secondaryNav li a {
  display: block;
  padding-left: 4px;
  width: 90px;
  padding-top: 2px;
  padding-bottom: 1px;
  height: 19px;
  margin-bottom: 1px;
  letter-spacing: 1px;
  font-size: 9px;
}

ul.nav li.category a:hover,
ul.nav#secondaryNav li a:hover {
  /*background-color: #eee;*/
  font-weight: bold;
}

a.pageOn {
  /*background-color: #eee !important;*/
  font-weight: bold !important;
}

#secondaryNav .social img {
  margin-right: 7px;
  margin-top: 9px;
  margin-left: 3px;
  opacity: 1;
  transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
}

#secondaryNav .social img:hover {
  opacity: 0.3;
}

#content-wrapper {
  height: 100%;
  padding-left: 212px;
}

#main {
  padding-top: 42px;
}

/* --- PHOTO GRID --- */

#ajax-loader {
  position: absolute;
  top: 40%;
  left: 47%;
  border: 0px solid red;
  width: 200px;
  height: 200px;
  z-index: 90;
}

ul.grid {
  position: relative;
  list-style-type: none;
}

ul.grid li.item {
  margin-right: 7px;
  margin-bottom: 7px;
  width: 220px;
  opacity: 0;
}

ul.grid li a img {
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 200ms;
  -webkit-transition: opacity 200ms;
  -moz-transition: opacity 200ms;
}

ul.grid li.item a:hover img {
  opacity: 0.18 !important;
}

#grid .overlay {
  width: 100%;
  margin-top: 20%;
  position: absolute;
  opacity: 0;
  transition: opacity 200ms;
  -webkit-transition: opacity 200ms;
  -moz-transition: opacity 200ms;
}

#grid a:hover .overlay {
  opacity: 1;
}

#grid .overlay h2.title {
  font-family: Georgia, serif;
  display: block;
  width: 75%;
  margin: 0px auto;
  text-align: center;
  line-height: 20px;
}

#grid .overlay .viewStory {
  display: block;
  width: 40%;
  margin: 0px auto;
  text-align: center;
  color: #901c1c;
  font-weight: bold;
  font-family: helvetica, arial, sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  border-top: 1px solid #a1a1a1;
  padding-top: 8px;
  margin-top: 20px;
}

.grid li.shown,
.no-js .grid li,
.no-cssanimations .grid li {
  opacity: 1 !important;
}

/* Effect 1: opacity */
.grid.effect-1 li.animate {
  -webkit-animation: fadeIn 0.65s ease forwards;
  -moz-animation: fadeIn 0.65s ease forwards;
  animation: fadeIn 0.65s ease forwards;
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* --- VIDEO GRID --- */

#main.videoGrid .cell {
  width: 495px;
  position: relative;
  overflow: hidden;
  margin: 0px 45px 30px 0px;
  float: left;
  z-index: 0;
}

#main.videoGrid .cell .photo {
  width: 495px;
  height: 371px;
  overflow: hidden;
}

#main.videoGrid .cell .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media all and (max-width: 1315px) {
  #main.videoGrid .cell {
    width: 400px;
  }
  #main.videoGrid .cell .photo {
    width: 400px;
    height: 299px;
  }
}

#main.videoGrid .cell .project {
  display: block;
  width: 100%;
  text-align: center;
  padding-top: 14px;
  font-size: 12px;
  color: #252525;
  letter-spacing: 1px;
}

/* --- VIDEO POPUP --- */

#lightboxWrapper {
  background: transparent;
  position: relative;
  text-align: center;
}

#lightboxWrapper p {
  display: none;
}

#lightboxWrapper p.title {
  font-size: 12px;
  text-align: center;
  margin: 20px 0px;
  letter-spacing: 1px;
  display: block;
}

/* --- HORIONTAL SCROLL --- */

#main.horizontalScroll {
  overflow-y: hidden;
}

#main.horizontalScroll table {
  display: block;
  z-index: 100;
  border: none;
}

#next {
  position: fixed;
  top: 50%;
  right: 15px;
  margin-top: -37px;
  z-index: 99;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

#next:hover {
  opacity: 0.5;
}

#prev {
  position: fixed;
  top: 50%;
  left: 250px;
  margin-top: -37px;
  z-index: 99;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

#prev:hover {
  opacity: 0.5;
}

#main.horizontalScroll table td {
  vertical-align: bottom;
  position: relative;
  border-right: 1px solid #fff;
}

#main.horizontalScroll table td .caption {
  font-size: 11px;
  color: #a1a1a1;
  letter-spacing: 1px;
  display: block;
  height: 37px;
  margin-top: 10px;
}

.photo.scroll {
  height: 100%;
}

#toggleView {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 999;
}

#toggleView .storyNav {
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-right: -4px;
  position: relative;
  top: -3px;
  margin-right: 5px;
}

#toggleView a img {
  margin-left: 5px;
  opacity: 0.5;
  transition: opacity 0.1s;
  -webkit-transition: opacity 0.1s;
  -moz-transition: opacity 0.1s;
}

#toggleView a:hover img {
  opacity: 1;
}

/* --- CONTACT / ABOUT PAGE --- */

#main.textpage {
  max-width: 1000px;
}

.textpage p:first-child img {
  width: 90%;
  height: auto;
  max-width: 1156px;
  margin-bottom: 42px;
}

.textpage .content {
  width: 90%;
  max-width: 1156px;
  font-family: Georgia, serif;
}

.textpage p,
.textpage p span {
  font-size: 12px !important;
}

.textpage p {
  margin-bottom: 15px;
  line-height: 18px;
}

.textpage .social li {
  margin-bottom: 15px;
}

.textpage .social h2 {
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-left: 5px;
  position: relative;
  top: -4px;
}

.clients .textpage .content p,
.clients .textpage .content h1,
.clients .textpage .content h2 {
  /*width: 75%;*/
  margin: 0px auto;
}

/*
        .clients .textpage .content {
            text-align: center;
        }
        */

.clients .textpage .content p {
  font-size: 13px;
  line-height: 26px;
  margin-bottom: 27px;
  margin-top: 10px;
}

.content #col1 {
  width: 100%;
}
/*        
        .content.contact #col2 {
            float: left;
            width: 70%;
        }
*/
.contact .textpage .content p {
  font-size: 13px;
  line-height: 26px;
  margin-bottom: 27px;
  margin-top: 10px;
}

.contact .textpage .content h2 {
  line-height: 25px;
}

.contact .content #col1 ul {
  position: relative;
  top: -27px;
  left: 65px;
  list-style-type: none;
  color: #9e1616;
  font-size: 10px;
}

#col1 ul li img {
  position: relative;
  top: 5px;
  margin-right: 6px;
}
