
/*@font-face {*/
    /*font-family: appFont;*/
    /*src: url(../fonts/calibri.ttf);*/
/*}*/

@font-face {
    font-family: appFont;
    src: url(../fonts/calibrilight.ttf);
}

body {
    font-family: appFont;
    color: white;
    height: 100vh;
    background-color: black;
    /*background-image: url("../img/bg.gif");*/
    /*background-image: url("https://media.giphy.com/media/U3qYN8S0j3bpK/giphy.gif");*/
    background-repeat: no-repeat;
    -webkit-transition: background-image 5s ease-in-out;
    transition: background-image 5s ease-in-out;
    -webkit-background-size: 100%;
    background-size: 100% 100%;
    font-size: 1.3rem;
}

.bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.phone {
    display: none;
}

.logo {
    width: 90%;
}

.heading-wrapper {
    position: relative;
    height: 80vh;
}

.heading-wrapper .main-heading {
    font-size: 3.5rem;
    margin-bottom: 0;
}

.heading-wrapper .sub-heading {
    font-size: 1.5rem;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vertically-centered {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.middle-wrapper {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.7rem;
}

.middle-wrapper p {
    margin-bottom: 0;
}

.middle-wrapper_left {
    position: relative;
    float: right;
    padding-right: 15%;
}

.middle-wrapper_right {
    position: relative;
    float: left;
    padding-left: 15%;
}

.footer-wrapper {
    font-size: 1.1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
}

/*testing*/
.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-wrapper_content {
    font-size: 15px;
}

@media only screen
and (min-device-width: 320px)
and (max-device-width: 568px)
and (-webkit-min-device-pixel-ratio: 2) {
    .phone {
        display: block;
    }
    
    .desktop {
        display: none;
    }

    .heading-wrapper_content {
        width: 80%;
    }

    .logo {
        width: 100%;
    }

    .heading-wrapper .sub-heading {
        font-size: 2.5rem;
    }

    .middle-wrapper {
        font-size: 2rem;
        line-height: initial;
    }
    .footer-wrapper_content {
        font-size: 25px;
    }

}