/*
Theme Name: minim_v1
Theme URI: https://techmolds.fr
Author: minim
Author URI: https://techmolds.fr
Description: Thème personnalisé réalisé par l'agence Minim
Version: 1.0
*/

/* Media query ->  425px - 768px - 1440px - 2560px */


html {
  scroll-behavior: smooth;
}

.nav {
  display: grid;
  grid-template-columns: 2fr 6fr;
  padding: 30px 0px 10px 0px;
  justify-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  margin-left: 3%;
}

.nav__logo img {
  max-height: 11rem;
  /* ajuster la taille du logo selon vos besoins */
  margin-right: 1rem;
  /* ajouter un espacement entre le logo et le menu */
}



/* Partie Mobile First*/

:root {
  --noir: #000;
  --bleu_fonce: #1a1b2a;
  --bleu_clair: #093A93;
  --gris_footer: #6e6e6e;
  --couleur_menu: #fff;
  --gris_body: #f5f5f6;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1vw;
  font-weight: 200;
}

:root h2 {
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
  font-size: 2rem;
  padding-bottom: 1rem;
}

:root p{
  font-weight: 300;
}

.home {
  margin: -47px 0 0 0;
}

.nav__logo_footer img {
  max-height: 5rem;
  /* ajuster la taille du logo selon vos besoins */
}

.nav__mobile {
  position: absolute;
  right: 10%;
  top: 50%;
}

/* Masquer les sous-menus par défaut */
.sub-menu {
  display: none;
}

/* Afficher les sous-menus sur hover du menu */
.nav__menu li:hover>.sub-menu {
  display: block;
}

.background_container{
  height: 42rem;
}

.background_container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

/* HERO */

.logo_hero img {
  position: absolute;
  top: 40%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 45rem;
  height: auto;
  z-index: 1;
}

.btn_hero {
  display: flex;
  background-color: var(--bleu_clair);
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40%;
  left: 70%;
  transform: translate(15%, -50%);
  width: 22%;
  max-width: 14rem;
  height: 2.5rem;
  z-index: 1;
  cursor: pointer;
}

.btn_hero:hover {
  background-color: var(--gris_footer);
  transition: 0.3s;
}

.btn_hero a {
  text-decoration: none;
  color: var(--couleur_menu);
  display: flex;
  z-index: 1;
  align-items: center;
  font-size: 1rem;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 600;
}

.btn_cgv {
  display: flex;
  background-color: var(--bleu_clair);
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 77%;
  left: 70%;
  transform: translate(20%, -50%);
  width: 15%;
  max-width: 14rem;
  height: 1.8rem;
  z-index: 1;
  cursor: pointer;
}

.btn_cgv:hover {
  background-color: var(--gris_footer);
  transition: 0.3s;
}

.btn_cgv a {
  text-decoration: none;
  color: var(--couleur_menu);
  display: flex;
  z-index: 1;
  align-items: center;
  font-size: 0.6rem;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 600;
}

.titre_plus {
  position: absolute;
  top: 25rem;
  left: 50rem;
  color: var(--couleur_menu);
  z-index: 1;
  width: 30rem;
  text-transform: uppercase;
}

.titre_hero {
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}

.position_bandeau {
  width: 100%;
}

.bandeau_hero {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: center;
  padding: 0% 15%;
  align-items: center;
  color: var(--couleur_menu);
  background-color: var(--bleu_clair);
}

.logo_google{
  width: 19px;
}

.reseaux_hero {
  z-index: 1;
}

.reseaux_hero a {
  text-decoration: none;
  color: white;
  padding: 0 1rem;
}

/* Slider */

.slider_header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 42rem;
  overflow: hidden;
  z-index: 1;
}

header {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 2;
}


.slider-container {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.slider-item {
  flex: 1;
  min-width: 100%;
  height: 100%;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(50%);
  -webkit-filter: brightness(50%);

}

/* Menu */

.menu_desktop {
  display: none;
}

.bandeau_mobile{
  display: none;
}

/* hang burger */

#hamburger {
  width: 35px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 3rem;
  right: 5%;
  background-color: transparent;
}

#hamburger span {
  z-index: 3;
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--bleu_clair);
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .20s ease-in-out;
  -moz-transition: .20s ease-in-out;
  -o-transition: .20s ease-in-out;
  transition: .25s ease-in-out;
}

#hamburger span:nth-child(1) {
  top: 3px;
}

#hamburger span:nth-child(2) {
  top: 14px;
}

#hamburger span:nth-child(3) {
  top: 25px;
}

#hamburger.open span:nth-child(1) {
  top: 14px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  background-color: var(--bleu_clair);
}

#hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -30px;
  -webkit-transition: .16s ease-in-out;
  -moz-transition: .16s ease-in-out;
  -o-transition: .16s ease-in-out;
  transition: .16s ease-in-out;
}

#hamburger.open span:nth-child(3) {
  top: 14px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  background-color: var(--bleu_clair);
}

.menu_mobile {
  position: fixed;
  width: 100%;
}

.nav__menu__mobile {
  display: block;
}


.menu_mobile ul {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  padding: 0;
}

.menu_mobile ul li {
  padding: 10px 0;
  text-align: center;
  background: #fff;
  position: relative;
  left: 100%;
  list-style-type: none;
  border-bottom: solid 0.5px var(--bleu_clair);
}
.menu_mobile ul li:first-child{
  border-top: solid 0.5px var(--bleu_clair);
}

.menu_mobile a {
  text-decoration: none;
  color: var(--bleu_clair);
  font-weight: 500;
}

.wrapper_hero {
  position: absolute;
  width: 100%;
  height: 50rem;
  top: 0;
}


/* Infos en avant */

.infos_en_avant {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  padding: 5% 15% 5% 15%;
}

.infos_en_avant a {
  color: var(--gris_footer);
  text-transform: uppercase;
  font-weight: 700;
  width: 60%;
}

.salaries {
  display: block;
  text-align: end;
}

.salaries h1 {
  font-size: 5rem;
  font-weight: 700;
}

.clients {
  display: grid;
  justify-items: end;
}

.clients h1 {
  font-size: 5rem;
  font-weight: 700;
}

.infos_compl {
  display: grid;
  justify-items: end;
  text-align: end;
}

.infos_compl_2 {
  display: grid;
  justify-items: end;
  text-align: end;
}

.infos_compl h1 {
  font-size: 5rem;
  font-weight: 700;
}

.home_real {
  background-color: var(--bleu_fonce);
  padding: 5% 15% 5% 15%;
}

.home_real h2 {
  display: grid;
  justify-items: end;
  color: var(--couleur_menu);
}

.slide_desc {
  display: grid;
  grid-template-columns: 2.7fr 1fr;
  margin-top: 5%;
}

.slide_desc h2 {
  display: block;
}

.description_real {
  display: grid;
  justify-items: start;
  color: var(--couleur_menu);
  padding-left: 10%;
}

.a_propos_disp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 5%;
  align-items: center;
}

.home_client {
  background-color: var(--gris_body);
  padding: 5% 15% 5% 15%;
}

.home_edc {
  padding: 5% 15% 5% 15%;
  display: none;
}

/* SLIDER REAL */

.slide_real {
  overflow-x: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.slider-item-real {
  margin: 10px;
  padding: 2%;
}

.slider-item-real img {
  width: 100%;
  height: auto;
  object-fit: contain;
  padding-bottom: 10%;
}

.slider-item-real a {
  text-decoration: none;
  font-size: 0.6rem;
  color: var(--couleur_menu);
  display: grid;
  justify-items: start;
}

.slider-item-real:hover .arrow {
  width: 12rem;
}

.arrow {
  height: 0.15rem;
  width: 5rem;
  position: relative;
  background: var(--couleur_menu);
  transition: all 0.3s;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: var(--couleur_menu);
  height: 0.15rem;
  width: 0.6rem;
}

.arrow::before {
  transform: rotate(45deg);
  transform-origin: right bottom;
}

.arrow::after {
  transform: rotate(-45deg);
  transform-origin: right top;
}

.arrow_black {
  height: 0.15rem;
  width: 5rem;
  position: relative;
  background: var(--noir);
  transition: all 0.3s;
}

.arrow_black::before,
.arrow_black::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: var(--noir);
  height: 0.15rem;
  width: 0.6rem;
}

.arrow_black::before {
  transform: rotate(45deg);
  transform-origin: right bottom;
}

.arrow_black::after {
  transform: rotate(-45deg);
  transform-origin: right top;
}

.btn_real {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--couleur_menu);
  font-weight: 800;
}

.btn_real .arrow {
  margin-right: 1rem;
  height: 0.15rem;
  width: 5rem;
  background: var(--couleur_menu);
  margin-top: 1rem;
}

.btn_real .arrow::before,
.btn_real .arrow::after {
  background: var(--couleur_menu);
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 0.15rem;
  width: 0.5rem;
}

.btn_real:hover .arrow {
  width: 10rem;
}

/* SLIDER CLIENT */

.bloc_clients {
  display: grid;
  grid-template-columns: 2.7fr 1fr;
  margin-top: 5%;
}

.bloc_clients h2 {
  display: block;
}

.slide_clients {
  display: grid;
  overflow-x: hidden;
  align-items: flex-end;
  grid-template-columns: 1fr 1fr 1fr;
}

.slider-item-clients {
  flex: 0 0 auto;
  margin-right: 20px;
}

.slider-item-clients img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.title_client {
  text-align: center;
  text-transform: uppercase;
}

.title_client a {
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--noir);
  font-weight: 600;
}

/* A PROPOS */

.home_a_propos {
  padding: 5% 0% 5% 15%;
}

.home_a_propos h1 {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
}

.description_a_propos {
  font-weight: 400;
  padding-right: 5rem;
}

.video_a_propos img {
  width: 100%;
}

.btn_a_propos {
  margin-top: 5rem;
}

.btn_a_propos a {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--noir);
  font-weight: 800;
}

.btn_a_propos .arrow_black {
  margin-right: 1rem;
  height: 0.15rem;
  width: 5rem;
  background: var(--noir);
  margin-top: 1rem;
}

.btn_a_propos .arrow_black::before,
.btn_a_propos .arrow_black::after {
  background: var(--noir);
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 0.15rem;
  width: 0.5rem;
}

.btn_a_propos:hover .arrow_black {
  width: 10rem;
}

/* ARTICLES EDC */

.bandeau_edc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 3rem;
}

.lien_articles {
  display: grid;
  justify-items: end;
}

.articles_edc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 400;
}

.btn_edc {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--noir);
  font-weight: 800;
}

.btn_edc .arrow {
  margin-right: 1rem;
  height: 0.15rem;
  width: 5rem;
  background: var(--noir);
  margin-top: 1rem;
}

.btn_edc .arrow::before,
.btn_edc .arrow::after {
  background: var(--noir);
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 0.15rem;
  width: 0.5rem;
}

.btn_edc:hover .arrow {
  width: 12rem;
}

.extrait_article {
  display: grid;
  grid-template-rows: 0.5fr 0.5fr 2fr 0.5fr;
  position: relative;
}

.extrait_article p {
  padding-right: 5%;
}

.extrait_article h2 {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--noir);
  font-weight: 800;
  font-size: 1rem;
}

.date_edc {
  font-weight: 700;
  color: var(--gris_footer);
}

.extrait_article .arrow_black {
  margin-right: 1rem;
  height: 0.15rem;
  width: 5rem;
  background: var(--noir);
  margin-top: 1rem;
  position: absolute;
  bottom: 0;
}

.extrait_article .arrow_black::before,
.extrait_article .arrow_black::after {
  background: var(--noir);
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 0.15rem;
  width: 0.5rem;
}

.extrait_article:hover .arrow {
  width: 12rem;
}

/* FOOTER */

.bandeau_footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  color: var(--couleur_menu);
  text-transform: uppercase;
  font-weight: 600;
}

.copyright {
  background-color: var(--bleu_clair);
  color: var(--couleur_menu);
  display: flex;
  justify-content: space-between;
  padding: 0% 5%;
  font-size: 0.9rem;
}

.map_contact {
  margin-bottom: -5px;
}

.fond_solutions {
  width: 100%;
  background: var(--bleu_clair);
  display: grid;
  justify-items: center;
  height: 10rem;
  align-items: center;
}

.nos_solutions_ft {
  width: 100%;
  height: 100%;
}

.nos_solutions_ft a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--couleur_menu);
  text-decoration: none;
}

.fond_realisation {
  width: 100%;
  display: grid;
  justify-items: center;
  height: 10rem;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("http://www.techmolds.fr/wp-content/uploads/2023/04/percage.jpg");
  background-position: center;
}

.nos_realisations_ft {
  width: 100%;
  height: 100%;
  backdrop-filter: brightness(0.5);
}

.nos_realisations_ft a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--couleur_menu);
  text-decoration: none;
}

footer {
  background: var(--bleu_fonce);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--gris_footer);
  padding: 5%;
  font-size: 0.9rem;
  font-weight: 400;
}

.nav_footer {
  list-style: none;
  padding: 0;
  margin-top: 80px;
}

.nav_footer li {
  margin-bottom: 15%;
}

.nav_footer a {
  text-decoration: none;
  color: var(--gris_footer);
}

.title_footer {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--couleur_menu);
  font-size: 1rem;
}

.footer_description {
  margin-bottom: 20px;
}

.nav__logo_footer {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 15%;
}

/* ECOLOGIE */

.bloc_1_ecologie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  padding: 5rem 0rem;
  padding-left: 14rem;
}

.bloc_1_ecologie h1 {
  margin: 3rem 0rem;
}

.bloc_1_ecologie img {
  width: 100%;
  height: auto;
}

.paragraphe_1_ecologie{
  display: grid;
  align-content: center;
  padding-right: 3rem;
}
.ul1 li{
  transform: none !important;
}

.slider-ecologie {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.slider-item-ecologie {
  flex: 1;
  min-width: 100%;
  height: 100%;
  margin-right: 0px;
}

.slider-item-ecologie img {
  height: 100%;
  width: 100%;
  max-width: 30rem;
  float: right;
  object-fit: cover;
}

.slider-container-ecologie {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

#menu-footerinfos{
  list-style: none;
  padding: 0;
}

/* LES MEDIA QUERRY*/

@media screen and (min-width:650px) {
  footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-items: center;
    align-items: start;
  }
}

@media screen and (min-width:783px) {
  .menu_desktop {
    display: contents;
  }

  .menu_mobile {
    display: none;
  }

  .home {
    margin: -32px 0 0 0;
  }

  .nav__menu {
    display: flex;
    list-style: none;
    font-size: 1rem;
    font-weight: 300;
    align-items: center;
  }

  .nav__menu li:hover {
    border-bottom: solid var(--couleur_menu) 1px;
    transition-duration: 0.5s;
  }

  .nav__logo img {
    max-height: 4rem;
    /* ajuster la taille du logo selon vos besoins */
    margin-right: 1rem;
    /* ajouter un espacement entre le logo et le menu */
  }

  .sub-menu {
    list-style: none;
    padding: 0;
    display: none;
    position: absolute;
  }

  .sub-menu li {
    margin: 0 !important;
  }

  .nav__menu li {
    margin: 0 2.8rem;
  }

  .nav__menu li:last-child {
    margin-right: 0;
    /* enlever l'espacement à droite pour le dernier élément du menu */
  }

  .nav__menu li a {
    text-decoration: none;
    color: var(--couleur_menu);
  }
}

@media screen and (min-width:370px) {
  #wpadminbar {
    display: none;
  }
}

/* Contact */

.section_contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4rem 14rem;
  background-color: var(--couleur_menu);
  border-top: solid 2px var(--bleu_clair);
}

.section_contact p {
  font-weight: 800;
}

.description_contact {
  margin-top: 3rem;
  color: var(--gris_footer);
  font-weight: 500;
}

.infos_agence {
  margin-top: 4rem;
}

.infos_agence span {
  margin-right: 15px;
}

.infos_agence img{
  margin-right: 1rem;
}

.ligne_1{
  display: flex;
  align-items: center;
}

.ligne_2{
  display: flex;
  align-items: center;
}

.ligne_3{
  display: flex;
  align-items: center;
}

.infos_contact {
  padding-left: 3rem;
}

.infos_contact p {
  font-weight: 700;
  color: var(--bleu_clair);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

input {
  font-size: 13px;
  width: 100%;
  display: block;
  border: none;
  outline: none;
  border-bottom: 2px solid var(--bleu_clair);
  background: var(--couleur_menu);
  transition: 0.2s ease;
  padding-top: 3rem;
}

.msg_contact {
  grid-column: 1/3;
}

.msg_contact textarea {
  width: 100%;
  height: 10rem;
  resize: none;
}

.btn_contact {
  grid-column: 1/3;
}

.form-field {
  margin-right: 2rem;
}

.submit-btn {
  width: 7rem;
  background-color: var(--bleu_clair);
  color: var(--couleur_menu);
  height: 2rem;
  border: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0;
}

.submit-btn:hover {
  cursor: pointer;
}


/* PAGE INDEX */

.index_titre {
  position: absolute;
  z-index: 1;
  top: 11rem;
  width: 100%;
  text-transform: uppercase;
  color: var(--couleur_menu);
  font-size: 6rem !important;
  font-weight: 500 !important;
  text-align: center;
}

.bloc_1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: stretch;
  padding: 5rem 0rem;
  padding-left: 14rem;
  align-items: center;
  background-color: var(--bleu_fonce);
  color: var(--couleur_menu);
}

.bloc_1_ML {
  display: grid;
  justify-items: stretch;
  padding: 5rem 0rem;
  padding-left: 14rem;
  padding-right: 14rem;
  align-items: center;
  background-color: var(--bleu_fonce);
  color: var(--couleur_menu);
}

.paragraphe_1_ML {
  display: grid;
  align-content: center;
}

.bloc_1 img {
  width: 100%;
  height: auto;
}

.paragraphe_1 {
  display: grid;
  align-content: center;
  padding-right: 3rem;
}

.paragraphe_1 h1 {
  margin-bottom: 2rem;
}

.bloc_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: stretch;
  padding: 5rem 0rem;
  padding-left: 14rem;
  background-color: var(--bleu_fonce);
  color: var(--couleur_menu);
  align-items: center;
}

.bloc_2 img {
  width: 100%;
  height: auto;
}

.bloc_2_solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: stretch;
  padding: 5rem 0rem;
  padding-left: 14rem;
  background-color: var(--couleur_menu);
  color: var(--noir);
  align-items: center;
}

.bloc_2_solution img {
  width: 100%;
  height: auto;
}

.paragraphe_2 {
  display: grid;
  align-content: center;
  padding-right: 3rem;
}

.paragraphe_2 h1 {
  margin-bottom: 2rem;
}

/* PAGE REAL */

.paragraphe_real {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5rem 14rem;
  padding-right: 0;
  align-items: center;
}

.paragraphe_real h1 {
  display: grid;
  justify-content: center;
  align-content: center;
}

.paragraphe_real a {
  display: grid;
  align-content: center;
  font-size: 1rem;
}

.texte_real {
  padding-right: 5rem;
}

.image_real img {
  width: 100%;
}

.bloc_projets {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 5rem 14rem;
  padding-bottom: 0rem;
  background-color: var(--gris_body);
  justify-items: center;
}

.projet_titre {
  margin: 1rem 0;
  text-transform: uppercase;
  font-weight: 600;
  display: none;
}

.image_projet img {
  width: 18rem;
  max-height: 12rem;
  object-fit: cover;
}

.bloc_image_projet {
  margin-bottom: 5rem;
}

.bloc_filtre {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 4rem 13rem;
  background-color: var(--gris_body);
}

.btn_filtre {
  padding: 1rem;
}

.btn_filtre a {
  background-color: var(--bleu_clair);
  width: 100%;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: var(--couleur_menu);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}


/* Page A Propos */

.bloc_1_a_propos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
}

.bloc_1_a_propos h1 {
  margin: 3rem 0rem;
}

.bloc_2_a_propos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--bleu_fonce);
  color: var(--couleur_menu);
  justify-items: stretch;
  padding: 5rem 0rem;
  padding-right: 14rem;
  align-items: center;
}

/* SLIDER A PROPOS */

.slider-a-propos {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.slider-item-a-propos {
  flex: 1;
  min-width: 100%;
  height: 100%;
}

.slider-item-a-propos img {
  height: auto;
  max-width: 30rem;
}

.slider-container-a-propos {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.slider-locaux {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.slider-item-locaux {
  flex: 1;
  min-width: 100%;
  height: 100%;
  margin-right: 1px;
}

.slider-item-locaux img {
  height: 100%;
  width: 100%;
  max-width: 30rem;
}

.slider-container-locaux {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

/* FIN SLIDER */

.paragraphe_1_a_propos {
  display: grid;
  align-content: center;
  padding-right: 3rem;
  padding-left: 14rem;
  padding-bottom: 5rem;
  padding-top: 5rem;
}

.section_employe {
  background-color: #777777;
}

.bloc_employe {
  max-width: 85rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: center;
  padding: 5rem 14rem;
  padding-bottom: 0rem;
  justify-content: space-evenly;
}

.employe_nom {
  margin: 1rem 0;
  text-transform: uppercase;
  font-weight: 600;
}

.blue_text {
  color: var(--bleu_clair);
}

.employe_poste {
  display: flex;
  color: #ffffff;
  font-size: 0.8rem;
}

.employe_poste p {
  margin-right: 0.5rem;
}

.image_employe img {
  width: 14rem;
  height: auto;
}

.bloc_image_employe {
  margin-bottom: 5rem;
}

.bloc_3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: stretch;
  padding: 5rem 0rem;
  padding-left: 14rem;
  align-items: center;
}

.paragraphe_3{
  padding-right: 3rem;
}

.bloc_3 img {
  width: 100%;
}

/* PAGE SOLUTIONS */

.section_machine {
  background-color: var(--gris_body);
}

.bloc_machine {
  max-width: 85rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: start;
  padding: 5rem 14rem;
  padding-bottom: 0rem;
  background-color: var(--gris_body);
  justify-content: space-evenly;
}

.machine_nom {
  margin: 1rem 0;
  text-transform: uppercase;
  font-weight: 600;
  padding-right: 2rem;
}

.blue_text {
  color: var(--bleu_clair);
}

.machine_poste {
  color: var(--gris_footer);
  font-size: 0.8rem;
}

.machine_poste p {
  margin-right: 0.5rem;
}

.image_machine img {
  width: 14rem;
  height: 19rem;
  object-fit: cover;
}

.bloc_image_machine {
  margin-bottom: 5rem;
}

/* PAGE ARTICLES */

.bloc_articles {
  padding: 5% 15%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bloc_article {
  padding: 5% 15%;
}

.bloc_autres_articles {
  padding: 5% 15%;
}

.bloc_autres_articles h2 {
  padding: 0% 2.5%;
}

.autres_articles {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.article {
  padding: 10% 5%;
  position: relative;
}

.article .arrow_black {
  position: absolute;
  bottom: 0;
}

.extrait {
  margin: 5% 0%;
  font-weight: 400;
}

.retour_article {
  position: absolute;
  right: 15%;
  margin-top: 2%;
}

/* Page Contact */

.section_contact_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.partie2 {
  background-color: var(--gris_body);
  padding: 5rem 0rem;
}

/* RESPONSIVE TABLETTE */

@media (max-width: 783px) {

  :root h2 {
    font-size: 5rem;
    text-align: center;
  }	
	
  .paragraphe_1_ML {
	 font-size: 1.5rem;
	}		
  .paragraphe_1_ML h2{
	 font-size: 3rem;
	 text-align: left;
	}
  .bandeau_mobile{
    display: block;
    background-color: var(--couleur_menu);
    height: 9rem;
  }
  .nav {
    padding: 0;
  }
  .nav__logo{
    display: none;
  }

  .nav__logo_mobile{
    position: absolute;
    top: 2rem;
    left: 5%;
  }
  .nav__logo_mobile img{
    width: 20rem;
  }
  .menu_mobile ul{
    font-size: 2rem;
    margin-top: 9rem;
  }

  .index_titre{
    top: 30%;
  }
  .titre_plus {
    top: 50%;
    left: 15%;
    width: 70%;
    text-align: center;
  }

  .btn_hero {
    height: 6rem;
    max-width: 30rem;
    width: 30rem;
    top: 66%;
    left: 30%;
  }
  .btn_hero a{
    font-size: 1.5rem;
  }

  .btn_cgv {
    height: 6rem;
    max-width: 30rem;
    width: 30rem;
    top: 73%;
    left: 30%;
    transform: translate(15%, -50%);
  }
  .btn_cgv a{
    font-size: 1.5rem;
  }
  
  .bandeau_hero {
    padding: 0% 10%;
    height: 7rem;
    font-size: 1.5rem;
  }
  .titre_hero {
    font-size: 2rem !important;
  }

  .infos_en_avant {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: none;
    padding: 5% 15% 5% 15%;
    justify-items: center;
    align-items: center;
  }

  .infos_en_avant h2 {
    grid-row: 1;
    text-align: center;
  }

  .infos_en_avant a {
    font-size: 2rem;
  }

  .salaries {
    grid-row: 2;
    text-align: center;
  }

  .clients {
    grid-row: 3;
    text-align: center;
    display: block;
  }

  .infos_compl {
    grid-row: 4;
    text-align: center;
    display: block;
  }

  .infos_compl_2 {
    grid-row: 5;
    text-align: center;
    display: block;
  }

  .slide_desc {
    display: grid;
    grid-template-columns: 2.7fr 1fr;
  }

  .slide_real {
    grid-template-columns: none;
  }

  .description_real {
    padding: 0;
    font-size: 2rem;
  }

  .lien_real {
    font-size: 2rem;
  }

  .btn_real .arrow {
    width: 19rem;
    height: 0.5rem;
  }

  .btn_real .arrow::before,
  .btn_real .arrow::after {
    height: 0.45rem;
    width: 1.5rem;
  }

  .home_a_propos {
    padding: 5% 10%;
  }

  .a_propos_disp {
    grid-template-columns: none;
  }

  .description_a_propos {
    font-size: 2rem;
    margin: 10rem 0;
    padding: 0;
  }

  .btn_a_propos {
    margin-bottom: 5rem;
  }

  .btn_a_propos .arrow_black {
    width: 19rem;
    height: 0.5rem;
  }

  .btn_a_propos .arrow_black::before,
  .btn_a_propos .arrow_black::after {
    height: 0.45rem;
    width: 1.5rem;
  }

  .bloc_clients{
    margin: 0;
    grid-template-columns: none;
  }
  .zone_clients{
    font-size: 2rem;
    grid-row: 1;
  }

  .bandeau_edc {
    grid-template-columns: none;
  }

  .lien_articles {
    display: none;
  }

  .articles_edc {
    grid-template-columns: none;
  }

  .extrait_article {
    font-size: 2rem;
  }

  .extrait_article .arrow_black {
    width: 19rem;
    height: 0.5rem;
  }

  .extrait_article .arrow_black::before,
  .extrait_article .arrow_black::after {
    height: 0.45rem;
    width: 1.5rem;
  }

  .bloc_1_a_propos {
    grid-template-columns: none;
  }

  .bloc_1_ecologie {
    grid-template-columns: none;
    padding: 5% 10%;
  }

  .paragraphe_1_a_propos {
    padding: 5% 10%;
  }

  .paragraphe_1_a_propos a {
    margin: 3rem 0;
    font-size: 2rem;
  }

  .bloc_1_a_propos img {
    max-width: none;
    width: 100%;
  }

  .paragraphe_1_ecologie a {
    margin: 3rem 0;
    font-size: 2rem;
  }

  .bloc_1_ecologie img {
    max-width: none;
    width: 100%;
  }

  .bloc_2_a_propos {
    grid-template-columns: none;
    padding: 5% 10%;
  }

  .bloc_2 {
    grid-template-columns: none;
    padding: 5% 10%;
  }

  .paragraphe_2_a_propos a {
    margin: 3rem 0;
    font-size: 2rem;
    grid-row: 1;
  }

  .bloc_2_ecologie {
    grid-template-columns: none;
    padding: 5% 10%;
  }

  .paragraphe_2_ecologie {
    padding: 0;
    font-size: 2rem;
    grid-row: 1;
  }

  .slider-locaux{
    grid-row: 2;
  }

  .slider-item-locaux {
    margin-right: 0px;
  }

  .slider-item-locaux img {
    max-width: 90rem;
  }

  .paragraphe_2 {
    text-align: start;
    padding: 0;
    margin-bottom: 10rem;
  }

  .paragraphe_2 a {
    margin-top: 5rem;
    font-size: 2rem;
  }

  .paragraphe_3 a {
    margin-top: 5rem;
    font-size: 2rem;
  }

  .bloc_3 {
    grid-template-columns: none;
    padding: 5% 10%;
  }

  .bloc_3 img {
    display: none;
  }

  .bloc_employe{
    grid-template-columns: 1fr 1fr;
  }

  .image_employe img {
    width: 28rem;
  }

  .employe_nom {
    font-size: 1.5rem;
  }

  .employe_poste {
    font-size: 1.8rem;
  }

  .bloc_machine{
    grid-template-columns: none;
  }

  .image_machine img {
    width: 30rem;
    height: 40rem;
  }

  .machine_nom {
    font-size: 2rem;
  }

  .machine_poste {
    font-size: 1.8rem;
  }

  .bloc_1 {
    grid-template-columns: none;
    padding: 5% 10%;
  }

  .paragraphe_1 {
    padding: 0;
    font-size: 2rem;
  }

  .paragraphe_1 a {
    margin: 10% 0;
  }

  .paragraphe_real {
    grid-template-columns: none;
    padding: 5% 10%;
  }

  .paragraphe_real a {
    padding: 0;
    font-size: 2rem;
  }

  .bloc_filtre {
    grid-template-columns: 1fr 1fr;
    padding: 5% 10%;
  }

  .btn_filtre a {
    height: 5rem;
    font-size: 2rem;
  }

  .image_projet img {
    width: 100%;
    max-height: 40rem;
  }

  .projet_titre {
    font-size: 2rem;
  }

  .slider-machines {
    max-width: 70rem;
    grid-row: 2;
  }

  .bloc_image_projet {
    width: 30rem;
    height: 20rem;
  }

  .bloc_articles {
    grid-template-columns: none;
    margin-bottom: 15%;
  }

  .autres_articles {
    grid-template-columns: none;
  }

  .extrait {
    font-size: 2rem;
    text-align: center;
  }

  .article {
    margin: 15% 0%;
  }

  .article .arrow_black {
    height: 0.5rem;
    width: 15rem;
  }

  .article .arrow_black::before,
  .article .arrow_black::after {
    height: 0.5rem;
    width: 2.6rem;
  }

  .retour_article {
    font-size: 2rem;
    width: 100%;
    right: 0;
    display: flex;
    justify-content: center;
  }

  .retour_article .arrow {
    height: 0.5rem;
    width: 15rem;
  }

  .retour_article .arrow::before,
  .retour_article .arrow::after {
    height: 0.5rem;
    width: 2.6rem;
  }

  .nav__logo_footer {
    justify-content: center;
  }

  .nav__logo_footer img {
    max-height: 80px;
  }

  .title_footer {
    font-size: 2rem;
  }

  .nav_footer {
    margin-top: 5%;
  }

  .nav_footer li {
    margin-bottom: 5%;
    transform: none !important;
  }

  .footer_adresse {
    margin-top: 10%;
  }

  .footer_menu2 {
    margin-top: 10%;
  }

  .contact {
    display: block;
    font-size: 2rem;
  }

  .form-field {
    margin: 7% 0;
  }

  .submit-btn {
    width: 25rem;
    height: 5rem;
    font-size: 2.5rem;
  }

  .slider_header {
    height: 80vh;
  }

  .background_container{
    height: 80vh;
  }

  .wrapper_hero {
    height: 80vh;
  }

  .logo_hero img {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    max-width: 80rem;
    height: auto;
  }
  .copyright{
    height: 5rem;
    font-size: 1.5rem;
    align-items: center;
  }
  .bloc_projets{
    grid-template-columns: 1fr 1fr;
  }

  /* FOOTER RESPONSIVE */
  .section_contact {
    grid-template-columns: none;
    grid-template-rows: 1fr 2fr;
  }

  .infos_contact {
    grid-row: 1;
    padding-left: 0;
  }

  .description_contact {
    font-size: 2rem;
  }

  .infos_agence {
    font-size: 2rem;
  }

  .bandeau_footer {
    font-size: 2rem;
  }

  .fond_solutions {
    height: 15rem;
  }

  .fond_realisation {
    height: 15rem;
  }

  .map_contact iframe {
    height: 300px;
  }

  footer {
    padding: 5% 10%;
    display: inherit;
    font-size: 2rem;
  }


}

/* Responsive 425px */

@media (max-width: 425px) {
  :root h2 {
    font-size: 8rem;
    text-align: center;
  }

  .paragraphe_1_ML {
	 font-size: 1.5rem;
	}		
  .paragraphe_1_ML h2{
	 font-size: 3rem;
	 text-align: left;
	}	

  .menu_mobile ul {
    font-size: 4rem;
    margin-top: 13rem;
  }

  .nav__menu__mobile{
    display: none;
  }

  .btn_hero {
    height: 8rem;
    max-width: 30rem;
    width: 30rem;
    top: 63%;
    left: 30%;
  }

  .btn_hero a {
    font-size: 2rem;
  }

  .bandeau_hero {
    font-size: 1.7rem;
    padding: 0% 10%;
    height: 10rem;
  }

  .infos_en_avant {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: none;
    padding: 5% 15% 5% 15%;
    justify-items: center;
    align-items: center;
  }

  .infos_en_avant h2 {
    grid-row: 1;
    text-align: center;
  }

  .infos_en_avant a {
    font-size: 3rem;
  }

  .salaries {
    grid-row: 2;
    text-align: center;
  }

  .clients {
    grid-row: 3;
    text-align: center;
    display: block;
  }

  .infos_compl {
    grid-row: 4;
    text-align: center;
    display: block;
  }

  .infos_compl_2 {
    grid-row: 5;
    text-align: center;
    display: block;
  }

  .slide_desc {
    grid-template-columns: none;
  }

  .slide_real {
    grid-template-columns: none;
  }

  .description_real {
    padding: 0;
    font-size: 3rem;
    grid-row: 1;
  }

  .lien_real {
    font-size: 2rem;
  }

  .btn_real .arrow {
    width: 19rem;
    height: 0.5rem;
  }

  .btn_real .arrow::before,
  .btn_real .arrow::after {
    height: 0.45rem;
    width: 1.5rem;
  }

  .home_a_propos {
    padding: 5% 15%;
  }

  .a_propos_disp {
    grid-template-columns: none;
  }

  .description_a_propos {
    font-size: 3rem;
    margin: 10rem 0;
  }

  .btn_a_propos {
    margin-bottom: 5rem;
  }

  .btn_a_propos .arrow_black {
    width: 19rem;
    height: 0.5rem;
  }

  .btn_a_propos .arrow_black::before,
  .btn_a_propos .arrow_black::after {
    height: 0.45rem;
    width: 1.5rem;
  }

  .bloc_clients {
    grid-template-columns: none;
    grid-row: 1fr 2.7fr;
    align-items: center;
  }

  .zone_clients{
    grid-row: 1;
    font-size: 3rem;
  }

  .bloc_clients h2 {
    grid-row: 1;
  }

  .slide_clients {
    grid-template-columns: none;
  }

  .title_client a {
    font-size: 4rem;
  }

  .bandeau_edc {
    grid-template-columns: none;
  }

  .lien_articles {
    display: none;
  }

  .articles_edc {
    grid-template-columns: none;
  }

  .extrait_article {
    font-size: 3rem;
  }

  .extrait_article .arrow_black {
    width: 19rem;
    height: 0.5rem;
  }

  .extrait_article .arrow_black::before,
  .extrait_article .arrow_black::after {
    height: 0.45rem;
    width: 1.5rem;
  }

  .bloc_1_a_propos {
    grid-template-columns: none;
  }

  .bloc_1_ecologie {
    grid-template-columns: none;
    padding: 5% 15%;
  }

  .paragraphe_1_a_propos {
    padding: 5% 15%;
  }

  .paragraphe_1_a_propos a {
    margin: 3rem 0;
    font-size: 3rem;
  }

  .bloc_1_a_propos img {
    max-width: none;
    width: 100%;
  }

  .paragraphe_1_ecologie a {
    margin: 3rem 0;
    font-size: 3rem;
  }

  .bloc_1_ecologie img {
    max-width: none;
    width: 100%;
  }

  .bloc_2_a_propos {
    grid-template-columns: none;
    padding: 5% 15%;
  }

  .bloc_2 {
    grid-template-columns: none;
    padding: 5% 15%;
  }

  .paragraphe_2_a_propos a {
    margin: 3rem 0;
    font-size: 3rem;
    grid-row: 1;
  }

  .bloc_2_ecologie {
    grid-template-columns: none;
    padding: 5% 15%;
  }

  .paragraphe_2_ecologie {
    padding: 0;
    font-size: 3rem;
    grid-row: 1;
  }

  .slider-locaux{
    grid-row: 2;
  }

  .slider-item-locaux {
    margin-right: 0px;
  }

  .slider-item-locaux img {
    max-width: 90rem;
  }

  .paragraphe_2 {
    text-align: start;
    padding: 0;
    margin-bottom: 10rem;
  }

  .paragraphe_2 a {
    margin-top: 5rem;
    font-size: 3rem;
  }

  .paragraphe_3 a {
    margin-top: 5rem;
    font-size: 3rem;
  }

  .bloc_3 {
    grid-template-columns: none;
    padding: 5% 15%;
  }

  .bloc_3 img {
    display: none;
  }

  .bloc_employe{
    grid-template-columns: none;
  }

  .image_employe img {
    width: 60rem;
  }

  .employe_nom {
    font-size: 3rem;
  }

  .employe_poste {
    font-size: 2.8rem;
  }

  .bloc_machine{
    grid-template-columns: none;
  }

  .image_machine img {
    width: 60rem;
    height: 70rem;
  }

  .machine_nom {
    font-size: 3rem;
  }

  .machine_poste {
    font-size: 2.8rem;
  }

  .index_titre {
    font-size: 8rem !important;
    top: 50rem;
  }

  .titre_plus {
    top: 46%;
    left: 15%;
    width: 70%;
    text-align: center;
  }

  .titre_hero {
    font-size: 3rem !important;
  }

  .bloc_1 {
    grid-template-columns: none;
    padding: 5% 15%;
  }

  .paragraphe_1 {
    padding: 0;
    font-size: 3rem;
  }

  .paragraphe_1 a {
    margin: 10% 0;
  }

  .paragraphe_real {
    grid-template-columns: none;
    padding: 5% 15%;
  }

  .paragraphe_real a {
    padding: 0;
    font-size: 3rem;
  }

  .bloc_filtre {
    grid-template-columns: 1fr 1fr;
    padding: 5% 15%;
  }

  .btn_filtre a {
    height: 5rem;
    font-size: 2rem;
  }

  .image_projet img {
    width: 100%;
    max-height: 40rem;
  }

  .projet_titre {
    font-size: 3rem;
  }

  .slider-machines {
    max-width: 70rem;
    grid-row: 2;
  }

  .bloc_image_projet {
    width: 100%;
    height: auto;
  }

  .bloc_articles {
    grid-template-columns: none;
    margin-bottom: 15%;
  }

  .autres_articles {
    grid-template-columns: none;
  }

  .extrait {
    font-size: 3rem;
    text-align: center;
  }

  .article {
    margin: 15% 0%;
  }

  .article .arrow_black {
    height: 0.5rem;
    width: 15rem;
  }

  .article .arrow_black::before,
  .article .arrow_black::after {
    height: 0.5rem;
    width: 2.6rem;
  }

  .retour_article {
    font-size: 3rem;
    width: 100%;
    right: 0;
    display: flex;
    justify-content: center;
  }

  .retour_article .arrow {
    height: 0.5rem;
    width: 15rem;
  }

  .retour_article .arrow::before,
  .retour_article .arrow::after {
    height: 0.5rem;
    width: 2.6rem;
  }

  /* FOOTER RESPONSIVE */
  .section_contact {
    grid-template-columns: none;
    grid-template-rows: 1fr 2fr;
  }

  .infos_contact {
    grid-row: 1;
    padding-left: 0;
  }

  .description_contact {
    font-size: 3rem;
  }

  .infos_agence {
    font-size: 3rem;
  }

  .bandeau_footer {
    grid-template-columns: none;
    font-size: 3rem;
  }

  .fond_solutions {
    height: 15rem;
  }

  .fond_realisation {
    height: 15rem;
  }

  .map_contact iframe {
    height: 300px;
  }

  footer {
    padding: 5% 10%;
    display: inherit;
    font-size: 3rem;
  }

  .bandeau_mobile{
    display: block;
    background-color: var(--couleur_menu);
    height: 13rem;
  }
  .nav {
    padding: 0;
  }
  .nav__logo{
    display: none;
  }

  .nav__logo_mobile{
    position: absolute;
    top: 2rem;
    left: 5%;
  }
  .nav__logo_mobile img{
    width: 30rem;
  }

  .nav__logo_footer {
    justify-content: center;
  }

  .nav__logo_footer img {
    max-height: 80px;
  }

  .title_footer {
    font-size: 3rem;
  }

  .nav_footer {
    margin-top: 5%;
  }

  .nav_footer li {
    margin-bottom: 5%;
    transform: none !important;
  }

  .footer_adresse {
    margin-top: 10%;
  }

  .footer_menu2 {
    margin-top: 10%;
  }

  .contact {
    display: block;
    font-size: 3rem;
  }

  .form-field {
    margin: 7% 0;
  }

  .submit-btn {
    width: 25rem;
    height: 5rem;
    font-size: 2.5rem;
  }

  .slider_header {
    height: 80vh;
  }

  .background_container{
    height: 80vh;
  }

  .wrapper_hero {
    height: 80vh;
  }

  .logo_hero img {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    max-width: 80rem;
    height: auto;
  }
  .copyright{
    height: 10rem;
    font-size: 2.5rem;
    align-items: center;
  }
  .bloc_projets{
    grid-template-columns: 1fr;
  }
}

/* Partie Lightbox */
.attachment-post-thumbnail {
  cursor: pointer;
}

.lightbox {
  display: none;  /* Cachez la lightbox par défaut */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.lightbox.active {
  display: flex; /* Lorsque la classe "active" est ajoutée, affichez la lightbox */
  opacity: 1;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
/* Fin Lightbox */