@charset "UTF-8";
@font-face {
  font-family: "bebasneue";
  src: url(../fonts/BebasNeue-Regular.eot);
  src: local("☺"), url(../fonts/BebasNeue-Regular.woff) format("woff"), url(../fonts/BebasNeue-Regular.ttf) format("truetype"), url(../fonts/BebasNeue-Regular.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gotham";
  src: url(../fonts/GothamNarrow-Light.eot);
  src: local("☺"), url(../fonts/GothamNarrow-Light.woff) format("woff"), url(../fonts/GothamNarrow-Light.ttf) format("truetype"), url(../fonts/GothamNarrow-Light.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gotham-medium";
  src: url(../fonts/GothamNarrow-Medium.eot);
  src: local("☺"), url(../fonts/GothamNarrow-Medium.woff) format("woff"), url(../fonts/GothamNarrow-Medium.ttf) format("truetype"), url(../fonts/GothamNarrow-Medium.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gotham-italic";
  src: url(../fonts/GothamNarrow-LightItalic.eot);
  src: local("☺"), url(../fonts/GothamNarrow-LightItalic.woff) format("woff"), url(../fonts/GothamNarrow-LightItalic.ttf) format("truetype"), url(../fonts/GothamNarrow-LightItalic.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gotham-medium-italic";
  src: url(../fonts/GothamNarrow-MediumItalic.eot);
  src: local("☺"), url(../fonts/GothamNarrow-MediumItalic.woff) format("woff"), url(../fonts/GothamNarrow-MediumItalic.ttf) format("truetype"), url(../fonts/GothamNarrow-MediumItalic.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}
/*Variables*/
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f1f2f6;
}

p, a, ul, li, span {
  color: #000000;
  font-family: "gotham", "arial", "helvetica", "sans-serif";
  font-size: 16px;
  line-height: 20px;
}

p {
  margin-bottom: 15px;
}

ul {
  margin-bottom: 20px;
  padding-left: 15px;
}
ul li {
  margin-bottom: 5px;
}

strong {
  font-family: "gotham-medium", "arial", "helvetica", "sans-serif";
  font-weight: normal;
  font-style: normal;
}

em {
  font-family: "gotham-italic", "arial", "helvetica", "sans-serif";
  font-weight: normal;
  font-style: normal;
}

strong em, em strong {
  font-family: "gotham-medium-italic", "arial", "helvetica", "sans-serif";
  font-weight: normal;
}

h1 {
  margin-bottom: 10px;
  font-family: "bebasneue", "arial", "helvetica", "sans-serif";
  font-weight: normal;
  font-size: 45px;
  line-height: 45px;
  color: #6cae75;
}

h2 {
  margin-bottom: 5px;
  font-family: "bebasneue", "arial", "helvetica", "sans-serif";
  font-weight: normal;
  color: #2F4858;
  text-transform: uppercase;
}

h3 {
  font-family: "gotham-medium", "arial", "helvetica", "sans-serif";
  font-weight: normal;
}

.cta {
  display: inline-block;
  padding: 10px 15px 8px;
  background-color: #6cae75;
  border-radius: 6px;
  color: #ffffff;
  font-size: 20px;
  font-family: "bebasneue", "arial", "helvetica", "sans-serif";
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
}
.cta:hover {
  padding-left: 20px;
  padding-right: 20px;
  background-color: #2F4858;
  color: #ffffff;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 30px);
  padding: 0 15px;
  background-color: #6cae75;
  position: fixed;
  top: 0;
  z-index: 10;
}

#logo {
  width: 10%;
}

.sous-menu {
  display: block;
  list-style: none;
  margin-left: -20px;
  padding: 15px 20px 3px;
  background-color: #ffffff;
  position: absolute;
  top: -150px;
  z-index: -10;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
}
.sous-menu a {
  display: inline-block;
  color: #6cae75;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
}
.sous-menu a:hover {
  color: #2F4858;
  font-family: "gotham-medium", "arial", "helvetica", "sans-serif";
}

nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 80%;
}
nav > div {
  padding: 13px 15px;
  background-color: #6cae75;
  color: #ffffff;
  font-size: 20px;
  line-height: 20px;
  font-family: "bebasneue", "arial", "helvetica", "sans-serif";
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
}
nav > div:hover {
  padding-left: 20px;
  padding-right: 20px;
  background-color: #2F4858;
  color: #ffffff;
}
nav > div:hover .sous-menu {
  top: 46px;
}

#rs-link {
  display: flex;
  align-items: center;
  justify-content: right;
  width: 10%;
}
#rs-link a {
  line-height: 0;
}
#rs-link img {
  height: 25px;
}

#btn-menu-mobile {
  display: none;
  width: 35px;
  height: 35px;
  cursor: pointer;
}
#btn-menu-mobile #bar-top {
  width: 25px;
  height: 2px;
  margin-top: 12px;
  margin-bottom: 7px;
  border-radius: 50px;
  background-color: #ffffff;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
}
#btn-menu-mobile #bar-bottom {
  width: 35px;
  height: 2px;
  border-radius: 50px;
  background-color: #ffffff;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
}
#btn-menu-mobile:hover #bar-top, #btn-menu-mobile:hover #bar-bottom {
  background-color: #2F4858;
}
#btn-menu-mobile:hover #bar-top {
  width: 35px;
}
#btn-menu-mobile:hover #bar-bottom {
  width: 25px;
}

#main {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: calc(100% - 60px);
  height: calc(100vh - 200px);
  padding: 100px 30px;
  position: relative;
}
#main div {
  width: 100%;
}
#main h1 {
  margin-bottom: 0;
  font-size: 60px;
  line-height: 60px;
  color: #ffffff;
}
#main h3 {
  color: #ffffff;
  margin-bottom: 10px;
}
#main::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/photo-lud-09.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}
#main::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
}
#main .cta {
  margin-top: 25px;
}

#qui-suis-je {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 60px);
  height: calc(100vh - 200px);
  padding: 100px 30px;
}
#qui-suis-je div img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 25px;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
  filter: grayscale(100%);
}
#qui-suis-je div img:hover {
  filter: grayscale(0);
}
#qui-suis-je > div:nth-child(1) {
  width: calc(25% - 50px);
  margin-right: 50px;
  align-self: flex-start;
}
#qui-suis-je > div:nth-child(2) {
  width: calc(25% - 50px);
  margin-right: 50px;
  align-self: flex-end;
}
#qui-suis-je > div:nth-child(3) {
  width: 50%;
  align-self: center;
}

#domaines-intervention {
  width: calc(100% - 120px);
  height: calc(100vh - 200px);
  padding: 100px 60px;
}
#domaines-intervention > div {
  width: 100%;
}

#blocs-intervention {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 50px;
}
#blocs-intervention > div {
  width: calc(33.3333333333% - 100px);
  margin-bottom: 5px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 25px;
  text-align: center;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
}
#blocs-intervention > div img {
  width: 100px;
  height: 100px;
}
#blocs-intervention > div:hover {
  box-shadow: 0 3px 6px rgba(47, 72, 88, 0.2);
  margin-top: -5px;
}
#blocs-intervention > div .cta {
  margin-top: 25px;
  margin-bottom: 10px;
}

.modules-intervention {
  display: flex;
  width: 100%;
  height: 100vh;
}
.modules-intervention > div:nth-child(1) {
  width: calc(70% - 120px);
  height: calc(100vh - 200px);
  padding: 100px 60px;
  overflow-y: auto;
  scrollbar-color: #6cae75 #ffffff;
  scrollbar-width: thin;
}
.modules-intervention > div:nth-child(1)::-webkit-scrollbar {
  width: 5px;
  height: 100%;
  background-color: #ffffff;
}
.modules-intervention > div:nth-child(1)::-webkit-scrollbar-thumb {
  background-color: #6cae75;
}
.modules-intervention > div:nth-child(1) p {
  margin-bottom: 20px;
}
.modules-intervention > div:nth-child(1) .cta {
  margin-top: 20px;
}
.modules-intervention > div:nth-child(2) {
  width: 30%;
}
.modules-intervention > div:nth-child(2) img {
  width: 100%;
  height: 98%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
  filter: grayscale(100%);
}
.modules-intervention > div:nth-child(2) img:hover {
  filter: grayscale(0);
}

#tarifs {
  display: flex;
  width: 100%;
  height: 100vh;
}
#tarifs > div:nth-child(1) {
  width: 30%;
}
#tarifs > div:nth-child(1) img {
  width: 100%;
  height: 98%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
  filter: grayscale(100%);
}
#tarifs > div:nth-child(1) img:hover {
  filter: grayscale(0);
}
#tarifs > div:nth-child(2) {
  width: calc(70% - 120px);
  height: calc(100vh - 200px);
  padding: 100px 60px;
  overflow-y: auto;
  scrollbar-color: #6cae75 #ffffff;
  scrollbar-width: thin;
}
#tarifs > div:nth-child(2)::-webkit-scrollbar {
  width: 5px;
  height: 100%;
  background-color: #ffffff;
}
#tarifs > div:nth-child(2)::-webkit-scrollbar-thumb {
  background-color: #6cae75;
}
#tarifs > div:nth-child(2) h1 {
  width: 100%;
  margin-bottom: 20px;
}

#choix-tarif {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
#choix-tarif > div {
  width: calc(33.3333333333% - 40px);
  margin-bottom: 30px;
  padding: 10px;
  background-color: #DEDFE3;
  text-align: center;
  border-radius: 6px;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
}
#choix-tarif > div img {
  height: 60px;
}
#choix-tarif > div h2 {
  font-size: 20px;
  margin-bottom: 15px;
}
#choix-tarif > div .cta {
  margin-bottom: 15px;
}
#choix-tarif .bloc-tarif {
  width: calc(100% - 40px);
  margin: 0 auto 20px;
  padding: 25px 10px 5px;
  background-color: #ffffff;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(47, 72, 88, 0.2);
}
#choix-tarif .bloc-tarif .prix {
  color: #6cae75;
  font-size: 40px;
  font-family: "bebasneue", "arial", "helvetica", "sans-serif";
}
#choix-tarif .bloc-tarif .prix span {
  color: #2F4858;
  font-size: 20px;
  line-height: 24px;
}
#choix-tarif .bloc-tarif .title {
  font-family: "gotham-medium", "arial", "helvetica", "sans-serif";
  font-size: 16px;
}
#choix-tarif .bloc-tarif .title em {
  display: block;
  margin-top: -5px;
  font-size: 10px;
}

#contact {
  display: flex;
  width: 100%;
  height: 100vh;
}
#contact > div:nth-child(1) {
  width: 60%;
}
#contact > div:nth-child(1) img {
  width: 100%;
  height: 98%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
  filter: grayscale(100%);
}
#contact > div:nth-child(1) img:hover {
  filter: grayscale(0);
}
#contact > div:nth-child(2) {
  width: calc(40% - 120px);
  height: calc(100vh - 200px);
  padding: 100px 60px;
}
#contact > div:nth-child(2) h1 {
  width: 100%;
  margin-bottom: 20px;
}

#choix-contact > div {
  display: flex;
  width: 100%;
  margin-bottom: 50px;
}
#choix-contact > div > div:nth-child(1) {
  margin-right: 15px;
}
#choix-contact > div > div:nth-child(1) img {
  width: 50px;
}
#choix-contact > div a {
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
}
#choix-contact > div a:hover {
  color: #6cae75;
}

#avis {
  width: calc(100% - 120px);
  height: calc(100vh - 200px);
  padding: 100px 60px;
  overflow-y: auto;
  scrollbar-color: #6cae75 #ffffff;
  scrollbar-width: thin;
}
#avis::-webkit-scrollbar {
  width: 5px;
  height: 100%;
  background-color: #ffffff;
}
#avis::-webkit-scrollbar-thumb {
  background-color: #6cae75;
}

#content-bloc-avis {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.bloc-avis {
  width: calc(33.3333333333% - 70px);
  margin: 50px 20px 30px;
  padding: 50px 15px 15px;
  background-color: #ffffff;
  border-radius: 6px;
  position: relative;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
  box-shadow: 0 3px 6px rgba(47, 72, 88, 0.2);
  filter: grayscale(100%);
}
.bloc-avis:hover {
  filter: grayscale(0);
}
.bloc-avis img {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
  position: absolute;
  top: -30px;
  left: calc(50% - 30px);
}
.bloc-avis em {
  display: block;
  width: calc(100% - 20px);
  margin: 0 10px 10px;
  text-align: center;
  position: relative;
}
.bloc-avis em::before {
  content: '"';
  color: #6cae75;
  font-family: "gotham-medium-italic", "arial", "helvetica", "sans-serif";
  font-size: 25px;
  position: absolute;
  top: -10px;
  left: -10px;
}
.bloc-avis em::after {
  content: '"';
  color: #6cae75;
  font-family: "gotham-medium-italic", "arial", "helvetica", "sans-serif";
  font-size: 25px;
  position: absolute;
  bottom: -15px;
  right: -10px;
}
.bloc-avis span {
  display: block;
  width: 100%;
  text-align: right;
  font-family: "gotham-medium", "arial", "helvetica", "sans-serif";
  font-size: 14px;
}

#mentions-legales {
  width: calc(100% - 120px);
  height: calc(100vh - 200px);
  padding: 100px 60px;
  overflow-y: auto;
  scrollbar-color: #6cae75 #ffffff;
  scrollbar-width: thin;
}
#mentions-legales::-webkit-scrollbar {
  width: 5px;
  height: 100%;
  background-color: #ffffff;
}
#mentions-legales::-webkit-scrollbar-thumb {
  background-color: #6cae75;
}
#mentions-legales > div {
  width: 100%;
  margin-bottom: 30px;
}
#mentions-legales > div a {
  color: #000000;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
}
#mentions-legales > div a:hover {
  color: #6cae75;
}

footer {
  display: block;
  width: 100%;
  background-color: #2F4858;
  padding: 6px 0 7px;
  text-align: center;
  position: fixed;
  bottom: 0;
}
footer p {
  margin-bottom: 0;
  color: #6cae75;
}
footer a {
  color: #6cae75;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
}
footer a:hover {
  color: #ffffff;
}

@media (max-width: 1150px) {
  .bloc-avis {
    width: calc(50% - 70px);
  }
  #choix-tarif {
    flex-wrap: wrap;
  }
  #choix-tarif > div:nth-child(1) {
    width: 100%;
  }
  #choix-tarif > div:nth-child(1) .content-multi-tarif {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  #choix-tarif > div:nth-child(1) .bloc-tarif {
    width: calc(33.3333333333% - 40px);
  }
  #choix-tarif > div:nth-child(2), #choix-tarif > div:nth-child(3) {
    width: calc(50% - 40px);
  }
}
@media (max-width: 900px) {
  header {
    padding: 10px 15px;
  }
  header > div {
    z-index: 10;
  }
  header::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #6cae75;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  }
  .sous-menu {
    display: block;
    margin: 10px 0 5px;
    position: inherit;
    z-index: 0;
  }
  nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    position: absolute;
    top: -400px;
    left: 0;
    z-index: 0;
    transition: all ease 0.8s;
    -webkit-transition: all ease 0.8s;
    -moz-transition: all ease 0.8s;
    -ms-transition: all ease 0.8s;
    -o-transition: all ease 0.8s;
  }
  #btn-menu-mobile {
    display: block;
  }
  #qui-suis-je {
    flex-wrap: wrap;
    height: auto;
  }
  #qui-suis-je div img {
    filter: grayscale(0);
  }
  #qui-suis-je div img:hover {
    filter: grayscale(100%);
  }
  #qui-suis-je > div:nth-child(1) {
    width: calc(50% - 25px);
    margin-top: 25px;
    margin-right: 50px;
    order: 2;
  }
  #qui-suis-je > div:nth-child(2) {
    width: calc(50% - 25px);
    margin-right: 0;
    order: 3;
  }
  #qui-suis-je > div:nth-child(3) {
    width: 100%;
    align-self: center;
    order: 1;
  }
  #domaines-intervention {
    height: auto;
  }
  #blocs-intervention {
    flex-wrap: wrap;
  }
  #blocs-intervention > div {
    width: calc(100% - 40px);
    margin-bottom: 20px;
  }
  .modules-intervention {
    flex-direction: column;
    align-items: center;
    height: auto;
    margin-bottom: 100px;
  }
  .modules-intervention > div:nth-child(1) {
    width: calc(100% - 120px);
    height: auto;
    padding: 100px 60px 60px;
  }
  .modules-intervention > div:nth-child(2) {
    width: 80%;
    height: 400px;
  }
  .modules-intervention > div:nth-child(2) img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    filter: grayscale(0);
  }
  .modules-intervention > div:nth-child(2) img:hover {
    filter: grayscale(100%);
  }
  #tarifs {
    flex-direction: column-reverse;
    align-items: center;
    height: auto;
    margin-bottom: 100px;
  }
  #tarifs > div:nth-child(1) {
    width: 80%;
    height: 400px;
  }
  #tarifs > div:nth-child(1) img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    filter: grayscale(0);
  }
  #tarifs > div:nth-child(1) img:hover {
    filter: grayscale(100%);
  }
  #tarifs > div:nth-child(2) {
    width: calc(100% - 120px);
    height: auto;
    padding: 100px 60px 60px;
  }
  #choix-tarif {
    flex-direction: column;
    align-items: center;
  }
  #choix-tarif .bloc-tarif {
    width: calc(100% - 40px);
  }
  #choix-tarif > div:nth-child(1) {
    width: calc(100% - 20px);
  }
  #choix-tarif > div:nth-child(1) .content-multi-tarif {
    flex-direction: column;
  }
  #choix-tarif > div:nth-child(1) .bloc-tarif {
    width: calc(100% - 40px);
  }
  #choix-tarif > div:nth-child(2), #choix-tarif > div:nth-child(3) {
    width: calc(100% - 20px);
  }
  #contact {
    flex-direction: column-reverse;
    align-items: center;
    height: auto;
    margin-bottom: 100px;
  }
  #contact > div:nth-child(1) {
    width: 80%;
    height: 250px;
  }
  #contact > div:nth-child(1) img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    -o-object-position: center;
       object-position: center;
    filter: grayscale(0);
  }
  #contact > div:nth-child(1) img:hover {
    filter: grayscale(100%);
  }
  #contact > div:nth-child(2) {
    width: calc(100% - 120px);
    height: auto;
    padding: 100px 60px 0;
  }
  #avis {
    height: auto;
    padding: 100px 60px;
  }
  #content-bloc-avis {
    flex-direction: column;
  }
  .bloc-avis {
    width: calc(100% - 40px);
    margin: 50px 0 30px;
    filter: grayscale(0);
  }
  .bloc-avis:hover {
    filter: grayscale(0);
  }
  #mentions-legales {
    height: auto;
  }
  footer {
    width: calc(100% - 30px);
    padding: 6px 15px 7px;
  }
}/*# sourceMappingURL=main.css.map */