* {box-sizing:border-box}

@media screen and (orientation: portrait) {
    .slideshow-container-0 {
        display: none;
    }

    .slideshow-container-1 {
        display: block;
    }
}

@media screen and (orientation: landscape) {
    .slideshow-container-0 {
        display: block;
    }

    .slideshow-container-1 {
        display: none;
    }
}

.slideshow-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.mySlides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.mySlides img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    z-index: 1000;
    top: 50%;
    width: auto;
    margin-top: -32px;
    padding: 16px;
    color: rgba(255, 255, 255, 1);
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    user-select: none;
    text-shadow: 1px 1px rgba(0,0,0,1), -1px -1px rgba(0,0,0,1), 1px -1px rgba(0,0,0,1), -1px 1px rgba(0,0,0,1);
}

.next {
    right: 0;
}

.prev:hover, .next:hover {
    color: rgba(200, 200, 200, 1);
}

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    display: none;
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    display: none;
}

.dots-container {
    position: absolute;
    height: 43px;
    left: 0;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0);
}

.dot {
    cursor: pointer;
    height: 3px;
    width: 27px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.25);
    display: inline-block;
    transition: background-color 0.6s ease;
}

@media screen and (max-width: 610px) {
    .dot {
        width: 14px;
    }
}

@media screen and (max-width: 610px) {
    .dot {
        width: 6px;
    }
}

.active, .dot:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {opacity: .01}
    to {opacity: 1}
}
