@charset "UTF-8";
/*
@mixin transition($transition) {
    -moz-transition:    $transition;
    -o-transition:      $transition;
    -webkit-transition: $transition;
    transition:         $transition;
}
*/
/*
@mixin transition-timing-function($timing) {
    -moz-transition-timing-function:    $timing;
    -o-transition-timing-function:      $timing;
    -webkit-transition-timing-function: $timing;
    transition-timing-function:         $timing;
}

@mixin transition-delay($delay) {
    -moz-transition-delay:    $delay;
    -o-transition-delay:      $delay;
    -webkit-transition-delay: $delay;
    transition-delay:         $delay;
}
*/
/*
@import "../partials/_variables.scss";
@import "../partials/_mixins.scss";
@import "../partials/_layout.scss";
*/
/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

*, *:after, *:before {
  box-sizing: border-box;
  /*@include box-sizing(border-box);*/ }

html, body {
  /* you need to set this to assign to the main element a min height of 100% */
  height: 100%; }

body {
  font-size: 100%;
  color: #4e6361;
  background-color: #f5f4e9; }

a {
  color: #6cac70;
  text-decoration: none; }

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap; }

.overflow-hidden {
  overflow: hidden; }

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-main-content {
  /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
  min-height: 100%;
  position: relative;
  background-color: #f5f4e9;
  z-index: 2;
  padding-top: 100px;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -moz-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: transform;
  transition-property: transform;
  -moz-transition-property: 0.4s;
  -o-transition-property: 0.4s;
  -webkit-transition-property: 0.4s;
  transition-property: 0.4s;
  /*@include MQ(M) {
  	padding-top: $header-M;
  }*/ }
  .cd-main-content.lateral-menu-is-open {
    /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
    -moz-transform: translateX(-260px);
    -o-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    -webkit-transform: translateX(-260px);
    transform: translateX(-260px); }

header {
  /*	position: absolute;
  	top: 0;
  	left: 0;
  	height: $header-S;*/
  width: 100%;
  background: #fff;
  z-index: 3;
  /* Force Hardware Acceleration in WebKit */
  /* Pose problème dans Firefox 50, empêche*/
  /*-webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;*/
  -moz-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: transform;
  transition-property: transform;
  -moz-transition-property: 0.4s;
  -o-transition-property: 0.4s;
  -webkit-transition-property: 0.4s;
  transition-property: 0.4s;
  /*@include MQ(M) {
  	height: $header-M;
  }*/ }
  header.lateral-menu-is-open {
    /* translate to show the lateral menu */
    /*@include transform(translateX(-260px));*/
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    -o-transform: translateX(-260px);
    transform: translateX(-260px); }
  header.is-fixed {
    position: fixed; }
  @media only screen and (min-width: 768px) {
    header header {
      height: 70px; } }

#cd-logo {
  display: block;
  float: left;
  margin: 12px 0 0 20px; }
  #cd-logo img {
    display: block; }
  @media only screen and (min-width: 768px) {
    #cd-logo #cd-logo {
      margin: 22px 0 0 30px; } }

#cd-top-nav {
  /*position: absolute;
  top: 0;
  right: 120px;*/
  height: 100%; }
  #cd-top-nav ul {
    /*height: 100%;*/
    padding-top: 18px; }
  #cd-top-nav li {
    display: inline-block;
    margin-right: 1em; }
  #cd-top-nav a {
    display: inline-block;
    padding: .5em;
    text-transform: uppercase;
    font-weight: 600; }
    #cd-top-nav a.current {
      background-color: transparent; }
    .no-touch #cd-top-nav a:hover {
      color: rgba(255, 255, 255, 0.7); }
  @media only screen and (min-width: 768px) {
    #cd-top-nav #cd-top-nav {
      display: block; } }

#cd-menu-trigger {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: white;
  	/*@include MQ(M) {
  		width: 110px;
  		padding-left: 1.25em;
  
  		.cd-menu-text {
  			display: inline-block;
  			line-height: $header-M;
  		}
  
  		.cd-menu-icon {
  			left: auto;
  			right: 1.25em;
  			@include transform(translateX(0));
  		}
  	}*/ }
  #cd-menu-trigger .cd-menu-text {
    height: 100%;
    text-transform: uppercase;
    color: #FFF;
    font-weight: 600;
    display: none; }
  #cd-menu-trigger .cd-menu-icon {
    /* this span is the central line in the menu menu */
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 18px;
    height: 2px;
    background-color: #FFF;
    /*		left: 50%;
    		top: 50%;
    		bottom: auto;
    		right: auto;*/
    /* these are the upper and lower lines in the menu menu */ }
    #cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      background-color: inherit;
      left: 0; }
    #cd-menu-trigger .cd-menu-icon::before {
      bottom: 5px; }
    #cd-menu-trigger .cd-menu-icon::after {
      top: 5px; }
  #cd-menu-trigger.is-clicked .cd-menu-icon {
    background-color: rgba(255, 255, 255, 0); }
    #cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
      background-color: white; }
    #cd-menu-trigger.is-clicked .cd-menu-icon::before {
      bottom: 0;
      /*@include transform(rotate(45deg));*/
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg); }
    #cd-menu-trigger.is-clicked .cd-menu-icon::after {
      top: 0;
      /*@include transform(rotate(-45deg));*/
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg); }
  @media only screen and (min-width: 768px) {
    #cd-menu-trigger {
      width: 110px;
      padding-left: 1.25em; }
      #cd-menu-trigger .cd-menu-text {
        display: inline-block;
        line-height: 70px; }
      #cd-menu-trigger .cd-menu-icon {
        left: auto;
        right: 1.25em;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0); } }

.cd-lateral-nav {
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  /*visibility: hidden;*/
  /* the secondary navigation is covered by the main element */
  z-index: 1;
  width: 260px;
  background-color: transparent;
  overflow-y: auto;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
  transition: transform .4s 0s, visibility 0s .4s;
  /* this creates the subtle slide in animation of the navigation */
  /*@include transform(translateX(80px));*/
  /*-webkit-transform: translateX(80px);
    -moz-transform: translateX(80px);
    -ms-transform: translateX(80px);
    -o-transform: translateX(80px);
    transform: translateX(80px);*/
  /*@include translateX(80);*/
  /*@include MQ(M) {
  	.cd-navigation {
  		margin: 20px 0;
  	}
  }*/ }
  .cd-lateral-nav .cd-navigation {
    /*margin: 10px 0 16px;*/
    margin: 0; }
  .cd-lateral-nav .sub-menu {
    padding: 0 10px 20px 15px;
    display: none; }
  .cd-lateral-nav a {
    display: block;
    line-height: 2em;
    padding: 0 16px 0 32px;
    color: #fff; }
    .cd-lateral-nav a.current {
      background-color: rgba(26, 26, 26, 0);
      color: #FFF; }
    .no-touch .cd-lateral-nav a:hover {
      color: #FFF; }
  @media only screen and (min-width: 768px) {
    .cd-lateral-nav .cd-lateral-nav .cd-navigation {
      margin: 20px 0; } }
  .cd-lateral-nav.lateral-menu-is-open {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
    -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
    transition: transform .4s 0s, visibility 0s 0s;
    /* smooth the scrolling on touch devices - webkit browsers */
    -webkit-overflow-scrolling: touch;
    z-index: 10; }

/* style menu items which have a submenu  */
.cd-lateral-nav .item-has-children {
  position: relative; }
  .cd-lateral-nav .item-has-children > a {
    text-transform: uppercase;
    font-weight: 600;
    width: 90%;
    display: inline-block;
    /* this is the right arrow to show that the item has a submenu  */
    		/*&::after {
    			content: '';
    			display: block;
    			height: 11px;
    			width: 8px;
    			position: absolute;
    			@include center(y);
    			right: 1em;
    			background: url('../images/cd-arrow.svg') no-repeat center center;
    			background-size: 8px 11px;
    
    			@include transition-property(transform);
    			@include transition-duration(.2s);
    		}*/ }
  .cd-lateral-nav .item-has-children .tochild {
    content: '';
    display: block;
    height: 11px;
    width: 10%;
    position: absolute;
    top: 50%;
    bottom: auto;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1em;
    background: url("../images/cd-arrow.svg") no-repeat center center;
    background-size: 8px 11px;
    top: 13px;
    -moz-transition-property: transform;
    -o-transition-property: transform;
    -webkit-transition-property: transform;
    transition-property: transform;
    -moz-transition-property: 0.2s;
    -o-transition-property: 0.2s;
    -webkit-transition-property: 0.2s;
    transition-property: 0.2s; }
    .cd-lateral-nav .item-has-children .tochild.submenu-open {
      -moz-transform: translateY(-50%) rotate(90deg);
      -o-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
      -webkit-transform: translateY(-50%) rotate(90deg);
      transform: translateY(-50%) rotate(90deg); }

.cd-lateral-nav .socials {
  padding: 0 52px; }
  .cd-lateral-nav .socials::after {
    content: "";
    display: table;
    clear: both;
    border-collapse: collapse; }
  .cd-lateral-nav .socials a {
    height: 32px;
    width: 32px;
    float: left;
    padding: 0;
    background-image: url("../images/cd-socials.svg");
    background-repeat: no-repeat;
    background-size: 128px 64px;
    background-color: #FFF;
    margin-right: .5em;
    border-radius: 0.25em; }
    .cd-lateral-nav .socials a.cd-twitter {
      background-position: 0 0; }
    .cd-lateral-nav .socials a.cd-github {
      background-position: -32px 0; }
    .cd-lateral-nav .socials a.cd-facebook {
      background-position: -64px 0; }
    .cd-lateral-nav .socials a.cd-google {
      background-position: -96px 0; }
    .no-touch .cd-lateral-nav .socials a:hover {
      background-color: #fff; }
      .no-touch .cd-lateral-nav .socials a:hover.cd-twitter {
        background-position: 0 -32px; }
      .no-touch .cd-lateral-nav .socials a:hover.cd-github {
        background-position: -32px -32px; }
      .no-touch .cd-lateral-nav .socials a:hover.cd-facebook {
        background-position: -64px -32px; }
      .no-touch .cd-lateral-nav .socials a:hover.cd-google {
        background-position: -96px -32px; }

/*# sourceMappingURL=style-sen.css.map */
