
.slideshow {
    height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
    background: no-repeat center center;
    background-size: cover;
    transition: 1.5s;
}

.slideshow .circle {
    border: 2px solid white;
    height: 10px;
    width: 10px;
    float: left;
    border-radius: 50px;
    margin-left: 3px;
    margin-right: 3px;
    background: transparent;
    cursor: pointer;
    transition: 1s;
}

.slideshow .circle:last-of-type{
    margin-right: 15px;
}

.slideshow .arrow {
    color: white;
    font-weight: bold;
    float: left;
    font-size: 45px;
    user-select: none;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.slideshow .arrow:last-of-type {
    margin-right: 20px !important;
}

.slideshow .arrow:first-of-type {
    margin-left: 15px !important;
}

.slideshow .control-container {
    display: flex;
    align-items: center;
}

.slideshow .pagination {
    position: absolute;
    bottom: 20px;
    right: 60px;
    opacity: .4;
    transition: 1s;
}

.slideshow .pagination:hover {
    opacity: .8;
    border-radius: 25px;
    background: #485e88;
}

.slideshow .content-left {
    position: absolute;
    width: 30vw;
    bottom: 250px;
    height: auto;
    box-sizing: border-box;
    transition: .75s;
    padding: 20px;
    background: rgba(72, 94, 136, 0.7);
}

.slideshow .content-right {
    padding: 20px;
    position: absolute;
    box-sizing: border-box;
    transition: .75s;
    width: 30vw;
    height: auto;
    right: 0;
    top: 250px;
    background: rgba(72, 94, 136, 0.7);
}

.slideshow .title {
    font-size: 42px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.slideshow .desc {
    font-size: 20px;
    color: white;
    font-weight: normal;
    line-height: 1.3em;
}


/*@media screen and (max-width: 1024px) {*/
    /*.slideshow .arrow {*/
        /*font-size: 40px;*/
    /*}*/

    /*.slideshow .circle {*/
        /*height: 15px;*/
        /*width: 15px;*/
    /*}*/
/*}*/



/*@media screen and (min-width: 401px) and (max-width: 1024px), screen and (orientation: portrait) {*/
    /*.slideshow .content-left {*/
        /*width: 40vw;*/
    /*}*/

    /*.slideshow .content-right {*/
        /*width: 40vw;*/
    /*}*/

    /*.slideshow .arrow {*/
        /*font-size: 40px;*/
    /*}*/

    /*.slideshow .circle {*/
        /*height: 15px;*/
        /*width: 15px;*/
    /*}*/
/*}*/

/*@media screen and (min-width: 401px) and (max-width: 1024px), screen and (orientation: landscape) {*/
    /*.slideshow .content-left {*/
        /*width: 40vw;*/
        /*bottom: 0;*/
    /*}*/

    /*.slideshow .content-right {*/
        /*width: 40vw;*/
        /*top: 0;*/
    /*}*/
/*}*/

/*@media screen and (min-width: 200px) and (max-width: 400px), screen and (orientation: portrait) {*/
    /*.slideshow .content-left {*/
        /*width: 100vw;*/
        /*bottom: 250px;*/
        /*border-radius: 0;*/
        /*background: rgba(179, 179, 179, 0.8);*/
    /*}*/

    /*.slideshow .content-right {*/
        /*top: auto;*/
        /*width: 100vw;*/
        /*bottom: 250px;*/
        /*border-radius: 0;*/
        /*background: rgba(179, 179, 179, 0.8);*/
    /*}*/

    /*.slideshow .desc {*/
        /*font-size: 30px;*/
    /*}*/

    /*.slideshow .arrow {*/
        /*font-size: 60px;*/
    /*}*/

    /*.slideshow .circle {*/
        /*height: 30px;*/
        /*width: 30px;*/
    /*}*/
/*}*/

/*@media screen and (max-width: 850px), screen and (orientation: landscape) {*/
    /*.slideshow .content-left {*/
        /*width: 40vw;*/
        /*bottom: auto;*/
        /*top: 0;*/
        /*left: 0;*/
        /*height: 100vh;*/
        /*border-radius: 0;*/
    /*}*/

    /*.slideshow .content-right {*/
        /*width: 40vw;*/
        /*top: 0;*/
        /*right: auto;*/
        /*left: 0;*/
        /*height: 100vh;*/
        /*border-radius: 0;*/
    /*}*/

    /*.slideshow .desc {*/
        /*font-size: 16px;*/
    /*}*/
/*}*/

