html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

@font-face {
    font-family: "Agency Blue";
    src: url(../fonts/texgyreadventor-regular.otf);
    font-weight: 300;
    font-style: normal;
}

/*@font-face {*/
    /*font-family: "Agency Blue";*/
    /*src: url(../fonts/texgyreadventor-italic.otf);*/
    /*font-weight: 300;*/
    /*font-style: italic;*/
/*}*/

/*@font-face {*/
    /*font-family: "Agency Blue";*/
    /*src: url(../fonts/texgyreadventor-bold.otf);*/
    /*font-weight: 700;*/
    /*font-style: normal;*/
/*}*/
/*@font-face {*/
    /*font-family: "Agency Blue";*/
    /*src: url(../fonts/texgyreadventor-bolditalic.otf);*/
    /*font-weight: bold;*/
    /*font-style: italic;*/
/*}*/

html {
    font-size: 10px;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Agency Blue", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 300;
    background-color: #FFF;
    color: #FFF;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

svg {
    width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    color: #00a8e3;
    text-decoration: none;
}

[data-animation-enter] {
    opacity: 0;
}

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
    background: url('../video/poster.jpg') center center / cover no-repeat;
    opacity: 0.75;
}

.fullscreen-bg__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: none;
}

@media (min-width: 768px) {
    .fullscreen-bg__video {
        display: block;
    }
}

.wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    padding: 12rem 4rem;
}



.intro, .welcome {
    font-size: 3.5rem;
    text-align: center;
    letter-spacing: 0.25rem;
}

.welcome__we-are {
    padding-bottom: 20px;
}

.welcome__logo {
    display: inline-block;
    width: 800px;
    max-width: 100%;
    height: auto;
}

.welcome__what-we-do {
    color: #666;
    font-size: 2rem;
    padding-top: 30px;
    padding-bottom: 60px;
    letter-spacing: 0;
    line-height: 1.85;
}

.welcome__what-we-do p {
    margin: 0;
}

.welcome__what-we-do a {
    color: #FFF;
}

.welcome__what-we-do a:hover {
    color: #00a8e3;
}

.welcome__what-we-do .white {
    color: #FFF;
    margin-top: 15px;
    /*text-shadow: 1px 1px 3px #999;*/
}

@media(max-width: 991px) {
    html {
        font-size: 8px;
    }

    br {
        display: none;
    }
}


