.header {
    position: absolute;
    top: 75px;
    z-index: 99;
    width: 100%;
}
.flexheader {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 0 60px;
}
.logo {
    width: 260px;
}
.logo a {
    display: block;
    width: 90px;
}
.rightheader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rightheader.white .linkcontact a { color: #fff;}
.rightheader.white .elementlang {color: #fff !important;}
.rightheader.white .btnsearch {color: #fff;}
.rightheader.white .linkcontact a:hover { color: #e29e19;}
.rightheader.white .elementlang:hover {color: #e29e19 !important;}
.rightheader.white .elementlang.item {color: #e29e19 !important;}
.rightheader.white .btnsearch:hover {color: #e29e19;}
.rightheader.white .btnsearch:after {background: #fff;}
.rightheader.white .linkcontact:after {background: #fff;}
#menu-toggle span {
    display: block;
    background: #050505;
}
#menu-toggle {
  width: 90px;
  height: 90px;
  position: relative;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#menu-toggle #hamburger {
  height: 21px;
  width: 35px;
}
#menu-toggle #hamburger span {
  width: 35px;
  height: 1px;
  position: relative;
  top: 0px;
  margin: 0px auto;
  margin-bottom: 9px;
}
#menu-toggle #hamburger span:nth-child(1) {
  transition-delay: .5s;
}
#menu-toggle #hamburger span:nth-child(2) {
  transition-delay: .625s;
  left: -8px;
}
#menu-toggle #hamburger span:nth-child(3) {
  transition-delay: .75s;
  left: 6px;
}
#menu-toggle #cross {
  position: absolute;
  height: 35px;
  width: 35px;
  transform: rotate(45deg);
  top: -7px;
}
#menu-toggle #cross span:nth-child(1) {
  height: 0%;
  width: 1px;
  position: absolute;
  top: 0;
  left: 17.5px;
  transition-delay: 0s;
}
#menu-toggle #cross span:nth-child(2) {
  width: 0%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 17.5px;
  transition-delay: .25s;
}

#menu-toggle.open #hamburger span {
  width: 0%;
}
#menu-toggle.open #hamburger span:nth-child(1) {
  transition-delay: 0s;
}
#menu-toggle.open #hamburger span:nth-child(2) {
  transition-delay: .125s;
}
#menu-toggle.open #hamburger span:nth-child(3) {
  transition-delay: .25s;
}
#menu-toggle.open #cross span:nth-child(1) {
  height: 100%;
  transition-delay: .625s;
}
#menu-toggle.open #cross span:nth-child(2) {
  width: 100%;
  transition-delay: .375s;
}
.menu {
   width: 100%;
   height: 100vh;
   position: fixed;
   left: 0px;
   z-index: 99999;
   transition: 0.7s ease transform;
   transform: translateX(-200vw);
   transition-delay: 0.5s;
   overflow: auto;
   top: 0;
   background: #e29a19;
}
.menu-open {
    transform: translateX(0vw);
}
.menu:after {
    content: "";
    background: url(/Files/App_002/Images/bg-menu.png);
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.menu:before {
    content: "";
    background: #e2aa19;
    background: -moz-linear-gradient(top, #e2aa19 0%, #e2a019 50%, #e29919 100%);
    background: -webkit-linear-gradient(top, #e2aa19 0%,#e2a019 50%,#e29919 100%);
    background: linear-gradient(to bottom, #e2aa19 0%,#e2a019 50%,#e29919 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2aa19', endColorstr='#e29919',GradientType=0 );
    -webkit-clip-path: polygon(0 1%, 100% 0, 78% 100%, 0% 100%);
    clip-path: polygon(0 0%, 100% 0, 78% 100%, 0% 100%);
    width: 67%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.menuFixed {
    display: flex;
    align-items: flex-start;
    padding: 0;
    margin: 95px 0 60px;
    width: 40%;
    align-items: flex-end;
    justify-content: flex-end;
}
.linkcontact a {
    font-size: 18px;
    color: #000;
    font-weight: 300;
   text-transform: uppercase;
}
.linkcontact {
    position: relative;
    padding-right: 15px;
}
.linkcontact:after {
    content: "";
    background: #000;
    width: 1px;
    height: 15px;
    position: absolute;
    right: 0;
    top: 5px;
}
.langue {
    margin-left: 10px;
}
.btnsearch {
    color: #000;
    margin-left: 15px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    padding-left: 15px;
    cursor: pointer;
}
.btnsearch:after {
    content: "";
    background: #000;
    width: 1px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 5px;
}
.btnsearch:hover, .linkcontact a:hover {   
    color :#e2a119;
}
.big {
    position: absolute;
    width: 70px;
    height: 70px;
    overflow: hidden;
    top: 62px;
    cursor: pointer;
    z-index: 999999;
    right: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big::before, .big::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 30px;
    background: #000;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.big::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.big::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.logoback {
    position: absolute;
    top: 40%;
    left: 48%;
    z-index: 99;
    cursor: pointer;
}
.logomenu {
    position: relative;
    float: right;
}

.flexmenu {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}
.navemenu {
    margin-top: 20%;
}
.liste-sociaux {
    display: flex;
    position: relative;
    margin-top: 100px;
}
.liste-sociaux li {
    width: 58px;
    height: 58px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    color: #000;
    cursor: pointer;
}
.liste-sociaux li:first-child {
    margin-left: 0;
}
.liste-sociaux li a {
    color: #000;
    font-size: 20px;
}
.liste-sociaux li a:hover {
    color: #0f528f;
}
.liste-sociaux li:hover {
    color: #0f528f !important;
    border: 1px solid #0f528f;
}
.liste-sociaux li:hover a {
    color: #0f528f;
}
.searchdiv {
    position: fixed;
    width: 100%;
    right: 0;
    top: 0;
    background: rgba(0,0,0,0.70);
    height: 100vh;
    padding: 0;
    overflow: hidden;
    transition: 0.7s ease transform;
    transform: translateX(100vw);
    transition-delay: 0.5s;
    z-index: 999;
}
.searchdiv.searchdivblock {
    transform: translateX(0vw);
}
.serachprod {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    height: 160px;
    align-items: center;
    background: #fff;
}
.searchbtn.big {
    width: 40px;
    height: 40px;
}
.searchbtn.big::before, .searchbtn.big::after {top: 19px;left: 11px;width: 17px;}
.btnuser.item {
    display: flex;
    align-items: center;
    margin-top: -8px;
}
.SearchBox_1_Frame_CssClass {
    width: 100%;
    display: flex;
    align-items: center;
}
.centersearch {
    display: flex;
    width: 60%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
@media screen and (max-width: 1600px) {
.menuFixed {
    margin: 95px 0 60px;
}
.liste-sociaux {
    margin-top: 85px;
}
.navemenu {
    margin-top: 110px;
}
}
@media screen and (max-width: 1440px) {
.menu:before {
    width: 100%;
}
.menuFixed {
    margin: 80px 0 55px;
}
.liste-sociaux {
    margin-top: 70px;
}
.navemenu {
    margin-top: 90px;
}
}
@media screen and (max-width: 1366px) {
.logoback {
    left: 52%;
    width: 20%;
}
}
@media screen and (max-width: 1200px) {
.logoback {
    left: 52%;
}
}
@media screen and (max-width: 1024px) {
.logoback {
    left: 54%;
}
.menuFixed {
    width: 48%;
}
}
@media screen and (max-width: 991px) {
.header {
    position: relative;
    background: #d9e4e8;
   top: 0;
}
.logo a {  width: 100%;}
.flexheader {
    align-items: center;
    padding: 10px 30px;
}
.logo img {
    width: 28%;
}
#menu-toggle {
    width: 70px;
    height: 70px;
}
.rightheader.white .linkcontact a { color: #000;}
.rightheader.white .elementlang {color: #000!important;}
.rightheader.white .btnsearch {color: #000;}
.rightheader.white .btnsearch:after {background: #000;}
.rightheader.white .linkcontact:after {background: #000;}
.logoback {display: none;}
.menu {background: #e2aa19;}
.menu:before, .menu:after {display: none;}
.menuFixed {
    width: 100%;
    align-items: center;
    justify-content: center;
}
.big {
    top: 40px;
    right: 30px;
}
.logomenu {
    position: absolute;
    float: right;
    left: 30px;
    top: 40px;
    width: 28%;
}
.logomenu img {
    width: 28%;
}
.navemenu {
    margin-top: 10%;
}
.flexmenu {
    width: 80%;
    align-items: flex-start;
}
.liste-sociaux {
    margin-top: 30px;
}
.centersearch {
    background: #fff;
    margin-top: 10%;
    width: 100%;
}
}
@media screen and (max-width: 767px) {
.langue {
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}
.flexheader {
    padding: 10px 15px;
}
#menu-toggle #hamburger span {
    width: 25px;
}
#menu-toggle #hamburger {
    width: 25px;
}
.big {
    right: 15px;
    width: 60px;
    height: 60px;
   top: 25px;
}
.logomenu {
    position: absolute;
    left: 15px;
    top: 25px;
}
}

@media screen and (max-width: 550px) {
.logomenu img {
    width: 45%;
}
.navemenu {
    margin-top: 20%;
}
.centersearch {
    margin-top: 15%;
}
}
@media screen and (max-width: 420px) {
.logomenu img {
    width: 73%;
}
}
@media screen and (max-width: 320px) {
#menu-toggle {
    width: 70px;
    height: 60px;
}
}
@media screen and (max-width: 1366px) and (max-height: 800px) {
.menu:before {min-height: 100%;}
.menu:after {
    height: 720px;
}
}
@media screen and (max-width: 1024px) and (max-height: 600px) {
.menu:before {
    height: 150%;
}
.menu:after {
    height: 150%;
}
}