@font-face {
    font-family: 'helveticaneue_light';
    src: url(fonts/Poppins-SemiBold.ttf);
}
@font-face {
    font-family: 'helveticaneue_bold';
    src: url(fonts/CircularPro-Bold.otf);
}
@keyframes blink {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    } 
    100% {
        opacity: 0.2;
    } 
}
@keyframes fadein {
    0% {
        opacity: 0;
    }
    75% {
        opacity: 0;
    } 
    100% {
        opacity: 1;
    } 
}

* {
    color: #fff;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
    width: 100%;
    height: 100%;
    font-size: 62.5%;
}
body {
    box-sizing: border-box;
}
body {
    font-family: 'helveticaneue_light', sans-serif;
    line-height: 1.2;
    color: #fff;
}
body::-webkit-scrollbar { 
    width: 0 !important; 
}
body, html {
    overflow: auto;
    -ms-overflow-style: none; /* IE 11 */
    scrollbar-width: none; /* Firefox 64 */
}

#fp-nav ul li a span, .fp-slidesNav ul li a span {
    background-color: #fff;
}

#logo {
    position: fixed;
    width: 100px;
    top: 20px;
    left: 32px;
    z-index: 998;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: top .5s;
}

.center {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.layer {
    z-index: 2;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    padding: 0;
}

.background-full {
    background: url("../img/background.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: fixed; 
    top: 0; 
    left: 0; 
    min-width: 100%;
    min-height: 100%;
}

.uk-button-default,
.uk-button-default:active,
.uk-button-default:visited {
    background-color: rgba(255, 255, 255, 0.8) !important;
    border: none;
    border-radius: 50%;
    height: 130px;
    width: 130px;
    z-index: 999;
    font-family: 'helveticaneue_bold', sans-serif;
    font-size: 1.8rem;
    line-height: 1.2;
    text-transform: unset;
}
.uk-button-default:hover {
    background-color: rgba(255, 255, 255, 1) !important;
}

.button--open_demo {
    position: absolute;
    right: 25%;
    top: 60%;
    transform: translate(-50%, -50%);
}

.spacing {
    width: 1vw;
}

.tag {
    font-family: 'helveticaneue_light', sans-serif;
    letter-spacing: 2px;
}

.projectBG {
    background-color: white;
    position: absolute;
    left: 50%;
    top: 15vh;
    margin-right: -50%;
    -webkit-transform: translate3d(-50%,0,0);
    -ms-transform: translate3d(-50%,0,0);
    transform: translate3d(-50%,0,0);
}
.projectBG h1 {
    color: black;
    font-family: 'helveticaneue_light', sans-serif;
}

.drop-shadow {
    filter: drop-shadow( 1px 1px 3px rgba(0, 0, 0, 0.3));
}
.text-shadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.text-black {
    color: black;
}
.text-white {
    color: white;
}

#offcanvas-nav .uk-offcanvas-bar ul li a {
    color: white;
    font-size: 14px;
}

.fp-controlArrow.fp-next {
    right: 40px;
}
.fp-controlArrow.fp-prev {
    left: 40px;
}


/* BACKGROUND VIDEO */
.myVideo {
    position: absolute;
    z-index: -2;
    top: 0;
    right: 0;
    min-width: 100%; 
    min-height: 100%;
    width: auto; 
    height: auto;
    background-size: cover;
    overflow: hidden;
    background-position: center;
    background-color: black;
    object-fit: cover;
}
video::-webkit-media-controls {
    display:none !important;
}


/* PRELOADER */
.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: 1s;
}
.preloader-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    height: 50%;
    width: 100%;
    background: #222;
    /*background-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(19, 19, 19));*/
    z-index: 1000;
    transition: all 1s ease-out;
}
.preloader-wrapper.complete::before {
    top: -50%;
    background: transparent;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(19, 19, 19, 0));
}
.preloader-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 50%;
    width: 100%;
    background: #222;
    /*background-image: linear-gradient(to top, rgb(0, 0, 0), rgb(19, 19, 19));*/
    z-index: 1000;
    transition: all 1s ease-out;
}
.preloader-wrapper.complete::after {
    bottom: -50%;
    background: transparent;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(19, 19, 19, 0));
}
.preloader-wrapper-logo img {
    height: 4.6rem;
}
.preloader-wrapper-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -120%);
    z-index: 1001;
    transition: all 1s ease-out;
}

.preloader-wrapper-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20%);
    z-index: 1001;
    opacity: 1;
    animation: blink 1s infinite;
    transition: all 1s ease-out;
}
.preloader-wrapper-logo.complete {
    top: 0%;
    opacity: 0;
}
.preloader-wrapper-loading.complete {
    top: 100%;
    opacity: 0;
}

/* FOOTER */
.footer {
    position: absolute;
    z-index: 99;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6rem;
    border-top: solid .1rem rgba(255, 255, 255, 0.1);
    background-color: transparent;
}
.footer p {
    text-transform: capitalize;
    opacity: 0.5;
    margin: 0;
    font-size: 1.4rem;
}

/* NEU */

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0; left: 0;
    z-index: 999;
    width: 100%;
    background-image: linear-gradient(180deg, #151515, rgba(27,27,27,.8) 50%,rgba(27,27,27,0));
    height: 7rem;
}


.nav li { 
    display: table-cell; 
    position: relative; 
}
.nav li a {
    text-decoration: none;
    display: inline-block;
    padding: 2.5rem 0;
    position: relative;
    margin: 0 2.5rem;
    transition: all .3s ease-out;
}
.nav li a:hover {
    color: #fff !important;
}
.uk-active a {
    color: #ff4439 !important;
}


/* SECTIONS */
.section {
    background-image: url(../img/background.jpg);
}

/*.section__image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}*/

.section--home {
    position: absolute;
    bottom: 3rem; left: 50%;
    transform: translateX(-50%);
    width: 90rem;
}
.section--home img {
    height: 9rem;
}

.section--awards {
    position: absolute;
    top: 50%; right: 3%;
    transform: translateY(-50%);
    width: 20rem;
}

.bullet {
    background-color: #ff4439;
    font-size: 2.4rem;
    font-family: 'helveticaneue_bold', sans-serif;
    min-width: 6rem; height: 6rem;
    border-radius: 100%;
}
.bullet--transparent {
    background-color: transparent;
}
.bullet img {
    min-width: 6rem; height: 6rem;
}


/* TEXT CONTAINERS */

.text--primary {
    font-size: 4rem;
    color: #fff;
    font-family: 'helveticaneue_bold', sans-serif;
}
.text--secondary {
    font-size: 2rem;
    color: #fff;
    font-family: 'helveticaneue_bold', sans-serif;
}
.text--tertiary {
    font-size: 1.6rem;
    color: #707070;
    font-family: 'helveticaneue_light', sans-serif;
}

/* ROTATE */
.rotate {
    position: fixed;
    left: 50%;
    top: 3rem;
    transform: translateX(-50%);
    background-color:rgba(255, 255, 255, 0.9);
    padding: 2rem;
    width: 86vw;
    border-radius: 1rem;
}
.rotate img {
    width: 6rem; height: 6rem;
}

.darken {
    position: absolute;
    top: 0;
    width: 100%;
    bottom: 0;
    z-index: -1;
    background: #222;
    opacity: .3;
}

/* SMALL DEVICES */
@media screen and (max-width: 960px) {
    #fp-nav ul li a span, .fp-slidesNav ul li a span {
        display: none;
    }
    .para {
        font-size: 0.75em;
        margin-bottom: 10px;
    }
    .projectBG h1 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    .projectBG .text-black {
        font-size: 0.75em;
        margin-bottom: 10px;
    }
    #logo {
        width: 80px;
    }
    .fp-controlArrow.fp-next {
        right: 10px !important;
    }
    .fp-controlArrow.fp-prev {
        left: 10px !important;
    }
    .section--home {
        width: 100vw;
    }
    .section--awards {
        width: 10rem;
    }
    .text--primary {
        font-size: 3rem;
    }
    .bullet, .bullet img {
        min-width: 5rem !important; height: 5rem !important;
    }
}