@import "colors.css";
@import "fonts.css";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body,
html {
  font-size: 16px;
}
body {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}
img {
  display: block;
  width: 100%;
  max-width: max-content;
  height: auto;
}
a {
  transition: all 0.3s ease;
}
a,
button {
  cursor: pointer;
  display: inline-block;
  width: 100%;
  height: max-content;
  text-decoration: none;
  color: var(--gold);
}
#button-submit {
  background-color: white;
  border: 4px solid #b89037;
  max-width: max-content;
  padding: 10px 54px;
  border-radius: 18px;
  font-weight: 600;
  transition: 0.3s ea;
}
#button-submit:hover {
  background-color: var(--black);
}
li {
  list-style: none;
}
h3 {
  font-style: italic;
  font-weight: bold;
  font-size: 1.5rem;
}
p {
  font-weight: 400;
}
.container {
  padding: 0 5%;
}
.flex-row {
  display: flex;
}
.flex-switch {
  display: flex;
}
.scroll_effect {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.a_button {
  width: max-content;
  padding: 10px 50px;
  border: solid 3px var(--gold);
  border-radius: 17px;
  font-style: normal;
  background-color: var(--black);
  transition: color 0.5s ease-in-out, border 0.5s ease-in-out, background 0.5s ease-in-out;
}
.a_button:hover {
  color: var(--black);
  border: solid 3px var(--black);
  background-color: var(--white);
}
.button-2 {
  width: max-content;
  padding: 10px 60px;
  border: solid 3px var(--gold);
  border-radius: 17px;
  font-style: normal;
  background-color: var(--white);
  color: var(--gold);
  transition: color 0.5s ease-in-out, border 0.5s ease-in-out, background 0.5s ease-in-out;
  font-weight: 600;
}
.button-2:hover {
  color: var(--white);
  border: solid 3px var(--black);
  background-color: var(--black);
}
.flex_reverse {
  flex-direction: row-reverse;
}
.bold {
  font-weight: bold;
}
/*---------------------------------------------------------------------------------------------*/
/*-----------------------------------------Header menu-----------------------------------------*/
/*---------------------------------------------------------------------------------------------*/
.wrapper-header {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  text-transform: uppercase;
  z-index: 10;
}
nav {
  display: flex;
  width: 66%;
  border-right: solid 5px var(--gold);
  justify-content: space-between;
  background-color: black;
}
.wrapper-header .container_img {
  padding-left: 5%;
  width: 30%;
}
#menu_listes {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 60%;
}
#menu_listes li {
  position: relative;
}
#switch-langue-header,
#switch-langue-footer {
  color: var(--white);
  display: inline-block;
  padding-left: 5%;
  cursor: pointer;
  font-weight: bolder;
  font-size: 1rem;
}
#reseau_sociaux {
  display: flex;
  align-items: center;
  justify-content: right;
}
.email_and_phone {
  display: flex;
  gap: 10px;
}
.email_and_phone .phone-link {
  white-space: nowrap;
}
.email_and_phone a {
  color: var(--gold);
  font-weight: 400;
  text-transform: initial;
}
.email_and_phone a:hover {
  color: var(--white);
}
#reseau_sociaux .container_img {
  width: 12%;
}
.header_contact_info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 5%;
}
.header_logo {
  min-width: 250px;
}
#menu_buger {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  gap: 12px;
  cursor: pointer;
  max-width: 50px;
  overflow: hidden;
  z-index: 10;
  padding-right: 2%;
  width: 0px;
  height: 0px;
}
.underline {
  display: inline-block;
  height: 3px;
  width: 0px;
  opacity: 0;
  transition: width 1s ease-in-out;
  position: absolute;
  left: 0%;
  bottom: -14px;
}
nav li:hover .underline {
  width: 100%;
  opacity: 1;
  background-color: var(--gold);
}
#menu_buger span {
  position: relative;
  z-index: 15;
  background-color: var(--gold);
  width: 50px;
  height: 3px;
  border-radius: 10px;
  transition: transform 0.9s ease, opacity 0.9s ease, background 1s ease;
  opacity: 1;
}
#menu_buger_span1.active {
  transform: translate(0, 15px) rotate(405deg);
}
#menu_buger_span2.active {
  opacity: 0;
  transition: opacity 0.9s ease;
}
#menu_buger_span3.active {
  transform: translate(0, -15px) rotate(-405deg);
}
.banner {
  position: relative;
}
.banner img {
  max-width: unset;
}
.banner-content {
  position: absolute;
}
.gold-banner {
  background-color: var(--gold);
  position: relative;
  text-align: center;
  padding: 142px;
}
.gold-banner p {
  font-size: 2.9em;
  font-weight: bold;
  font-style: italic;
}
.layout-1 {
  display: flex;
  padding: 0 5%;
}
.layout-1 .col-1 {
  width: 40%;
}
.layout-1 .col-1 img {
  max-width: unset;
}
.layout-1 .col-2 {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  padding: 3%;
  background-color: var(--gold);
}
.layout-1 .col-2 h2 {
  color: black;
}
input[name="name"] {
  display: none;
}
label[for="upload"] {
  display: flex;
  align-items: center;
}
label[for="upload"] img {
  max-width: fit-content;
  margin-left: 5px;
}
label:not([for="upload"]),
.label {
  font-size: 1em;
  font-weight: bold;
  color: var(--gold);
  font-style: italic;
  padding-bottom: 10px;
}
.input-container {
  display: flex;
  flex-direction: column;
}
input[type="text"],
textarea {
  width: 100%;
  border: 1px solid black;
  border-radius: 8px;
  padding: 18px 10px;
}
textarea {
  height: 100px;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(284px, 1fr));
}
form {
  margin-top: 40px;
}
.uploaded-files {
  margin-top: 10px;
}
form .grid-container {
  display: grid;
  grid-template-columns: 0.3fr 0.3fr;
  column-gap: 68px;
  row-gap: 10px;
  margin-bottom: 38px;
}
.form-error {
  color: red;
  font-weight: bold;
  margin-bottom: 12px;
}
.input-error {
  border: 3px solid red !important;
}
.fields-error {
  color: red;
  font-weight: bold;
}
.message-success {
  display: block;
  padding: 10px 12px;
  background-color: #ddfad9;
  border: 1px solid #288d1b;
  color: #288d1b;
}

.section-pourquoi {
  margin-top: 94px;
  margin-bottom: 60px;
}

.section-pourquoi .title {
  color: var(--gold);
  font-size: 1.5em;
  font-weight: 800;
  font-style: italic;
}
.section-pourquoi .row-1 {
  margin-bottom: 20px;
}
.section-pourquoi .row-1 h2 {
  font-weight: 800;
  text-transform: none;
}
.section-pourquoi .row-3 {
  margin-top: 92px;
}
.section-pourquoi .row-3 h2 {
  text-transform: uppercase;
}
.section-pourquoi .row-3 .liste-container {
  grid-template-columns: repeat(5, 1fr);
  column-gap: 56px;
  row-gap: 80px;
  margin-top: 70px;
}
.section-pourquoi .row-3 .liste-container .qualite img {
  height: 100px;
  margin: auto;
}
.section-pourquoi .row-3 .liste-container .qualite p {
  text-transform: uppercase;
  text-align: center;
  color: #b89037;
  font-weight: bold;
  font-size: 1em;
  margin-top: 20px;
}

@media only screen and (max-width: 1499px) {
  nav {
    width: 76%;
  }
  .header_contact_info {
    padding-left: 30px;
  }
  .header_logo {
    min-width: 220px;
  }
  #menu_listes {
    width: 66%;
  }
}
@media only screen and (max-width: 1300px) {
  .email_and_phone {
    display: none;
  }
  #reseau_sociaux {
    gap: 15px;
    justify-content: center;
  }
  #reseau_sociaux .container_img {
    min-width: 20%;
  }
  .wrapper-header {
    position: relative;
    background-color: var(--black);
  }
}
@media only screen and (max-width: 1250px) {
  .section-pourquoi .row-3 .liste-container {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media only screen and (max-width: 1023px) {
  .flex-switch {
    display: flex;
    flex-direction: column;
  }
  .layout-1 .col-1 img {
    max-width: 590px;
  }
  .layout-1 .col-2 {
    padding: 5%;
  }
  #menu_buger {
    width: 50px;
    height: 50px;
  }
  #menu_listes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    transition: width 0.9s ease;
    overflow: hidden;
    background-image: url(/images/index-header-r.png);
    background-color: rgba(0, 0, 0, 0.9);
    background-size: cover;
  }
  #menu_listes.active {
    width: 50%;
    transition: width 0.9s ease, transform 0.9s ease;
  }
  nav li {
    position: relative;
    height: 50px;
    width: 100%;
    padding: 2.5% 5%;
    font-size: 1.2rem;
    opacity: 0;
  }
  #menu_listes.active li {
    opacity: 1;
  }
  .underline {
    position: absolute;
    top: 00px;
  }
  nav li a {
    opacity: 0;
    display: flex;
    align-items: center;
    transition: opacity 2s ease-in-out;
  }
  #menu_listes.active a {
    opacity: 1;
  }
  .header_logo {
    min-width: 250px;
  }
  .gold-banner p {
    font-size: 2em;
  }
  .layout-1 {
    flex-direction: column;
    padding: 0;
  }
  .layout-1 .col-1 {
    width: 100%;
    max-width: max-content;
  }
  .layout-1 .col-2 {
    width: 100%;
  }
  .section-pourquoi .row-3 .liste-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .header_contact_info {
    display: none;
  }
  nav {
    width: 100%;
    border-right: unset;
    padding-right: 5%;
  }
  .wrapper-header {
    justify-content: unset;
  }
  .banner .background {
    height: 400px;
    object-fit: cover;
  }
  .gold-banner {
    padding: 100px 30px;
  }
  .gold-banner p {
    font-size: 1.6em;
  }
  .section-pourquoi .row-3 h2 {
    font-size: 1.2em !important;
  }
}
@media only screen and (max-width: 500px) {
  .section-pourquoi .row-3 .liste-container {
    grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  }
}
@media only screen and (max-width: 450px) {
  nav li {
    font-size: 1rem;
  }
}
/*   ================  FOOTER  ===========*/
.wrapper-footer {
  position: relative;
  padding: 5%;
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url(/images/footer-bg.jpg);
  background-size: cover;
  background-blend-mode: darken;
  color: var(--white);
  font-weight: 300;
  overflow: hidden;
  font-size: 0.8rem;
}
.wrapper-footer h3 {
  color: var(--gold);
  text-transform: uppercase;
}
.wrapper-bureau {
  padding-top: 1%;
  padding-right: 20%;
}
.wrapper-bureau p {
  padding-top: 10px;
  padding-right: 50px;
}
.wrapper-bureau > div {
  display: flex;
  padding-top: 13%;
}
.wrapper-footer .header_contact_info {
  z-index: 2;
  padding: 0 0;
}
.gold-line {
  height: 3px;
  width: 100%;
  background-color: var(--gold);
}
.top-section {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
  align-items: start;
  column-gap: 20px;
}
.container_img p {
  margin-top: 50px;
}
.wrapper-footer .footer_logo {
  width: 18%;
  min-width: 250px;
}
.wrapper-footer .header_contact_info .container_img {
  padding-left: 10px;
}
.wrapper-footer .cover-footer-r {
  position: absolute;
  top: 0;
  right: -50px;
  width: 32%;
  min-width: 400px;
}
.bottom-section {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.bottom-section a {
  width: max-content;
  z-index: 2;
  color: var(--white);
}
@media only screen and (max-width: 1500px) {
  .wrapper-bureau {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1250px) {
  .section-2 .container_img {
    max-width: fit-content;
    margin-right: auto;
  }
}
@media only screen and (max-width: 1050px) {
  .wrapper-bureau {
    display: none;
  }
  form .grid-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 800px) {
  .wrapper-footer .header_contact_info {
    display: flex;
  }
  form .grid-container {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 550px) {
  .bottom-section {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
  }
  .wrapper-footer {
    align-items: center;
    flex-direction: column;
  }
  .top-section {
    align-items: center;
    flex-direction: column;
    padding-bottom: 0;
  }
  .container_img p {
    display: none;
  }
  .wrapper-bureau {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .wrapper-bureau > div {
    align-items: center;
    flex-direction: column;
    padding-bottom: 50px;
    padding-top: 20px;
  }
  .wrapper-bureau > div p {
    text-align: center;
    padding-right: 0;
  }
  .footer_logo {
    margin: 5% 0 8% 0;
  }
}
@media only screen and (min-width: 2000px) {
  .layout-1 {
    justify-content: center;
  }
  .layout-1 .col-1 {
    width: 22%;
  }
  .layout-1 .col-2 h2 {
    font-size: 1.7em;
  }
  .wrapper-footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .wrapper-bureau {
    padding-top: 0;
  }
  .wrapper-bureau > div {
    padding-top: 4%;
  }
  .wrapper-bureau p {
    font-size: 1.1em;
  }
  .bottom-section a {
    font-size: 1.1em;
  }
  .email_and_phone a {
    font-size: 1.1em;
  }
  .bottom-section {
    margin-top: 20px;
  }
}
