@charset "utf-8";

/* __________°°° ***** General ***** °°°__________ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
}

html,
body,
div,
ul {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100%;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #fafcfd;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}


/* __________°°° ***** Header ***** °°°__________*/
header {
    min-width: 1200px;
    width: 100%;
    height: 512px;
    background-color: #002a3b;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* _____ Background animation _____ */
.wrapper {
    width: 100%;
    height: 512px;
    overflow: hidden;
}

.wrapper span {
    height: 512px;
    position: absolute;
    top: 0;
    z-index: 1;
    background-color: transparent;
    box-shadow: 0 0 50px #85CBE6,
        0 0 10px #85CBE6,
        0 0 5px #85CBE6,
        0 0 20px #85CBE6;
    animation: bckg-animate 5s linear infinite;
    overflow: hidden;
    opacity: 0;
}

.wrapper span:nth-child(8) {
    left: 5%;
    animation-delay: 0.6s;
    width: 4px;
    height: 4px;
}

.wrapper span:nth-child(2) {
    left: 10%;
    animation-delay: 3s;
    width: 10px;
    height: 10px;
}

.wrapper span:nth-child(22) {
    left: 20%;
    animation-delay: 1s;
    width: 30px;
    height: 30px;
}

.wrapper span:nth-child(5) {
    left: 60%;
    animation-delay: 5s;
    width: 50px;
    height: 50px;
}

.wrapper span:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    width: 5px;
    height: 5px;
}

.wrapper span:nth-child(6) {
    left: 90%;
    animation-delay: 5s;
    width: 5px;
    height: 5px;
}

.wrapper span:nth-child(7) {
    left: 70%;
    animation-delay: 6s;
    width: 15px;
    height: 15px;
}

.wrapper span:nth-child(1) {
    left: 70%;
    animation-delay: 0.2s;
    width: 5px;
    height: 5px;
}

.wrapper span:nth-child(9) {
    left: 70%;
    animation-delay: 2s;
    width: 20px;
    height: 20px;
}

.wrapper span:nth-child(10) {
    left: 20%;
    animation-delay: 3s;
    width: 5px;
    height: 5px;
}

.wrapper span:nth-child(11) {
    left: 70%;
    animation-delay: 1.5s;
    width: 35px;
    height: 35px;
}

.wrapper span:nth-child(12) {
    left: 7%;
    animation-delay: 1.5s;
    width: 50px;
    height: 50px;
}

.wrapper span:nth-child(13) {
    left: 25%;
    animation-delay: 0.5s;
    width: 40px;
    height: 40px;
}

.wrapper span:nth-child(14) {
    left: 90%;
    animation-delay: 5s;
    width: 35px;
    height: 35px;
}

.wrapper span:nth-child(15) {
    left: 50%;
    animation-delay: 3s;
    width: 60px;
    height: 60px;
}

.wrapper span:nth-child(16) {
    left: 60%;
    animation-delay: 0.2s;
    width: 25px;
    height: 25px;
}

.wrapper span:nth-child(17) {
    left: 40%;
    animation-delay: 0.8s;
    width: 10px;
    height: 10px;
}

.wrapper span:nth-child(18) {
    left: 35%;
    animation-delay: 2s;
    width: 25px;
    height: 25px;
}

.wrapper span:nth-child(19) {
    left: 25%;
    animation-delay: 1.8s;
    width: 55px;
    height: 55px;
}

.wrapper span:nth-child(20) {
    left: 80%;
    animation-delay: 4s;
    width: 55px;
    height: 55px;
}

.wrapper span:nth-child(21) {
    left: 75%;
    animation-delay: 1.8s;
    width: 35px;
    height: 35px;
}

.wrapper span:nth-child(3) {
    left: 75%;
    animation-delay: 1.5s;
    width: 105px;
    height: 105px;
}

.wrapper span:nth-child(23) {
    left: 15%;
    animation-delay: 1.2s;
    width: 100px;
    height: 100px;
}

.wrapper span:nth-child(24) {
    left: 50%;
    animation-delay: 1.8s;
    width: 80px;
    height: 80px;
}

.wrapper span:nth-child(25) {
    left: 40%;
    animation-delay: 2.8s;
    width: 90px;
    height: 90px;
}

.wrapper span:nth-child(26) {
    left: 90%;
    animation-delay: .8s;
    width: 90px;
    height: 90px;
}

.wrapper span:nth-child(27) {
    left: 85%;
    animation-delay: 1s;
    width: 70px;
    height: 70px;
}

.wrapper span:nth-child(28) {
    left: 85%;
    animation-delay: 1.8s;
    width: 20px;
    height: 20px;
}


/* _____ Navigation bar & Intro _____ */
/* General */
#overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

/* Navigation bar */
#navigation-bar {
    width: 100%;
    height: 128px;
    display: flex;
    gap: 24px;
    transition: background-color 1s ease;
}

#navigation-bar.scrolled {
    position: fixed;
    top: 0;
    background-color: #002a3b !important;
    opacity: 1;
    z-index: 99;
}

/* Logo */
#logo {
    width: 20%;
    height: 100%;
    padding: 12px 12px 12px 32px;
}

#logo img {
    width: auto;
    height: 100%;
}

/* Navigation menu */
#navigation-menu {
    width: 60%;
    height: 100%;
}

#menu {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
}

.menu-item {
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-item :hover {
    color: #12BAFB;
    cursor: pointer;
}

.menu-item a {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

#sub-menu {
    display: none;
    background-color: #fff;
    border-top: #85CBE6 2px solid;
    box-shadow: #002a3b 0px 2px 5px -1px, #002a3b 0px 1px 1.5px -0.5px;
    border-radius: 5px;
    height: auto;
    width: 200px;
    position: absolute;
    top: 80px;
    padding: 16px 0;
}

#sub-menu a {
    color: #000;
    font-size: 18px;
    font-weight: 300;
}

#sub-menu-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 8px;
}

#sub-menu-content li :hover {
    color: #12BAFB;
    font-weight: 500;
}

/* Devis button */
#button {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#navigation-button {
    width: 200px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    background-color: #fff;
    border-radius: 24px;
    font-size: 20px;
    font-weight: 500;
    color: #004560;
    transition: 0.3s ease;
}

#navigation-button:hover {
    background-color: #004560;
    border: 1.5px solid #85CBE6;
    box-shadow: 0 2px 5px #85CBE6;
    color: #fff;
    fill: #fff;
}


/* Intro */
#intro {
    width: 100%;
    height: 384px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-top: 48px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

#intro h1 {
    font-size: 48px;
    font-weight: 500;
    /* -webkit-text-stroke: #85CBE6 1px; */
    /* text-shadow: #85CBE6 2px 1px 0; */
}

#intro p {
    width: 30%;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
}

#intro-button {
    display: flex;
    gap: 12px;
    align-items: center;
    background-color: #fff;
    border-radius: 24px;
    padding: 12px 32px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #004560;
    transition: 0.3s ease;
    z-index: 15;
}

#intro-button img {
    width: 24px;
    height: 24px;
    transition: width 0.3s ease, height 0.3s ease;
}

#intro-button:hover {
    background-color: #004560;
    border: 1.5px solid #85CBE6;
    box-shadow: 0 2px 5px #85CBE6;
    color: #fff;
}

#intro-button:hover img {
    width: 16px;
    height: 16px;
}


/* _____ Hamburger menu _____ */
#bckg-hamburger {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background-color: #004560;
    opacity: 0.8;
    z-index: 9;
}

.menu-hamburger {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    margin: 16px 32px 16px 0;
    z-index: 9999;
}

#hamburger {
    display: none;
}

.hamb-span {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    height: 24px;
}

.hamb-span span {
    background-color: #fff;
    height: 3.2px;
    width: 32px;
    border-radius: 12px;
    z-index: 999;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.cross>span:nth-child(1) {
    -webkit-transform:
        translateY(10px) rotate(45deg);
    -moz-transform:
        translateY(10px) rotate(45deg);
    transform:
        translateY(10px) rotate(45deg);
}

.cross>span:nth-child(2) {
    opacity: 0;
}

.cross>span:nth-child(3) {
    -webkit-transform:
        translateY(-10px) rotate(-45deg);
    -moz-transform:
        translateY(-10px) rotate(-45deg);
    transform:
        translateY(-10px) rotate(-45deg);
}

.menu-box {
    display: none;
    width: 60%;
    height: 100%;
    background-color: #022b3b;
    position: fixed;
    top: 0;
    right: 0;
    padding: 84px 0 8px 48px;
    z-index: 99;
}

.first-dd a,
.second-dd a {
    color: #fff;
    font-weight: 300;
}

.first-dd :hover,
.second-dd :hover {
    color: #12BAFB;
    font-weight: 500;
}

.first-dd {
    line-height: 36px;
    font-size: 17px;
}

.second-dd {
    line-height: 24px;
    font-size: 15px;
    padding-left: 12px;
}

#hamburger-dd {
    width: 100%;
    height: auto;
}

#hamburger-dd a {
    display: flex;
    align-items: center;
    gap: 12px;
}

#hamburger-chevron {
    width: 16px;
    height: 16px;
}

#hamburger-dd-content {
    display: none;
}

#hamburger-devis-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 32px;
    background-color: transparent;
    border: 1px solid #85CBE6;
    /* box-shadow: 0 2px 5px #85CBE6; */
    border-radius: 24px;
    font-size: 18px;
    transition: 0.3s ease;
    margin-top: 24px;
}

/* #hamburger-devis-button:hover {
    background-color: #004560;
} */

#hamburger-devis-button a {
    color: #fff;
}

#hamburger-devis-button a:hover {
    color: #12BAFB;
}


/* __________°°° ***** Body ***** °°°__________*/
/* _____ Présentation _____ */
.reasons {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 48px 12px;
    margin: 0 auto;
    position: relative;
}

#title-why {
    display: flex;
    background-color: #FFff;
    background: linear-gradient(180deg, #fafcfd 50%, #fff 50%);
    border-radius: 30px;
    top: 90px;
    font-family: 'Kanit';
    font-size: 42px;
    font-weight: 200;
    color: #004560;
    position: absolute;
    padding: 0 24px;
}

#reasons-details {
    max-width: 1200px;
    background-color: #ffff;
    border: 1.5px solid #85CBE6;
    box-shadow: 0 2px 5px #85CBE6;
    border-radius: 24px;
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 48px;
    gap: 48px;
    margin: 72px auto 0;
}


#reason-1,
#reason-2,
#reason-3 {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    height: 100%;
    top: 0;
}

.icon-why {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    height: 200px;
}

.icon-why img {
    width: 132px;
}

.title-reason {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px;
    height: 100px;
    color: #004560;
    font-size: 28px;
}

.text-reason {
    display: flex;
    padding: 24px;
    font-size: 18px;
    text-align: justify;
}

.text-reason-mob {
    display: none;
}


/* _____ Offres _____ */
.main-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    margin: 88px auto 0;
}

/* Site vitrine & Site e-commerce */
#offer-group {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid #85CBE6;
    box-shadow: 0 2px 5px #85CBE6;
    border-radius: 24px;
    margin: 0 12px 136px;
}

.offer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    align-items: center;
    padding: 48px 12px;
    margin-bottom: 48px;
}

.entrance-animation {
    height: 84px;
    overflow: hidden;
    padding: 0 12px;
}

.entrance-animation span {
    animation-name: glowing, slidein;
    animation-duration: 2s, 1s;
    animation-timing-function: linear, ease;

}

.entrance-animation {
    font-family: 'Kanit';
    font-size: 32px;
    font-weight: 500;
    color: #004560;
}

.entrance-animation span:nth-of-type(2) {
    animation-delay: .05s;
}

.entrance-animation span:nth-of-type(3) {
    animation-delay: .1s;
}

.entrance-animation span:nth-of-type(4) {
    animation-delay: .15s;
}

.entrance-animation span:nth-of-type(5) {
    animation-delay: .2s;
}

.entrance-animation span:nth-of-type(6) {
    animation-delay: .25s;
}

.entrance-animation span:nth-of-type(7) {
    animation-delay: .3s;
}

.entrance-animation span:nth-of-type(8) {
    animation-delay: .35s;
}

.entrance-animation span:nth-of-type(9) {
    animation-delay: .4s;
}

.entrance-animation span:nth-of-type(10) {
    animation-delay: .45s;
}

.entrance-animation span:nth-of-type(11) {
    animation-delay: .5s;
}

.entrance-animation span:nth-of-type(12) {
    animation-delay: .55s;
}

.entrance-animation span:nth-of-type(13) {
    animation-delay: .6s;
}

.entrance-animation span:nth-of-type(14) {
    animation-delay: .65s;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.content-box {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    padding: 0 24px;
}

.illustration {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: visible;
    padding: 0 12px;
}

.illustration img {
    width: 100%;
    height: auto;
    overflow: visible;
}

.description {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 18px;
    padding: 0 12px;
}

.description ul {
    line-height: 32px;
}

/* Bouton en savoir plus */
#learn-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 200px;
    height: 48px;
    background-color: #33BAF0;
    /*background: linear-gradient(90deg, #58C8DD 0%, #53A7DD 100%); */
    border-radius: 24px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    transition: 0.3s ease;
}

#learn-more:hover {
    background-color: #004560;
    background: #004560;
    border: 1.5px solid #85CBE6;
    box-shadow: 0 2px 5px #85CBE6;
}

.devis {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 52px;
}

.devis a {
    width: 480px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background-color: #E98209;
    border-radius: 32px;
    color: #fff;
    font-size: 24px;
    transition: 0.3s ease;
}

.devis a:hover {
    background-color: #004560;
    background: #004560;
    border: 1.5px solid #85CBE6;
    box-shadow: 0 2px 5px #85CBE6;
}

#i-devis {
    width: 32px;
    height: 32px;
}

/* _____ °°° ***** Footer ***** °°°_____ */
footer {
    width: 100%;
    height: 200px;
    background-color: #002a3b;
}

/* _____ Footer content _____ */
/* Contact */
.footer-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.contact-foot {
    width: 20%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
}

.contact-foot h5 {
    font-size: 16px;
    font-weight: 500;
}

#phone,
#mail {
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
}

#other {
    width: 20%;
}

#legal-mentions {
    width: 40%;
    padding: 24px;
}

#legal-mentions a {
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: end;
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
}

#legal-mentions a:hover {
    text-decoration: underline #12BAFB;
    color: #12BAFB;
    cursor: pointer;
}

/* _____ °°° ***** Keyframes ***** °°°_____ */
/* ___ Background animation ___ */
@-webkit-keyframes bckg-animate {
    0% {
        -webkit-transform: translateY(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    70% {
        opacity: 0.2;
    }

    100% {
        -webkit-transform: translateY(512px) rotate(360deg);
        opacity: 0;
    }
}

@-moz-keyframes bckg-animate {
    0% {
        -moz-transform: translateY(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    70% {
        opacity: 0.2;
    }

    100% {
        -moz-transform: translateY(512px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes bckg-animate {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    70% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(512px) rotate(360deg);
        opacity: 0;
    }
}



/* _________________________ Responsive _________________________ */
/* _________________________ Responsive 0 > 499px */
@media screen and (max-width: 499px) {

    /* __________°°° ***** Header 0 > 499px ***** °°°__________*/
    /* Head - BACKGROUND - 0 > 499px */
    header {
        min-width: 0;
        width: 100%;
        height: 256px;
    }

    .wrapper span:nth-child(2n + 1) {
        display: none;
    }

    /* Head - NAVIGATION BAR - 0 > 499px */
    #navigation-bar {
        height: 64px;
    }

    #navigation-menu {
        display: none;
    }

    #button {
        display: none;
    }

    /* Head - HAMBURGER - 0 > 499px */
    .menu-hamburger {
        display: block;
    }

    /* Head - INTRTODUCTION - 0 > 499px */
    #intro {
        height: 192px;
        padding-top: 24px;
        gap: 16px;
    }

    #intro h1 {
        font-size: 22px;
    }

    #intro p {
        width: 60%;
        font-size: 13px;
    }

    #intro-button {
        gap: 2px;
        padding: 4px 10px;
        font-size: 13px;
    }

    #intro-button img {
        width: 14px;
        height: 14px;
    }

    #intro-button:hover img {
        width: 10px;
        height: 10px;
    }

    /* __________°°° ***** Body 0 > 499px ***** °°°__________*/
    /* Body - PRESENTATION - 0 > 499px */
    .reasons {
        min-width: 0;
        gap: 16px;
        padding: 16px 8px;
    }

    #title-why {
        font-size: 18px;
        padding: 0 8px;
        top: 24px;
    }

    #reasons-details {
        flex-direction: column;
        gap: 8px;
        padding: 32px 8px;
        margin-top: 24px;
    }

    #header-why {
        width: 35%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #reason-1,
    #reason-2,
    #reason-3 {
        flex-direction: row;
        width: 100%;
    }

    .icon-why {
        height: 50px;
        padding: 12px;
    }

    .icon-why img {
        width: 40px;
    }

    .title-reason {
        height: 48px;
        font-size: 12px;
    }

    .text-reason {
        display: none;
    }

    .text-reason-mob {
        width: 75%;
        display: flex;
        padding: 24px;
        font-size: 14px;
        text-align: justify;
    }

    .text-reason-mob ul {
        line-height: 16px;
        text-align: left;
        list-style: disc;

    }

    /* Body - OFFERS - 0 > 499px */
    .main-content {
        min-width: 0;
        width: 100%;
        margin-top: 32px;
    }

    #offer-group {
        min-width: 0;
        margin: 0 8px 32px;
    }

    .offer {
        gap: 4px;
        padding: 8px;
        margin-bottom: 16px;
    }

    .entrance-animation {
        font-size: 14px;
        height: 42px;
    }

    .content-box {
        flex-direction: column;
        gap: 6px;
        padding: 0 4px;
    }

    .illustration {
        width: 50%;
    }


    .description {
        flex-direction: row;
        font-size: 12px;
    }

    .description ul {
        display: none;
    }

    #learn-more {
        width: 130px;
        height: 32px;
        font-size: 14px;
        gap: 4px;
    }

    #int-i-add {
        width: 12px;
        height: 12px;
    }

    .devis a {
        width: 240px;
        height: 32px;
        font-size: 14px;
        gap: 8px;
    }

    #i-devis {
        width: 18px;
        height: 18px;
    }

    /* __________°°° ***** Footer 0 > 499px ***** °°°__________*/
    /* Footer - GENERAL - 0 > 499px */
    footer {
        min-width: 0;
        height: 80px;
    }

    /* Footer - CONTACT - 0 > 499px */
    .contact-foot {
        width: 40%;
        gap: 4px;
        padding: 2px;
    }

    .contact-foot h5 {
        font-size: 10px;
    }

    #phone,
    #mail,
    #other,
    #legal-mentions a {
        font-size: 8px;
        gap: 2px;
    }

    #i-phone,
    #i-mail {
        width: 10px;
        height: 10px;
    }
}

/* _________________________ Responsive 500px > 661px */
@media screen and (min-width: 500px) and (max-width: 661px) {

    /* __________°°° ***** Header ***** °°°__________*/
    /* Head - BACKGROUND - 500 > 661px */
    header {
        min-width: 500px;
        width: 100%;
        height: 256px;
    }

    .wrapper span:nth-child(2n + 1) {
        display: none;
    }

    /* Head - NAVIGATION BAR - 500px > 661px */
    #navigation-bar {
        height: 64px;
    }

    #navigation-menu {
        display: none;
    }

    #button {
        display: none;
    }

    /* Head - HAMBURGER - 500px > 661px */
    .menu-hamburger {
        display: block;
    }

    /* Head - INTRTODUCTION - 500px > 661px */
    #intro {
        height: 192px;
        padding-top: 24px;
        gap: 16px;
    }

    #intro h1 {
        font-size: 24px;
    }

    #intro p {
        width: 60%;
        font-size: 14px;
    }

    #intro-button {
        gap: 2px;
        padding: 4px 10px;
        font-size: 14px;
    }

    #intro-button img {
        width: 16px;
        height: 16px;
    }

    #intro-button:hover img {
        width: 10px;
        height: 10px;
    }

    /* __________°°° ***** Body 500 > 661px ***** °°°__________*/
    /* Body - PRESENTATION - 500px > 661px */
    .reasons {
        min-width: 500px;
        gap: 16px;
        padding: 16px 8px;
    }

    #title-why {
        font-size: 22px;
        padding: 0 8px;
        top: 24px;
    }

    #reasons-details {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 32px 8px;
        margin-top: 24px;
    }

    #header-why {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #reason-1,
    #reason-2,
    #reason-3 {
        flex-direction: row;
        width: 100%;
    }

    .icon-why {
        height: 60px;
        padding: 12px;
    }

    .icon-why img {
        width: 60px;
    }

    .title-reason {
        height: 48px;
        font-size: 14px;
    }

    .text-reason {
        display: none;
    }

    .text-reason-mob {
        width: 50%;
        display: flex;
        padding: 24px;
        font-size: 12px;
        text-align: justify;
    }

    .text-reason-mob ul {
        line-height: 20px;
        text-align: left;
        list-style: disc;

    }

    /* Body - OFFERS - 500px > 661px */
    .main-content {
        min-width: 500px;
        width: 100%;
        margin-top: 32px;
    }

    #offer-group {
        max-width: 661px;
        margin: 0 8px 32px;
    }

    .offer {
        padding: 8px;
        margin-bottom: 16px;
    }

    .entrance-animation {
        font-size: 16px;
        height: 42px;
    }

    .content-box {
        padding: 0 4px;
    }

    .description {
        font-size: 12px;
    }

    .description ul {
        line-height: 16px;
    }

    #learn-more {
        width: 130px;
        height: 32px;
        font-size: 14px;
        gap: 4px;
    }

    #int-i-add {
        width: 12px;
        height: 12px;
    }

    .devis a {
        width: 240px;
        height: 32px;
        font-size: 14px;
        gap: 8px;
    }

    #i-devis {
        width: 18px;
        height: 18px;
    }

    /* __________°°° ***** Footer 500 > 661px ***** °°°__________*/
    /* Footer - GENERAL - 500px > 661px */
    footer {
        height: 80px;
    }

    /* Footer - CONTACT - 500px > 661px */
    .contact-foot {
        width: 30%;
        gap: 4px;
        padding: 2px;
    }

    .contact-foot h5 {
        font-size: 10px;
    }

    #phone,
    #mail,
    #other,
    #legal-mentions a {
        font-size: 8px;
    }

    #i-phone,
    #i-mail {
        width: 12px;
        height: 12px;
    }
}

/* _________________________ Responsive 662px > 767px */
@media screen and (min-width: 662px) and (max-width: 767px) {

    /* __________°°° ***** Header 662 > 767px ***** °°°__________*/
    /* Head - BACKGROUND - 662 > 767px */
    header {
        min-width: 662px;
        width: 100%;
        height: 350px;
    }

    .wrapper span:nth-child(2n + 1) {
        display: none;
    }

    /* Head - NAVIGATION BAR - 662px > 767px */
    #navigation-bar {
        height: 87.5px;
    }

    #menu {
        gap: 48px;
        padding-right: 32px;
    }

    .menu-item {
        width: auto;
    }

    .menu-item a {
        font-size: 15px;
    }

    #sub-menu {
        width: 120px;
        top: 55px;
        padding: 8px 0;
    }

    #sub-menu a {
        font-size: 13px;
    }

    #sub-menu-content {
        gap: 6px;
    }

    /* Head - NAVIGATION BAR - Devis button - 662px > 767px */
    #navigation-button {
        width: 110px;
        height: 36px;
        font-size: 15px;
    }

    /* Head - INTRTODUCTION - 662px > 767px */
    #intro {
        height: 262.5px;
        padding-top: 24px;
        gap: 16px;
    }

    #intro h1 {
        font-size: 30px;
    }

    #intro p {
        width: 40%;
        font-size: 16px;
    }

    #intro-button {
        gap: 6px;
        padding: 8px 16px;
        font-size: 15px;
    }

    /* __________°°° ***** Body 662 > 767px ***** °°°__________*/
    /* Body - PRESENTATION - 662px > 767px */
    .reasons {
        min-width: 662px;
        gap: 24px;
        padding: 24px 12px;
    }

    #title-why {
        font-size: 26px;
        padding: 0 12px;
        top: 28px;
    }

    #reasons-details {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 32px 8px;
        margin-top: 24px;
    }

    #header-why {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #reason-1,
    #reason-2,
    #reason-3 {
        flex-direction: row;
        width: 100%;
    }

    .icon-why {
        height: 80px;
        padding: 16px;
    }

    .icon-why img {
        width: 70px;
    }

    .title-reason {
        height: 48px;
        font-size: 16px;
    }

    .text-reason {
        display: none;
    }

    .text-reason-mob {
        width: 50%;
        display: flex;
        padding: 24px;
        font-size: 14px;
        text-align: justify;
    }

    .text-reason-mob ul {
        line-height: 24px;
        text-align: left;
        list-style: disc;

    }

    /* Body - OFFERS - 662px > 767px */
    .main-content {
        min-width: 662px;
        width: 100%;
        margin-top: 52px;
    }

    #offer-group {
        max-width: 767px;
        margin: 0 12px 54px;
    }

    .offer {
        padding: 16px;
        margin-bottom: 24px;
    }

    .entrance-animation {
        font-size: 20px;
        height: 52px;
    }

    .content-box {
        padding: 0 8px;
    }

    .description {
        font-size: 13px;
    }

    .description ul {
        line-height: 20px;
    }

    #learn-more {
        width: 140px;
        height: 36px;
        font-size: 15px;
    }

    #int-i-add {
        width: 14px;
        height: 14px;
    }

    .devis a {
        width: 320px;
        height: 38px;
        font-size: 16px;
    }

    #i-devis {
        width: 22px;
        height: 22px;
    }

    /* __________°°° ***** Footer 662 > 767px ***** °°°__________*/
    /* Footer - GENERAL - 662px > 767px */
    footer {
        height: 100px;
    }

    /* Footer - CONTACT - 662px > 767px */
    .contact-foot {
        width: 30%;
        gap: 6px;
        padding: 4px;
    }

    .contact-foot h5 {
        font-size: 12px;
    }

    #phone,
    #mail,
    #other,
    #legal-mentions a {
        font-size: 10px;
    }

    #i-phone,
    #i-mail {
        width: 16px;
        height: 16px;
    }
}

/* _________________________ Responsive 768px > 991px */
@media screen and (min-width: 768px) and (max-width: 991px) {

    /* __________°°° ***** Header 768 > 991px ***** °°°__________*/
    /* Head - BACKGROUND - 768 > 991px */
    header {
        min-width: 768px;
        height: 350px;
    }

    .wrapper span:nth-child(2n + 1) {
        display: none;
    }

    /* Head - NAVIGATION BAR - 768px > 991px */
    #navigation-bar {
        height: 87.5px;
    }

    #menu {
        gap: 48px;
        padding-right: 32px;
    }

    .menu-item {
        width: auto;
    }

    .menu-item a {
        font-size: 16px;
    }

    #sub-menu {
        width: 130px;
        top: 60px;
    }

    #sub-menu a {
        font-size: 14px;
    }

    #sub-menu-content {
        gap: 8px;
    }

    /* Head - NAVIGATION BAR - Devis button - 768px > 991px */
    #navigation-button {
        width: 130px;
        height: 38px;
        font-size: 16px;
    }

    /* Head - INTRTODUCTION - 768px > 991px */
    #intro {
        height: 262.5px;
        padding-top: 24px;
        gap: 16px;
    }

    #intro h1 {
        font-size: 36px;
    }

    #intro p {
        width: 40%;
        font-size: 18px;
    }

    #intro-button {
        gap: 8px;
        padding: 8px 16px;
        font-size: 16px;
    }

    /* __________°°° ***** Body 768 > 991px ***** °°°__________*/
    /* Body - PRESENTATION - 768px > 991px */
    .reasons {
        min-width: 768px;
        gap: 32px;
    }

    #title-why {
        font-size: 30px;
        padding: 0 12px;
    }

    #reasons-details {
        gap: 12px;
        padding: 16px;
    }

    .icon-why {
        height: 100px;
        padding: 16px;
    }

    .icon-why img {
        width: 80px;
    }

    .title-reason {
        height: 68px;
        font-size: 20px;
    }

    .text-reason {
        padding: 8px;
        font-size: 15px;
    }

    /* Body - OFFERS - 768px > 991px */
    .main-content {
        min-width: 768px;
        width: 100%;
    }

    #offer-group {
        max-width: 991px;
        margin: 0 12px 54px;
    }

    .offer {
        padding: 16px;
    }

    .entrance-animation {
        font-size: 24px;
    }

    .content-box {
        padding: 0 12px;
    }

    .description {
        font-size: 15px;
    }

    .description ul {
        line-height: 24px;
    }

    #learn-more {
        width: 160px;
        height: 38px;
        font-size: 16px;
    }

    #int-i-add {
        width: 16px;
        height: 16px;
    }

    .devis a {
        width: 360px;
        height: 42px;
        font-size: 18px;
    }

    #i-devis {
        width: 24px;
        height: 24px;
    }

    /* __________°°° ***** Footer 768 > 991px ***** °°°__________*/
    /* Footer - GENERAL - 768px > 991px */
    footer {
        height: 120px;
    }

    /* Footer - CONTACT - 768px > 991px */
    .contact-foot {
        width: 30%;
        gap: 8px;
        padding: 4px;
    }

    .contact-foot h5 {
        font-size: 12px;
    }

    #phone,
    #mail,
    #other,
    #legal-mentions a {
        font-size: 10px;
    }

    #i-phone,
    #i-mail {
        width: 18px;
        height: 18px;
    }

}

/* _________________________ Responsive 992px > 1199px */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    /* __________°°° ***** Header 992 > 1199px ***** °°°__________*/
    /* Head - BACKGROUND - 992 > 1199px */
    header {
        min-width: 992px;
        height: 450px;
    }

    /* Head - NAVIGATION BAR - 992px > 1199px */
    #navigation-bar {
        height: 112.5px;
    }

    #menu {
        gap: 64px;
        padding-right: 48px;
    }

    .menu-item {
        width: auto;
    }

    .menu-item a {
        font-size: 18px;
    }

    #sub-menu {
        width: 150px;
        top: 72px;
    }

    #sub-menu a {
        font-size: 16px;
    }

    #sub-menu-content {
        gap: 8px;
    }

    /* Head - NAVIGATION BAR - Devis button - 992px > 1199px */
    #navigation-button {
        width: 180px;
        height: 42px;
        font-size: 18px;
    }

    /* Head - INTRTODUCTION - 992px > 1199px */
    #intro {
        height: 337.5px;
        padding-top: 28px;
    }

    #intro h1 {
        font-size: 42px;
    }

    #intro p {
        font-size: 20px;
    }

    #intro-button {
        gap: 8px;
        padding: 8px 24px;
        font-size: 18px;
    }

    /* __________°°° ***** Body 992 > 1199px ***** °°°__________*/
    /* Body - PRESENTATION - 992px > 1199px */
    .reasons {
        min-width: 992px;
    }

    #title-why {
        font-size: 36px;
        padding: 0 16px;
    }

    #reasons-details {
        padding: 24px;
    }

    .icon-why {
        height: 150px;
    }

    .icon-why img {
        width: 100px;
    }

    .title-reason {
        font-size: 24px;
    }

    .text-reason {
        padding: 8px;
        font-size: 16px;
    }

    /* Body - OFFERS - 992px > 1199px */
    .main-content {
        min-width: 992px;
    }

    #offer-group {
        min-width: 992px;
        margin: 0 12px 54px;
    }

    .offer {
        padding: 24px;
    }

    .entrance-animation {
        font-size: 28px;
    }

    .content-box {
        padding: 0 16px;
    }

    .description {
        font-size: 16px;
    }

    #learn-more {
        width: 180px;
        height: 42px;
        font-size: 18px;
    }

    .devis a {
        width: 420px;
        height: 48px;
        font-size: 22px;
    }

    /* __________°°° ***** Footer 992 > 1199px ***** °°°__________*/
    /* Footer - GENERAL - 992px > 1199px */
    footer {
        height: 150px;
    }

    /* Footer - CONTACT - 992px > 1199px */
    .contact-foot {
        gap: 10px;
        padding: 8px;
    }

    .contact-foot h5 {
        font-size: 14px;
    }

    #phone,
    #mail,
    #other,
    #legal-mentions a {
        font-size: 12px;
    }

    #i-phone,
    #i-mail {
        width: 20px;
        height: 20px;
    }
}