html,
body {
    font-family: "Roboto", sans-serif;
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

.nav-link:active, .dropdown-item:active, .nav-link:hover, .dropdown-item:hover, .link-light:hover {
    text-decoration: underline !important;
}

.link-primary {
    color: #109AA7 !important;
}

.btn-primary {
    background-color: #109AA7 !important;
}

.btn-primary:hover, .btn-primary:active {
    color: #109AA7 !important;
    background-color: #fff !important;
}

.btn-outline-primary {
    color: #fff !important;
    border-color: #109AA7 !important;
}

.btn-outline-primary:hover, .btn-outline-primary:active {
    background-color: #109AA7 !important;
    border-color: #109AA7 !important;
    color: #fff !important;
}

.transparent-bg {
    background-image: url('../images/transparent-bg.png');
}

p {
    font-size: 1.3rem !important;
}

.social {
    flex-direction: column !important;
}

.social a {
    width:70px;
    height:70px;
}

@media (min-width: 776px) {
    .skew {
        transform: skewX(-9deg);
        transform-origin: top right;
    }
    .unskew {
        transform: skewX(9deg);
        transform-origin: top right;
    }
}

@media (max-width: 776px) {
    .w-75 {
        width: auto !important;
    }
    .vh-100 {
        height: auto !important;
    }
    .bg-dark {
        background-color: rgba(0, 0, 0, 0.85) !important;
    }
}

/* Video */

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.viewport-header {
    position: relative;
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vimeo-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.vimeo-wrapper iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}