#slideshow {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 600px;
    z-index: 48;
    overflow: hidden;
    text-align: center;
}

.slideshow_box {
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
    left: 0;
}

.slideshow_box div {
    width: 80%;
    margin: 0 auto;
    max-width: 1000px;
    padding-top: 155px;
}

#slideshow-content {
    display: flex;
    z-index: 1000;
    align-items: normal;
    text-align: left;
    width: 90%;
    max-width: 1000px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

#slideshow-content div {
    background-color: rgba(255, 255, 255, .9);
    padding: 35px 40px;
}

#slideshow-content div:first-of-type {
    margin-right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
}

#slideshow-content img {
    width: 140px;
}

#slideshow-content p {
    text-align: justify;
    font-size: 16px;
    line-height: 1.5;
}

#slideshow-content p:last-of-type {
    margin-top: 25px;
}

#slideshow-content a {
    text-decoration: none;
}

#slideshow-content h1 {
    font-size: 30px;
    text-align: left;
    padding-bottom: 0;
}

#scroll {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 30px;
    animation: scroll 2s;
    animation-iteration-count: infinite;
}

@keyframes scroll{
    0% {
        bottom: 15px;
    }

    25% {
        bottom: 25px;
    }

    50% {
        bottom: 15px;
    }

    100% {
        bottom: 15px;
    }
}

#slideshow01 {
    background-image: url('/images/slideshow/slideshow_1.jpg');
}

#slideshow02 {
    background-image: url('/images/slideshow/slideshow_2.jpg');
}

#slideshow03 {
    background-image: url('/images/slideshow/slideshow_3.jpg');
}

.slideshow_box:nth-of-type(1) {
    color: transparent !important;
    background-color: transparent !important;
    animation: slideshow_t_1;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes slideshow_t_1 {
    0% {
        opacity: 1;
    }
    23% {
        opacity: 1;
    }
    33% {
        opacity: 0;
        transform: scale(1.1)
    }
    56% {
        opacity: 0;
        transform: scale(1.1)
    }
    66% {
        opacity: 0;
        transform: scale(1)
    }
    90% {
        opacity: 0;
        transform: scale(1)
    }
    100% {
        opacity: 1;
    }
}

.slideshow_box:nth-of-type(2) {
    color: transparent !important;
    background-color: transparent !important;
    animation: slideshow_t_2;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes slideshow_t_2 {
    0% {
        opacity: 0;
        transform: scale(1.1)
    }
    23% {
        opacity: 0;
        transform: scale(1.1)
    }
    33% {
        opacity: 1;
    }
    56% {
        opacity: 1
    }
    66% {
        opacity: 0;
        transform: scale(1)
    }
    90% {
        opacity: 0;
        transform: scale(1)
    }
    100% {
        opacity: 0;
        transform: scale(1.1)
    }
}

.slideshow_box:nth-of-type(3) {
    color: transparent !important;
    background-color: transparent !important;
    animation: slideshow_t_3;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes slideshow_t_3 {
    0% {
        opacity: 0;
        transform: scale(1.1)
    }
    23% {
        opacity: 0;
        transform: scale(1)
    }
    33% {
        opacity: 0;
        transform: scale(1)
    }
    56% {
        opacity: 0;
        transform: scale(1)
    }
    66% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.1)
    }
}

@media screen and (max-width: 900px) {
    #slideshow-content img {
        width: 80px;
    }

    #slideshow-content div {
        padding: 25px 40px;
    }

    #slideshow-content div:first-of-type {
        width: 150px;
    }

    #slideshow, .slideshow_box {
        height: 400px;
    }
}

@media screen and (max-width: 770px) {
    #slideshow-content div:first-of-type {
        display: none;
    }

    #slideshow-content p {
        text-align: left;
    }
}

@media screen and (max-width: 600px) {
    #slideshow, .slideshow_box {
        height: 550px;
    }

    #slideshow-content {
        width: 97%;
    }

    #slideshow-content div {
        padding: 10px 25px 18px 25px;
    }

}