.carousel-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-bottom: 20vh;
}

@media screen and (min-width: 1600px) {
    .carousel-section {
    }
}

@media screen and (max-width: 670px) {
    .carousel-section {
    }
}

@media screen and (max-width: 390px) {
    .carousel-section {
    }
}

.carousel__controls,
.carousel__thumb {
    display: none;
}

.carousel__control {
    height: 30px;
    width: 30px;
    margin-top: -15px;
    top: -28%;
    position: absolute;
    display: block;
    cursor: pointer;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: black;
    outline: 0;
    z-index: 3;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media screen and (min-width: 1600px) {
    .carousel__control {
        top: -25%;
    }
}

@media screen and (max-width: 670px) {
    .carousel__control {
        top: -46%;
    }
}

@media screen and (max-width: 390px) {
    .carousel__control {
        top: -40%;
    }
}

.carousel__control:hover {
    border-width: 4px 4px 0 0;
    height: 35px;
    width: 35px;
}

.carousel__control--backward {
    left: -100px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

@media screen and (max-width: 670px) {
    .carousel__control--backward {
        left: 20px;
    }
}

@media screen and (max-width: 519px) {
    .carousel__control--backward {
        left: 0;
    }
}

@media screen and (max-width: 325px) {
    .carousel__control--backward {
        left: 9px;
    }
}

.carousel__control--forward {
    right: -100px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media screen and (max-width: 670px) {
    .carousel__control--forward {
        right: 20px;
    }
}

@media screen and (max-width: 519px) {
    .carousel__control--forward {
        right: 0;
    }
}

@media screen and (max-width: 325px) {
    .carousel__control--forward {
        right: 9px;
    }
}

.carousel__track {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0;
    margin: 0;
    margin-top: 145px;
}

.carousel__track .carousel__slide {
    display: block;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    transition: -webkit-transform 0.5s ease 0s;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    -o-transition: -o-transform 0.5s ease 0s;
    -moz-transition: transform 0.5s ease 0s, -moz-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s, -moz-transform 0.5s ease 0s, -o-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.carousel__slide {
    height: 100%;
    position: absolute;
    overflow-y: auto;
    overflow: hidden;
    -webkit-box-shadow: 0 30px 33px -25px black;
    -moz-box-shadow: 0 30px 33px -25px black;
    box-shadow: 0 30px 33px -25px black;
}

.carousel__thumb:checked ~ .carousel__slide {
    top: 0;
    left: 0;
    right: 0;
}

.carousel__indicators {
    width: 100%;
    text-align: center;
    z-index: 2;
}

@media screen and (min-width: 1600px) {
    .carousel__indicators {
        bottom: -70px;
    }
}

@media screen and (max-width: 745px) {
    .carousel__indicators {
        display: inline-flex;
    }
}

.carousel__indicator {
    display: inline-block;
    z-index: 2;
    cursor: pointer;
    opacity: 0.35;
    margin: 0 2.5px 0 2.5px;
    padding: 10px 15px;
    border-bottom: 1px solid;
    border-radius: 0px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #000000;
}

.carousel__indicator:hover {
    opacity: 0.75;
}

.carousel__thumb:nth-of-type(1):checked ~ .carousel__controls:nth-of-type(1) {
    display: block;
}

.carousel--thumb .carousel__indicators .carousel__indicator:nth-of-type(1) {
}

.carousel__thumb:nth-of-type(1):checked
~ .carousel__track
.carousel__slide:nth-of-type(5) {
    -webkit-transform: translateX(-105%);
    -moz-transform: translateX(-105%);
    -ms-transform: translateX(-105%);
    -o-transform: translateX(-105%);
    transform: translateX(-105%);
}

.carousel__thumb:nth-of-type(1):checked
~ .carousel__track
.carousel__slide:nth-of-type(2) {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.carousel__thumb:nth-of-type(1):checked
~ .carousel__track
.carousel__slide:nth-of-type(1) h2 {
    color: #f7f3ea;
    font-size: 200px;
}

.carousel__thumb:nth-of-type(1):checked
~ .carousel__indicators
.carousel__indicator:nth-of-type(1) {
    opacity: 1;
}

.carousel__track .carousel__slide:nth-of-type(1) {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    z-index: -2;
}

.carousel__thumb:nth-of-type(2):checked ~ .carousel__controls:nth-of-type(2) {
    display: block;
}

.carousel--thumb .carousel__indicators .carousel__indicator:nth-of-type(2) {
}

.carousel__track .carousel__slide:nth-of-type(2) {
    -webkit-transform: translateX(105%);
    -moz-transform: translateX(105%);
    -ms-transform: translateX(105%);
    -o-transform: translateX(105%);
    transform: translateX(105%);
}

.carousel__thumb:nth-of-type(2):checked
~ .carousel__track
.carousel__slide:nth-of-type(2) {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}

.carousel__thumb:nth-of-type(2):checked
~ .carousel__track
.carousel__slide:nth-of-type(2) h2 {
    color: #f7f3ea;
    font-size: 200px;
}

.carousel__thumb:nth-of-type(2):checked
~ .carousel__track
.carousel__slide:nth-of-type(5) {
    -webkit-transform: translateX(105%);
    -moz-transform: translateX(105%);
    -ms-transform: translateX(105%);
    -o-transform: translateX(105%);
    transform: translateX(105%);
    z-index: -2;
}

.carousel__thumb:nth-of-type(2):checked
~ .carousel__track
.carousel__slide:nth-of-type(1) {
    -webkit-transform: translateX(-105%);
    -moz-transform: translateX(-105%);
    -ms-transform: translateX(-105%);
    -o-transform: translateX(-105%);
    transform: translateX(-105%);
}

.carousel__thumb:nth-of-type(2):checked
~ .carousel__track
.carousel__slide:nth-of-type(3) {
    -webkit-transform: translateX(105%);
    -moz-transform: translateX(105%);
    -ms-transform: translateX(105%);
    -o-transform: translateX(105%);
    transform: translateX(105%);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.carousel__thumb:nth-of-type(2):checked
~ .carousel__track
.carousel__slide:nth-of-type(4) {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.carousel__thumb:nth-of-type(2):checked
~ .carousel__indicators
.carousel__indicator:nth-of-type(2) {
    opacity: 1;
}

.carousel__track .carousel__slide:nth-of-type(2) {
    -webkit-transform: translateX(105%);
    -moz-transform: translateX(105%);
    -ms-transform: translateX(105%);
    -o-transform: translateX(105%);
    transform: translateX(105%);
}

.carousel__thumb:nth-of-type(3):checked ~ .carousel__controls:nth-of-type(3) {
    display: block;
}

.carousel--thumb .carousel__indicators .carousel__indicator:nth-of-type(3) {
}

.carousel__thumb:nth-of-type(3):checked
~ .carousel__track
.carousel__slide:nth-of-type(3) {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}

.carousel__thumb:nth-of-type(3):checked
~ .carousel__track
.carousel__slide:nth-of-type(3) h2 {
    color: #f7f3ea;
    font-size: 200px;
}

.carousel__thumb:nth-of-type(3):checked
~ .carousel__track
.carousel__slide:nth-of-type(2) {
    -webkit-transform: translateX(-105%);
    -moz-transform: translateX(-105%);
    -ms-transform: translateX(-105%);
    -o-transform: translateX(-105%);
    transform: translateX(-105%);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.carousel__thumb:nth-of-type(3):checked
~ .carousel__track
.carousel__slide:nth-of-type(4) {
    -webkit-transform: translateX(105%);
    -moz-transform: translateX(105%);
    -ms-transform: translateX(105%);
    -o-transform: translateX(105%);
    transform: translateX(105%);
}

.carousel__thumb:nth-of-type(3):checked
~ .carousel__indicators
.carousel__indicator:nth-of-type(3) {
    opacity: 1;
}

.carousel__track .carousel__slide:nth-of-type(3) {
    -webkit-transform: translateX(-105%);
    -moz-transform: translateX(-105%);
    -ms-transform: translateX(-105%);
    -o-transform: translateX(-105%);
    transform: translateX(-105%);
    z-index: -1;
}

.carousel__thumb:nth-of-type(4):checked ~ .carousel__controls:nth-of-type(4) {
    display: block;
}

.carousel__slide:nth-of-type(4),
.carousel--thumb .carousel__indicators .carousel__indicator:nth-of-type(4) {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-position: center;
}

.carousel__thumb:nth-of-type(4):checked
~ .carousel__track
.carousel__slide:nth-of-type(4) {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.carousel__thumb:nth-of-type(4):checked
~ .carousel__track
.carousel__slide:nth-of-type(4) h2 {
    color: #f7f3ea;
    font-size: 200px;
}

.carousel__thumb:nth-of-type(4):checked
~ .carousel__track
.carousel__slide:nth-of-type(5) {
    -webkit-transform: translateX(105%);
    -moz-transform: translateX(105%);
    -ms-transform: translateX(105%);
    -o-transform: translateX(105%);
    transform: translateX(105%);
    z-index: 1;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.carousel__thumb:nth-of-type(4):checked
~ .carousel__track
.carousel__slide:nth-of-type(3) {
    -webkit-transform: translateX(-105%);
    -moz-transform: translateX(-105%);
    -ms-transform: translateX(-105%);
    -o-transform: translateX(-105%);
    transform: translateX(-105%);
    -webkit-box-shadow: 0 30px 33px -25px black;
    -moz-box-shadow: 0 30px 33px -25px black;
    box-shadow: 0 30px 33px -25px black;
}

.carousel__thumb:nth-of-type(4):checked
~ .carousel__indicators
.carousel__indicator:nth-of-type(4) {
    opacity: 1;
}

.carousel__track .carousel__slide:nth-of-type(4) {
    -webkit-transform: translateX(105%);
    -moz-transform: translateX(105%);
    -ms-transform: translateX(105%);
    -o-transform: translateX(105%);
    transform: translateX(105%);
    z-index: -2;
}

.carousel__thumb:nth-of-type(5):checked ~ .carousel__controls:nth-of-type(5) {
    display: block;
}

.carousel__thumb:nth-of-type(5):checked
~ .carousel__track
.carousel__slide:nth-of-type(1) {
    -webkit-transform: translateX(105%);
    -moz-transform: translateX(105%);
    -ms-transform: translateX(105%);
    -o-transform: translateX(105%);
    transform: translateX(105%);
}

.carousel__thumb:nth-of-type(5):checked
~ .carousel__track
.carousel__slide:nth-of-type(2) {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}

.carousel__thumb:nth-of-type(5):checked
~ .carousel__track
.carousel__slide:nth-of-type(3) {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}

.carousel__thumb:nth-of-type(5):checked
~ .carousel__indicators
.carousel__indicator:nth-of-type(5) {
    opacity: 1;
}

.carousel__track .carousel__slide:nth-of-type(5) {
    -webkit-transform: translateX(-105%);
    -moz-transform: translateX(-105%);
    -ms-transform: translateX(-105%);
    -o-transform: translateX(-105%);
    transform: translateX(-105%);
    z-index: -1;
}

.carousel__slide:nth-of-type(1) {
    background-position: right;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    border-radius: 50px;
    background-repeat: no-repeat;
    background-color: black;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.carousel__slide:nth-of-type(2) {
    background-position: right;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    border-radius: 50px;
    background-repeat: no-repeat;
    background-color: black;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.carousel__slide:nth-of-type(3) {
    background-position: right;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    border-radius: 50px;
    background-repeat: no-repeat;
    background-color: black;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.carousel__slide:nth-of-type(4) {
    background-position: right;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    border-radius: 50px;
    background-repeat: no-repeat;
    background-color: black;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.carousel {
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0;
    list-style: none;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    height: 75vh;
    width: 60vw;
}

@media screen and (max-width: 1600px) {
    .carousel {
        height: 85vh;
    }
}

@media screen and (max-width: 600px) {
    .carousel {
        width: 320px;
        height: 330px;
    }
}

@-webkit-keyframes grainAnimation {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    10% {
        -webkit-transform: translate(-5%, -5%);
        transform: translate(-5%, -5%);
    }
    20% {
        -webkit-transform: translate(-10%, 5%);
        transform: translate(-10%, 5%);
    }
    30% {
        -webkit-transform: translate(5%, -10%);
        transform: translate(5%, -10%);
    }
    40% {
        -webkit-transform: translate(-5%, 15%);
        transform: translate(-5%, 15%);
    }
    50% {
        -webkit-transform: translate(-10%, 5%);
        transform: translate(-10%, 5%);
    }
    60% {
        -webkit-transform: translate(15%, 0);
        transform: translate(15%, 0);
    }
    70% {
        -webkit-transform: translate(0, 10%);
        transform: translate(0, 10%);
    }
    80% {
        -webkit-transform: translate(-15%, 0);
        transform: translate(-15%, 0);
    }
    90% {
        -webkit-transform: translate(10%, 5%);
        transform: translate(10%, 5%);
    }
    100% {
        -webkit-transform: translate(5%, 0);
        transform: translate(5%, 0);
    }
}

@-moz-keyframes grainAnimation {
    0% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    10% {
        -webkit-transform: translate(-5%, -5%);
        -moz-transform: translate(-5%, -5%);
        transform: translate(-5%, -5%);
    }
    20% {
        -webkit-transform: translate(-10%, 5%);
        -moz-transform: translate(-10%, 5%);
        transform: translate(-10%, 5%);
    }
    30% {
        -webkit-transform: translate(5%, -10%);
        -moz-transform: translate(5%, -10%);
        transform: translate(5%, -10%);
    }
    40% {
        -webkit-transform: translate(-5%, 15%);
        -moz-transform: translate(-5%, 15%);
        transform: translate(-5%, 15%);
    }
    50% {
        -webkit-transform: translate(-10%, 5%);
        -moz-transform: translate(-10%, 5%);
        transform: translate(-10%, 5%);
    }
    60% {
        -webkit-transform: translate(15%, 0);
        -moz-transform: translate(15%, 0);
        transform: translate(15%, 0);
    }
    70% {
        -webkit-transform: translate(0, 10%);
        -moz-transform: translate(0, 10%);
        transform: translate(0, 10%);
    }
    80% {
        -webkit-transform: translate(-15%, 0);
        -moz-transform: translate(-15%, 0);
        transform: translate(-15%, 0);
    }
    90% {
        -webkit-transform: translate(10%, 5%);
        -moz-transform: translate(10%, 5%);
        transform: translate(10%, 5%);
    }
    100% {
        -webkit-transform: translate(5%, 0);
        -moz-transform: translate(5%, 0);
        transform: translate(5%, 0);
    }
}

@-o-keyframes grainAnimation {
    0% {
        -webkit-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    10% {
        -webkit-transform: translate(-5%, -5%);
        -o-transform: translate(-5%, -5%);
        transform: translate(-5%, -5%);
    }
    20% {
        -webkit-transform: translate(-10%, 5%);
        -o-transform: translate(-10%, 5%);
        transform: translate(-10%, 5%);
    }
    30% {
        -webkit-transform: translate(5%, -10%);
        -o-transform: translate(5%, -10%);
        transform: translate(5%, -10%);
    }
    40% {
        -webkit-transform: translate(-5%, 15%);
        -o-transform: translate(-5%, 15%);
        transform: translate(-5%, 15%);
    }
    50% {
        -webkit-transform: translate(-10%, 5%);
        -o-transform: translate(-10%, 5%);
        transform: translate(-10%, 5%);
    }
    60% {
        -webkit-transform: translate(15%, 0);
        -o-transform: translate(15%, 0);
        transform: translate(15%, 0);
    }
    70% {
        -webkit-transform: translate(0, 10%);
        -o-transform: translate(0, 10%);
        transform: translate(0, 10%);
    }
    80% {
        -webkit-transform: translate(-15%, 0);
        -o-transform: translate(-15%, 0);
        transform: translate(-15%, 0);
    }
    90% {
        -webkit-transform: translate(10%, 5%);
        -o-transform: translate(10%, 5%);
        transform: translate(10%, 5%);
    }
    100% {
        -webkit-transform: translate(5%, 0);
        -o-transform: translate(5%, 0);
        transform: translate(5%, 0);
    }
}

@keyframes grainAnimation {
    0% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    10% {
        -webkit-transform: translate(-5%, -5%);
        -moz-transform: translate(-5%, -5%);
        -o-transform: translate(-5%, -5%);
        transform: translate(-5%, -5%);
    }
    20% {
        -webkit-transform: translate(-10%, 5%);
        -moz-transform: translate(-10%, 5%);
        -o-transform: translate(-10%, 5%);
        transform: translate(-10%, 5%);
    }
    30% {
        -webkit-transform: translate(5%, -10%);
        -moz-transform: translate(5%, -10%);
        -o-transform: translate(5%, -10%);
        transform: translate(5%, -10%);
    }
    40% {
        -webkit-transform: translate(-5%, 15%);
        -moz-transform: translate(-5%, 15%);
        -o-transform: translate(-5%, 15%);
        transform: translate(-5%, 15%);
    }
    50% {
        -webkit-transform: translate(-10%, 5%);
        -moz-transform: translate(-10%, 5%);
        -o-transform: translate(-10%, 5%);
        transform: translate(-10%, 5%);
    }
    60% {
        -webkit-transform: translate(15%, 0);
        -moz-transform: translate(15%, 0);
        -o-transform: translate(15%, 0);
        transform: translate(15%, 0);
    }
    70% {
        -webkit-transform: translate(0, 10%);
        -moz-transform: translate(0, 10%);
        -o-transform: translate(0, 10%);
        transform: translate(0, 10%);
    }
    80% {
        -webkit-transform: translate(-15%, 0);
        -moz-transform: translate(-15%, 0);
        -o-transform: translate(-15%, 0);
        transform: translate(-15%, 0);
    }
    90% {
        -webkit-transform: translate(10%, 5%);
        -moz-transform: translate(10%, 5%);
        -o-transform: translate(10%, 5%);
        transform: translate(10%, 5%);
    }
    100% {
        -webkit-transform: translate(5%, 0);
        -moz-transform: translate(5%, 0);
        -o-transform: translate(5%, 0);
        transform: translate(5%, 0);
    }
}
