.landing {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.fp {
    background: #222222;
    height: 100%;
}

.main-nav {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
}

.main-nav-fixed {
    position: fixed;
    background: #222222;
    box-shadow: 0 0.15em 0.15em 0 rgba(0, 0, 0, 0.2);
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}


/* LANDING PAGE */

.cb-slideshow,
.cb-slideshow:after {
    list-style-type: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}


/* Landing - Wrapper/Glow */

.landing .wrapper {
    width: 600px;
    height: 300px;
    overflow: auto;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.landing .glow {
    background-color: #fff;
    opacity: 0.7;
    border-radius: 50%;
    box-shadow: 0 0 250px 150px #fff;
    -webkit-transition: opti 1s ease-in;
    -moz-transition: outline 1s ease-in;
    -ms-transition: outline 1s ease-in;
    -o-transition: outline 1s ease-in;
    transition: outline 1s ease-in;
}


/* Landing - Logo */

.landing .logo-container {
    width: 600px;
    height: 330px;
    overflow: auto;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    background-image: url(../img/covido_logo.svg);
    background-position: 50% 0%;
    background-repeat: no-repeat;
}

.landing .logo-container .content {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.landing .logo-container .content p {
    font-family: 'Biryani', sans-serif;
    text-align: center;
    font-weight: 200;
    margin: 0;
    line-height: 1.2;
}

.landing .logo-container .content p:nth-child(1) {
    font-size: 35pt;
    letter-spacing: 5px;
}

.landing .logo-container .content p:nth-child(2) {
    font-size: 25pt;
    letter-spacing: 5px;
}


/* Landing - Logo Effects */

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeIn {
    animation: animationFrames linear 3s;
    animation-iteration-count: 1;
    -webkit-animation: animationFrames linear 3s;
    -webkit-animation-iteration-count: 1;
    -moz-animation: animationFrames linear 3s;
    -moz-animation-iteration-count: 1;
    -o-animation: animationFrames linear 3s;
    -o-animation-iteration-count: 1;
    -ms-animation: animationFrames linear 3s;
    -ms-animation-iteration-count: 1;
}

@keyframes animationFrames {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.7;
    }
}

@-moz-keyframes animationFrames {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.7;
    }
}

@-webkit-keyframes animationFrames {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.7;
    }
}

@-o-keyframes animationFrames {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.7;
    }
}

@-ms-keyframes animationFrames {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.7;
    }
}


/*RESPONSIVE BREAKPOINTS*/

@media (max-width: 575.99px) {
    .landing .wrapper {
        width: 300px;
        height: 100px;
    }
    .landing .logo-container {
        width: 300px;
        height: 160px;
    }
    .landing .logo-container .content p:nth-child(1) {
        font-size: 15pt;
        letter-spacing: 4px;
    }
    .landing .logo-container .content p:nth-child(2) {
        font-size: 10pt;
        letter-spacing: 4px;
    }
}

@media (min-width: 576px) and (max-width: 767.99px) {
    .landing .wrapper {
        width: 400px;
        height: 150px;
    }
    .landing .logo-container {
        width: 400px;
        height: 210px;
    }
    .landing .logo-container .content p:nth-child(1) {
        font-size: 20pt;
        letter-spacing: 4px;
    }
    .landing .logo-container .content p:nth-child(2) {
        font-size: 15pt;
        letter-spacing: 4px;
    }
}

@media (min-width: 768px) and (max-width: 991.99px) {}

@media (min-width: 992px) and (max-width: 1199.99px) {}

@media (min-width: 1200px) {}