/**
 * Ce ficher CSS est dédié au styles de bases du site La petite Escalère.
 * Il contiendra les style de base de tous les éléments de base tel que le body, les listes, les titres etc.
 */


/* --------------------------------------------------
    
    GLOBAL
    
-------------------------------------------------- */

body {
    color: #3a3637;
    font-size: 13px;
    font-weight: 400;
    
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.5;

    background-color: #FFF;
}

body.is-opened {
    overflow-y: hidden; 
}




/* --------------------------------------------------

    INLINE

-------------------------------------------------- */

/* -------------------------
    HEADINGS
------------------------- */

h1, h2, h3{
    font-family: 'Oswald', sans-serif;
    line-height: 1.2;
    text-transform: uppercase;
}


h1 {
    margin: 0 0 36px;

    font-size: 2.92307em;
    font-weight: 700;
}

h2,
h3 {
    font-size: 1.61538em;
    font-weight: 700;
}

/* -------------------------
    LINKS
------------------------- */

a {
    color: #000;
    text-decoration: underline;
}

/* -------------------------
    STRONG
------------------------- */

strong {
    font-weight: 700;
}







/* --------------------------------------------------

    BLOCKS

-------------------------------------------------- */

/* -------------------------
    HORIZONTAL RULES
------------------------- */

hr {
    margin: 15px 0;
    border: 0 solid #dedede;
    border-top-width: 2px;
}

/* -------------------------
    PARAGRAPHS
------------------------- */

p {
    margin: 0 0 15px;
}

/* -------------------------
    LISTS
------------------------- */

ul,
ol {
    padding-left: 16px;
    margin: 0 0 15px;
}

ul li,
ol li {
    margin: 0 0 15px;
}

/* --------------------------------------------------
    IMG
-------------------------------------------------- */

img.align-left {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

img.align-right {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

blockquote {
    margin: 0;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 30px;
    padding-bottom: 40px;

    
    position: relative;

}

blockquote p {
    font-size: 24px !important;
    line-height: 27px !important;
    font-family: 'Canela Web';
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
}


blockquote:before , blockquote:after{
    content: '';
    display: block;
    width: 20px;
    height: 17px;
    background-repeat: no-repeat;
    position: absolute;
    background-size: cover;
   
    
}
blockquote:before {
    top: 25px;
    left: 70px;
    background-image: url(img/quote.svg);
}
blockquote:after {
    bottom: 70px;
    right: 70px;
    background-image: url(img/quote.svg);
    transform: rotate(180deg);
}

.no-svg blockquote:before , .no-svg blockquote:after {
    background-image: url(img/quote.svg);
    
}
/* --------------------------------------------------
    
    FORMULAIRES
    
-------------------------------------------------- */

input[type="text"] {
    padding: 6px 8px;
    background-color: #fff;
    border: none;
    box-sizing: border-box;
}

/* --------------------------------------------------
    
    CERCLE BOUTONS
    
-------------------------------------------------- */

.cercle-button {
    display: inline-block;

    padding: 11px 24px 11px 24px;

    /* padding-left: 20px;
    padding-right: 20px;
    padding-top: 11px;
    padding-bottom: 11px; */

    line-height: 13px;
    font-size: 13px;
    text-decoration: none;
    text-align: center;

    color: #4F26DB;
    border: 1px solid #4F26DB;
    border-radius: 5px;
}

.cercle-button:hover {
    color: #FFF;
    background-color: #4F26DB;
    border: none;
}

.cercle-button.button-full {
    color: #FFF;
    background-color: #4F26DB;
}
.cercle-button.bouton-green {
    color: #FFF;
    background-color: #4F26DB;
    border: none;
}

.alignleft {
    float: left;
    margin-right: 10px;
}
.alignright {
    float: right;
    margin-left: 10px;
}

.article-slide .cercle-button {
    float: left;
    clear: left;
}
.article-slide .cercle-button.button-full {
    float: none;
}

/* -------------------------
    CAPTION
------------------------- */

.wp-caption {
    background-color: #E6E6E6;
    padding: 10px;
}
.wp-caption img {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    height: auto;
}
