/* _____________ bloc _____________*/

.bloc,
.bloc-shadow,
.bloc-blue,
.bloc-white,
.bloc-black,
.bloc-orange {
  padding: 15px;
  background: #efefef;
  border-radius: 3px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* before color */
.bloc-blue {
  background: #dfe5ec;
  border: 1px solid #92b6db;
}

.bloc-white {
  background: #fff;
}

.bloc-shadow {
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, .2);
  background: #fff;
}

.bloc-orange {
  background: #f8d7a9;
  border: 1px solid #dca75c;
}

.bloc-black {
  background: #333;
  border: 1px solid #111;
}

/* _____________ color _____________*/

.color-red {
  color: #cd511a
}

.bg-red {
  background-color: #cd511a
}

.color-dark-red {
  color: #aa312d
}

.bg-dark-red {
  background-color: #aa312d
}

.color-orange {
  color: #e57f12
}

.bg-orange {
  background-color: #e57f12
}

.color-yellow {
  color: #ffcd26
}

.bg-yellow {
  background-color: #ffcd26
}

.color-dark-yellow {
  color: #fab600
}

.bg-dark-yellow {
  background-color: #fab600
}

.color-green {
  color: #57a116
}

.bg-green {
  background-color: #57a116
}

.color-dark-green {
  color: #57a116
}

.bg-dark-green {
  background-color: #57a116
}

.color-light-green {
  color: #55a607
}

.bg-light-green {
  background-color: #55a607
}

.color-blue {
  color: #3972ac
}

.bg-blue {
  background-color: #3972ac
}

.color-dark-blue {
  color: #1a4c7e
}

.bg-dark-blue {
  background-color: #1a4c7e
}

.color-light-blue {
  color: #528ccd
}

.bg-light-blue {
  background-color: #528ccd
}

.color-pink {
  color: #f8d7a9
}

.bg-pink {
  background-color: #f8d7a9
}

.color-turquoise {
  color: #12a28f
}

.bg-turquoise {
  background-color: #12a28f
}

.color-gold {
  color: #e99740
}

.bg-gold {
  background-color: #e99740
}

.color-white {
  color: #FFF;
}

.bg-white {
  background: #FFF;
}

.color-black {
  color: #000;
}

.bg-black {
  background: #000;
}

.color-grey {
  color: #777;
}

.bg-grey {
  background: #777;
}

.color-light-grey {
  color: #ddd;
}

.bg-light-grey {
  background: #ddd;
}

.color-dark-grey {
  color: #333;
}

.bg-dark-grey {
  background: #333;
}

.text-shadow-btn {
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.8);
}

.tshadow-white {
  text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
}

.tshadow-white-raid {
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
}

.tshadow-dark {
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.tshadow-dark-raid {
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
}

.box-shadow-s {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

.box-shadow-m {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

.box-shadow-l {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.box-shadow-xl {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

/* _____________background_____________*/

.bg-dark-xs {
  background-color: rgba(0, 0, 0, 0.1);
}

.bg-dark-s {
  background-color: rgba(0, 0, 0, 0.3);
}

.bg-dark-m {
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-dark-l {
  background-color: rgba(0, 0, 0, 0.9);
}

.bg-dark-xl {
  background-color: rgba(0, 0, 0, 1);
}

.bg-light-xs {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-light-s {
  background-color: rgba(255, 255, 255, 0.3);
}

.bg-light-m {
  background-color: rgba(255, 255, 255, 0.5);
}

.bg-light-l {
  background-color: rgba(255, 255, 255, 0.9);
}

.bg-light-xl {
  background-color: rgba(255, 255, 255, 1);
}

/* _____________opacity_____________*/

.opacity-xs {
  background: rgba(255, 255, 255, 0.1);
}

.opacity-s {
  background: rgba(255, 255, 255, 0.3);
}

.opacity-m {
  background: rgba(255, 255, 255, 0.5);
}

.opacity-l {
  background: rgba(255, 255, 255, 0.9);
}

.opacity-xl {
  background: rgba(255, 255, 255, 1);
}

/* _____________space_____________*/

.padding-s {
  padding: 3px;
}

.padding-m {
  padding: 6px;
}

.padding-l {
  padding: 9px;
}

.padding-xl {
  padding: 12px;
}

.padding-xxl {
  padding: 24px;
}

/* pour les no, pas de - */
.nomargin {
  margin: 0
}

.nopadding {
  padding: 0
}

.nostyle {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.margin-top-s {
  margin-top: 10px
}

.margin-top-m {
  margin-top: 20px
}

.margin-top-l {
  margin-top: 30px
}

.margin-bottom-s {
  margin-bottom: 10px
}

.margin-bottom-m {
  margin-bottom: 20px
}

.margin-bottom-l {
  margin-bottom: 30px
}

.margin-left-s {
  margin-left: 10px
}

.margin-left-m {
  margin-left: 20px
}

.margin-left-l {
  margin-left: 30px
}

.margin-right-s {
  margin-right: 10px
}

.margin-right-m {
  margin-right: 20px
}

.margin-right-l {
  margin-right: 30px
}

/* _____________font_____________*/

.font-size-s {
  font-size: 10px
}

.font-size-m {
  font-size: 13px
}

.font-size-l {
  font-size: 16px
}

.font-size-xl {
  font-size: 20px
}

.font-size-xxl {
  font-size: 24px
}

/* _____________ btn _____________*/

.btn-simple,
.btn-transparent,
.btn-blue,
.btn-white,
.btn-black,
.btn-dark-grey,
.btn-grey,
.btn-green,
.btn-yellow,
.btn-orange,
.btn-red {
  display: inline-block;
  cursor: pointer;
  border-radius: 4px;
  padding: 6px 10px;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 100;
  text-decoration: none;
  text-align: center;
  border: none;
  -moz-user-select: none;
  /* Firefox */
  -webkit-user-select: none;
  /* Chrome, Safari, OpÃƒÂ©ra depuis la version 15 */
  -ms-user-select: none;
  /* Internet explorer depuis la version 10 et Edge */
  user-select: none;
  /* PropriÃƒÂ©tÃƒÂ© standard */
  outline: none;
}

.btn-simple:hover,
.btn-blue:hover,
.btn-white:hover,
.btn-black:hover,
.btn-dark-grey:hover,
.btn-grey:hover,
.btn-green:hover,
.btn-yellow:hover,
.btn-orange:hover,
.btn-red:hover {
  filter: brightness(105%);
  transition: ease 0.15s all;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-transparent {}

.btn-transparent:hover {
  background: rgba(0, 0, 0, 0.1);
}

.btn-small {
  padding: 4px 8px;
  font-size: 13px;
}

.btn-simple {
  color: #333;
  background-color: #ffca10;
  border-bottom: 1px solid #db9b13;
}


.btn-black {
  color: #fff;
  background-color: #222;
  border-bottom: 1px solid #000;
}

.btn-dark-grey {
  color: #fff;
  background-color: #555;
  border-bottom: 1px solid #333;
}

.btn-grey {
  color: #333;
  background-color: #dfdfdf;
  border-bottom: 1px solid #ccc;
}

.btn-blue {
  color: #FFF;
  background-color: #4b89cf;
  border-bottom: 1px solid #196fa6;
}

.btn-white {
  color: #333;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-green {
  color: #FFF;
  background-color: #5cb209;
  border-bottom: 1px solid #47840c;
}

.btn-yellow {
  color: #333;
  background-color: #ffca10;
  border-bottom: 1px solid #db9b13;
}

.btn-orange {
  color: #FFF;
  background-color: #ff8f22;
}

.btn-red {
  color: #FFF;
  background-color: #ea4c48;
}

.btn-big {
  font-size: 17px;
  font-weight: 400;
}

.btn-txt-white {
  color: #fff;
}

.btn-txt-black {
  color: #000;
}


/* _____________badge_____________*/

.badge {
  border-radius: 3px;
  padding: 3px 6px;
}

/* _____________ bubble _____________*/

.bubble,
.bubble-xxs,
.bubble-xs,
.bubble-s,
.bubble-l,
.bubble-xl,
.bubble-xxl {
  border-radius: 50%;
  width: 36px;
  min-width: 36px;
  height: 36px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bubble-xxs {
  font-size: 8px;
  width: 12px;
  min-width: 12px;
  height: 12px;
}

.bubble-xs {
  font-size: 10px;
  width: 18px;
  min-width: 18px;
  height: 18px;
}

.bubble-s {
  font-size: 12px;
  width: 24px;
  min-width: 24px;
  height: 24px;
}

.bubble {}

.bubble-l {
  font-size: 20px;
  width: 48px;
  min-width: 48px;
  height: 48px;
}

.bubble-xl {
  font-size: 24px;
  width: 64px;
  min-width: 64px;
  height: 64px;
}

.bubble-xxl {
  font-size: 48px;
  width: 96px;
  min-width: 96px;
  height: 96px;
}


/* _____________border_____________*/

.noborder {
  border: none;
}

.border-radius-s {
  border-radius: 3px
}

.border-radius-m {
  border-radius: 6px
}

.border-radius-l {
  border-radius: 10px
}

.border-light-s {
  border: 1px solid rgba(255, 255, 255, 0.3)
}

.border-light-m {
  border: 1px solid rgba(255, 255, 255, 0.5)
}

.border-light-l {
  border: 1px solid rgba(255, 255, 255, 0.9)
}

.border-dark-s {
  border: 1px solid rgba(0, 0, 0, 0.3)
}

.border-dark-m {
  border: 1px solid rgba(0, 0, 0, 0.5)
}

.border-dark-l {
  border: 1px solid rgba(0, 0, 0, 0.9)
}

.border-bottom {
  border-width: 0px 0px 1px 0px;
}

.dotted {
  border-style: dotted;
}

.dashed {
  border-style: dashed;
}

.space-xxs {
  clear: both;
  height: 1px
}

.space-xs {
  clear: both;
  height: 5px
}

.space-s {
  clear: both;
  height: 10px
}

.space-m {
  clear: both;
  height: 20px
}

.space-l {
  clear: both;
  height: 30px
}

hr {
  clear: both;
  height: 30px;
  border: none;
  display: block;
  width: 100%;
}

.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w22 {
  width: 22%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

/* _____________ size _____________*/

.font-size-xxs {
  font-size: 8px
}

.font-size-xs {
  font-size: 10px
}

.font-size-s {
  font-size: 12px
}

.font-size-m {
  font-size: 14px
}

.font-size-l {
  font-size: 16px
}

.font-size-xl {
  font-size: 18px
}

.font-size-xxl {
  font-size: 20px
}

.lh-50 {
  line-height: 50%;
}

.lh-100 {
  line-height: 100%;
}

.lh-150 {
  line-height: 150%;
}

/* _____________ align _____________*/

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.float-none {
  float: none;
}

.float-left-c2 {
  float: left;
  width: 48%;
  margin-right: 4%;
}

.float-right-c2 {
  float: right;
  width: 48%;
  margin-left: 4%;
}

/* _____________ decoration _____________*/

.decoration-none {
  text-decoration: none;
}

.decoration-underline {
  text-decoration: underline;
}

.decoration-through {
  text-decoration: line-through;
}


/* _____________ case _____________*/


.normalcase {
  text-transform: none;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}


.bold {
  font-weight: blod;
}

.regular {
  font-weight: 400;
}

.light {
  font-weight: 100;
}

/* _____________ display _____________*/

.d-inline {
  display: inline;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-none {
  display: none;
}

.d-flex {
  display: flex;
}

/* _____________ pos _____________*/

.pos-relative {
  position: relative;
}

.pos-absolute {
  position: absolute;
}

.pos-fixed {
  position: fixed;
}

/* _____________ center _____________*/

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-center-x {
  display: flex;
  justify-content: center;
}

.flex-center-y {
  display: flex;
  align-items: center;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-around {
  display: flex;
  justify-content: space-around;
}

.flex {
  display: flex;
  align-items: center;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

/* _____________ video _____________*/

.video {
  width: 100%;
  height: 54vw;
}

.c2 .video {
  width: 100%;
  height: 280px;
}

/* _____________ code _____________*/

textarea.code {
  padding: 10px;
  background: #333;
  color: yellow;
  width: 100%;
  border: none;
  overflow: auto;
  min-height: 30px;
  font-size: 12px;
  font-family: verdana;
  margin: 5px 0px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

/* _____________ cols _____________*/

.c2,
.c3,
.c4,
.c5,
.c6,
.c2sameonmob,
.c3sameonmob,
.c4sameonmob,
.c5sameonmob,
.c2largeonpad,
.c3largeonpad,
.c4largeonpad,
.c5largeonpad,
.c4toc2onmob {
  display: flex;
  justify-content: space-between;
}

.c2>.c {
  width: 48%
}

.c3>.c {
  width: 31%
}

.c3>.cc {
  width: 66%
}

.c4>.c {
  width: 23%
}

.c4>.cc {
  width: 50%
}

.c4>.ccc {
  width: 75%
}

.c5>.c {
  width: 18%
}

.c5>.cc {
  width: 38%
}

.c5>.ccc {
  width: 58%
}

.c5>.cccc {
  width: 78%
}

.c6>.c {
  width: 15%
}

.c6>.cc {
  width: 30%
}

.c6>.ccc {
  width: 45%
}

.c6>.cccc {
  width: 60%
}

.c6>.ccccc {
  width: 75%
}

.c2sameonmob>.c {
  width: 48%
}

.c3sameonmob>.c {
  width: 31%
}

.c3sameonmob>.cc {
  width: 62%
}

.c4sameonmob>.c {
  width: 23%
}

.c4sameonmob>.cc {
  width: 50%
}

.c4sameonmob>.ccc {
  width: 75%
}

.c5sameonmob>.c {
  width: 18%
}

.c2largeonpad>.c {
  width: 48%
}

.c3largeonpad>.c {
  width: 31%
}

.c3largeonpad>.cc {
  width: 62%
}

.c4largeonpad>.c {
  width: 23%
}

.c4largeonpad>.cc {
  width: 50%
}

.c4largeonpad>.ccc {
  width: 75%
}

.c5largeonpad>.c {
  width: 18%
}

.c4toc2onmob>.c {
  width: 23%
}

.cXtoc2onmob>.c {}





@media screen and (max-width: 1080px) {
  .nomob {
    display: none
  }

  body .mobonly {
    display: block;
  }

  .desktoponly {
    display: none;
  }

  .c2largeonpad,
  .c3largeonpad,
  .c4largeonpad,
  .c5largeonpad {
    flex-flow: column;
  }

  .c2largeonpad>.c {
    width: 100%
  }

  .c3largeonpad>.c {
    width: 100%
  }

  .c3largeonpad>.cc {
    width: 100%
  }

  .c4largeonpad>.c {
    width: 100%
  }

  .c4largeonpad>.cc {
    width: 100%
  }

  .c4largeonpad>.ccc {
    width: 100%
  }

  .c5largeonpad>.c {
    width: 100%
  }

}


@media screen and (max-width: 1080px) {

  /* Colonne petites on Mob */
  .cmaxonmob {
    max-width: 360px;
    margin: 10px auto;
  }

  .c2,
  .c3,
  .c4,
  .c5,
  .c6 {
    flex-flow: column;
  }

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

  .mob-column-reverse {
    flex-direction: column-reverse;
  }

  .c2>.c {
    width: 100%
  }

  .c3>.c {
    width: 100%
  }

  .c3>.cc {
    width: 100%
  }

  .c4>.c {
    width: 100%
  }

  .c4>.cc {
    width: 100%
  }

  .c4>.ccc {
    width: 100%
  }

  .c4>.ccc {
    width: 100%
  }

  .c5>.c {
    width: 100%
  }

  .c5>.cc {
    width: 100%
  }

  .c5>.ccc {
    width: 100%
  }

  .c5>.cccc {
    width: 100%
  }

  .c6>.c {
    width: 100%
  }

  .c6>.cc {
    width: 100%
  }

  .c6>.ccc {
    width: 100%
  }

  .c6>.cccc {
    width: 100%
  }

  .c6>.ccccc {
    width: 100%
  }

  .c4toc2onmob {
    flex-wrap: wrap
  }

  .c4toc2onmob>.c {
    width: 48%;
  }

  .w100onmob {
    width: 100%
  }

  .rowonmob {
    flex-flow: row;
  }

  .columnonmob {
    flex-flow: column;
  }

  .c2onmob>.c,
  .c2onmob>.cc,
  .c2onmob>.ccc {
    width: 48%;
    flex-wrap: wrap
  }

  .align-center-onmob {
    text-align: center;
  }

  .margin-s-onmob {
    margin: 5px 0px
  }

  .margin-m-onmob {
    margin: 10px 0px
  }

  .margin-l-onmob {
    margin: 20px 0px
  }

  .align-right-onmob {
    text-align: right;
  }

  .align-left-onmob {
    text-align: left;
  }

  .align-center-onmob {
    text-align: center;
  }

  .wraponmob {
    flex-wrap: wrap;
  }

}

.nomob {}

.mobonly {
  display: none;
}

.desktoponly {
  display: block;
}


/* _____________framework-form-2020.css_____________*/

input[type="text"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="email"],
textarea,
select {
  border: 1px solid rgba(0, 0, 0, .25);
  border-bottom: 1px solid rgba(0, 0, 0, .35);
  border-top: 1px solid rgba(0, 0, 0, .20);
  padding: 6px 8px;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  background-image: linear-gradient(0deg, #fff, #fff);
  box-shadow: 0 0 2px 2px rgba(47, 181, 210, .5)
}

input {
  background-image: linear-gradient(0deg, #fff, rgba(0, 0, 0, .05));
}

textarea {
  background: #fefefe;
}

select {}

input[type="button"],
input[type="submit"] {
  background-image: none;
}











/* ___________________framework-structure-2020.css___________________________ */


/*
#wrapper
#header
#nav
#main
#footer
*/


/* __________________________ Global __________________________ */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{}

body{
font-family: sans-serif;
}

.fluid,
.fluid-x{
padding: 10px 3%;
margin: 0 auto;
max-width: 1280px;
}
.fluid-x{
padding-top:0;
padding-bottom:0;
}

header{
background: #fff;
}

#logo a img{
height: 120px;
}

nav{}

main{
  min-height: 400px;
}

aside.sidebar{
  background: #292929;
}

footer{
background: #000;
min-height: 120px;
}

#nav {
  background: #222;
}

#menu-main{
display: flex;
}

#menu-main li{
display: flex;
}

#menu-main a{
  color: #fff;
  font-size: 18px;
  text-decoration:none;
}

#menu-main .submenu{
position: absolute;
min-width: 300px;
background-color: #292929;
display: none;
z-index: 2000;
}
#menu-main li:hover .submenu{
display: block;
}

#menu-main .submenu li{
min-height: 60px;
height: auto;
}

#menu-main .submenu a{
font-size: 16px;
background-color: #292929;
line-height: normal;
padding: 12px 12px 12px 12px;
min-height: 60px;
display: block;
border-bottom: 1px solid #444;

}
#menu-main .submenu a img{
width: 40px;
height: 40px;
display: block;
border-radius: 2px;
float: left;
margin-right: 12px;
}
#menu-main .submenu a span{
color: yellow;
font-size: 12px;
display: block;
}

#menu-main .submenu a:hover{
background-color: #000;
}



/* nav mobile */

a#mobile-menu-btn {
  position: absolute;
  left: 0;
  top: 0;
  color:#666;
  display: none;
  color: #666;
  display: none;
  width: 90px;
  height: 94px;
  text-align:center;
  cursor: pointer;
  z-index: 65000;
}
nav.open a#mobile-menu-btn {

}
a#mobile-menu-btn i{ line-height:60px;font-size:25px; }
a#mobile-menu-btn em{position: absolute; font-style: normal; opacity:0.8; text-align: center; width: 100%; font-size: 11px; line-height: 8px; top: 130%}


#mobile-menu-btn .txt-menu{
display: block;
}
#nav.open #mobile-menu-btn .txt-menu{
display: none;
}
#mobile-menu-btn .txt-fermer{
display: none;
}
#nav.open #mobile-menu-btn .txt-fermer{
display: block;
}





#mobile-menu-links{
width: 100%;
}
#mobile-menu-links div{
display: flex;
justify-content: space-between;
}


#mobile-menu-overlay{
z-index: 2999;
position: fixed;
width: 100%;
height: 100%;
min-height: 800px;
background:rgba(0,0,0,0.9);
background:rgba(19,96,142,0.9) ;
transform: translateX(100%);
opacity: 0;
}

body.nav-open{
overflow-y: scroll;
}

body.nav-open header{
min-height: 100vh;
}
body.nav-open footer{
display: none;
}

#nav.open #mobile-menu-links,
#nav.open #mobile-menu-overlay{
transform: translateX(0);
opacity: 1;
transition: opacity 0.5s;
display: block;
}



#mobile-menu-links ul{
margin-bottom: 15px;
list-style-type: none;
margin: 0;
}

#mobile-menu-links ul li a{

}

/* nav hamburger */
#nav-hamburger{
  width: 40px;
  height: 30px;
  position: relative;
  margin: 0 auto;
  top: 30px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-hamburger span{
  display: block;
  position: absolute;
  height: 12%;
  width: 100%;
  background: #333;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .15s ease-in-out;
  -moz-transition: .15s ease-in-out;
  -o-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

#nav-hamburger span:nth-child(1) {
  top: 0px;
}

#nav-hamburger span:nth-child(2),#nav-hamburger span:nth-child(3) {
  top: 50%;
}

#nav-hamburger span:nth-child(4) {
 top: 100%;
}

#nav.open #mobile-menu-btn #nav-hamburger span:nth-child(1) {
  top: 7.5px;
  width: 0%;
  left: 50%;
}

#nav.open #mobile-menu-btn #nav-hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav.open #mobile-menu-btn #nav-hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);

}

#nav.open #mobile-menu-btn #nav-hamburger span:nth-child(4) {
  top: 7.5px;
  width: 0%;
  left: 50%;
}







/* back to top */
#back-to-top{
  opacity: 0.2;
  width: 40px;
  height: 30px;
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 60px 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#back-to-top span{
  display: block;
  position: absolute;
  height: 20%;
  width: 100%;
  background: #000;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}


#nav #mobile-menu-add{
  display: none;
}

/* __________________________ Content __________________________ */

p, li{ font-size:14px; margin:5px 0px}

ul{ margin:10px 20px}
ul li{ }

/* __________________________ Mobile __________________________ */


body.nav-open header {
    min-height: 100vh;
}


@media screen and (max-width: 1080px)
{
  .fluid,
  .fluid-x{
  padding: 10px 6%;
  }
  nav{min-height: auto; }
  nav.open{min-height: 100%; }
  #nav .fluid-x{
  padding: 0;
  }
  #nav.open .fluid-x{
  padding: 10px 6%;
  }

  #logo a img{
  height: auto;
  width: 200px;
  max-width: 100%;
  }

  #menu-main li .submenu,
  #menu-main li:hover .submenu{
  display: none;
  }

  #main.hide{
    display: none;
  }


  nav{
    min-height: inherit;
  }
  #nav #mobile-menu-add{
    display: block;
  }
  #header-links{
    display: none;
  }
  a#mobile-menu-btn {display: block; }
  #mobile-menu-links{ display: none; }
  #mobile-menu-links { display: none; }
  #mobile-menu-links div {flex-direction: column; }
  #mobile-menu-links ul {flex-direction: column; }
  .open #mobile-menu-links{ display: block; }
}
