header {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 99;
  width: 100%;
}
header::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(45deg, #eb6514, #f3b005, #fcde76);
}
header .content {
  display: flex;
  justify-content: center;
  width: 100%;
}
header .NavBar-header-container {
  background-color: #f2f2f2;
  padding: 17px 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .NavBar-header-container .NavBar-navigation-container {
  margin-right: 240px;
}
header .NavBar-header-container .NavBar-navigation-container ul {
  display: flex;
}
header .NavBar-header-container .NavBar-navigation-container ul li {
  display: flex;
  align-items: center;
}
header .NavBar-header-container .NavBar-navigation-container ul li:not(:last-child)::after {
  content: "";
  display: block;
  width: 2px;
  background-color: #f3b005;
  height: 80%;
}
header .NavBar-header-container .NavBar-navigation-container ul li a {
  display: flex;
  align-items: center;
  padding: 0 25px;
}
header .NavBar-header-container .NavBar-navigation-container ul li a:hover p::after {
  transform: scale(1);
}
header .NavBar-header-container .NavBar-navigation-container ul li a p {
  color: #282929;
  font-size: 1.313em;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
}
header .NavBar-header-container .NavBar-navigation-container ul li a p::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #282929;
  opacity: 1;
  transform: scale(0);
  transform-origin: center;
  transition: opacity 0.3s, transform 0.4s;
}
header .NavBar-header-container .NavBar-social-container ul {
  display: flex;
  align-items: center;
}
header .NavBar-header-container .NavBar-social-container ul li a {
  padding: 0 3px;
  display: flex;
  align-items: center;
  margin: 0 13px;
  flex-direction: column;
}

.displayNone {
  display: none !important;
}

.displayFlex {
  display: flex !important;
}

.NavBar-burger-button {
  display: none;
  width: 40px;
  height: 20px;
}
.NavBar-burger-button .burger {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.NavBar-burger-button .cross {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.NavBar-menu-responsive {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100dvw;
  height: 100dvh;
  background-color: #f2f2f2;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.NavBar-menu-responsive nav {
  width: 100%;
}
.NavBar-menu-responsive nav ul {
  width: 100%;
}
.NavBar-menu-responsive nav ul li {
  width: 100%;
  padding: 25px;
}
.NavBar-menu-responsive nav ul li p {
  color: #282929;
  text-transform: uppercase;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.313rem;
}
.NavBar-menu-responsive ul.social-networks {
  display: flex;
  align-items: center;
  justify-content: center;
}
.NavBar-menu-responsive ul.social-networks li a {
  margin: 0 25px;
}
.NavBar-menu-responsive ul.social-networks li a img {
  width: 50px;
}

@media (width < 1250px) {
  header .NavBar-header-container {
    padding: 17px 3%;
  }
}
@media (width < 1050px) {
  header .NavBar-header-container .content {
    justify-content: end;
  }
  header .NavBar-header-container .NavBar-navigation-container {
    display: none;
  }
  header .NavBar-header-container .NavBar-social-container {
    display: none;
  }
  header .NavBar-header-container .NavBar-burger-button {
    display: flex;
  }
}
html * {
  box-sizing: border-box;
}

input[type=text], #message {
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

input:focus, #message:focus {
  outline: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100vw;
  line-height: 1.5;
}

.menu {
  overflow-y: hidden;
  max-height: 100vh;
}

img {
  display: block;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  text-decoration: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
  font-style: normal;
}

body {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  height: 100%;
}

input[type=text] {
  all: unset;
}

textarea {
  padding: 0;
  margin: 0;
  resize: none;
}

.Landing-container {
  background-image: url("../../media/image/background-black.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: #292922;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 75px;
}
.Landing-container img:not(.scroll) {
  padding: 0 30px;
  filter: drop-shadow(8px 8px 4px rgba(0, 0, 0, 0.2509803922));
}
.Landing-container .scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-16px);
  bottom: 50px;
  animation: animation-scroll-down 3s infinite;
}
.Landing-container .Landing-text-page {
  background-color: rgba(0, 0, 0, 0.5529411765);
  min-height: 100dvh;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10%;
}
.Landing-container .Landing-text-page h1 {
  font-size: 3rem;
  color: #f3b005;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  filter: drop-shadow(1px 1px 2px rgba(169, 117, 25, 0.3019607843));
  text-align: center;
}
.Landing-container .Landing-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.Landing-container .Landing-text h1 {
  text-align: center;
  font-size: 2.05rem;
  color: #f3b005;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  filter: drop-shadow(1px 1px 2px rgba(169, 117, 25, 0.3019607843));
}

@keyframes animation-scroll-down {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    bottom: 10px;
  }
}
@media (width < 1050px) {
  .Landing-container {
    flex-direction: column-reverse;
    background-attachment: scroll;
  }
  .Landing-container .Landing-text-page {
    padding: 5%;
  }
}
@media (width < 650px) {
  .Landing-container .Landing-text-page img {
    width: 400px;
    height: 125px;
  }
  .Landing-container .Landing-text-page h1 {
    font-size: 2.2rem;
  }
}
@media (width < 520px) {
  .Landing-container img:not(.scroll) {
    width: 400px;
    height: 400px;
  }
  .Landing-container .Landing-text img {
    width: 350px;
    height: 100px;
  }
  .Landing-container .Landing-text h1 {
    font-size: 1.3rem;
  }
  .Landing-container .Landing-text-page img {
    width: auto;
    height: auto;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .Landing-container .Landing-text-page h1 {
    font-size: 2.2rem;
  }
}
@media (width < 400px) {
  .Landing-container img:not(.scroll) {
    width: 300px;
    height: 300px;
  }
  .Landing-container .Landing-text img {
    width: 300px;
    height: 75px;
  }
  .Landing-container .Landing-text h1 {
    font-size: 1.1rem;
  }
  .Landing-container .Landing-text-page img {
    width: auto;
    height: auto;
  }
  .Landing-container .Landing-text-page h1 {
    font-size: 2.2rem;
  }
}
.Separator {
  height: 20px;
  width: 100%;
  background: linear-gradient(45deg, #eb6514, #f3b005, #fcde76);
}

.SeparatorGrey {
  height: 20px;
  width: 100%;
  background: #424141;
}

.BoxContent-container {
  min-height: 100dvh;
  background-image: url(../../media/image/background-black.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 15%;
}
.BoxContent-container:nth-of-type(even) {
  background-color: #f3b005;
  background-image: url(../../media/image/background-orange.webp);
}
.BoxContent-container .BoxContent-content {
  background-color: #0f0f0f;
  width: 100%;
  padding: 50px 0;
  position: relative;
  box-shadow: 3px 3px 8px rgba(1, 1, 1, 0.2);
}
.BoxContent-container .BoxContent-content .BoxContent-title-container {
  display: flex;
  align-items: center;
  height: 100px;
}
.BoxContent-container .BoxContent-content .BoxContent-title-container .BoxContent-title-content {
  height: 100%;
}
.BoxContent-container .BoxContent-content .BoxContent-title-container .BoxContent-title-content .BoxContent-title {
  height: 100%;
  display: flex;
  align-items: center;
  filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.3));
  transform: translateX(-20px);
  max-width: 960px;
  width: 960px;
}
.BoxContent-container .BoxContent-content .BoxContent-title-container .BoxContent-title-content .BoxContent-title h2 {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 23px 66px;
  width: 100%;
  background-color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 1.9rem;
  text-transform: uppercase;
}
.BoxContent-container .BoxContent-content .BoxContent-title-container .BoxContent-title-content .BoxContent-title img {
  height: 100%;
}
.BoxContent-container .BoxContent-content .BoxContent-title-container .BoxContent-title-style {
  height: 100%;
  transform: translateX(-90px);
}
.BoxContent-container .BoxContent-content .BoxContent-title-container .BoxContent-title-style img {
  height: 100%;
  width: auto;
}
.BoxContent-container .BoxContent-content .BoxContent-main-container {
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.BoxContent-container .BoxContent-content .BoxContent-main-container .BoxContent-main-text {
  width: 50%;
  font-family: "Lato", sans-serif;
  padding: 30px 10px;
}
.BoxContent-container .BoxContent-content .BoxContent-main-container .BoxContent-main-text h3 {
  color: #f3b005;
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 18px;
  text-align: center;
}
.BoxContent-container .BoxContent-content .BoxContent-main-container .BoxContent-main-text p {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 24px;
  text-align: justify;
}
.BoxContent-container .BoxContent-content .BoxContent-main-container .BoxContent-main-img {
  width: 50%;
}
.BoxContent-container .BoxContent-content .BoxContent-main-container .BoxContent-main-img img {
  padding: 20px;
  width: 100%;
  object-fit: cover;
}
.BoxContent-container .BoxContent-content .BoxContent-main-container .BoxContent-main-img .BoxContent-img-corner-top-left {
  width: 100%;
  position: relative;
  display: block;
}
.BoxContent-container .BoxContent-content .BoxContent-main-container .BoxContent-main-img .BoxContent-img-corner-top-left:before {
  display: block;
  content: "";
  width: 55px;
  height: 55px;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 10px solid #f3b005;
  border-left: 10px solid #f3b005;
  animation: opacity 2s infinite;
}
.BoxContent-container .BoxContent-content .BoxContent-main-container .BoxContent-main-img .BoxContent-img-corner-bottom-right {
  display: block;
  position: relative;
  width: 100%;
}
.BoxContent-container .BoxContent-content .BoxContent-main-container .BoxContent-main-img .BoxContent-img-corner-bottom-right:before {
  display: block;
  content: "";
  width: 55px;
  height: 55px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-right: 10px solid #f3b005;
  border-bottom: 10px solid #f3b005;
  animation: opacity 2s infinite;
}
.BoxContent-container .BoxContent-content .BoxContent-button {
  position: absolute;
  width: fit-content;
  background-color: #efc808;
  left: 50%;
  bottom: 0;
  transition: all 0.4s;
  transform: translate(-50%, 50%);
}
.BoxContent-container .BoxContent-content .BoxContent-button:hover {
  cursor: pointer;
  background-color: #f3b005;
}
.BoxContent-container .BoxContent-content .BoxContent-button:hover p::after {
  transform: scale(1);
}
.BoxContent-container .BoxContent-content .BoxContent-button a {
  display: block;
  padding: 25px 37px;
  width: 100%;
}
.BoxContent-container .BoxContent-content .BoxContent-button a p {
  color: #0f0f0f;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-size: 1.188rem;
  text-wrap: nowrap;
}
.BoxContent-container .BoxContent-content .BoxContent-button a p::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #282929;
  opacity: 1;
  transform: scale(0);
  transform-origin: center;
  transition: opacity 0.3s, transform 0.4s;
}
.BoxContent-container .separator {
  height: 10px;
  width: 100%;
  background: linear-gradient(45deg, #eb6514, #f3b005, #fcde76);
}

@media (width < 1500px) {
  .BoxContent-container {
    padding: 100px 10%;
  }
  .BoxContent-container .BoxContent-content .BoxContent-title-container .BoxContent-title-content .BoxContent-title {
    max-width: 800px;
  }
}
@media (width < 1150px) {
  .BoxContent-container {
    min-height: unset;
    padding: 100px 5%;
  }
  .BoxContent-container .BoxContent-content .BoxContent-title-container .BoxContent-title-content .BoxContent-title {
    max-width: 750px;
  }
  .BoxContent-container .BoxContent-content .BoxContent-main-container {
    padding: 2%;
  }
}
@media (width < 1050px) {
  .BoxContent-container {
    background-attachment: scroll;
  }
}
@media (width < 950px) {
  .BoxContent-container {
    padding: 100px 0;
  }
  .BoxContent-container .BoxContent-content {
    width: 100%;
  }
  .BoxContent-container .BoxContent-content .BoxContent-title-container {
    width: 100%;
    height: auto;
  }
  .BoxContent-container .BoxContent-content .BoxContent-title-container .BoxContent-title-content {
    width: 100%;
  }
  .BoxContent-container .BoxContent-content .BoxContent-title-container .BoxContent-title-content .BoxContent-title {
    max-width: unset;
    width: 100%;
    transform: translateX(0);
  }
  .BoxContent-container .BoxContent-content .BoxContent-title-container .BoxContent-title-content .BoxContent-title img {
    display: none;
  }
  .BoxContent-container .BoxContent-content .BoxContent-title-style {
    display: none;
  }
}
@media (width < 850px) {
  .BoxContent-container .BoxContent-content .BoxContent-title-container .BoxContent-title-content .BoxContent-title {
    max-width: unset;
  }
  .BoxContent-container .BoxContent-content .BoxContent-main-container {
    flex-direction: column;
    padding: 20px 3%;
  }
  .BoxContent-container .BoxContent-content .BoxContent-main-container .BoxContent-main-text p {
    font-size: 1.125rem;
  }
  .BoxContent-container .BoxContent-content .BoxContent-main-container .BoxContent-main-img {
    width: 100%;
  }
  .BoxContent-container .BoxContent-content .BoxContent-main-container .BoxContent-main-img img {
    min-height: 100%;
    object-fit: cover;
    height: 50dvh;
    max-height: 50dvh;
  }
  .BoxContent-container .BoxContent-content .BoxContent-main-container .BoxContent-main-text {
    width: 100%;
  }
}
.ContactForm-container {
  min-height: 100dvh;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../../media/image/background-black.webp");
  background-color: #0f0f0f;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ContactForm-container .ContactForm-content {
  display: flex;
  max-width: 1300px;
  max-height: 710px;
  height: 710px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ContactForm-container .ContactForm-content .hide {
  opacity: 0;
}
.ContactForm-container .ContactForm-content .displayNone {
  display: none !important;
}
.ContactForm-container .ContactForm-content .error-message {
  background-color: #010101;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ContactForm-container .ContactForm-content .error-message img {
  width: 200px;
  height: 100px;
}
.ContactForm-container .ContactForm-content .error-message .text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ContactForm-container .ContactForm-content .error-message .text p {
  font-size: 1.175rem;
  font-family: "Lato", sans-serif;
  color: #ffffff;
}
.ContactForm-container .ContactForm-content .success-message {
  background-color: #010101;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ContactForm-container .ContactForm-content .success-message img {
  width: 200px;
  height: 100px;
}
.ContactForm-container .ContactForm-content .success-message p {
  font-size: 1.175rem;
  font-family: "Lato", sans-serif;
  color: #ffffff;
}
.ContactForm-container .ContactForm-content form {
  height: 100%;
  background-color: #0f0f0f;
  padding: 30px 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ContactForm-container .ContactForm-content form h2 {
  font-size: 2rem;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  text-align: center;
  font-weight: 500;
}
.ContactForm-container .ContactForm-content form h3 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.313rem;
  text-align: center;
  color: #efc808;
  margin-top: 5px;
}
.ContactForm-container .ContactForm-content form p {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #ffffff;
  text-align: center;
}
.ContactForm-container .ContactForm-content form .ContactForm-button {
  background-color: #efc808;
  padding: 25px 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  width: fit-content;
  transition: all 0.4s;
}
.ContactForm-container .ContactForm-content form .ContactForm-button:hover {
  cursor: pointer;
  background-color: #f3b005;
}
.ContactForm-container .ContactForm-content form .ContactForm-button:hover p::after {
  transform: scale(1);
}
.ContactForm-container .ContactForm-content form .ContactForm-button p {
  color: #010101;
  margin-left: 10px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
}
.ContactForm-container .ContactForm-content form .ContactForm-button p::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #282929;
  opacity: 1;
  transform: scale(0);
  transform-origin: center;
  transition: opacity 0.3s, transform 0.4s;
}
.ContactForm-container .ContactForm-content form .ContactForm-rgpd {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.ContactForm-container .ContactForm-content form .ContactForm-rgpd input {
  margin: 0 10px;
}
.ContactForm-container .ContactForm-content form .ContactForm-rgpd p {
  text-align: justify;
}
.ContactForm-container .ContactForm-content form .ContactForm-inputs {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.ContactForm-container .ContactForm-content form .ContactForm-inputs h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1.188rem;
  color: #ffffff;
  font-weight: 400;
}
.ContactForm-container .ContactForm-content form .ContactForm-inputs .ContactForm-input {
  background-color: #f3f3f3;
  display: flex;
  margin: 12px 0;
  padding: 9px 0;
  align-items: center;
  border: 2px solid #f3f3f3;
  transition: all 0.4s;
}
.ContactForm-container .ContactForm-content form .ContactForm-inputs .ContactForm-input:has(input:focus) {
  border-color: #f3b005;
}
.ContactForm-container .ContactForm-content form .ContactForm-inputs .ContactForm-input img {
  margin: 0 10px;
  width: 21px;
  border: 2px solid #f3f3f3;
  border-right: 0;
}
.ContactForm-container .ContactForm-content form .ContactForm-inputs .ContactForm-input .separator {
  width: 1px;
  background-color: #282929;
  display: block;
  height: 26px;
  margin-right: 5px;
}
.ContactForm-container .ContactForm-content form .ContactForm-inputs .ContactForm-input input {
  margin-left: 5px;
  font-family: "Lato", sans-serif;
  border-left: 0;
  width: 100%;
}
.ContactForm-container .ContactForm-content form .ContactForm-inputs .ContactForm-informations {
  width: 100%;
  padding: 0 10px;
}
.ContactForm-container .ContactForm-content form .ContactForm-inputs .ContactForm-message {
  padding: 0 10px;
  width: 100%;
}
.ContactForm-container .ContactForm-content form .ContactForm-inputs .ContactForm-message textarea {
  width: 100%;
  height: 84%;
  margin-top: 12px;
  padding: 34px;
  border: 2px solid #f3f3f3 !important;
  background-color: #f3f3f3 !important;
  font-family: "Lato", sans-serif;
  transition: all 0.4s;
}
.ContactForm-container .ContactForm-content form .ContactForm-inputs .ContactForm-message textarea:focus {
  border-color: #f3b005 !important;
}
.ContactForm-container .ContactForm-content form .ContactForm-inputs .ContactForm-message #msg {
  display: none;
}
.ContactForm-container .ContactForm-content .ContactForm-company {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  padding: 50px 70px;
  background: linear-gradient(140deg, #010101, #424141);
}
.ContactForm-container .ContactForm-content .ContactForm-company img {
  max-width: 295px;
}
.ContactForm-container .ContactForm-content .ContactForm-company address {
  margin-top: 50px;
}
.ContactForm-container .ContactForm-content .ContactForm-company address p {
  font-family: "Lato", sans-serif;
  font-size: 1.688rem;
  text-align: center;
  color: #ffffff;
}
.ContactForm-container .ContactForm-content .ContactForm-company address p.ContactForm-phone {
  margin-top: 60px;
  font-family: "Oswald", sans-serif;
  font-size: 2.625rem;
}
.ContactForm-container .ContactForm-content .ContactForm-company address p.ContactForm-phone .ContactForm-important {
  color: #f3b005;
}

input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #EFEFEE;
  margin: 0 5px 0 0;
  font: inherit;
  color: #262626;
  width: 1.15em;
  height: 1.15em;
  border: 50% solid #262626;
  border-radius: 5px;
  display: grid;
  float: left;
  place-content: center;
}

input[type=checkbox]::before {
  content: "";
  width: 1.1em;
  height: 1.1em;
  margin-bottom: 5px;
  margin-left: 3px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #f3b005;
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

input[type=checkbox]:checked::before {
  transform: scale(1);
}

@media (width < 1300px) {
  .ContactForm-container .ContactForm-content {
    flex-direction: column;
    max-height: none;
    height: auto;
  }
  .ContactForm-container .ContactForm-content .ContactForm-company {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }
  .ContactForm-container .ContactForm-content .ContactForm-company address {
    margin-top: 15px;
  }
  .ContactForm-container .ContactForm-content .ContactForm-company address p.ContactForm-phone {
    margin-top: 15px;
  }
}
@media (width < 1050px) {
  .ContactForm-container {
    background-attachment: scroll;
  }
}
@media (width < 800px) {
  .ContactForm-container .ContactForm-content .ContactForm-company img {
    width: 225px;
    height: 225px;
  }
  .ContactForm-container .ContactForm-content .ContactForm-company .ContactForm-infos img {
    height: 40px;
    width: 240px;
  }
  .ContactForm-container .ContactForm-content .ContactForm-company .ContactForm-infos address p {
    font-size: 1.3rem;
  }
  .ContactForm-container .ContactForm-content .ContactForm-company .ContactForm-infos address p.ContactForm-phone {
    font-size: 1.7rem;
  }
  .ContactForm-container .ContactForm-content form .ContactForm-inputs {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
@media (width < 700px) {
  .ContactForm-container .ContactForm-content form {
    padding: 30px 20px;
  }
  .ContactForm-container .ContactForm-content .ContactForm-company {
    flex-direction: column;
  }
}
@media (width < 380px) {
  .ContactForm-container {
    padding: 100px 0;
  }
  .ContactForm-container .ContactForm-content .ContactForm-company {
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
footer {
  background-color: #010101;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 250px;
  padding-right: 18%;
}
footer img.logo {
  margin: 100px 150px;
}
footer .separator {
  min-width: 1px;
  height: 100%;
  background-color: #efc808;
}
footer .content {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
footer .social {
  display: none;
  height: 100%;
  align-items: center;
  padding: 20px 0;
}
footer .social .separator {
  transform: translateX(-20px);
}
footer .social h2 {
  transform: rotateZ(-90deg);
  color: #ffffff;
  width: 100%;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
}
footer .social .social-networks-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}
footer .social .social-networks-container .social-networks {
  padding: 20px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .social .social-networks-container .social-networks li {
  margin: 8px 0;
}
footer .social .social-networks-container p {
  color: #ffffff;
  margin: 0 15px;
}
footer .infos {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 20px 0;
  margin-right: 20%;
}
footer .infos address {
  margin-left: 23px;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}
footer .infos address p.title {
  color: #ffffff;
  font-size: 1.5rem;
  width: 100%;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-style: normal;
}
footer .infos address p.subtitle {
  font-style: normal;
  color: #efc808;
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}
footer .infos address p {
  color: #ffffff;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
}
footer nav {
  padding: 20px 0;
  height: 100%;
  display: flex;
}
footer nav .menu {
  height: 100%;
  margin-left: 23px;
  display: flex;
  flex-direction: column;
}
footer nav .menu p.title {
  color: #ffffff;
  font-size: 1.5rem;
  width: 100%;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin-bottom: 20px;
}
footer nav .menu menu {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 100%;
}
footer nav .menu menu li {
  width: 100%;
}
footer nav .menu menu li a:hover p {
  color: #efc808;
}
footer nav .menu menu li a p {
  color: #ffffff;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  text-decoration: underline;
  text-transform: capitalize;
  transition: all 0.4s;
}

@media (width < 1500px) {
  footer {
    padding-right: 2%;
  }
}
@media (width < 1300px) {
  footer img.logo {
    margin: 100px 50px;
    width: 250px;
    height: 60px;
  }
}
@media (width < 800px) {
  footer img.logo {
    display: none;
  }
}
@media (width < 600px) {
  footer {
    height: auto;
    flex-direction: column;
    padding: 20px 0;
  }
  footer img.logo {
    display: block;
    width: 200px;
    height: 60px;
    margin: 0;
  }
  footer .content {
    flex-direction: column;
    height: auto;
  }
  footer .content nav {
    display: none;
  }
  footer .content .social {
    padding: 0;
    height: auto;
  }
  footer .content .social h2 {
    display: none;
  }
  footer .content .social .social-networks-container {
    width: 100%;
    height: auto;
  }
  footer .content .social .social-networks-container .social-networks {
    margin-top: 10px;
    height: auto;
    padding: 0;
  }
  footer .content .social .social-networks-container::before {
    width: 80%;
    content: "";
    display: block;
    background-color: #efc808;
    height: 1px;
  }
  footer .content .social .social-networks-container ul {
    width: 80%;
    flex-direction: row;
    justify-content: center;
  }
  footer .content .social .social-networks-container ul li {
    margin: 8px;
  }
  footer .content .infos {
    height: auto;
    margin-top: 10px;
    width: 100%;
    padding: 0;
  }
  footer .content .infos .separator {
    display: none;
  }
  footer .content .infos address {
    margin: 0;
    width: 100%;
  }
  footer .content .infos address .address, footer .content .infos address .phone, footer .content .infos address .siret {
    width: 100%;
  }
  footer .content .infos address h2 {
    display: none;
  }
  footer .content .infos address h3 {
    text-align: center;
  }
  footer .content .infos address p {
    text-align: center;
  }
}
.subFooter {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
  background-color: #232323;
}
.subFooter p {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  color: #a8a8a8;
}
.subFooter div {
  display: flex;
}
.subFooter div:not(:first-of-type)::before {
  content: "-";
  color: #a8a8a8;
  display: block;
  margin: 0 15px;
  font-size: 0.875rem;
}
.subFooter div .title {
  margin-right: 20px;
  font-weight: 600;
}

@media (width < 850px) {
  .subFooter {
    flex-direction: column;
  }
  .subFooter div:not(:first-of-type)::before {
    display: none;
  }
}
.ContainerTwoContent {
  background-image: url("../../media/image/background-orange.webp");
  background-attachment: fixed;
  background-color: #f3b005;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0;
}
.ContainerTwoContent .twoContent {
  background-color: #0f0f0f;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 50px;
}
.ContainerTwoContent .twoContent:not(:last-of-type) {
  margin-bottom: 150px;
}
.ContainerTwoContent .twoContent:nth-of-type(even) .container {
  flex-direction: row-reverse;
}
.ContainerTwoContent .twoContent .container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
}
.ContainerTwoContent .twoContent .text {
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.ContainerTwoContent .twoContent .text h2 {
  font-family: "Oswald", sans-serif;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
}
.ContainerTwoContent .twoContent .text h3 {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #f3b005;
  text-align: justify;
  margin-bottom: 20px;
  font-style: italic;
}
.ContainerTwoContent .twoContent .text p {
  font-family: "Lato", sans-serif;
  text-align: justify;
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 10px;
  font-style: italic;
}
.ContainerTwoContent .twoContent .text p.ul {
  font-family: "Lato", sans-serif;
  font-size: 1.175rem;
  color: #ffffff;
  text-decoration: underline;
}
.ContainerTwoContent .twoContent .text ul {
  margin-bottom: 20px;
}
.ContainerTwoContent .twoContent .text ul li {
  margin-left: 20px;
  list-style: circle;
}
.ContainerTwoContent .twoContent .text ul li p {
  font-size: 1rem;
  text-decoration: none;
}
.ContainerTwoContent .twoContent .img {
  height: 100%;
  width: 100%;
  padding: 20px;
}
.ContainerTwoContent .twoContent .img .TwoContent-img-corner-top-right {
  width: 100%;
  position: relative;
  display: block;
}
.ContainerTwoContent .twoContent .img .TwoContent-img-corner-top-right:before {
  display: block;
  content: "";
  width: 55px;
  height: 55px;
  position: absolute;
  top: 0;
  right: 0;
  border-top: 10px solid #f3b005;
  border-right: 10px solid #f3b005;
  animation: opacity 2s infinite;
}
.ContainerTwoContent .twoContent .img .TwoContent-img-corner-bottom-left {
  display: block;
  position: relative;
  width: 100%;
}
.ContainerTwoContent .twoContent .img .TwoContent-img-corner-bottom-left:before {
  display: block;
  content: "";
  width: 55px;
  height: 55px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-left: 10px solid #f3b005;
  border-bottom: 10px solid #f3b005;
  animation: opacity 2s infinite;
}
.ContainerTwoContent .twoContent .img img {
  padding: 20px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (width < 1150px) {
  .ContainerTwoContent .twoContent:nth-of-type(even) .container {
    flex-direction: column;
  }
  .ContainerTwoContent .twoContent .container {
    flex-direction: column;
    max-width: 80%;
  }
}
@media (width < 1050px) {
  .ContainerTwoContent {
    background-attachment: scroll;
  }
}
@media (width < 700px) {
  .ContainerTwoContent .twoContent .container {
    max-width: 95%;
  }
}
@media (width < 500px) {
  .ContainerTwoContent .twoContent {
    padding: 100px 0;
  }
  .ContainerTwoContent .twoContent .container {
    max-width: 100%;
  }
}
.ContainerCard {
  background-image: url("../../media/image/background-black.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: #010101;
  padding: 150px 13%;
}
.ContainerCard .ContainerCard-content {
  background-color: #010101;
  padding: 50px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ContainerCard .ContainerCard-content h2 {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}
.ContainerCard .ContainerCard-content p {
  color: #ffffff;
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  font-family: "Lato", sans-serif;
  max-width: 600px;
}
.ContainerCard .ContainerCard-content p.subtitle {
  color: #f3b005;
  font-family: "Lato", sans-serif;
  max-width: 600px;
  text-align: center;
}
.ContainerCard .ContainerCard-content .Card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.ContainerCard .ContainerCard-content .Card-container .BoxCard {
  margin: 0 10px;
  margin-top: 50px;
  background-color: #ffffff;
  padding: 5px 15px;
  border-radius: 8px;
  max-width: 275px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ContainerCard .ContainerCard-content .Card-container .BoxCard .BoxCard-card {
  border-radius: 8px;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 3px solid rgba(255, 255, 255, 0);
}
.ContainerCard .ContainerCard-content .Card-container .BoxCard .BoxCard-card .title {
  color: #f38b05;
  font-family: "Oswald", sans-serif;
  font-size: 1.275rem;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
}
.ContainerCard .ContainerCard-content .Card-container .BoxCard .BoxCard-card p {
  color: #565656;
  font-family: "Lato", sans-serif;
  text-align: justify;
}

@media (width < 1300px) {
  .ContainerCard .ContainerCard-content p.subtitle {
    max-width: 500px;
  }
}
@media (width < 1100px) {
  .ContainerCard {
    padding: 150px 0;
  }
  .ContainerCard .ContainerCard-content p.subtitle {
    padding: 0 10%;
  }
}
@media (width < 1050px) {
  .ContainerCard {
    background-attachment: scroll;
  }
}
@media (width < 750px) {
  .ContainerCard .ContainerCard-content {
    padding: 80px 20px;
  }
}
.twoContentBack {
  background-image: url("../../media/image/background-orange.webp");
  background-color: #f3b005;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 150px 15%;
}

main {
  background-image: url(../../media/image/background-orange.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f3b005;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .mentionsLegales {
  max-width: 1300px;
  background-color: #010101;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  margin: 100px 0;
  border-radius: 18px;
  padding: 20px;
}
main .mentionsLegales a {
  color: #ffffff;
  text-decoration: underline;
}
main .mentionsLegales ul li {
  list-style: circle;
  margin-left: 20px;
}
main p {
  text-align: justify;
}

.intro {
  background-color: #0f0f0f;
  padding: 100px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro p {
  max-width: 900px;
  font-family: "Lato", sans-serif;
  color: #ffffff;
  text-align: justify;
  font-size: 1.175rem;
  font-style: italic;
}

/*# sourceMappingURL=style.css.map */
