.three-side{
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: hidden;
    padding-right: 20px;
    width: 100%;
    /* padding: ; */
}

.elem {
    border-radius: 10px;
    position: relative ;
    width: 100%;
    padding: 0px;
    margin: 7px;
    overflow-y: hidden;
    overflow-x: hidden;
}

.text-bottom{
    position: absolute;
    top: 50%;
    color: white;
    margin-left: 15px;
    margin-right: 15px;
}

.mobile-img{
    width: 99%;
}

.image-layout{
    position: absolute;
    top: 100%;
    width: 99%;
    height: 60%;
    background-color: rgba(0, 0, 0, 0.726);
    transition: 0.5s ease;
    /* rotate: ; */
}

.legacy-header{
    margin: 0;
    font-size: 1.7em;
    font-weight: 500;
    font-family: 'Times New Roman', Times, serif;
}

.legacy-text{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.elem:hover .image-layout {
    top: 45%;
    transition: 0.5s ease;
}

.left-far-text{
    font-size: 3.5em;
    color: black;
    font-family: 'Times new roman, sans-serif';
    font-weight: 300;
}

/* .button-container:hover .white-layout{
    width: width;
} */

.bg-layer{
    position: absolute;
    background-color: aliceblue;
    width: 50%;
    height: 100%;
    z-index: 10;
}

.button-array{
    border-right: 1px solid white;
    transition: 0.5s;
}
button{
    border: none;
}

.button-text{    
    padding-left: 40px;
}

.button-flex{
    display: flex;
    flex-direction: row;
    /* background-color: black; */
    z-index: 1000;
    font-weight: 600;
    text-transform: uppercase;
}

button{
    color: black;
    cursor: pointer;
    font-size: small;
    background-color: transparent;
}

.right-border{
    padding: 25px 30px;
    border-right: 1px solid white;
}

.padding-flex{
    font-size: smaller;
    /* color: rgb(190, 40, 65);  */
    cursor: pointer;
    /* background:url(../images/bg_dark.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%; */
    background: rgb(45,44,44);
    color: white;
    transition: 0.7s;
    font-weight: 600;
    text-transform: uppercase;
}

.button-flex:hover .padding-flex {
    background: white;
    border: 1px solid rgb(45,44,44);
    color: rgb(45,44,44);
    box-shadow: 0px 0px 5px white;
    /* transform: scale(1,1) */
}

.button-flex:hover .right-border{
    border-right: 1px solid black;
}
.discovery{
    padding:25px 30px;
}

.pt-cursor{
    cursor: pointer;
}

.separator{
    margin-top: 5%;
}

.separator-second{
    margin-top: 150px;
}


/* Footer section */

.footer-container{
    color: black;
    background-color: rgb(231, 231, 231);
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

}

.footer-first{
    /* text-transform: uppercase; */
    line-height: 29px;
    letter-spacing: 1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}


.policy-site{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;


}

.policy-site a{
    font-size: 14px;
    color: black;
    line-height: 29px;
    letter-spacing: 1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
    overflow: hidden;
    font-weight: 400;
    text-transform: uppercase;
    transition: 0.3s;
}

.policy-site a:hover{
    transition: 0.3s;
    color: rgb(145, 130, 0);
    text-decoration: underline;
}


.footer-mid{
    display: flex;
    flex-direction: row;
}

.icons-svg{
    padding-left: 20px;
    padding-right: 20px;
    color: rgb(39, 39, 39) !important;
}


.fixed-footer{
    position: fixed;
    bottom: 0;
    /* background: url(../images/bg_dark.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%; */
    background: rgb(45,44,44);
    width: 100%;
    display: flex;
    padding: 15px;
    box-shadow: 0px -2px 20px rgb(45,44,44);
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    z-index: 1000000;
}



.fixed-footer div{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 25%;
    border-right: 1px solid rgb(168, 168, 168);
}

.fixed-footer div a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.fixed-footer div a svg{
    margin-bottom: 10px;
}

.fixed-footer div a span{
    text-decoration: none;
    color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: small;
    letter-spacing: 1px;
    text-transform: uppercase;
    
}

.fixed-footer div:last-child{
    border-right: transparent;
}

.fixed-footer div a{
    margin: auto;
}


.fixed-separator{
    width: 100%;
    padding-top: 40px;
    padding-bottom: 30px;
}

.less-more{
    width: 100%;
    margin: auto;
}

 /* Style the buttons that are used to open and close the accordion panel */
 .accordion {
    background-color: #f5f5f5;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  /* .active, .accordion:hover {
    background-color: #ccc;
  } */
  
  /* Style the accordion panel. Note: hidden by default */
  .panel {
    padding: 0 18px;
    background-color: rgb(206, 206, 206);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  } 

  .accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
  }
  
  .accordion.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }

a{
    text-decoration: none; 
    color: black;  
    transition: 0.4s; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.list-link{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: start;
}

.list-link div h4{ /* h4 and div parent*/
    margin-top: 20px;
    margin-bottom: 40px;
}


.list-link div div:first{
    margin-top: 0;
}

.list-link div div{
    margin-bottom: 40px;
}



.list-link div div div a:hover{
    color: rgb(214, 202, 96);
    transition: 0.4s;
}


.link-group{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}


.relative{
    position: relative;
}

.relative-position::after{
    content: "NOUVEAUX LANCEMENTS";
    position: absolute;
    left: 50%;
    z-index: 100;
    top: 13%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    color: white;
}

.logo-layer{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    width: 30%;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.541);
    transition: 0.4s ;
}

.logo-layer:hover {
    transition: 0.4s;
    width: 70%;
}

.logo-illustration{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.logos{
    margin: auto;
    margin-top: 15%;
    width: 70%;
    margin-bottom: 50px;
    transition: 0.4s;
}

.logo-layer:hover .logos{
    margin-top: 0px; 
    transition: 0.4s;
    width: 50%;
}

.logo-link{
    width: 0%;
    overflow-x: hidden;
    color: transparent;
    /* height: 0; */
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    justify-content: space-evenly;
    align-items: center;
    transition: 0.4s;
    /* margin-bottom: 20px; */
}

.logo-layer:hover .logo-illustration .logo-link{
    width: 100%;
    color: white;
    /* height: auto; */
    transition: 0.4s;
}

.external-link a{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-left: 5px;
    padding-right: 5px;
}

.external-link{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    border-right: 1px solid white;
}

.external-link:last-child{
    border-right: transparent;
}

.logo-button{
    width: 0;
    visibility: hidden;
    overflow-x: hidden;
    /* height: 0; */
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    transition: 0.4s;
}

.logo-layer:hover .logo-illustration .logo-button{
    width: 50%;
    visibility: visible;
    /* height: auto; */
    transition: 0.4s;
}

.force-white{
    color: white !important;
}

.button-flex:hover .padding-flex .force-white{
    /* background-color: white; */
    /* border: 1px solid black; */
    color: black !important;
}

.press-releases{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: underline;
    margin-top: 100px;
    margin-bottom: 100px;
    letter-spacing: 2px;
    font-size: large;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.centered-caroussel{
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10%;
}

.centered-caroussel img{
    box-shadow: 0px 0px 15px rgb(170, 170, 170);
    border-radius: 15px;
}

.text-centered{
    position: absolute;
    width: 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


.centered{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.centered img{
    width: 60%;
}