.page {
    padding-top: 186px;
}

/** background **/

.bg-dark-green {
    background: #5A6D69
}

.bg-green {
    background: #8AC232;
}

.bg-light-grey {
    background: #E4EDEB;
}

.bg-dark-grey {
    background: #3E3E3E;
}

.bg-white {
    background: white;
}

.bg-grey {
    background: #747474;
}

/** couleur texte **/

.text-black {
    color: #000000;
}

.text-grey {
    color: #3E3E3E;
}

.text-dark-grey {
    color: #9C9C9C;
}

.text-light-grey {
    color: #979797;
}

.text-green-grey {
    color: #7C9590;
}

.text-white {
    color: white;
}

.text-green {
    color: #8AC232;
}

.text-dark-green {
    color: #5A6D69;
}

.barre_grise {
    max-width: 150px;
    height: 2px;
    background: #707070;
}

/** police **/

a {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 100;
}

button {
    font-family: 'Roboto Condensed', sans-serif;
}

p, li, span {
    font-family: 'Roboto Regular', sans-serif;
}

h1, h2, h3 {
    font-family: 'Roboto Regular', sans-serif;
}

h2 {
    font-size: 38px;
}


/** interactive design **/

a:hover {
    text-decoration: none;
    color: inherit;
!important;
}

a {
    color: inherit !important;
}

.border {
    width: 25%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media screen and (min-width: 300px) and (max-width: 990px) {
    .page {
        padding-top: 120px;
    }

    .btn {
        padding: 11px 30px 11px 30px;
        border-radius: unset;
    }

    h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 990px){
    h1 {
        font-size: 1.8rem;
    }
}

#backToTop {
    display: none;
    position: fixed;
    background-color: #8AC232;
    opacity: 0.75;
    padding: 15px 18px;
    border-radius: 5px;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
}
#backToTop:hover {
    opacity: 1;
}