/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* --------------------------------------------- CSS --------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* -------------------------------------------- IMPORT ------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

@font-face {
    font-family: "Gotham Bold";
    src: url(./fonts/Gotham-Bold.woff);
}
@font-face {
    font-family: "Gotham Book";
    src: url(./fonts/Gotham-Book.woff);
}
@font-face {
    font-family: "Gotham Light";
    src: url(./fonts/Gotham-Light.woff);
}
@font-face {
    font-family: "Gotham Medium";
    src: url(./fonts/Gotham-Medium.woff);
}
@font-face {
    font-family: "Dancing Regular";
    src: url(./fonts/DancingScript-Regular.ttf);
}
@font-face {
    font-family: "Dancing Bold";
    src: url(./fonts/DancingScript-Bold.ttf);
}
@font-face {
    font-family: "Caslon CP";
    src: url(./fonts/CaslonCP.otf);
}
@font-face {
    font-family: "Caslon Swash";
    src: url(./fonts/CaslonCPswash.otf);
}
@font-face {
    font-family: "C059";
    src: url(./fonts/C059-Roman.ttf);
}

/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* -------------------------------------------- GLOBAL ------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

* {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    height: 100vh;
    overflow: hidden;
}

h1 {
    color: white;
    position: absolute;
    width: 90%;
    text-align: center;
    margin: auto;
    font-family: "C059";
    opacity: 0;
    font-size: 2.5em !important;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    top: 25vh;
}

h2 {
    margin: 10px;
    font-family: "Caslon CP";
    font-size: 2em;
}

p {
    margin: 10px;
    font-family: "Gotham Book", serif;
}

h3 {
    margin: 10px;
    color: #1e5353;
    font-family: "Caslon CP";
    font-size: 1.5em;
}

h4 {
    margin: 10px;
    color: #1e5353;
    font-family: "Gotham Book", serif;
}

h5 {
    font-family: "Dancing Bold";
    color: #1e5353;
    font-size: 1.5em;
    padding-top: 20px;
}

h6 {
    font-family: "Gotham Book", serif;
    color: #1e5353;
    font-size: 1em;
    margin-top: 30px;
}

/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ------------------------------------------- KEYFRAMES ----------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

@keyframes anim1 {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}
@keyframes anim2 {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}
@keyframes anim3 {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
@keyframes animOpaScal {
    0% {
        opacity: 0;
        scale: 0;
    }
    70% {
        opacity: 1;
        scale: 1.05;
    }
    100% {
        opacity: 1;
        scale: 1;
    }
}
@keyframes animOpa {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes animOpaReverse {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes animOpaSimpleScale {
    0% {
        opacity: 0;
        scale: 0;
    }
    100% {
        opacity: 1;
        scale: 1;
    }
}
@keyframes animTranslateXN {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}
@keyframes animTranslateXP {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0%);
    }
}
.animh1 {
    animation-duration: 1.5s;
    animation-delay: 0.1s;
    animation-name: animOpa;
    animation-fill-mode: forwards;
}
.anim {
    animation-duration: 1s;
    animation-name: anim1;
    animation-fill-mode: forwards;
}
.anim2 {
    animation-duration: 1s;
    animation-name: anim2;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}
.anim3 {
    animation-duration: 1s;
    animation-name: anim3;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}
.animOpaReverse1 {
    animation-duration: 0.15s;
    animation-name: animOpaReverse;
    animation-fill-mode: forwards;
}
.animOpaReverse2 {
    animation-duration: 0.15s;
    animation-name: animOpaReverse;
    animation-delay: 0.15s;
    animation-fill-mode: forwards;
}
.animOpaReverse3 {
    animation-duration: 0.15s;
    animation-name: animOpaReverse;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}
.animOpaSimpleScale1 {
    animation-duration: 0.33s;
    animation-name: animOpaSimpleScale;
    animation-fill-mode: forwards;
}
.animOpaSimpleScale2 {
    animation-duration: 0.33s;
    animation-name: animOpaSimpleScale;
    animation-delay: 0.33s;
    animation-fill-mode: forwards;
}
.animOpaSimpleScale3 {
    animation-duration: 0.33s;
    animation-name: animOpaSimpleScale;
    animation-delay: 0.66s;
    animation-fill-mode: forwards;
}
.animAvantageOne {
    animation-duration: 1s;
    animation-name: animOpa;
    animation-fill-mode: forwards;
}
.animAvantageTwo {
    animation-duration: 1s;
    animation-name: animOpa;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}
.animAvantageThree {
    animation-duration: 1s;
    animation-name: animOpa;
    animation-delay: 0.66s;
    animation-fill-mode: forwards;
}
.animAvantageFour {
    animation-duration: 1s;
    animation-name: animOpa;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}
.animDivH3N {
    animation-duration: 1s;
    animation-name: animTranslateXN;
    animation-fill-mode: forwards;
}
.animDivH3P {
    animation-duration: 1s;
    animation-name: animTranslateXP;
    animation-fill-mode: forwards;
}
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* -------------------------------------------- HEADER ------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

nav {
    width: 100%;
    background: #1e535300;
    display: none;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 100;
    height: 80px;
}

#imgNavLogo {
    width: 60px;
    margin: 10px 0 10px 20px;
    cursor: pointer;
}
#pLogo {
    color: white;
    font-family: "Gotham Medium";
    cursor: pointer;
    text-align: center;
    margin: 0 25px;
}
#svgMenuNav {
    width: 30px;
    fill: #ffffff;
}

#ulNav {
    display: none;
    margin-right: 20px;
    position: absolute;
    top: 80px;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: rgb(30, 83, 83);
}

.liUlNav {
    margin: 30px;
    font-family: "Gotham Medium";
    color: #fff;
}
#divSvgNav {
    margin-right: 30px;
}

/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* -------------------------------------- SECTION LOADER ----------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

#sectionLoader {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#imgLogoLoader {
    width: 150px;
    margin: 20px auto;
}
#pLoader {
    width: auto;
    font-size: 1.2em;
    margin: 10px 0 30px 0;
    font-family: "Gotham Medium";
    color: #1e5353;
}
#divLoad {
    display: flex;
}
.divPointLoader {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 10px;
}
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* --------------------------------------- SECTION HOME ------------------------------------------ */
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

#sectionHome {
    background-color: #e3e4dc;
    position: relative;
    display: none;
    justify-content: center;
    height: 100vh;
}

#imgSectionHome {
    width: 100%;
}
#sectionHome::before {
    content: "";
    background-color: #0000003b;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ------------------------------------ SECTION PRESENTATION ------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

#sectionPresentation {
    background-color: #ffffff;
    text-align: center;
    padding: 40px 0;
    display: none; /* rien */
    position: relative;
}
#pH2SectionPresentation {
    margin: 0 auto 15px auto;
    width: 80%;
    opacity: 1;
    font-size: 2em;
    color: #1e5353;
    font-weight: bolder;
    font-family: "Caslon CP";
}
#spanPH2SectionPresentation {
    margin: 0 auto 50px auto;
    width: 80%;
    opacity: 1;
    color: #1e5353;
    font-weight: bolder;
    font-family: "Caslon CP";
    font-size: 2.5em;
}
.h3SectionPresentation {
    opacity: 1;
}
.pSectionPresention {
    font-family: "Gotham Light";
    margin-bottom: 30px;
    width: 90%;
    margin: 0 auto 15px auto;
    opacity: 1;
}
.spanBold {
    font-family: "Gotham Medium";
}
.divh3 {
    padding: 20px 0;
}
#divH3ET,
#divH3DT {
    background-color: #daeae2;
}
#divH3ET {
    transform: translateX(-100%);
}
#divH3DT {
    transform: translateX(100%);
}
#divBoxH3ET,
#divBoxH3DT {
    width: 100%;
    overflow: hidden;
    text-align: left;
}
#divH3GP,
#divH3PP {
    text-align: right;
}
.h3SectionPresentationET,
.h3SectionPresentationDT {
    width: 90%;
    margin: 10px auto 10px auto;
}
.h3SectionPresentationPP,
.h3SectionPresentationGP {
    width: 90%;
    margin: 10px auto 10px auto;
}
#divAllAvantage {
    display: flex;
    margin: auto;
    padding: 50px 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.divAvantage {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    opacity: 0;
}
#divAvantageOne,
#divAvantageTwo {
    padding-bottom: 50px;
}
.iconAvantage {
    width: 50px;
    height: 50px;
}
.h3Avantage {
    padding-top: 20px;
    font-family: "Gotham Medium";
}
#anchorOne,
#anchorTwo,
#anchorThree,
#anchorFour {
    height: 80px;
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0;
    z-index: -1;
}
#anchorServices {
    height: 80px;
    position: absolute;
    bottom: -1px;
    width: 100%;
    opacity: 0;
    z-index: -1;
}
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* -------------------------------------- SECTION SERVICES --------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

#sectionServices {
    padding: 20px 0;
    background: #daeae2;
    display: none; /* rien */
    position: relative;
    height: auto;
}

#h2SectionServices {
    text-align: center;
    color: #1e5353;
    margin: 10px auto 10px auto;
}
#divAllServices {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    /* height: 220vh; a changer en js */
}
#divSwipeBtn {
    position: absolute;
    bottom: 0;
    width: 50%;
    text-align: center;
    display: flex;
    justify-content: space-around;
    padding-bottom: 30px;
}
.btnSwipe {
    border: 2px solid #1e5353 !important;
    padding: 15px !important;
    margin: 0 !important;
    scale: 0.6;
    background-color: #ffffff99 !important;
}
.btnSwipeSelected {
    scale: 1;
    background-color: #1e5353 !important;
    border: 2px solid #fff !important;
}
.h3SectionServices {
    margin-bottom: 10px;
    padding-top: 10px;
}
.imgSectionServices {
    width: 80%;
    border-radius: 20px;
    padding-top: 10px;
    height: 150px;
}
#divServiceDE,
#divServiceCC,
#divServiceAS {
    opacity: 1;
    height: 22vh;
    position: relative;
}
#divBoxServiceDE {
    position: absolute;
}
#divBoxServiceCC {
    position: absolute;
    transform: translate(0, 26vh);
}
#divBoxServiceAS {
    position: absolute;
    transform: translate(0, 52vh);
}
.imgSectionServicesLS {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0;
}
.divBoxInfoServiceLS {
    background: white;
    width: 100%;
    height: 0;
    margin: auto;
    border-radius: 0 0 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.divInfoLS {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
#btnDELS,
#btnCCLS,
#btnASLS {
    margin: 0;
}
.h3SectionServicesLS,
.h4SectionServicesLS {
    margin: 0;
    padding: 0 5px;
    color: white;
}
#divServiceDE:hover,
#divServiceCC:hover,
#divServiceAS:hover {
    cursor: pointer;
}
#divServiceDE:hover .btnSectionServicesLS,
#divServiceCC:hover .btnSectionServicesLS,
#divServiceAS:hover .btnSectionServicesLS {
    background: #1e5353;
    color: white;
}
#divServiceDE::before,
#divServiceCC::before,
#divServiceAS::before {
    content: "";
    background-color: #00000066;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 20px;
}
.divServices {
    text-align: center;
    border: none;
    width: 100%;
    margin: 30px auto;
    background-color: #fff;
    border-radius: 20px;
    opacity: 1;
}
.pSectionServices {
    width: 80%;
    margin: 0;
    font-family: "Gotham Light";
}
.divInfoSectionServices {
    display: none;
}
.h5InfoConceptServices {
    opacity: 0;
    animation: 0.33s animOpa 0.33s linear forwards;
    font-family: "C059";
    font-size: 1.2em;
}
.pH5InfoConceptServices {
    opacity: 0;
    animation: 0.5s animOpa 0.6s linear forwards;
}
.h5InfoCqvrServices {
    opacity: 0;
    animation: 0.5s animOpa 0.9s linear forwards;
    font-family: "C059";
    font-size: 1.2em;
}
.h6OneInfoServices {
    opacity: 0;
    margin: 0;
    animation: 0.5s animOpa 1.2s linear forwards;
}
.pOneh6InfoServices {
    opacity: 0;
    margin: 0;
    animation: 0.5s animOpa 1.5s linear forwards;
}
.h6TwoInfoServices {
    opacity: 0;
    margin: 0;
    animation: 0.5s animOpa 1.7s linear forwards;
}
.pTwoh6InfoServices {
    opacity: 0;
    margin: 0;
    animation: 0.5s animOpa 2s linear forwards;
}
.h6ThreeInfoServices {
    opacity: 0;
    margin: 0;
    animation: 0.5s animOpa 2.3s linear forwards;
}
.pThreeh6InfoServices {
    opacity: 0;
    margin: 0;
    animation: 0.5s animOpa 2.6s linear forwards;
}
.h6FourInfoServices {
    opacity: 0;
    margin: 0;
    animation: 0.5s animOpa 2.9s linear forwards;
}
.pFourh6InfoServices {
    opacity: 0;
    margin: 0;
    animation: 0.5s animOpa 3.2s linear forwards;
}
.pH6SectionServices {
    width: 80%;
    font-family: "Gotham Light";
    margin: 0;
}
.h6CoutPresta {
    font-family: "Gotham Bold", serif;
    opacity: 0;
    animation: 0.5s animOpa 3.5s linear forwards;
}
.h6CoutPrestaAS {
    margin: 0 !important;
}
.pNoteSectionServices {
    margin: 0px auto;
    width: 80%;
    font-family: "Gotham Light";
    font-style: italic;
    font-size: 0.6em;
}
.btnSectionServices {
    background-color: #daeae2;
    color: #1e5353;
    padding: 10px 15px;
    border-radius: 20px;
    border: none;
    font-family: "Gotham Medium", serif;
    margin: 0px 0 20px 0;
}
.btnDivInfoLS {
    background-color: #daeae2;
    color: #1e5353;
    padding: 10px 15px;
    border-radius: 20px;
    border: none;
    font-family: "Gotham Medium", serif;
}
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ------------------------------------- SECTION A PROPOS ---------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

#sectionAPropos {
    background-color: #ffffff;
    display: none; /* rien */
    position: relative;
}
#divImgSectionAPropos {
    position: relative;
    width: 100%;
}
#imgSectionAPropos {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#divImgSectionAPropos::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0000005c;
}
#h2SectionAPropos {
    color: #1e5353;
    margin: 30px auto 50px auto;
    font-family: "Dancing Regular";
    font-size: 1.5em;
    display: none;
}
.pSectionAPropos {
    margin: 20px auto;
    font-family: "Gotham Light";
    text-align: center;
}
.bold {
    font-family: "Gotham Bold";
}
#divInfoSectionAPropos {
    /* display: none; */
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
}
#pSectionAPP1,
#pSectionAPP2 {
    padding: 0 20px;
    color: white;
}
#divInfoAProposI {
    display: none;
    flex-direction: column;
    justify-content: center;
    height: 50vh;
    font-family: "Dancing Regular";
}
.divBtnSectionAPropos {
    text-align: center;
}
.btnSectionAPropos {
    background-color: #daeae2;
    color: #1e5353;
    padding: 10px 15px;
    border-radius: 20px;
    border: none;
    font-family: "Gotham Medium", serif;
    margin: 10px auto 30px 0;
}
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* -------------------------------------- SECTION CONTACT ---------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

#sectionContact {
    background-color: #fff;
    padding: 20px 0;
    display: none;
}

#h2SectionContact {
    text-align: center;
    color: #1e5353;
    margin: 30px auto 30px auto;
    padding: 0 10px;
}

.pSectionContact {
    width: 80%;
    margin: 20px auto;
    font-family: "Gotham Light";
    text-align: center;
}

#formSectionContact {
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    width: 80%;
    padding: 20px;
    background: #daeae2;
    border-radius: 20px;
}
textarea {
    resize: none;
    min-height: 50px;
}
input,
select,
textarea {
    margin: 10px;
    padding: 10px;
    border-radius: 20px;
    border: none;
    opacity: 1;
    color: #1e5353;
    font-weight: bold;
    background-color: #fff;
}
input::placeholder,
textarea::placeholder {
    color: #1e5353;
    font-weight: bold;
}
input:focus,
select:focus,
textarea:focus {
    border: none;
    outline: none;
}
#btnFormSectionContact {
    margin: 10px;
    width: 100px;
    margin: 10px auto;
    font-weight: bold;
    opacity: 1;
    background-color: #fff;
    color: #1e5353;
    padding: 10px 15px;
    border-radius: 20px;
    border: none;
    font-family: "Gotham Medium", serif;
}
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ---------------------------------------- SECTION FAQ ------------------------------------------ */
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
#sectionFAQ {
    background-color: #daeae2;
    padding: 20px 0 40px 0;
}
#h2SectionFAQ {
    text-align: center;
    color: #1e5353;
    margin: 30px auto 30px auto;
    padding: 0 10px;
}
.divFAQ {
    width: 90%;
    background-color: #fff;
    border-radius: 20px;
    padding: 5px;
    margin: 30px auto;
}
.divInfoFAQClosed {
    display: none;
}
.divInfoFAQOpen {
    display: block;
}
.spanItalicPInfoFAQ {
    font-style: italic;
    font-family: "Gotham Light";
}
.spanBoldPInfoFAQ {
    font-weight: bolder;
}
.h4FAQ {
    font-weight: bolder;
    font-family: "Caslon CP";
    font-size: 1.1em;
}
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ------------------------------------------- FOOTER -------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

footer {
    background: #1e5353;
    text-align: center;
    padding: 20px;
    display: none;
}
#divMentionsLegales {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.pCGV {
    color: #ffffff;
    width: 100%;
    margin: 0;
}
.pDivMentionsLegales {
    color: #ffffff;
    width: 100%;
    margin: 0;
}
.pLBDC {
    color: #ffffff;
    width: 100%;
    margin: 20px 0 20px 0;
    text-align: center;
}
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------- MEDIA QUERIE ---------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
@media screen and (min-width: 480px) and (max-width: 600px) {
    .pSectionAPPLS {
        width: 80%;
        color: white;
    }
}
@media screen and (min-width: 601px) and (max-width: 750px) {
    .pSectionAPPLS {
        width: 80%;
        color: white;
        margin: 25px auto 25px auto;
        font-size: 1.2em;
    }
    .pSectionAPPMSF {
        padding-top: 5vh;
    }
}
@media screen and (min-width: 751px) and (max-width: 850px) {
    .pSectionAPPMS {
        width: 80%;
        color: white;
        margin: 25px auto 25px auto;
        font-size: 1.2em;
    }
    .pSectionAPPMSF {
        padding-top: 5vh;
    }
    .pSectionAPPLS {
        width: 80%;
        color: white;
    }
    #divInfoAProposI {
        height: 30vh;
    }
}
@media screen and (min-width: 851px) and (max-width: 1800px) {
    h1 {
        width: 80%;
        display: block;
        top: 40%;
        font-size: 2.5em !important;
        height: auto;
    }
    h2 {
        font-size: 2.5em;
    }
    button,
    .liUlNav {
        cursor: pointer;
    }
    button:hover {
        scale: 1.05;
    }
    /************/
    /************/
    /************/
    /*   NAV    */
    /************/
    /************/
    /************/
    #pLogo {
        color: white;
        position: absolute;
        margin-left: 115px;
        font-family: "Gotham Medium";
        cursor: pointer;
    }
    #svgMenuNav {
        width: 30px;
        fill: #1e5353;
        margin-right: 30px;
    }
    /************/
    /************/
    /************/
    /*   HOME   */
    /************/
    /************/
    /************/
    #sectionHome {
        height: 100vh;
    }
    #svgMenuNav {
        display: none;
    }
    #ulNav {
        display: flex !important;
        margin-right: 0;
        position: absolute;
        top: 0;
        right: 0;
        width: 80%;
        justify-content: flex-end;
        align-items: center;
        background-color: #ffffff00;
        flex-direction: row;
    }
    .liUlNav:hover {
        scale: 1.05;
    }
    /************/
    /************/
    /************/
    /*   PRES   */
    /************/
    /************/
    /************/
    #sectionPresentation {
        margin: auto;
    }
    #divAllh3 {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .divh3 {
        width: 40%;
        margin: 20px 0;
        padding: 0;
    }
    #divH3ET,
    #divH3DT {
        background-color: #daeae2;
        border-radius: 20px;
    }
    #divAllAvantage {
        display: flex;
        margin: auto;
        justify-content: space-evenly;
        padding: 50px 0;
    }
    .divAvantage {
        width: 200px;
    }
    #divAvantageOne,
    #divAvantageTwo {
        padding-bottom: 0;
    }
    #divH3ET {
        transform: translateX(0);
    }
    #divH3DT {
        transform: translateX(0);
    }
    /************/
    /************/
    /************/
    /* SERVICES */
    /************/
    /************/
    /************/
    #sectionServices {
        padding-bottom: 100px;
        height: auto;
    }
    #divAllServices {
        display: flex;
    }
    .divServices {
        width: 27%;
    }
    #divLeftBoxBS {
        width: 35%;
        margin: 0;
    }
    #divServiceLeftBoxTwo,
    #divServiceLeftBoxOne {
        width: 90%;
        margin: auto;
        opacity: 0;
        position: relative;
        display: flex;
        justify-content: center;
        height: 250px;
    }
    #divServiceLeftBoxOne:hover,
    #divServiceLeftBoxTwo:hover {
        cursor: pointer;
    }
    #divServiceLeftBoxOne:hover .btnSectionServicesBS,
    #divServiceLeftBoxTwo:hover .btnSectionServicesBS {
        background: #1e5353;
        color: white;
    }
    #divServiceLeftBoxTwo::before {
        content: "";
        background-color: #00000066;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
        border-radius: 20px;
    }
    #divServiceLeftBoxTwo {
        margin-top: 50px;
    }
    #divServiceLeftBoxOne::before {
        content: "";
        background-color: #00000066;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
        border-radius: 20px;
    }
    #divServiceRightBS {
        width: 60%;
        margin: 0 auto;
        opacity: 0;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #divServiceRightBS::before {
        content: "";
        background-color: #00000066;
        top: 0;
        height: 432px;
        width: 100%;
        position: absolute;
        border-radius: 20px 20px 0 0;
    }
    .divInfoSectionServicesDEBS {
        display: flex;
        flex-direction: column;
    }
    .divAllInfoCqvr {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .divInfoCqrv {
        width: 40%;
    }
    .imgSectionServicesBgdBS {
        width: 100%;
        padding-top: 0;
        height: auto;
    }
    .h3SectionServicesBS {
        position: absolute;
        top: 20%;
        color: white;
        padding: 0;
        font-size: 2em;
    }
    .h4SectionServicesBS {
        position: absolute;
        top: 40%;
        color: white;
    }
    .h3SectionServicesSelectedBS {
        position: absolute;
        top: 150px;
        color: white;
        padding: 0;
        font-size: 3em;
    }
    .h4SectionServicesSelectedBS {
        position: absolute;
        top: 250px;
        color: white;
    }
    .divBtnSectionServicesBS {
        position: absolute;
        bottom: 0;
    }
    .btnSectionServicesBS {
        margin: 0px;
    }
    #imgServiceRightBS {
        border-radius: 20px 20px 0 0;
    }
    .imgSectionServicesBS {
        height: 150px;
    }
    .classDivLeftBox {
        display: flex;
        align-items: end;
    }
    #divInfoLeftBoxTwo,
    #divInfoLeftBoxOne {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }
    .h3SectionServicesBS,
    .h4SectionServicesBS {
        margin: 0 30px;
        position: initial;
    }
    .divBtnSectionServicesBS {
        position: initial;
    }
    #btnASBS,
    #btnCCBS {
        margin: 0;
    }
    /************/
    /************/
    /************/
    /* A PROPOS */
    /************/
    /************/
    /************/
    #divInfoSectionAPropos {
        display: flex !important;
        flex-direction: column;
        width: 50%;
        position: relative;
    }
    #imgSectionAPropos {
        width: 100%;
        border-radius: 0;
    }
    #divImgSectionAPropos {
        width: 50%;
        height: auto;
        margin: 0;
    }
    #sectionAPropos {
        padding: 0;
    }
    .pSectionAPropos {
        text-align: left;
        width: 80%;
    }
    /**/
    #divImgSectionAPropos::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #00000000;
    }
    #h2SectionAPropos {
        font-size: 1.8em;
        margin: 30px auto 30px auto;
    }
    #divInfoAProposI {
        height: auto;
    }
    /************/
    /************/
    /************/
    /* CONTACT  */
    /************/
    /************/
    /************/
    #formSectionContact {
        width: 500px;
    }
}

/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/
