:root,
body,
main {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: black;
}

h1,
h2,
h3,
h4 {
  font-family: "Geologica", sans-serif;
  font-weight: 500;
}

p,
a,
li {
  font-family: "Roboto", sans-serif;
}

section {
  margin: 30px 80px;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(0) scale(0.6);
  }
  60% {
    transform: translateX(-30%) scale(0.4);
  }
  100% {
    transform: translate(-3000px) scale(0.2);
    display: none !important;
  }
}
@keyframes slideLeftReverse {
  0% {
    transform: translate(-3000px) scale(0.2);
    display: none !important;
  }
  30% {
    transform: translateX(-30%) scale(0.4);
    display: flex;
  }
  60% {
    transform: translateX(0) scale(0.6);
    display: flex;
  }
  100% {
    transform: translateX(0);
    display: flex;
  }
}
@keyframes slideRight {
  0% {
    transform: scale(0.2) translateX(3000px);
    display: none !important;
  }
  30% {
    transform: scale(0.4) translateX(140px);
    display: flex !important;
  }
  60% {
    transform: scale(0.6) translateX(60px);
    display: flex !important;
  }
  100% {
    transform: scale(1) translateX(0);
    display: flex !important;
  }
}
@keyframes slideRightReverse {
  0% {
    transform: scale(1) translateX(0);
    display: flex !important;
  }
  30% {
    transform: scale(0.6) translateX(60px);
    display: flex !important;
  }
  60% {
    transform: scale(0.4) translateX(140px);
    display: flex !important;
  }
  100% {
    transform: scale(0.2) translateX(3000px);
    display: none !important;
  }
}
.header {
  position: fixed;
  top: 7%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 0 20px;
  height: 70px;
  box-sizing: border-box;
  border-radius: 20px;
  z-index: 100;
  box-shadow: 1px 1px 5px rgb(222, 222, 222);
}
@media (max-width: 768px) {
  .header {
    width: 90vw;
    box-shadow: 1px 1px 5px rgb(234, 234, 234);
  }
}
.header img {
  width: 60px;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .header img {
    width: 50px;
    margin-left: 0;
  }
}
.header_nav {
  width: auto;
  display: flex;
  justify-content: space-around;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .header_nav {
    width: auto;
  }
}
.header_nav a p {
  padding: 8px 25px;
}
@media (max-width: 1024px) {
  .header_nav a p {
    padding: 8px 15px;
    font-size: 14px;
  }
}
.header_nav-5 {
  display: flex;
  align-items: center;
}
.header_nav-5 p {
  color: #F6F6F6;
  background-color: rgb(221, 0, 0);
  border-radius: 10px;
  padding: 8px 15px;
  white-space: nowrap;
  transition: all 300ms ease-out;
}
@media (max-width: 768px) {
  .header_nav-5 p {
    font-size: 10px !important;
  }
}
.header_nav-5:hover p {
  filter: contrast(160%);
  transition: all 300ms ease-out;
}
.header_nav-1, .header_nav-2, .header_nav-3, .header_nav-4 {
  display: block;
  overflow: hidden;
}
@media (max-width: 768px) {
  .header_nav-1, .header_nav-2, .header_nav-3, .header_nav-4 {
    display: none;
  }
}
.header_nav-1 p, .header_nav-2 p, .header_nav-3 p, .header_nav-4 p {
  position: relative;
  transition: all 300ms ease-out;
}
.header_nav-1 p:hover, .header_nav-2 p:hover, .header_nav-3 p:hover, .header_nav-4 p:hover {
  color: #162B6F;
  font-weight: bold;
  transition: all 300ms ease-out;
}
.header_nav-1 p::before, .header_nav-2 p::before, .header_nav-3 p::before, .header_nav-4 p::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 0;
  transform: translate(-50%, -50%);
  background-color: rgb(221, 0, 0);
  transition: all 300ms ease-out;
}
.header_nav-1 p:hover::before, .header_nav-2 p:hover::before, .header_nav-3 p:hover::before, .header_nav-4 p:hover::before {
  height: 3px;
  transition: all 300ms ease-out;
}
.header_nav .active p {
  color: #162B6F;
  font-weight: bold;
  transition: all 300ms ease-out;
}
.header_nav .active p::before {
  height: 3px;
  transition: all 300ms ease-out;
}
.header_nav-mobile {
  display: none;
}
@media (max-width: 768px) {
  .header_nav-mobile {
    display: block;
  }
}
.header__nav-mobile {
  background-color: #F6F6F6;
  position: fixed;
  color: black;
  width: 90vw;
  height: auto;
  top: -2000%;
  left: 50%;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  flex-direction: column;
  justify-content: space-around;
  align-items: start;
  padding: 30px;
  box-sizing: border-box;
  z-index: -1;
  display: none;
}
@media (max-width: 768px) {
  .header__nav-mobile {
    display: flex;
  }
}
.header__nav-mobile i {
  margin-right: 10px;
  color: #162B6F;
}
.header__nav-mobile a {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
.header__nav-mobile .active p {
  position: relative;
  color: #162B6F !important;
  font-weight: bold !important;
  transition: all 300ms ease-out !important;
}
.header__nav-mobile .active i {
  font-weight: bold;
}
.header__nav-mobile .active p::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 60px;
  transform: translate(-50%, -50%);
  background-color: rgb(221, 0, 0);
  transition: all 300ms ease-out;
  height: 3px !important;
  transition: all 300ms ease-out !important;
}

.atelier {
  width: 100vw;
  height: 105vh;
  background-image: url("../../../assets/image/images/accueil_ad.png");
  background-size: cover;
  background-position: left;
  margin: -20px 0 0 0;
  color: #F6F6F6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .atelier {
    background-position: center;
    background-size: 230% 100%;
  }
}
.atelier_title {
  font-size: 120px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .atelier_title {
    font-size: 70px;
    padding: 20px;
    text-align: center;
  }
}
.atelier_txt {
  font-size: 20px;
}
@media (max-width: 768px) {
  .atelier_txt {
    padding: 20px 40px;
    text-align: center;
  }
}
.atelier_link {
  color: white;
  border: 4px solid #F6F6F6;
  font-weight: normal;
  padding: 10px 20px;
  margin-top: 30px;
  transition: all 300ms ease-out;
}
.atelier_link:hover {
  color: white;
  font-weight: bold;
  border: 4px solid rgb(221, 0, 0);
  background-color: rgb(221, 0, 0);
  padding: 10px 25px;
  margin-top: 30px;
  transition: all 300ms ease-out;
}

.prestation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .prestation {
    margin: 20px 40px;
  }
}
.prestation_title {
  font-size: 40px;
}
.prestation_link {
  display: flex;
  justify-content: space-evenly;
  margin-top: 150px;
  height: 280px;
}
@media (max-width: 768px) {
  .prestation_link {
    flex-direction: column;
    margin-top: 30px;
    height: auto;
  }
}
.prestation_link .card {
  border: 4px solid #162B6F;
  width: 30%;
}
@media (max-width: 768px) {
  .prestation_link .card {
    width: 100%;
    margin: 60px auto;
  }
}
.prestation_link .card a {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transition: all 300ms ease-out;
}
.prestation_link .card a .prestaIllustration {
  width: 80%;
  margin-top: -80px;
  transition: all 300ms ease-out;
}
.prestation_link .card a .prestDescription {
  margin: 10px 15px 20px 15px;
}
.prestation_link .card a .card_link {
  background-color: #162B6F;
  width: 100%;
  margin: 0;
  padding: 14px 0;
  color: #F6F6F6;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prestation_link .card a .card_link img {
  width: 10px;
  margin-left: 10px;
  transition: all 300ms ease-out;
}
.prestation_link .card a .card_link:hover img {
  margin-left: 20px;
  transition: all 300ms ease-out;
}
.prestation_link .card a:hover {
  filter: contrast(180%);
  background: #162B6F;
  color: #F6F6F6;
  transition: all 300ms ease-out;
}
.prestation_link .card a:hover .prestaIllustration {
  margin-top: -100px;
  transition: all 300ms ease-out;
}

.savoir {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .savoir {
    margin: 20px 40px;
  }
}
.savoir h2 {
  font-size: 40px;
}
@media (max-width: 768px) {
  .savoir h2 {
    margin-top: 0;
  }
}
.savoir .savoir_content {
  width: 100%;
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .savoir .savoir_content {
    flex-direction: column;
  }
}
.savoir .savoir_content .illustration {
  width: 45%;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .savoir .savoir_content .illustration {
    width: 100%;
  }
}
.savoir .savoir_content .illustration img {
  width: 100%;
}
.savoir .savoir_content .js-collapse1 {
  width: 45%;
}
@media (max-width: 768px) {
  .savoir .savoir_content .js-collapse1 {
    width: 100%;
    margin-top: 15px;
  }
}
.savoir .savoir_content .js-collapse1 .collapse {
  padding-top: 0;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
}
.savoir .savoir_content .js-collapse1 .collapse_title {
  color: black;
  background-color: white;
  border-bottom: 2px solid #162B6F;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 10px 0;
  position: relative;
  z-index: 2;
}
.savoir .savoir_content .js-collapse1 .collapse_title img {
  width: 6px;
  transform: rotate(90deg);
  background-color: rgb(221, 0, 0);
  border-radius: 50%;
  padding: 8px 10px;
}
@media (max-width: 768px) {
  .savoir .savoir_content .js-collapse1 .collapse_title img {
    width: 4px;
  }
}
.savoir .savoir_content .js-collapse1 .collapse_title h3 {
  margin: 0;
  font-size: 12px;
}
.savoir .savoir_content .js-collapse1 .collapse_title:hover {
  filter: contrast(180%);
  cursor: pointer;
  transition: all 300ms ease-out;
}
.savoir .savoir_content .js-collapse1 .collapse_title:hover img {
  width: 6px;
  transform: rotate(-90deg);
  transition: all 300ms ease-out;
}
@media (max-width: 768px) {
  .savoir .savoir_content .js-collapse1 .collapse_title:hover img {
    width: 4px;
  }
}
.savoir .savoir_content .js-collapse1 .collapse_txt {
  background-color: rgb(233, 233, 233);
  margin: -15px 0 10px 0;
  padding: 15px 20px 10px 20px;
  transform: translateY(-300px);
  height: 0;
  font-size: 11px;
  display: none;
}
.savoir .savoir_content .js-collapse2 {
  width: 45%;
}
@media (max-width: 768px) {
  .savoir .savoir_content .js-collapse2 {
    width: 100%;
    margin-top: 15px;
  }
}
.savoir .savoir_content .js-collapse2 .collapse {
  padding-top: 0;
  overflow: hidden;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.savoir .savoir_content .js-collapse2 .collapse_title {
  color: black;
  background-color: white;
  border-bottom: 2px solid #162B6F;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 10px 0;
  position: relative;
  z-index: 2;
}
.savoir .savoir_content .js-collapse2 .collapse_title img {
  width: 6px;
  transform: rotate(90deg);
  transition: all 300ms ease-out;
  background-color: rgb(221, 0, 0);
  border-radius: 50%;
  padding: 8px 10px;
}
@media (max-width: 768px) {
  .savoir .savoir_content .js-collapse2 .collapse_title img {
    width: 4px;
  }
}
.savoir .savoir_content .js-collapse2 .collapse_title h3 {
  margin: 0;
  font-size: 12px;
}
.savoir .savoir_content .js-collapse2 .collapse_title:hover {
  cursor: pointer;
  filter: contrast(180%);
  transition: all 300ms ease-out;
}
.savoir .savoir_content .js-collapse2 .collapse_title:hover img {
  width: 6px;
  transform: rotate(-90deg);
  transition: all 300ms ease-out;
}
@media (max-width: 768px) {
  .savoir .savoir_content .js-collapse2 .collapse_title:hover img {
    width: 4px;
  }
}
.savoir .savoir_content .js-collapse2 .collapse_txt {
  background-color: rgb(233, 233, 233);
  margin: -15px 0 10px 0;
  padding: 15px 20px 10px 20px;
  transform: translateY(-300px);
  height: 0;
  font-size: 11px;
  display: none;
}
.savoir .savoir_content-2 {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .savoir .savoir_content-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.realisation {
  margin: 30px 20px 70px 20px;
  position: relative;
}
.realisation h2 {
  position: absolute;
  color: #F6F6F6;
  font-size: 40px;
  top: 5px;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .realisation h2 {
    top: -5px;
    font-size: 24px;
    text-shadow: 2px 2px 8px black;
  }
}
.realisation h2::before {
  content: "";
  width: 115%;
  height: 50%;
  position: absolute;
  z-index: -1;
  top: 35px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #162B6F;
}
@media (max-width: 768px) {
  .realisation h2::before {
    top: 25px;
  }
}
.realisation .carrousel_img {
  width: 85%;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  height: 400px;
  object-fit: contain;
}
.realisation .chev-right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .realisation .chev-right {
    width: 20px;
    right: -15px;
  }
}
.realisation .chev-left {
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .realisation .chev-left {
    width: 20px;
    left: 0%;
  }
}
.realisation .dot {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .realisation .dot {
    bottom: 0;
  }
}
.realisation .dot i {
  margin: 0 10px;
}

.contact {
  margin: 0;
  padding: 140px 80px;
  background-image: url("../../image/images/contact.png");
  background-size: cover;
  color: #F6F6F6;
  display: flex;
  position: relative;
}
@media (max-width: 768px) {
  .contact {
    flex-direction: column;
    padding: 40px 20px 200px 20px;
  }
}
.contact_txt {
  width: 60%;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .contact_txt {
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
.contact_txt h2 {
  font-size: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .contact_txt h2 {
    font-size: 46px;
  }
}
.contact_txt h2::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 60%;
  top: 50%;
  background: rgb(221, 0, 0);
  z-index: -1;
}
@media (max-width: 768px) {
  .contact_txt h2::before {
    width: 200px;
  }
}
.contact_txt-link {
  margin: 40px 0;
}
@media (max-width: 768px) {
  .contact_txt-link {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    margin: 0;
    height: auto;
  }
}
.contact_txt-link p {
  display: none;
}
@media (max-width: 768px) {
  .contact_txt-link p {
    display: block;
    margin: 15px 0;
    padding: 20px 0;
  }
}
.contact_txt-link a {
  margin: 0 40px 40px 0;
}
@media (max-width: 768px) {
  .contact_txt-link a {
    margin: 0;
  }
}
.contact_txt-link .mail-link {
  color: white;
  border: 4px solid #F6F6F6;
  font-weight: normal;
  padding: 10px 20px;
  transition: all 300ms ease-out;
}
.contact_txt-link .mail-link:hover {
  color: white;
  font-weight: bold;
  border: 4px solid rgb(221, 0, 0);
  background-color: rgb(221, 0, 0);
  padding: 10px 25px;
  transition: all 300ms ease-out;
}
.contact_txt-link .tel-link {
  color: white;
  font-weight: bold;
  border: 4px solid rgb(221, 0, 0);
  background-color: rgb(221, 0, 0);
  padding: 10px 25px;
  transition: all 300ms ease-out;
}
.contact_txt-link .tel-link:hover {
  color: white;
  border: 4px solid #F6F6F6;
  font-weight: normal;
  padding: 10px 20px;
  transition: all 300ms ease-out;
  background-color: transparent;
}
.contact_form {
  width: 40%;
}
@media (max-width: 768px) {
  .contact_form {
    width: 100%;
    margin: 40px 0;
    display: flex;
  }
}
.contact_form .form {
  width: 90%;
  background-color: rgba(255, 255, 255, 0.4470588235);
  padding: 20px;
  border-radius: 15px;
}
.contact_form .form_div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.contact_form .form_div i {
  width: 10%;
  background-color: #F6F6F6;
  color: #162B6F;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 5px;
  font-size: 16px;
  height: 20px;
  margin: 0 20px 0 0;
}
@media (max-width: 768px) {
  .contact_form .form_div i {
    width: 30px;
  }
}
.contact_form .form_div input {
  width: 80%;
  height: 40px;
  margin: 10px 0;
  background-color: #F6F6F6;
  border: none;
  border-radius: 10px;
  padding: 0 20px;
}
.contact_form .form .form_divarea {
  display: flex;
  justify-content: space-between;
}
.contact_form .form .form_divarea i {
  width: 10%;
  background-color: #F6F6F6;
  color: #162B6F;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 5px;
  font-size: 16px;
  height: 20px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .contact_form .form .form_divarea i {
    width: 30px;
  }
}
.contact_form .form .form_divarea textarea {
  width: 80%;
  height: 150px;
  padding: 10px 20px;
  margin: 10px 0 10px 20px;
  border: none;
  border-radius: 10px;
  background-color: #F6F6F6;
}
.contact_form .form button[type=submit] {
  cursor: pointer;
  color: white;
  font-weight: bold;
  border: 4px solid rgb(221, 0, 0);
  background-color: rgb(221, 0, 0);
  padding: 10px 25px;
  transition: all 300ms ease-out;
  display: block;
  margin: 20px auto 40px auto;
  transition: all 300ms ease-out;
}
.contact_form .form button[type=submit]:hover {
  filter: brightness(1.4);
  border-radius: 5px;
  transition: all 300ms ease-out;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 5;
}
@media (max-width: 768px) {
  .modal-content2, .modal-content1 {
    width: 70vw !important;
  }
}
.modal-content2 .close, .modal-content1 .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 40px;
  cursor: pointer;
}
.modal-content2 .step, .modal-content1 .step {
  width: 70%;
  height: 80px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}
.modal-content1 {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  width: 50vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  background: linear-gradient(315deg, #101010, #001376);
  color: white;
  padding: 20px 40px 100px 40px;
  height: 45vh;
}
.modal-content1 textarea {
  height: 35%;
  border: none;
  padding: 20px;
  border-radius: 10px;
  outline-offset: none;
  box-shadow: 2px 2px 10px rgb(224, 224, 224);
}
.modal-content1 button {
  width: 30%;
  position: absolute;
  right: 40px;
  bottom: 30px;
  border: none;
  color: #F6F6F6;
  background-color: rgb(1, 173, 239);
  border-radius: 10px;
  padding: 8px 20px;
  white-space: nowrap;
  font-size: 16px;
  transition: all 300ms ease-out;
}
@media (max-width: 768px) {
  .modal-content1 button {
    font-size: 12px !important;
  }
}
.modal-content1 button:hover {
  cursor: pointer;
  filter: contrast(180%);
  transition: all 300ms ease-out;
}
.modal-content2 {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  width: 50vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  background: linear-gradient(315deg, #101010, #001376);
  color: white;
  padding: 20px 40px 40px 40px;
  height: auto;
  transform: scale(0.2) translateX(3000px);
  display: none;
}
.modal-content2 .form_input {
  height: 40%;
}
.modal-content2 .form_input .form_div {
  display: flex;
  align-items: center;
}
.modal-content2 .form_input .form_div input {
  width: 75%;
  height: 40px;
  border: none;
  border-radius: 5px;
  padding: 0 20px;
  margin: 10px;
}
.modal-content2 .form_input .form_div i {
  width: 10%;
}
.modal-content2 .form_button {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  width: 100%;
}
.modal-content2 .form_button button {
  width: 45%;
  height: 40px;
  border: none;
  color: #F6F6F6;
  border-radius: 10px;
  padding: 8px 15px;
  white-space: nowrap;
  font-size: 16px;
  cursor: pointer;
  transition: all 300ms ease-out;
}
@media (max-width: 768px) {
  .modal-content2 .form_button button {
    right: 50px;
    width: 45%;
    font-size: 12px;
  }
}
@media (min-width: 1024px) {
  .modal-content2 .form_button button {
    max-width: 250px;
  }
}
.modal-content2 .form_button button[type=submit] {
  background-color: rgb(1, 173, 239);
}
.modal-content2 .form_button .precedent {
  background-color: rgb(160, 160, 160);
}
.modal-content2 .form_button button:hover {
  cursor: pointer;
  filter: contrast(180%);
  transition: all 300ms ease-out;
}

.google-map {
  border: 0;
  display: block;
  margin: 50px auto;
  border-radius: 15px;
  width: 90%;
  height: 350px;
}
@media (max-width: 768px) {
  .google-map {
    height: 250px;
  }
}

.footer {
  background-color: rgb(1, 2, 5);
  color: #EAEAEA !important;
  padding: 60px 50px 40px 80px;
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 60px 30px;
  }
}
.footer_content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 520px) {
  .footer_content {
    flex-direction: column;
  }
}
.footer_content div {
  width: 30%;
}
@media (max-width: 520px) {
  .footer_content div {
    width: 100%;
    padding-left: 20px;
  }
}
.footer_content div h4 {
  margin-top: 0;
}
.footer_content-info .logo {
  width: 25%;
}
.footer_content-horaire ul {
  padding-left: 0;
}
.footer_content-horaire ul li {
  list-style-type: none;
  margin: 5px;
}
.footer_content-mentions .reseau {
  margin-top: 25px !important;
}
.footer_content-mentions a {
  color: #F6F6F6;
  display: block;
  margin: 8px 0;
  text-decoration: none;
  transition: all 300ms ease-out;
}
.footer_content-mentions a:hover {
  text-decoration: underline;
  transition: all 300ms ease-out;
}
.footer_content-mentions a img {
  width: 10%;
  transition: all 300ms ease-out;
}
.footer_content-mentions a:hover img {
  filter: brightness(1.7);
  transition: all 300ms ease-out;
}
.footer_credit {
  margin: 50px auto 10px auto;
  text-align: center;
}
.footer_credit p {
  font-size: 14px;
}
.footer_credit p a {
  margin-top: 10px;
  text-decoration: underline;
  color: #F6F6F6;
  transition: all 300ms ease-out;
}
.footer_credit p a:hover {
  font-weight: bold;
  transition: all 300ms ease-out;
}
@media (max-width: 768px) {
  .footer_credit p {
    font-size: 12px;
  }
}

.body_histoire {
  background: linear-gradient(35deg, black, black, #162B6F, black, black);
}
.body_histoire h2 {
  color: #EAEAEA !important;
}
.body_histoire .histoire_card p {
  color: white !important;
}

.histoire {
  margin: 150px 40px 50px 40px;
}
.histoire_title {
  background-image: url("../../image/images/Histoire.png");
  border-radius: 20px;
  color: white;
  font-size: 80px;
  text-align: center;
  text-shadow: 2px 2px 3px black;
  padding: 50px 20px;
}
@media (max-width: 768px) {
  .histoire_title {
    padding: 30px 10px;
    font-size: 40px;
    background-position: center;
    background-size: cover;
  }
}
.histoire_card {
  display: flex;
}
@media (max-width: 768px) {
  .histoire_card {
    flex-direction: column;
  }
}
.histoire_card div {
  width: 50%;
}
@media (max-width: 768px) {
  .histoire_card div {
    width: 100%;
  }
}
.histoire_card-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}
.histoire_card-txt .story_title {
  color: #162B6F;
}
.histoire_card-img img {
  width: 100%;
}
.histoire_logo {
  width: 70%;
  display: block;
  margin: 0 auto;
}
.histoire_card.card_reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .histoire_card.card_reverse {
    flex-direction: column;
  }
}
.histoire_card.card_reverse div {
  width: 50%;
}
@media (max-width: 768px) {
  .histoire_card.card_reverse div {
    width: 100%;
  }
}
.histoire_card.card_reverse .histoire_card-txt {
  padding-left: 40px;
}
@media (max-width: 768px) {
  .histoire_card.card_reverse .histoire_card-txt {
    padding-left: 0;
  }
}
.histoire_card.card_reverse .histoire_card-img img {
  width: 70%;
}
@media (max-width: 768px) {
  .histoire_card.card_reverse .histoire_card-img img {
    width: 100%;
  }
}

.js-prestation {
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .js-prestation h1 {
    font-size: 28px;
  }
}
.js-prestation_content {
  width: 100%;
  margin: 40px auto;
  height: 350px;
  position: relative;
}
.js-prestation_content .carrousel-img {
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .js-prestation_content .carrousel-img {
    width: 80%;
  }
}
.js-prestation_content .arrowLeft,
.js-prestation_content .arrowRight {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.js-prestation_content .arrowLeft {
  left: 40px;
}
@media (max-width: 768px) {
  .js-prestation_content .arrowLeft {
    width: 20px;
    left: 15px;
  }
}
.js-prestation_content .arrowRight {
  right: 0px;
}
@media (max-width: 768px) {
  .js-prestation_content .arrowRight {
    width: 20px;
    right: -5px;
  }
}
.js-prestation_content .nbSlide {
  font-style: italic;
}

.preuve {
  display: flex;
  justify-content: space-around;
  margin: 80px auto 30px auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .preuve {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 20px;
  }
}
.preuve_card {
  width: 20%;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .preuve_card {
    width: 50%;
    padding: 0 5px;
  }
}
.preuve_card img {
  width: 30%;
}
@media (max-width: 768px) {
  .preuve_card img {
    width: 60px;
  }
}
.preuve_card h3 {
  font-size: 15px;
}
@media (max-width: 768px) {
  .preuve_card p {
    font-size: 12px;
  }
}

.mention_title {
  padding: 150px 150px 20px 150px;
  color: #162B6F;
  font-weight: 900;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .mention_title {
    padding: 150px 20px 20px 20px;
    font-size: 30px;
  }
}

main .mentions {
  padding: 0 150px 80px 150px;
}
@media screen and (max-width: 768px) {
  main .mentions {
    padding: 0 20px 50px 20px;
  }
}
main .mentions h2 {
  color: #162B6F;
}
main .mentions p {
  margin: 35px auto;
  color: black;
}
main .mentions ul {
  color: black;
}

.forTermesPages {
  display: none;
}
@media screen and (max-width: 768px) {
  .forTermesPages {
    display: flex !important;
    width: 45px !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .forTermesPages i {
    font-size: 24px !important;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .forTermesPages p {
    margin: -4px 0 0 0 !important;
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .forTermesPages::before {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .forTermesPages::after {
    display: none !important;
  }
}

.err404 {
  text-align: center;
}
@media (max-width: 768px) {
  .err404 {
    margin: 0 20px;
  }
}

.error_title {
  margin: 150px 0 40px 0;
}

.error_img {
  width: 80%;
  max-width: 500px;
}/*# sourceMappingURL=style.css.map */