/* FONTS */

@font-face {
    font-family: 'futurabold';
    src: url('futurab.woff2') format('woff2'), url('futurab.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* --------------- Owl Carousal Start --------------- */

.owl-slider {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.owl-slider .owl-stage {
    display: flex;
}


.owl-slider .disabled {
    display: none;
}

.owl-slide {
    background-image: url('../img/norway.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 30%;
    height: 600px;
}

.owl-text {
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 25px;
    padding-right: 25px;
}

.owl-text span {
    color: #000;
    font-size: 22px;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: -32px;
}

.owl-text button {
    background-color: rgba(0, 0, 0, 0.5);
    border: 3px solid #afb1b4;
    border-radius: 6px;
    font-size: 20px;
    padding: 6px 24px;
    cursor: pointer;
    margin-top: 20px;
    color: #e4e4e4;
}

.owl-text button:hover {
    color: #fff;
    border: 3px solid #fff;
}

.owl-dots {
    text-align: center;
    position: absolute;
    bottom: 25px;
    width: 100%;
    left: 2px;
}

.owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 6px;
    padding: 0;
    cursor: pointer;
    border-color: transparent;
    background-color: #fff;
}

.owl-dots .owl-dot.active {
    background-color: #69728c;
    outline: 0;
}

.owl-prev {
    width: 30px;
    height: 50px;
    position: absolute;
    top: 40%;
    margin-left: 10px;
    display: block !important;
    border: 2px solid black;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.7);
}

.owl-next {
    width: 30px;
    height: 50px;
    position: absolute;
    top: 40%;
    right: 10px;
    display: block !important;
    border: 2px solid black;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.7);
}

.owl-prev i,
.owl-next i {
    color: black;
}

.paragonlogocarousel{
    margin-bottom: 2em;
}



/* --------------- Owl Carousal End --------------- */


/* ---- Collapsible navbar ----- */

@media (max-width: 992px) {
    .navbar-collapse {
        position: fixed;
        top: 0px;
        /* adjust to height of navbar */
        left: 0;
        padding-top: 1em;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
        width: 50%;
        height: 100%;
        background-color: rgba(248, 249, 250, 0.9);
    }
    #navcollapseimage {
        display: block;
    }
    .navbar-collapse.collapsing {
        left: -75%;
        transition: height 0s ease;
    }
    .navbar-collapse.show {
        left: 0;
        transition: left 300ms ease-in-out;
    }
    .navbar-toggler.collapsed~.navbar-collapse {
        transition: left 0ms ease-in-out;
    }
}

/* collapse image */
@media (min-width: 992px) {
    #navcollapseimage {
        display: none;
    }
}


/* ---- END Collapsible navbar ----- */

.h1,
h1 {
    color: white;
}

.h3,
h3 {
    color: white;
}

#top {
    text-align: center;
}

body {
    background-color: gray !important;
    font-family: 'futurabold', Arial, sans-serif !important;
    font-weight: normal;
    font-style: normal;
}

.vertical-center {
    min-height: 100%;
    /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh;
    /* These two lines are counted as one :-)       */
    display: flex;
    align-items: center;
}