/**
* Style de notre block
*/
.text-simple.bg-color{
    background-color: #1A2C17;
}

.text-simple.bg-color h1,
.text-simple.bg-color h2,
.text-simple.bg-color p:not(.uptitle) {
    color: #FFFFFF;
}

.text-simple.bg-texture{
    background: url(../images/noise.png);
}

.text-simple {
    padding: 32px 20px;
}

@media screen and (min-width:768px) {
    .text-simple{
        padding: 64px 112px;
    }
}

.text-simple .uptitle{
    text-align: center;
}

.text-simple h1{
    text-align: center;
    margin-bottom: 32px;
    max-width: 750px;
    margin: auto auto 32px auto;
}

.text-simple h2{
    text-align: center;
    max-width: 650px;
    margin: auto;
}

@media screen and (min-width:768px) {
    .text-simple h2{
        line-height: 130%;
    }
}

.text-simple p {
    max-width: 910px;
    margin: auto;
}

.text-simple p:not(.uptitle){
    text-align: center;
    font-size: 16px;
}

.text-simple .uptitle + h2{
    margin-top: 8px;
}

.text-simple h2 + p{
    margin-top: 32px;
}

.text-simple a{
    color: #D8B465;
    text-decoration: underline;
}

@media (hover: hover) {
    .text-simple a:hover{
        opacity: 0.5;
    }
}