@charset "UTF-8";
* {
  --grey:#F3F5FA;
  --grey2:rgba(0, 0, 0, 0.09);
  --grey3:#C4CFDD;
  --white:#FFFFFF;
  --black:#15191E;
  --black2:#22262C;
  --fullblack:#000000;
  --dark:#242424;
  --rouge:#F54D45;
  --jaune:#F5B63B;
  --main:#8e986e;
  --color:#404054;
}

/**********************************************************\
        - RESET DEFAULT
\**********************************************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p, ul, blockquote {
  margin-bottom: 1.5em;
}

b {
  font-weight: bold;
}

u {
  text-decoration: underline;
}

td {
  margin: 0px;
  padding-right: 5px;
}

* {
  margin: 0;
  text-decoration: none;
}


* {
  /* permet de prendre en compte les bordures sur les width*/
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/**********************************************************\
		- Clearfix sur le row
\**********************************************************/
/* Nettoye les problèmes de div */
.row {
  margin: 0 -10px; /*zoom:1;*/
}

.row:before, .row:after {
  content: "";
  display: table;
}

.row:after {
  clear: both;
}

.border {
  border: solid red 1px;
}

/**********************************************************\
		- Mobile First
\**********************************************************/
/* Aspect de bases des colonnes*/
.col-s-1, .col-s-2, .col-s-3, .col-s-4, .col-s-5, .col-s-6, .col-s-7, .col-s-8, .col-s-9, .col-s-10, .col-s-11, .col-s-12 {
  float: left;
  position: relative;
  min-height: 1px;
  padding: 10px;
  /*background-color: rgba(0,0,0, 0.2);
  border : 1px solid rgba(0,0,0, 0.5);*/
}

/* Taille  des colonnes */
.col-s-1 {
  width: 8.33333%;
}

.col-s-2 {
  width: 16.66667%;
}

.col-s-3 {
  width: 25%;
}

.col-s-4 {
  width: 33.33333%;
}

.col-s-5 {
  width: 41.66667%;
}

.col-s-6 {
  width: 50%;
}

.col-s-7 {
  width: 58.33333%;
}

.col-s-8 {
  width: 66.66667%;
}

.col-s-9 {
  width: 75%;
}

.col-s-10 {
  width: 83.33333%;
}

.col-s-11 {
  width: 91.66667%;
}

.col-s-12 {
  width: 100%;
}

/* Pour décaler la div du nombre de crans */
.col-s-push-0 {
  left: 0;
}

.col-s-push-1 {
  left: 8.33333%;
}

.col-s-push-2 {
  left: 16.66667%;
}

.col-s-push-3 {
  left: 25%;
}

.col-s-push-4 {
  left: 33.33333%;
}

.col-s-push-5 {
  left: 41.66667%;
}

.col-s-push-6 {
  left: 50%;
}

.col-s-push-7 {
  left: 58.33333%;
}

.col-s-push-8 {
  left: 66.66667%;
}

.col-s-push-9 {
  left: 75%;
}

.col-s-push-10 {
  left: 83.33333%;
}

.col-s-push-11 {
  left: 91.66667%;
}

.col-s-push-12 {
  left: 100%;
}

/* Centrage sur mobile */
.col-s-center {
  float: none;
  margin: 0 auto;
}

/* Cache sur mobile */
.s-hide {
  display: none;
}

/* Visible uniquement sur mobile */
.s-show {
  display: block;
}

.m-show {
  display: none;
}

.l-show {
  display: none;
}

/**********************************************************\
		- Ecran Médium
\**********************************************************/
@media only screen and (min-width: 1010px) {
  .col-m-1, .col-m-2, .col-m-3, .col-m-4, .col-m-5, .col-m-6, .col-m-7, .col-m-8, .col-m-9, .col-m-10, .col-m-11, .col-m-12 {
    float: left;
    position: relative;
    min-height: 1px;
    padding: 10px;
    /*background-color: rgba(255,0,0, 0.2);
    border : 1px solid rgba(0,0,0, 0.5);*/
  }
  .col-m-1 {
    width: 8.33333%;
  }
  .col-m-2 {
    width: 16.66667%;
  }
  .col-m-3 {
    width: 25%;
  }
  .col-m-4 {
    width: 33.33333%;
  }
  .col-m-5 {
    width: 41.66667%;
  }
  .col-m-6 {
    width: 50%;
  }
  .col-m-7 {
    width: 58.33333%;
  }
  .col-m-8 {
    width: 66.66667%;
  }
  .col-m-9 {
    width: 75%;
  }
  .col-m-10 {
    width: 83.33333%;
  }
  .col-m-11 {
    width: 91.66667%;
  }
  .col-m-12 {
    width: 100%;
  }
  .col-m-push-0 {
    left: 0;
  }
  .col-m-push-1 {
    left: 8.33333%;
  }
  .col-m-push-2 {
    left: 16.66667%;
  }
  .col-m-push-3 {
    left: 25%;
  }
  .col-m-push-4 {
    left: 33.33333%;
  }
  .col-m-push-5 {
    left: 41.66667%;
  }
  .col-m-push-6 {
    left: 50%;
  }
  .col-m-push-7 {
    left: 58.33333%;
  }
  .col-m-push-8 {
    left: 66.66667%;
  }
  .col-m-push-9 {
    left: 75%;
  }
  .col-m-push-10 {
    left: 83.33333%;
  }
  .col-m-push-11 {
    left: 91.66667%;
  }
  .col-m-push-12 {
    left: 100%;
  }
  .col-m-center {
    margin: 0 auto;
    float: none;
  }
  /* Affiche ce qui est invisbible sur mobile */
  .s-hide {
    display: block;
  }
  .m-hide {
    display: none;
  }
  .s-show {
    display: none;
  }
  .m-show {
    display: block;
  }
}
/**********************************************************\
		- Ecran Large
\**********************************************************/
@media only screen and (min-width: 1400px) {
  .col-l-1, .col-l-2, .col-l-3, .col-l-4, .col-l-5, .col-l-6, .col-l-7, .col-l-8, .col-l-9, .col-l-10, .col-l-11, .col-l-12 {
    float: left;
    position: relative;
    min-height: 1px;
    padding: 10px;
    /*background-color: rgba(0,255,0, 0.2);
    border : 1px solid rgba(0,0,0, 0.5);*/
  }
  .col-l-1 {
    width: 8.33333%;
  }
  .col-l-2 {
    width: 16.66667%;
  }
  .col-l-3 {
    width: 25%;
  }
  .col-l-4 {
    width: 33.33333%;
  }
  .col-l-5 {
    width: 41.66667%;
  }
  .col-l-6 {
    width: 50%;
  }
  .col-l-7 {
    width: 58.33333%;
  }
  .col-l-8 {
    width: 66.66667%;
  }
  .col-l-9 {
    width: 75%;
  }
  .col-l-10 {
    width: 83.33333%;
  }
  .col-l-11 {
    width: 91.66667%;
  }
  .col-l-12 {
    width: 100%;
  }
  .col-l-push-0 {
    left: 0;
  }
  .col-l-push-1 {
    left: 8.33333%;
  }
  .col-l-push-2 {
    left: 16.66667%;
  }
  .col-l-push-3 {
    left: 25%;
  }
  .col-l-push-4 {
    left: 33.33333%;
  }
  .col-l-push-5 {
    left: 41.66667%;
  }
  .col-l-push-6 {
    left: 50%;
  }
  .col-l-push-7 {
    left: 58.33333%;
  }
  .col-l-push-8 {
    left: 66.66667%;
  }
  .col-l-push-9 {
    left: 75%;
  }
  .col-l-push-10 {
    left: 83.33333%;
  }
  .col-l-push-11 {
    left: 91.66667%;
  }
  .col-l-push-12 {
    left: 100%;
  }
  .col-l-center {
    margin: 0 auto;
    float: none;
  }
  /* Affiche ce qui n'est pas visible sur medium */
  .m-hide {
    display: block;
  }
  .l-hide {
    display: none;
  }
  .s-show {
    display: none;
  }
  .m-show {
    display: none;
  }
  .l-show {
    display: block;
  }
}
/**********************************************************\
		- Ecran Extra Large
\**********************************************************/
@media only screen and (min-width: 2120px) {
  .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    float: left;
    position: relative;
    min-height: 1px;
    padding: 10px;
  }
  .col-xl-1 {
    width: 8.33333%;
  }
  .col-xl-2 {
    width: 16.66667%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-4 {
    width: 33.33333%;
  }
  .col-xl-5 {
    width: 41.66667%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-7 {
    width: 58.33333%;
  }
  .col-xl-8 {
    width: 66.66667%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-10 {
    width: 83.33333%;
  }
  .col-xl-11 {
    width: 91.66667%;
  }
  .col-xl-12 {
    width: 100%;
  }
  .col-xl-push-0 {
    left: 0;
  }
  .col-xl-push-1 {
    left: 8.33333%;
  }
  .col-xl-push-2 {
    left: 16.66667%;
  }
  .col-xl-push-3 {
    left: 25%;
  }
  .col-xl-push-4 {
    left: 33.33333%;
  }
  .col-xl-push-5 {
    left: 41.66667%;
  }
  .col-xl-push-6 {
    left: 50%;
  }
  .col-xl-push-7 {
    left: 58.33333%;
  }
  .col-xl-push-8 {
    left: 66.66667%;
  }
  .col-xl-push-9 {
    left: 75%;
  }
  .col-xl-push-10 {
    left: 83.33333%;
  }
  .col-xl-push-11 {
    left: 91.66667%;
  }
  .col-xl-push-12 {
    left: 100%;
  }
  .col-xl-center {
    margin: 0 auto;
    float: none;
  }
  /* Affiche ce qui n'est pas visible sur large */
  .l-hide {
    display: block;
  }
  .xl-hide {
    display: none;
  }
  .s-show {
    display: none;
  }
  .m-show {
    display: none;
  }
  .l-show {
    display: none;
  }
  .xl-show {
    display: block;
  }
}
.clear {
  clear: both;
}

.offline {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #c0392b;
  color: #fff;
  text-align: center;
  line-height: 18px;
  z-index: 2500;
}

@font-face {
  font-family: "IcoMoon-Free";
  src: url("./IcoMoon-Free.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  font-family: "IcoMoon-Free" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  margin-right: 15px;
  text-align: center;
  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-home:before {
  content: "\e900";
}

.icon-home2:before {
  content: "\e901";
}

.icon-home3:before {
  content: "\e902";
}

.icon-office:before {
  content: "\e903";
}

.icon-newspaper:before {
  content: "\e904";
}

.icon-pencil:before {
  content: "\e905";
}

.icon-pencil2:before {
  content: "\e906";
}

.icon-quill:before {
  content: "\e907";
}

.icon-pen:before {
  content: "\e908";
}

.icon-blog:before {
  content: "\e909";
}

.icon-eyedropper:before {
  content: "\e90a";
}

.icon-droplet:before {
  content: "\e90b";
}

.icon-paint-format:before {
  content: "\e90c";
}

.icon-image:before {
  content: "\e90d";
}

.icon-images:before {
  content: "\e90e";
}

.icon-camera:before {
  content: "\e90f";
}

.icon-headphones:before {
  content: "\e910";
}

.icon-music:before {
  content: "\e911";
}

.icon-play:before {
  content: "\e912";
}

.icon-film:before {
  content: "\e913";
}

.icon-video-camera:before {
  content: "\e914";
}

.icon-dice:before {
  content: "\e915";
}

.icon-pacman:before {
  content: "\e916";
}

.icon-spades:before {
  content: "\e917";
}

.icon-clubs:before {
  content: "\e918";
}

.icon-diamonds:before {
  content: "\e919";
}

.icon-bullhorn:before {
  content: "\e91a";
}

.icon-connection:before {
  content: "\e91b";
}

.icon-podcast:before {
  content: "\e91c";
}

.icon-feed:before {
  content: "\e91d";
}

.icon-mic:before {
  content: "\e91e";
}

.icon-book:before {
  content: "\e91f";
}

.icon-books:before {
  content: "\e920";
}

.icon-library:before {
  content: "\e921";
}

.icon-file-text:before {
  content: "\e922";
}

.icon-profile:before {
  content: "\e923";
}

.icon-file-empty:before {
  content: "\e924";
}

.icon-files-empty:before {
  content: "\e925";
}

.icon-file-text2:before {
  content: "\e926";
}

.icon-file-picture:before {
  content: "\e927";
}

.icon-file-music:before {
  content: "\e928";
}

.icon-file-play:before {
  content: "\e929";
}

.icon-file-video:before {
  content: "\e92a";
}

.icon-file-zip:before {
  content: "\e92b";
}

.icon-copy:before {
  content: "\e92c";
}

.icon-paste:before {
  content: "\e92d";
}

.icon-stack:before {
  content: "\e92e";
}

.icon-folder:before {
  content: "\e92f";
}

.icon-folder-open:before {
  content: "\e930";
}

.icon-folder-plus:before {
  content: "\e931";
}

.icon-folder-minus:before {
  content: "\e932";
}

.icon-folder-download:before {
  content: "\e933";
}

.icon-folder-upload:before {
  content: "\e934";
}

.icon-price-tag:before {
  content: "\e935";
}

.icon-price-tags:before {
  content: "\e936";
}

.icon-barcode:before {
  content: "\e937";
}

.icon-qrcode:before {
  content: "\e938";
}

.icon-ticket:before {
  content: "\e939";
}

.icon-cart:before {
  content: "\e93a";
}

.icon-coin-dollar:before {
  content: "\e93b";
}

.icon-coin-euro:before {
  content: "\e93c";
}

.icon-coin-pound:before {
  content: "\e93d";
}

.icon-coin-yen:before {
  content: "\e93e";
}

.icon-credit-card:before {
  content: "\e93f";
}

.icon-calculator:before {
  content: "\e940";
}

.icon-lifebuoy:before {
  content: "\e941";
}

.icon-phone:before {
  content: "\e942";
}

.icon-phone-hang-up:before {
  content: "\e943";
}

.icon-address-book:before {
  content: "\e944";
}

.icon-envelop:before {
  content: "\e945";
}

.icon-pushpin:before {
  content: "\e946";
}

.icon-location:before {
  content: "\e947";
}

.icon-location2:before {
  content: "\e948";
}

.icon-compass:before {
  content: "\e949";
}

.icon-compass2:before {
  content: "\e94a";
}

.icon-map:before {
  content: "\e94b";
}

.icon-map2:before {
  content: "\e94c";
}

.icon-history:before {
  content: "\e94d";
}

.icon-clock:before {
  content: "\e94e";
}

.icon-clock2:before {
  content: "\e94f";
}

.icon-alarm:before {
  content: "\e950";
}

.icon-bell:before {
  content: "\e951";
}

.icon-stopwatch:before {
  content: "\e952";
}

.icon-calendar:before {
  content: "\e953";
}

.icon-printer:before {
  content: "\e954";
}

.icon-keyboard:before {
  content: "\e955";
}

.icon-display:before {
  content: "\e956";
}

.icon-laptop:before {
  content: "\e957";
}

.icon-mobile:before {
  content: "\e958";
}

.icon-mobile2:before {
  content: "\e959";
}

.icon-tablet:before {
  content: "\e95a";
}

.icon-tv:before {
  content: "\e95b";
}

.icon-drawer:before {
  content: "\e95c";
}

.icon-drawer2:before {
  content: "\e95d";
}

.icon-box-add:before {
  content: "\e95e";
}

.icon-box-remove:before {
  content: "\e95f";
}

.icon-download:before {
  content: "\e960";
}

.icon-upload:before {
  content: "\e961";
}

.icon-floppy-disk:before {
  content: "\e962";
}

.icon-drive:before {
  content: "\e963";
}

.icon-database:before {
  content: "\e964";
}

.icon-undo:before {
  content: "\e965";
}

.icon-redo:before {
  content: "\e966";
}

.icon-undo2:before {
  content: "\e967";
}

.icon-redo2:before {
  content: "\e968";
}

.icon-forward:before {
  content: "\e969";
}

.icon-reply:before {
  content: "\e96a";
}

.icon-bubble:before {
  content: "\e96b";
}

.icon-bubbles:before {
  content: "\e96c";
}

.icon-bubbles2:before {
  content: "\e96d";
}

.icon-bubble2:before {
  content: "\e96e";
}

.icon-bubbles3:before {
  content: "\e96f";
}

.icon-bubbles4:before {
  content: "\e970";
}

.icon-user:before {
  content: "\e971";
}

.icon-users:before {
  content: "\e972";
}

.icon-user-plus:before {
  content: "\e973";
}

.icon-user-minus:before {
  content: "\e974";
}

.icon-user-check:before {
  content: "\e975";
}

.icon-user-tie:before {
  content: "\e976";
}

.icon-quotes-left:before {
  content: "\e977";
}

.icon-quotes-right:before {
  content: "\e978";
}

.icon-hour-glass:before {
  content: "\e979";
}

.icon-spinner:before {
  content: "\e97a";
}

.icon-spinner2:before {
  content: "\e97b";
}

.icon-spinner3:before {
  content: "\e97c";
}

.icon-spinner4:before {
  content: "\e97d";
}

.icon-spinner5:before {
  content: "\e97e";
}

.icon-spinner6:before {
  content: "\e97f";
}

.icon-spinner7:before {
  content: "\e980";
}

.icon-spinner8:before {
  content: "\e981";
}

.icon-spinner9:before {
  content: "\e982";
}

.icon-spinner10:before {
  content: "\e983";
}

.icon-spinner11:before {
  content: "\e984";
}

.icon-binoculars:before {
  content: "\e985";
}

.icon-search:before {
  content: "\e986";
}

.icon-zoom-in:before {
  content: "\e987";
}

.icon-zoom-out:before {
  content: "\e988";
}

.icon-enlarge:before {
  content: "\e989";
}

.icon-shrink:before {
  content: "\e98a";
}

.icon-enlarge2:before {
  content: "\e98b";
}

.icon-shrink2:before {
  content: "\e98c";
}

.icon-key:before {
  content: "\e98d";
}

.icon-key2:before {
  content: "\e98e";
}

.icon-lock:before {
  content: "\e98f";
}

.icon-unlocked:before {
  content: "\e990";
}

.icon-wrench:before {
  content: "\e991";
}

.icon-equalizer:before {
  content: "\e992";
}

.icon-equalizer2:before {
  content: "\e993";
}

.icon-cog:before {
  content: "\e994";
}

.icon-cogs:before {
  content: "\e995";
}

.icon-hammer:before {
  content: "\e996";
}

.icon-magic-wand:before {
  content: "\e997";
}

.icon-aid-kit:before {
  content: "\e998";
}

.icon-bug:before {
  content: "\e999";
}

.icon-pie-chart:before {
  content: "\e99a";
}

.icon-stats-dots:before {
  content: "\e99b";
}

.icon-stats-bars:before {
  content: "\e99c";
}

.icon-stats-bars2:before {
  content: "\e99d";
}

.icon-trophy:before {
  content: "\e99e";
}

.icon-gift:before {
  content: "\e99f";
}

.icon-glass:before {
  content: "\e9a0";
}

.icon-glass2:before {
  content: "\e9a1";
}

.icon-mug:before {
  content: "\e9a2";
}

.icon-spoon-knife:before {
  content: "\e9a3";
}

.icon-leaf:before {
  content: "\e9a4";
}

.icon-rocket:before {
  content: "\e9a5";
}

.icon-meter:before {
  content: "\e9a6";
}

.icon-meter2:before {
  content: "\e9a7";
}

.icon-hammer2:before {
  content: "\e9a8";
}

.icon-fire:before {
  content: "\e9a9";
}

.icon-lab:before {
  content: "\e9aa";
}

.icon-magnet:before {
  content: "\e9ab";
}

.icon-bin:before {
  content: "\e9ac";
}

.icon-bin2:before {
  content: "\e9ad";
}

.icon-briefcase:before {
  content: "\e9ae";
}

.icon-airplane:before {
  content: "\e9af";
}

.icon-truck:before {
  content: "\e9b0";
}

.icon-road:before {
  content: "\e9b1";
}

.icon-accessibility:before {
  content: "\e9b2";
}

.icon-target:before {
  content: "\e9b3";
}

.icon-shield:before {
  content: "\e9b4";
}

.icon-power:before {
  content: "\e9b5";
}

.icon-switch:before {
  content: "\e9b6";
}

.icon-power-cord:before {
  content: "\e9b7";
}

.icon-clipboard:before {
  content: "\e9b8";
}

.icon-list-numbered:before {
  content: "\e9b9";
}

.icon-list:before {
  content: "\e9ba";
}

.icon-list2:before {
  content: "\e9bb";
}

.icon-tree:before {
  content: "\e9bc";
}

.icon-menu:before {
  content: "\e9bd";
}

.icon-menu2:before {
  content: "\e9be";
}

.icon-menu3:before {
  content: "\e9bf";
}

.icon-menu4:before {
  content: "\e9c0";
}

.icon-cloud:before {
  content: "\e9c1";
}

.icon-cloud-download:before {
  content: "\e9c2";
}

.icon-cloud-upload:before {
  content: "\e9c3";
}

.icon-cloud-check:before {
  content: "\e9c4";
}

.icon-download2:before {
  content: "\e9c5";
}

.icon-upload2:before {
  content: "\e9c6";
}

.icon-download3:before {
  content: "\e9c7";
}

.icon-upload3:before {
  content: "\e9c8";
}

.icon-sphere:before {
  content: "\e9c9";
}

.icon-earth:before {
  content: "\e9ca";
}

.icon-link:before {
  content: "\e9cb";
}

.icon-flag:before {
  content: "\e9cc";
}

.icon-attachment:before {
  content: "\e9cd";
}

.icon-eye:before {
  content: "\e9ce";
}

.icon-eye-plus:before {
  content: "\e9cf";
}

.icon-eye-minus:before {
  content: "\e9d0";
}

.icon-eye-blocked:before {
  content: "\e9d1";
}

.icon-bookmark:before {
  content: "\e9d2";
}

.icon-bookmarks:before {
  content: "\e9d3";
}

.icon-sun:before {
  content: "\e9d4";
}

.icon-contrast:before {
  content: "\e9d5";
}

.icon-brightness-contrast:before {
  content: "\e9d6";
}

.icon-star-empty:before {
  content: "\e9d7";
}

.icon-star-half:before {
  content: "\e9d8";
}

.icon-star-full:before {
  content: "\e9d9";
}

.icon-heart:before {
  content: "\e9da";
}

.icon-heart-broken:before {
  content: "\e9db";
}

.icon-man:before {
  content: "\e9dc";
}

.icon-woman:before {
  content: "\e9dd";
}

.icon-man-woman:before {
  content: "\e9de";
}

.icon-happy:before {
  content: "\e9df";
}

.icon-happy2:before {
  content: "\e9e0";
}

.icon-smile:before {
  content: "\e9e1";
}

.icon-smile2:before {
  content: "\e9e2";
}

.icon-tongue:before {
  content: "\e9e3";
}

.icon-tongue2:before {
  content: "\e9e4";
}

.icon-sad:before {
  content: "\e9e5";
}

.icon-sad2:before {
  content: "\e9e6";
}

.icon-wink:before {
  content: "\e9e7";
}

.icon-wink2:before {
  content: "\e9e8";
}

.icon-grin:before {
  content: "\e9e9";
}

.icon-grin2:before {
  content: "\e9ea";
}

.icon-cool:before {
  content: "\e9eb";
}

.icon-cool2:before {
  content: "\e9ec";
}

.icon-angry:before {
  content: "\e9ed";
}

.icon-angry2:before {
  content: "\e9ee";
}

.icon-evil:before {
  content: "\e9ef";
}

.icon-evil2:before {
  content: "\e9f0";
}

.icon-shocked:before {
  content: "\e9f1";
}

.icon-shocked2:before {
  content: "\e9f2";
}

.icon-baffled:before {
  content: "\e9f3";
}

.icon-baffled2:before {
  content: "\e9f4";
}

.icon-confused:before {
  content: "\e9f5";
}

.icon-confused2:before {
  content: "\e9f6";
}

.icon-neutral:before {
  content: "\e9f7";
}

.icon-neutral2:before {
  content: "\e9f8";
}

.icon-hipster:before {
  content: "\e9f9";
}

.icon-hipster2:before {
  content: "\e9fa";
}

.icon-wondering:before {
  content: "\e9fb";
}

.icon-wondering2:before {
  content: "\e9fc";
}

.icon-sleepy:before {
  content: "\e9fd";
}

.icon-sleepy2:before {
  content: "\e9fe";
}

.icon-frustrated:before {
  content: "\e9ff";
}

.icon-frustrated2:before {
  content: "\ea00";
}

.icon-crying:before {
  content: "\ea01";
}

.icon-crying2:before {
  content: "\ea02";
}

.icon-point-up:before {
  content: "\ea03";
}

.icon-point-right:before {
  content: "\ea04";
}

.icon-point-down:before {
  content: "\ea05";
}

.icon-point-left:before {
  content: "\ea06";
}

.icon-warning:before {
  content: "\ea07";
}

.icon-notification:before {
  content: "\ea08";
}

.icon-question:before {
  content: "\ea09";
}

.icon-plus:before {
  content: "\ea0a";
}

.icon-minus:before {
  content: "\ea0b";
}

.icon-info:before {
  content: "\ea0c";
}

.icon-cancel-circle:before {
  content: "\ea0d";
}

.icon-blocked:before {
  content: "\ea0e";
}

.icon-cross:before {
  content: "\ea0f";
}

.icon-checkmark:before {
  content: "\ea10";
}

.icon-checkmark2:before {
  content: "\ea11";
}

.icon-spell-check:before {
  content: "\ea12";
}

.icon-enter:before {
  content: "\ea13";
}

.icon-exit:before {
  content: "\ea14";
}

.icon-play2:before {
  content: "\ea15";
}

.icon-pause:before {
  content: "\ea16";
}

.icon-stop:before {
  content: "\ea17";
}

.icon-previous:before {
  content: "\ea18";
}

.icon-next:before {
  content: "\ea19";
}

.icon-backward:before {
  content: "\ea1a";
}

.icon-forward2:before {
  content: "\ea1b";
}

.icon-play3:before {
  content: "\ea1c";
}

.icon-pause2:before {
  content: "\ea1d";
}

.icon-stop2:before {
  content: "\ea1e";
}

.icon-backward2:before {
  content: "\ea1f";
}

.icon-forward3:before {
  content: "\ea20";
}

.icon-first:before {
  content: "\ea21";
}

.icon-last:before {
  content: "\ea22";
}

.icon-previous2:before {
  content: "\ea23";
}

.icon-next2:before {
  content: "\ea24";
}

.icon-eject:before {
  content: "\ea25";
}

.icon-volume-high:before {
  content: "\ea26";
}

.icon-volume-medium:before {
  content: "\ea27";
}

.icon-volume-low:before {
  content: "\ea28";
}

.icon-volume-mute:before {
  content: "\ea29";
}

.icon-volume-mute2:before {
  content: "\ea2a";
}

.icon-volume-increase:before {
  content: "\ea2b";
}

.icon-volume-decrease:before {
  content: "\ea2c";
}

.icon-loop:before {
  content: "\ea2d";
}

.icon-loop2:before {
  content: "\ea2e";
}

.icon-infinite:before {
  content: "\ea2f";
}

.icon-shuffle:before {
  content: "\ea30";
}

.icon-arrow-up-left:before {
  content: "\ea31";
}

.icon-arrow-up:before {
  content: "\ea32";
}

.icon-arrow-up-right:before {
  content: "\ea33";
}

.icon-arrow-right:before {
  content: "\ea34";
}

.icon-arrow-down-right:before {
  content: "\ea35";
}

.icon-arrow-down:before {
  content: "\ea36";
}

.icon-arrow-down-left:before {
  content: "\ea37";
}

.icon-arrow-left:before {
  content: "\ea38";
}

.icon-arrow-up-left2:before {
  content: "\ea39";
}

.icon-arrow-up2:before {
  content: "\ea3a";
}

.icon-arrow-up-right2:before {
  content: "\ea3b";
}

.icon-arrow-right2:before {
  content: "\ea3c";
}

.icon-arrow-down-right2:before {
  content: "\ea3d";
}

.icon-arrow-down2:before {
  content: "\ea3e";
}

.icon-arrow-down-left2:before {
  content: "\ea3f";
}

.icon-arrow-left2:before {
  content: "\ea40";
}

.icon-circle-up:before {
  content: "\ea41";
}

.icon-circle-right:before {
  content: "\ea42";
}

.icon-circle-down:before {
  content: "\ea43";
}

.icon-circle-left:before {
  content: "\ea44";
}

.icon-tab:before {
  content: "\ea45";
}

.icon-move-up:before {
  content: "\ea46";
}

.icon-move-down:before {
  content: "\ea47";
}

.icon-sort-alpha-asc:before {
  content: "\ea48";
}

.icon-sort-alpha-desc:before {
  content: "\ea49";
}

.icon-sort-numeric-asc:before {
  content: "\ea4a";
}

.icon-sort-numberic-desc:before {
  content: "\ea4b";
}

.icon-sort-amount-asc:before {
  content: "\ea4c";
}

.icon-sort-amount-desc:before {
  content: "\ea4d";
}

.icon-command:before {
  content: "\ea4e";
}

.icon-shift:before {
  content: "\ea4f";
}

.icon-ctrl:before {
  content: "\ea50";
}

.icon-opt:before {
  content: "\ea51";
}

.icon-checkbox-checked:before {
  content: "\ea52";
}

.icon-checkbox-unchecked:before {
  content: "\ea53";
}

.icon-radio-checked:before {
  content: "\ea54";
}

.icon-radio-checked2:before {
  content: "\ea55";
}

.icon-radio-unchecked:before {
  content: "\ea56";
}

.icon-crop:before {
  content: "\ea57";
}

.icon-make-group:before {
  content: "\ea58";
}

.icon-ungroup:before {
  content: "\ea59";
}

.icon-scissors:before {
  content: "\ea5a";
}

.icon-filter:before {
  content: "\ea5b";
}

.icon-font:before {
  content: "\ea5c";
}

.icon-ligature:before {
  content: "\ea5d";
}

.icon-ligature2:before {
  content: "\ea5e";
}

.icon-text-height:before {
  content: "\ea5f";
}

.icon-text-width:before {
  content: "\ea60";
}

.icon-font-size:before {
  content: "\ea61";
}

.icon-bold:before {
  content: "\ea62";
}

.icon-underline:before {
  content: "\ea63";
}

.icon-italic:before {
  content: "\ea64";
}

.icon-strikethrough:before {
  content: "\ea65";
}

.icon-omega:before {
  content: "\ea66";
}

.icon-sigma:before {
  content: "\ea67";
}

.icon-page-break:before {
  content: "\ea68";
}

.icon-superscript:before {
  content: "\ea69";
}

.icon-subscript:before {
  content: "\ea6a";
}

.icon-superscript2:before {
  content: "\ea6b";
}

.icon-subscript2:before {
  content: "\ea6c";
}

.icon-text-color:before {
  content: "\ea6d";
}

.icon-pagebreak:before {
  content: "\ea6e";
}

.icon-clear-formatting:before {
  content: "\ea6f";
}

.icon-table:before {
  content: "\ea70";
}

.icon-table2:before {
  content: "\ea71";
}

.icon-insert-template:before {
  content: "\ea72";
}

.icon-pilcrow:before {
  content: "\ea73";
}

.icon-ltr:before {
  content: "\ea74";
}

.icon-rtl:before {
  content: "\ea75";
}

.icon-section:before {
  content: "\ea76";
}

.icon-paragraph-left:before {
  content: "\ea77";
}

.icon-paragraph-center:before {
  content: "\ea78";
}

.icon-paragraph-right:before {
  content: "\ea79";
}

.icon-paragraph-justify:before {
  content: "\ea7a";
}

.icon-indent-increase:before {
  content: "\ea7b";
}

.icon-indent-decrease:before {
  content: "\ea7c";
}

.icon-share:before {
  content: "\ea7d";
}

.icon-new-tab:before {
  content: "\ea7e";
}

.icon-embed:before {
  content: "\ea7f";
}

.icon-embed2:before {
  content: "\ea80";
}

.icon-terminal:before {
  content: "\ea81";
}

.icon-share2:before {
  content: "\ea82";
}

.icon-mail:before {
  content: "\ea83";
}

.icon-mail2:before {
  content: "\ea84";
}

.icon-mail3:before {
  content: "\ea85";
}

.icon-mail4:before {
  content: "\ea86";
}

.icon-amazon:before {
  content: "\ea87";
}

.icon-google:before {
  content: "\ea88";
}

.icon-google2:before {
  content: "\ea89";
}

.icon-google3:before {
  content: "\ea8a";
}

.icon-google-plus:before {
  content: "\ea8b";
}

.icon-google-plus2:before {
  content: "\ea8c";
}

.icon-google-plus3:before {
  content: "\ea8d";
}

.icon-hangouts:before {
  content: "\ea8e";
}

.icon-google-drive:before {
  content: "\ea8f";
}

.icon-facebook:before {
  content: "\ea90";
}

.icon-facebook2:before {
  content: "\ea91";
}

.icon-instagram:before {
  content: "\ea92";
}

.icon-whatsapp:before {
  content: "\ea93";
}

.icon-spotify:before {
  content: "\ea94";
}

.icon-telegram:before {
  content: "\ea95";
}

.icon-twitter:before {
  content: "\ea96";
}

.icon-vine:before {
  content: "\ea97";
}

.icon-vk:before {
  content: "\ea98";
}

.icon-renren:before {
  content: "\ea99";
}

.icon-sina-weibo:before {
  content: "\ea9a";
}

.icon-rss:before {
  content: "\ea9b";
}

.icon-rss2:before {
  content: "\ea9c";
}

.icon-youtube:before {
  content: "\ea9d";
}

.icon-youtube2:before {
  content: "\ea9e";
}

.icon-twitch:before {
  content: "\ea9f";
}

.icon-vimeo:before {
  content: "\eaa0";
}

.icon-vimeo2:before {
  content: "\eaa1";
}

.icon-lanyrd:before {
  content: "\eaa2";
}

.icon-flickr:before {
  content: "\eaa3";
}

.icon-flickr2:before {
  content: "\eaa4";
}

.icon-flickr3:before {
  content: "\eaa5";
}

.icon-flickr4:before {
  content: "\eaa6";
}

.icon-dribbble:before {
  content: "\eaa7";
}

.icon-behance:before {
  content: "\eaa8";
}

.icon-behance2:before {
  content: "\eaa9";
}

.icon-deviantart:before {
  content: "\eaaa";
}

.icon-500px:before {
  content: "\eaab";
}

.icon-steam:before {
  content: "\eaac";
}

.icon-steam2:before {
  content: "\eaad";
}

.icon-dropbox:before {
  content: "\eaae";
}

.icon-onedrive:before {
  content: "\eaaf";
}

.icon-github:before {
  content: "\eab0";
}

.icon-npm:before {
  content: "\eab1";
}

.icon-basecamp:before {
  content: "\eab2";
}

.icon-trello:before {
  content: "\eab3";
}

.icon-wordpress:before {
  content: "\eab4";
}

.icon-joomla:before {
  content: "\eab5";
}

.icon-ello:before {
  content: "\eab6";
}

.icon-blogger:before {
  content: "\eab7";
}

.icon-blogger2:before {
  content: "\eab8";
}

.icon-tumblr:before {
  content: "\eab9";
}

.icon-tumblr2:before {
  content: "\eaba";
}

.icon-yahoo:before {
  content: "\eabb";
}

.icon-yahoo2:before {
  content: "\eabc";
}

.icon-tux:before {
  content: "\eabd";
}

.icon-appleinc:before {
  content: "\eabe";
}

.icon-finder:before {
  content: "\eabf";
}

.icon-android:before {
  content: "\eac0";
}

.icon-windows:before {
  content: "\eac1";
}

.icon-windows8:before {
  content: "\eac2";
}

.icon-soundcloud:before {
  content: "\eac3";
}

.icon-soundcloud2:before {
  content: "\eac4";
}

.icon-skype:before {
  content: "\eac5";
}

.icon-reddit:before {
  content: "\eac6";
}

.icon-hackernews:before {
  content: "\eac7";
}

.icon-wikipedia:before {
  content: "\eac8";
}

.icon-linkedin:before {
  content: "\eac9";
}

.icon-linkedin2:before {
  content: "\eaca";
}

.icon-lastfm:before {
  content: "\eacb";
}

.icon-lastfm2:before {
  content: "\eacc";
}

.icon-delicious:before {
  content: "\eacd";
}

.icon-stumbleupon:before {
  content: "\eace";
}

.icon-stumbleupon2:before {
  content: "\eacf";
}

.icon-stackoverflow:before {
  content: "\ead0";
}

.icon-pinterest:before {
  content: "\ead1";
}

.icon-pinterest2:before {
  content: "\ead2";
}

.icon-xing:before {
  content: "\ead3";
}

.icon-xing2:before {
  content: "\ead4";
}

.icon-flattr:before {
  content: "\ead5";
}

.icon-foursquare:before {
  content: "\ead6";
}

.icon-yelp:before {
  content: "\ead7";
}

.icon-paypal:before {
  content: "\ead8";
}

.icon-chrome:before {
  content: "\ead9";
}

.icon-firefox:before {
  content: "\eada";
}

.icon-IE:before {
  content: "\eadb";
}

.icon-edge:before {
  content: "\eadc";
}

.icon-safari:before {
  content: "\eadd";
}

.icon-opera:before {
  content: "\eade";
}

.icon-file-pdf:before {
  content: "\eadf";
}

.icon-file-openoffice:before {
  content: "\eae0";
}

.icon-file-word:before {
  content: "\eae1";
}

.icon-file-excel:before {
  content: "\eae2";
}

.icon-libreoffice:before {
  content: "\eae3";
}

.icon-html-five:before {
  content: "\eae4";
}

.icon-html-five2:before {
  content: "\eae5";
}

.icon-css3:before {
  content: "\eae6";
}

.icon-git:before {
  content: "\eae7";
}

.icon-codepen:before {
  content: "\eae8";
}

.icon-svg:before {
  content: "\eae9";
}

.icon-IcoMoon:before {
  content: "\eaea";
}

.icon-uni21:before {
  content: "!";
}

.icon-uni22:before {
  content: '"';
}

.icon-uni23:before {
  content: "#";
}

.icon-uni24:before {
  content: "$";
}

.icon-uni25:before {
  content: "%";
}

.icon-uni26:before {
  content: "&";
}

.icon-uni27:before {
  content: "'";
}

.icon-uni28:before {
  content: "(";
}

.icon-uni29:before {
  content: ")";
}

.icon-uni2A:before {
  content: "*";
}

.icon-uni2B:before {
  content: "+";
}

.icon-uni2C:before {
  content: ",";
}

.icon-uni2D:before {
  content: "-";
}

.icon-uni2E:before {
  content: ".";
}

.icon-uni2F:before {
  content: "/";
}

.icon-uni30:before {
  content: "0";
}

.icon-uni31:before {
  content: "1";
}

.icon-uni32:before {
  content: "2";
}

.icon-uni33:before {
  content: "3";
}

.icon-uni34:before {
  content: "4";
}

.icon-uni35:before {
  content: "5";
}

.icon-uni36:before {
  content: "6";
}

.icon-uni37:before {
  content: "7";
}

.icon-uni38:before {
  content: "8";
}

.icon-uni39:before {
  content: "9";
}

.icon-uni3A:before {
  content: ":";
}

.icon-uni3B:before {
  content: ";";
}

.icon-uni3C:before {
  content: "<";
}

.icon-uni3D:before {
  content: "=";
}

.icon-uni3E:before {
  content: ">";
}

.icon-uni3F:before {
  content: "?";
}

.icon-uni40:before {
  content: "@";
}

.icon-uni41:before {
  content: "A";
}

.icon-uni42:before {
  content: "B";
}

.icon-uni43:before {
  content: "C";
}

.icon-uni44:before {
  content: "D";
}

.icon-uni45:before {
  content: "E";
}

.icon-uni46:before {
  content: "F";
}

.icon-uni47:before {
  content: "G";
}

.icon-uni48:before {
  content: "H";
}

.icon-uni49:before {
  content: "I";
}

.icon-uni4A:before {
  content: "J";
}

.icon-uni4B:before {
  content: "K";
}

.icon-uni4C:before {
  content: "L";
}

.icon-uni4D:before {
  content: "M";
}

.icon-uni4E:before {
  content: "N";
}

.icon-uni4F:before {
  content: "O";
}

.icon-uni50:before {
  content: "P";
}

.icon-uni51:before {
  content: "Q";
}

.icon-uni52:before {
  content: "R";
}

.icon-uni53:before {
  content: "S";
}

.icon-uni54:before {
  content: "T";
}

.icon-uni55:before {
  content: "U";
}

.icon-uni56:before {
  content: "V";
}

.icon-uni57:before {
  content: "W";
}

.icon-uni58:before {
  content: "X";
}

.icon-uni59:before {
  content: "Y";
}

.icon-uni5A:before {
  content: "Z";
}

.icon-uni5B:before {
  content: "[";
}

.icon-uni5C:before {
  content: "\\";
}

.icon-uni5D:before {
  content: "]";
}

.icon-uni5E:before {
  content: "^";
}

.icon-uni5F:before {
  content: "_";
}

.icon-uni60:before {
  content: "`";
}

.icon-uni61:before {
  content: "a";
}

.icon-uni62:before {
  content: "b";
}

.icon-uni63:before {
  content: "c";
}

.icon-uni64:before {
  content: "d";
}

.icon-uni65:before {
  content: "e";
}

.icon-uni66:before {
  content: "f";
}

.icon-uni67:before {
  content: "g";
}

.icon-uni68:before {
  content: "h";
}

.icon-uni69:before {
  content: "i";
}

.icon-uni6A:before {
  content: "j";
}

.icon-uni6B:before {
  content: "k";
}

.icon-uni6C:before {
  content: "l";
}

.icon-uni6D:before {
  content: "m";
}

.icon-uni6E:before {
  content: "n";
}

.icon-uni6F:before {
  content: "o";
}

.icon-uni70:before {
  content: "p";
}

.icon-uni71:before {
  content: "q";
}

.icon-uni72:before {
  content: "r";
}

.icon-uni73:before {
  content: "s";
}

.icon-uni74:before {
  content: "t";
}

.icon-uni75:before {
  content: "u";
}

.icon-uni76:before {
  content: "v";
}

.icon-uni77:before {
  content: "w";
}

.icon-uni78:before {
  content: "x";
}

.icon-uni79:before {
  content: "y";
}

.icon-uni7A:before {
  content: "z";
}

.icon-uni7B:before {
  content: "{";
}

.icon-uni7C:before {
  content: "|";
}

.icon-uni7D:before {
  content: "}";
}

.icon-uni7E:before {
  content: "~";
}

.icon-uniA9:before {
  content: "©";
}

html, body {
  background: var(--white);
  color: var(--black);
  font-family: "Raleway", sans-serif;
  color: var(--color);
  font-size: 14px;
  line-height: 1.6rem;
  letter-spacing: 1px;
}

* {
  box-sizing: border-box;
}

a {
  background-color: transparent;
}

a, a:visited {
  color: var(--main);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

hr {
  height: 1px;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid var(--main);
}

h1, h2, h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
}

nav a, button {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
}

a:hover, button:hover {
  color: var(--black2);
}

img {
  animation: fadeIn ease 1.5s;
  -webkit-animation: fadeIn ease 1.5s;
  -moz-animation: fadeIn ease 1.5s;
  -o-animation: fadeIn ease 1.5s;
  -ms-animation: fadeIn ease 1.5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.gotop {
  position: fixed;
  bottom: 60px;
  right: -40px;
  z-index: 150;
  background-color: var(--main);
  color: var(--white);
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.gotop div {
  transform: rotateZ(-90deg);
  padding: 14px 16px 14px 16px;
}

.gotop:hover {
  opacity: 1;
}

.gotop.visible {
  right: 16px;
}

/**********************************************************\
        - Header
\**********************************************************/
header {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
header .container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 92%;
  max-width: 1200px;
}
header .container hr {
  margin: 24px 16px;
  display: block;
}
header .social-wrapper {
  position: absolute;
  top: 42px;
  left: 8px;
}
header .social-wrapper #phoneNb {
  position: absolute;
  left: -2px;
  font-size: 0.8rem;
  font-weight: bold;
  top: 30px;
}
header .logo-wrapper {
  position: relative;
  top: -12px;
  text-align: center;
  margin-bottom: 3px;
}
header .logo-wrapper img {
  display: inline-block;
  width: 190px;
  height: auto;
}

.main-nav {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(220, 220, 220, 0.9);
  z-index: 95;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main-nav a {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 4rem;
  font-size: 1.2rem;
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.4s ease-in-out 0.3s;
  transition: all 0.4s ease-in-out 0.3s;
}

.submenu a {
  font-size: 0.8rem;
  letter-spacing: 1px;
  display: block;
  text-align: center;
  margin: 2px auto;
  padding: 6px;
}

.mobile-overlay .main-nav {
  opacity: 1;
  visibility: visible;
  overflow-y: scroll;
}
.mobile-overlay .main-nav a {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/**********************************************************\
        - Footer
\**********************************************************/
footer {
  padding: 101px 0;
  position: relative;
  background-color: var(--grey2);
}
footer .container {
  max-width: 760px;
  margin: 0 auto;
  width: 92%;
}
footer .social-wrapper {
  text-align: center;
}
footer hr {
  margin: 40px 0;
}
footer .bottom-nav {
  display: block;
}
footer .bottom-nav a {
  display: block;
  text-align: center;
  line-height: 1.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.12rem;
}
footer .logo-wrapper {
  text-align: center;
  margin-bottom: 55px;
}
footer .logo-wrapper img {
  max-width: 200px;
}
footer .copyright {
  position: absolute;
  bottom: 30px;
  right: 60px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  opacity: 0.4;
  font-family: "Futura", sans-serif;
  font-size: 0.7rem;
}

/**********************************************************\
        - Menu hamburger
\**********************************************************/
.hamburger {
  display: block;
  position: absolute;
  top: 50px;
  right: 30px;
  z-index: 100;
  width: 30px;
  height: 15px;
}
.hamburger .line {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--main);
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger .line:first-of-type {
  top: 0;
}
.hamburger .line:last-of-type {
  bottom: 0;
}

.mobile-overlay .hamburger .line:last-of-type {
  top: 50%;
  bottom: auto;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mobile-overlay .hamburger .line:first-of-type {
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

main h1 {
  text-align: center;
  margin-top: 24px;
  color: var(--main);
  font-size: 1.26rem;
  line-height: 2rem;
  font-style: italic;
}

/**********************************************************\
		- Socials
\**********************************************************/
.social-wrapper {
  z-index: 10;
}
.social-wrapper .sc-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  content: "";
  border-radius: 1px;
  overflow: hidden;
  margin: 8px 2px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.social-wrapper .sc-icon.fb {
  background-image: url("./gfx/icon-fb.png");
}
.social-wrapper .sc-icon.ig {
  background-image: url("./gfx/icon-ig.png");
}
.social-wrapper .sc-icon.yt {
  background-image: url("./gfx/icon-yt.png");
}

/**********************************************************\
        - Pagination
\**********************************************************/
#pagination {
  max-width: 300px;
  margin: 20px auto 40px;
  display: flex;
  justify-content: center;
  position: relative;
}
#pagination .current,
#pagination a {
  position: relative;
  border-radius: 2px;
  display: inline-block;
  margin: 6px;
  padding: 4px 8px 7px;
  background-color: var(--main);
  color: var(--white);
  opacity: 0.5;
  line-height: 1rem;
}
#pagination .current {
  opacity: 1;
  color: var(--black2);
}
#pagination .spacer {
  line-height: 2rem;
}

/**********************************************************\
        - HomePage
\**********************************************************/
.main-slider {
  overflow: hidden;
  display: block;
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.main-slider img {
  top: 0;
  position: absolute;
  object-fit: cover;
  width: 100%;
  min-height: 100%;
  opacity: 1;
  -moz-transition: opacity 1s ease-out;
  -o-transition: opacity 1s ease-out;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
}
.main-slider .title {
  position: absolute;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 380px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  padding: 40px 20px;
  z-index: 10;
  font-size: 0.8rem;
  letter-spacing: 0.15rem;
  color: #fff;
  color: #878798;
}
.main-slider .title div:first-of-type {
  text-align: center;
}
.main-slider .title div:last-of-type {
  text-align: center;
}

/**********************************************************\
        - Créations
\**********************************************************/
#creations {
  margin: 60px 0 16px 0;
}
#creations h2 {
  text-align: center;
  padding-bottom: 40px;
}

.ratio_150 {
  padding-top: 150%;
  overflow: hidden;
}

.crea {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}
.crea .item {
  overflow: hidden;
  position: relative;
  content: "";
  width: 100%;
  display: block;
}
.crea .item img {
  top: 0;
  position: absolute;
  object-fit: cover;
  width: 100%;
  min-height: 100%;
  opacity: 1;
  -moz-transition: opacity 1s ease-out;
  -o-transition: opacity 1s ease-out;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
  transition: all 0.3s ease-in;
  filter: grayscale(0);
}
.crea .item .infos {
  transition: opacity 0.3s ease-in-out, transform 0.5s ease-in-out;
  padding: 24px 22px;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(245, 243, 240, 0.75);
}
.crea .item .infos h3 {
  font-style: italic;
  text-transform: none;
  font-size: 1rem;
  letter-spacing: 0px;
}
.crea .item:hover img {
  filter: grayscale(1);
  opacity: 0.4;
}
.crea .item:hover h3 {
  color: var(--main);
}
.crea h3 {
  text-transform: inherit;
  color: var(--main);
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  line-height: 1rem;
}

/**********************************************************\
        - reportages
\**********************************************************/
#reportages {
  margin-bottom: 60px;
}
#reportages .infos {
  color: #fff;
  background-color: transparent;
  background-color: rgba(245, 243, 240, 0.3);
}

/**********************************************************\
        - Liste news
\**********************************************************/
#news {
  text-align: center;
}
#news .seeMoreNews {
  display: inline-block;
  margin: 0px auto 40px;
  position: relative;
  font-family: "Old Standard TT", serif;
}
#news .seeMoreNews:after,
#news .seeMoreNews:before {
  display: block;
  width: 50px;
  height: 1px;
  background-color: var(--main);
  content: "";
  position: absolute;
  left: -66px;
  top: 0.8rem;
  z-index: 0;
  opacity: 0.2;
}
#news .seeMoreNews:after {
  left: inherit;
  right: -66px;
}
#news h2 {
  margin-bottom: 40px;
}

.listNews {
  text-align: center;
  position: relative;
}
.listNews .content {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
  text-align: left;
}
.listNews .content .sideTitle {
  display: none;
}
.listNews .content picture {
  position: relative;
  margin: 0 32px;
  display: block;
}
.listNews .content picture img {
  width: 100%;
  opacity: 1;
  transition: all 0.3s ease-in;
  filter: grayscale(0);
}
.listNews .content .infos {
  padding: 0 32px;
  color: var(--black);
}
.listNews .content .infos .dates {
  position: relative;
  font-weight: bold;
  font-size: 0.7rem;
}
.listNews .content .infos .title {
  text-transform: none;
  font-style: italic;
  font-size: 1.2rem;
  margin: 6px 0;
}
.listNews .content .infos .subtitle {
  color: var(--main);
  margin: 6px 0;
}
.listNews .content .infos .shortdesc {
  margin: 6px 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.listNews .content .infos .seeMore {
  font-weight: bold;
  font-size: 0.7rem;
  padding: 6px 0 20px 0;
  display: block;
}
.listNews hr {
  margin: 0px auto 40px auto;
  width: 100%;
  max-width: 300px;
}
.listNews hr:last-of-type {
  display: none;
}

/**********************************************************\
        - tags
\**********************************************************/
.tags {
  text-align: center;
  margin-bottom: 32px;
}
.tags a {
  display: inline-block;
  padding: 2px 6px;
  margin: 4px;
  background-color: var(--main);
  opacity: 0.5;
  border-radius: 2px;
  line-height: 1.5rem;
  font-size: 0.7rem;
  color: var(--white);
  font-weight: normal !important;
}

/**********************************************************\
        - Blog
\**********************************************************/
#contact .main-slider,
#blog .main-slider {
  display: flex;
  position: relative;
}
#contact .main-slider .title,
#blog .main-slider .title {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
}
#contact .main-slider .title h1,
#blog .main-slider .title h1 {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  font-size: 2rem;
  line-height: 2.4rem;
}
#contact .main-slider .title h2,
#blog .main-slider .title h2 {
  font-size: 1.1rem;
  text-transform: none;
  font-style: italic;
  letter-spacing: 0px;
}
#contact .container,
#blog .container {
  padding: 16px;
  max-width: 720px;
  margin: 0 auto 40px;
}
#contact .container p,
#blog .container p {
  text-align: justify;
  text-indent: 32px;
}
#contact .container a,
#blog .container a {
  font-weight: bold;
}
#contact .container iframe,
#blog .container iframe {
  width: 100%;
  margin: 16px 0;
}
#contact .container h2,
#blog .container h2 {
  text-transform: none;
  letter-spacing: 0px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2rem;
  font-style: italic;
  margin: 32px;
}
#contact .container img,
#blog .container img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 16px 0;
}
#contact .container .date,
#blog .container .date {
  color: var(--black);
  position: relative;
  font-weight: bold;
  font-size: 0.7rem;
  text-align: right;
}

/**********************************************************\
        - Contacts
\**********************************************************/
#contact {
  padding: 40px 0;
}
#contact textarea,
#contact input {
  border: none;
  padding: 10px 25px;
  display: block;
  margin: 15px 0;
  color: var(--main);
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  border-bottom: solid 1px var(--main);
}
#contact .mid_input {
  display: inline-block;
}
#contact .bt_save {
  margin: 32px auto;
  background-color: var(--main);
  color: var(--white);
  border-radius: 4px;
}
#contact .contacts {
  text-align: center;
  margin: 40px;
}
#contact .contacts .phone {
  font-size: 2.6rem;
  line-height: 3rem;
}

/**********************************************************\
        - ALERT
\**********************************************************/
.alert {
  font-family: "Lucia Grande", Verdana, Arial, sans-serif;
  display: block;
  position: fixed;
  z-index: 500;
  top: 40px;
  right: 4em;
  padding: 0px 16px;
  background-color: #00ACEE;
  color: #fff;
  font-size: 14px;
  line-height: 35px;
  cursor: default;
  text-shadow: rgba(0, 0, 0, 0.1) 0px 1px 0px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  animation: fadeout 6s normal forwards ease-in-out;
  -o-animation: fadeout 6s normal forwards ease-in-out;
  -moz-animation: fadeout 6s normal forwards ease-in-out;
  -webkit-animation: fadeout 6s normal forwards ease-in-out;
}

.alert-success {
  opacity: 1;
  filter: alpha(opacity=100);
  background-color: #4EBD4A;
}

.alert-error {
  background: #EE4F3D;
}

.alert-info {
  background: #00ACEE;
}

@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  75% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  75% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}
/**********************************************************\
		- Ecran Médium
\**********************************************************/
@media only screen and (min-width: 1010px) {
  /*****  Header *****************************************************/
  header .container {
    width: 92%;
    max-width: 1000px;
    position: relative;
  }
  header .container hr {
    width: 100%;
    max-width: 760px;
    margin: 36px auto 24px auto;
  }
  header .hamburger {
    display: none;
  }
  header nav a {
    color: var(--main);
  }
  header .social-wrapper .sc-icon {
    margin: 8px 4px;
  }
  header .social-wrapper #phoneNb {
    position: absolute;
    left: 4px;
    font-size: 0.8rem;
    top: -24px;
  }
  .social-wrapper {
    left: 4%;
  }
  .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: initial;
    flex-direction: initial;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    position: relative;
    margin-top: 20px;
  }
  .main-nav a {
    opacity: 1;
    display: inline-block;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .submenu {
    text-align: center;
  }
  .submenu a {
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: inline-block;
    text-align: center;
    margin: 2px auto;
    padding: 6px 16px;
    position: relative;
  }
  .submenu a::after {
    content: "";
    border-bottom: 1px solid #9696A7;
    width: 6px;
    top: 48%;
    -webkit-transform: translateY(-50%);
    display: block;
    position: absolute;
    right: -6px;
    height: 1px;
  }
  .submenu a:last-of-type::after {
    display: none;
  }
  /*****  Footer *****************************************************/
  footer .bottom-nav {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  footer .bottom-nav a {
    display: inline-block;
    color: var(--main);
  }
  /*****  HomePage *****************************************************/
  .main-slider {
    padding-top: calc(50% - 184px);
  }
  .main-slider img {
    height: 100%;
  }
  .main-slider .title {
    display: none;
  }
  /*****  Créations *****************************************************/
  .crea {
    padding: 0px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  /*****  Reportages *****************************************************/
  #reportages {
    margin-bottom: 60px;
  }
  #reportages .infos {
    color: var(--black);
    opacity: 0;
  }
  #reportages .item {
    padding-top: 70%;
  }
  #reportages .item:hover .infos {
    opacity: 1;
    background-color: rgba(245, 243, 240, 0.95);
  }
  #blog .main-slider {
    padding-top: calc(50% - 280px);
  }
  /*****  Liste news *****************************************************/
  .listNews {
    max-width: 720px;
    margin: 0 auto;
  }
  .listNews .content {
    padding: 0px;
    margin: 32px 0;
    margin-top: 64px;
    grid-template-columns: 250px 1fr;
    position: relative;
  }
  .listNews .content picture {
    padding-top: 100%;
    margin: 0;
    max-height: 360px;
    height: 360px;
    width: 264px;
    z-index: 1;
  }
  .listNews .content picture img {
    top: 0;
    position: absolute;
    object-fit: cover;
    width: 100%;
    min-height: 100%;
  }
  .listNews .content .sideTitle {
    transform-origin: top left;
    display: block;
    color: var(--main);
    opacity: 0.5;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: absolute;
    top: -20px;
    left: 0;
  }
  .listNews .content .sideTitle:after {
    display: block;
    width: 50px;
    height: 1px;
    background-color: var(--main);
    content: "";
    position: absolute;
    z-index: 0;
    width: 6px;
    height: 6px;
    border-radius: 5px;
    right: -10px;
    top: 8px;
    opacity: 0.2;
  }
  .listNews .content .infos {
    margin-top: 0px;
  }
  .listNews .content .infos .shortdesc {
    -webkit-line-clamp: 6;
    text-align: justify;
    text-indent: 32px;
  }
  .listNews .content .infos .dates:before {
    display: block;
    background-color: var(--main);
    content: "";
    position: absolute;
    z-index: 0;
    opacity: 0.1;
    left: -27px;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 5px;
  }
  .listNews hr {
    margin: 40px auto;
    width: 50%;
    opacity: 0.2;
  }
  /*****  Liste news *****************************************************/
  #contact .gridInput {
    display: grid;
    grid-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }
  #contact .bt_save {
    max-width: 200px;
  }
  #contact .main-slider .title,
  #blog .main-slider .title {
    top: 45%;
  }
}/*# sourceMappingURL=style.css.map */