.bgimage {
    z-index: 0;
    background-image: url('/img/background/bgimage-04.jpg');
    filter: blur(2px);
    -webkit-filter: blur(2px);
    /* Full height */
    min-height: calc(100vh);
    /* Center and scale the image nicely */
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
    position: relative;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: 15em;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    visibility: hidden;
}

/* Container for image text */
.caption-container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 2px 16px;
    color: white;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.column {
    float: left;
    width: 10vh;
    height: auto;
}

.column img {
    float: center;
    width: 85px;
    height: 55px;
    margin-top: .2vh;
}

.mySlides img {
    width: 120vh;
    height: 80vh;
}

/* Add a transparency effect for thumnbail images */
.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

.carouselmaster {
    height: 5vh;
    width: 120vh;
    position: absolute;
    z-index: 2;
    text-align: center;
    top: 11%;
    left: 19%;
    position: absolute;
    background-color: transparent;
}

@media only screen and (max-width: 78.75em) {
    .mySlides img {
        width: 90vw;
        height: 60vw;
    }
    .carouselmaster {
        height: 10vw;
        width: 91vw;
        align-content: center;
        position: absolute;
        z-index: 2;
        text-align: center;
        top: 12vh;
        left: 5vw;
        position: absolute;
        background-color: transparent;
    }

    /* Next & previous buttons */
    .prev,
    .next {
        top: 10vh;
        width: auto;
        padding: 16px;
        margin-top: 0.2em;
    }

    .column {
        float: left;
        width: 22vw;
        height: auto;
    }
    
    .column img {
        float: center;
        width: 20vw;
        height: 6vh;
        margin-top: .2vh;
    }

    .bgimage {
        background-size: 80rem 60rem;
        background-position: -34.5rem;
      }
}