@charset "UTF-8";
body {
  width: 100% !important;
}

.animated {
  opacity: 0;
}

.visible {
  opacity: 1;
}

.from-haut {
  -webkit-animation: arrive-from-haut 1s 0s forwards;
          animation: arrive-from-haut 1s 0s forwards;
}
@-webkit-keyframes arrive-from-haut {
  0% {
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes arrive-from-haut {
  0% {
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.from-bas {
  -webkit-animation: arrive-from-bas 2s 0s forwards;
          animation: arrive-from-bas 2s 0s forwards;
}
@-webkit-keyframes arrive-from-bas {
  0% {
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes arrive-from-bas {
  0% {
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.from-opacity {
  -webkit-animation: arrive-from-opacit 2s 0s forwards;
          animation: arrive-from-opacit 2s 0s forwards;
}
@-webkit-keyframes arrive-from-opacit {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrive-from-opacit {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@font-face {
  font-family: "AkayaKanadaka";
  src: url("./font/AkayaKanadaka-Regular.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Merienda";
  src: url("./font//Merienda-Black.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PermanentMarker";
  src: url("./font/PermanentMarker-Regular.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "CabinSketch-regular";
  src: url("./font/CabinSketch-Regular.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "DynaPuff-regular";
  src: url("./font/DynaPuff-Regular.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
}
* {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 0;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style-type: none;
}

body {
  background: rgb(200, 200, 200);
  height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body h1 {
  -webkit-animation: arrive-from-opacit 5s 0s forwards;
          animation: arrive-from-opacit 5s 0s forwards;
  position: relative;
  font-family: "DynaPuff-regular", sans-serif;
  font-size: 3rem;
  font-weight: 300;
  margin: 20px auto;
  text-align: center;
  background: rgb(240, 240, 240);
  color: #660e40;
  border-radius: 15px 15px 15px 0;
  padding: 10px;
  width: 70%;
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.17);
          box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.17);
}
@keyframes arrive-from-opacit {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body h1::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  height: 2px;
  width: 10%;
  border: 2px solid #a2b61e;
  background: #a2b61e;
}
body h1::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 0;
  height: 2px;
  width: 10%;
  border: 2px solid #a2b61e;
  background: #a2b61e;
}
body h3 {
  text-align: center;
  font-family: "PermanentMarker", serif;
  font-weight: 300;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body h3::before, body h3::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  width: 50px;
  border: 1px solid #a2b61e;
  background: #a2b61e;
  margin: 0 10px;
}
body h2 {
  position: relative;
  font-family: "DynaPuff-regular", sans-serif;
  font-size: 2rem;
  font-weight: 200;
  margin: 20px auto 40px auto;
  text-align: center;
  background: #a2b61e;
  color: #660e40;
  border-radius: 15px 15px 15px 0;
  padding: 10px;
  width: 60%;
  border-bottom: solid 1px #660e40;
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.17);
          box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.17);
  scroll-margin-top: 50px;
}
body h2::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  height: 2px;
  width: 10%;
  border: 2px solid white;
  background: white;
}
body h2::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 0;
  height: 2px;
  width: 10%;
  border: 2px solid white;
  background: white;
}
body p {
  text-align: left;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  margin: 5px 30px;
}
body img {
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.2);
  margin: 5px;
}
body a {
  font-family: "AkayaKanadaka", serif;
  font-style: italic;
}
body a:hover {
  color: violet;
}
body .banderoleFacebook {
  background: #a2b61e;
  width: 100%;
  height: 30px;
  color: white;
  position: relative;
  overflow: hidden;
}
body .banderoleFacebook .banderole-content {
  display: inline-block;
  white-space: nowrap;
  -webkit-animation: banderolFacebook 20s linear infinite;
          animation: banderolFacebook 20s linear infinite;
}
@media screen and (max-width: 600px) {
  body .banderoleFacebook .banderole-content {
    -webkit-animation: banderolFacebookMobile 20s linear infinite;
            animation: banderolFacebookMobile 20s linear infinite;
  }
}
body .banderoleFacebook p {
  display: inline-block;
  padding-right: 50%;
}
@media screen and (max-width: 600px) {
  body .banderoleFacebook p {
    padding-right: 100%;
  }
}
body .banderoleFacebook #BanderoleFb {
  font-size: 1.1em;
}
@-webkit-keyframes banderolFacebook {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes banderolFacebook {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 600px) {
  @-webkit-keyframes banderolFacebookMobile {
    0% {
      -webkit-transform: translateX(25%);
              transform: translateX(25%);
    }
    100% {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
  }
  @keyframes banderolFacebookMobile {
    0% {
      -webkit-transform: translateX(25%);
              transform: translateX(25%);
    }
    100% {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
  }
}
body #presentationIndex,
body .textContainer {
  max-width: 90%;
  width: 120%;
  margin: 50px auto 20px auto;
  padding: 10px;
  background-color: #660e40;
  clip-path: polygon(3% 0, 100% 0%, 97% 100%, 0 100%);
  border-radius: 5px;
  border-bottom: solid 1px #a2b61e;
}
body #presentationIndex h3,
body .textContainer h3 {
  color: rgb(240, 240, 240);
}
body #presentationIndex p,
body .textContainer p {
  text-align: left;
  margin: 20px 50px 20px 50px;
  color: white;
}
body #presentationIndex p a,
body .textContainer p a {
  color: rgb(86, 88, 204);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-style: italic;
}
body #presentationIndex p a:hover,
body .textContainer p a:hover {
  color: violet;
}
body #fermeture {
  position: relative;
  background-color: #660e40;
  width: 50%;
  height: 150px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 2px black, 21px 16px 45px 5px rgba(0, 0, 0, 0.52);
          box-shadow: 0 0 2px black, 21px 16px 45px 5px rgba(0, 0, 0, 0.52);
  border: 2px solid #a2b61e;
}
body #fermeture p {
  margin: 20px auto;
  font-family: "AkayaKanadaka";
  text-align: center;
}
body #fermeture .horaireVert {
  color: #a2b61e;
}
body #fermeture .horaireBlanc {
  color: white;
  font-size: 1.2 rem;
}
@media screen and (max-width: 600px) {
  body #fermeture {
    width: 90%;
  }
}
body .containerPresentation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
body .containerPresentation .presentationAnimeContainer {
  border-radius: 10px;
}
body .containerPresentation #aujourdhui {
  background-color: #660e40;
  width: 150px;
  height: 350px;
  clip-path: polygon(0 0, 0 100%, 8% 100%, 8% 80%, 92% 80%, 92% 100%, 100% 100%, 100% 0, 0 0);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body .containerPresentation #aujourdhui #ardoise {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: black;
  width: 130px;
  height: 250px;
  margin: 10px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
body .containerPresentation #aujourdhui #ardoise p {
  color: white;
  padding: 0;
  margin: 0;
  text-align: center;
}
body .containerPresentation #aujourdhui #ardoise .vagueArdoise {
  color: blueviolet;
  padding: 0;
  margin: 0;
}
body .containerPresentation .horaire {
  position: relative;
  background-color: #660e40;
  width: 150px;
  height: 300px;
  border-radius: 10px;
  -webkit-box-shadow: 21px 16px 45px 5px rgba(0, 0, 0, 0.52);
          box-shadow: 21px 16px 45px 5px rgba(0, 0, 0, 0.52);
}
body .containerPresentation .horaire p {
  margin: 20px auto;
  font-family: "AkayaKanadaka";
  text-align: center;
}
body .containerPresentation .horaire .horaireVert {
  color: #a2b61e;
}
body .containerPresentation .horaire .horaireBlanc {
  color: white;
  font-size: 1rem;
}
body .containerPresentation .horaire .horDimanche {
  background: #a2b61e;
  margin: 0.2rem 0.1rem 0 0.1rem;
  border-radius: 10px 10px 10px 0;
}
body .containerPresentation #cercleHoraire {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #a2b61e;
  top: -20px;
  right: 10px;
  color: white;
}
@media screen and (max-width: 600px) {
  body .containerPresentation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "anim anim" "auj hor";
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body .containerPresentation .presentationAnimeContainer {
    grid-area: anim;
    min-width: none;
    width: 95%;
  }
  body .containerPresentation #aujourdhui {
    grid-area: auj;
    margin: 30px auto;
  }
  body .containerPresentation #horaire {
    grid-area: hor;
    margin: 30px auto;
  }
}
@media screen and (max-width: 600px) {
  body {
    min-width: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  body h1 {
    width: 100%;
  }
  body h1::after, body h1::before {
    display: none;
  }
  body h2 {
    width: 90%;
  }
  body h2::after, body h2::before {
    display: none;
  }
  body #presentationIndex p {
    margin: 10px;
  }
  body a {
    font-size: 1rem;
  }
}

#facade001 {
  width: 550px;
  height: 314px;
  margin: 10px;
}
@media screen and (max-width: 600px) {
  #facade001 {
    width: 95%;
    height: auto;
  }
}

#ficheLivraison {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#ficheLivraison .textContainer {
  width: 100%;
  margin: 0;
  padding: 0;
}

#partner002 {
  width: 571px;
  height: 256px;
  margin: 10px;
}
@media screen and (max-width: 600px) {
  #partner002 {
    width: 95%;
    height: auto;
  }
}

#pain001 {
  width: 450px;
  height: 300px;
  margin: 10px;
}
@media screen and (max-width: 600px) {
  #pain001 {
    width: 95%;
    height: auto;
  }
}

#gaz001 {
  width: 477px;
  height: 300px;
  margin: 10px;
}
@media screen and (max-width: 600px) {
  #gaz001 {
    width: 95%;
    height: auto;
  }
}

#blancabri01 {
  width: 214px;
  height: 403px;
}
@media screen and (max-width: 600px) {
  #blancabri01 {
    width: 95%;
    height: auto;
  }
}

#juFruit01 {
  width: 400px;
  height: 195px;
}
@media screen and (max-width: 600px) {
  #juFruit01 {
    width: 95%;
    height: auto;
  }
}

#fraise01 {
  width: 300px;
  height: 400px;
}
@media screen and (max-width: 600px) {
  #fraise01 {
    width: 95%;
    height: auto;
  }
}

#philippe01 {
  width: 255px;
  height: 400px;
}
@media screen and (max-width: 600px) {
  #philippe01 {
    width: 95%;
    height: auto;
  }
}

#biere01 {
  width: 400px;
  height: 202px;
}
@media screen and (max-width: 600px) {
  #biere01 {
    width: 95%;
    height: auto;
  }
}

#fougerouse01 {
  width: 250px;
  height: 250px;
}
@media screen and (max-width: 600px) {
  #fougerouse01 {
    width: 95%;
    height: auto;
  }
}

#saucisson003 {
  width: 270px;
  height: 202px;
}
@media screen and (max-width: 600px) {
  #saucisson003 {
    width: 95%;
    height: auto;
  }
}

#miel001 {
  width: 400px;
  height: 202px;
}
@media screen and (max-width: 600px) {
  #miel001 {
    width: 95%;
    height: auto;
  }
}

#fromage001 {
  width: 441px;
  height: 200px;
}
@media screen and (max-width: 600px) {
  #fromage001 {
    width: 95%;
    height: auto;
  }
}

#museau001 {
  width: 360px;
  height: 200px;
}
@media screen and (max-width: 600px) {
  #museau001 {
    width: 95%;
    height: auto;
  }
}

#assiette001 {
  width: 400px;
  height: 358px;
}
@media screen and (max-width: 600px) {
  #assiette001 {
    width: 95%;
    height: auto;
  }
}

#magasinpano001 {
  width: 100%;
  height: auto;
  margin: 10px;
}
@media screen and (max-width: 600px) {
  #magasinpano001 {
    width: 95%;
    height: auto;
  }
}

nav {
  min-width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  z-index: 100;
  font-family: "Merriweather", serif;
  background: rgb(200, 200, 200);
  border-bottom: solid 1px #a2b61e;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
nav #logoGauche {
  display: none;
}
nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: transparent;
  z-index: 100;
  color: white;
}
nav ul li {
  position: relative;
  background: #660e40;
  border-radius: 20px 20px 0 0;
  margin: 0.5px;
  -webkit-transition: background 0.3s, border 0.3s;
  transition: background 0.3s, border 0.3s;
}
nav ul li #logoMagasin {
  width: 20px;
  height: 20px;
  padding: 0;
  margin: -5px 15px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
nav ul li:hover {
  border: 1px solid #a2b61e;
  background: rgb(146.8448275862, 20.1551724138, 92.1379310345);
}
nav ul::after {
  content: "";
  display: table;
  clear: both;
}
nav a {
  display: block;
  text-decoration: none;
  color: white;
  border-bottom: 2px solid transparent;
  padding: 10px 20px;
  -webkit-transition: color 0.3s, border-bottom 0.3s;
  transition: color 0.3s, border-bottom 0.3s;
}
nav a:hover {
  color: #a2b61e;
  border-bottom: 2px solid #a2b61e;
}
nav > ul li:hover .sous {
  display: block;
}
nav .sous {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 100;
}
nav .sous li {
  float: none;
  width: 100%;
  text-align: left;
  border-radius: 20px;
}
nav .sous a {
  padding: 10px;
  border-bottom: none;
}
nav .sous a:hover {
  background-color: rgba(200, 200, 200, 0.1);
}
nav .deroulant > a::after {
  content: " ▼";
  font-size: 12px;
}
@media screen and (max-width: 400px) {
  nav {
    font-size: 0.8rem;
  }
}

.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
}

/* Media query pour petits écrans */
@media (max-width: 600px) {
  #logoGauche {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: fixed;
    left: 15px;
    top: 15px;
  }
  #logoGauche #logoMagasin2 {
    width: 30px;
    height: 30px;
    padding: 0;
    margin: -5px 15px;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 10;
  }
  nav ul {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    width: 250px;
    position: absolute;
    border-radius: 10px;
    top: 60px;
    left: 10px;
    padding: 1rem;
    background: #660e40;
  }
  nav ul.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sous {
    display: none;
    -webkit-transform: translate(100px, -100px);
            transform: translate(100px, -100px);
  }
  nav ul li {
    width: 100%;
    border-radius: 10px;
  }
  nav a {
    display: block;
    padding: 0.5rem;
    width: 100%;
    text-align: left;
  }
}
main {
  margin: 50px 20px 20px 20px;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .ficheProduit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 20px;
}
main .ficheProduit .ficheContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
}
main .ficheProduit .ficheContainer img {
  width: 300px;
  height: 200px;
}
main .ficheProduit .ficheContainer .textContainer {
  width: 60%;
  border: 2px solid #a2b61e;
  border-bottom: 2px solid #660e40;
  border-left: 2px solid #660e40;
  background: rgb(240, 240, 240);
  clip-path: none;
  border-radius: 12px 20px 20px 0;
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.17);
          box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.17);
}
main .ficheProduit .ficheContainer .textContainer p {
  color: #660e40;
}
main .ficheProduit .TarifGaz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
main .ficheProduit .TarifGaz table.comicGreen {
  border: 2px solid #660e40;
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  margin: 20px;
}
main .ficheProduit .TarifGaz table.comicGreen td,
main .ficheProduit .TarifGaz table.comicGreen th {
  border: 1px solid white;
}
main .ficheProduit .TarifGaz table.comicGreen td img,
main .ficheProduit .TarifGaz table.comicGreen th img {
  height: 60px;
  width: 60px;
}
main .ficheProduit .TarifGaz table.comicGreen tbody td {
  font-size: 1rem;
  font-weight: bold;
  color: #4F7849;
  border: 2px solid #660e40;
}
main .ficheProduit .TarifGaz table.comicGreen thead {
  background: #660e40;
}
main .ficheProduit .TarifGaz table.comicGreen thead th {
  font-size: 1rem;
  color: #FFFFFF;
  text-align: center;
}
main .ficheProduit .TarifGaz table.comicGreen tfoot td {
  font-size: 1.1rem;
}
@media screen and (max-width: 600px) {
  main {
    width: 100%;
  }
  main * {
    font-size: 0.5rem;
    padding: 0;
    margin: 0;
  }
  main h1 {
    width: 95%;
  }
  main .ficheProduit {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  main .ficheProduit img {
    width: 95%;
    height: auto;
  }
  main .ficheProduit .ficheContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0;
  }
  main .ficheProduit .ficheContainer .textContainer {
    width: 100%;
    padding: 0;
    margin: 10px 0;
  }
  main .ficheProduit .ficheContainer .textContainer p {
    width: 100%;
    padding: 10px;
    margin: 0;
  }
}
main #contribution {
  text-align: center;
}

footer {
  width: 100%;
}
footer .bande {
  width: 100%;
  bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(243, 243, 243, 0.2);
  border-radius: 15px;
  margin-top: 50px;
  border-top: solid 2px #a2b61e;
}
footer .bande a {
  color: blue;
  text-align: left;
  padding: 10px 0;
  margin: 10px 0;
  font-size: 1rem;
}
footer .bande .adresse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 200px;
  margin: 0 10px;
  margin: 0px;
}
footer .bande .adresse p {
  padding: 0;
  margin: 5;
}
footer .bande ifram {
  border: 10px solid black;
  background: red;
}
footer .bande .webMaster {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .bande .webMaster a {
  padding: 0cm;
  margin: 0 auto;
  color: blue;
  font-size: 1rem;
}
footer .bande .webMaster a:hover {
  color: violet;
}
@media screen and (max-width: 600px) {
  footer .bande {
    margin: 50px 0;
    border-radius: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: sticky;
  }
  footer .bande iframe {
    width: 100%;
    margin: 10px;
    padding: 0 10px;
  }
  footer .bande a {
    font-size: 1rem;
  }
  footer .bande i {
    font-size: 1rem;
  }
}

#contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 70%;
  max-width: 500px;
}
#contact .containtForm {
  -webkit-animation: arrive-from-opacit 2s 0s forwards;
          animation: arrive-from-opacit 2s 0s forwards;
  background: #660e40;
  border-radius: 20px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 21px 16px 45px 5px rgba(0, 0, 0, 0.52);
          box-shadow: 21px 16px 45px 5px rgba(0, 0, 0, 0.52);
  width: 100%;
}
@keyframes arrive-from-opacit {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#contact .containtForm label {
  width: 100%;
}
#contact .containtForm input {
  width: 100%;
  height: 40px;
  margin: 10px auto;
  text-align: center;
  border-radius: 10px;
  border: none;
  z-index: 1;
  -webkit-box-shadow: 5px 5px 22px 0px rgba(133, 133, 133, 0.79), inset 5px 5px 22px 0px rgba(133, 133, 133, 0.79);
          box-shadow: 5px 5px 22px 0px rgba(133, 133, 133, 0.79), inset 5px 5px 22px 0px rgba(133, 133, 133, 0.79);
}
#contact .containtForm input:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
#contact .containtForm textarea {
  width: 90%;
  height: 200px;
  margin: 20px;
  text-align: center;
  border-radius: 10px;
  -webkit-box-shadow: inset 2px 2px 5px rgb(0, 0, 0), 21px 16px 45px 5px rgba(0, 0, 0, 0.52);
          box-shadow: inset 2px 2px 5px rgb(0, 0, 0), 21px 16px 45px 5px rgba(0, 0, 0, 0.52);
  padding: 20px auto;
  -webkit-box-shadow: 5px 5px 22px 0px rgba(133, 133, 133, 0.79), inset 5px 5px 22px 0px rgba(133, 133, 133, 0.79);
          box-shadow: 5px 5px 22px 0px rgba(133, 133, 133, 0.79), inset 5px 5px 22px 0px rgba(133, 133, 133, 0.79);
}
#contact .containtForm textarea:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
#contact .containtForm button {
  border-radius: 10px;
  width: 200px;
  height: 40px;
  -webkit-box-shadow: 5px 5px 22px 0px rgba(133, 133, 133, 0.79), inset 5px 5px 22px 0px rgba(133, 133, 133, 0.79);
          box-shadow: 5px 5px 22px 0px rgba(133, 133, 133, 0.79), inset 5px 5px 22px 0px rgba(133, 133, 133, 0.79);
}
#contact .containtForm button:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
@media screen and (max-width: 600px) {
  #contact .containtForm {
    width: 98%;
  }
}/*# sourceMappingURL=style.css.map */