@media (max-width: 1200px) {
    
}
@media (max-width: 992px) {
    
}
@media (max-width: 768px) {
    
}
@media (max-width: 576px) {
    
}

.mainCorp {
    z-index: 2;
    position: relative;
}

.mainCorp p {
    font-size: 105%;
    line-height: 170%;
}
.mainCorp p small {
    font-size: 10px;
    line-height: 1 !important;
    margin: 0;
}

.CorporateNav {
    width: 100%;
    min-height: 50px;
    /* background: #0d5c9eba; */
    position: sticky;
    top: 0px;
    z-index: 6;
}



.toggle-container-CorpNav {
    position: absolute;
    top: -13px !important;
    left: 50%;
    translate: -50%;
  }
  
  /* Toggle Functionality */
  .CorporateNav   #toggle {
    display: none;
  }
  
  .CorporateNav   #toggle:checked ~ .toggle-CorpContent .button-toggle {
    box-shadow: 0 0 0 550px rgba(0, 0, 0, 0.1), inset 0 0 0 20px rgba(0, 0, 0, 0.1);
  }
  .CorporateNav   #toggle:checked ~ .toggle-CorpContent .button-toggle:before {
    transform: translateY(-50%) rotate(45deg) scale(1);
  }
  .CorporateNav  #toggle:checked ~ .toggle-CorpContent .button-toggle:after {
    transform: translateY(-50%) rotate(-45deg) scale(1);
  }
  .CorporateNav #toggle:checked ~ .CorpGroupNav {
    pointer-events: auto;
  }
  .CorporateNav #toggle:checked ~ .CorpGroupNav .nav-item {
    padding-top: 20px;
    color: #fff;
    letter-spacing: 0;
    height: 60px;
    line-height: 1.5em;
    margin-top: 0;
    opacity: 1;
    transform: scaleY(1);
    transition: 0.5s, opacity 0.1s;
    width: 70%;
    padding: 10px 15%;
    border-bottom: solid 1px #ffffff45;
    display: grid;
  place-items: center; /* Centre verticalement et horizontalement */
  }
  @media (max-width: 576px) {
    .CorporateNav #toggle:checked ~ .CorpGroupNav .nav-item {
      height: 80px;
    }
  }
  .CorporateNav #toggle:checked ~ .CorpGroupNav .nav-item:last-of-type {
    border-bottom: 0;
  }
  .CorporateNav   #toggle:checked ~ .CorpGroupNav .nav-item:first-child {
    margin-top: 40px;
}

.CorporateNav  #toggle:checked ~ .CorpGroupNav .nav-item:nth-child(1) {
    transition-delay: 0.15s;
  }
  .CorporateNav   #toggle:checked ~ .CorpGroupNav .nav-item:nth-child(1):before {
    transition-delay: 0.15s;
  }
  .CorporateNav #toggle:checked ~ .CorpGroupNav .nav-item:nth-child(2) {
    transition-delay: 0.1s;
  }
  .CorporateNav #toggle:checked ~ .CorpGroupNav .nav-item:nth-child(2):before {
    transition-delay: 0.1s;
  }
  .CorporateNav #toggle:checked ~ .CorpGroupNav .nav-item:nth-child(3) {
    transition-delay: 0.05s;
  }
  .CorporateNav #toggle:checked ~ .CorpGroupNav .nav-item:nth-child(3):before {
    transition-delay: 0.05s;
  }
  .CorporateNav #toggle:checked ~ .CorpGroupNav .nav-item:nth-child(4) {
    transition-delay: 0s;
  }
  .CorporateNav #toggle:checked ~ .CorpGroupNav .nav-item:nth-child(4):before {
    transition-delay: 0s;
  }
  .CorporateNav #toggle:checked ~ .CorpGroupNav .nav-item:before {
    opacity: 0;
  }



  
  /* Toggle Button */
  .CorporateNav .button-toggle {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 25px;
    background-color: #56d1ac;
    border: none;
    cursor: pointer;
    border-radius: 100%;
    transition: 0.6s;
  }
  .CorporateNav .button-toggle:hover {
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1), inset 0 0 0 20px rgba(0, 0, 0, 0.1);
  }
  .CorporateNav .button-toggle:before, .button-toggle:after {
    position: absolute;
    content: "";
    top: 48%;
    left: 50%;
    width: 25%;
    height: 2%;
    background-color: #ffffff;
    border-radius: 5px;
    transition: 0.5s;
  }
  .CorporateNav .button-toggle:before {
    transform: translateY(-50%) rotate(45deg) scale(0);
  }
  .CorporateNav .button-toggle:after {
    transform: translateY(50%) rotate(-45deg) scale(0);
  }
  
  /* Menu */
  .CorporateNav .CorpGroupNav {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    margin: 21px 25px 20px;
    pointer-events: none;
    transition: 0.5s;
    width: 100%;
  }
  .CorporateNav .CorpGroupNav::before {
    content: "";
    background: #0d5c9e4d;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    position: absolute;
    top: -100px;
    z-index: -1;
    transition: color 0.3s ease 1s, width 0.3s, height 0.3s ease 0.2s, border-radius 0.5s;
    transition-delay: border-radius 0.3s;
  }
  @media (max-width: 992px) {
    .CorporateNav .CorpGroupNav::before {
      width: 150px;
      height: 150px;
      top: -75px;
    }
  }

  /* Lorsque le toggle est activé, transformez les lignes en "X" */
.CorporateNav #toggle:checked + .toggle-container-CorpNav .button-toggle:before {
  transform: translate(-50%, -50%) rotate(45deg); /* Ligne inclinée */
}

.CorporateNav #toggle:checked + .toggle-container-CorpNav .button-toggle:after {
  transform: translate(-50%, -50%) rotate(-45deg); /* Ligne inclinée opposée */
}

  .CorporateNav #toggle:checked ~ .CorpGroupNav::before {
    border-radius: 0%;
    width: 100vw;
    height: calc(100% + 85px);
    background: #0d5d9efa;
  }
  
  .CorporateNav .nav-item {
    position: relative;
    display: inline-block;
    float: left;
    clear: both;
    color: transparent;
    font-size: 1em;
    letter-spacing: -3px;
    height: 7px;
    line-height: 7px;
    /* text-transform: uppercase; */
    transform: scaleY(0.2);
    transition: 0.5s, opacity 1s;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    overflow: hidden;
  }
  .CorporateNav .nav-item:hover {
    letter-spacing: 2px!important;
  }
  .CorporateNav .nav-item::after {
    content: "";
    width: 0%;
    height: 10%;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
    background: #56d1ac;
    transition: all 1s;
  }
  .CorporateNav .nav-item:hover::after {
    width: 100%;
    height: 10%;
    left: 0;
  }
  .CorporateNav .nav-item:nth-child(1) {
    transition-delay: 0s;
  }
  .CorporateNav  .nav-item:nth-child(1):before {
    transition-delay: 0s;
  }
  .CorporateNav  .nav-item:nth-child(2) {
    transition-delay: 0.05s;
  }
  .CorporateNav  .nav-item:nth-child(2):before {
    transition-delay: 0.05s;
  }
  .CorporateNav  .nav-item:nth-child(3) {
    transition-delay: 0.1s;
  }
  .CorporateNav  .nav-item:nth-child(3):before {
    transition-delay: 0.1s;
  }
  .CorporateNav  .nav-item:nth-child(4) {
    transition-delay: 0.15s;
  }
  .CorporateNav  .nav-item:nth-child(4):before {
    transition-delay: 0.15s;
  }
  .CorporateNav  .nav-item:nth-child(1) {
    letter-spacing: -8px;
  }
  .CorporateNav .nav-item:nth-child(2) {
    letter-spacing: -7px;
  }
  .CorporateNav .nav-item:nth-child(n+4) {
    letter-spacing: -8px;
    margin-top: -7px;
    opacity: 0;
  }
  .CorporateNav .nav-item:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    translate: -50%;
    width: 100%;
    max-width: 30px;
    min-width: 20px;
    height: 2px;
    background-color: #ffffff;
    transform: translateY(-50%) scaleY(5);
    transition: 0.5s;
  }

.CorpContent {
    position: relative;
    width: 100%;
    background: #ffffff;
}

.CorpBlueBtn {
    text-decoration: none;
    background: #0d5c9e;
    color: white;
    text-align: center;
    font-weight: 600;
    padding: 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.CorpBlueBtn:hover {
    text-decoration: none;
    background: #333333;
    color: #56d1ac;
}

.CorpMicroLink {
    margin: 0;
    text-decoration: none;
    color: white;
    background: #56d1ac;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
}

.CorporateTopTitle {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    /* background: url(../images/entete-corporate.jpg) no-repeat center center;
    background-size: cover; */
}
.CorporateTopTitle:first-of-type { /* pour passer au dessus du cercle de CorpGroupNav */
    z-index: 7;
}

.CorporateTopTitle .TitleOverlay {
    background: rgb(13 92 158 / 80%);
    text-align: center;
    padding: 110px 0 70px 0;
    width: 100%;
}

.CorporateTopTitle .TitleOverlay2 {
    background: rgb(255 255 255 / 80%);
    padding: 15vh 0 5vh 0;
}

.CorporateTopTitle h1,
.CorporateTopTitle p {
    color: white;
    font-size: 2.5em;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-weight: 400;
}

.CorporateTopTitle p {
    color: #434343;
}

.CorporateTopTitle h1 strong,
.CorporateTopTitle p strong {
    font-family: 'Roboto Slab';
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #56d1ac;
    hyphens: none;
}

.CorporateTopTitle p strong {
    color: #0ea97b;
}

@media (max-width: 1200px) {
    
}
@media (max-width: 992px) {
    .CorporateTopTitle h1, .CorporateTopTitle p {
        font-size: 1.95em;
    }
}
@media (max-width: 768px) {
    .CorporateTopTitle h1, .CorporateTopTitle p {
        font-size: 1.9em;
    }
}
@media (max-width: 576px) {
    .CorporateTopTitle h1, .CorporateTopTitle p {
        font-size: 1.85em;
    }
    .CorporateTopTitle h1 strong {
        letter-spacing: 1px;
        word-break: keep-all;
        overflow-wrap: normal;
        white-space: normal;
        hyphens: none;
    }
    .CorporateTopTitle h1, .CorporateTopTitle p, .CorporateTopTitle h1 strong, .CorporateTopTitle p strong {
        hyphens: none;
    }
}

.WrapRow {
    margin: auto;
    padding: 0 2%;
}

.CorpZoom1 {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding-top: 70px;
}

.CorpZoom1 h3 {
    font-size: 2em;
    width: 25%;
    text-align: right;
    padding: 0 3% 0 0;
    hyphens: none;
}

.CorpZoom1 p {
    padding: 0 2% 0 3%;
    width: 55%;
    font-size: 130%;
    line-height: 150%;
    font-weight: 300;
    color: #696b6d;
    border-left: solid #0d5c9e;
}

.CorpZoom1 p strong {
    font-weight: 600;
}

.CorpZoom1 p a {
    margin: 0;
    text-decoration: none;
    color: white;
    background: #56d1ac;
    font-weight: 500;
    font-size: 65%;
    padding: 5px 10px;
    border-radius: 5px;
}

.CorpZoom1 a {
    margin-left: 20px;
    width: 20%;
}

@media (max-width: 1200px) {
    
}
@media (max-width: 992px) {
    .CorpZoom1 {
        flex-direction: column;
        width: 94%;
    }
    .CorpZoom1 h3 {
        font-size: 1.95em;
        width: 100%;
        text-align: center;
        padding: 0 3%;
        margin: 0;
    }
    .CorpZoom1 p {
        padding: 0 2% 0 3%;
        width: 90%;
    }
    .CorpZoom1 a {
        margin-left: 0;
        width: auto;
    }
}
@media (max-width: 768px) {
    .CorpZoom1 h3 {
        font-size: 1.9em;
    }
    .CorpZoom1 p {
        padding: 0 2%;
        font-size: 120%;
        border-left: none;
    }
}
@media (max-width: 576px) {
    .CorpZoom1 h3 {
        font-size: 1.6em;
    }
    .CorpZoom1 p {
        padding: 0;
        font-size: 115%;
        text-align: center;
    }
}

.CorpTxt01 {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding-top: 70px;
}

.CorpTxt01Reverse {
    flex-direction: row-reverse;
}

.CorpTxt01 img {
    border-radius: 10px;
    width: 40%;
    margin: 0 10% 0 0;
}

.CorpTxt01Reverse img {
    margin: 0 0 0 10%;
}

.CorpTxt01 div {
    width: 50%;
}

.CorpTxt01 div h2 {
    font-family: 'Roboto Slab';
    font-size: 180%;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #56d1ac;
    hyphens: none;
}
@media (max-width: 576px) {
}

.CorpTxt01 div h3 {
    font-family: 'Roboto Slab';
    font-size: 1.5em;
    font-weight: 400;
    color: #03223d;
}

@media (max-width: 1200px) {
    
}
@media (max-width: 992px) {
    .CorpTxt01 {
        padding-top: 100px;
    }
    .CorpTxt01 img {
        position: sticky;
        top: 50px;
        margin: 0 10% 25px 0;
    }
    .CorpTxt01Reverse img {
        position: sticky;
        top: 50px;
        margin: 0 0 25px 10%;
    }
}
@media (max-width: 768px) {
    .CorpTxt01 {
        flex-direction: column;
        flex-wrap: nowrap;
        margin: 0 5%;
    }
    .CorpTxt01 img {
        width: 98%;
        padding: 1%;
        margin: 0;
    }
    .CorpTxt01 div {
        width: 100%;
        z-index: 2;
        background: white;
    }
}
@media (max-width: 576px) {
    
}

.FullWrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    margin-top: 20vh;
    background: #0d5c9f;
    background: linear-gradient(0deg, #0d7d9f 0%, #0d5c9f 100%);
}

.FullWrapReverse {
    flex-direction: row-reverse;
    margin-top: 10vh;
}

.FullWrapItem {
    flex: 1;
}

.CorpTxt02 {
    position: relative;
    width: 70%;
    padding: 150px 5% 150px 25%;
}

.FullWrapReverse .CorpTxt02 {
    padding: 150px 25% 150px 5%;
}

.CorpTxt02 h2 {
    color: white;
    font-size: 2.5em;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-weight: 400;
}

.CorpTxt02 h2 strong {
    font-family: 'Roboto Slab';
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #56d1ac;
}
@media (max-width: 576px) {
    .CorpTxt02 h2, .CorpTxt02 h2 strong {
        hyphens: none;
    }
}

.CorpTxt02 h3 {
    color: #d7b88d;
    font-size: 1.5em;
    font-family: 'Roboto Slab';
    font-weight: 400;
}

.CorpTxt02 h3 strong {
    color: #56d1ac;
    border: solid 1px;
    padding: 2px 8px;
    border-radius: 10px;
}

.CorpTxt02 p {
    color: white;
}

.CorpImg02 {
    position: relative;
    width: 33%;
    min-height: 5px;
}

.CorpImg02::before {
    content: "";
    background: #0d5c9f;
    background: linear-gradient(0deg, #0d7d9f 0%, #0d5c9f 100%);
    width: 100px;
    height: 100%;
    position: absolute;
    left: -1px;
    top: 0;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.FullWrapReverse .CorpImg02::before {
    left: unset;
    right: -1px;
    clip-path: polygon(100% 0%, 0 100%, 100% 100%);
}

.CorpImg02Btn {
    position: absolute;
    bottom: 30%;
    left: 50%;
    translate: -50%;
    background: white;
    color: #0d5c9f;
    filter: drop-shadow(8px 7px 0px #0d5c9e);
}

.CorpImg02Btn:hover {
    filter: drop-shadow(4px 3px 0px #ffffff);
}

.CorpImg03Btn {
    display: none;
    position: relative;
    background: white;
    color: #0d5c9f;
    filter: drop-shadow(8px 7px 0px #0d5c9e);
    width: fit-content;
    margin: 50px auto 0;
}

.CorpImg03Btn:hover {
    filter: drop-shadow(4px 3px 0px #ffffff);
}

@media (max-width: 1200px) {
    .CorpTxt02 {
        position: relative;
        width: 80%;
        padding: 100px 5% 100px 15%;
    }
    .CorpTxt02 h2 {
        font-size: 2em;
    }
}
@media (max-width: 992px) {
    .CorpImg02 {
        display: none;
    }
    .CorpTxt02, .FullWrapReverse .CorpTxt02 {
        width: 80%;
        padding: 100px 10%;
        text-align: center;
    }
    .CorpTxt02 h2 {
        font-size: 1.8em;
        text-align: center;
    }
    .CorpTxt02 h3 {
        text-align: left;
    }
    .CorpTxt02 p {
        text-align: left;
    }
    .CorpImg03Btn {
        display: block;
    }
}
@media (max-width: 768px) {
    
}
@media (max-width: 576px) {
    
}

.CorpNavHead {
    padding: 20vh 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}

.CorpNavHead h2 {
    text-align: center;
    font-size: 1.5em;
    font-weight: 400;
}

.CorpNavHead h2 strong {}

.CorpNavHead p {
    font-family: Roboto Slab;
    font-size: 2.5em;
    color: #56d1ac;
    padding: 0;
    margin: 0;
    position: relative;
}

.CorpNavHead p::before,
.CorpNavHead p::after {
    content: "";
    height: 60px;
    width: 60px;
    clip-path: polygon(84% 0, 84% 38%, 100% 38%, 52% 100%, 0 39%, 17% 39%, 18% 0);
    background: #56d1ac;
    position: absolute;
    top: 100%;
    font-size: 2.5em;
    animation-name: scroll;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
}

.CorpNavHead p::before {
    left: 0%;
}

.CorpNavHead p::after {
    right: 0%;
}
@media (max-width: 1200px) {
    
}
@media (max-width: 992px) {
    .CorpNavHead p {
        padding: 0 5% 20px;
        text-align: center;
        line-height: 1em;
        hyphens: none;
        margin: 0;
    }
}
@media (max-width: 768px) {
    .CorpNavHead p {
        font-size: 2.2em;
    }
}
@media (max-width: 576px) {
    .CorpNavHead p {
        font-size: 1.7em;
    }
    .CorpNavHead h2 {
        font-size: 1.2em;
    }
    .CorpNavHead p::before {
        top: -150%;
        left: 50%;
        translate: -50%;
    }
    .CorpNavHead p::after {
        display: none;
    }
}

.CorpNav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow: hidden;
    background: #0d5c9f80;
}

.CorpNavItem {
    position: relative;
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s;
}

.CorpNavItem:hover {
    transform: scale(1.1);
    z-index: 1;
}

.CorpNavItem em {
    color: white;
    text-decoration: none;
    text-align: center;
    font-family: 'Roboto Slab';
    font-size: 1.2em;
    line-height: 1.5em;
    padding: 0 15%;
    hyphens: none;
}

.CorpNavItem:nth-child(5n+1) {
    background: #0d5c9f;
}

.CorpNavItem:nth-child(5n+2) {
    background: #0d6f9f;
}

.CorpNavItem:nth-child(5n+3) {
    background: #0d7d9f;
}

.CorpNavItem:nth-child(5n+4) {
    background: #0d9b9f;
}

.CorpNavItem:nth-child(5n+5) {
    background: #0d9f5f;
}

@media (max-width: 1200px) {
    .CorpNav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .CorpNavItem {
        width: 33.3%;
    }
}
@media (max-width: 992px) {
    .CorpNavItem {
        width: 50%;
    }
    .CorpNavItem {
        min-height: 130px;
    }
    .CorpNavItem em {
        font-size: 1em;
        padding: 0 10%;
    }
}
@media (max-width: 768px) {
    .CorpNavItem {
        width: 100%;
        min-height: 110px;
    }
}
@media (max-width: 576px) {
    .CorpNavItem {
        min-height: 90px;
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX START Formulaire de contact XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
.Contact {
    padding: 80px 2% 15px;
    padding-bottom: 80px;
    width: 96%;
    position: relative;
    clear: both;
    justify-content: center;
    background-color: #0d5c9f;
    background-image: url(img/logo.png);
    z-index: 1002;
}

@media (max-width: 716px) {
    .Contact {
        margin-bottom: -60px;
    }
}

.ContactTitle {
    width: 100%;
    display: flex;
    position: relative;
    justify-content: center;
}

.Contact h2 {
    color: white;
    font-size: 2.5em;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-weight: 400;
    text-align: center;
    padding: 50px 1%;
}

.Contact h2 strong {
    font-family: 'Roboto Slab';
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #56d1ac;
}

.Width100Max1200 {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.Width100Max1000 {
    width: 100%;
    max-width: 1000px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.SuperForm {
    display: flex;
    position: fixed;
    top: 0;
    padding: 25px 0;
    left: 100%;
    width: 100%;
    justify-content: center;
    background: #3a3a3a00;
    z-index: 1000;
    transition: all 0.5s;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

@media (max-width: 767.98px) {
    .SuperForm {
        bottom: 0;
        top: auto;
    }
}

.SuperForm span {
    display: flex;
    color: #ffffff;
    align-items: center;
    line-height: 40px;
    font-size: 1em;
}

.SuperForm span img {
    height: 25px;
    margin: 0 10px 6px;
}

.SuperForm a {
    padding: 15px;
    margin: 0;
    text-decoration: none;
    background: #0d5c9f;
    color: #fff;
    border-radius: 10px;
    font-size: 1.2em;
    transition: all 0.3s;
}

.SuperForm a::before {
    content: "\f376";
    font-family: "Ionicons";
    margin-right: 10px;
    opacity: 0.5;
}

.SuperForm a:hover {
    transform: scale(1.1);
}

.stickyForm {
    left: 0;
    background: #3a3a3a;
}

.Form50 {
    width: 45%;
    margin: 0 2.5%;
    float: left;
}

.Form100 {
    width: 95%;
    margin: 0 2.5%;
    float: left;
}

@media (max-width: 700px) {

    .Form50,
    .Form100 {
        width: 95%;
    }
}

.form-group {
    position: relative;
    margin-bottom: 45px;
}

.form-group input,
.form-group textarea {
    padding: 10px 2.5%;
    display: block;
    width: 95%;
    border: none;
    border-bottom: 1px solid #ffffff4d;
    background: transparent;
    font-family: inherit;
    font-size: 1em;
    color: #56d1ac;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
}

.form-group label {
    color: #ffffff;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

/* active state */
input:invalid~label,
textarea:invalid~label {
    font-size: 14px;
    background: #0d5c9f;
    padding: 5px;
}

.form-group input:focus~label,
input:valid~label,
.form-group textarea:focus~label,
textarea:valid~label {
    top: -20px;
    font-size: 14px;
    color: #ffffff45 !important;
}

input:valid+span:before,
textarea:valid+span:before {
    position: absolute;
    content: '✓';
    margin-left: -15%;
    font-weight: bolder;
    color: #56d1ac;
}


.bar {
    position: relative;
    display: block;
    width: 100%;
}

.bar:before,
.bar:after {
    content: '';
    height: 5px;
    width: 0;
    bottom: 0px;
    position: absolute;
    background: #56d1ac;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}

/* active state */
input:focus~.bar:before,
input:focus~.bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
input:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

.form-sec3 {
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    padding: 0 2.5%;
}

.form-sec3 label {
    cursor: pointer;
}

.form-sec3 label:hover .checkbox__check {
    background: #56d1aca7;
}

.checkbox__input {
    width: 0;
    height: 0;
    opacity: 0;
}

.checkbox__input:checked+.checkbox__check {
    background: #56d1ac;
    stroke-dashoffset: 0;
}

.checkbox__check {
    margin-right: 9px;
    border: 0.2rem solid #ffffff;
    background: #0d5c9f;
    stroke: #f9f9f9;
    stroke-dasharray: 25;
    stroke-dashoffset: 25;
    stroke-linecap: round;
    stroke-width: 0.2rem;
    border-radius: 0.2rem;
    fill: none;
    transition: background 0.4s, stroke-dashoffset 0.6s;
}

.form-sec3 label,
.form-sec3 p {
    font-size: 0.9em;
    color: #262626;
    line-height: 1.5em;
    margin: 0;
}

.form-sec3 label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.form-sec3 button {
    padding: 20px;
    text-decoration: none;
    background: #fff;
    color: #0d5c9f;
    border-radius: 5px;
    font-size: 1.2em;
    transition: all 0.3s;
    border: none;
    margin: 40px;
    cursor: pointer;
    transition: all 0.3s;
    filter: drop-shadow(0px 0px 0px black);
}

.form-sec3 button:hover {
    transform: scale(1.1);
    background: #56d1ac;
    filter: drop-shadow(9px 12px 0px black);
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX END CONTACT FORM XXXXXXXXXXXXXXXXXXXXXXXX */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX PETITE VIDEO XXXXXXXXXXXXXXXXXXXXXXXXXX */

#SmallVideo {
    background: #0d5c9e;
    width: 40%;
    height: auto;
    padding-bottom: 40%;
    border-radius: 10px;
    margin: 0 10% 0 0;
    z-index: 1;
    position: relative;
    transition: all 0.7s;
    overflow: hidden;
}
#SmallVideo video {
    position: absolute;
    top: 0;
    left: 0;
}
.LecteurVideo {
    height: 100vh;
}
#SmallVideo p {
    position: absolute;
    top: 60%;
    left: 50%;
    translate: -50%;
    width: 90%;
    font-size: 1.8em;
    line-height: 1.2em;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 0 5%;
}
#SmallVideo p span {
    font-family: 'Roboto Slab';
    background: black;
}
#SmallVideo p strong {
    color: #6daa38;
}
#backgroundPetiteVideo {
    position: absolute;
    /* top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s;
    transition-delay: 0.3s;
    opacity: 0.4;
}
#SmallVideo .StartVideoBtn {
    position: absolute;
    top: 30%;
    left: 50%;
    translate: -50%;
    transition: all 0.7s;
    cursor: pointer;
    padding: 30px;
    max-width: 100px;
    z-index: 1;
    background: none;
    border: none;
    color: white;
    font-size: 6em;
    text-shadow: 0px 0px 24px BLACK;
}
.StartVideoBtn:hover {
    color: #6daa38!important;
    transform: scale(1.1);
    filter: drop-shadow(2px 4px 6px black);
}

@media (max-width: 1200px) {
    #SmallVideo {
        position: sticky;
        top: 50px;
        margin-bottom: 25px;
        padding-bottom: 50%;
    }
    #SmallVideo p {
        top: 60%;
        font-size: 1.6em;
    }
    .LecteurVideo {
        height: unset;
        min-height: calc((9/16) * 100vw)!important;
    }
    .LecteurVideo #backgroundPetiteVideo {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 992px) {
    #SmallVideo {
        margin-bottom: 0px;
        padding-bottom: 60%;
    }
    #SmallVideo p {
        top: 64%;
        font-size: 1.3em;
    }
    .LecteurVideo {
        height: unset;
        min-height: calc((9/16) * 100vw)!important;
    }
    .LecteurVideo #backgroundPetiteVideo {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 768px) {
    #SmallVideo {
        width: 98%;
        margin: 0 1% 1%;
        padding-bottom: 100%;
        top: 5%;
    }
    #SmallVideo p {
        top: 59%;
        font-size: 1.8em;
    }
    .LecteurVideo {
        height: unset;
        min-height: calc((9/16) * 100vw)!important;
    }
    .LecteurVideo #backgroundPetiteVideo {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 576px) {
    #SmallVideo {
        width: 98%;
        margin: 0 1% 1%;
        padding-bottom: 140%;
        top: 5%;
    }
    #SmallVideo .StartVideoBtn {
        max-width: 20%;
    }
    .LecteurVideo {
        height: 100vh;
    }
    .LecteurVideo {
        height: 100vh;
    }
    #SmallVideo p {
        position: absolute;
        top: 60%;
        font-size: 1.3em;
        z-index: 1;
        color: white;
        text-align: center;
        padding: 0 20px;
    }
    #SmallVideo p span {
        font-family: 'Roboto Slab';
        background: black;
    }
    #SmallVideo p strong {
        color: #6daa38;
    }
    #backgroundPetiteVideo {
        position: absolute;
        /* top: 0;
        left: 0; */
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.7s;
        transition-delay: 0.3s;
        opacity: 0.4;
    }
    #SmallVideo .StartVideoBtn {
        transition: all 0.7s;
        cursor: pointer;
        padding: 30px;
        max-width: 100px;
        z-index: 1;
    }
    .StartVideoBtn:hover {
        transform: scale(1.1);
        filter: drop-shadow(2px 4px 6px black);
    }
    .PauseVideoBtn {
        z-index: 1;
        background: none;
        border: none;
        color: white;
        font-size: 5em;
        /* padding: 15px 0 0 30px; */
        text-shadow: 0px 0px 24px BLACK;
        cursor: pointer;
        transition: all 0.3s;
    }
    .ReStartVideoBtn {
        z-index: 1;
        background: none;
        border: none;
        color: white;
        font-size: 3em;
        text-shadow: 0px 0px 24px BLACK;
        cursor: pointer;
        transition: all 0.3s;
    }
    .PauseVideoBtn:hover, .ReStartVideoBtn:hover {
        color: red;
    }
    
    @media (max-width: 1200px) {
        .LecteurVideo {
            height: unset;
            min-height: calc((9/16) * 100vw)!important;
        }
        .LecteurVideo #backgroundPetiteVideo {
            width: 100%;
            height: auto;
        }
    }
    @media (max-width: 992px) {
        .LecteurVideo {
            height: unset;
            min-height: calc((9/16) * 100vw)!important;
        }
        .LecteurVideo #backgroundPetiteVideo {
            width: 100%;
            height: auto;
        }
    }
    @media (max-width: 768px) {
        .LecteurVideo {
            height: unset;
            min-height: calc((9/16) * 100vw)!important;
        }
        .LecteurVideo #backgroundPetiteVideo {
            width: 100%;
            height: auto;
        }
    }
    @media (max-width: 576px) {
        #SmallVideo .StartVideoBtn {
            max-width: 20%;
        }
        .LecteurVideo {
            height: unset;
        }
        .LecteurVideo #backgroundPetiteVideo {
            /* width: calc((16/9) * 91vw);
            height: 91vw; */
            width: 100%;
            height: auto;
        }
        /* .rotate {
            transform: rotate(90deg);
        } */
    }
}
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX PETITE VIDEO XXXXXXXXXXXXXXXXXXXXXXXXXX */

.CorporateListPart {
    padding: 80px 0px 0px;
    border: none;
}