body {
    width: 100%;
    height: 100%;
}

#section-landing {
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    padding: 2vh 15vw;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#section-landing h1 {
    text-align: center;
    font-family: 'Inconsolata';
    font-size: 3vw;
    color: #333333;
    line-height: 4vw;
    
    margin: 15vh 0 5vh 0;
}

#section-landing .banner {
    width: 100%;
    margin-bottom: 2vh;
}

#section-landing #slideshow-1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#section-landing #slideshow-1 div {
    width: 19%;
    padding-bottom: 19%;
    margin: 1vh 0;
    background-size: cover;
    background-position: bottom;
    cursor: pointer;
}

#section-landing .tn-v {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

#section-landing #slideshow-2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#section-landing #slideshow-2 div {
    width: 24%;
    padding-bottom: 24%;
    margin: 1vh 0;
    background-size: cover;
    background-position: bottom;
    cursor: pointer;
}

#section-landing #slideshow-3 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#section-landing #slideshow-3 div {
    width: 24%;
    padding-bottom: 24%;
    margin: 1vh 0;
    background-size: cover;
    background-position: bottom;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 30;
    padding: 5vh 0;
    box-sizing: border-box;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content img {
    display: block;
    height: 100%;
}

/* The Close Button */
.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    z-index: 10;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* Hide the slides by default */
.mySlides1 {
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}

.mySlides2 {
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}

.mySlides3 {
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}

.vertical {
    width: auto !important;
    height: 100% !important;
}

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

/* 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.8);
}

img.demo {
    opacity: 0.6;
}

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

@media only screen and (max-width: 1024px) {

    #section-landing {
        padding: 2vh 5vw;
    }

    #section-landing h1 {
        font-size: 7vw;
        line-height: 10vw;

        margin: 5vh 0 3vh 0;
    }

    #section-landing #slideshow-1 div {
        width: 30%;
        padding-bottom: 30%;
    }

    #section-landing #slideshow-2 div {
        width: 30%;
        padding-bottom: 30%;
    }

    #section-landing #slideshow-3 div {
        width: 30%;
        padding-bottom: 30%;
    }
    
    .modal-content img {
        width: 100%;
        height: auto;
    }
    
}