.jumbotron {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.jumbotron span {
    margin: 0px 20%;
    text-align: center;
}

.showcase {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 5%;
}

.showcase img {
    width: 30%;
}

.showcase img:nth-child(2){
    width: 40%;
}

.subtitle {
    text-align: center;
}

.subtitle > span {
    color: #D32F2F;
}

.vouchers {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 5%;
}

.vouchers img {
    max-width: 128px;
    margin: 12px;
    height: auto;
}

.card {
    box-shadow: 0 2px 2px rgba(0,0,0,0.1);
    background-color: #FFFFFF;
    position: relative;
    border-radius: 24px;
}

.vertical {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.horizontal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.space {
    margin-top: 4px;
    margin-bottom: 4px;
}

.slideshow {
    position: relative;
    height: 50vh;
    margin: 50px 0;
}

.slideshow .review{
    display: none;
    padding: 0 60px;
    text-align: center;
}

.slideshow .review .author{
    color: #808080;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: #888;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    position: absolute;
    right: 0;
    border-radius: 3px 0 0 3px;
}