/* font-family: 'Libre Baskerville', serif; */
/* font-family: 'Roboto', sans-serif; */
:root {
  --color-grey: #414141;
  --color-yellow: rgb(228, 175, 114);
  --color-gb: #f7efe9;
}
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.header {
  height: 80px;
  min-width: 320px;
  background-color: white;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.58);
  -webkit-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.58);
  -moz-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.58);
  position: sticky;
  top: -1px;
  z-index: 10;
}
.header-container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.box-logo {
  height: 100%;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-logo:hover {
  cursor: pointer;
}
.logo {
  width: 180px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
/* ----menu----- */
.menu-toggle {
  min-height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  outline: none;
  margin-right: 5%;
}
.menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 32px;
  background-color: white;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 250ms ease-in-out;
}

.menu-container.is-open {
  transform: translateX(0);
}
.menu-toggle.js-close-menu {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.icon-modal {
  width: 25px;
  height: 25px;
}
.mobile-menu {
  padding: 0;
  margin: 30px 0px 0px 0px;
  list-style: none;
  text-align: end;
}
.mobile-menu .link {
  display: block;
  padding: 10px;
  color: #414141;
  text-decoration: none;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
}
.link:hover {
  color: rgb(228, 175, 114);
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
/* -----banner----- */
.banner {
  background-image: url('../imgs/Banner.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 500px;
  width: 100%;
}
.banner__bg {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 100%;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner__text {
  font-family: 'Libre Baskerville', serif;
  color: white;
  font-style: italic;
  font-weight: 500;
  font-size: 50px;
  margin: 20px 20px 0px 20px;
  text-align: center;
  text-shadow: -6px 3px 5px rgba(0, 0, 0, 0.6);
}
.banner__h1 {
  font-family: 'roboto', serif;
  color: white;
  font-style: normal;
  font-weight: 400;
  font-size: 23px;
  padding: 0 25px 0 25px;
  margin: 25px 0 25px 0;
  min-width: 300px;
  text-shadow: -6px 3px 5px rgba(0, 0, 0, 0.6);
}
.banner__line {
  width: 280px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  margin-left: auto;
  margin-right: auto;
}
.margin {
  width: 100%;
  padding: 25px;
}
.card__title {
  font-family: 'Libre Baskerville', serif;
  color: #414141;
  font-style: italic;
  font-weight: 100;
  font-size: 30px;
}
.card__title::first-letter {
  font-size: 60px;
}
.card__text {
  font-family: 'Roboto', serif;
  color: #414141;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.6em;
}
.container-card__link {
  display: flex;
  align-items: center;
}
.card__link {
  font-family: 'Libre Baskerville', serif;
  color: #414141;
  font-style: italic;
  text-decoration: none;
  font-weight: 400;
  font-size: 17px;
}
.card__link:hover {
  color: rgb(228, 175, 114);
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.card__link-line {
  width: 100px;
  height: 2px;
  background-color: rgb(228, 175, 114);
  margin-left: 25px;
}
.content-images-gb {
  display: flex;
  justify-content: flex-end;
}
.images-gb {
  width: 250px;
  height: 200px;
  margin-top: 30px;
  background-color: #f7efe9;
  position: relative;
}
.services-images-carrusel {
  width: 250px;
  height: 200px;
  right: 30px;
  top: 30px;
  position: absolute;
  overflow: hidden;
  position: relative;
}
.carrusel-animation {
  width: 400%;
  height: 100%;
  padding: 0%;
  margin: 0%;
  display: flex;
  animation: carrusel 16s infinite alternate ease-in-out;
}
.carrusel-animation li {
  list-style: none;
  width: 100%;
}
.carrusel-animation img {
  width: 100%;
}
@keyframes carrusel {
  0% {
    margin-left: 0%;
  }
  20% {
    margin-left: 0%;
  }

  25% {
    margin-left: -100%;
  }
  45% {
    margin-left: -100%;
  }

  50% {
    margin-left: -200%;
  }
  70% {
    margin-left: -200%;
  }

  75% {
    margin-left: -300%;
  }
  100% {
    margin-left: -300%;
  }
}
.img-galerie,
.img-temoignages {
  width: 100%;
  top: -40px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
}
.img-temoignages {
  top: -5px;
}
.footer {
  margin-top: 25px;
  padding: 25px;
  width: 100%;
}
.container-footer__address {
  font-family: 'Libre Baskerville', serif;
  color: #414141;
  font-style: italic;
  text-decoration: none;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
}
.container-footer__line {
  width: 100px;
  height: 2px;
  background-color: var(--color-yellow);
  margin: 30px 0 30px 0;
}
.container-footer__list {
  list-style: none;
  padding: 0%;
}
.container-footer__item > a {
  font-family: 'Libre Baskerville', serif;
  color: #414141;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  text-decoration: none;
}
.container-footer__item:hover > a {
  color: rgb(228, 175, 114);
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.box-button {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.link-mail {
  text-decoration: none;
}
.button {
  width: 280px;
  height: 60px;
  font-weight: 400;
  font-size: 20px;
  padding: 0%;
  border: 1px solid var(--color-yellow);
  font-family: 'Libre Baskerville', serif;
  color: #414141;
  font-style: italic;
  background-color: transparent;
}
.button:hover {
  cursor: pointer;
  background-color: var(--color-yellow);
  color: white;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.58);
  -webkit-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.58);
  -moz-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.58);
}
.copyright {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  justify-content: center;
  font-family: 'Libre Baskerville', serif;
  color: #414141;
  font-style: italic;
}
.menu-row {
  display: none;
}
.galerie {
  flex-direction: row-reverse;
}
.galerie > .card > .card__text,
.galerie > .card > .container-card__link {
  padding-left: 15px;
}
.box-c-lang {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.language {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 160px;
}
.language__icon {
  height: 15px;
  margin-left: 10px;
}
.language__icon-reseaux {
  height: 20px;
}
.language__icon-reseaux:hover {
  cursor: pointer;
  transition: 0.2s;
  transform: scale(1.3);
}
.language__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding-left: 5px;
}
.language__item {
  margin: 0 5px 0 5px;
}
.language__link {
  font-family: 'Roboto', serif;
  color: #414141;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
}
.language__link:hover {
  color: var(--color-yellow);
  cursor: pointer;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.banner-services-gb {
  width: 100%;
  height: 300px;
  margin-top: 10px;
  background-color: var(--color-gb);
  position: relative;
  margin-bottom: 50px;
}
.banner-services-gb__img {
  top: 40px;
  left: 10%;
  width: 80%;
  height: 300px;
  background-image: url('../imgs/centres-de-table.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  /* border: 1px solid black; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-services-gb__img p {
  font-family: 'Libre Baskerville', serif;
  color: white;
  font-style: italic;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  padding-top: 25%;
  font-size: 25px;
  text-shadow: -2px 1px 0px rgba(0, 0, 0, 1);
}
.img-banner-galerie {
  background-image: url('../imgs/Galery-banner.jpg');
}
/* ------ services */
.section-services {
  width: 100%;
  padding: 25px;
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.services-card {
  width: 300px;
  height: 350px;
  position: relative;
  margin-bottom: 90px;
}
.services-card__bg {
  position: absolute;
  width: 250px;
  height: 70%;
  background-color: var(--color-gb);
  left: -16%;
  top: -35px;
  z-index: -1;
}
.services-card__box-img {
  width: 100%;
  height: 100%;
}
.services-card__text {
  width: 100%;
  position: absolute;
  text-align: center;
  font-family: 'Libre Baskerville', serif;
  color: var(--color-grey);
  font-style: italic;
  background-color: var(--color-gb);
  font-weight: 400;
  font-size: 16px;
  bottom: 25px;
  left: 25px;
  transition: 0.2s;
  cursor: context-menu;
}
.services-card__box-img:hover .services-card__text {
  /* color: white; */
  background-color: rgb(241, 227, 210);
  transform: scale(1.05);
}
.services-card__button {
  border: none;
  background-color: transparent;
  border-radius: 10%;
  height: 30px;
}
.services-card__button a {
  font-family: 'Libre Baskerville', serif;
  color: var(--color-grey);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
}
/* ------galerie images ----------- */
.galerie-list {
  width: 100%;
  padding: 25px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  list-style: none;
}
.galerie-list__item {
  width: 300px;
  height: 350px;
  margin-top: 80px;
  position: relative;
}
.galerie-list__item-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.galerie-list__item img {
  height: 100%;
}
.galerie-list__item--bgone {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: var(--color-gb);
  top: -20px;
  left: -20px;
}
.galerie-list__item--bgtwo {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: var(--color-gb);
  bottom: -20px;
  right: -20px;
}
.networks {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.networks__text {
  font-family: 'Roboto', serif;
  color: #414141;
  font-style: normal;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  max-width: 80%;
  min-width: 300px;
}
.networks__icon {
  height: 40px;
  max-width: 50px;
}
/* -------------- medias--------------- */
@media screen and (min-width: 560px) {
  .services,
  .galerie,
  .temoignages {
    display: flex;
    justify-content: space-between;
  }
  .card__text {
    font-size: 16px;
    padding-right: 30px;
    max-width: 360px;
  }
  .content-images-gb {
    align-items: center;
  }
  .copyright {
    max-width: 330px;
  }
  .box-c-lang {
    flex-direction: row;
  }
  .networks__text {
    max-width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
  .card__title {
    font-size: 30px;
  }
  .card__title::first-letter {
    font-size: 90px;
  }
  .card__text {
    max-width: 460px;
  }
  .menu-row {
    display: flex;
    padding-right: 10px;
    width: 100%;
    max-width: 660px;
  }
  .menu-row__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0%;
    width: 100%;
  }
  .menu-row__link {
    font-family: 'Roboto', serif;
    color: #414141;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
  }
  .menu-row__link:hover {
    color: var(--color-yellow);
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  /* -------- */
  .container-footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .container-footer__address {
    min-width: 260px;
  }
  .container-footer__line {
    width: 2px;
    height: 50px;
    margin: 0 60px 0 60px;
  }
  .container-footer__list {
    margin: 0%;
  }
  .box-button {
    margin-left: auto;
    margin-right: auto;
  }
  .banner-services-gb {
    height: 400px;
    margin-top: 20px;
  }
  .banner-services-gb__img {
    height: 400px;
    top: 60px;
  }
}
@media screen and (min-width: 880px) {
  .box-logo {
    margin-left: 25px;
  }
  .card__text {
    padding-right: 40px;
  }
  .images-gb {
    width: 400px;
    height: 350px;
  }
  .services-images-carrusel {
    width: 400px;
    height: 350px;
    right: 40px;
    top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .menu-row {
    padding-right: 50px;
  }
  .card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .card__text {
    max-width: 560px;
    padding-right: 65px;
  }
  .container-footer__line {
    margin: 0 20px 0 20px;
  }
  .box-button {
    margin: 0%;
  }
  .container-footer__linetwo {
    width: 2px;
    height: 50px;
    margin: 0 20px 0 20px;
    background-color: var(--color-yellow);
  }
  .images-gb {
    width: 450px;
    height: 400px;
    margin: 0 0 60px 0;
  }
  .services-images-carrusel {
    width: 450px;
    height: 400px;
    right: 60px;
    top: 50px;
  }
  .banner-services-gb {
    height: 500px;
    margin-top: 20px;
    margin-bottom: 100px;
  }
  .banner-services-gb__img {
    height: 500px;
    top: 80px;
  }
}
.active-color {
  color: var(--color-yellow);
}
.mobile-menu .active-color {
  color: var(--color-yellow);
}
@media screen and (min-width: 1500px) {
  .banner {
    height: 800px;
  }
}
