/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 4rem;

  /*========== Colors ==========*/
  --first-color: #fdd22b;
  --first-color-alt: YELLOW;
  --title-color: #393939;
  --text-color: rgb(7, 7, 7);
  --text-color-light: #A6A6A6;
  --body-color: #FBFEFD;
  --container-color: #FFFFFF;

  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.15rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margin ==========*/
  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 768px) {
  :root {
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2.15rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== BASE ==========*/
*,
::before,
::after {
  box-sizing: border-box;
  border: 0;
  outline: none;
  box-shadow: none;

}

html {
  scroll-behavior: smooth;
}


/*========== Variables Dark theme ==========*/
body.dark-theme {
  --title-color: #F1F3F2;
  --text-color: #F1F3F2;
  --body-color: #1D2521;
  --container-color: #27302C;

}

.dark-theme {
  background: #1D2521;
  height: 100vh;
}

svg {
  fill: black;
}

.dark-theme svg {
  fill: white;
}





/*========== Button Dark/Light ==========*/
.change-theme {
  position: absolute;
  right: 1rem;
  top: 1.8rem;
  color: var(--text-color);
  font-size: 1rem;
  cursor: pointer;

}


body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}


h1,
h2,
h3,
p,
ul {
  margin: 0;
  text-align: center;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--title-color);
}

a:hover {
  color: red;
}

img {
  max-width: 100%;
  height: auto;

}


/*========== CLASS CSS ==========*/
.section {
  padding: 4rem 0 2rem;
}

.section-title,
.section-subtitle {
  text-align: center;

}

.section-title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-3);
}

.section-subtitle {
  display: block;
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

/*========== LAYOUT ==========*/
.bd-container {
  max-width: 960px;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}


.bd-grid {
  display: grid;
  gap: 20px;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--body-color);
}

/*========== NAV ==========*/
.nav {
  max-width: 1024px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}




@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    padding: 1.5rem 0 1rem;
    text-align: center;
    background-color: var(--body-color);
    transition: .4s;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
    border-radius: 0 0 1rem 1rem;
    z-index: var(--z-fixed);
  }
}

.nav__item {
  margin-bottom: var(--mb-2);
  text-transform: uppercase;
}

.nav__link,
.nav__toggle {
  color: var(--text-color);
  font-size: var(--small-font-size);
}



.nav__link {
  transition: .3s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__toggle {
  font-size: 1.3rem;
  cursor: pointer;
}

/* Show menu */
.show-menu {
  top: var(--header-height);
}

/* Active menu */
.active-link {
  color: var(--first-color);
}

/* Change background header */
.scroll-header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

/* Scroll top */
.scrolltop {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .3rem;
  background: rgba(6, 156, 84, .5);
  border-radius: .4rem;
  z-index: var(--z-tooltip);
  transition: .4s;
  visibility: hidden;
}

.scrolltop:hover {
  background-color: var(--first-color-alt);
}

.scrolltop__icon {
  font-size: 1.8rem;
  color: var(--body-color);
}


/* Show scrolltop */
.show-scroll {
  visibility: visible;
  bottom: 1.5rem;
}

/*========== HOME ==========*/


.slideshow {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;

}


.slideshow-item {
  width: inherit;
  height: inherit;
  position: absolute;
  opacity: 0;
  animation: cycleImages 20s infinite;

}

.slideshow-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoom 20s infinite;


}

.slideshow-item:nth-child(1),
.slideshow-item:nth-chi img {
  animation-delay: 0s;
}

.slideshow-item:nth-child(2),
.slideshow-item:nth-child(2) img {
  animation-delay: 5s;
}

.slideshow-item:nth-child(3),
.slideshow-item:nth-child(3) img {
  animation-delay: 10s;
}

.slideshow-item:nth-child(4),
.slideshow-item:nth-child(4) img {
  animation-delay: 15s;
}




.slideshow-item-text {
  max-width: 50%;
  position: absolute;
  top: 65%;
  left: 0;
  transform: translateY(-10%);
  background-color: rgba(0, 0, 0, .5);
  color: #fff;
  padding: 1rem 1rem;
  z-index: 1;

}

.slideshow-item-text h5 {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}





.taxiabba {
  margin: 1.25rem;
}



.hero__content {
  max-width: 50%;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem 1rem;
  z-index: 1;
  text-align: center;
  margin-top: 9.375rem;


}



.hero__content .home__subtitle {
  font-size: 20px;
  padding: 1.25rem;
  color: white;
  font-weight: var(--font-medium);


}

.home__subtitle {
  text-shadow: -1px 1px 3px black;
}

.hero__content .log {
  width: 20px;
}



@keyframes cycleImages {
  25% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }
}

@keyframes zoom {
  100% {
    transform: scale(1.3);
  }
}


.hero p {
  letter-spacing: 1px;

}

.home__container {
  height: calc(100vh - var(--header-height));
  align-content: center;
  justify-content: center;
}

.home__title {
  font-size: var(--biggest-font-size);
  color: var(--first-color);
  margin-bottom: var(--mb-1);
}


.home__img {
  width: 300px;
  justify-self: center;

}

.text,
h2 {
  font-size: 1.1875rem;

}

h2 {
  text-transform: uppercase;
}

.titre h1 {
  text-transform: uppercase;
  font-size: 2rem;
}




/*========== BUTTONS ==========*/
.buttons {
  display: inline-block;
  background-color: var(--first-color);
  color: black;
  padding: .5rem;
  border-radius: .5rem;
  transition: .3s;
  font-size: 1.2rem;
  font-weight: 300;

}




.fixed {
  color: black;
  position: fixed;
  border-radius: 1rem;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: .625rem;
}

.btn {

  background-color: var(--first-color);
  color: black;
  padding: .75rem;
  border-radius: 2rem;
  transition: .3s;
  font-size: 1.2rem;
  font-weight: 300;
}



/*========== ABOUT ==========*/
#s {
  position: relative;
  width: 100%;
  height: 100%;

}

iframe {
  top: 0;
  left: 0;
  height: 25rem;
  width: 80%;

}

#s,
h2 {
  padding: 50px;
  font-size: 1.5625rem;
  font-weight: var (--font-medium);
  color: red;
  text-align: center;

}

.titre {
  font-size: 1.5625rem;
  font-weight: var (--font-medium);
  color: red;
  text-align: center;
}

#Calque_1 {
  height: 3.5rem;

}

.section-subtitle {
  margin-bottom: 50px;
  font-size: 25px;
}

.section-title {
  padding: 30px 50px 0px 50px;
  font-size: 1.5625rem;
  font-weight: var (--font-medium);

  text-align: center;
}


.about__data {
  text-align: center;
  padding-top: 3.125rem;

}

.titre h1 {
  color: red;
  text-align: center;
}


.about__description {
  margin-bottom: var(--mb-3);
}

.about__img {
  width: 280px;
  border-radius: .5rem;
  justify-self: center;
  margin-top: 95px;
}

/*========== SERVICES ==========*/




.services__container {
  row-gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-radius: .125rem;
}


.services__content {
  text-align: center;


}


.services__img {
  width: 64px;
  height: 64px;
  fill: var(--first-color);
  margin-bottom: var(--mb-2);
}

.services__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
}

.services__description {
  padding: 0 1.5rem 2.1875rem;
  text-align: justify;
}

.fa,
.far,
.fas {
  font-size: 1.5625rem;
  padding-bottom: 1.25rem;
}


/*========== MENU ==========*/
.menu__container {

  justify-content: center;
}

.menu__content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--container-color);
  border-radius: .5rem;
  box-shadow: 0 2px 4px rgba(3, 74, 40, .15);
  padding: .75rem;
}


.menu__img {
  width: 100px;
  align-self: center;
  margin-bottom: var(--mb-2);
}

.menu__name,
.menu__preci {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.menu__name {
  font-size: var(--normal-font-size);
}

.menu__detail,
.menu__preci {
  font-size: var(--small-font-size);
}

.menu__detail {
  margin-bottom: var(--mb-1);
}

.menu__button {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  padding: .625rem .813rem;
  border-radius: .5rem 0 .5rem 0;
  margin-left: 2.1875rem;
}

.about__description {
  text-align: justify;
}




/*========== FOOTER ==========*/
.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__logo {
  font-size: var(--h3-font-size);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}

.footer__description {
  display: block;
  font-size: var(--small-font-size);
  margin: .25rem 0 var(--mb-3);
  padding: .3125rem;

}

.footer__content {
  align-items: center;
  text-align: center;
}

.footer__social {
  font-size: 1.5rem;
  color: var(--title-color);
  padding: 10px;

  text-align: center;
}

.footer__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-2);


}

.footer__link {
  display: inline-block;
  color: var(--text-color);
  margin-bottom: var(--mb-1);
}

.footer__link:hover {
  color: var(--first-color);
}

.footer__copy {
  text-align: left;
  font-size: 0.8rem;
  margin-top: 3.5rem;
  text-align: center;

}


/*========== MEDIA QUERIES ==========*/
@media screen and (min-width: 576px) {

  .home__container,
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }


  .home__img {
    width: 200px;
  }

  .buttons {
    display: inline-block;
    background-color: var(--first-color);
    color: black;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: .3s;
    font-size: 1rem;
    font-weight: 300;
  }


  .hero__content h2 {
    font-size: 150px;
    padding: 1.25rem;

  }

  .hero__content {

    top: 20%;
    margin-top: 6.25rem;


  }



  .about__data,
  .about__initial,
  .app__data,
  .app__initial,
  .contact__container,
  .contact__initial {
    text-align: center;
  }

  .about__img,
  .app__img {
    width: 380px;

    order: -1;
  }

  .about__img {
    margin-top: 30px;
  }

  .contact__container {
    /*--grid-template-columns: 1.75fr 1fr;--*/
    align-items: center;
  }

  .contact__button {
    justify-self: center;
  }


}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .section {
    padding-top: 8rem;
  }


  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__list {
    display: flex;
  }

  .nav__item {
    margin-left: var(--mb-5);
    margin-bottom: 0;
  }

  .nav__toggle {
    display: none;
  }

  .change-theme {
    position: initial;
    margin-left: var(--mb-2);
  }

  .home__container {
    height: 100vh;
    justify-items: center;
  }


  .services__container,
  .menu__container {
    margin-top: var(--mb-6);
  }


  .menu__content {
    padding: 1.5rem;
  }

  .menu__img {
    width: 130px;
  }

  .app__store {
    margin: 0 var(--mb-1) 0 0;
  }

  .menu__container {
    grid-template-columns: repeat(2, 300px);
    column-gap: 4rem;
  }

  .home__img {
    width: 350px;
  }


}

@media screen and (min-width: 960px) {
  .bd-container {
    margin-left: auto;
    margin-right: auto;
  }




  .about__container,
  .app__container {
    column-gap: 7rem;
  }
}


/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  .home__container {
    height: 640px;
  }


  .menu__container {
    grid-template-columns: repeat(1, 2fr);
    column-gap: 2rem;
  }


}


/*page contact*/


.formul,
.toz {
  text-align: center;
  justify-content: center;
  margin: 6.25rem;
}

h6 {
  padding-top: 5rem;
  font-size: 2.1875rem;
}

button,
input,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;

  line-height: inherit;
}



input[type=text],
textarea,
input[type=email] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  margin-right: 0px;
  margin-left: 0px;
  resize: vertical;

}

input[type=date],
input[type=tel] {
  width: 40%;
  padding-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  margin-right: 0px;
  margin-left: 0px;
  resize: vertical;
}

label {
  margin-right: 0px;
  margin-left: 0px;
  width: 100%;
}




input[type=submit] {
  background-color: var(--first-color);
  color: --text-color rgb(7, 7, 7);
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;

}

input[type=submit]:hover {
  background-color: var(--first-color-alt);
  margin: 10px;
}

label[for=date] {
  padding-right: 2rem;

}

label[for=tel] {
  padding-right: 2.7rem;
}

input[type=date] {
  border: 1px solid #ccc;
  border-radius: 4px;
}




.container {
  /* Ajouter box-sizing */
  box-sizing: border-box;
  border-radius: 3px;
  padding: 20px;
  width: 100%;
  /* redéfinition 400 + 2*20 */
  max-width: 840px;
  margin: 0 auto;
}

h1 {
  color: #ffc800;
  width: 100%;

  margin-top: 5rem;
}

.place {
  width: 100%;
  height: 100vh;
}


.bonbon {
  margin: 5Opx;
  justify-content: center;

}

.bon {
  margin: 5Opx;
  justify-content: center;


}





/*========== nos services.html ==========*/


/*==========SCALE-IN==========*/
@-webkit-keyframes scale-in {
  0% {
    transform: scale(10, 10);
    opacity: 0;
  }

  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}

@keyframes scale-in {
  0% {
    transform: scale(10, 10);
    opacity: 0;
  }

  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}

/*==========ROLL-OUT==========*/
@-webkit-keyframes roll-out {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes roll-out {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}


main {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
}

.ro {
  width: 100%;
  max-width: 1200px;
  height: 500px;
  text-align: center;
  margin: 0 auto;
  position: relative;

}

.ro h1 {
  font-size: 4.1em;
  margin: auto;
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  color: white;
}

.ro p {
  font-size: 2em;
  margin: auto;
  position: absolute;
  top: 220px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  color: white;
  text-transform: uppercase;
}

.ro p span {
  color: #318ce7;
  font-weight: 700;

}

.ro .tel {
  color: yellow;
}

.ro img {
  width: 100%;

}

.ba {
  width: 100%;
  height: 200px;
  background: -moz-linear-gradient(289deg, #080808 0%, #1a1515 36%, #252323 100%);
  background: -webkit-linear-gradient(289deg, #080808 0%, #1a1515 36%, #252323 100%);
  background: -ms-linear-gradient(289deg, #080808 0%, #1a1515 36%, #252323 100%);
  background: linear-gradient(161deg, #080808 0%, #1a1515 36%, #252323 100%);
  opacity: 0.3;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 90px;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
  -webkit-animation: roll-out 1.2s ease-out;
  -moz-animation: roll-out 1.2s ease-out;
  animation: roll-out 1.2s ease-out;
}

.ro h1,
.ro p {
  -webkit-animation: scale-in 1.3s ease-out;
  -moz-animation: scale-in 1.3s ease-out;
  animation: scale-in 1.3s ease-out;
}

.sectionN {
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  justify-content: space-around;
  flex-wrap: wrap;

  background-color: white;


}

.descript {
  width: 28.125rem;
  height: auto;
  margin: 40px 20px;
  display: flex;
  flex-direction: column;
  line-height: 2rem;
}

.descript .cpam {
  align-self: center;
  display: block;
  justify-content: center;
  width: 15%;
  padding-bottom: 1.25rem;
}



.descript h1 {
  color: black;

  padding-bottom: 1.25rem;
}

.descript p {
  color: black;
  text-align: justify;
  font-size: clamp(1rem, 2.5vw, 1rem);


}

.descript p span {
  color: #318ce7;
  font-weight: 900;
  text-decoration: underline;
  padding-left: 5px;
}

.descript h1 span {
  color: #318ce7;
}

.menu__content .ik {

  width: 6.25rem;
}

.guide {
  display: flex;
  flex-wrap: wrap;
  height: 500px;
  margin: 50px 0 0 0;
  background: linear-gradient(0deg, rgba(248, 249, 251, 1) 0%, rgba(188, 218, 246, 1) 67%);
  border-radius: 20px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  box-shadow: rgb(58, 57, 57);

}

.guide:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);

}

.idem {
  padding: 20px;

}


p.idem {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  padding: 20px;
  justify-content: center;


}

.center {
  padding: 10px;
  color: black;
  text-decoration: underline;
  cursor: pointer;

}

.idem,
h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  padding: 20px;
  justify-content: center;
}

.fleche1 {
  position: relative;
  padding: 5px;
  color: red;
  font-size: 30px;
  z-index: 2;
}

.fleche2 {
  z-index: -1;
  color: #fcfafa00;
}

span,
.sectionN {
  color: #318ce7;


}

.idem.list {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5rem;
  text-align: justify;
  justify-content: justify;
  color: black;
}

.ici {
  font-style: italic;
  color: red;
  padding: 5px;
}

p.idem,
ul,
.list {
  font-size: 14px;
}

.li {
  text-transform: uppercase;
  text-align: center;

}

.tarif {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 0 0;




}

h1.tarifs {
  text-align: center;
  color: #fdd22b;
  font-size: 40px;
  text-transform: uppercase;

}

.expli {

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px 0 0 0;




}

.explication1,
.explication2 {
  background: linear-gradient(0deg, rgba(248, 249, 251, 1) 0%, rgba(188, 218, 246, 1) 67%);
  border-radius: 5px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  margin: 40px;
  padding: 20px;
  color: black;
}




@media screen and (max-width: 979px) {
  .fleche1 {
    z-index: -2;
    position: absolute;
    visibility: hidden;
    color: red;
  }

  .fleche2 {

    padding: 5px;
    color: red;
    font-size: 30px;
    z-index: 2;

  }


}


@media all and (max-width: 768px) {
  .ro {
    height: 50vw;
  }

  .ba {
    height: 26vw;
    top: 10vw;
  }

  .ro h1 {
    font-size: 8vw;
    top: 13vw;
  }

  .ro p {
    font-size: 3vw;
    top: 27vw;
  }



}






/*========== mentions légales ==========*/

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  color: black;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: .3rem;
  outline: 0;
}




button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  float: right;

}

.close {

  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
  justify-content: right;
}

.modal-open {
  overflow: hidden;
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.text-center {
  justify-content: center;
}


.modal-body {
  position: relative;
  padding: 15px;
}

.modal-body p {
  text-align: justify;
  font-size: .75rem;
}

.nom {
  font-weight: 900;
}

/*========== cookies ==========*/


.cookies {
  position: fixed;
  background: rgb(255, 255, 255, 0.83);
  bottom: 100px;
  width: 100vw;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  z-index: 3;
  justify-content: center;
  align-items: center;
}