/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 4 sept. 2018, 09:48:02
    Author     : Arsene

*/

body{
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
}
.title{
    font-size: 25px;
    color: #FFFFFF;
    font-weight: bold;
    margin-bottom: 25px;
}

.item{
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 0;
    background-color: #FFFFFF;
    transition: tranform 0.3s;
    transform: translate3d(0, -1px, 0);
}

.item img{
    display: block;
    width: 100%;
    height: auto;
}

.items{
    position: relative;
}

.carousel{
    position: relative;
}
.carousel__container{
    transition: transform 0.3s;
    transform: translate3d(0, 0, 0);
}

.carousel__item{
    float: left;
}

.carousel__container::after{
    content: '';
    clear: both;
    display: table;
}

.carousel__next, .carousel__prev{
    position: absolute;
    width: 40px;
    height: 40px;
    background: #FFFFFF url('../images/forward-50.png') center center no-repeat;
    background-size: 20px 20px;
    border-radius: 50%;
    top: 60%;
    right: 0px;
    margin-top: -20px;
    box-shadow: 0 15px 35px #3232321a, 0 5px 15px #0000001a;
    cursor: pointer;
    transition: transform 0.3s;
}
.carousel__prev{
    background-image: url('../images/back-50.png');
    right: auto;
    left: 0px;
}
.carousel__next:hover, .carousel__prev:hover{
    transform: scale(1.2);
}

