/*body, html {*/
    /*margin: 0;*/
    /*padding: 0;*/
    /*min-height: 100%;*/
    /*overflow-x: hidden;*/
/*}*/

/*body {*/
    /*font-family: sans-serif;*/
    /*padding: 50px;*/
    /*background: linear-gradient(45deg, #f37646, #f3e946) center center no-repeat;*/
    /*line-height: 1.4;*/
/*}*/


.item {
    margin: 40px 40px;
    border-radius: 0.75rem;
    background-color: #fff;
    box-shadow: 0 15px 35px #3232321a,0 5px 15px #0000001a;
    transition: transform 0.3s;
    transform: translate3d(0, -1px, 0);
    display: table;
    border-collapse: separate;
    border-spacing: 5px;
}

.item:hover {
    /*transform: translate3d(0, -10px, 0);*/
}

.item img {
    display: block;
    width: 100%;
    height: auto;

}

.item-body {
    padding: 25px;
}

.item-text {
    display: table-cell;
    color: black;
    text-align: left;
    padding: 2em 0 0 2em;
    vertical-align: middle;
    width: 35%;
}
.item-text ul {
    margin-bottom: 2.5em;
}
.item-text li {
    list-style-type: square;
    margin-left: 1em;
}

hr {
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #fff;
    margin-top: 3px;
    margin-bottom: 14px;
}

.item-pict {
    display: table-cell;
    padding: 2em 1em;
}

.item-title {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #232323;
}

.item-label {
    font-weight: bold;
    margin-bottom: 0;
    color: #ccc;
}

.item-project-name {
    font-size: 1.5em;
    margin-bottom: 0em;
}

.item-project-link {
    background-color: grey;
    margin-bottom: 1.5em;
    width: inherit;
    text-align: center;
}

.item-desc {
    color: #585858;
}

.items {
    position: relative;
}


/* SLIDEBOX */

.slidebox {
    position: relative;
    overflow-x: hidden;
    border: 0;
}

.slidebox:active {
    border: 0;
}

.slidebox-ctn {
    border: 0;
    transition: transform 0.3s;
    transform: translate3d(0, 0, 0);	/* Pour éviter qu'une tranformation soit appliquée par défaut */
}

.slidebox-ctn::after {
    content: '';
    clear: both;
    display: table;
}

.slidebox-itm {
    float: left;
}

.slidebox-next, .slidebox-prev {
    color: white;
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid white;
    background: #262626 url(../svg-icons/next.svg) center center no-repeat;
    background-size: 30px 30px;
    border-radius: 50%;
    top: 50%;
    margin-top: -20px;
    right: 5px;
    box-shadow: 2px 2px 6px #3232321a;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
}

.slidebox-next:hover, .slidebox-prev:hover {
    transform: scale(1.2);
    background-color: #dd6666;
}

.slidebox-prev {
    right: auto;
    left: 5px;
    background: #262626 url(../svg-icons/prev.svg) center center no-repeat;
    background-size: 30px 30px;
}

.slidebox-next-hidden, .slidebox-prev-hidden {
    opacity: 0;

}

.slidebox-pagin {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    display: none;
}

.slidebox-pagin-btn {
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
    box-shadow: 0 2px 5px #3232321a;
    transition: transform 0.3s;
    cursor: pointer;
}

.slidebox-pagin-btn-active, .slidebox-pagin-btn:hover {
    transform: scale(1.4);
}

@media screen and (min-width: 800px) {

    .slidebox-pagin {
        display: block;
    }

}