header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
    top: 0;
    padding: 30px;
    padding-top: 20px;
    font-size: 40px;
    text-shadow: 5px 5px 12px rgba(0,0,0,0.25);
    z-index: 1;
}
section:hover .carousel-container {
    opacity: 0.1;
}
section .carousel-container:hover {
    opacity: 1;
}
.singlewrapper {
    display: flex;
    justify-content: center;
}
.single {
    width: 50%;
    position: relative;
}
figure {
    margin: 0;
    margin-bottom: -30px;
}
figcaption {
    position: relative;
    left: 52.25%;
    top: -75%;
    transform: rotate(-90deg);
    
    /* Safari */
    -webkit-transform: rotate(-90deg);
  
    /* Firefox */
    -moz-transform: rotate(-90deg);
  
    /* IE */
    -ms-transform: rotate(-90deg);
  
    /* Opera */
    -o-transform: rotate(-90deg);
    font-size: 20px;
}
.carousel {
    background: #F2F2F2;
}
  
.carousel-cell {
    width: 50%;
    height: 33.333vw;
    margin-right: 0;
}
.carousel-cell img,
.carousel-cell-half img,
.single img {
    width: 100%;
}
.text {
    padding: 30px;
    font-size: 40px;
    line-height: 1;
}
.credits {
    padding: 30px;
    font-size: 25px;
    line-height: 1;
}
.carousel-cell-half {
    width: 25%;
    height: 33.333vw;
    margin-right: 0;
}
.flickity-button-icon {
    display: none;
}
.flickity-button {
    position: absolute;
    background: transparent !important;
    border: none;
    color: #333;
}
.flickity-prev-next-button {
    top: 50%;
    width: 50% !important;
    height: 100% !important;
    border-radius: 0 !important;
    transform: translateY(-50%);
}
.flickity-prev-next-button.previous {
    left: 0 !important;
}
.flickity-prev-next-button.next {
    right: 0 !important;
}
.flickity-button:focus {
    outline: none !important;
    box-shadow: 0 0 0 0 black !important;
}
@media only screen and (max-width: 768px) {
    header {
        padding: 15px;
        padding-top: 10px;
        font-size: 20px;
    }
    .single {
        width: 100%;
    }
    figcaption {
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
        font-size: 10px;
    }
    .carousel-cell {
        width: 100%;
        height: 66.666vw;
        margin-right: 0;
    }
    .text {
        padding: 15px;
        font-size: 20px;
        line-height: 1;
    }
    .credits {
        padding: 15px;
        font-size: 10px;
        line-height: 1;
    }
    .carousel-cell-half {
        width: 50%;
        height: 66.666vw;
        margin-right: 0;
    }
    figure {
        margin: 0;
        margin-bottom: 0;
    }
    figcaption {
        text-align: center;
    }
}