
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1);
    }
    50% {
        opacity: 0;
    }
}

.zoomIn {
    animation-name: zoomIn;
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -50%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    animation-name: slideInDown;
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 50%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    animation-name: slideInUp;
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-30%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}


.slideInLeft {
    animation-name: slideInLeft;
}

@keyframes slideInRight {
    from {
        transform: translate3d(30%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    animation-name: slideInRight;
}

@keyframes fadeIn {
    from {
        opacity: 0.9;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 20deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        transform: perspective(40px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInX;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -30%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeInLeft {
    10% {
        opacity: 0.0;
        transform: translate3d(-5%, 0, 0);
    }
    20% {
        opacity: 0.1;
    }
    30% {
        opacity: 0.2;
    }
    40% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    60% {
        opacity: 0.6;
    }
    70% {
        opacity: 0.7;
    }
    80% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        opacity: 1;
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}


html,
body {
    height: 100%;
}

body {
     font-family: 'HelveticaNeue-Light';
    font-size: 17px;
    color: #898989;
    line-height: 1.4em;
    margin: 0;
    padding: 0;
    background: #000;
    position: relative;
}

.main-con{
    position: relative;
    background: url(../images/icon-banner.png) center right no-repeat;
}

/*.main-con:before{
    background: url(../images/icon-banner.png) center right no-repeat;
    position: absolute;
    content: '';
    top: -72px;
    right: 18px;
    width: 230px;
    height: 274px;
}*/

body h1 {
     font-family: 'SlimSansSerif';
    font-size: 23px;
    line-height: .8em;
    color: #f8b23a;
   letter-spacing: 6px;
    padding: 0;
    display: block;
    margin-bottom: 1.8em;
    text-transform: uppercase;
}

.main-con:before {
    background: url(../images/icon-banner.png) center right no-repeat;
    position: absolute;
    content: '';
    top:-4em;
    right: 18px;
    width: 230px;
    height:273px;
}

.navbar-default {
    background-color: transparent;
    border: none;
}

.navbar {
    min-height: inherit;
    margin-bottom: 0;
}

.navbar-brand {
    height: auto;
}

.menu {
    margin-top: 0;
    float: right;
}

.nav>li>a {
     font-family: 'SlimSansSerif';
     color: #efefef !important;
    padding-left: 0;
    padding-right: 0;
}

.navbar-collapse {
    padding: 0;
}

.navbar-nav>li>a {
    font-size: 20px;
    position: relative;
    padding-bottom: 3px;
    z-index: 99;
    text-transform: uppercase;
}

.navbar-nav>li>a:hover{
        color: #f8b23a !important;
}

.navbar-nav>li.active>a{
        color: #f8b23a !important;
        background: none;
}

.navbar-default .navbar-nav > .active > a{
    background: none !important;

}



.navbar-nav>li>a span{
    position: relative;
    z-index: 99;
}

.nav>li {
    margin-left: 1.9em;
}

.navbar-nav>li>a:before {
    content: "";
    position: absolute;
    left: -60%;
    top: 62%;
    width: 80%;
    height: 2px;
    background-color: #f7b52d;
    border-radius: 3px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: -1;
    opacity: 0;
    display:none;
}

.navbar-nav>li>a:hover:before {
    left: -30%;
    opacity: 1;
}

.navbar-nav>li>a.active:after {
    opacity: 1;
    bottom: -5px;
}

.main__header{
        background-color: #000;
    text-align: right;
    position: fixed;
    top: 0px;
    display: block;
    width: 100%;
    z-index: 12;
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
    transition: all .25s;
}

 .navbar-brand img {
    margin-top: 10px;
}

.top-info li{
    display: inline-flex;
    margin-left: 1em;
}

.top-info li:last-child,
.top-info li:nth-child(4),
.top-info li:nth-child(3){
    margin-left: .1em;
}
.top-info li:last-child a:after,
.top-info li:nth-child(4) a:after,
.top-info li:nth-child(3) a:after{
    display: none;
}

.top-info li:last-child a i:hover,
.top-info li:nth-child(4) a i:hover,
.top-info li:nth-child(3) a i:hover{
    background: #f8b23a;
    color: #fff !important;
}


.top-info li a{
    font-size: 15px;
    color: #c0c0c0;
    font-family: 'HelveticaNeue-Light';
    margin-left: 8px;
}

.top-info li a i{
    font-size: 20px;
}

.top-info{
    margin-top: 36px;
}

.banner-vr{
    margin-top: 125px;
    height: 20vh;
   
}

.banner-vr .container{
    display: flex;
    height: 100%;
    align-items: center;
   
}

.banner-vr article h1{
    color: #efefef;
    font-size: 44px;
    font-family: 'SlimSansSerif';
    text-transform: uppercase;
    letter-spacing: normal;
    line-height: 1.2em;
    margin-bottom: 0;

    
}

.banner-vr article{
   
    
}

.mouse__scroll {
    position: absolute;
    width: 164px;
    height: 71px !important;
    bottom: 9%;
    left: 0;
    z-index: 1;
    text-align: center;
    right: 0;
    margin: 0 auto;
    -webkit-animation: bounce 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

@keyframes bounce {
    from {
        transform: translate(0px, 0px);
    }
    to {
        transform: translate(0px, 10px);
        animation-timing-function: ease-out;
    }
}


.mouse__scroll p {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: #fff;
    letter-spacing: 1px;
    font-size: .7em;
    text-transform: uppercase;
}

.mouse__scroll span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 19px;
    height: 34px;
    /* margin-left: -40px; */
    border: 1px solid #f8b23a;
    text-shadow: 2px 2px 0 rgba(162, 162, 162, 0.8);
    border-radius: 50px;
    box-sizing: border-box;
    background: transparent;
}

.arrow-bottom{
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.mouse__scroll span:before {
    position: absolute;
    top: 5px;
    left: 50%;
    content: '';
    width: 4px;
    height: 4px;
    margin-left: -3px;
    background-color: #f8b23a;
    border-radius: 100%;
    -webkit-animation: sdb10 2s infinite;
    animation: sdb10 2s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
    0% {
        -webkit-transform: translate(0, 0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        -webkit-transform: translate(0, 20px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes sdb10 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        transform: translate(0, 20px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

* {
    outline: none;
}
.common-wrapper {
    padding: 70px 0 0;
    text-align: center;
}

img{
    max-width: 100%;
}

#work figure a .overlay{
    position: absolute;
    background:rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
        -webkit-transition: all .25s;
    transition: all .25s;

}

#lightcase-overlay{
        background: #000;
}

#work figure a .overlay p{
    color: #fff;
     font-family: 'SlimSansSerif';
     font-size: 20px;
     margin-top: 2em;
       -webkit-transition: all .25s;
    transition: all .25s;
    text-transform: uppercase;
}

#work figure a:hover .overlay p{
   margin-top: 0;
}

#work figure a:hover .overlay{
    opacity: 1;
}

#work figure{
    position: relative;
}

#work figure a{
    position: relative;
    height: 100%;
    display: block;
}

#work .row>[class*='col-']{
    margin-top: 30px;
}

.inner-wrapper article{
    max-width: 774px;
    margin: auto;
}

.inner-wrapper article p{
    margin-bottom: 1.7em;
}

.no-gap{
    margin-bottom: 0 !important;
}

.wht-we-do-inner{
    background: url(../images/bg-2.png) top center no-repeat;
    margin-top:4em;
}

.inner-wrapper figure h2{
font-family: 'SlimSansSerif';
color: #efefef;
font-size: 30px;
text-transform: uppercase;
margin: 24px 0 36px;
}

#about .row>[class*='col-']:nth-of-type(1){
    padding-right: 4em;
}

#about .row>[class*='col-']:nth-of-type(2){
    padding-left: 5em;
}

#about .row>[class*='col-']:nth-of-type(1) figure:nth-of-type(2){
    margin-top: 5em;
}

#about .row>[class*='col-']:nth-of-type(2) figure:nth-of-type(2){
    margin-top: 5em;
}

#about .row>[class*='col-']:nth-of-type(2) figure:nth-of-type(1){
    margin-top: 11em;
}

.navbar-brand h1{
    margin-bottom: 0;
}

.scroll-top{
    position: absolute;
    left: 0;
    bottom: 0;
    cursor: pointer;
    display: block !important;
}

#contact .row{
    display:block;
    height: 100%;
}

#contact .row>[class*='col-']{
    border-right: 1px solid #262626;
    height: 88px;
}

#contact .row>[class*='col-']:nth-of-type(1){
    width: 20%;
}

#contact .row>[class*='col-']:nth-of-type(2){
    width: 30%;
    padding: 0 20px;
}

#contact .row>[class*='col-']:nth-of-type(4){
    border-right: 0;
}

#contact .row>[class*='col-'] figure{
    position: relative;
    height: 100%;
}

#contact .row>[class*='col-']:nth-of-type(1) figcaption{
    position: relative;
}

#contact .row>[class*='col-'] figcaption{
    font-size: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

#contact .row>[class*='col-'] figcaption a{
    color: #898989;
    display: inline-block;
}

#contact .row{
    margin-top: 4em;
}

footer{
    padding: 90px 0 22px;
}

footer p{
    color: #4b4b4b;
    font-size: 16px;
}

footer p a{
    color: #4b4b4b;
}

.main__header.top-transparent-nav.sticky .top-info{
    display: none;
}

.main__header.top-transparent-nav.sticky .navbar-brand img{
    margin-top: 0;
}

.main__header.top-transparent-nav.sticky .navbar-brand h1{
    margin-top: 0;
}

.main__header.top-transparent-nav.sticky .menu {
    margin-top: 26px;
    float: right;
}


a:hover{
    text-decoration: none;
}

.top-info a{
    position: relative;

}

.top-info a:hover{
    color:#f8b23a; 
}

.top-info a:after, #contact a:after{
        position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #f8b23a;
    transition: all .25s;
    content: '';
}

#contact a{
    position: relative;
    display:block;
    color: #898989;
    height: 100%;
}

#contact a:hover{
    color:#f8b23a !important; 
}

.top-info a:hover:after, #contact a:hover:after{
    width: 100%;
}

footer a:hover{
    color:#f8b23a
}

/* ANIMATED X */

.navbar-toggle.x .icon-bar:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 10% 10%;
    -ms-transform-origin: 10% 10%;
    transform-origin: 10% 10%;
    margin-left: 4px;
}

.navbar-toggle.x .icon-bar:nth-of-type(2) {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggle.x .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 10% 90%;
    -ms-transform-origin: 10% 90%;
    transform-origin: 10% 90%;
    margin-left: 4px;
}



/* ANIMATED X COLLAPSED */

.navbar-toggle.x.collapsed .icon-bar:nth-of-type(1) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    margin-left: 0;
}

.navbar-toggle.x.collapsed .icon-bar:nth-of-type(2) {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggle.x.collapsed .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    margin-left: 0;
}

html:not([data-lc-type=error]) #lightcase-content{
    background: transparent;
    box-shadow: none;
}

.logo-icon{
    position: absolute;
    left: 15px;
    top: 16px;
    opacity: 0;
}

.main__header.top-transparent-nav.sticky .logo-icon{
    opacity: 1;
}

.main__header.top-transparent-nav.sticky .logo{
    opacity: 0;
}

.navbar-brand{
    position: relative;
}

.main__header.top-transparent-nav.sticky .navbar-default{
    background:rgba(0, 0, 0, 0.9);
}

#work.common-wrapper{
    padding: 0 0;
}

.navbar-nav>li:nth-child(5),
.navbar-nav>li:nth-child(6),
.navbar-nav>li:nth-child(7){
    display: none;
        float: left;
}

#contact i{
    font-size: 29px;
}

i{
    color: #000 !important;
    -webkit-transition: all .25s;
    transition: all .25s;
}

header i{
color: #fff !important;
    width: 30px;
    height: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 19px !important;
}

.top-info a i:hover{
    color: #f8b23a !important;
}

#contact i{
color: #fff !important;
    width: 36px;
    height: 36px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px !important;
    margin-bottom: 1em;
}