#container {
    position: relative;
    width: 100%;
    height: 100%;
}
/* Movies */
.movie-list {
    display: none;
}
.movie-trigger {
    opacity: 0.25;
    filter: alpha(opacity=25);
    cursor: pointer;
    transition: all 0.2s;
}
.movie-trigger.hover, .movie-trigger.active {
    opacity: 1;
    filter: alpha(opacity=100);
}
.movie-desc .h3 {
    line-height: 1;
}
.movie-title {
    font-family: 'Open Sans';
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1;
}
 @media screen and (min-width: 960px) {
    .movies-container {
        position: relative;
        width: 100%;
        padding-top: 28%;
    }
    .movie-list {
        display: block;
    }
    .movie-title {
        font-size: 4.2rem;
    }
    .movie-block {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: none;
    }
    .movie-desc {
        padding-top: 2.4rem;
        padding-left: 2.4rem;
        float: right;
    }
    .carousel.full-width .item-media {
        position: relative;
        padding-bottom: 32%;
    }
    .carousel iframe, .carousel img {
        absolute: top 0 left 0;
        width: 100%;
        height: 100%;
    }
}
@media screen and (min-width: 1280px) {
    .movie-title {
        font-size: 6rem;
    }
}
#couv {
    display: block;
    width: 100%;
}
#couv ul {
    position: relative;
    overflow: hidden;
}
#couv ul li {
    width: 100%;
    list-style: none;
}
#couv li:hover {
    position: relative;
    /* For Safari 3.1 to 6.0 */
    -webkit-transition-duration: 0.5s;
    -webkit-transition-timing-function: ease;
    /* Standard syntax */
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}
#couv ul:hover li:not(:hover) img {
    -webkit-transition-duration: 0.5s;
    -webkit-transition-timing-function: ease;
    position: relative;
    -webkit-filter: grayscale(100%) blur(2px);
    -moz-filter: grayscale(100%) blur(2px);
    -ms-filter: grayscale(100%) blur(2px);
    -o-filter: grayscale(100%) blur(2px);
    filter: grayscale(100%) blur(2px);
    -webkit-transition: all .5s;
    -moz-transition: all .5s);
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.book-detail {
    position: relative;
}
.book-detail:before, .book-detail:after {
    position: absolute;
    z-index: -1;
    content: "";
    background: url(../../images/svg/corner-1.svg) no-repeat 0;
    display: block;
    width: 120px;
    height: 120px;
}
.book-detail:before {
    top: 0;
    left: 0;
}
.book-detail:after {
    bottom: 0;
    right: 0;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
#sondage {
    margin: 0;
}
#back-biblio {
    background-size: cover;
    background-image: url(../../images/screen_biblio.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 300px;
}
#back-parodies {
    background-size: cover;
    background-image: url(../../images/screen_chap_4-2.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 300px;
}
#back-couv {
    background-size: cover;
    background-image: url(../../images/screen_chap_4-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat : no-repeat;
    position: relative;
    width: 100%;
    height: 300px;
}
#parodies li {
    overflow: hidden;
    position: relative;
    width: 32%;
    padding-top: 32%;
    float: left;
    margin: 0.5%;
    box-shadow: 0 0 5px rgba(0,0,0,.4);
    background-color: #141719;
    cursor: pointer;
}
#parodies li p {
    padding: 8%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
}
#parodies li img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.125;
    filter: alpha(opacity=12);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
#parodies li:hover img {
    opacity: 1;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
#parodies li:hover p {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#parodies .item-credit {
    z-index: 1;
    right: 0;
    left: auto;
    font-weight: normal;
    font-size: 1rem;
    text-transform: none;
}
#parodies li:hover .item-credit {
    background-color: #000000;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#parodies .li-vid {
    width: 65%;
}
 @media screen and (max-width: 768px) {
    #parodies {
        display: block;
        overflow: hidden;
    }
    #parodies li {
        padding-top: 0;
        width: 100%;
        transform: none;
        transition: none;
        display: block;
        float: left;
        margin-bottom: 2.4rem;
        box-shadow: 0 0 5px rgba(0,0,0,.4);
        background-color: transparent;
    }
    #parodies li img {
        width: 100%;
        height: auto;
        position: static;
        opacity: 1;
        filter: alpha(opacity=100);
        transform: none;
        transition: none;
    }
    #parodies li p {
        display: block;
        padding: 8%;
        position: static;
        transform: none;
        color: #333333;
        background-color: #ffffff;
    }
    #parodies li:hover p {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    #parodies .li-vid {
        width: 100%;
    }
    
    #parodies .item-credit {
        color: #333333;
        background-color: transparent;
    }
    #parodies li:hover .item-credit {
        transition: none;
        color: #333333;
        background-color: transparent;
    }
}
 @media screen and (min-width: 768px) and (max-width: 959px) {
    #parodies li {
        width: 49%;
        padding-top: 49%;
    }
    #parodies .li-vid {
        width: 100%;
    }
}
