html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
img {
    height: auto;
    max-width: 100%;
}
ol,
ul {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
@font-face {
    font-family: 'SdV';
    font-weight: normal;
    font-style: normal;
    src: url('fonts/SDVFontMedium.eot');
    src: url('fonts/SDVFontMedium.eot?#iefix') format('embedded-opentype'),
        url('fonts/SDVFontMedium.woff') format('woff'),
        url('fonts/SDVFontMedium.ttf') format('truetype'),
        url('fonts/SDVFontMedium.svg##{$file-path}') format('svg');
}
@font-face {
    font-family: 'Arial Narrow';
    font-weight: normal;
    font-style: normal;
    src: url('fonts/ArialNarrow.eot');
    src: url('fonts/ArialNarrow.eot?#iefix') format('embedded-opentype'),
        url('fonts/ArialNarrow.woff') format('woff'),
        url('fonts/ArialNarrow.ttf') format('truetype'),
        url('fonts/ArialNarrow.svg##{$file-path}') format('svg');
}
@font-face {
    font-family: 'Icons';
    font-weight: normal;
    font-style: normal;
    src: url('fonts/icomoon.eot');
    src: url('fonts/icomoon.eot?#iefix') format('embedded-opentype'),
        url('fonts/icomoon.woff') format('woff'),
        url('fonts/icomoon.ttf') format('truetype'),
        url('fonts/icomoon.svg#icomoon') format('svg');
}
@font-face {
    font-family: 'Static';
    font-weight: normal;
    font-style: normal;
    src: url('fonts/Static-Regular.eot');
    src: url('fonts/Static-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Static-Regular.woff') format('woff'),
        url('fonts/Static-Regular.ttf') format('truetype'),
        url('fonts/Static-Regular.svg##{$file-path}') format('svg');
}

html {
    /* 1rem = 10px */
    font-size: 62.5%;
}
body {
    font-family: 'Static';
    font-size: 1.8rem;
}
header {
    background: linear-gradient(270deg, #66bcce, #3e83cc, #1c2a4a);
    background-size: 400% 400%;
    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
    color: #fff;
    min-height: 500px;
    position: relative;
}

.site-header .cont-header {
    text-align: center;
    padding-top: 50px;
}

.site-header .cont-header img {
    height: 70px;
}

.site-header .cont-header p {
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 10px;
    font-size: 18px;
}

.site-header .cont-header h1 {
    font-size: 3.6rem;
    text-transform: uppercase;
    margin-top: 12px;
}

.site-header img.fusee {
    position: absolute;
    bottom: 56px;
    max-width: 470px;
}

/* illusration nuages */

@-webkit-keyframes AnimationName {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes AnimationName {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.site-header .illus-nuages {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 530px;
    overflow: hidden;
}
.site-header .illus-nuages .container-illus {
    position: relative;
    width: 2000px;
    height: 580px;
    margin: auto;
    /*animations*/
}
.site-header .illus-nuages .container-illus .nuage {
    background-color: #fff;
    position: absolute;
}
.site-header .illus-nuages .container-illus .taille-xs {
    width: 156px;
    height: 156px;
    border-radius: 100px;
}
.site-header .illus-nuages .container-illus .taille-s {
    width: 220px;
    height: 220px;
    border-radius: 150px;
    -webkit-animation: AnimationCercleS 6s ease-out 1;
    -moz-animation: AnimationCercleS 6s ease-out 1;
    animation: AnimationCercleS 6s ease-out 1;
}
@-webkit-keyframes AnimationCercleS {
    0% {
        height: 220px;
        width: 220px;
    }
    50% {
        height: 240px;
        width: 240px;
    }
    100% {
        height: 220px;
        width: 220px;
    }
}
@-moz-keyframes AnimationCercleS {
    0% {
        height: 220px;
        width: 220px;
    }
    50% {
        height: 240px;
        width: 240px;
    }
    100% {
        height: 220px;
        width: 220px;
    }
}
@keyframes AnimationCercleS {
    0% {
        height: 220px;
        width: 220px;
    }
    50% {
        height: 240px;
        width: 240px;
    }
    100% {
        height: 220px;
        width: 220px;
    }
}
.site-header .illus-nuages .container-illus .taille-m {
    width: 360px;
    height: 360px;
    border-radius: 300px;
}
.site-header .illus-nuages .container-illus .taille-l {
    width: 490px;
    height: 490px;
    border-radius: 300px;
}
.site-header .illus-nuages .container-illus .position-0 {
    left: -150px;
    bottom: -10px;
}
.site-header .illus-nuages .container-illus .position-1 {
    left: -90px;
    bottom: -190px;
}
.site-header .illus-nuages .container-illus .position-2 {
    left: 130px;
    bottom: -300px;
}
.site-header .illus-nuages .container-illus .position-3 {
    left: 480px;
    bottom: 70px;
}
.site-header .illus-nuages .container-illus .position-4 {
    left: 550px;
    bottom: -110px;
}
.site-header .illus-nuages .container-illus .position-5 {
    left: 840px;
    bottom: -50px;
}
.site-header .illus-nuages .container-illus .position-6 {
    left: 1000px;
    bottom: -94px;
}
.site-header .illus-nuages .container-illus .position-7 {
    left: 1240px;
    bottom: -90px;
}
.site-header .illus-nuages .container-illus .position-8 {
    left: 1200px;
    bottom: 180px;
}
.site-header .illus-nuages .container-illus .position-9 {
    left: 1300px;
    bottom: 30px;
}
.site-header .illus-nuages .container-illus .position-10 {
    left: 1540px;
    bottom: -120px;
}
.site-header .illus-nuages .container-illus .position-11 {
    left: 1730px;
    bottom: 40px;
}
.site-header .illus-nuages .container-illus .position-12 {
    left: 1980px;
    bottom: -10px;
}
.site-header .illus-nuages .container-illus .taille-m.position-4 {
    -webkit-animation: AnimationCercleM4 8s ease 1s 1;
    -moz-animation: AnimationCercleM4 8s ease 1s 1;
    animation: AnimationCercleM4 8s ease 1s 1;
}
@-webkit-keyframes AnimationCercleM4 {
    0% {
        height: 360px;
        width: 360px;
    }
    50% {
        height: 380px;
        width: 380px;
    }
    100% {
        height: 360px;
        width: 360px;
    }
}
@-moz-keyframes AnimationCercleM4 {
    0% {
        height: 360px;
        width: 360px;
    }
    50% {
        height: 380px;
        width: 380px;
    }
    100% {
        height: 360px;
        width: 360px;
    }
}
@keyframes AnimationCercleM4 {
    0% {
        height: 360px;
        width: 360px;
    }
    50% {
        height: 380px;
        width: 380px;
    }
    100% {
        height: 360px;
        width: 360px;
    }
}
.site-header .illus-nuages .container-illus .taille-m.position-1 {
    -webkit-animation: AnimationCercleM1 8s ease 0s 1;
    -moz-animation: AnimationCercleM1 8s ease 0s 1;
    animation: AnimationCercleM1 8s ease 0s 1;
}
@-webkit-keyframes AnimationCercleM1 {
    0% {
        height: 360px;
        width: 360px;
    }
    50% {
        height: 400px;
        width: 400px;
    }
    100% {
        height: 360px;
        width: 360px;
    }
}
@-moz-keyframes AnimationCercleM1 {
    0% {
        height: 360px;
        width: 360px;
    }
    50% {
        height: 400px;
        width: 400px;
    }
    100% {
        height: 360px;
        width: 360px;
    }
}
@keyframes AnimationCercleM1 {
    0% {
        height: 360px;
        width: 360px;
    }
    50% {
        height: 400px;
        width: 400px;
    }
    100% {
        height: 360px;
        width: 360px;
    }
}
.site-header .illus-nuages .container-illus .taille-xs.position-8 {
    -webkit-animation: AnimationCercleXS1 8s ease 0s 1;
    -moz-animation: AnimationCercleXS1 8s ease 0s 1;
    animation: AnimationCercleXS1 8s ease 0s 1;
}
@-webkit-keyframes AnimationCercleXS1 {
    0% {
        height: 156px;
        width: 156px;
    }
    50% {
        height: 170px;
        width: 170px;
    }
    100% {
        height: 156px;
        width: 156px;
    }
}
@-moz-keyframes AnimationCercleXS1 {
    0% {
        height: 156px;
        width: 156px;
    }
    50% {
        height: 170px;
        width: 170px;
    }
    100% {
        height: 156px;
        width: 156px;
    }
}
@keyframes AnimationCercleXS1 {
    0% {
        height: 156px;
        width: 156px;
    }
    50% {
        height: 170px;
        width: 170px;
    }
    100% {
        height: 156px;
        width: 156px;
    }
}

/* end illus */
#main {
    margin: auto;
    text-align: center;
    margin-top: -60px;
    max-width: 1120px;
    padding: 0 5% 200px;
}
.accroche {
    align-items: flex-end;
    display: flex;
    color: #083a57;
    font-size: 3.9rem;
    line-height: 1.3em;
    gap: 40px;
    margin-bottom: 7%;
    margin-inline: auto;
    max-width: 730px;
    position: relative;
    text-align: left;
}
.accroche .illus {
    height: auto;
    width: 182px;
    margin-bottom: 10px;
}
.title {
    font-weight: bold;
    color: #083a57;
    font-size: 5rem;
    line-height: 1em;
    margin-bottom: 50px;
}
.contenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px;
    position: relative;
}
.box {
    width: 33%;
    text-align: center;
    margin-bottom: 30px;
    border-right: solid 1px #c1c1c1;
    box-sizing: border-box;
    padding: 0 1%;
}
a.box {
    text-decoration: none;
    display: block;
}
a.box:hover {
    opacity: 0.5;
}
.box h2 {
    font-family: 'SdV';
    font-size: 4.5rem;
    white-space: nowrap;
}
.box h3 {
    color: #4c4c4c;
    text-transform: uppercase;
}
.box.produit h2 {
    color: #fb352f;
}
.box.service h2 {
    color: #4fa3c7;
}
.box:last-child,
.box:nth-child(3n) {
    border-right: solid 0px #4c4c4c;
}
.fanion {
    z-index: 1;
    position: absolute;
    right: 13px;
    top: -100px;
}
.fanion img {
    height: 110px;
}
.contact {
    color: #083a57;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.3em;
    margin-inline: auto;
    text-align: center;
}
.contact a {
    color: #083a57;
    text-decoration: none;
}
.contact a:hover span {
    text-decoration: underline;
}
.site-footer {
    background-color: #262a3a;
    padding: 55px 55px 0px 55px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.site-footer::after {
    content: '';
    position: absolute;
    transform: skewY(-4deg);
    transform-origin: top left;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #262a3a;
    z-index: -1;
}
.site-footer a {
    color: #fff;
    text-decoration: none;
}
.site-footer a:hover,
.site-footer a:focus {
    text-decoration: underline;
}
.site-footer a img {
    min-width: 150px;
}
.site-footer .sdv-infos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.site-footer .sdv-infos .logo {
    margin-right: 30px;
    padding-right: 30px;
    display: flex;
    align-items: center;
}
.site-footer .sdv-infos .logo img {
    height: auto;
    max-width: 150px;
}
.site-footer .sdv-infos .informations {
    font-family: Static, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: #fff;
    display: flex;
}
.site-footer .sdv-infos .informations p {
    margin: 0 0 10px;
}
.site-footer .sdv-infos .informations > * {
    padding: 0 30px;
    border-left: 1px solid #fff;
}
.site-footer .sdv-infos .informations > *:last-child {
    padding-right: 0;
}
.site-footer .sdv-infos .informations .widget_text {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}
.site-footer .sdv-infos .informations .widget_text p {
    line-height: 1.4em;
}
.site-footer .sdv-infos .informations .widget_text p:last-child {
    margin-bottom: 0;
}
.site-footer .sdv-infos .informations .widget_text strong {
    font-size: 2.4rem;
}
.site-footer .sdv-infos .informations .footer-navigation {
    display: flex;
    align-items: center;
}
.site-footer .sdv-infos .informations .socials {
    display: flex;
    align-items: center;
}
.site-footer .sdv-infos .informations .socials p {
    font-weight: bold;
    text-transform: initial;
    letter-spacing: initial;
    margin-bottom: 0;
    margin-right: 15px;
}
.site-footer .sdv-infos .informations .socials .menu {
    display: flex;
    justify-content: left;
}
.site-footer .sdv-infos .informations .socials .menu li {
    margin-right: 10px;
}
.site-footer .sdv-infos .informations .socials .menu li:last-child {
    margin-right: 0;
}
.site-footer .sdv-infos .informations .socials .menu .social a {
    position: relative;
    font-size: 0;
    line-height: 0;
    display: block;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.site-footer .sdv-infos .informations .socials .menu .social a::before {
    font-family: Icons, sans-serif;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    display: block;
}
.site-footer .sdv-infos .informations .socials .menu .social a:hover,
.site-footer .sdv-infos .informations .socials .menu .social a:focus {
    text-decoration: none;
    opacity: 0.75;
}
.site-footer .sdv-infos .informations .socials .menu .social.ico-link a:before {
    content: '\eac9';
}
.site-footer .sdv-infos .informations .socials .menu .social.ico-face a:before {
    content: '\ea91';
}
.site-footer .sdv-infos .informations .socials .menu .social.ico-twit a:before {
    content: '\ea96';
}
.site-footer .sdv-infos .informations .socials .menu .social.ico-inst a:before {
    content: '\ea92';
}
.site-footer .sdv-infos .informations #footer-menu {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
}
.site-footer .sdv-infos .informations #footer-menu li {
    margin-right: 20px;
}
.site-footer .sdv-infos .informations #footer-menu li:last-child {
    margin-right: 0;
}
.site-footer .sdv-contact {
    width: 40%;
}
.site-footer .bottom-menu {
    flex: 0 0 100%;
}
.site-footer .bottom-menu .menu {
    display: flex;
    font-family: Static, sans-serif;
    justify-content: center;
}
.site-footer .bottom-menu .menu li {
    padding: 15px;
    opacity: 0.5;
}
@media screen and (max-width: 1200px) {
    .site-footer .sdv-infos .informations .socials {
        display: block;
    }
    .site-footer .sdv-infos .informations .socials p {
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 1024px) {
    .site-header img.fusee {
        left: -50px;
    }
    .fanion {
        right: -17px;
        top: -121px;
    }
    .site-footer .sdv-infos {
        display: block;
    }
    .site-footer .sdv-infos .logo {
        margin-right: 0px;
        padding-right: 0px;
        margin-bottom: 30px;
    }
    .site-footer .sdv-infos .informations > *:first-child {
        border-left: 0;
        padding-left: 0;
    }
    .site-footer .sdv-infos .informations .socials {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    .site-footer .sdv-infos .informations .socials p {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .site-footer .sdv-contact {
        width: 60%;
    }
}
@media screen and (max-width: 915px) {
    .site-header img.fusee {
        left: -120px;
    }
    .box h2 {
        font-size: 2em;
    }
}
@media screen and (max-width: 800px) {
    .site-footer .sdv-infos .logo {
        justify-content: center;
    }
    .site-footer .sdv-infos {
        width: 100%;
    }
    .site-footer .sdv-infos .informations {
        flex-direction: column;
    }
    .site-footer .sdv-infos .informations > * {
        border-left: 0;
        padding: 20px 0;
        border-top: 1px solid #fff;
    }
    .site-footer .sdv-infos .informations .widget_text {
        justify-content: center;
    }
    .site-footer .sdv-infos .informations > *:first-child {
        border-top: 0;
        padding-top: 0;
    }
    .site-footer .sdv-infos .informations > *:last-child {
        padding-bottom: 0;
    }
    .site-footer .sdv-infos .informations .footer-navigation {
        padding: 0;
        justify-content: center;
    }
    .site-footer .sdv-infos .informations #footer-menu {
        flex-wrap: wrap;
    }
    .site-footer .sdv-infos .informations .socials {
        text-align: center;
    }
    .site-footer .sdv-infos .informations .socials .menu {
        justify-content: center;
    }
}
@media screen and (max-width: 720px) {
    header {
        min-height: 480px;
    }
    .site-header .cont-header p {
        font-size: 11px;
    }

    .site-header .cont-header h1 {
        font-size: 1.5em;
        margin-top: 20px;
    }
    .site-header img.fusee {
        position: absolute;
        bottom: 40px;
        max-width: 390px;
        left: -80px;
    }
    .contenu {
        display: block;
    }
    .box {
        border-right: solid 0px #c1c1c1;
        border-bottom: solid 1px #c1c1c1;
    }
    a.box {
        display: block;
        padding-bottom: 32px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .box:last-child {
        border: 0px;
    }
    .fanion {
        top: -130px;
        right: 23px;
    }
}

@media screen and (max-width: 650px) {
    .site-header .cont-header h1 {
        font-size: 1.2em;
        margin-top: 11px;
    }
    .site-header img.fusee {
        left: -101px;
    }
    #main {
        margin-top: -30px;
        padding-bottom: 130px;
    }
    .accroche {
        align-items: center;
        flex-direction: column-reverse;
        font-size: 3rem;
        gap: 20px;
        margin-bottom: 50px;
        text-align: center;
    }
    .accroche .illus {
        margin-bottom: 0;
    }
    .title {
        font-size: 4rem;
    }
    .contenu {
        margin-bottom: 30px;
    }
    .contact {
        font-size: 3.2rem;
    }
    .site-footer .bottom-menu .menu {
        display: block;
    }
    .site-footer .bottom-menu .menu li {
        text-align: center;
        letter-spacing: 0rem;
        line-height: 1.2;
    }
    .site-footer {
        padding: 55px 40px 0px 40px;
    }
}
