@import url('reset.css');
@import url('fonts.css');
@import url('back_color.css');



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

Primary style

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

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  color: #3d3536;
  background-color: white;
}

body, html {
  /* important */
  height: 100%;
}

a {
  color: #b4d7a8;
  text-decoration: none;
}

p{
  margin-bottom: 0.6em;
}

em{
  font-family: "Raleway-Italic";
}

strong{
  font-family: "Raleway-bold";
}

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

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 850px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}


.cd-container h3{
  font-family: "Maven";
  font-size: 1.3em;
  margin-bottom: 0.5em;
  margin-top: 1.2em;
}

.cd-container h3::before{
  font-family: "icomoon";
  content: '\e60b';
  margin: 0 0.6em 0 0;
  font-size: 0.9em;
}

.cd-container h3:first-of-type{
  margin-top: -1em;
}

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

Main components 

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: rgba(206, 242, 123, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  margin: 13px 0 0 5%;
}
.cd-header #cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
  }
  .cd-header #cd-logo {
    margin: 23px 0 0 5%;
  }
}

.cd-main-nav {
  float: right;
  margin-right: 2%;
  width: 44px;
  height: 100%;
  background: url("../images/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-main-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #2f292a;
  border-top: 1px solid #453c3d;
  color: #8e7d7f;
}







@media only screen and (min-width: 920px) {
  .cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 0.4em;
    border-top: none;
    color: #3d3536;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .no-touch .cd-main-nav a:hover {
    color: #99a478;
  }
}

.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
}

.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 1170px;
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  /*text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);*/
  text-shadow: 0px 0px 2px #181616;
  color: white;
  font-family: "Maven";
}


h1#main-title{
  font-family: "Euphoria";
  font-size: 4em;
  text-shadow: 3px 3px 3px #333333;
}
h1#main-title .title-detail{
  font-size: 0.4em;
  font-family: "Maven";
}


h2#main-subtitle{
  padding-top: 3em;
  font-size: 1.8em;
}




.cd-fixed-bg div.blockText-footer {
  width: 80%;
  background-color: rgba(0,0,0,0.6);
  position: absolute;
  top: 5%;
  line-height: 1.2em;
  margin: 0 10%;
  padding: 0.3em 0.6em;
  border: 0px solid #000000;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  color: #b4d7a8;
  font-size: 0.9em;
}


.cd-fixed-bg div.blockText-footer div#footer-text{
  width : 48%;
  float: left;
}

.cd-fixed-bg div.blockText-footer div#footer-img{
  width : 48%;
  float: right;
}








@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 36px;
  }


  h1#main-title{
    font-size: 6em;
  }
  
  h2#main-subtitle{
    padding-top: 3.5em;
    font-size: 2.5em;
  }



}









@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 48px;
    font-weight: 300;
  }


  h1#main-title{
    font-size: 8.5em;
  }

  h2#main-subtitle{
    padding-top: 3.5em;
    font-size: 3em;
  }


}

.cd-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding: 4em 0;
  line-height: 1.6;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}





@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 8em 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}






/* ----------------- Generique --------------------  */

ul.liste_icone{
  list-style-type: disc;
  margin: 0.4em 0 1em 1em;
}

p.center{
  text-align: center;
}


img.image_content{
  width: 100%;
}


img.img_droite_30{
  width: 30%;
  float: right;
  margin: 1em;
}

img.img_droite_40{
  width: 40%;
  float: right;
  margin: 1em;
}


/* -----------  link ------------------- */

.inline-link-2 {
  display: inline-block;
  margin: 0 0.2em;
  padding: 3px 10px 3px 10px;
  background: #94b714;
  border-radius: 4px;
  transition: all 0.3s ease-out;

  /* Font styles */
  text-decoration: none;
  font-weight: bold;
  color: white;
}

.inline-link-2:hover   { background: #bfea12; }





.inline-link-1 {
  display: inline-block;
  margin: 0 0.2em;
  padding: 1px;
  background: #94b714;
  border-radius: 2px;
  transition: all 0.3s ease-out;

  /* Font styles */
  text-decoration: none;
  font-weight: bold;
  color: #3d3536;
}

.inline-link-1:hover, a.inline-link-doc:hover,a.inline-link-web:hover { 
  background: #bfea12;
}




a.inline-link-doc, a.inline-link-web{
  display:inline-block;
  /*position: absolute;*/
  color: #008000;
  background: #d4ed9a;
  line-height: 1.5em;
  padding: 0 0.2em 0 0.2em;
  margin: 0 0.3em 0 0.3em;
  border-radius: 7px;
}
a.inline-link-doc:before, a.inline-link-web:before{
  /*position: relative;*/
  border:0;
  padding:0;
  margin-right: 0.5em;
  left: 0;
  width: 1em;
  height: 1em;
  display: inline-block;
  content: url("../images/text-document.svg");
}


a.inline-link-web-simple{
  display:inline-block;
  line-height: 1.5em;
  padding: 0 0.2em 0 0.2em;
  margin: 0 0.3em 0 0.3em;
}
a.inline-link-web-simple:hover{
  background-color: #3f540e;
}





a.inline-link-doc:before {content: url("../images/text-document.svg");}
a.inline-link-web:before {content: url("../images/globe.svg");}


/* -------------- entypo icone -------------- */

p.contact-adresse:before,p.contact-tel:before, p.contact-mail:before {
  position:absolute;
  border:0;
  padding:0;
  left: 0;
  width: 1.1em;
  height: 1.1em;
  display: block;
}

p.contact-adresse:before{content: url("../images/address.svg");}
p.contact-tel:before{content: url("../images/phone.svg");}
p.contact-mail:before{content: url("../images/mail.svg");}

p.contact-adresse, p.contact-tel, p.contact-mail{
  position: relative;
  padding-left: 2em;
}

p.contact-mail a{
  color: #5A564D;
}


/* ------------- FLAG ----------------- */

#flag{
  display: inline-block;
  margin-left: 5px;
}

.ico-flag{
  width: 25px;
  height: 20px;
  margin: 15px 3px 0 3px;
}


@media only screen and (min-width: 768px) {
  .ico-flag{
    width: 35px;
    height: 25px;
    margin: 22px 3px 0 3px;
    border: 0;
  }
}









/* ------------- COVID ----------------- */
div#covid{
  width: 90%;
  border: 1px solid black;
  position: fixed;
  z-index: 100;
  display: block;
  bottom: 0;
  left: 5%;
  background-color: rgba(0,0,0,0.7);
  color: white;
  padding: 0.5em;
}


@media only screen and (min-width: 920px) {
  div#covid{
    border: 1px solid black;
    width: 70%;
    left: 15%;
  }
}



