body{
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto;
    color:#333333;
    height: 100vh;
}

p{
    margin-bottom: 18px;
}

h1, h2, h3{
    margin-top:27px;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Sections */

.section{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100vw;
}

.section__el--mauve{
    background: -moz-linear-gradient(top, #580088 0%, #be00bf 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #580088 0%,#be00bf 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #580088 0%,#be00bf 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#580088', endColorstr='#be00bf',GradientType=0 ); /* IE6-9 */

    color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
}

.section__el--mauve:after{
    content: "";
    width: 100%;
    height: 20vh; /*Taille du background blanc : img supperposée */
    background-color: #fff;
    display: block;
    position: absolute;
    bottom: -20px;
    left: 0;
}

/* Quote */

/* David Bowie "- 50 Birthday Concert -" At Madison Square Garden 1997 1h 46 min 35 sec*/

.el__quote{
    margin: 0 auto;
    width: 70%;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
    margin-top: 12vh;
}

.el__quote p:before{
    content: "“ ";
}

.el__quote p:after{
    content: " ”";
}

/* Logo */

.el__logo{
    width: 70px;
    height: 70px;
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
}

/* Image */

.el__img{
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 20px 0 rgba(0,0,0,.25);
    position: relative;
    z-index: 10;
}

/* Main text */

.main__el{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.main__el p span:hover{
    color:#580088;
}

/* Title */

.el__title{
    font-size: 30px;
}

.title{
    font-size: 27px;
    color: #580088;
}

.title--small{
    font-size: 24px;
    color: #be00bf;
}
/* Button */

.el__btn{
    width: 20%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    background: #be00bf;
    color: #fff;
    padding:10px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 2px 3px 10px rgba(0,0,0,.25);
}

.el__btn:hover{
    background:#580088;
}

/* Footer */

footer{
    height: 10vh;
    width: 100vw;
    margin-top: 3vh;

    background: -moz-linear-gradient(top, #580088 0%, #be00bf 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #580088 0%,#be00bf 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #580088 0%,#be00bf 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#580088', endColorstr='#be00bf',GradientType=0 ); /* IE6-9 */
}

.footer{
    display: flex;
    justify-content: space-around;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__el{
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: auto;
}

.footer__el img{
    width: 100%;
}

/* Link */

a{
    text-decoration: none;
    color: inherit;
}

.link{
    color: #be00bf;
}

/* Layout */

span{
    color:#be00bf;
}

/* Social */

i{
    color: #fff;
}

.arrow{
    display: none;
}



/* Responsive */

/* Tablette */

@media only screen and (min-width: 600px){
    .el__img{
        max-width: 50%;
    }

    .el__quote{
        text-align: center;
    }

    .el__quote, .main__el{
        width: 50%;
    }

    .main__el--resp{
        width: 85%;
    }
    /* Liste */

    .list{
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-content: flex-start;
    }

    .list__el{
        width: 45%;
    }

    .list__el:last-child{
        margin-bottom: 5%;
    }
}

/* Desktop */

@media only screen and (min-width: 1050px){
    .section{
        flex-direction: row;
        height: 100vh;
    }

    .section__el--mauve{
        display: block;
        width: 50%;
        position: relative;
    }

    /* Hover */

    .sliding {
        display: inline-block;
        position: relative;
    }
    .sliding:after {
        content: '';
        display: block;
        margin: auto;
        height: 2px;
        width: 0px;
        background: transparent;
        transition: width .5s ease, background-color .5s ease;
    }
    .sliding:hover:after {
        width: 100%;
        background: #be00bf;
    }

    .el__logo{
        float: left;
        margin-left: 25px;
        margin-top: 15px;
    }

    .el__quote{
        text-align: left;
        font-size: 20px;
        position: absolute;
        top: -1vh;
        left: 47vw;
        color:#333333;
        width: 90%;
        z-index: 30;
        margin-top:20vh;

    }

    .el__img{
        float: right;
        max-width: 70%;
        clear: both;
        margin-right: -10vw;
        margin-top: 17vh;
    }

    .section__el--mauve:after{
        width: 0;
        height: 0;
    }

    .section__el{
        clear: both;
    }

    .section__el--white{
        display: flex;
    }

    .main__el{
        margin: auto;
    }

    footer{
        margin: 0;
        height: 40px;
        width: 20vw;
        position: absolute;
        bottom: 18vh;
        right: 22vw;
        background: transparent;
    }

    i{
        color:#333333;
    }
    /* Anim - transition */

    i:hover{
        transform: scale(1.5);
        transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .twitter:hover{
        color: #00aced;
    }

    .medium:hover{
        color: #282828;
    }

    .pinterest:hover{
        color: #c40000;
    }

    .linkedin:hover{
        color: #0072b6;
    }

    .anim:hover {
        stroke-dasharray: 1600;
        stroke-dashoffset: 1600;
        animation: anim 5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    @keyframes anim {
        from {
            stroke-dashoffset: 1600;
        }
         to {
            stroke-dashoffset: 0;
        }
    }

    .arrow{
        display: block;
        background-image: url(img/arrow.svg);
        background-repeat: no-repeat;
        background-size: contain;
        width: 25px;
        height: 25px;
        white-space: nowrap;
        text-indent: 100%;
        overflow: hidden;
        margin: 0 auto;
        cursor: pointer;
        position: absolute;
        bottom: 7vh;
        right: 31vw;
    }

    .arrow:hover{
        background-image: url(img/arrowhover.svg);
    }
}

@media only screen and (min-width: 1200px){
    .el__quote{
        left: 59vh;
    }
}

@media only screen and (min-width: 1300px){
    .el__quote{
        left: 72vh;
    }
}


@media only screen and (min-width: 1440px){
    .el__quote{
        top: -1vh;
        left: 79vh;
        width: 60%;
    }
}

/* Plus grande taille d'écran */

@media only screen and (min-width: 1500px){
    .el__quote{
        left: 54.5vw;
    }
}