.LangRight {
    display: inline-block;
    width: 99px;
}
.cd-main-content {
  text-align: center;
}
.cd-main-content h1 {
  font-size: 20px;
  font-size: 1.25rem;
  color: #64788c;
  padding: 4em 0;
}
.cd-main-content .cd-btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  height: 75px;
  /* line-height: 75px; */
  width:100%;
  display: block;
  height: 100%;
}
 .cd-main-content .cd-btn:hover {

}
@media only screen and (min-width: 1170px) {
  .cd-main-content h1 {
    font-size: 32px;
    font-size: 2rem;
  }
}

.cd-panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    -webkit-transition: visibility 0s 0.6s;
    -moz-transition: visibility 0s 0.6s;
    transition: visibility 0s 0.6s;
    background: rgba(26,26,26,.4);
    z-index: 9999;
}
.cd-panel::after {
  /* overlay layer */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  -webkit-transition: background 0.3s 0.3s;
  -moz-transition: background 0.3s 0.3s;
  transition: background 0.3s 0.3s;
}
.cd-panel.is-visible {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  -moz-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}
.cd-panel.is-visible::after {
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: background 0.3s 0s;
  -moz-transition: background 0.3s 0s;
  transition: background 0.3s 0s;
}

@-webkit-keyframes cd-close-1 {
  0%, 50% {
    -webkit-transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}
@-moz-keyframes cd-close-1 {
  0%, 50% {
    -moz-transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(45deg);
  }
}
@keyframes cd-close-1 {
  0%, 50% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@-webkit-keyframes cd-close-2 {
  0%, 50% {
    -webkit-transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-45deg);
  }
}
@-moz-keyframes cd-close-2 {
  0%, 50% {
    -moz-transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(-45deg);
  }
}
@keyframes cd-close-2 {
  0%, 50% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.cd-panel-header {
    position: fixed;
    width: 100%;
    z-index: 2;
    -webkit-transition: top 0.3s 0s;
    -moz-transition: top 0.3s 0s;
    transition: top 0.3s 0s;
    padding: 15px 0px 15px 15px;
    display: table;
    float: none;

}
.cd-panel-header a{text-decoration:none; color:#fff;}
.cd-panel-header h1 {
  font-weight: bold;
  color: #89ba2c;
  padding-left: 5%;
}
.from-right .cd-panel-header, .from-left .cd-panel-header {
  top: -150px;
}
.from-right .cd-panel-header {
  right: 0;
  /* background: #209e88; */
}
.from-left .cd-panel-header {
  left: 0;
}
.is-visible .cd-panel-header {
  top: 0;
  -webkit-transition: top 0.3s 0.3s;
  -moz-transition: top 0.3s 0.3s;
  transition: top 0.3s 0.3s;
}
@media only screen and (min-width: 768px) {
  .cd-panel-header {
    width: 50%;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-panel-header {
    width: 40%;
  }
}

.cd-panel-close {
    color: #fff;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.4em;
    display: table-cell;
    float: none;
    /* vertical-align: middle; */
    text-align: right;
}
.cd-panel-close::before, .cd-panel-close::after {
  /* close icon created in CSS */
  position: absolute;
  top: 22px;
  left: 20px;
  height: 3px;
  width: 20px;
 
  /* this fixes a bug where pseudo elements are slighty off position */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
 
 .cd-panel-close:hover {
 
}
 
.cd-panel-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background: #dbe2e9;
  z-index: 1;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.from-right .cd-panel-container {
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.from-left .cd-panel-container {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.is-visible .cd-panel-container {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
@media only screen and (min-width: 768px) {
  .cd-panel-container {
    width:50%;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-panel-container {
    width: 40% !important;
  }
}

.cd-panel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 110px 15px 2vh 10%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: #209e88;
}
.cd-panel-content p {
  font-size: 14px;
  font-size: 0.875rem;
  color: #424f5c;
  line-height: 1.4;
  margin: 2em 0;
}
.cd-panel-content p:first-of-type {
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .cd-panel-content p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6;
  }
}

.headerTitreMenu{
    float: none;
    display: table-cell;
    vertical-align: middle;
    width: 270px;
    width: 270px;
font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.4em;
    height: 50px;
    line-height: 50px;
    color:#fff;
    text-align: center;
}

.LineTop{
    background-color: #000;
    height: 1px;
    top: 0px;
    transition: all 500ms ease-in-out;
    width: 16px;
    position: absolute;
    left: 25px;
}



.LineMiddle{
    background-color: #000;
    height: 1px;
    top: 9px;
    transition: all 500ms ease-in-out;
    width: 32px;
    position: absolute;
    left: 17px;
}

.LineBottom{
    width: 16px;
    background-color: #000;
    height: 1px;
    top: 18px;
    transition: all 500ms ease-in-out;
    position: absolute;
    left: 25px;
}


.PuceMenu {
    display: block;
    position: relative;
    width: 32px;
    text-align: center;
    /* margin-top: 35px; */
}




.PuceMenu {
    /* display: flex; */
    position: absolute;
    width: 60px;
    text-align: center;
    margin-top: 30px;
    padding-left: 14px;
    overflow: hidden;
    float: left;
    height: 20px;
}

@media only screen and (min-width: 768px) {
.MenuResp{

   position: relative;
   /* overflow: hidden; */
   width: 300px;
   display: block;
   height: 100%;
   position: relative;
   overflow: hidden;
}

}

.cd-panel-close:after{

/* top: 0; */

content:"";

transition: top .2s cubic-bezier(.33333,0,.66667,.33333),transform .13s cubic-bezier(.215,.61,.355,1) .22s;

transform: translate3d(0,0px,0) rotate(-45deg);

position: absolute;

top: 6.5px;

width: 1px;

left: 16px;

/* left: 16px; */

height: 20px;

background: #fff;
}
.cd-panel-close:before{content:"";top: -3.5px;transition: top .1s cubic-bezier(.33333,0,.66667,.33333) .15s,transform .13s cubic-bezier(.215,.61,.355,1) .22s;transform: translate3d(0,10px,0) rotate(45deg);position: absolute;width: 1px;height: 20px;left: 15px;background: #fff;}






@media only screen and (max-width: 767px) {
.from-right .cd-panel-header {
    right: 0;
    background: #22a890;
    height: 70px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}
.MenuTxt{font-size:0px;}
.cd-btn{
    height: 45px !important;
    width: 45px !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #000;
margin-top:10px !important;
}
.PuceMenu{
    width: 43px !important;
    text-align: center;
    margin-top: 12px !important;

}
.LineTop,.LineBottom {
    left: 13px  !important;
}
.LineMiddle {
    width: 22px   !important;

    left: 11px   !important;
}
}





a.cd-panel-close{
    display: block;
    right: 0px;
    height: 35px;
    width: 35px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    right: 15px;
    display: block;
}





@media only screen and (min-width: 768px) {
.PuceMenu {
    display: block;
    position: relative;
    width: 32px;
    text-align: center;
    /* margin-top: 35px; */
    height: 50px !important;
    width: 50px !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #000;
    /* padding-top: 10px; */
}
.LineTop {

    height: 1px;
    top: 0px;
    transition: all 500ms ease-in-out;
    width: 16px;
    position: absolute;
    left: 17px;
    top: 15px;
}
.LineMiddle {

    height: 1px;
    top: 9px;
    width: 32px;

    left: 9px;
    top: 22px;
}
.LineBottom {
    width: 16px;
    top: 18px;
    position: absolute;
    left: 17px;
    top: 30px;
}




.PuceMenu {
    /* display: flex; */
    position: absolute;
    width: 60px;
    text-align: center;
    margin-top: 12px;
    left: 8px;
    overflow: hidden;
    float: left;
    height: 20px;
}
}





@media only screen and (min-width: 768px) {

a.cd-panel-close{
  position:absolute !important;
}



}





