/* GENERAL */

/* COLOR SAVE 

blanc = #FFFFFF
vert = #009453
vert clair = #229258
gris foncé = #727272
gris moyen = #707070
gris clair = #0000005A
noir = #000000
noir moyen = #222221
rouge = #CD1719
rouge moyen = #C7373B
*/

@font-face {
	font-family: 'DINPro';
  font-style: light;
	src: url('../font/DINPro/ufonts.com_dinpro-light-opentype.otf') format('opentype')
}

@font-face {
	font-family: 'DINPro';
  font-style: regular;
	src: url('../font/DINPro/ufonts.com_dinpro-regular-opentype.otf') format('opentype')
}

@font-face {
	font-family: 'DINPro';
  font-style: medium;
	src: url('../font/DINPro/ufonts.com_dinpro-medium-opentype.otf') format('opentype')
}

@font-face {
	font-family: 'DINPro';
  font-style: bold;
	src: url('../font/DINPro/ufonts.com_dinpro-bold-opentype.otf') format('opentype')
}

@font-face {
	font-family: 'DINPro';
  font-style: black;
	src: url('../font/DINPro/ufonts.com_dinpro-black-opentype.otf') format('opentype')
}

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

/* ------------------------------
          HEADER NAV
/* -----------------------------*/

header nav {
  position: fixed;
  z-index: 990;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0px 3px 6px #0000005A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 40px;
}

nav div.logo_nav img.logo_hoffmanns {
  width: 250px;
}

nav div.logo_nav img.logo_home {
  display: none;
}

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

div.accueil a {
	font: normal normal normal 24px 'DINPro', sans-serif;
	text-decoration: none;
	color: #009453;
  	margin-right: 20px;
}

div.contact_nav p {
  font: normal normal normal 24px 'DINPro', sans-serif;
}

div.contact_nav p.color_green {
  color: #009453;
  margin-left: 20px;
}

div.contact_nav p a {
  text-decoration: none;
  color: #727272;
}

@media only screen and (max-width: 1200px) {
  header nav {
    padding: 20px 20px;
  }

  nav div.logo_nav img.logo_hoffmanns {
    width: 200px;
  }

  div.contact_nav p,
  div.accueil a {
    font-size: 20px;
  }
}

@media only screen and (max-width: 992px) {
  div.logo_nav {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  nav div.logo_nav a.accueil {
    position: absolute;
    left: 0;
  }

  nav div.logo_nav img.logo_home {
    display: block;
    width: 50px;
  }

  div.contact_nav {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  nav div.logo_nav img.logo_hoffmanns {
    width: 150px;
  }

  nav div.logo_nav img.logo_home {
    width: 30px;
  }
}

/* ------------------------------
        FADEIN - FADEOUT
/* -----------------------------*/
div.fadeIn_image {
  display: none;
  width: 100%;
  position: fixed;
  margin-top: 124px;
  height: auto;
  z-index: 990;
}

div.fadeIn_image img {
  width: 20%;
  display: block;
  margin: auto;
}

@media only screen and (max-width: 1200px) {
  div.fadeIn_image {
    margin-top: 66px;
  }
}

@media only screen and (max-width: 992px) {
  div.fadeIn_image img {
    width: 30%;
  }
}

@media only screen and (max-width: 768px) {
  div.fadeIn_image img {
    width: 35%;
  }
}

/* ------------------------------
          SECTION ONE
/* -----------------------------*/

section.one {
  background: url('../pictures/BackSolo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  /*min-height: 1000px;*/
}

div.date_city {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 124px;
}

div.date_city img.date {
  width: 20%;
}

div.date_city img.city {
  width: 15%;
  margin-top: 35px;
}

div.date_city img.ouverte {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.condition_texte p {
  width: 60%;
  display: block;
  margin: auto;
  text-align: center;
  font: normal normal normal 30px 'DINPro', sans-serif;
  color: #FFFFFF;
}

div.condition_texte span.barre_color_red {
  width: 60%;
  height: 10px;
  display: flex;
  margin: auto;
  background-color: #CD1719;
  margin-top: 5px;
}

.product_texte {
  padding-bottom: 100px;
}

div.product_texte p {
  width: 100%;
  display: block;
  margin: 40px auto 0 auto;
  text-align: center;
  font: normal normal normal 20px 'DINPro', sans-serif;
  color: #FFFFFF;
}

div.position_macaron {
    position: absolute;
    bottom: 15%;
    right: 10%;
}

div.responsive_macaron {
  display: none;
}

div.macaron img {
  width: 300px;
}

div.slide_buttom {
  position: absolute;
  bottom: 10%;
  left: 5%;
}

div.button_buttom img {
  width: 120px;
}

@media only screen and (max-width: 1668px) {
  div.position_macaron {
    bottom: 18%;
    right: 8%;
  }

  div.macaron img {
    width: 250px;
  }

  div.slide_buttom {
    position: absolute;
    bottom: 12%;
    left: 3%;
  }
  
  div.button_buttom img {
    width: 100px;
  }
}

@media only screen and (max-width: 1368px) {
  div.condition_texte p {
    font-size: 25px;
  }

  div.product_texte p {
    width: 80%;
    font-size: 16px;
  }

  div.position_macaron {
    bottom: 20%;
    right: 6%;
  }

  div.macaron img {
    width: 200px;
  }

  div.slide_buttom {
    position: absolute;
    left: 2%;
  }
  
  div.button_buttom img {
    width: 80px;
  }
}


@media only screen and (max-width: 1200px) {
  div.date_city {
    padding-top: 66px;
  }
}

@media only screen and (max-width: 992px) {
  div.date_city img.date {
    width: 30%;
  }

  div.date_city img.ouverte {
    width: 60%;
  }

  div.condition_texte p {
    font-size: 20px;
  }

  div.product_texte p {
    width: 60%;
    font-size: 14px;
  }

  div.position_macaron {
    /* Effet de disparition */
    opacity: 0;
    transition: opacity 0.1s ease;
  }

  div.responsive_macaron {
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease;
    position: absolute;
    bottom: -90px;
    display: flex;
    justify-content: center;
    width: 100%;
    right: 0;
  }

  div.slide_buttom {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  div.date_city img.date {
    width: 35%;
  }

  div.date_city img.city {
    width: 20%;
  }

  div.date_city img.ouverte {
    width: 80%;
  }

  div.condition_texte p {
    font-size: 18px;
  }

  div.product_texte p {
    width: 60%;
    font-size: 12px;
  }
}

/* ------------------------------
          SECTION TWO
/* -----------------------------*/

section.two {
  max-width: 1920px;
  margin: auto;
}

div.bloc_section_two {
  width: 100%;
  height: auto;
  margin: 100px 0;
  padding: 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.box_one {
  width: 50%;
}

div.box_two {
  width: 50%;
}

div.reduction {
  position: relative;
  width: 100%;
  height: 525px;
  background-color: #009453;
}

div.reduction div.reduction_position {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  letter-spacing: -15px;
}

div.reduction div.chiffre {
  height: 100%;
  color: #000000;
  font: normal normal normal 350px 'DINPro', sans-serif;
  font-weight: bold;
}

div.reduction div.symbole {
  height: 100%;
  color: #000000;
  font: normal normal normal 250px 'DINPro', sans-serif;
  font-weight: bold;
}

div.gamme_product {
  width: 100%;
  height: 175px;
  background-color: #000000;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 40px;
}

div.gamme_product p {
  color: #FFFFFF;
  text-align: left;
  font: normal normal normal 48px 'DINPro', sans-serif;
}

div.pictures_one_jeld_wen {
  width: 100%;
  height: 350px;
  background: url('../pictures/Jeldwen-3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 10px;
  margin-bottom: 10px;
}

div.pictures_two_jeld_wen {
  width: 100%;
  height: 350px;
  margin-left: 10px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.pictures_two_jeld_wen div.pictures_two_one_jeld_wen {
  width: 50%;
  height: 100%;
  background: url('../pictures/Jeldwen-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 5px;
}

div.pictures_two_jeld_wen div.pictures_two_two_jeld_wen {
  width: 50%;
  height: 100%;
  background: url('../pictures/Jeldwen-2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 5px;
}

div.texte_logo_responsive {
  display: none;
}

@media only screen and (max-width: 1668px) {
  div.reduction div.chiffre {
    font-size: 300px;
  }
  
  div.reduction div.symbole {
    font-size: 200px;
  }

  div.gamme_product p {
    font-size: 40px;
  }
}

@media only screen and (max-width: 1440px) {
  div.reduction div.chiffre {
    font-size: 250px;
  }
  
  div.reduction div.symbole {
    font-size: 150px;
  }

  div.gamme_product {
    padding: 0 20px;
  }

  div.gamme_product p {
    font-size: 30px;
  }
}

@media only screen and (max-width: 1200px) {
  div.reduction div.chiffre {
    font-size: 200px;
  }
  
  div.reduction div.symbole {
    font-size: 100px;
  }

  div.gamme_product p {
    font-size: 25px;
  }
}

@media only screen and (max-width: 992px) {
  div.box_one {
    display: none;
  }

  div.box_two {
    width: 100%;
  }

  div.box_two div.pictures_one_jeld_wen,
  div.box_two div.pictures_two_jeld_wen {
    margin-left: 0px;
    border-radius: 15px;
  }

  div.pictures_two_jeld_wen div.pictures_two_one_jeld_wen,
  div.pictures_two_jeld_wen div.pictures_two_two_jeld_wen {
    border-radius: 15px;
  }

  div.texte_logo_responsive {
    display: block;
    height: 400px;
  }

  .responsive_column {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
  }

  div.reduc_responsive {
    font: normal normal normal 100px 'DINPro', sans-serif;
    color: #707070;
    font-weight: 600;
  }

  span.border_color_responsive {
    width: 50%;
    height: 10px;
    display: flex;
    background-color: #CD1719;
  }

  div.texte_responsive {
    font: normal normal normal 30px 'DINPro', sans-serif;
    color: #707070;
    font-weight: 600;
  }

  div.logo_responsive img {
    width: 250px;
  }
}

@media only screen and (max-width: 767px) {
  div.bloc_section_two {
    padding: 0 20px;
  }

  div.reduc_responsive {
    font-size: 80px;
  }

  div.texte_responsive {
    font-size: 25px;
  }

  div.logo_responsive img {
    width: 200px;
  }
}

@media only screen and (max-width: 468px) {
  div.reduc_responsive {
    font-size: 60px;
  }

  div.texte_responsive {
    font-size: 20px;
  }

  div.logo_responsive img {
    width: 150px;
  }
}

/* ------------------------------
          SECTION THREE
/* -----------------------------*/

section.three {
  max-width: 1920px;
  margin: auto;
}

div.bloc_section_three {
  width: 100%;
  height: auto;
  margin: 100px 0;
  padding: 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.pictures_one_meister {
  width: 100%;
  height: 350px;
  background: url('../pictures/Meister-3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 10px;
  margin-bottom: 10px;
}

div.pictures_two_meister {
  width: 100%;
  height: 350px;
  margin-left: 10px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.pictures_two_meister div.pictures_two_one_meister {
  width: 50%;
  height: 100%;
  background: url('../pictures/Meister-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 5px;
}

div.pictures_two_meister div.pictures_two_two_meister {
  width: 50%;
  height: 100%;
  background: url('../pictures/Meister-2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 5px;
}

@media only screen and (max-width: 992px) {
  div.box_two div.pictures_one_meister,
  div.box_two div.pictures_two_meister {
    margin-left: 0px;
    border-radius: 15px;
  }

    div.pictures_two_meister div.pictures_two_one_meister,
    div.pictures_two_meister div.pictures_two_two_meister {
      border-radius: 15px;
  }
}

@media only screen and (max-width: 767px) {
  div.bloc_section_three {
    padding: 0 20px;
  }
}

/* ------------------------------
          FOOTER
/* -----------------------------*/

footer {
  background-color: #000000;
}

footer div.footer_position {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px;
}

div.logo_footer {
  background-color: #FFFFFF;
}

div.logo_footer img {
  width: 250px;
    padding: 20px;
    display: block;
    margin: auto;
}

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

div.magasin_one {
  margin: 0 80px
}

div.magasin_title {
  margin-bottom: 30px;
}

div.magasin_title p {
  color: #009453;
  font: normal normal bold 30px 'Helvetica Neue', sans-serif;
}

div.magasin_alzingen {
  color: #FFFFFF;
  font-family: 'Helvetica Neue', sans-serif;
}

div.magasin_alzingen p {
  margin-top: 5px;
}

div.magasin_alzingen p.horaire {
  font-weight: 100;
}

div.magasin_mersch {
  color: #FFFFFF;
  font-family: 'Helvetica Neue', sans-serif;
  margin-top: 5px;
}

div.magasin_mersch p {
  margin-top: 5px;
}

div.magasin_mersch p.horaire {
  font-weight: 100;
}

@media only screen and (max-width: 992px) {
  footer div.footer_position {
    padding: 80px 40px;
  }

  div.logo_footer {
    display: none;
  }

  div.magasin_footer {
    flex-direction: column;
  }

  div.magasin_one {
    margin: 30px 0;
  }
}