/*SLIDE BOX*/
.slide-container {
    width: 100%;
}

.slide-container > .box {
    background-color: white;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    height: 240px;

}

.slide-container > .box > .content {
    background-color: rgba(0, 0, 0, 0.71);
    color: white;
    padding: 20px;
    max-width: 300px;
    min-width: 300px;
}

.slide-container > .box > .content > .title {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
    display: block;
    cursor: pointer;
}

.slide-container > .box > .content > .title:hover{
    text-decoration: underline;
}

.slide-container > .box > .content > .sub-title {
    font-size: 14px;
    margin-bottom: 10px;
}

.slide-container > .circles {
    position: absolute;
    left: 105px;
    bottom: 10px;
}

.slide-container > .circles > .circle {
    display: inline-block;
    border: 2px solid white;
    height: 12px;
    width: 12px;
    background-color: white;
    cursor: pointer;
    border-radius: 50%;
    margin: 5px;
}

.slide-container > .circles > .circle.active {
    background-color: #3cb3e6;
}

.slide-container > div[data-slide] {
    display: none;
}


.slide-container .no-slides {
    background-color: white;
    display: flex;
    height: 240px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #777777;
    border: dashed 1px #3cb3e6;
}

.slide-anim {
    -webkit-animation: slideanim 2s;
    -moz-animation: slideanim 2s;
    -ms-animation: slideanim 2s;
    -o-animation: slideanim 2s;
    animation: slideanim 2s;
}


@keyframes slideanim {
    from {
        opacity: 0;
        background-position: 90% 90%;
    }
    to {
        opacity: 1;
        background-position: center center;
    }
}

@-moz-keyframes slideanim {
    from {
        opacity: 0.6;
        background-position: 90% 90%;
    }
    to {
        opacity: 1;
        background-position: center center;
    }
}

@-webkit-keyframes slideanim {
    from {
        opacity: 0.6;
        background-position: 90% 90%;
    }
    to {
        opacity: 1;
        background-position: center center;
    }
}

@-ms-keyframes slideanim {
    from {
        opacity: 0.6;
        background-position: 90% 90%;
    }
    to {
        opacity: 1;
        background-position: center center;
    }
}

@-o-keyframes slideanim {
    from {
        opacity: 0.6;
        background-position: 90% 90%;
    }
    to {
        opacity: 1;
        background-position: center center;
    }
}

/*-----------------------*/