@charset "UTF-8";

*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Aleo Variable Fonts */
@font-face {
    font-family: "Aleo";
    src: url("../font/Aleo-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: "Aleo";
    src: url("../font/Aleo-Italic-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
}

/* Bronova */
@font-face {
    font-family: "Bronova";
    src: url("../font/Bronova-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Bronova";
    src: url("../font/Bronova-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

/* Alex Brush*/
@font-face {
    font-family: "Alex Brush";
    src: url("../font/AlexBrush-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

:root {
    /* Colors */
    --dark: #111111;
    --yellow: #ffc31c;
    --green: #7eafa1;
    --white: var(--white);
    /* Fonts */
    --first-font: Poppins, sans-serif;
    --second-font: Aleo, sans-serif;
    --h1-font: Bronova, sans-serif;
    /* Font-size */
    --fs-8: 0.5rem;
    --fs-10: 0.625rem;
    --fs-12: 0.75rem;
    --fs-14: 0.875rem;
    --fs-15: 0.938rem;
    --fs-16: 1rem;
    --fs-17: 1.063rem;
    --fs-18: 1.125rem;
    --fs-20: 1.25rem;
    --fs-21: 1.313rem;
    --fs-22: 1.375rem;
    --fs-24: 1.5rem;
    --fs-25: 1.563rem;
    --fs-28: 1.75rem;
    --fs-30: 1.875rem;
    --fs-31: 1.938rem;
    --fs-36: 2.25rem;
    --fs-40: 2.5rem;
    --fs-46: 2.875rem;
    --fs-49: 3.063rem;
    --fs-50: 3.125rem;
    --fs-59: 3.688rem;
    --fs-60: 3.75rem;
    --fs-70: 4.375rem;
    --fs-77: 4.813rem;
    --fs-90: 5.625rem;
    --fs-95: 5.938rem;
    /* shadows */
    --form-shadow: -5px 8px 14px #000000;
    /* GRADIANT*/
    --white-to-black-grd: linear-gradient(to bottom, #ffffff 51%, #000000 51%);
    --black-to-white-grd: linear-gradient(to bottom, #000000 51%, #ffffff 51%);
}

/* GLOBAL */
/* GLOBAL */
/* GLOBAL */
/* GLOBAL */
/* GLOBAL */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    position: relative;
    width: 100%;
}

/* HERO SECTION */
/* HERO SECTION */
/* HERO SECTION */
/* HERO SECTION */
/* HERO SECTION */
header {
    background-color: var(--dark);
    width: 100%;
    padding: 32px 210px 155px;
    overflow-x: hidden;
}

@media screen and (max-width: 1786px) {
    header {
        padding: 32px 100px 155px;
    }
}

@media screen and (max-width: 1043px) {
    header {
        padding: 32px 40px 155px 40px;
    }
}

@media screen and (max-width: 985px) {
    header {
        padding: 32px 40px 80px 40px;
    }
}

@media screen and (max-width: 599px) {
    header {
        padding: 32px 20px 80px 20px;
    }
}

@media screen and (max-width: 599px) {
    header {
        padding: 32px 20px 40px 20px;
    }
}

header .container-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 53px;
}

@media screen and (max-width: 780px) {
    header .container-menu {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 425px) {
    header .container-menu {
        margin-bottom: -17px;
    }
}

header .container-menu img {
    width: 136px;
    height: 113px;
}

@media screen and (max-width: 780px) {
    header .container-menu img {
        margin-bottom: 53px;
    }
}

/* MENU */
.menu {
    position: relative;
    padding: 18px 0;
    height: 100%;
    width: auto;
}

.menu::before,
.menu::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(255, 255, 255);
}

@media screen and (max-width: 830px) {

    .menu::before,
    .menu::after {
        background-color: rgba(255, 255, 255, 0.61);
    }
}

.menu::before {
    top: 0;
}

.menu::after {
    bottom: 0;
}

.menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: var(--fs-20);
    font-family: var(--first-font);
    font-weight: 300;
    height: 100%;
    position: relative;
    z-index: 2;
    padding: 0 3px;
}

@media screen and (max-width: 830px) {
    .menu a {
        font-size: var(--fs-16);
    }
}

@media screen and (max-width: 361px) {
    .menu a {
        font-size: var(--fs-14);
    }
}

@media screen and (max-width: 449px) {
    .menu a:nth-child(3) {
        display: none;
    }
}

.menu a::after {
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: white;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

@media screen and (max-width: 830px) {
    .menu a::after {
        height: 60px;
    }
}

@media screen and (max-width: 361px) {
    .menu a::after {
        height: 57px;
    }
}

.menu a:not(:last-child) {
    margin-right: 35px;
}

@media screen and (max-width: 524px) {
    .menu a:not(:last-child) {
        margin-right: 20px;
    }
}

@media screen and (max-width: 476px) {
    .menu a:not(:last-child) {
        margin-right: 10px;
    }
}

.menu a:hover {
    color: var(--dark) !important;
}

.menu a:hover::after {
    transform: scaleX(1);
}

/*BLOC LEFT HERO*/
.container-hero {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 132px;
    justify-content: space-between;
}

@media screen and (max-width: 1121px) {
    .container-hero {
        gap: 60px;
    }
}

@media screen and (max-width: 599px) {
    .container-hero {
        gap: 35px;
    }
}

.container-left-hero {
    color: white;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 1786px) {
    .container-left-hero {
        width: 65%;
        justify-content: space-around;
    }
}

@media screen and (max-width: 1567px) {
    .container-left-hero {
        min-width: 55%;
    }
}

@media screen and (max-width: 1121px) {
    .container-left-hero {
        min-width: 60%;
        justify-content: space-between;
    }
}

@media screen and (max-width: 985px) {
    .container-left-hero {
        justify-content: space-around;
    }
}

@media screen and (max-width: 802px) {
    .container-left-hero {
        min-width: 70%;
    }
}

@media screen and (max-width: 700px) {
    .container-left-hero {
        justify-content: space-evenly;
        align-items: unset;
    }
}

@media screen and (max-width: 599px) {
    .container-left-hero {
        min-width: 74%;
    }
}

@media screen and (max-width: 533px) {
    .container-left-hero {
        min-width: 81%;
    }
}

.container-left-hero .h1-hero {
    font-family: var(--h1-font);
    font-size: var(--fs-95);
    font-weight: 400;
    text-align: right;
    margin-bottom: 49px;
}

@media screen and (max-width: 1172px) {
    .container-left-hero .h1-hero {
        font-size: var(--fs-90);
        margin-bottom: unset;
    }
}

@media screen and (max-width: 985px) {
    .container-left-hero .h1-hero {
        font-size: var(--fs-77);
    }
}

@media screen and (max-width: 700px) {
    .container-left-hero .h1-hero {
        font-size: var(--fs-70);
    }
}

@media screen and (max-width: 489px) {
    .container-left-hero .h1-hero {
        font-size: var(--fs-60);
    }
}

@media screen and (max-width: 425px) {
    .container-left-hero .h1-hero {
        font-size: var(--fs-50);
    }
}

@media screen and (max-width: 361px) {
    .container-left-hero .h1-hero {
        font-size: var(--fs-46);
    }
}

.container-left-hero .h1-hero span {
    color: var(--yellow);
}

.container-left-hero .cita-hero {
    text-align: right;
    font-family: var(--first-font);
    font-style: italic;
    font-weight: 200;
    margin-bottom: 48px;
    font-size: var(--fs-20);
}

@media screen and (max-width: 1172px) {
    .container-left-hero .cita-hero {
        margin-bottom: unset;
    }
}

@media screen and (max-width: 985px) {
    .container-left-hero .cita-hero {
        font-size: var(--fs-18);
    }
}

@media screen and (max-width: 700px) {
    .container-left-hero .cita-hero {
        font-size: var(--fs-16);
    }
}

@media screen and (max-width: 361px) {
    .container-left-hero .cita-hero {
        font-size: var(--fs-12);
    }
}

.container-chiffres-hero {
    display: flex;
    flex-direction: row;
    font-family: var(--first-font);
    text-align: right;
    justify-content: flex-end;
    gap: 120px;
}

@media screen and (max-width: 700px) {
    .container-chiffres-hero {
        gap: 60px;
    }
}

.container-chiffres-hero p:nth-child(1) {
    font-weight: 700;
    font-style: italic;
    font-size: var(--fs-49);
}

@media screen and (max-width: 985px) {
    .container-chiffres-hero p:nth-child(1) {
        font-size: var(--fs-40);
    }
}

@media screen and (max-width: 700px) {
    .container-chiffres-hero p:nth-child(1) {
        font-size: var(--fs-31);
    }
}

@media screen and (max-width: 361px) {
    .container-chiffres-hero p:nth-child(1) {
        font-size: var(--fs-25);
    }
}

.container-chiffres-hero p:nth-child(2) {
    font-weight: 300;
    font-size: var(--fs-18);
}

@media screen and (max-width: 985px) {
    .container-chiffres-hero p:nth-child(2) {
        font-size: var(--fs-16);
    }
}

@media screen and (max-width: 700px) {
    .container-chiffres-hero p:nth-child(2) {
        font-size: var(--fs-14);
    }
}

@media screen and (max-width: 361px) {
    .container-chiffres-hero p:nth-child(2) {
        font-size: var(--fs-10);
    }
}

.container-chiffres-hero span {
    font-family: Ruluko, sans-serif;
}

.container-right-hero {
    position: relative;
    contain: layout paint;
}

@media screen and (max-width: 1567px) {
    .container-right-hero {
        width: unset;
    }
}

@keyframes anim-hero {
    0% {
        transform: translate(232px, 683px);
    }

    100% {
        transform: rotate(-181deg);
    }
}

.container-mask {
    width: 700px;
    position: relative;
    background-color: var(--yellow);
    z-index: 1;
    /* Masque vectoriel */
    -webkit-mask-image: url("../img/hero/bg-color_hero.svg");
    mask-image: url("../img/hero/bg-color_hero.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.container-mask .anim-right-hero {
    position: absolute;
    z-index: 2;
    height: auto;
    width: auto;
    animation: anim-hero 3s ease-out forwards;
}

.container-link-hero {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    transition: transform 0.3s ease-in;
}

@media screen and (max-width: 1567px) {
    .container-link-hero {
        bottom: 0;
        top: unset;
        left: 10px;
        right: unset;
    }

    .container-link-hero img {
        width: 60px;
    }
}

@media screen and (max-width: 985px) {
    .container-link-hero {
        left: 20px;
        bottom: 20px;
    }

    .container-link-hero img {
        width: 50px;
    }
}

@media screen and (max-width: 533px) {
    .container-link-hero {
        bottom: 60px;
        left: 0;
    }
}

@media screen and (max-width: 361px) {
    .container-link-hero {
        bottom: 90px;
    }

    .container-link-hero img {
        width: 40px;
    }
}

.container-link-hero:hover {
    transform: scale(0.9);
}

.container-tel_mail-hero {
    position: absolute;
    bottom: 50px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 2;
}

@media screen and (max-width: 1567px) {
    .container-tel_mail-hero {
        bottom: 100px;
        top: unset;
        left: 10px;
        right: unset;
        gap: 30px;
    }

    .container-tel_mail-hero img {
        width: 60px;
    }
}

@media screen and (max-width: 985px) {
    .container-tel_mail-hero {
        left: 20px;
        bottom: 100px;
    }

    .container-tel_mail-hero img {
        width: 50px;
    }
}

@media screen and (max-width: 533px) {
    .container-tel_mail-hero {
        bottom: 130px;
        gap: 20px;
        left: 0;
    }
}

@media screen and (max-width: 361px) {
    .container-tel_mail-hero {
        bottom: 150px;
    }

    .container-tel_mail-hero img {
        width: 40px;
    }
}

.container-tel_mail-hero a {
    transition: transform 0.3s ease-in;
}

.container-tel_mail-hero a:hover {
    transform: scale(0.9);
}

/* CONTENT */
/* CONTENT */
/* CONTENT */
/* CONTENT */
/* CONTENT */
/* CONTENT */
/* CONTENT */

main {
    color: white;
    font-family: var(--first-font);
    padding: 0 50px;
}

body {
    background-color: var(--dark);
}
.container-gb {
    max-width: 600px;
    margin: 0 auto;
}
h1 {
    margin-bottom: 60px;
}
h2 {
    margin-bottom: 30px;
}

p {
    margin-bottom: 30px;
}

a {
    color: #ffc31c;
}

/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */

#contact {
  position: relative;
  background-color: var(--dark);
  width: 100%;
}


.container-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--first-font);
  font-weight: 400;
  color: white;
  font-size: var(--fs-22);
  margin-bottom: 50px;
  margin-top: 100px;
}
@media screen and (max-width: 750px) {
  .container-contact {
    font-size: var(--fs-18);
  }
}
.container-contact img {
  max-width: 300px;
  margin-bottom: 35px;
}
@media screen and (max-width: 750px) {
  .container-contact img {
    max-width: 215px;
  }
}
.container-contact .txt-contact {
  margin-bottom: 20px;
}
.container-contact .txt-contact span {
  font-weight: 700;
}

.anim-link {
  transition: transform 0.2s ease-in;
}
.anim-link:hover {
  transform: scale(1.1);
}

.container-mention {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--first-font);
  color: white;
}
@media screen and (max-width: 470px) {
  .container-mention {
    flex-direction: column;
    gap: 3px;
  }
}
.container-mention a {
  text-decoration: none;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}
.container-mention a img {
  transform: translate(7px, 11px);
}
@media screen and (max-width: 470px) {
  .container-mention a img {
    transform: translate(7px, 11px);
  }
}
