@font-face {
  font-family: "Satoshi-Variable";
  src: url("../fonts/Satoshi-Variable.woff2") format("woff2"), url("../fonts/Satoshi-Variable.woff") format("woff"), url("../fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

*,
html {
  padding: 0;
  margin: 0;
  font-family: "Satoshi-Variable", sans-serif;
  background-color: #F1F1F1;
}

@media screen and (max-width: 576px) {
  header {
    width: 100%;
  }
}

.header {
  display: flex;
  justify-content: space-around;
  margin-bottom: 4rem;
  position: fixed;
  width: 100%;
  height: 2.5rem;
  padding: 1rem;
  top: 0%;
  left: 0%;
  background-color: #F1F1F1;
  z-index: 100;
}

@media screen and (max-width: 576px) {
  .header {
    position: absolute;
    padding: 0;
    margin-top: 1rem;
    height: 3rem;
  }
}

.header img {
  width: 10rem;
  height: fit-content;
  background-color: transparent;
}

@media screen and (max-width: 576px) {
  .header img {
    width: 50%;
    height: 2.1rem;
  }
}

.header nav {
  display: flex;
  gap: 2rem;
  background-color: transparent;
}

@media screen and (max-width: 576px) {
  .header nav {
    position: fixed;
    top: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
    width: 100%;
    height: 100vh;
    z-index: 99;
    left: -100%;
    background-color: #F1F1F1;
  }
}

.header nav nav.active {
  overflow: hidden;
}

.header a {
  text-decoration: none;
  font-weight: 500;
  color: #21209C;
  background-color: transparent;
  font-size: 1.1rem;
}

@media screen and (max-width: 576px) {
  .header a {
    font-size: 2rem;
  }
}

nav.active {
  left: 0%;
  transition: 0.3s;
}

@media screen and (max-width: 576px) {
  .burger--button {
    background-color: transparent;
    position: fixed;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    top: 1rem;
    left: 1rem;
    z-index: 101;
  }



  .burger--button .line {
    width: 2rem;
    height: 0.2rem;
    background-color: #F4BD14;
    position: absolute;
    transition: 0.3s;
  }

  .burger--button .line2 {
    top: 30%;
  }

  .burger--button .line3 {
    top: 60%;
  }

  .burger--button .line1.active {
    transform: rotate(45deg);
    top: 30%;
  }

  .burger--button .line2.active {
    transform: rotate(225deg);
  }

  .burger--button .line3.active {
    transform: rotate(-45deg);
    top: 30%;
  }
}

.home--page {
  margin-top: 5rem;
}

.home--page a {
  border-radius: 5px;
  border: solid 1px #F1F1F1;
  color: #F1F1F1;
  padding: 1rem;
  text-decoration: none;
  font-size: 1.1rem;
}

.home--page a:hover {
  background-color: #F1F1F1;
  color: #21209C;
}

.home--page__picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.home--page__picture h1 {
  color: #F1F1F1;
  position: absolute;
  line-height: 3rem;
  left: 20%;
  bottom: 70%;
  font-size: 2rem;
  background-color: transparent;
}

.home--page__picture h2 {
  color: #F1F1F1;
  position: absolute;
  line-height: 3rem;
  left: 20%;
  bottom: 60%;
  font-size: 2rem;
  background-color: transparent;
}

@media screen and (max-width: 576px) {
  .home--page__picture h1 {
    position: relative;
    font-size: 1.1rem;
    bottom: 50%;
    left: 5%;
    color: #131313;
    line-height: 1rem;
  }

  .home--page__picture h2 {
    position: relative;
    font-size: 1.1rem;
    line-height: 1rem;
    bottom: 20%;
    left: 5%;
    color: #131313;
  }

  .home--page__picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    position: relative;
    gap: 0.5rem;
  }



}

.home--page__picture a {
  background-color: transparent;
  position: absolute;
  left: 20%;
  bottom: 20%;
  border-radius: 5px;
  border: solid 1px #F1F1F1;
  color: #F1F1F1;
  padding: 1rem;
  text-decoration: none;
}

@media screen and (max-width: 576px) {
  .home--page__picture a {
    position: relative;
    bottom: none;
    left: none;
    color: #21209C;
    border: solid 1px #21209C;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.home--page__picture a:hover {
  background-color: #F1F1F1;
  color: #21209C;
  transition: 0.3s;
}

.home--page__picture img {
  width: 100%;
  aspect-ratio: 3;
  object-fit: cover;
}

.home--page__about {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 10rem 0rem;
  gap: 10rem;
  width: 100%;
}

@media screen and (max-width: 576px) {
  .home--page__about {
    flex-direction: column;
    align-items: center;
    align-items: center;
  }
}

.home--page__about h2 {
  width: 30rem;
  color: #21209C;
  text-align: justify;
}

@media screen and (max-width: 576px) {
  .home--page__about h2 {
    width: 80%;
    font-size: 1.2rem;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .home--page__about div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.home--page__about h3 {
  color: #F4BD14;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.home--page__about p {
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
  line-height: 1.6rem;
  width: 25rem;
  gap: 2rem;
  border-bottom: 10px;
}

.home--page__about div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media screen and (max-width: 576px) {
  .home--page__about p {
    width: 90%;
  }
}

.home--page__about a {
  margin: auto;
  color: #21209C;
  border-color: #21209C;
}

.home--page__about a:hover {
  background-color: #1A519F;
  color: #F1F1F1;
  transition: 0.3s;
}

.home--page__services {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 45rem;
}

@media screen and (max-width: 576px) {
  .home--page__services {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.home--page__services h3 {
  color: #21209C;
  background-color: transparent;
}

.home--page__services h2 {
  background-color: transparent;
  font-size: 1.3rem;
}

.home--page__services .cards {
  display: flex;
  justify-content: center;
  min-width: 80%;
  align-items: center;
}

@media screen and (max-width: 576px) {
  .home--page__services .cards {
    width: 90%;
  }
}

.home--page__services .cards--container {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 10rem;
}

@media screen and (max-width: 576px) {
  .home--page__services .cards--container {
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
  }
}

.home--page__services .cards--container .card {
  position: relative;
  width: 25rem;
}

@media screen and (max-width: 576px) {
  .home--page__services .cards--container .card {
    width: auto;
  }
}

.home--page__services .cards--container .card img {
  width: 100%;
  border-radius: 1rem;
  aspect-ratio: 1;
  object-fit: cover;
}

.home--page__services .cards--container .card .content {
  position: absolute;
  width: 70%;
  height: 13rem;
  transform: translateX(-50%);
  top: 75%;
  left: 50%;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #e9e9e9;
}

.home--page__services .cards--container .card .content h4 {

  background-color: #e9e9e9;
}


@media screen and (max-width: 576px) {
  .home--page__services .cards--container .card .content {
    transform: translate(-50%, -50%);
    top: 50%;
    height: auto;
  }
}

.container {
  min-height: 100vh;
  padding: 10rem;
}

.message {
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.home--page__services .cards--container .card p {
  background-color: transparent;
}

.home--page__services .cards--container .card a {
  background-color: transparent;
  color: #21209C;
  text-decoration: solid;
  border: none;
  border-bottom: solid 2px #21209C;
  padding: 0;
  border-radius: 0;
  text-align: center;
}

button {
  border-radius: 0.5rem;
  text-decoration: none;
  height: 2rem;
  background-color: #F4BD14;
  border: none;
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F1F1F1;
  padding: 2rem 2rem;
  font-size: 1.2rem;
}

button:hover {
  cursor: pointer;
}

.services--page {
  margin-top: 14rem;
  margin-bottom: 14rem;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services--page__infos {
  width: 40%;
  margin: auto;
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (max-width: 576px) {
  .services--page__infos {
    width: auto;
  }
}

.services--page__infos h3 {
  color: #21209C;
}

.services--page__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 5rem;
  grid-row-gap: 3rem;
  padding-top: 10rem;
}

@media screen and (max-width: 576px) {
  .services--page__cards {
    display: flex;
    flex-direction: column;
  }
}

.services--page__cards .card {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 1rem;
  text-align: justify;
  width: 320px;
}

.services--page__cards .card h2 {
  color: #21209C;
}

.services--page__cards .card img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 1rem;
}

.services--page__cards .card a {
  color: #21209C;
}

.services--page__cards .card .button--more {
  border-radius: 5px;
  border: solid 1px #F1F1F1;
  color: #F1F1F1;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 1.1rem;
  color: #21209C;
  border-color: #21209C;
}

.services--page__cards .card .button--more:hover {
  background-color: #1A519F;
  color: #F1F1F1;
  transition: 0.3s;
}

.services--page__contact {
  background-color: #F4BD14;
  color: #F1F1F1;
  width: 50%;
  padding: 5rem 8rem;
  font-weight: 500;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 5rem;
}

.services--page__contact h2 {
  color: white;
  background-color: #F4BD14;
}

@media screen and (max-width: 576px) {
  .services--page__contact {
    padding: 2rem 2rem;
    width: 75%;
  }
}

.services--page__contact h3 {
  font-size: 2.5rem;
  background-color: transparent;
}

@media screen and (max-width: 576px) {
  .services--page__contact h3 {
    font-size: 1.4rem;
  }
}

.services--page__contact p {
  background-color: transparent;
  text-align: justify;
  font-size: 1.2rem;
  color: white;


}

.services--page__contact a {
  background-color: transparent;
  text-decoration: none;
  color: white;
  border: solid 2px white;
  padding: 1rem 2rem;
  border-radius: 1rem;
}

.services--page__contact button {
  background-color: #F1F1F1;
  border: solid 1px #F4BD14;
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  color: #F4BD14;
  font-size: 1.3rem;
  height: auto;
}

.services--page__contact button:hover {
  transition: 0.3s;
  background-color: #F4BD14;
  color: #F1F1F1;
  border: solid 1px #F1F1F1;
  cursor: pointer;
}

.contact--infos {
  display: flex;
  flex-direction: column;
  border: solid 3px #131313;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  gap: 1rem;
  position: sticky;
  top: 75px;
}

.contact--infos span {
  display: flex;
  align-items: center;
  justify-self: center;
}

.contact--infos i {
  font-size: 1.4rem;
  background-color: #F4BD14;
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact--infos a {
  text-decoration: none;
  color: #21209C;
  border-bottom: solid 2px #F4BD14;
}

.service--card {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

h4 {
  background-color: red;
}

.service--card__title {
  margin-top: 2.5rem;
  background-color: #F4BD14;
  height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service--card__title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: opacity(0.2);
}

.service--card__title h1 {
  font-size: 3rem;
  background-color: transparent;
  z-index: 2;
  color: #F1F1F1;
}

.service--card__more {
  display: flex;
  margin-left: 10%;
  gap: 5rem;
  position: relative;
}

@media screen and (max-width: 576px) {
  .service--card__more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }

  .service--card__title {
    padding: 1rem;
  }

  .service--card__title h1 {
    font-size: 2rem;
  }
}

.service--card .service--description {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: justify;
}

@media screen and (max-width: 576px) {
  .service--card .service--description {
    width: 80%;
    display: flex;
    flex-direction: column;
  }
}

.service--card .service--description img {
  width: 100%;
  aspect-ratio: 2;
  object-fit: cover;
  border-radius: 1rem;
}

.services--other {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e4e4e4;
  padding: 3rem 0;
}

.services--other a {
  background-color: transparent;
  text-decoration: none;
  border-color: #21209C;
}

.services--other h2 {
  font-size: 1rem;
  color: #21209C;
  background-color: transparent;
  border-bottom: solid 2px #21209C;
}

.services--other h3 {
  background-color: transparent;
  color: #21209C;
  margin: auto;
  font-size: 2.5rem;
}

.services--other i {
  font-size: 3rem;
  background-color: #F1F1F1;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.services--other p {
  text-align: justify;
  background-color: transparent;
}

.services--other__exemple {
  display: flex;
  width: 60%;
  gap: 5rem;
  background-color: transparent;
  margin-top: 2rem;
}

@media screen and (max-width: 576px) {
  .services--other__exemple {
    display: flex;
    flex-direction: column;
  }
}

.services--other__exemple .card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: start;
  gap: 1rem;
  background-color: transparent;
}

.contact--page {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.contact--page .map {
  height: 500px;
  position: relative;
}

@media screen and (max-width: 576px) {
  .contact--page .map {
    height: 200px;
  }
}

.contact--page .map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact--page .map--border__bottom {
  position: absolute;
  transform: translateX(-50%);
  bottom: 0%;
  left: 50%;
  width: 100%;
  height: 10rem;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
}

@media screen and (max-width: 576px) {
  .contact--page .map--border__bottom {
    display: none;
  }
}

.contact--page__form {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 6rem;
}

@media screen and (max-width: 576px) {
  .contact--page__form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.contact--page__form .left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media screen and (max-width: 576px) {
  .contact--page__form .left {
    justify-content: center;
    align-items: center;
    width: 90%;
  }
}

.contact--page__form .left h2 {
  font-size: 2rem;
}

.contact--page__form .left span {
  display: flex;
  align-items: center;
  justify-self: center;
}

.contact--page__form .left i {
  font-size: 1.4rem;
  background-color: #F4BD14;
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

@media screen and (max-width: 576px) {
  .contact--page__form .right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}

.contact--page__form .right form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  background-color: #e4e4e4;
  padding: 2rem;
  border-radius: 1rem;
  font-size: 2rem;
}

.contact--page__form .right form h1 {
  background-color: transparent;
}

.contact--page__form .right form input {
  border: none;
  background-color: transparent;
  border-bottom: solid 1px #131313;
  padding: 1rem 1rem 0.2rem 0.2rem;
}

.contact--page__form .right form input:focus {
  outline-color: #F4BD14;
}

.contact--page__form .right form textarea {
  height: 5rem;
  background-color: transparent;
  border: none;
  border-bottom: solid 1px #131313;
  padding: 0.2rem 0.2rem 0.2rem 0.2rem;
}

.contact--page__form .right form textarea:focus {
  outline-color: #F4BD14;
}

.contact--page__form .right form span {
  background-color: transparent;
  width: 100%;
  display: flex;
  gap: 1rem;
}

.contact--page__form .right form span input {
  width: 50%;
}

.contact--page__form .right form button {
  border-radius: 0.5rem;
  text-decoration: none;
  height: 2rem;
  background-color: #F4BD14;
  border: none;
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact--page__form .right form button:hover {
  cursor: pointer;
}

.contact--page__form .right form button input {
  color: #F1F1F1;
  border: none;
  padding: 0rem;
  font-size: 1.2rem;
}

.contact--page__form .right form button input:hover {
  cursor: pointer;
}

footer {
  background-color: #131313;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  background-color: transparent;
  color: #F1F1F1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 60%;
  height: 400px;
  gap: 5rem;
}

@media screen and (max-width: 576px) {
  .footer {
    flex-direction: column;
    height: auto;
    max-width: 80%;
    margin-bottom: 5rem;
    margin-top: 5rem;
  }
}

.footer--services {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  width: 33%;
  gap: 0.7rem;
}

@media screen and (max-width: 576px) {
  .footer--services {
    width: 100%;
  }
}

.footer--services h3 {
  background-color: transparent;
  font-size: 1.5rem;
  text-align: center;
}

.footer--services a {
  background-color: transparent;
  text-decoration: none;
  color: #F1F1F1;
}

.footer--services div {
  display: flex;
  justify-content: space-between;
  background-color: transparent;
  text-align: left;
  width: 100%;
}

.footer--services span {
  background-color: transparent;
}

.footer--estimate {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 33%;
}

@media screen and (max-width: 576px) {
  .footer--estimate {
    width: 100%;
  }
}

.footer--estimate span {
  background-color: transparent;
}

.footer--estimate a {
  background-color: transparent;
  text-decoration: none;
  color: #F1F1F1;
}

.footer--estimate p {
  background-color: transparent;
}

.footer--estimate button {
  border-radius: 0.5rem;
  text-decoration: none;
  height: 2rem;
  background-color: #F4BD14;
  border: none;
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  color: #F1F1F1;
  font-size: 1rem;
  height: 100%;
}

.footer--estimate button:hover {
  cursor: pointer;
}

.footer--estimate__number {
  color: #F4BD14;
  font-size: 1.1rem;
}

.footer--infos {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  width: 33%;
  gap: 1rem;
}

@media screen and (max-width: 576px) {
  .footer--infos {
    width: 100%;
  }
}

.footer--infos img {
  width: 50%;
  object-fit: cover;
  background-color: transparent;
}

.footer--infos span {
  background-color: transparent;
}

.faq {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq h2 {
  color: #333;
  text-align: center;
  margin-bottom: 1.5rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  background-color: #fff;
  color: #333;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-question::after {
  content: '\25BC';
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-answer {
  background-color: #fff;
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
  padding: 1rem;
}

.faq-answer p {
  margin: 0;
  color: #666;
}


/*# sourceMappingURL=style.css.map */