/*

1. DOCUMENT SETUP
2. PAGE PRELOADER
3. PAGE HEADER
    3.1 MAIN NAVIGATION
    3.2 PAGINATION NAVI
4. WRAPPER
5. AJAX CONTENT
6. BANNER
7. WORK
    7.1 FILTER TABS
    7.2 WORK GRID
    7.3 WORK DETAILS
8. TEAM
    8.1 TRIANGLE LINKS
9. NEWS
    9.1 NEWS DETAILS
10. CONTACT
    10.1 CONTACT DETAILS
    10.2 GOOGLE MAP
    10.3 CONTACT FORM
11. FOOTER




/* --------------------------------------------------------------------- */
/* 1. DOCUMENT SETUP
/* --------------------------------------------------------------------- */

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

body {
    font-size: 100%;
    font-family: 'Vesper Libre', serif;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.1em;
    color: #3d4148;
    background: #fefefe;
    overflow-y: scroll;
    z-index: 3;
}


::selection {
    background: #fefefe;
    color: #fff;
}
::-moz-selection {
    background: #fefefe;
    color: #fff;
}




/* --------------------------------------------------------------------- */
/* 2. PAGE PRELOADER
/* --------------------------------------------------------------------- */

#page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0f1f1;
    overflow: hidden;
    z-index: 99999;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateX(0) translateZ(99px);
    transform: rotateX(0) translateZ(99px);
}

#page-preloader .preloader-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -80px;
    text-align: center;
}

#page-preloader .logo {
    display: block;
    margin: 0 auto 30px auto;
}




/* --------------------------------------------------------------------- */
/* 3. PAGE HEADER
/* --------------------------------------------------------------------- */

#page-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99998;
}

#logo {
    
    z-index: 98;    
}


/* ============ 3.1 MAIN NAVIGATION ============  */

#mobile-bars {
    display: none;
}

#mobile-close {
    display: none;
}

#main-navigation {
    position: absolute;
    top: 40px;
    right: 35px;
    font-family: 'Vesper Libre', serif;
    font-weight: 700;
    
    
}

#main-navigation:after {
    display: block;
    content: '';
    clear: both;
}

#main-navigation li {
    float: left;
}

#main-navigation a {
    display: block;
    padding: 10px 15px;
    text-transform:uppercase;
    font-size: 1.1em;
    color: #fff;
}

#main-navigation a:hover, #main-navigation a.active {
    text-decoration: line-through;
}

#main-navigation a.active {
    color: #fff;
}

#main-navigation.dark a {
    color: #3d4148;
}



/* ============ 3.2 PAGINATION NAVI ============  */

#pagination-navi {
    display: none;
    position: fixed;
    top: 50%;
    right: 50px;
    text-align: right;
    z-index: 98;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateX(0) translateZ(99px);
    transform: rotateX(0) translateZ(99px);
}

#pagination-navi li {
    padding: 3px 0;
}

#pagination-navi li:after {
    display: block;
    content: '';
    clear: both;
}

#slogan_cycle
{
	position:relative;
     width: 940px;
	height: 90px;
	left: 9%;
	right: 0%;
	overflow: hidden;
}
.slogan_slide
{
	width: 940px;
	height: 90px;
}

#pagination-navi .dot {
    display: block;
    float: right;
    width: 8px;
    height: 8px;
    margin-top: 10px;
    margin-left: 5px;
    background: #3d4148;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.2s;
    -moz-transition:    all 0.2s;
    -o-transition:      all 0.2s;
    transition:         all 0.2s;
}

#pagination-navi .name {
    display: inline-block;
    padding-top: 2px;
    padding-right: 30px;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition:    all 0.3s;
    -o-transition:      all 0.3s;
    transition:         all 0.3s;
}

#pagination-navi a {
    display: block;
    height: 22px;
    padding: 1px 2px;
    color: #3d4148;
    font-family: 'Vesper Libre', serif;
    text-transform: none;
    font-size: 0.85em;
    font-weight: 700;
}

#pagination-navi a.active .dot,
#pagination-navi a:hover .dot {
    width: 12px;
    height: 12px;
    margin-top: 7px;
    margin-right: -2px;
    background: none;
    border: 1px solid #fff;
}

#pagination-navi a.active .name,
#pagination-navi a:hover .name {
    padding-right: 3px;
    filter: alpha(opacity=100);
    opacity: 1;
}




/* --------------------------------------------------------------------- */
/* 4. WRAPPER
/* --------------------------------------------------------------------- */



section {
    position: relative;
    padding: 80px 0;
    background-image: url(../images/layout/paper.jpg);
    background-position: center top;
    background-repeat: repeat;
    
}

section.red {
    position: relative;
    padding: 80px 0;
    background-color:#ff5049;
    background-image: url(../images/layout/red.jpg);
    background-position: center top;
    background-repeat: repeat;
}
section.blue {
    position: relative;
    padding: 80px 0;
    background-color:#ff5049;
    background-image: url(../images/layout/blue.jpg);
    background-position: center top;
    background-repeat: repeat;
}
section.dark {
    position: relative;
    padding: 80px 0;
    background-color:#ff5049;
    background-image: url(../images/layout/dark.jpg);
    background-position: center top;
    background-repeat: repeat;
}
section.yellow {
    position: relative;
    padding: 80px 0;
    background-color:#ff5049;
    background-image: url(../images/layout/yellow.jpg);
    background-position: center top;
    background-repeat: repeat;
}
section.grey {
    position: relative;
    padding: 80px 0;
    background-color:#ff5049;
    background-image: url(../images/layout/grey.jpg);
    background-position: center top;
    background-repeat: repeat;
}
section.brown {
    position: relative;
    padding: 80px 0;
    background-color:#ff5049;
    background-image: url(../images/layout/brown.jpg);
    background-position: center top;
    background-repeat: repeat;
}
section.stand-alone {
    padding-top: 160px;
}

section.arrow:before {
    display: block;
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -10px;
    z-index: 10;
    border-width: 20px;
    border-style: solid;
    border-right-width: 0;
    border-color: #fff;
    border-bottom-color: transparent !important;
    border-top-color: transparent !important;
    border-right-color: transparent !important;
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -sand-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

section.parallax {
    position: static;
    z-index: 3;
    background-color: #f65168;
    background-position: center top;
    background-repeat: repeat;
    background-attachment: fixed;
    background-image: url(../images/layout/blue.jpg);
}

section.parallax2 {
    position: static;
    z-index: 3;
    background-color: #fff;
    background-position: center top;
    background-repeat: repeat;
    background-attachment: fixed;
    background-image: url(../images/layout/red.jpg);
}

.parallax3 {
    position: static;
    z-index: 3;
    background-color: #ea2e3f;
    background-position: center top;
    background-repeat: repeat;
    background-attachment: fixed;
    background-image: url(../images/layout/yellow.jpg); 
}

section.parallax4 {
    position: static;
    z-index: 3;
    background-color: #f65168;
    background-position: center top;
    background-repeat: repeat;
    background-attachment: fixed;
    background-image: url(../images/layout/dark.jpg);
}


#background {
    width: 100%; 
    height: 100%; 
    position: absolute; 
    left: 0px; 
    top: 0px; 
    z-index: 0;
}

.stretch {
    width:100%;
    height:100%;
}

.scroll-btn {
	
    position:relative;
    display: block;
    margin-top:2%;
    overflow:hidden;
	left:48.4%;
	-webkit-transition: all .35s ease-in-out;
	-moz-transition: all .35s ease-in-out;
	-ms-transition: all .35s ease-in-out;
	-o-transition: all .35s ease-in-out;
	transition: all .35s ease-in-out;
	width: 68px;
	height:93px;
	background:url('../images/layout/arrow.png') no-repeat center bottom;
	background-size:68px 93px;
	z-index: 3;
	opacity:.8;
} 
.scroll-btn {
    -webkit-animation: arrows 3.8s infinite;
    -webkit-animation-delay: 1s;
    animation: arrows 3.8s infinite;
    animation-delay: 1s;
}
  @keyframes arrows {
    0% { bottom:30px; }
    10% { bottom:40px; }
    20% { bottom:30px; }
    30% { bottom:40px; }
    40% { bottom:20px; }
    50% { bottom:40px; }
    60% { bottom:30px; }
    70% { bottom:40px; }
    80% { bottom:20px; }
    90% { bottom:40px; }
    100% { bottom:30px; }
  }
  @-webkit-keyframes arrows {
    0% { bottom:30px; }
    10% { bottom:40px; }
    20% { bottom:30px; }
    30% { bottom:40px; }
    40% { bottom:20px; }
    50% { bottom:40px; }
    60% { bottom:30px; }
    70% { bottom:40px; }
    80% { bottom:20px; }
    90% { bottom:40px; }
    100% { bottom:30px; }
  }
	
.scroll-to-contact{
	position: relative; 
	margin: 0 auto;
	width: 100%;
	overflow:hidden;
	background:#212121;
	z-index:2;
	padding-top:40px;
	padding-bottom:35px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
} 	
.scroll-to-contact p{
	text-align:center;
	color:#606060;
	text-transform:uppercase;
	letter-spacing:2px;
	font-weight:400;
	font-size: 12px;
	line-height:12px;
	margin:0 auto;
	width:120px;
	padding-bottom:7px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}  


.no-parallax {
    background-color:#000;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-image: url(../images/banner/intro.jpg);
  
}
.no-parallax.blood {
    
    
    background-image: url(../images/banner/blood.jpg);

}
.no-parallax.todd {
    
    color: #000;
    background-image: url(../images/banner/todd.jpg);

}
.no-parallax.art {
    
    color: #fff;
    background-image: url(../images/banner/art.jpg);

}
.no-parallax.about {
    
    color: #000;
    background-image: url(../images/banner/about.jpg);

}
.no-parallax.blog {
    
    color: #000;
    background-image: url(../images/banner/blog.jpg);

}
.no-parallax.contact {
    
    color: #000;
    background-image: url(../images/banner/contact.jpg);

}

.no-parallax.insta {
    
    color: #000;
    background-image: url(../images/banner/instagram.jpg);

}

.no-parallax.twitter {
    
    color: #000;
    background-image: url(../images/banner/twitter.jpg);

}

.no-parallax.work1 {
    
    color: #000;
    background-image: url(../images/work/work1.jpg);

}
.no-parallax.tv {
    
    color: #000;
    background-image: url(../images/banner/tv.jpg);

}
/* --------------------------------------------------------------------- */
/* 5. AJAX CONTENT
/* --------------------------------------------------------------------- */

#ajax-content {
    display: none;
}

#ajax-closer {
    position: fixed;
    top: 40px;
    left: 50px;
    z-index: 999;
}

#ajax-content .fluid-width-video-wrapper {
    margin-bottom: 60px;
}




/* --------------------------------------------------------------------- */
/* 6. BANNER
/* --------------------------------------------------------------------- */

.banner {
    padding: 0;
}

.banner-carousel .item {
    position: relative;
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.banner-content {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    margin-top: -90px;
    padding: 0 20px;
    text-align: center;
    color: #000;
    z-index: 4;
}

.banner-content h2 {
    font-size: 3em;
    line-height: 1.4;
    margin-bottom: 0;
}

.banner-content h4 {
    margin-bottom: 40px;
    font-size: 1.8em;
    line-height: 1.4;
}

#banner-video {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}





/* --------------------------------------------------------------------- */
/* 7. WORK
/* --------------------------------------------------------------------- */

#work {
    padding-bottom: 20px;
}



/* ============ 7.1 FILTER TABS ============  */

.filter-tabs {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.filter-tabs li {
    display: inline-block;
}

.filter-tabs li.active .button {
    -webkit-transform: rotateX(89deg);
    transform: rotateX(89deg);
}

.filter-tabs li.active .button .front {
    background: #3d4148;
}



/* ============ 7.2 WORK GRID ============  */

#work-grid li {
    display: none;
    position: relative;
    width: 33.33333%;
    float: left;
    overflow: hidden;
}

#work-grid:after {
    display: block;
    content: '';
    clear: both;
}

#work-grid a {
    display: block;
    position: relative;
}

#work-grid img {
    float: left;
    width: 102%;
    margin-left: -1%;
}

#work-grid a:after {
    display: block;
    content: '';
    clear: both;
}

#work-grid .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    filter: alpha(opacity=0);
    opacity: 0;
    z-index: 2;
    text-align: center;
    color: #000;
    -webkit-transition: all 0.4s;
    -moz-transition:    all 0.4s;
    -o-transition:      all 0.4s;
    transition:         all 0.4s;
}

#work-grid a:hover .layer {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}

#work-grid .text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -30px;
}

#work-grid .undertitle {
    text-transform: uppercase;
}



/* ============ 7.3 WORK DETAILS ============  */

.work-carousel {
    margin-bottom: 60px;
    font-size: 0.9em;
}




/* --------------------------------------------------------------------- */
/* 8. TEAM
/* --------------------------------------------------------------------- */


.social-iconstop {
    display: block;
    font-size: 0;
    }

.social-iconstop img {
    width: 64px;
    height: 65px;
    
    }

.social-icons {
    display: block;
    font-size: 0;
    }

.social-icons img {
    width: 64px;
    height: 65px;
    
    }

}
.team-member {
    position: relative;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 360px;
}

.team-member .img-container {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.team-member img {
    float: left;
    width: 100%;
    height: auto;
}

.team-member .img-container:after {
    display: block;
    content: '';
    clear: both;
}

.team-member .layer {
    position: absolute;
    top: -0.5%;
    left: -0.5%;
    width: 101%;
    height: 101%;
    background: rgba(0,0,0,0.95);
    filter: alpha(opacity=0);
    opacity: 0;
    z-index: 5;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.4s;
    -moz-transition:    all 0.4s;
    -o-transition:      all 0.4s;
    transition:         all 0.4s;
}

.team-member:hover .layer {
    filter: alpha(opacity=100);
    opacity: 1;
}

.team-member .text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -25px;
}

.team-member .undertitle {
    font-size: 0.9em;
    text-transform: uppercase;
}







/* --------------------------------------------------------------------- */
/* 11. FOOTER
/* --------------------------------------------------------------------- */

#page-footer {
    position: relative;
    padding: 80px 0;
    background-color:#ff5049;
    background-image: url(../images/layout/dark.jpg);
    background-position: center top;
    background-repeat: repeat;
}

}

#page-footer:before {
    display: block;
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -10px;
    z-index: 10;
    border-width: 20px;
    border-style: solid;
    border-right-width: 0;
    border-color: #3d4148;
    border-bottom-color: transparent !important;
    border-top-color: transparent !important;
    border-right-color: transparent !important;
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -sand-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

#page-footer .bottom-line {
    text-align: center;
    font-size: 0.9em;
}

