html,body {
    background: #1a1f27;

    margin:0;
    padding:0;
    color: #fff;
    -webkit-text-size-adjust: 100%;
}
body {
    font-size: 16px;
    height: 100%;
}
a {
    text-decoration: none;
    color: #8fc725;
}
a:hover {
    color: #156717;
}
a,a:before,a:after, a *,
button, button:before, button:after
{
    transition: all ease-out 0.4s;
    -webkit-transition: all ease-out 0.4s;
}
*:active, *:focus, *:focus::after {
    outline: none;
}
img {
    max-width: 100%;
}
.slick-slide img {
    display: inline-block;
}
p {
    margin-bottom: 1em;
}
body, input, textarea, button {
    font-family: 'Oswald', sans-serif;
}

.container {
    padding: 0 10px;
}

header {
    position: absolute;
    
    width: 100%;
    top: 32px;
    left: 0;
}
header .container {
    text-align: center;
    position: relative;
}
.logo {
    height: 48px;
    display: block;
    margin: 0 auto;
}
.logo svg {
    height: 100%;
    width: auto;
}
#header-right {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2000;
}
#header-right a {
    display: inline-block;
}
#header-right a {
    height: 32px;
    margin: 0 10px;
}
#header-right a svg {
    width: auto;
    height: 100%;
}
#header-right a:hover svg * {
    fill: #202020;
}
#header-right-sep {
    display: inline-block;
    width: 1px;
    height: 32px;
    position: relative;
}
#header-right-sep:before {
    content: "";
    left: 0;
    top: -5px;
    bottom: -5px;
    display: block;
    background: #565656;
    position: absolute;
    width: 100%;
}

#intro-logo {
    width: 400px;
    height: 480px;
}
#intro-logo > svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

#wrapper {
    height: 100%;
    position: relative;
    width: 100%;
    overflow: hidden;
}
#bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg.jpg') repeat 0 center;
    background-size: cover;
    
    animation: bg-marquee 1000s infinite linear;
}
@keyframes bg-marquee {
    0% {
      background-position: 0 center;
    }
  
    100% {
      background-position: 1000% center;
    }
  }



#square {
   position: absolute;
   top: 18%;
   bottom: 35%;
   left: 0;
   width: 100%;
   text-align: center;
}
#square::before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: bottom;
}
#square svg {
    height: 100%;
    max-height: 654px;
    width: auto;
    vertical-align: bottom
}

#bg-overlay {
    background: #1a1f27;
    border-top: 5px solid #1a1f27;
    position: absolute;
    left: 0;
    height: 27%;
    width: 100%;
    bottom: 0;
}
#bg-imgs {
    position: absolute;
    left: 0;
    bottom: 27%;
    width: 100%;
    top: 0;
    
}
.bg-img {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 15480px;
    max-height: 479px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;

    width: 500%;
    height: 100%;

}
#bg-img1 {
    background-image: url('../images/bg/1.png');
}
#bg-img2 {
    background-image: url('../images/bg/2.png');
}
#bg-img3 {
    background-image: url('../images/bg/3.png');
}


#sections {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
}
.section {
    display: none;
    width: 100%;
    height: 100%;
}




.page-index-itemslist {
    text-align: center;
    
}
.page-index-itemslist-header {
    position: absolute;
    top: 18%;
    bottom: 40%;
    left: 0;
    width: 100%;
}
.page-index-itemslist-header::before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.page-index-itemslist-headers {
    vertical-align: middle;
    display: inline-block;
}
.page-index-itemslist h1 {
    font-size: 180px;
    font-size: 5vw;
    line-height: 5vw;
    color: #1a1f27;
    text-transform: uppercase;
}
.page-index-itemslist h2 {
    font-size: 80px;
    font-size: 3vw;
    line-height: 3vw;
    color: #1a1f27;
    text-transform: uppercase;
}
.page-index-itemslist-items-wrap {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 10%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    overflow: hidden;
}
.page-index-itemslist-items {
    height: 136px;
    display: block;
}
.page-index-itemslist-item {
    display: block;
    opacity: 0.3;
}
.page-index-itemslist-item img {
    
    transition: filter 0.4s;
    filter: grayscale(100%);
}
.page-index-itemslist-item:hover img {
    filter: grayscale(0%);
    
}
.page-index-itemslist-item:hover {
    opacity: 1.0;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 1000;
    font-size: 0;
    background: transparent;
    width: 24px;
    height: 24px;
    border: 0;
    cursor: pointer;
}
.slick-arrow.slick-prev {
    left: 0;
}
.slick-arrow.slick-next {
    right: 0;
}
.slick-arrow:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    box-sizing: border-box;
}
.slick-arrow.slick-prev:before {
    border-left: 6px solid #b2bbcb;
    border-bottom: 6px solid #b2bbcb;
    transform: rotate(45deg);
}

.slick-arrow.slick-next:before {
    border-right: 6px solid #b2bbcb;
    border-bottom: 6px solid #b2bbcb;
    transform: rotate(-45deg);
}
.slick-arrow:hover:before {
    border-color: #b2bbcb;
}







#main-nav {
    position: fixed;
    background: rgba(26,31,39,0.95);
    top:0;
    left: 0;
    width: 100%;
    height: 100%;

    transform: translateY(-100%);
    transition: transform 0.4s ease-out;
    
    overflow: auto;
    z-index: 3000;
}
#main-nav > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100%;
    text-align: left
}

.nav-open #main-nav {
    transform: translateY(0);
}

#main-nav-left {
    flex: 1 30%;
}
#main-nav-right {
    flex: 1 30%;
    text-align: right;
}
#main-nav-square {
    flex: 1 40%;
}
#main-nav-square svg {
    height: 100%;
    max-height: 400px;
    width: 100%;
    max-width: 100%;
    vertical-align: bottom;
}
#main-nav-square svg {
    opacity: 0;
    transition: all 0.4s;
}
#main-nav-square svg * {
    transition: all 0.4s;
    fill: #969da7;
}
#main-nav-left ul {
    list-style: none;
    margin: 0;
    padding: 0;
    
}
#main-nav-left ul li a {
    color: #fafafa;
    padding-left: 20px;
    display: inline-block;
    position: relative;
    font-weight: bold;
    margin-bottom: 20px;
}
#main-nav-left ul li a:hover {
    color: #969da7;
}
#main-nav-left ul li a span.nav-big {
    line-height: 44px;
    font-size: 44px;
    text-transform: uppercase;
}
#main-nav-left ul li a span.nav-small {
    display: block;
    font-size: 24px;
    line-height: 24px;
}
#main-nav-left ul li a i {
    width: 12px;
    height: 12px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -6px;
}

#main-nav-right-logos {
    width: 242px;
    display: inline-block;
}
#main-nav-right svg * {
    fill: #fff;
}
#main-nav-right-logo {
    width: 118px;
    margin: 0 auto;
}
#main-nav-right-logo svg {
    width: 100%;
    height: auto;
}
#main-nav-right-logo-spike {
    width: 242px;
    margin: 0 auto;
}
#main-nav-right-logo-spike svg {
    width: 100%;
    height: auto;
}
#main-nav-right-contact {
    text-align: right;
    line-height: 40px;
    font-size: 25px;
}







/* modals */
.modal-open {
    /*padding-right: 15px !important;*/
    overflow: hidden !important;
}
.modal.show {
    opacity: 1;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal {
    padding-right: 0 !important;
    
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;

}
.modal {
    background: rgba(26,31,39,0.8);
    opacity: 0;
    transition: opacity .2s ease-in;
    z-index: 2005;
}
.modal .close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 100;
    line-height: .5;
    color: #fff;
    text-shadow: none;
    opacity: .6;
    z-index: 1;
    cursor: pointer;
}
.modal .close:hover {
    opacity: .9;
}

#portfolio-modal-wrapper {
    margin: 7vh 5vw 0;
    height: 93vh;
    background: #fff;
    display: flex;
}
.portfolio-modal-arrow {
    width: 64px;
    height: 100%;
    background: #0c131a;
    position: relative;

}
.portfolio-modal-arrow:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -9px;
    margin-left: -9px;
}
#portfolio-modal-prev:before {
    border-left: 6px solid #74e1a8;
    border-bottom: 6px solid #74e1a8;
    transform: rotate(45deg);
}
#portfolio-modal-next:before {
    border-right: 6px solid #74e1a8;
    border-bottom: 6px solid #74e1a8;
    transform: rotate(-45deg);
}
.portfolio-modal-arrow:hover:before {
    border-color: #b2bbcb;
}

#portfolio-modal-wrapper .left{
    flex-grow: 1;
    overflow-y: auto;
    position:relative;
}
#portfolio-modal-wrapper .right{
    min-width: 300px;
    background-color: #fff;
    width: 25%;

    color: #1a1f27;

}
#portfolio-modal-wrapper .right .modal-body {
    padding: 50px;
}
#portfolio-modal-wrapper .right .modal-heading {
    margin-left: -16px;
}
#portfolio-modal-wrapper .right .modal-heading::before {
    content: "";
    width: 11px;
    height: 11px;
    display: inline-block;
    background: #74e1a8;
    margin-right: 5px;
}
#portfolio-modal-wrapper .right h5 {
    font-size: 20px;
    color: #1a1f27;
    margin-bottom: 25px;
    display: inline-block
}
#portfolio-modal-wrapper .right .modal-content {
    font-size: 15px;
}





/* about */
.about-open #header-right a svg * {
    fill: #fff;
}

.section-about {
    background: rgba(26,31,39,0.95);
    z-index: 1000;
    overflow-y: auto;
    position: absolute;
    left: 0;
    top: -100%;
}
.page-index-about-return {
    text-align: center;
    margin-top: 9vh;
    
}
.page-index-about-return a {
    font-size: 25px;
    position: relative;
    color: #fff;
    padding-top: 20px;
    display: inline-block;
}
.page-index-about-return a::before {
    content: "";
    border-left: 6px solid #aab1bb;
    border-top: 6px solid #aab1bb;
    transform: rotate(45deg);
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -9px;
}
.page-index-about-logo {
    text-align: center;
    margin-top: 9vh;
    
}
.page-index-about-logo a {
    display: inline-block;
    height: 60px;
}
.page-index-about-logo a svg * {
    fill: #fff;
}
.page-index-about-heading {
    text-align: center;
    position: relative;
    padding: 75px 0;
    margin: 40px 0;
}
.page-index-about-square {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.page-index-about-square:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.page-index-about-square svg {
    height: 100%;
    max-height: 380px;
    width: auto;
    vertical-align: middle;
    transform: rotate(7.5deg);
    
}
.page-index-about-heading h1 {
    font-size: 180px;
    line-height: 1em;
    text-transform: uppercase;
    color: #fff;
    position: relative;
}
.page-index-about-content {
    font-size: 25px;
}
.page-index-about h4 {
    font-size: 48px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 40px;
}

.page-index-about-items {
    display: flex;
    margin-bottom: 20px;
    align-items: stretch;
}
.page-index-about-item {
    flex-grow: 1;
}
.page-index-about-item-stripe {
    height: 7px;
    display: block;
    width: 48px;
    margin-bottom: 13px;
}
.page-index-about-item-name {
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 20px;
    padding-left: 22px;
}
.page-index-about-item-content {
    position: relative;
    padding-left: 25px;
    
    font-size: 16px;
    font-weight: 100;
}
.page-index-about-item-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff;
    width: 1px;
}


#intro {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}
#intro::before {
    content: "";
    height: 100%;
    vertical-align: middle;
    display: inline-block;
}
#intro-logo {
    display: inline-block;
    vertical-align: middle;
    width: 240px;
    
}
#intro-logo svg {
    width: 100%;
    height: auto;
}
#intro-logo-s,
#intro-logo-spike {
    opacity: 0;
    overflow: visible !important;
}

header, #square, #bg-overlay, #bg-imgs {
    display: none;
}


svg {
    overflow: visible !important;
}


#sections-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 35%;
    text-align: center;
}
#sections-nav a {
    display: inline-block;
    border: 3px solid #000;
    width: 14px;
    height: 14px;
    margin: 0 10px;
    cursor: pointer;
    box-sizing: border-box;
}
#sections-nav a:hover {
    
}
#sections-nav a.active {
    border-width: 7px;
}

#spike {
    width: 148px;
    height: 156px;
    position: absolute;
    left: 50%;
    top: -78px;
    margin-left: -100px;
    transform: scale(0.5);
}


.video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}
.video-player video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}