


/*----font awesome----*/
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);

/*Fonts*/
@import url('https://fonts.googleapis.com/css?family=Titillium+Web');
@font-face {
    font-family: Klavika;
    src: url(../fonts/Klavika%20Regular%20Plain.otf);
}
@font-face {
    font-family: Motion;
    src: url(../fonts/motion-control-bolditalic.otf) format('otf');
}


*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html{
    font-family: 'Motion', 'Klavika', 'Titillium Web', open-sans, Helvetica, Arial, sans-serif;
}

body{
    //background: rgba(8,5,17,.95);
    //background: #080b0c;
    color: #fff;
    overflow-x: hidden;
}

body.fs-nav-toggled{
    overflow: hidden;
}

div, section, header, footer, main, a, img{
    display: block;
}

h1, h2, h3, h4{
    text-transform: uppercase;
}

h2{
    font-weight: 700;
    font-size: 3.5em;
}

h3{
    font-weight: 600;
    font-size: 2.2em;
}

h4{
    font-weight: 500;
    font-size: 1.75em;
}

img{
    width: 100%;
    height: 100%;
}

a{
    outline: none;
    text-decoration: none;
    cursor: pointer;
}

a:link, a:visited, a:hover, a:active{
    text-decoration: none;
}

ul, li{
    list-style-type: none;
    list-style: none;
}

li a:active{
    color: #eee;
}

section, footer{
    position: relative;
}

br{
    display: block;
    content: "";
    margin: 1em 0;
    line-height: 1em;
}

/*slide in*/
.unviewed{
    /*transform: translate(100%, 0%) 
               matrix(1, 0, 0, 1, 0, 0);*/
    opacity: 0.75;
    /*transition: all .3s  ease-in-out;*/
}

.viewed{
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    /*transition: all .3s  ease-in-out;*/
}

.slide-in-right{
    transform: matrix(1, 0, 0, 1, 200, 0);
    opacity: .5;
    transition: all .3s  ease-in-out;
}

.slide-in-left{
    transform: matrix(1, 0, 0, 1, -200, 0);
    opacity: .5;
    transition: all .3s  ease-in-out;
}

.slide-in-bot{
    transform: matrix(1, 0, 0, 1, 0, 200);
    opacity: 1;
    transition: all .3s  ease-in-out;
}

.slide-in-right.viewed, .slide-in-left.viewed, .slide-in-bot.viewed{
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    transition: all .3s  ease-in-out;
}

/*----jarallax----*/
.jarallax {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    min-height: 600px;
}

.jarallax-bg{
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
}

/*slimscroll*/
.slimscroll{
    overflow: hidden;
    position: relative;
}


/*----body section----*/
.container{
    width: auto;
    padding: 0;
}

.main-section>.container{
    padding: 2em 0;
    /*border-bottom: 15px solid #aaa;*/
}

.full-size-container{
    width: 100%;
    height: 100%;
}

.row{
    display: block;
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.wrapper{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.max-width-wrapper{
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.clearflex:after,.clearflex:before{
    content:" ";
    display:table;
    -ms-flex-preferred-size:0;
    flex-basis:0;
    -webkit-box-ordinal-group:2;
    -ms-flex-order:1;
    order:1
}

.clearflex:after{
    clear:both;
}

/*section content*/

.section-title{
    
}

.section-title h2{
    font-weight: 700;
    font-size: 3.5em;
    text-align: center;
    margin-bottom: 0.5em;
}

.section-title p{
    text-align: left;
}

.section-art{
    position: absolute;
    float: none;
}

.section-art img{
    width: 100%;
    height: 100%;
}

/*align*/
.v-align-container{
    width: 100%;
    height: 100%;
    display: table;
    z-index: 1;
    position: relative;
}

.v-align{
    display: table-cell;
    vertical-align: middle;
}

/*col*/

.col-h{
    width: 100%;
    float: left;
}

.col-h-0{
    width: 100%;
}

.col-left{
    float: left;
}

.table-grid{
    display: table-cell;
    vertical-align: middle;
}

/*gap*/
.gap-10{
    height: 10px;
}

.gap-20{
    height: 20px;
}

.gap-30{
    height: 30px;
}

.gap-40{
    height: 40px;
}

.gap-60{
    height: 60px;
}

.gap-80{
    height: 80px;
}

/*divider*/
.divider{
    border-bottom: 1px solid #acacac;
    margin: 15px 0;
}

/*font*/
.fa{
    display: inline;
}


/*buttons*/
.btn{
    display: inline-block;
    position: relative;
    padding: 15px 30px;
    font-size: 0.975em;
    font-weight: 600;
    line-height: 1;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
    white-space: nowrap;
    -webkit-user-select: none;
            user-select: none;
}

.btn-border:before{
    content: '';
    display: block;
    position: absolute;
    border: 1px double;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
}

.btn-white{
    background-color: rgba(250,250,250,.9);
    color: #080b0c;
}

.btn-black{
    background-color: rgba(5,5,5,.9);
    color: #fefefe;
}

.btn-white:before{
    border-color: #080b0c;
}

.btn-black:before{
    border-color: #fefefe;
}

/*shadows*/
.inner-shadow-black{
    box-shadow: inset 1px 8px 10px -6px #080b0c;
}


/*----Loading----*/
body.loading{
    overflow: hidden;
}

.loading-screen{
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    transform: translateY(-100%);
    transition: all .8s ease-out;
    z-index: 999999;
}

.loading-screen.active{
    display: block;
    opacity: 1;
    transform: translateY(0);
}


div.loading{
    position:absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border-width: 5px;
    border-style: solid;
    border-color: #fff #fff rgba(255,255,255,.5) rgba(255,255,255,.5);
    opacity: .75;
    border-radius: 50%;
    -webkit-animation: loading 1s linear infinite;
            animation: loading 1s linear infinite;
}






/*----header----*/
.header{
    
}

.kerberos-header{
    position: fixed;
    width: 100%;
    z-index: 99;
}

.header .container{
    position: absolute;
    height: 48px;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.dropdown, .mobile-nav{
    position: absolute;
    right: 30px;
    top: 0;
    text-align: right;
}

.dropdown{
    display: none;
}

.header-btn{
    position: relative;
    font-size: 2em;
    line-height: 48px;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.dropdown-menu{
    position: absolute;
    top: 100px;
    right: 0;
    z-index: 1;
}

.dropdown-menu-item{
    display: block;
    opacity: 0;
    visibility: hidden;
    position: relative;
    right: 0;
    top: 100px;
    animation-fill-mode: forwards;
}

.dropdown-toggled .dropdown-menu-item, .full-screen-nav.toggled .full-screen-menu-item:not(:nth-child(1)){
    opacity: 0;
    visibility: visible;
    animation: dropdown .75s;
    -webkit-animation-fill-mode:forwards;2
       -moz-animation-fill-mode:forwards;
         -o-animation-fill-mode:forwards;
        -ms-animation-fill-mode:forwards;
            animation-fill-mode:forwards;
}

.dropdown-menu-item a{
    font-size: 2em;
    font-weight: 800;
    line-height: 48px;
    color: #fff;
    text-shadow: 1px 6px 6px rgba(6,6,6,.75);
}



.dropdown-menu-item a:hover{
    /*border-right: .2em solid #D92B4C;*/
    padding-right: .5em;
}

.header .dropdown-menu-item a:after{
    content: "";
    display: block;
    position: absolute;
    width: .2em;
    height: 48px;
    background: #D92B4C;
    opacity: 0;
    right: 0;
    top: 8px;
    transition: opacity .05s;
}

.sticky-header{
    height: 100%;
    width: 100%;
    position: relative;
    transform: matrix(1, 0, 0, 1, 0, 0);
    transition: transform .2s;
    max-width: 992px;
    margin: 0 auto;
}

.header.header-scrolled .container{
    top: 0px;
    width: 100%;
    background: rgba(8,5,17,.95);
}

.header.header-scrolled .container:after{
    content: "";
    display: block;
    width: auto;
    height: 10%;
    background-image: url(../images/border-header.png);
    background-position: bottom;
    background-size: auto 100%;
    background-repeat: repeat-x;
}

.header.header-scrolled .dropdown{
    display: none;
}

.header.header-scrolled .sticky-header{
    display: block;
    transform: matrix(1, 0, 0, 1, 0, 0);
    transition: transform .2s;
}

.header .kerberos-logo{
    display: inline-block;
    height: 100%;
}

.kerberos-logo img, .full-screen-menu-logo a img{
    height: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.nav{
    display: inline-block;
    position: relative;
    top: 0;
    height: 100%;
    padding: 0 20px;
    vertical-align: top;
}

.nav.header{
    display: none;
    font-size: 1.2em;
}

.menu li, .menu-item{
    display: inline-block;
    height: 100%;
    text-align: center;
}

.header .menu-item{
    width: 6.66666em;
}

.menu-item a{
    display: inline-block;
    height: 100%;
    line-height: 48px;
    vertical-align: middle;
    padding: 0 15px;
    color: #fff;
    font-weight: 700;
    align-items: center;
    text-align: center;
    position: relative;
    white-space: nowrap;
    justify-content: center;
    margin: 0 auto;
}

.header .menu-item a:after{
    content: "";
    display: block;
    position: absolute;
    width: 75%;
    height: .2em;
    background: #D92B4C;
    opacity: 0;
    bottom: 1em;
    margin: auto;
    left: 0;
    right: 0;
    transition: opacity .2s;
}

.header .menu-item a:hover:after, .dropdown-menu-item a:hover:after{
    opacity: .85;
}


.mobile-nav{
    font-size: 2em;
    color: #fff;
    line-height: 48px;
    position: absolute;
    display: block;
    padding: inherit;
    right: 0;
    top: 0;
    cursor: pointer;
}

.full-screen-nav{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    overflow: hidden;
    text-align: center;
    align-items: center;
    z-index: 999;
    display: none;
    -webkit-animation-name: fs-menu-out;
    -webkit-animation-duration: .2s;
    -webkit-animation-fill-mode: forwards;
    animation: fs-menu-out .2s forwards;
}

.full-screen-nav.toggled{
    -webkit-animation-name: fs-menu-in;
    -webkit-animation-duration: .2s;
    -webkit-animation-fill-mode: forwards;
    animation: fs-menu-in .2s forwards;
}

.full-screen-nav.displayed{
    display: block;
}

.full-screen-nav .container{
    background: #080b0c !important;
    height: 100% !important;
    width: 100% !important;
    display: table;
    
}

.full-screen-menu{
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

.full-screen-menu-item:not(:nth-child(1)){
    opacity: 0;
    visibility: hidden;
    position: relative;
    top: -100px;
}

.full-screen-menu-item a{
    font-size: 2.2em;
    line-height: 60px;
    color: #fff;
    margin-bottom: 0.6666em;
}

.full-screen-menu-item a:hover:after{
    content: "";
    display: block;
    position: absolute;
    height: .1em;
    width: 66.66666%;
    max-width: 128px;
    margin: auto;
    left: 0;
    right: 0;
    bottom: .2em;
    background: #d92b4c;
}

.full-screen-menu-logo a:after{
    display: none !important;
}

 .full-screen-menu-item .fa{
    font-size: 1em;
    line-height: 60px;
    margin-left: -10px;
    margin-right: 10px;
    position: relative;
    top: 3px;
}

.full-screen-menu-logo{
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
}

.full-screen-menu-logo a{
    height: 150px;
}

.close-btn{
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.close-btn span{
    display: block;
    width: 40px;
    height: 5px;
    background: #fff;
    border-radius: 3px;
    margin-top: -5px;
}

.close-btn span:nth-child(1){
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.close-btn span:nth-child(2){
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}


/*Home*/
.home-view{
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/sky3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: .4;
    z-index: 0;
}

.noise{
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/noise.png);
    background-repeat: repeat;
    opacity: .3;
    z-index: 1;
}

.home-view:after, .fs-game:after, .fs-game:before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 20%;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #191a1a 100%);
    pointer-events: none;
}

.home .jarallax{
    background-position: 50% 100%;
}

.home-logo img{
    height: 33%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}


/*news*/
.latest_news{
    position: absolute;
    bottom: 80px;
    text-align: center;
    width: 100%;
    z-index: 2;
    display: none;
}

.latest_news span{
    display: block;
    line-height: 40px;
    height: 40px;
    font-size: 0.75em;
}

.news_container{
    line-height: 40px;
    margin: 0 auto;
    height: 40px;
    overflow: hidden;
}

.latest_news span, .news_title{
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}






/*----Games----*/

/*
.games .row{
    overflow: hidden;
}

.games .row .jarallax-bg{
    opacity: .4;
}

.games p{
    text-align: center;
}

.games-list{
    height: 275px;
    width: 90%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.game-li{
    display: inline-block;
    height: 100%;
    width: 33.333333%;
    overflow: hidden;
    transform: skew(-10deg);
    cursor: pointer;
    margin-left: -3px;
}

.game-img{
    height: 100%;
    width: auto;
    min-width: 140%;;
    margin-left: -10%;
    position: relative;
    transform: skew(10deg);
    background-image: url(https://images.indiegogo.com/file_attachments/656450/files/20140617173403-2__ginormasaurus_goldDLC.png?1403051643);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.game-img img{
    height: 100%;
    width: auto;
    min-width: 120%;;
    display: block;
    position: absolute;
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    margin: auto;
}

.game-name{
    line-height: 3.5;
    background: linear-gradient(to bottom, rgba(10,10,10,1) 0%,rgba(38,38,38,0.95) 100%);
    color: #eee;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 0;
    font-size: 1.5em;
    
}

.game-name span{
    display: inline-block;
    transform: skew(10deg);
}

.game-li:hover .game-info{
    display: block;
    visibility: visible;
}

.game-info{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: none;
    visibility: hidden;
}

.game-info .lightbox{
    position: absolute;
    height: 100%;
    width: 100%;
    background: #111;
    opacity: 0.95;
    z-index: 1;
}

.game-info-container{
    position: absolute;
    margin: 0 auto;
    margin-top: 5em;
    left: 0;
    right: 0;
    z-index: 2;
}

.game-icon{
    width: 110px;
    height: 120px;
    margin: 1.5em auto;
    left: -5px;
}

.game-icon img{
    width: 100%;
    height: 100%;
    transform: skew(10deg);
}

.game-info-btn .btn{
    display: block;
    margin: 15px auto;
    width: 100%;
    text-align: center;
    line-height: 25px;
    white-space: nowrap;
    vertical-align: middle;
    padding: 10px 16px;
    font-size: 18px;
    background-color: #337ab7;
}

*/
#games{
    background: #080b0c;
    color: #fff;
}

#games>.container{
    padding: 0;
}

.games p{
    text-align: center;
}

.game-item, .game-content, .game-info{
    position: relative;
}

.game-content{
    height: 192px;
    background-image: none;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% auto;
    background-repeat: no-repeat;
    opacity: .8;
}

.game-content:after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(8,3,37,0) 50%,#080b0c 90%);
}

.kaiju-a-gogo>.game-content{
    background-image: url(../images/kaiju-mobile.jpg);
}

.sots-the-pit>.game-content{
    background-image: url(../images/sots_the_pit_467x181.jpg);
}

.game-info h4{
    display: inline-block;
    padding: 5px;
    font-size: 1em;
    line-height: 45px;
    font-weight: 700;
    vertical-align: middle;
    float: left;
}

.game-links{
    display: inline-block;
    padding: 5px;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    right: 0;
    text-transform: uppercase;
    margin: 0 auto; 
    bottom: 7vh; 
    width: 100%;
}

.game-btn{
    position: relative;
    display: inline-block;
    /*display: block;*/
    padding: 15px 80px;
    border-radius: 0;
    background: #191a1a;
    font-size: 1.66666em;
    border: 2px solid #ddd;
    -webkit-transform: skew(-18deg);
    transform: skew(-18deg);
    transition: all .3s;
    /*background: url(http://nxcache.nexon.net/lawbreakers/v5/assets/img/gradiants/btn-dark.png) repeat-x left top/auto 100%;*/
}

.game-btn-text{
    color: #fff;
}

.game-btn:hover{
    background: #ddd;
    border: 2px solid #191a1a;
    box-shadow: 0px 0px 6px rgba(255,255,255,.75);
}

.game-btn:hover .game-btn-text{
    color: #191a1a;
    text-shadow: none;
}

.game-btn-text{
    position: relative;
    display: block;
    -webkit-transform: skew(18deg);
    transform: skew(18deg);
    text-shadow: 0px 0px 6px rgba(255,255,255,.75);
}

.visit-site{
    font-size: 1.1em;
    color: #fff;
}

.visit-site:hover{
    text-shadow: 0px 0px 6px rgba(255,255,255,.75);
}


.fs-game{
    background-image: url(../images/pit_bigsplash.jpg);
    background-size: cover;
    background-position: 50% bottom;
    min-height: 600px;
    max-width: none;
}

.fs-game:before{
    top: 0;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, #080b0c 95%);
}

.fs-game:after{
    height: 40%;
}

.fs-game .col-h{
    height: 100%; 
    width: 40%; 
    max-width:768px; 
    float:none; 
    margin: 0 auto; 
    position: relative; 
    z-index: 2;
}

.game-container{
    text-align:center; 
    position: relative; 
    margin: 0 auto; 
    height: 100%;
}

.game-logo{
    max-width: 90%; 
    position: relative; 
    margin: 0 auto; 
    top: 7vh;
}

.trailer{
    width: 66.66666%;
    max-width: 480px;
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid #fff;
}

.video-thumbnail{
    background: #080b0c;
    text-align: center;
}

.video-thumbnail .container{
    position: relative;
}

.video-thumbnail img{
    width: 100%;
    opacity: 0.4;
}

.video-thumbnail .container:after{
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../images/play-btn.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 75px;
    height: 75px;
}

.play-btn{
    margin: auto;
    position: absolute;
}

.play-btn img{
    position: absolute;
    width: 50px;
    height: 50px;
}


/*Game Nav*/
.game-nav{
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
}

.game-menu{
    
}

.game-menu-item{
    display: block;
    position: relative;
    margin: 15px 0;
    background: #D92B4C;
    text-align: center;
    border-radius: 7px 0 0 7px;
    overflow: hidden;
    left: calc(100% - 48px);
    transition: .3s;
}

.game-menu-icon, .game-menu-title{
    display: inline-block;
    position: relative;
    left: 0;
    vertical-align: middle;
    pointer-events: none;
}

.game-menu-icon{
    filter: grayscale(.2);
    background: #c11717;
}

.game-menu-icon img{
    height: 48px;
    width: 48px;
}

.game-menu-title{
    color: #fff;
    font-size: 1.2em;
    padding: 5px 20px;
}

.game-menu-item:hover{
    left: 0;
}

/*Game Carousel*/
.game-carousel{
    position: relative!important;
    top: -2vh;
    z-index: 10;
}

.game-carousel:before, .game-carousel:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 10%;
    max-width: 70px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.game-carousel:before{
    left: 0;
    background-image: linear-gradient(to right, #080b0c 0, rgba(255, 255, 255, 0) 100%);
}

.game-carousel:after{
    right: 0;
   background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #080b0c 100%); 
}

.game-carousel-item:hover .carousel-img{
    opacity: .9;
}

.skew-img{
    overflow: hidden;
    background: #080b0c;
    -webkit-transform: skew(-10deg);
            transform: skew(-10deg);
}

.carousel-img{
    opacity: .6;
    -webkit-transform: skew(10deg) scale(1.11);
            transform: skew(10deg) scale(1.11);
}

.carousel-item-text{
    position: relative;
    text-align: center;
    padding: 1vh 0;
}

.carousel-item-text span{
    font-size: 1.2em;
    text-transform: uppercase;
}



/*----about----*/
#about>.container{
    padding-bottom: 0;
}

.about .section-content{
    overflow: hidden;
}

.about .section-content .container{
    height: 100%;
}

.about .jarallax-bg{
    margin-top: -50px;
}

/*.about .section-art{
    margin-top: -50px;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
    z-index: -1;
    /*background-image: url(http://illum.coppcommunicatio1.netdna-cdn.com/wp-content/uploads/2013/12/about-img.jpg);
}*/

.about .section-art img{
    height: 100%;
    width: auto;
    min-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    filter: brightness(0.2);
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
}

.about .wrapper{
    max-width: 992px;
}

.about p{
    font-size: 1em;
    letter-spacing: 2px;
    line-height: 1.5em;
    color: #080b0c;
}

/*img-carousel*/
.game-carousel, .img-gallery{
    background: #080b0c;
}

.img-gallery{
    padding-left: 10px;
}

.kerberos-imgs{
    cursor: zoom-in;
}

.kerberos-imgs img{
    height: 100%;
    width: auto;
    opacity: .8;
    
}

.kerberos-imgs:hover .image{
    opacity: 1;
}



/*----jobs----*/
.careers.container{
    /*border-bottom: 15px solid #aaa;*/
    padding: 0;
    overflow: hidden;
}

.careers.row{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.careers .parallax-bg{
    margin-top: -40px;
}

.careers .section-art{
    /*max-height: 500px;
    max-width: 400px;*/
    height: calc(100% + 50px);
    width: auto !important;
    float: left;
    bottom: 0;
    position: absolute;
    display: none;
}

.careers .section-title h2{
    margin-top: 1em;
}

.careers .content{
    font-size: 1.1em;
    letter-spacing: 2px;
    line-height: 1.5em;
    padding: 0 15px;
}

.row.careers .section-title{
    color: #fff;
    padding: 0 5px 30px 5px;
    text-shadow: 0px 0px 6px rgba(0,0,0,.9);
}


/*opening*/

.openings.container{
    padding: 0;
}

.openings .row{
    min-height: 738px;
}

.openings.row{
    min-height: 100vh;
    width: 100% !important;
}

/*.openings .col-h-0{
    height: 100%;
}*/

.openings-art{
    background-image: url(../images/08_engineer_calm.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: auto 100%;
    position: absolute;
    pointer-events: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;;
    opacity: .7;
}

.openings-art-mobile{
    background-image: url(../images/08_engineer_calm.png);
    background-repeat: no-repeat;
    background-position: 50% bottom;
    background-size: auto 100%;
    position: absolute;
    pointer-events: none;
    top: 30px;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    opacity: .6;
}

.openings .col-h{
    position: relative;
    z-index: 3;
}

.openings .col-right{
    background: rgba(0,0,0,.3);
}

.openings .col-left .section-title{
    top: 33.333333333%;
    position: relative;
    font-size: 1.5em;
    text-shadow: 2px 6px 6px rgba(6,6,6,.6);
}

.openings .section-art{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.opening-content{
    height: 100%;
    padding: 80px 0;
}

.opening-content h3, .opening-content p{
    text-align: center;
    padding: 0 40px;
}

.opening-content p{
    text-align: justify;
}

.opening-content h3{
    font-weight: 600;
    font-size: 2.2em;
    text-transform: uppercase;
    margin: 25px 0;
}

.opening-content p{
    font-weight: 400;
    font-size: 1.1em;
}

.opening-list{
    width: 100%;
    display: table;
}

/*job grid*/
.job-grid{
    width: 100%;
    padding: 0;
    white-space: normal;
    color: #fff;
    display: table-row;
    line-height: 1.5em;
}

.job-grid:hover{
    background-color: hsla(0,0%,100%,.05);
}

.job-cell{
    display: table-cell;
}

.job-grid li, .job-grid h4{
    font-size: 1.5em;
}

.job-grid h4{
    text-transform: none;
}

.job-grid li{
    vertical-align: middle;
}

.job-grid li:before{
    vertical-align: top;
    line-height: 1em;
    padding: 0 15px;
    box-sizing: border-box;
}

.job-title{
    padding: 20px 30px 20px 0;
    white-space: normal;
}

/*
.job-info:after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #111;
}

.job-grid.job-1>.job-info:before{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #111;
} 
*/

.job-detail{
    white-space: nowrap;
    line-height: 1em;
    vertical-align: middle;
    padding-right: 15px;
    float: right;
}





/*community*/
.main-section.community, #community, #about{
    background: #dfdfdf;
    color: #080b0c;
    box-shadow: inset 1px 8px 10px -6px #080b0c;
}

.community .section-content{
    padding: 20px 0;
    max-width: 575px;
    margin-bottom: 50px;
}

.community .btn{
    transition: all .2s;
}

.community .btn:hover{
    transform: matrix(1,0,0,1,0,-5);
}

.community .social{
    display: block;
}

.community .social h4{
    font-size: 1.5em;
}

.community .social li a{
    color: #080b0c;
    font-size: 1.5em;
    line-height: normal;
}




.footer .container, .community .container{
    width: 100%;
    padding: 30px;
    text-align: center;
}

.community .container{
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 50% 50%;
}


/*----footer----*/
footer{
    background: #000;
}

.border{
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 100%;
    left: 0;
    max-height: 75px;
}

/*footer:before{
    content: '';
    display: block;
    position: relative;
    background-image: url(../images/border-03.png);
    background-position: center;
    width: 100%;
    height: 50px; 
    top: -50px;
}*/

.footer-section{
    padding: 0;
}

.footer .nav{
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.footer .col-right{
    float: none;
}

.footer .nav.social h4{
    font-size: 1.2em;
    text-align: center;
}

.footer .menu li a{
    line-height: normal;
    padding: 0 5px;
}

.nav.footer-section{
    margin-bottom: 35px;
}

.footer .kerberos-logo{
    display: inline-block;
}

.footer .kerberos-logo{
    display: inline-block;
    height: 175px;
    width: 175px;
}

.footer .kerberos-logo img{
    height: 100%;
}

.footer .contact{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    float: none !important;
    margin: -10px;
}

.contact-info{
    display: inline-block;
    padding: 0 20px;
}

.contact-info h4, .contact-info span{
    display: block;
    color: #ccc;
}

.contact-info h4{
    line-height: 1.2em;
}

.contact-info span{
    font-size: 0.875em;
}

.copyright{
    color: #aaa;
    font-size: 0.75em;
    padding-top: 30px;
}












