@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins/Poppins-Thin.ttf');
    font-weight: 100;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins/Poppins-Light.ttf');
    font-weight: 200;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins/Poppins-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins/Poppins-Medium.ttf');
    font-weight: 500;
}

/* STYLE PAR DEFAUT */

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #2a354f;
    font-size: 1rem;
}


/* COULEUR DU THEME */

.txt-orange {
    color: #f39200;
    transition: all .5s ease-in-out;
}

.txt-vert {
    color: #11ab7c;
}

.bg-orange {
    background: #f39200;
}

.bg-vert {
    background: #11ab7c;
}

.bg-bleu-nuit {
    background: #2a354f;
}

.fw-300 {
    font-weight: 300;
}

.fw-500 {
    font-weight: 300;
}

.fw-600 {
    font-weight: 300;
}


/* STYLES BOUTONS */

.btn-orange {
    background: #f39200;
    color: #fff;
    padding: 10px;
    transition: all .5s ease-in-out;
}

.btn-vert {
    background: #11ab7c;
    color: #fff;
    padding: 10px;
    transition: all .5s ease-in-out;
}

.btn-orange:hover,
.btn-vert:hover {
    background-color: #95a5a6;
    color: #fff;
    transform: translate(0, -1px);
}


/* STYLE CUSTOMISER */

#header {
    background: url("/assets/img/banner.jpg") fixed center center/cover;
    position: relative;
}

#header::before {
    position: absolute;
    content: "";
    background: #2a354f;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .5;
    z-index: 0;
}

#header-2 {
    background: #1d6f65;
}

#hero-image {
    padding: 150px 0;
}

#banner {
    padding: 70px 0;
}

.overlay-dark::before {
    position: absolute;
    content: "";
    background: #2a354f;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .5;
    z-index: 0;
}

#questions {
    padding: 70px 0;
}

#questions ul li {
    color: #66799e;
}

#footer {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #2a354f;
}

#footer ul {
    list-style-type: none;
    padding: 0;
}

#footer ul>li {
    padding: 5px 0;
}

#footer ul>li a {
    color: #66799e;
    transition: color .3s ease-in-out;
}

#footer ul>li a:hover {
    text-decoration: none;
    color: #fff;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #f39200;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #f39200 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* 
CODE HTML 
<div class="lds-ring"><div></div><div></div><div></div><div></div></div>

*/


/*  */