@charset "UTF-8";
abbr, acronym, address, applet, article, aside, audio, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details,
dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, iframe, img, ins, kbd,
label, legend, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, strike, sub, summary, sup, table, tbody, td,
tfoot, th, thead, time, tr, tt, var, video {
  border: 0;
  font-size: 14px;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300; }

html {
  max-width: 100%; }

strong {
  font-weight: 600; }

a:hover {
  color: #000000; }

a {
  color: #000000;
  cursor: pointer;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none; }
  a img {
    vertical-align: middle; }

a:-webkit-any-link {
  color: #000000;
  cursor: pointer;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: bold; }
  a:-webkit-any-link img {
    vertical-align: middle; }

body {
  background-color: #000000; }

img {
  max-width: 100%; }

.contenu {
  margin-left: 10%;
  margin-right: 10%;
  max-width: 1300px; }
  @media screen and (min-width: 1600px) {
    .contenu {
      margin-left: auto;
      margin-right: auto; } }
  @media screen and (max-width: 1200px) {
    .contenu {
      margin-left: 5%;
      margin-right: 5%; } }
  @media screen and (max-width: 750px) {
    .contenu {
      margin-left: 4%;
      margin-right: 4%;
      padding-bottom: 50px; } }

.main_bloc {
  padding-top: 50px;
  padding-bottom: 50px; }

.mobile {
  display: none; }
  @media screen and (max-width: 750px) {
    .mobile {
      display: block; } }

.noMobile {
  display: block; }
  @media screen and (max-width: 750px) {
    .noMobile {
      display: none; } }

.mobile2 {
  display: none; }
  @media screen and (max-width: 750px) {
    .mobile2 {
      display: inline-block; } }

.noMobile2 {
  display: inline-block; }
  @media screen and (max-width: 750px) {
    .noMobile2 {
      display: none; } }

.mobile3 {
  display: none; }
  @media screen and (max-width: 750px) {
    .mobile3 {
      display: flex; } }

.noMobile3 {
  display: flex; }
  @media screen and (max-width: 750px) {
    .noMobile3 {
      display: none !important; } }

.menu, .menu_site {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 100;
  background: white;
  width: 100%; }
  @media screen and (max-width: 750px) {
    .menu, .menu_site {
      display: none; } }
  .menu .navLeft, .menu_site .navLeft {
    width: 30%;
    margin-top: 20px;
    margin-bottom: 20px; }
    .menu .navLeft img, .menu_site .navLeft img {
      width: 100px;
      max-width: 150px; }
  .menu ul, .menu_site ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .menu ul li, .menu_site ul li {
      list-style: none;
      padding-left: 10px;
      padding-right: 10px;
      color: #000000; }
      .menu ul li a, .menu_site ul li a {
        text-decoration: none;
        padding-bottom: 5px; }
        .menu ul li a span, .menu_site ul li a span {
          font-family: "Raleway";
          font-size: 15px;
          color: #000000;
          font-weight: 300; }
      .menu ul li a:hover, .menu_site ul li a:hover {
        border-bottom: 2px solid black; }
    .menu ul li:last-child, .menu_site ul li:last-child {
      padding-right: 0; }
    .menu ul li.active a, .menu_site ul li.active a {
      border-bottom: 2px solid black; }
    .menu ul li.separator, .menu_site ul li.separator {
      margin-left: 0px;
      padding-right: 0;
      padding-left: 0; }

.menu_site {
  padding-left: 10%;
  padding-right: 10%;
  width: 80%;
  position: relative;
  z-index: 1; }
  .menu_site .navLeft img {
    width: 200px;
    max-width: inherit;
    max-width: 240px; }
  .menu_site .langs {
    position: absolute;
    right: 10%;
    top: 30px; }
    .menu_site .langs a {
      text-decoration: none;
      font-size: 14px;
      color: #959595;
      margin-left: 10px; }
    .menu_site .langs a.active {
      font-weight: bold;
      color: #000000; }

.hideMenu {
  -webkit-transition: top 0.2s ease-in-out;
  transition: top 0.2s ease-in-out;
  top: -100px; }

.hideMenu.active {
  -webkit-transition: top 0.4s ease-in-out;
  transition: top 0.4s ease-in-out;
  top: 0; }

.dimmerLeftMenu {
  background-color: rgba(0, 0, 0, 0.65); }

.dimmer.active {
  display: block;
  opacity: 1;
  overflow: hidden;
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s; }

.dimmer {
  display: none;
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 200%;
  text-align: center;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  line-height: 1;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-transition: background-color .5s linear;
  transition: background-color .5s linear;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  will-change: opacity;
  z-index: 1000;
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s; }

.leftMenu {
  position: fixed;
  top: 0;
  left: -100%;
  opacity: 0;
  z-index: 9999;
  width: 60%;
  background-color: black;
  height: 100%;
  padding: 20px;
  transition: left 0.8s, opacity 0.3s;
  -webkit-transition: left 0.8s, opacity 0.3s; }
  .leftMenu a {
    font-family: "Montserrat";
    font-size: 15px;
    color: white;
    font-weight: 300; }
  .leftMenu ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0; }
    .leftMenu ul li {
      margin-bottom: 30px; }
    .leftMenu ul li.active a span  {
      color: #000000; }

.leftMenu.active {
  left: 0;
  opacity: 1;
  transition: left 0.5s, opacity 0.3s;
  -webkit-transition: left 0.5s, opacity 0.3s; }

.separator_div {
  margin-top: 80px;
  margin-bottom: 80px; }

@media screen and (max-width: 750px) {
  .separator_div {
    margin-top: 40px;
    margin-bottom: 40px; } }
.left_cha {
  font-size: 50px;
  font-family: "Raleway";
  color: #9e8755;
  writing-mode: tb-rl;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  border-left: 2px solid #9e8755;
  margin: 20px;
  position: absolute;
  left: 0;
  margin-top: 10vh; }
  @media screen and (max-width: 750px) {
    .left_cha {
      display: none; } }
  @media screen and (min-height: 800px) {
    .left_cha {
      margin-top: 16vh; } }
  @media screen and (max-height: 700px) {
    .left_cha {
      display: none; } }

.home {
  min-height: calc(100%-140px); }

.home .logo img {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 10vh;
  max-height: 300px; }
  @media screen and (min-height: 800px) {
    .home .logo img {
      margin-top: 20vh; } }

.center {
  text-align: center; }

.btn {
  font-family: "Raleway";
  border-radius: 12px 12px 12px 12px;
  background-color: white;
  border-top: 2px solid #9e8755;
  border-right: 2px solid #9e8755;
  border-bottom: 2px solid #9e8755;
  border-left: 2px solid #9e8755;
  font-size: 14px;
  color: #9e8755;
  font-weight: bold;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px; }

.buttons {
  margin-top: 50px;
  display: flex;
  justify-content: center; }
  .buttons input {
    border-radius: 12px;
    border-top: 2px solid #9e8755;
    border-left: 2px solid #9e8755;
    border-right: 2px solid #9e8755;
    border-bottom: 2px solid #9e8755;
    border-radius: 12px 0 0 12px;
    padding: 10px;
    font-size: 14px;
    min-width: 200px; }
  .buttons .btn {
    font-family: "Raleway";
    border-radius: 0 12px 12px 0;
    background-color: white;
    border-top: 2px solid #9e8755;
    border-right: 2px solid #9e8755;
    border-bottom: 2px solid #9e8755;
    border-left: none;
    font-size: 14px;
    color: #9e8755;
    font-weight: bold;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
    padding-top: 0;
    padding-bottom: 0; }

.footer {
  position: relative;
  bottom: 0;
  width: 70%;
  padding-left: 15%;
  padding-right: 15%;
  padding-top: 20px;
  height: 140px;
  background-color: #000000;
  border-top: 2px solid #9e8755;
  display: flex;
  justify-content: space-between;
  color: #ffffff; }
  @media screen and (max-width: 1200px) {
    .footer {
      width: 80%;
      padding-left: 10%;
      padding-right: 10%; } }
  @media screen and (max-width: 1000px) {
    .footer {
      width: 90%;
      padding-left: 5%;
      padding-right: 5%; } }
  @media screen and (max-width: 750px) {
    .footer {
      display: block;
      text-align: center;
      height: auto;
      position: relative; } }
  @media screen and (max-width: 750px) {
    .footer .logo {
      padding-bottom: 40px; } }
  .footer .logo img {
    max-height: 125px;
    max-width: 100%; }
  @media screen and (max-width: 750px) {
    .footer .b_footer {
      padding-bottom: 40px; } }
  .footer .b_footer .title {
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: bold; }
    @media screen and (max-width: 750px) {
      .footer .b_footer .title {
        text-decoration: underline; } }
    .footer .b_footer .title span {
      border-top: 1px solid #ffffff;
      width: 40px;
      display: block; }
      @media screen and (max-width: 750px) {
        .footer .b_footer .title span {
          display: none; } }
  .footer .b_footer .content {
    font-size: 12px;
    margin-bottom: 10px; }
    .footer .b_footer .content a {
      color: #ffffff;
      font-weight: normal;
      text-transform: inherit; }
      .footer .b_footer .content a img {
        max-width: 20px; }
  .footer .infos .content a {
    line-height: 30px; }
  .footer .lang.b_footer {
    min-width: 150px; }
    @media screen and (max-width: 750px) {
      .footer .lang.b_footer .content {
        margin-top: 20px; } }
    .footer .lang.b_footer .content a {
      line-height: 30px;
      display: flex;
      align-items: center; }
      @media screen and (max-width: 750px) {
        .footer .lang.b_footer .content a {
          justify-content: center; } }
      .footer .lang.b_footer .content a div {
        text-align: left;
        border-bottom: 1px solid #76767f;
        line-height: 22px; }
        @media screen and (max-width: 750px) {
          .footer .lang.b_footer .content a div {
            min-width: 95px;
            border-bottom: none; } }
      .footer .lang.b_footer .content a img {
        max-height: 15px;
        margin-right: 10px; }

.p_home .footer {
  position: absolute; }
  @media screen and (max-width: 750px) {
    .p_home .footer {
      position: relative;
      margin-top: 100px; } }
  @media screen and (max-height: 720px) {
    .p_home .footer {
      position: relative;
      margin-top: 100px; } }

.who_we_are {
  margin-bottom: 80px; }
  @media screen and (max-width: 750px) {
    .who_we_are {
      margin-bottom: 20px; } }
  .who_we_are .logo img {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 5vh;
    max-height: 300px; }
    @media screen and (min-height: 800px) {
      .who_we_are .logo img {
        margin-top: 5vh; } }
  .who_we_are .content {
    margin-top: 50px;
    column-count: 2;
    column-gap: 40px; }
    @media screen and (max-width: 750px) {
      .who_we_are .content {
        column-count: 1; } }
    .who_we_are .content .title {
      font-size: 20px;
      text-transform: uppercase;
      font-weight: bold;
      color: #ffffff; }
      @media screen and (max-width: 750px) {
        .who_we_are .content .title {
          font-size: 20px; } }
      .who_we_are .content .title .border_or {
        display: block;
        width: 130px;
        margin-top: 30px;
        border-bottom: 2px solid #9e8755;
        margin-bottom: 30px; }
    .who_we_are .content .text {
      color: #ffffff;
      font-size: 15px;
      line-height: 20px; 
      text-align: justify; }
      .who_we_are .content .text p {
        margin-bottom: 20px; }

.ui.form input:not([type]), .ui.form input[type=date], .ui.form input[type=datetime-local], .ui.form input[type=email], .ui.form input[type=file], .ui.form input[type=number], .ui.form input[type=password], .ui.form input[type=search], .ui.form input[type=tel], .ui.form input[type=text], .ui.form input[type=time], .ui.form input[type=url] {
  border-top: 2px solid #9e8755;
  border-right: 2px solid #9e8755;
  border-bottom: 2px solid #9e8755;
  border-left: 2px solid #9e8755; }

.home_connected {
  margin-bottom: 80px; }
  @media screen and (max-width: 750px) {
    .home_connected {
      margin-bottom: 20px;
      padding-top: 80px; } }
  .home_connected .logo img {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 5vh;
    max-height: 300px; }
    @media screen and (min-height: 800px) {
      .home_connected .logo img {
        margin-top: 5vh; } }
    @media screen and (max-width: 750px) {
      .home_connected .logo img {
        width: 80%;
        margin-left: auto;
        margin-right: auto; } }
  .home_connected .content {
    margin-top: 50px;
    column-gap: 40px; }
    .home_connected .content .title {
      font-size: 20px;
      text-transform: uppercase;
      font-weight: bold;
      color: #ffffff; }
      @media screen and (max-width: 750px) {
        .home_connected .content .title {
          font-size: 20px; } }
      .home_connected .content .title .border_or {
        display: block;
        width: 130px;
        margin-top: 30px;
        border-bottom: 2px solid #9e8755;
        margin-bottom: 30px; }
    .home_connected .content .text {
      color: #9d8658;
      font-size: 15px;
      line-height: 20px;
      text-align: center; }
      @media screen and (max-width: 750px) {
        .home_connected .content .text {
          width: 80%;
          margin-left: auto;
          margin-right: auto; } }
      .home_connected .content .text p {
        margin-bottom: 20px; }
  .home_connected .bloc_etab_main {
    margin-top: 60px;
    display: flex; }
    @media screen and (max-width: 750px) {
      .home_connected .bloc_etab_main {
        flex-wrap: wrap; } }
    .home_connected .bloc_etab_main .right {
      width: 50%; }
      @media screen and (max-width: 750px) {
        .home_connected .bloc_etab_main .right {
          width: 100%; } }
    .home_connected .bloc_etab_main .left {
      background-color: #0a0a0a;
      width: 50%;
      text-align: center;
      padding: 35px; }
      @media screen and (max-width: 750px) {
        .home_connected .bloc_etab_main .left {
          width: 100%; } }
      .home_connected .bloc_etab_main .left .title {
        font-size: 21px;
        font-weight: bold;
        color: white;
        margin-bottom: 50px;
        text-decoration: underline;
        text-transform: uppercase; }
      .home_connected .bloc_etab_main .left .texte {
        text-align: justify;
        color: white; }
      .home_connected .bloc_etab_main .left .avantages {
        margin-top: 50px;
        text-align: left; }
        .home_connected .bloc_etab_main .left .avantages .aTitle {
          font-weight: bold;
          color: #ffffff; }
        .home_connected .bloc_etab_main .left .avantages ul li {
          color: #ffffff; }

.bloc_connected {
  position: absolute;
  top: 40px;
  left: -15px;
  z-index: 99;
  background-color: white;
  border: 2px solid #9e8755;
  border-radius: 13px;
  font-size: 13px;
  padding: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 40px;
  padding-right: 16px; }
  .bloc_connected .welcome {
    color: #9e8755; }
  .bloc_connected a {
    color: #9e8755;
    text-decoration: underline;
    text-transform: capitalize; }

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