@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");
nav {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 62, 125, 0.8);
  border-radius: 100px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: absolute;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  z-index: 1;
  width: 1500px;
  margin: 0 auto;
  position: -webkit-sticky;
  position: sticky;
  top: 5px;
}
nav img {
  display: none;
}
@media (max-width: 576px) {
  nav img {
    -webkit-filter: invert(100%);
    display: inline;
    margin-left: 2rem;
    margin-top: 0.5rem;
    position: relative;
    height: 2rem;
    width: 2rem;
  }
}
@media (max-width: 576px) and (prefers-color-scheme: dark) {
  nav img {
    -webkit-filter: invert(100%);
  }
}
@media (max-width: 576px) {
  nav {
    width: 90vw;
    flex-direction: column;
  }
}
nav ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: auto;
}
@media (max-width: 576px) {
  nav ul {
    background: rgba(125, 133, 151, 0.9);
    border-radius: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 100%;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    margin: auto;
    margin-top: 3rem;
    height: 0rem;
    transition: height 1.8s ease-in-out;
  }
}
nav ul li {
  list-style: none;
}
@media (max-width: 576px) {
  nav ul li {
    opacity: 0;
    height: 2.5rem;
    display: none;
  }
}
nav ul li a {
  padding: 0px 40px;
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  border-radius: 20px;
}
@media (max-width: 576px) {
  nav ul li a {
    border-radius: 20px;
  }
}
nav ul li .active {
  background: linear-gradient(99deg, #959595 0%, #b3b3b3 95%);
  position: relative;
}

footer {
  width: 100vw;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  border-top: 1px solid grey;
}
footer .text_footer {
  width: 85%;
  display: flex;
  flex-flow: row nowrap;
  padding-top: 32px;
}
@media (max-width: 576px) {
  footer .text_footer {
    padding-top: 5px;
  }
}
footer .text_footer div ul {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
@media (max-width: 576px) {
  footer .text_footer div ul {
    flex-direction: column;
    padding-right: 0;
    font-size: 0.5rem;
    margin-left: 1.5rem;
  }
}
footer .text_footer div ul li {
  margin: 0px 1rem;
  list-style-image: url("/assets/img/chevron.svg");
}
footer .text_footer div ul li:first-child {
  margin-left: 0px;
}
@media (max-width: 576px) {
  footer .text_footer div ul li:first-child {
    margin-left: 1rem;
  }
}
footer .text_footer div ul li a {
  text-decoration: none;
  color: #000000;
}
@media (max-width: 576px) {
  footer .parts_footer h2 {
    font-size: 0.7rem;
  }
  footer .parts_footer h2.links {
    margin-left: 1.5rem;
  }
  footer .parts_footer h3 {
    font-size: 0.5rem;
  }
  footer .parts_footer p {
    font-size: 0.4rem;
  }
  footer .parts_footer:first-child {
    width: 70%;
  }
}
footer .parts_footer:first-child {
  width: 50%;
}
@media (max-width: 576px) {
  footer .parts_footer .parts_contact:nth-child(1) {
    margin: auto;
    width: max-content;
  }
  footer .parts_footer .parts_contact:nth-child(2) {
    width: 100%;
  }
  footer .parts_footer .parts_contact:nth-child(3) {
    width: 100%;
  }
}
footer img {
  height: 200px;
}
@media (max-width: 576px) {
  footer img {
    height: 100px;
  }
}
footer .contact_container {
  display: flex;
  justify-content: space-between;
  flex-flow: row nowrap;
  padding-right: 5rem;
}
@media (max-width: 576px) {
  footer .contact_container {
    flex-flow: row wrap;
    padding-right: 1rem;
    padding-left: 0.2rem;
  }
}

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
  background: #7d8597;
}

header {
  min-height: 20vh;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 576px) {
  header {
    margin: 0;
  }
}
header .card_title {
  width: 80%;
  padding: 10px 0px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.072);
  border-radius: 20px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header h1 {
  font-family: "Poppins", sans-serif;
  font-size: 60px;
}
@media (max-width: 576px) {
  header h1 {
    font-size: 2rem;
  }
}
header .question_mark {
  position: absolute;
  z-index: -1;
  color: #33415c;
}
@media (max-width: 576px) {
  header .question_mark {
    font-size: 0.5rem;
  }
}

section {
  max-width: 1140px;
  margin: auto;
  padding: 150px 0px 0px 0px;
}
@media (max-width: 576px) {
  section {
    width: 90%;
    padding-top: 30px;
  }
}
section img {
  height: 250px;
}
@media (max-width: 576px) {
  section img {
    height: 130px;
  }
}
section .container_section {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
section .container_section h2 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}
@media (max-width: 576px) {
  section .container_section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    line-height: 1;
  }
}
section .container_section .text_infos-left {
  margin-left: 90px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 576px) {
  section .container_section .text_infos-left {
    margin-left: 10px;
  }
}
section .container_section .text_infos-right {
  margin-right: 90px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 576px) {
  section .container_section .text_infos-right {
    margin-right: 10px;
  }
}
section .container_section p {
  font-size: 1.3rem;
}
@media (max-width: 576px) {
  section .container_section p {
    font-size: 0.6rem;
  }
}
section .container_section .right {
  text-align: right;
}
section.last {
  margin-bottom: 100px;
}

/*# sourceMappingURL=style.css.map */
