/*
Theme Name: Titmouse
Theme URI: https://www.wpzoom.com/themes/reel
Template: wpzoom-reel
Description: This is a simple Child Theme.
Author: WPZOOM
Author URI: https://www.wpzoom.com
Version: 1.0
*/

/* Write your custom CSS code below or add it in the Customizer > Additional CSS */



html, body {
    font-family: soleil, sans-serif;
     /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
    color:#fff;

}
.entry-content, .entry-content p, .page .entry-content > p, .post .entry-content > p, .portfolio .entry-content > p {
        color:#fff;
}


.site-main{
    min-height: calc(100vh - var(--vh-offset, 0px) - 284px);
}


.site {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.wrapped-fix{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
}
.site-header {top:-100px; -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;}
.logo-static {position: absolute; z-index: -1 !important; display: block; }
.logo-static a{ overflow: visible !important;}
.nav-static {position: absolute; z-index: 1000 !important; display: block;     margin-top: 23px;
    right: 0;}
.home .logo-static, .home .nav-static {display: none !important;}

.home .site-header {display: block; top:0;}

.site-header .custom-logo-noshadow {display: block;}
.site-header .custom-logo {display: none;}

.home .custom-logo-noshadow {display: none;}
.home .custom-logo {display: block;}

.sticky-header {top:0; -webkit-transition: 0.2s ease all !important;
    -o-transition: 0.2s ease all !important;
    transition: 0.2s ease all !important;}

#menu-main-slide-sticky {
  display: none !important; }

.archive-title, .section-title {
    font-weight: 700;
    color: #fff;
}
/* 
------------------------------------------

preloader

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

.site {opacity:0;}
.pace {
  pointer-events: none;
  user-select: none;
  z-index: 2000;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 160px;
  border: 0px;
  height: 3px;
  overflow: hidden;
  background:#808080;
border-radius: 1.5px;
}

.pace .pace-progress {
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
  max-width: 160px;
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: #fff;
    border-radius: 1.5px;

}

.pace.pace-inactive {
  display: none;
}

#preloader{
  width:100%;
  height:100vh;
            height: calc(100vh - var(--vh-offset, 0px));    

  background:#000;
  overflow:hidden;
  position:fixed;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.preload-wrap{
  width: 100vw;
  height: 100vh;
        height: calc(100vh - var(--vh-offset, 0px));    
  vertical-align: middle;
 display: table-cell;
}

.preload-wrap .color-logo{  width: 100vw;
  display: block;
  position: absolute;
  text-align: center;width:80px; height:auto; margin: -160px auto 40px; left:-10px; right: 0;}
.easeload{
    opacity: 0;
    -webkit-transition: all .5s linear; 
    -moz-transition: all .5s linear; 
    -ms-transition: all .5s linear; 
    -o-transition: all .5s linear; 
    transition: all .5s linear; 
}

.rw-words {
  width: 100vw;
  display: block;
  position: relative;
  text-align: center;
  margin: -80px auto 20px auto; 
    height:50px;  
    overflow:hidden;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    
}

.rw-words-1 span { 
  position: absolute;
  width: 100%;
  margin-left: -50%;
  opacity: 0;
  overflow: hidden;
  -webkit-animation: rotateWord 7.5s cubic-bezier(0.645, 0.045, 0.355, 1.000) infinite 0s;
  -ms-animation: rotateWord 7.5s cubic-bezier(0.645, 0.045, 0.355, 1.000) infinite 0s;
  animation: rotateWord 7.5s cubic-bezier(0.645, 0.045, 0.355, 1.000) infinite 0s;
}

.rw-words-1 span:nth-child(2) {
  -webkit-animation-delay: 1.5s;
  -ms-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.rw-words-1 span:nth-child(3) {
  -webkit-animation-delay: 3s;
  -ms-animation-delay: 3s;
  animation-delay: 3s;
}

.rw-words-1 span:nth-child(4) {
  -webkit-animation-delay: 4.5s;
  -ms-animation-delay: 4.5s;
  animation-delay: 4.5s;
}

.rw-words-1 span:nth-child(5) { 
    -webkit-animation-delay: 6s; 
  
    -ms-animation-delay: 6s; 
    animation-delay: 6s; 
}

.rw-words-1 span:nth-child(6) { 
    -webkit-animation-delay: 7.5s;

    -ms-animation-delay: 7.5s; 
    animation-delay: 7.5s; 
}

@-webkit-keyframes rotateWord {
  0% {opacity: 0;}
  
  2% {
    opacity: 0;
    -webkit-transform: translateY(30px);
  }
  
  5% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
  
  17% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
  
  20% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
  }
  
  80% {opacity: 0;}
  
  100% {opacity: 0;}
}

@-ms-keyframes rotateWord {
  0% {opacity: 0;}
  
  2% {
    opacity: 0;
    -ms-transform: translateY(30px);
  }
  
  5% {
    opacity: 1;
    -ms-transform: translateY(0px);
  }
  
  17% {
    opacity: 1;
    -ms-transform: translateY(0px);
  }
  
  20% {
    opacity: 0;
    -ms-transform: translateY(-30px);
  }
  
  80% {opacity: 0;}
  
  100% {opacity: 0;}
}

@keyframes rotateWord {
  0% {opacity: 0;}
  
  2% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  
  5% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  
  17% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  
  20% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  
  80% {opacity: 0;}
  
  100% {opacity: 0;}
}


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

HEADER

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

.home .site-header {
   background-color: transparent;
   box-shadow: none;
}
#navbar-main {margin-top: 4px;}
.custom-logo {
    width: 295px;
    margin-left: -118px;
    pointer-events: none;
    margin-top: 17px;
    -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
    max-width: none;
}

.menu-main-menu-container{
    margin-top:10px;
}
.navbar-brand-wpz a:hover {
    text-decoration: none;
    opacity: 1;
    color: inherit;
}

.no-svg .custom-logo {
  width: 295px;
  height: 402px;
  background-image: url(images/titmouse-logo-shadow.png);
    background-size: contain;
}

.custom-logo-noshadow {
       width:154px;
    pointer-events: none;
    margin-top: 23px;
    -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
    max-width: none;
}

.no-svg .custom-logo-noshadow {
  width: 154px;
  height: 53px;
  background-image: url(images/titmouse-logo.png);
    background-size: contain;
}

.navbar-brand-wpz a {
    color: #ffffff;
    display: block;
        height: 100px;
    margin-left: -114px;
    padding-left: 100px;
    overflow:hidden;
}

.home .navbar-brand-wpz a {
overflow:visible;
}

.navbar-wpz > li {
    padding-right: 30px;
    padding-left: 30px;
}
.main-navbar a {
    font-weight: bold;
}
.menu-main-menu-container a{
    font-size: 18px;
}
.slicknav_menu .slicknav_icon-bar {
    height: 2px;
   -webkit-transition: .2s ease all;
    -o-transition: .2s ease all;
    transition: .2s ease all;
}
.slicknav_collapsed .slicknav_icon:hover span:nth-child(1){
    left:5px;
}
.slicknav_collapsed .slicknav_icon:hover span:nth-child(3){
    left:5px;
}
.slicknav_btn.slicknav_open {
     z-index: 900;
}
.slicknav_nav {
    color: #000;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    position: fixed;
    height: 100vh;
            height: calc(100vh - var(--vh-offset, 0px));    
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    z-index: 10;
    background: #eee;
    border-radius: 3px 0 3px 3px;
    padding: 0;
    display: table;

}
.slicknav_nav ul {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}
.slicknav_nav li {
    display: block;
    margin: 0 auto;

}
.slicknav_nav a {
    padding: 10px 12px;
    font-size: 32px;
}
.slicknav_nav .slicknav_arrow {
    font-size: 0.8em;
    margin: 0;
    padding: 0;
    float: none;
    border-left: 1px solid #cecece;
display: none;
}
.slicknav_nav .sub-menu{
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 0;
}
.slicknav_nav .sub-menu a{
    font-size: 21px;
    font-weight: 300;
}
.sf-menu {
    margin: 0;
    padding: 8px 0;
    list-style: none;
    display: inline;
}
.navbar-wpz > .current-menu-item > a, .navbar-wpz > .current_page_item > a {
    opacity: 1;
}
.main-navbar .menu-no-strike .dropdown > li > a:hover {
    opacity: 1;
}

.sf-menu li a {
	-webkit-transition: .2s ease all;
    -o-transition: .2s ease all;
    transition: .2s ease all;
    opacity: .4;
	}
.home .sf-menu li a {
    opacity: 1;
	}
.sf-menu:hover li  a {
		opacity:0.4;
	}
	
.sf-menu li a:hover {
		opacity:1;
	}
.sf-arrows .sf-with-ul:after {
    content: none;
}

.navbar-wpz ul {
    background: #252526 !important;
    color: #fff;
    text-align: left;
    margin: 0;
    padding: 10px 20px 12px;
    font-size: 16px;
    left: 0;
    width: 200px;
    border: none;
    border-radius: 0;

    -webkit-box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0 15px 15px rgba(0,0,0,0.15);
}
.navbar-wpz > li > ul:before, .navbar-wpz > li > ul:after {
   content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #252526;
    position: absolute;
    top: -6px;
    left: 40px;
    z-index: 470;
}
.navbar-wpz ul a {
    color: #fff;
        font-weight: 400;
    font-size: 17px;
}
.navbar-wpz a {
    padding: 8px 0;
 }
.navbar-wpz a:hover {
    color: #fff;
}




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

FOOTER

------------------------------------------ 
*/
.site-footer {
        padding: 30px 0 10px 0;
}
.home .site-footer {
        background: linear-gradient(180deg, rgba(10,10,10,.7) 0%, rgba(10,10,10,0) 18%);
}
.custom-footer-logo {width:60px;
        pointer-events: none;
    -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
}
.custom-footer-logo-link {
    width:60px;
    padding-top: 28px;
    opacity: .2;
    -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
}
.custom-footer-logo-link:hover {
    opacity:1;
}

.no-svg .custom-footer-logo {
  width: 60px;
  height: 48px;
  background-image: url(images/titmouse-logo.png);
  background-size: contain;
}

.widget .zoom-social-icons-list--no-labels.zoom-social-icons-list--without-canvas {
    margin: 0;
    display: inline;
    float: right;
}
.zoom-social-icons-list li {
    margin:0 !important;
    display: inline;
}
.zoom-social-icons-list li:last-child a .social-icon{
    padding-right:1px !important;
}

.zoom-social-icons-list li  a {
    -webkit-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}
.zoom-social-icons-list:hover li  a {
		opacity:0.5;
	}
	
.zoom-social-icons-list li a:hover {
		opacity:1;
	}
.site-info {
    padding: 10px 0;
}
.site-info .copyright {
    margin: 0;
    text-align: right;
    float: right;
    font-size: 10px;
    position: relative;
    bottom: 36px;
    width: 100%;
    right: 0;
}

.custom-footer-area {
    padding: 0 20px;
    margin-top: -10px;

}
.custom-footer-link {    
    font-size: 36px;
    font-weight: bold;
    line-height: 50px;
    padding-left: 0;
    -webkit-transition: all .3s cubic-bezier(.165,.84,.44,1) 0s;
    -o-transition: all .3s cubic-bezier(.165,.84,.44,1) 0s;
    transition: all .3s cubic-bezier(.165,.84,.44,1) 0s;
}
.custom-footer-link span{    
    font-size: 40px;
    font-weight: bold;
    position: relative;
    top: 7px;
    left: 0;
    line-height: 50px;
        -webkit-transition: all .3s cubic-bezier(.165,.84,.44,1) 0s;
    -o-transition: all .3s cubic-bezier(.165,.84,.44,1) 0s;
    transition: all .3s cubic-bezier(.165,.84,.44,1) 0s;
}
.custom-footer-link:hover {    
    padding-left: 18px;
    opacity: 1;
    color: #fff !important;
}

.custom-footer-link:hover span{    
    left: 12px;
}
/* 
------------------------------------------

HOMEPAGE

------------------------------------------ 
*/
.home #navbar-main .navbar-wpz .sub-menu {display: none !important;}
.home .site-main {
    margin-top: 0;
}

.flex-viewport {
    min-height: none;
    max-height: 100vh;
}

#slider .is-vimeo-pro-slide iframe {
    transition: .2s all linear;
}
.fs-background-media{
    transform: scale(1.2);
}

.slides li h3{
      font-family: soleil, sans-serif;
}
.slides > li .excerpt {
      font-family: soleil, sans-serif;
    font-weight: 300;
 position: absolute;
    bottom: -7px;
    left: 6px;
}

.slides > li .li-wrap {
    position: absolute;
    width: 94%;
    top: unset;
    bottom: 60px;
    left: 3%;
        max-width: 79%;
    margin: 0 auto;
  
    transform: translate(-300px, 300px);
            -webkit-transition: all 0.75s ease;
    -o-transition: all 0.75s ease;
    transition: all 0.75s ease;
}

#slider .flex-direction-nav {
    z-index: 510;
    top: 0;
    margin-top: 0;
}

#slider .flex-direction-nav li {
    width:130px;
    position: absolute;
}

#slider .flex-direction-nav li.flex-nav-prev {
 left:0;
    height:100vh;
            height: calc(100vh - var(--vh-offset, 0px));    

}
#slider .flex-direction-nav li.flex-nav-next {
 right:0;
    height:100vh;
        height: calc(100vh - var(--vh-offset, 0px));    

    float: right;
}


#slider .flex-direction-nav .flex-prev {
    left: -80px;
    top: 50%;
    margin-top: -50px;
     -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
}
#slider .flex-direction-nav .flex-next {
    right: -80px;
    text-align: right;
    top: 50%;
    margin-top: -50px;
     -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

#slider .flex-direction-nav li.flex-nav-prev:hover .flex-prev {
 left:3vw;
}
#slider .flex-direction-nav li.flex-nav-next:hover .flex-next {
 right:3vw;
}


#slider .flex-direction-nav li a {
    position: absolute;
    z-index: 100;
    font-size: 0;
    width: 80px;
    height: 100px;
    cursor: pointer;
    -webkit-transition: all 100ms;
    -o-transition: all 100ms;
    transition: all 100ms;
}
#slider .flex-direction-nav .flex-prev:after {
    font: normal 54px/14px  'Material Icons';
    display: inline-block;
    content: "\e5e0";
    vertical-align: top;
    padding: 0;
    color: #fff;
    font-weight: 400;
    opacity: .6;
    line-height: 100px;
    margin-left: -20px;
    padding: 0 20px;
    width: 80px;
   
    /* margin-left: 0px; */
}
#slider .flex-direction-nav .flex-next:after {
    font: normal 54px/14px 'Material Icons';
    display: inline-block;
    content: "\e5e1";
    vertical-align: top;
    padding: 0;
    color: #fff;
    font-weight: 400;
    opacity: .6;
    line-height: 100px;
    margin-right: -20px;
    padding: 0 20px;
    width: 80px;
   
    /* margin-left: 0px; */
}


#slider .flex-control-nav {
    bottom: 49px;
    text-align: right;
    padding-right: 3%;
    z-index: 511;
}

#slider .flex-control-nav li {
    display: inline-block;
    margin: 2px;
    pointer-events: auto;
    position: relative;
   width: auto;
    height: auto;
}

#slider .flex-control-nav li a {
    border-radius: 50%;
    cursor: pointer;
    display: block;
    width: 3px;
    height: 3px;
    text-indent: 9999em;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    background: #fff;
    opacity: .4;
    border: 5px solid transparent;
    background-clip: padding-box;
    padding: 4px;
}

#slider .flex-control-nav li a.flex-active, #slider .flex-control-nav li a:hover {
    opacity: 1;
    background: #fff;
    background-clip: padding-box;
}


/*

#slider .flex-control-nav {
    bottom: 49px;
    text-align: right;
    padding-right: 3%;
    z-index: 511;
}

#slider .flex-control-nav li {
    display: inline-block;
    height: 18px;
    margin: 3px;
    pointer-events: auto;
    position: relative;
    width: 40px;
   
}

#slider .flex-control-nav li a {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: none;
    border-left: none;
    border-radius: 0;
    cursor: pointer;
    display: block;
    height: 18px;
    text-indent: 9999em;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    width: 100%;
    background-color: #fff;
    background-clip: padding-box;
    opacity: .4;
}

#slider .flex-control-nav li a.flex-active, #slider .flex-control-nav li a:hover {
    background: inherit;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: none;
    border-left: none;
    opacity: 1;
}
*/

.slides > li .excerpt {
            -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    margin: 0;
}

.slide_up {
    transform: translate(0px, 0px) !important;
}


.long_shadow {
    letter-spacing: -.75px;
        font-size: 60px !important;
    line-height: 1 !important;
    letter-spacing: -3px;
    position: absolute !important;
    bottom: 42px;
    width: 100%;
  color:#fff;
    -webkit-text-fill-color: white; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
        -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
   text-shadow:  -1px 1px #000, -2px 2px #000, -3px 3px #000, -4px 4px #000, -5px 5px #000, -6px 6px #000, -7px 7px #000, -8px 8px #000, -9px 9px #000, -10px 10px #000, -11px 11px #000, -12px 12px #000, -13px 13px #000, -14px 14px #000, -15px 15px #000, -16px 16px #000, -17px 17px #000, -18px 18px #000, -19px 19px #000, -20px 20px #000, -21px 21px #000, -22px 22px #000, -23px 23px #000, -24px 24px #000, -25px 25px #000, -26px 26px #000, -27px 27px #000, -28px 28px #000, -29px 29px #000, -30px 30px #000, -31px 31px #000, -32px 32px #000, -33px 33px #000, -34px 34px #000, -35px 35px #000, -36px 36px #000, -37px 37px #000, -38px 38px #000, -39px 39px #000, -40px 40px #000, -41px 41px #000, -42px 42px #000, -43px 43px #000, -44px 44px #000, -45px 45px #000, -46px 46px #000, -47px 47px #000, -48px 48px #000, -49px 49px #000, -50px 50px #000, -51px 51px #000, -52px 52px #000, -53px 53px #000, -54px 54px #000, -55px 55px #000, -56px 56px #000, -57px 57px #000, -58px 58px #000, -59px 59px #000, -60px 60px #000, -61px 61px #000, -62px 62px #000, -63px 63px #000, -64px 64px #000, -65px 65px #000, -66px 66px #000, -67px 67px #000, -68px 68px #000, -69px 69px #000, -70px 70px #000, -71px 71px #000, -72px 72px #000, -73px 73px #000, -74px 74px #000, -75px 75px #000, -76px 76px #000, -77px 77px #000, -78px 78px #000, -79px 79px #000, -80px 80px #000, -81px 81px #000, -82px 82px #000, -83px 83px #000, -84px 84px #000, -85px 85px #000, -86px 86px #000, -87px 87px #000, -88px 88px #000, -89px 89px #000, -90px 90px #000, -91px 91px #000, -92px 92px #000, -93px 93px #000, -94px 94px #000, -95px 95px #000, -96px 96px #000, -97px 97px #000, -98px 98px #000, -99px 99px #000, -100px 100px #000, -101px 101px #000, -102px 102px #000, -103px 103px #000, -104px 104px #000, -105px 105px #000, -106px 106px #000, -107px 107px #000, -108px 108px #000, -109px 109px #000, -110px 110px #000, -111px 111px #000, -112px 112px #000, -113px 113px #000, -114px 114px #000, -115px 115px #000, -116px 116px #000, -117px 117px #000, -118px 118px #000, -119px 119px #000, -120px 120px #000, -121px 121px #000, -122px 122px #000, -123px 123px #000, -124px 124px #000, -125px 125px #000, -126px 126px #000, -127px 127px #000, -128px 128px #000, -129px 129px #000, -130px 130px #000, -131px 131px #000, -132px 132px #000, -133px 133px #000, -134px 134px #000, -135px 135px #000, -136px 136px #000, -137px 137px #000, -138px 138px #000, -139px 139px #000, -140px 140px #000, -141px 141px #000, -142px 142px #000, -143px 143px #000, -144px 144px #000, -145px 145px #000, -146px 146px #000, -147px 147px #000, -148px 148px #000, -149px 149px #000, -150px 150px #000, -151px 151px #000, -152px 152px #000, -153px 153px #000, -154px 154px #000, -155px 155px #000, -156px 156px #000, -157px 157px #000, -158px 158px #000, -159px 159px #000, -160px 160px #000, -161px 161px #000, -162px 162px #000, -163px 163px #000, -164px 164px #000, -165px 165px #000, -166px 166px #000, -167px 167px #000, -168px 168px #000, -169px 169px #000, -170px 170px #000, -171px 171px #000, -172px 172px #000, -173px 173px #000, -174px 174px #000, -175px 175px #000, -176px 176px #000, -177px 177px #000, -178px 178px #000, -179px 179px #000, -180px 180px #000, -181px 181px #000, -182px 182px #000, -183px 183px #000, -184px 184px #000, -185px 185px #000, -186px 186px #000, -187px 187px #000, -188px 188px #000, -189px 189px #000, -190px 190px #000, -191px 191px #000, -192px 192px #000, -193px 193px #000, -194px 194px #000, -195px 195px #000, -196px 196px #000, -197px 197px #000, -198px 198px #000, -199px 199px #000, -200px 200px #000, -201px 201px #000, -202px 202px #000, -203px 203px #000, -204px 204px #000, -205px 205px #000, -206px 206px #000, -207px 207px #000, -208px 208px #000, -209px 209px #000, -210px 210px #000, -211px 211px #000, -212px 212px #000, -213px 213px #000, -214px 214px #000, -215px 215px #000, -216px 216px #000, -217px 217px #000, -218px 218px #000, -219px 219px #000, -220px 220px #000, -221px 221px #000, -222px 222px #000, -223px 223px #000, -224px 224px #000, -225px 225px #000, -226px 226px #000, -227px 227px #000, -228px 228px #000, -229px 229px #000, -230px 230px #000, -231px 231px #000, -232px 232px #000, -233px 233px #000, -234px 234px #000, -235px 235px #000, -236px 236px #000, -237px 237px #000, -238px 238px #000, -239px 239px #000, -240px 240px #000, -241px 241px #000, -242px 242px #000, -243px 243px #000, -244px 244px #000, -245px 245px #000, -246px 246px #000, -247px 247px #000, -248px 248px #000, -249px 249px #000, -250px 250px #000, -251px 251px #000, -252px 252px #000, -253px 253px #000, -254px 254px #000, -255px 255px #000, -256px 256px #000, -257px 257px #000, -258px 258px #000, -259px 259px #000, -260px 260px #000, -261px 261px #000, -262px 262px #000, -263px 263px #000, -264px 264px #000, -265px 265px #000, -266px 266px #000, -267px 267px #000, -268px 268px #000, -269px 269px #000, -270px 270px #000, -271px 271px #000, -272px 272px #000, -273px 273px #000, -274px 274px #000, -275px 275px #000, -276px 276px #000, -277px 277px #000, -278px 278px #000, -279px 279px #000, -280px 280px #000, -281px 281px #000, -282px 282px #000, -283px 283px #000, -284px 284px #000, -285px 285px #000, -286px 286px #000, -287px 287px #000, -288px 288px #000, -289px 289px #000, -290px 290px #000, -291px 291px #000, -292px 292px #000, -293px 293px #000, -294px 294px #000, -295px 295px #000, -296px 296px #000, -297px 297px #000, -298px 298px #000, -299px 299px #000, -300px 300px #000, -301px 301px #000, -302px 302px #000, -303px 303px #000, -304px 304px #000, -305px 305px #000, -306px 306px #000, -307px 307px #000, -308px 308px #000, -309px 309px #000, -310px 310px #000, -311px 311px #000, -312px 312px #000, -313px 313px #000, -314px 314px #000, -315px 315px #000, -316px 316px #000, -317px 317px #000, -318px 318px #000, -319px 319px #000, -320px 320px #000, -321px 321px #000, -322px 322px #000, -323px 323px #000, -324px 324px #000, -325px 325px #000, -326px 326px #000, -327px 327px #000, -328px 328px #000, -329px 329px #000, -330px 330px #000, -331px 331px #000, -332px 332px #000, -333px 333px #000, -334px 334px #000, -335px 335px #000, -336px 336px #000, -337px 337px #000, -338px 338px #000, -339px 339px #000, -340px 340px #000, -341px 341px #000, -342px 342px #000, -343px 343px #000, -344px 344px #000, -345px 345px #000, -346px 346px #000, -347px 347px #000, -348px 348px #000, -349px 349px #000, -350px 350px #000, -351px 351px #000, -352px 352px #000, -353px 353px #000, -354px 354px #000, -355px 355px #000, -356px 356px #000, -357px 357px #000, -358px 358px #000, -359px 359px #000, -360px 360px #000, -361px 361px #000, -362px 362px #000, -363px 363px #000, -364px 364px #000, -365px 365px #000, -366px 366px #000, -367px 367px #000, -368px 368px #000, -369px 369px #000, -370px 370px #000, -371px 371px #000, -372px 372px #000, -373px 373px #000, -374px 374px #000, -375px 375px #000, -376px 376px #000, -377px 377px #000, -378px 378px #000, -379px 379px #000, -380px 380px #000, -381px 381px #000, -382px 382px #000, -383px 383px #000, -384px 384px #000, -385px 385px #000, -386px 386px #000, -387px 387px #000, -388px 388px #000, -389px 389px #000, -390px 390px #000, -391px 391px #000, -392px 392px #000, -393px 393px #000, -394px 394px #000, -395px 395px #000, -396px 396px #000, -397px 397px #000, -398px 398px #000, -399px 399px #000, -400px 400px #000;
  
}
.long_shadow a{
      -webkit-text-fill-color: white; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
        position: absolute;
    width: 100%;
    bottom: -200px;
    padding: 50px 0 200px 0;
            -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.long_shadow a:hover {
    opacity:1 !important; 
    color:#f0f0f0;
          -webkit-text-fill-color: #f0f0f0; /* Will override color (regardless of order) */
transform: translate(20px, -20px);
}

.long_shadow:hover + .excerpt{
   
transform: translate(20px, -20px);
}

.missing-url:hover + .excerpt{
   
transform: translate(0, 0);
}

.slide-background-overlay a {display: block; width: 100%; height: 100%;}

.home .play-toggle {display:none;}
/* 
------------------------------------------

PORTFOLIO

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

.portfolio-showcase .portfolio_item, .portfolio-archive .portfolio_item {
    width: 33.3333%;
    margin: 0;
   
}

.portfolio-showcase .portfolio_item img, .portfolio-archive .portfolio_item img {
    width: 100%;
    height: auto;
        -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
   -webkit-transition: all 1s cubic-bezier(.165,.84,.44,1) 0s;
    transition: all 1s cubic-bezier(.165,.84,.44,1) 0s;
}

.portfolio_item > a {
  
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.portfolio-showcase .portfolio_item > a:hover img, .portfolio-archive .portfolio_item > a:hover img {
        -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.portfolio_item-title_btm {
    text-align: center;
    text-transform: none;
    font-size: 16px;
    letter-spacing: 0;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 101%;
    display: table;
    margin: 0;
    background: rgba(0,0,0,0);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out ;
    z-index: 102;
}

.portfolio_item-title_btm span{
    display: table-cell;
    vertical-align: middle;
    opacity: 0;
    padding: 40px;
    transform: translateY(10px); 
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.portfolio_item-title_btm span span{
    display: block;
    font-size: .9em;
    font-weight: 300;
    margin-top: 10px;
}
.portfolio-showcase .portfolio_item a:hover .portfolio_item-title_btm, .portfolio-archive .portfolio_item > a:hover .portfolio_item-title_btm {
        background: rgba(0,0,0,0.6);

}
.portfolio-showcase .portfolio_item a:hover .portfolio_item-title_btm span, .portfolio-archive .portfolio_item > a:hover .portfolio_item-title_btm span{
       transform: translateY(0px);
    opacity:1;

}
.portfolio-archive .home_section {
padding: 25px 3% 20px 3%;
}
.home_section {
    background: #000;
}
.portfolio-archive-taxonomies {
    padding: 0;
}

.portfolio-archive-taxonomies a {
    display: block;
    color: #A3A3A3;
    -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
    text-transform: none;
    font-size: 20px;
    font-weight: 300;
}
.portfolio-archive-taxonomies a:hover {
    color: #fff;
    text-decoration: none;
}
.portfolio-archive-taxonomies li.current-cat a {
    color: #fff;
    font-weight: bold;
}
.portfolio-archive-taxonomies li + li {
    margin-left: 28px; }
.category-more{
    display:inline-block;
}
.category-more-button {
    margin-left: 28px; color: #A3A3A3;
    -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
    text-transform: none;
    font-size: 20px;
    font-weight: 300;
    background: none;
}
.category-more-button:hover, .category-more-button:hover:after {color:#fff;}
.category-more-button:after {
    font-family: 'Material Icons';
    display: inline-block;
    content: "\e5cf";
    vertical-align: top;
    padding: 0 0 0 4px;
    color: #A3A3A3;
    font-weight: 400;
}

.visually-hidden {
    position: absolute;
    left: -100vw;
}
/* Dropdown Content (Hidden by Default) */
.category-sub-menu {
  display: none;
    padding: 0 36px 18px;
  position: absolute;
  background-color: #000;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 200;
    opacity: 0;
    margin-left:-8px;
    transform: translateY(-50px);
    -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
}
.category-sub-menu li {display: block; }
.category-sub-menu li + li {margin-left: 0; }

/* Show the dropdown menu on hover */
#toggle:checked ~ .category-sub-menu {display: block; opacity:1; transform: translateY(0px);
}
#toggle:checked ~ .category-more-button:after {content: "\e5ce";}

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

SINGLE PORTFOLIO

------------------------------------------ 
*/
.entry-cover .entry-info {
    height:100%;
}
.entry-cover:after {
    background: none;
}
.entry-cover .entry-thumbnail-popover {
    opacity: 1;
}
.entry-cover .entry-thumbnail-popover-content {
   opacity: 1;
}
.entry-cover .entry-thumbnail-popover.lightbox_open_full .portfolio-popup-video:after {
    display: table-cell;
    vertical-align: middle;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100px;
    width: 100px;
    right: 0;
    margin: auto;
    border: 2px solid #fff;
    background: rgba(0,0,0,0);
    border-radius: 50%;
    cursor: pointer;
    line-height: 96px;
    padding-left: 8px;
     -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

.entry-thumbnail-popover.lightbox_open_full .portfolio-popup-video {
    display: table-cell;
    text-align: center;
    margin: auto;
    width: 100px;
    height: 100px;
}

.entry-cover .entry-thumbnail-popover.lightbox_open_full .portfolio-popup-video:hover:after {
transform: scale(1.25);
}

.single h1.entry-title, .page h1.entry-title {
    line-height: 1.2;
    vertical-align: baseline;
    text-align: left;
    max-width: 1200px;
    margin: 20px 0;
    font-size: 38px;
    font-weight: 700;
    font-family: soleil, sans-serif !important;
}
.background-video-buttons-wrapper a {
    color: #FFF;
    opacity: .8;
    letter-spacing: normal;
    text-shadow: 0px 1px 8px rgba(0, 0, 0, .2);
}
.entry-content h2 {
    color: #fff;
    font-weight: 300;
}
.entry-content h3 {
    color: #a3a3a3;
    font-weight: 300;
    font-size: 21px;
}

.entry-content p {
    margin-top: 20px;
    font-size: 17px;
}
.nav-links{
    width: 100%;
    margin:80px 0 40px 0;
    min-height: 60px;
    position: relative;
}
.nav-previous{

  
    max-width: 30%;
    float:left;
    margin-left: 36px;
}
nav-prev-wrap{
  
}
.nav-next{
    float: right;
    text-align: left;
    width: auto;
    max-width: 30%;
    margin-right: 36px;
}
.nav-previous a, .nav-next a{
   font-size: 21px;
    font-weight: 700;
    color: #a3a3a3;
    line-height: 1;
         -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

.nav-previous a i{    
position: absolute;
    left: 0;
}
.nav-next a i{    
position: absolute;
    right: 0;
}
.nav-previous a span, .nav-next a span{
  font-weight: 300;
    font-size: 14px;
        line-height: 1.8;
    display: block;
        margin-left: 1px;
}
.nav-previous a:hover, .nav-next a:hover{
    color: #fff;
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content p {
   max-width: 65%;
}


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

ABOUT

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

.about-us #slider .slides {
    min-height: 300px;
    height: 650px;
}
.about-us .slides li h3, .about-us .flex-direction-nav {
 display: none;
}
.indented{
        padding: 0 11%;
}
.entry-content .wp-block-columns h1, .entry-content .wp-block-columns h2, .entry-content .wp-block-columns h3, .entry-content .wp-block-columns h4, .entry-content .wp-block-columns h5, .entry-content .wp-block-columns p {
   max-width: 100% !important;
}
.entry-col-left h1, .entry-col-left h2, .entry-col-left h3, .entry-col-left h4, .entry-col-left h5 {
    font-weight: 300;
    color:#a3a3a3;
    font-size: 21px;
    margin-top: 20px;
    line-height: 1.8;
}

.team-col {
    flex-basis: 50% !important;
    flex-grow: 1 !important;
    flex-shrink: 1 !important;
}
.bio-photo{
    flex-basis: 35% !important;
}
.bio-text{
    flex-basis: 65% !important;
}
.bio-hidden{
    max-height: none !important;
}
.team-wrapper{
    max-width: 1050px !important;
    margin: 0 auto 30px auto !important;
    flex-wrap: wrap !important;
}
.team-member h3 {
    font-size: 21px;
    font-weight: bold;
}
.team-member-title{
    color: #a3a3a3;
    font-weight: 300;
    text-transform: uppercase;
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

.team-member img{box-shadow: 0 10px 40px rgba(0,0,0,0.15);}
.bio-text .team-member-title{
   font-size: 19px;
    margin-bottom: 30px;
}

.bio-text h3{
    margin-top: 0;
   font-size: 34px;
}
.entry-content .portfolio-director a {font-weight: 300; text-decoration: none; color: #a3a3a3;}
.entry-content .portfolio-director a:hover {text-decoration: none;}

.entry-content > h3{margin-top:-15px;}
.entry-content > h3:first-of-type {margin-top: 0;}


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

CONTACT

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


.contact-page h1, .contact-page h2, .contact-page h3, .contact-page h4, .contact-page h5, .contact-page p {
   max-width: 100%;
}
.contact-page h1 {
    font-weight: 300;
    color:#a3a3a3;
    font-size: 21px;
        margin: 0px;
    line-height: 1.8;
}
.contact-page h2 {
    font-size: 36px;
    font-weight: bold;
    max-width: 90%;
}
.contact-links a{text-decoration: none; color:#fff !important;     font-size: 21px;
    font-weight: 400;}
.contact-links a:hover {}
.contact-links p{color:#a3a3a3; }
.small-contact-link a {font-size: 17px;}
div.wpforms-container-full {
    margin-top: 20px;
}
div.wpforms-container-full .wpforms-form input[type=date], div.wpforms-container-full .wpforms-form input[type=datetime], div.wpforms-container-full .wpforms-form input[type=datetime-local], div.wpforms-container-full .wpforms-form input[type=email], div.wpforms-container-full .wpforms-form input[type=month], div.wpforms-container-full .wpforms-form input[type=number], div.wpforms-container-full .wpforms-form input[type=password], div.wpforms-container-full .wpforms-form input[type=range], div.wpforms-container-full .wpforms-form input[type=search], div.wpforms-container-full .wpforms-form input[type=tel], div.wpforms-container-full .wpforms-form input[type=text], div.wpforms-container-full .wpforms-form input[type=time], div.wpforms-container-full .wpforms-form input[type=url], div.wpforms-container-full .wpforms-form input[type=week], div.wpforms-container-full .wpforms-form select, div.wpforms-container-full .wpforms-form textarea {
 background: none;
    box-sizing: border-box;
    border-radius: 0;
    color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: block;
    float: none;
    font-size: 21px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #5E5E5E;
    padding: 0;
    height: 77px;
    width: 100%;
    font-weight: 400;
    line-height: 1.3;
    
}
.left-fix {    margin-left: 0 !important;}
.top-fix {    margin-top: -15px !important;}
div.wpforms-container-full .wpforms-form .wpforms-field {
    padding: 10px 0 0 0 ;
}


.wpforms-one-half .wpforms-field-limit-text {display: none;}

div.wpforms-container-full .wpforms-form input[type=submit], div.wpforms-container-full .wpforms-form button[type=submit], div.wpforms-container-full .wpforms-form .wpforms-page-button {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    padding: 11px 45px;
    margin: 60px 0 30px 0;
            -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

div.wpforms-container-full .wpforms-form input[type=submit]:hover, div.wpforms-container-full .wpforms-form input[type=submit]:focus, div.wpforms-container-full .wpforms-form input[type=submit]:active, div.wpforms-container-full .wpforms-form button[type=submit]:hover, div.wpforms-container-full .wpforms-form button[type=submit]:focus, div.wpforms-container-full .wpforms-form button[type=submit]:active, div.wpforms-container-full .wpforms-form .wpforms-page-button:hover, div.wpforms-container-full .wpforms-form .wpforms-page-button:active, div.wpforms-container-full .wpforms-form .wpforms-page-button:focus {
    background: #252526;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    box-sizing: border-box;
    background-clip: border-box;
    transform: none;
    outline: none;
    border: 2px solid #252526;
}
::-webkit-input-placeholder { /* Edge */
  color: #fff;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

::placeholder {
  color: #fff;
}

.wpforms-confirmation-container-full, div[submit-success] > .wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
    background: none;
    border: none;
}
.wpforms-confirmation-container-full, div[submit-success] > .wpforms-confirmation-container-full {
padding:0;
}

.location_item > a{
    height: auto;
    padding-bottom: 0;
}
.location_meta {
   display: block;
    position: relative;
    font-size: 17px;
    margin: 50px auto 80px;
    text-align: center;
}
.location_meta p{color:#a3a3a3; text-transform: uppercase;}
.location_meta a{font-size: 21px; text-transform: none;}
.location_meta h3{font-weight: bold; text-transform: none;}
.location_item > a:hover img {
    -webkit-transform: scale(1.01) !important;
    -ms-transform: scale(1.01) !important;
    -o-transform: scale(1.01) !important;
    transform: scale(1.01) !important;
    opacity: 0.6;
}

.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header a {
    padding: 15px 0;
}
.sp-easy-accordion .sp-ea-single .ea-header a .ea-expand-icon {
    margin-right: 15px;
}
.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-body {
    padding: 0 36px;
}
.fa-plus:before {
    content: '\e145' !important;
    font-family: 'Material Icons' !important;
}
.fa-minus:before {
    content: "\e15b" !important;
   font-family: 'Material Icons' !important;
}
.ea-body ul li {
    list-style-type: disc;
}
/* -----------------------

JOBS 

------------------------- */
#jobs-container {
    margin:-30px;
}
.job {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  padding: 40px 30px;
}
.job-title {
  font-size: 21px;
  text-decoration: none;
  color: #fff;
    line-height: 1.8;
}

.job-title:hover {
  color: #fff; 
    text-decoration: underline;
}

.tags span {
  color: #a3a3a3;
      font-size: 17px;
    font-weight: 300;
    text-transform: uppercase;
}
.tags span:after {
  content: ', ';
}
.tags span:last-of-type:after {
  content: '';
}
.description {
  color: #fff;
}
.btn {
  display: inline-block;
      padding: 10px 36px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
  color: #fff;
  border: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background: #252526;
  box-shadow: 0 5px 20px rgba(0,0,0,0.16);
           -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
        margin: 20px 0;

}
.btn:hover {
  background: #3A3A3B;
  color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.btn:focus {
  background: #3A3A3B;
  color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.jobs-locations {
  margin-top: 20px;
  padding: 0 30px
}
.jobs-locations .btn {
    margin: 0 20px 20px 0;
    background: none;
    border: 2px solid #fff;
    -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
    box-shadow: none;
}
.jobs-locations .btn:hover {
    border: 2px solid #252526;
    background: #252526;
    box-shadow: 0 5px 20px rgba(0,0,0,0.16);
}
.jobs-locations .btn:first-of-type {
  margin-left: 0;
}
.jobs-locations .btn:last-of-type {
  margin-right: 0;
}
.btn.active {
  color: #fff;
  background: #3A3A3B;

}
.jobs-locations .btn.active {
  color: #fff;
  background: #3A3A3B;
  border: 2px solid #3A3A3B;

}

.general-inquiry-section {
    background: #000;
    padding: 80px 0;
}

.general-inquiry-section .wp-block-button .wp-block-button__link{
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    padding: 11px 45px;
    margin: 60px 0 30px 0;
    -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

.general-inquiry-section .wp-block-button .wp-block-button__link:hover{
    background: #252526;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    box-sizing: border-box;
    background-clip: border-box;
    transform: none;
    outline: none;
    border: 2px solid #252526;
}

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


ARCHIVES


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

.recent-post .post-thumb {
    height: 0;
    padding-bottom: 56.25%;
}

.recent-post .post-thumb img {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    bottom: -100%;
    margin: auto;
}

.recent-post .entry-content p {max-width:100%;}

.readmore_button a {
    background-color: #191919;
    border: 2px solid #fff;
    border-radius: 0;
    -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
}
.readmore_button a:hover {
    border: 2px solid #252526;
    background: #252526 !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.16);
}