﻿.carousel{
    height:100vh;
}
ul.slides {
    display: block;
    position: relative;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style: none;
}

.slides * {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

ul.slides input {
    display: none;
}


.slide-container {
    display: block;
}

.slide-image {
    display: block;
    position: absolute;
    min-width: 100%;
    height: 100vh;
    top: 0;
    opacity: 0;
    transition: all .7s ease-in-out;
}

.carousel-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    font-size: 100px;
    line-height: 600px;
    color: #fff;
    margin-top: 100px;
    font-family:Arial;
    font-weight: 300;
}

    .carousel-controls label {
        display: none;
        position: absolute;
        padding: 0 20px;
        opacity: 0;
        transition: opacity .2s;
        cursor: pointer;
    }

.slide-image:hover + .carousel-controls label {
    opacity: 0.5;
}

.carousel-controls label:hover {
    opacity: 1;
}

.carousel-controls .prev-slide {
    width: 30%;
    text-align: left;
    left: 0;
}

.carousel-controls .next-slide {
    width: 30%;
    text-align: right;
    right: 0;
}

.carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    z-index: 999;
    text-align: center;
}

    .carousel-dots .carousel-dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #fff;
        opacity: 0.5;
        margin: 10px;
    }

input:checked + .slide-container .slide-image {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease-in-out;
}

input:checked + .slide-container .carousel-controls label {
    display: block;
}

input#img-1:checked ~ .carousel-dots label#img-dot-1,
input#img-2:checked ~ .carousel-dots label#img-dot-2,
input#img-3:checked ~ .carousel-dots label#img-dot-3,
input#img-4:checked ~ .carousel-dots label#img-dot-4,
input#img-5:checked ~ .carousel-dots label#img-dot-5,
input#img-6:checked ~ .carousel-dots label#img-dot-6,
input#img-7:checked ~ .carousel-dots label#img-dot-7,
input#img-8:checked ~ .carousel-dots label#img-dot-8,
input#img-9:checked ~ .carousel-dots label#img-dot-9 {
    opacity: 1;
}


input:checked + .slide-container .nav label {
    display: block;
}
.award {
    position: relative;
    margin: -200px 50px 0px 0px;
    float: right;
}
@media (max-width: 780px) {
    .slide-image {
        height: 40vh !important;
    }

    .slides {
        height: 40vh!important;
    }

    .carousel {
        height: 40vh!important;
    }
    .carousel-dots {
       bottom: 10px;s
    }
    .carousel-dots .carousel-dot {
        margin:2px;
    }
    .award {
        position: relative;
        margin: -130px 20px 0px 50px;
        float: right;
    }
    .award img {
        width: 100%!important;
        margin-right: -40px;
    }
 }