html {
    background: #f8f9fa;
    box-sizing: border-box;
    font-family: var(--sinSerif);
    font-size: 100%;
}

body {
    background: #f8f9fa;
    overflow-x: hidden;
    hyphens: auto;
}

.contenu {
    padding-top: 3rem;
}
#tutos h1 {
    font-family: Quicksand;
    font-size: 3em;
    font-weight: 500;
    z-index: 1;
    padding: 1em 0 0 0;
    text-align: center;
    color: #505050;
    text-align: center;
    text-transform: uppercase;
}
#tutos h2 {
    font-family: Quicksand;
    font-size: 2em;
    font-weight: 500;
    z-index: 1;
    padding: 0 0 0.5em 0;
    text-align: center;
    /* color: #505050; */
    color: #d30054;
    text-align: center;
    /* text-transform: uppercase; */
}

@media screen and (max-width: 576px) {
    #tutos h1 {
        font-size: 2em;
    }
}


body > p {
    font-size: 1.5rem;
    margin: 2rem 0 1rem calc(var(--size) * 0.5);
    font-weight: 200;
}

/********************/
/*       navbar     */
/********************/
.bg-dark {
    background-color: #B9004A !important;
}
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255);
}

#logo {
    display: inline-block;
    margin: 0;
}

/********************/
/* Grille des tutos */
/********************/
#tutos {
    background-color: #f8f9fa;
}
.tuto-grid-left2 img {
    max-height: 80px;
    display: inline-block;
    text-align: center;
}

a.article {
    max-width: 285px !important;
    display: block;
    color: rgb(33, 37, 41);
}

@media screen and (max-width: 768px) {
    a.article {
        max-width: 100% !important;
    }
}

a.article,
a.article:hover {
    color: rgb(33, 37, 41);
    text-decoration: none;
}

.tuto-grid-left1 {
    transition: all 300ms ease-in-out;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.tuto-grid-left1:before {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid #d30054;
    border-right: 3px solid #d30054;
}

.tuto-grid-left1:after,
.tuto-grid-left1:before {
    content: "";
    width: 0;
    height: 0;
    visibility: hidden;
    position: absolute;
    transition: all 800ms ease-in-out;
    border-radius: 8px;
}

.tuto-grid-left1:after {
    top: 0;
    left: 0;
    border-top: 3px solid #d30054;
    border-left: 3px solid #d30054;
}

.tuto-grid-left1:hover:after,
.tuto-grid-left1:hover:before {
    width: 100%;
    height: 100%;
    visibility: visible;
}

.tuto-grid-left1:hover {
    cursor: pointer;
}

.tuto-grid-left2 h5 {
    /* color:#d30054; */
    color: var(--para);
    /* margin: 0em 0 0.5em; */
    margin: 0.2em 0 0 0;
    font-size: 1.2em;
    line-height: 1.5;
    font-weight: 600;
    text-transform: capitalize;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.tuto-grid-left2 p {
    color: var(--para);
    font-size: 17px;
    line-height: 26px;
    margin: 0;
}

.tuto-grid-left2 {
    padding: 1.5em 1em;
    border: none;
    background: white;
    text-align: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 200px;
}

