/*** Typography ***/

@font-face {
    font-family: 'kvc-bruteregular';
    src: url('fonts/kvc-brute-regular-webfont.eot');
    src: url('fonts/kvc-brute-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/kvc-brute-regular-webfont.woff2') format('woff2'),
         url('fonts/kvc-brute-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'kvc-brutespeed';
    src: url('fonts/kvc-brute-speed-webfont.eot');
    src: url('fonts/kvc-brute-speed-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/kvc-brute-speed-webfont.woff2') format('woff2'),
         url('fonts/kvc-brute-speed-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.brute {
    font-family: 'kvc-bruteregular', arial bold, sans-serif;
}

.brute-speed {
    font-family: 'kvc-brutespeed', arial bold, sans-serif;
}

/*** CSS Reset ***/

html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #141414;
  color: #878787;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

h1,h2,h3,h4,p {
    font-size: 16px;
    line-height: 1.3;
    margin: 10px 0;
    font-weight: normal;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}

@media (min-width: 768px) {
    p {
    font-size: 1.27em;
    }
}



a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

img {
  border-style: none;
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
    
    .desktop-only {
        display: block;
    }
}

/* Navigation */

 .navigation {
    height: 20%;
    display: block;
    z-index: 0;
 }
 
.mobile-link-wrapper {
    display: flex;
    flex-direction: column;
    height: 80%;
    justify-content: space-around;
    text-align: center;
 }
 
.mobile-nav-social {
     padding: 0 10px;
 }
 
.nav-link {
    color: #878787;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.25em;
}

.nav-link:hover {
    color: white;
}

.social-icons-wrapper-mobile {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.collapsable-menu-wrapper {
    display: none;
}

@media (min-width: 768px) {
    .link-wrapper {
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 998;
        width: 65%;
        margin: 0 auto;
    }
    
    .nav-link {
        font-size: 1.45em;
    }
}

/*** Collapsable nav ***/
#desktop-navbar {
    display: none;
}
 
#sticky-navbar {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
}

.nav-background {
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0, 0.9);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 99999;
    text-align: center;
}

.nav-center {
    margin-top: 25%;
}

.logo-wrapper {
    text-align: center;
    margin: 0 auto 4%;
}

.nav-logo {
    width: 110px;
}

.link-wrapper-sticky-nav {
    width: 100%;
}

.nav-link-wrapper {
    margin: 7% 0;
}

.nav-social-icons {
    position: fixed;
    bottom: 10%;
    left: 0;
    right: 0;
    display: block;
    text-align: center;
}
 
@media (min-width: 768px) {
    #desktop-navbar{
        font-family: 'kvc-bruteregular', arial bold, sans-serif;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        display: flex;
        align-items: center;
        text-align: center;
        padding-top: 25px;
        width: 100%;
    }
    
    #sticky-navbar {
        display: none;
    }
    
    .nav-background {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-center {
        margin-top: -12%;
        width: 100%;
    }
    
    .nav-logo {
        width: 170px;
    }
    
    .link-wrapper-sticky-nav {
        display: flex;
        justify-content: space-around;
        width: 92%;
        margin: 0 auto;
    }
    
    .nav-link-wrapper {
        margin: 0;
    }
    
    .nav-team-name {
        display: none;
    }
 
    .logo-wrapper {
        width: 100%;
    }
}

/*** Hamburger menu***/
.nav-logo {
    display: none;
}

.collapsable-menu-wrapper {
    width: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
}

#collapsable-menu {
    width: 35px;
    height: 28px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    margin: 25px 0 0 25px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
    
#collapsable-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 20%;
    background-color: #878787;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
    
#collapsable-menu span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    min-width: 35px;
}
    
#collapsable-menu span:nth-child(2) {
  top: 12px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  min-width: 35px;
}

#collapsable-menu span:nth-child(3) {
  top: 24px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  min-width: 35px;
}

#collapsable-menu.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); 
    top: 1px;
    left: 6px; 
}

#collapsable-menu.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#collapsable-menu.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); 
    top: 25px;
    left: 5px; 
}

.collapsable-icon {
    float: right;
    width: 48px;
    padding-top: 10px;
    padding-right: 18px;
}

@media (min-width: 768px) {
    .collapsable-icon {
        padding-top: 25px;
        padding-right: 29px;
    }
}

.mobile-nav-logo {
    width: 40px; 
    float: right;
    position: absolute;
    margin: 10px 8px 0 0;
    right: 9px;
    top: 6px;
}

.nav-team-name {
    white-space: nowrap;
    position: fixed;
    top: 15px;
    z-index: 555;
    right: 12px;
    font-size: .85em;
}

@media (min-width: 768px) {
    #collapsable-menu {
      width: 35px;
      height: 28px;
      position: fixed;
      top: 0;
      left: 22px;
      z-index: 99999;
      margin: 38px 0 0 10px;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .5s ease-in-out;
      -moz-transition: .5s ease-in-out;
      -o-transition: .5s ease-in-out;
      transition: .5s ease-in-out;
      cursor: pointer;
    }
    
    #collapsable-menu span {
      display: block;
      position: absolute;
      height: 3px;
      width: 100%;
      background-color: #878787;
      border-radius: 9px;
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .25s ease-in-out;
      -moz-transition: .25s ease-in-out;
      -o-transition: .25s ease-in-out;
      transition: .25s ease-in-out;
    }
    
    #collapsable-menu span:nth-child(1) {
        top: 0px;
        min-width: 35px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center; 
    }
    
    #collapsable-menu span:nth-child(2) {
      top: 12px;
      -webkit-transform-origin: left center;
      -moz-transform-origin: left center;
      -o-transform-origin: left center;
      transform-origin: left center; 
    }
    
    #collapsable-menu span:nth-child(3) {
        top: 24px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center; 
    }
    
    #collapsable-menu.open span:nth-child(1) {
        transform: translateX(3px);
        top: 0;
        left: 0;
    }
    
    #collapsable-menu.open span:nth-child(2) {
        transform: translateX(10px);
        width: 100%;
        opacity: 1;
    }
    
    #collapsable-menu.open span:nth-child(3) {
        transform: translateX(15px);
        top: 24px;
        left: 0;
    }
}
    
/*********** Specific reused elemens *************/

/* blue button */
.blue-button {
    border: 2px solid #546d8c;
    color: #546d8c;
    box-styling: border-box;
    z-index: 0;
    padding: 20px 35px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    display: inline-block;
    font-size: 1em;
    text-decoration: none;
    transition: all .5s ease;
}

.blue-button:hover {
    border: 2px solid #97c3f9;
    color: #97c3f9;
}

.blue-button:hover .single-show-inner {
    color: #97c3f9;
    transition: all .5s ease;
}

.blue-button-content:before {
    content: ">>>";
}

.blue-button-content:after {
    content: "<<<";
}


/* Secondary page nav */

.secondary-nav {
    height: 75px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background-image: linear-gradient(#141414, #2a2a2a);
    opacity: 1;
    position: fixed;
    top: 0;
    right: 0;
    transition: all .5s ease;
}

.secondary-nav-wrapper {
    height: 75px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
   
    .secondary-nav {
        height: 100px;
    }
    
    .secondary-nav-wrapper {
        height: 100px;
    }
}

/******* Footer *********/
.slogan-text {
    text-align: center;
    letter-spacing: 2px;
    word-spacing: 5px;
    font-size: 2em;
    height: auto;
    width: 100%;
    background: #141414;    
    position: relative;
    z-index: 99;
}

.slogan-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
    background-image: linear-gradient(to bottom, rgba(20,20,20,.9), rgba(20,20,20,.6));
}

#footer {
    height: 100vh;
    width: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    overflow-y: hidden;
}

.footer-preview-image {
    background-image: url(/assets/images/footer/footer-preview-PRE.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    height: 100%;
    width: 100%;
}

.footer-preview-image.visible {
    background-image: url(/assets/images/footer/footer-preview-SM.jpg);
}

.footer-video {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 3s ease;
    bottom: 0;
    left: 0;
}

.footer-video-controller {
    display: block;
    width: 100%; 
    height: 100%;
    object-fit: cover;
}

.video-gradient-overlay {
    display: inline;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(20,20,20,1), rgba(20,20,20,0));
    z-index: 99;
}

.lower-footer-wrapper {
    text-align: left;
    top: 150px;
    width: 80%;
    margin: 0 4%;
    position: relative;
    z-index: 998;
}

.logo-icon-footer {
    width: 150px;
}

.contact-details {
    padding: 15px 0;
}

.contact-details p {
    font-size: 1em;
}

.team-name {
    font-weight: 700;
    letter-spacing: 1.25px;
}

.contact-link {
    text-decoration: none;
    color: #878787;
    cursor: pointer;
}

.privacy-policy {
    text-decoration: none;
    color: #878787;
    cursor: pointer;
    font-size: .5em;
}

.social-icons-wrapper {
    margin: 10px 0;
    display: flex;
    width: 75px;
    justify-content: space-between;
}

.footer-social-link {
    margin-bottom: 15px;
    width: 30px;
    height: 30px;
}

.footer-social-icon {
    width: 30px;
    height: 30px;
}

.footer-social-icon:hover path {
    fill: white; /* todo: change this to whatever the a hover turns out being */
}

@media (min-width:768px) {
    .lower-footer-wrapper {
        width: 90%;
    }
    
    .footer-preview-image.visible {
        background-image: url(/assets/images/footer/footer-preview.jpg);
    }
}


@supports (-ms-accelerator: true) { /* Edge only */

    .link-wrapper {
        justify-content: space-around;
        /* you can also add some other adjustments to size, margins etc to get the same positioning */
    }
}    