﻿/* CAROUSEL */

#home-slider {
    overflow: hidden;
    position: relative;
}

    #home-slider .caption {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        /*margin-top: -104px;*/
        left: 0;
        right: 0;
        text-align: center;
        text-transform: uppercase;
        z-index: 15;
        font-size: 18px;
        font-weight: 300;
        color: #fff;
    }

        #home-slider .caption h1 {
            color: #fff;
            font-size: 60px;
            font-weight: 700;
            margin-bottom: 30px;
        }

.caption .btn-start {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 40px;
    border: 1px solid #6e6d6c;
    border-radius: 4px;
    margin-top: 40px;
}

    .caption .btn-start:hover {
        color: #fff
    }

    .caption span {
        font-size: inherit;
    }

.carousel-fade .carousel-inner .item {
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 2037px;
}

    .carousel-fade .carousel-inner .item:after {
        content: " ";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0,0,0,.7);
    }

.carousel-fade .carousel-inner .active {
    opacity: 1;
}

    .carousel-fade .carousel-inner .active.left,
    .carousel-fade .carousel-inner .active.right {
        left: 0;
        opacity: 0;
        z-index: 1;
    }

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-control {
    z-index: 2;
}

.left-control, .right-control {
    position: absolute;
    top: 50%;
    height: 51px;
    width: 51px;
    line-height: 48px;
    border-radius: 50%;
    border: 1px solid #fff;
    z-index: 20;
    font-size: 24px;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.left-control {
    left: -51px
}

.right-control {
    right: -51px;
}

    .left-control:hover,
    .right-control:hover {
        color: #fff;
    }

#home-slider:hover .left-control {
    left: 30px
}

#home-slider:hover .right-control {
    right: 30px
}

#home-slider .fa-angle-down {
    position: absolute;
    left: 50%;
    bottom: 50px;
    color: #fff;
    display: inline-block;
    width: 24px;
    margin-left: -12px;
    font-size: 24px;
    line-height: 24px;
    z-index: 999;
    -webkit-animation: bounce 3000ms infinite;
    animation: bounce 3000ms infinite;
}

.carousel-fade .carousel-inner .carousel-item:after {
    background-color: #000 !important;
    opacity: 0.5;
    height: 100%;
    display: block;
    content: '';
}

.carousel, .carousel-item {
    height: 500px;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% 50%;
}


    .carousel h2 {
        font-size: 2.75rem;
        color: #fff;
        font-weight: 600;
    }
