/*===== Typographie =====*/

@font-face {
    font-family: "DMSDR";
    src: url('../fonts/DMSerifDisplay-Regular.ttf');
}

@font-face {
    font-family: "DMSDI";
    src: url('../fonts/DMSerifDisplay-Italic.ttf');
}

@font-face {
    font-family: "Gilroy Black";
    src: url('../fonts/Gilroy-Black.ttf');
}

@font-face {
    font-family: "Gilroy Bold";
    src: url('../fonts/Gilroy-Bold.ttf');
}

@font-face {
    font-family: "Gilroy BoldItalic";
    src: url('../fonts/Gilroy-BoldItalic.ttf');
}

@font-face {
    font-family: "Gilroy ExtraBold";
    src: url('../fonts/Gilroy-ExtraBold.ttf');
}

@font-face {
    font-family: "Gilroy Heavy";
    src: url('../fonts/Gilroy-Heavy.ttf');
}

@font-face {
    font-family: "Gilroy Light";
    src: url('../fonts/Gilroy-Light.ttf');
}

@font-face {
    font-family: "Gilroy Medium";
    src: url('../fonts/Gilroy-Medium.ttf');
}

@font-face {
    font-family: "Gilroy Regular";
    src: url('../fonts/Gilroy-Regular.ttf');
}

@font-face {
    font-family: "Gilroy Italic";
    src: url('../fonts/Gilroy-RegularItalic.ttf');
}

@font-face {
    font-family: "Gilroy SemiBold";
    src: url('../fonts/Gilroy-SemiBold.ttf');
}

@font-face {
    font-family: "Gilroy Thin";
    src: url('../fonts/Gilroy-Thin.ttf');
}

@font-face {
    font-family: "Gilroy UltraLight";
    src: url('../fonts/Gilroy-UltraLight.ttf');
}

/*===== Début =====*/

:root {
    --black: #0D0D0D;
    --black-2: #101010;
    --white: #FFFFFF;
    --green: #8FBA1E;
    --gray: #999999;
    --light-gray: #C9C9C9;
    --light-gray-2: #FBFBFB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

/*===== Accueil =====*/

#home {
    min-height: 100vh;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('../img/background-home.png');
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.container {
    max-width: 1280px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0 auto;
}

.home-header {
    position: relative;
}

.home-header span {
    font-family: Gilroy Light;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 20px;
}

.home-header span::before {
    content: '';
    display: block;
    height: 1px;
    left: -20px;
    position: absolute;
    top: 10px;
    width: 40px;
    background-color: var(--gray);
}

.home-header span::after {
    content: '';
    display: block;
    height: 1px;
    right: -20px;
    left: initial;
    position: absolute;
    top: 10px;
    width: 40px;
    background-color: var(--gray);
}

.home-header h1 {
    font-family: DMSDR;
    font-weight: 400;
    font-size: 90px;
    line-height: 123px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.home-header p {
    font-family: Gilroy Regular;
    font-size: 16px;
    line-height: 146.5%;
    text-align: center;
    color: var(--light-gray);
}

.home-btn {
    display: flex;
    justify-content: center;
    margin-top: 55px;
    position: absolute;
    top: 75%;
}

.home-btn a {
    border: 1px solid var(--white);
    border-radius: 25px 0px;
    padding: 17px 50px;
    font-family: Gilroy SemiBold;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: var(--white);
    transition: 0.3s all;
}

.home-btn a:hover {
    background-color: var(--white);
    transition: 0.3s all;
    color: var(--black);
}

.home-nav {
    position: absolute;
    top: 0;
    display: flex;
    max-width: 1280px;
    width: 100%;
    margin: 2rem auto 0;
    padding: 0 3rem;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li a {
    font-family: Gilroy Bold;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: var(--white);
    margin-right: 4rem;
}

.nav-list li:last-child a {
    margin-right: 0;
}

.nav-logo {
    margin-right: 4rem;
}

/*===== À Propos =====*/

#apropos {
    background-color: var(--white);
    min-height: 100vh;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#apropos .container {
    max-width: 1280px;
    padding: 60px 0;
}

.apropos-content {
    display: flex;
    flex-wrap: wrap;
}

.apropos-content .left {
    position: relative;
    width: 50%;
}

.gallery {
    position: relative;
    width: 100%;
    height: 555px;
    padding-right: 60px;
    margin-bottom: 0;
}

.rectangle {
    position: absolute;
    display: block;
    width: calc(50vw - 60px);
    height: calc(100% + 60px);
    margin-top: -50px;
    margin-bottom: -50px;
    right: 210px;
    background-color: var(--black);
}

.rectangle::before {
    content: '';
    display: block;
    height: 25px;
    width: 23px;
    position: absolute;
    border-right: 1px solid var(--green);
    border-top: 1px solid var(--green);
    right: -24px;
    top: 26px;
}

.rectangle span {
    display: block;
    position: absolute;
    font-weight: 400;
    font-size: 42px;
    line-height: 56px;
    right: 412px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    text-transform: uppercase;
    top: 41%;
    text-align: center;
    z-index: 1;
    color: var(--white);
    font-family: DMSDR;
}

.rectangle::after {
    content: '';
    display: block;
    height: 25px;
    width: 23px;
    position: absolute;
    border-right: 1px solid var(--green);
    right: -24px;
    border-bottom: 1px solid var(--green);
    bottom: 33px;
    top: initial;
}

.gallery-img {
    height: 448px;
    width: 100%;
    position: relative;
}

.gallery-img .img-primary {
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.gallery-img::after {
    content: '';
    background-image: url('../img/wood-pattern1.svg');
    background-size: cover;
    height: 221px;
    left: -150px;
    position: absolute;
    top: 70px;
    width: 569px;
    z-index: 0;
    opacity: .5;
}

.gallery-sub-img {
    margin-right: -75px;
    margin-top: -60px;
    z-index: 2;
    margin-left: auto;
    justify-content: flex-end;
    display: flex;
    align-items: center;
    padding: 0 10px;
    position: relative;
    width: 100%;
}

.sub-img {
    height: 120px;
    width: 120px;
    min-width: 120px;
    position: relative;
    margin: 0 10px 0 10px;
}

.sub-img .img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.apropos-content .right {
    display: flex;
    align-items: center;
    width: 50%;
    position: relative;
}

.apropos-content .right .right-content {
    padding-left: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -40px;
    text-align: left;
    width: 100%;
    padding-right: 20px;
    position: relative;
}

.apropos-content .right .right-content::before {
    content: '';
    background-image: url('../img/wood-pattern2.svg');
    background-size: cover;
    height: 221px;
    left: -107px;
    position: absolute;
    top: -84px;
    width: 569px;
    opacity: .7;
}

.sous-titre {
    font-family: Gilroy Bold;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
}

.titre {
    font-family: DMSDR;
    font-weight: 400;
    font-size: 42px;
    line-height: 58px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
}

.text {
    font-family: Gilroy Regular;
    font-size: 16px;
    line-height: 146.5%;
    text-align: center;
    color: var(--gray);
}

.text-justify {
    text-align: justify;
}

.apropos-btn {
    margin-top: 30px;
    display: flex;
}

.apropos-btn a {
    font-family: Gilroy SemiBold;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--green);
    border-radius: 25px 0px;
    padding: 17px 50px;
    transition: 0.3s all;
}

.apropos-btn a:hover {
    color: var(--white);
    background: var(--green);
    transition: 0.3s all;
}

/*===== Services =====*/

#services {
    background-color: var(--light-gray-2);
    padding: 80px 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.services-list {
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding: 0;
    flex-wrap: wrap;
    flex: 0 0 33.3333%;
}

.services-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 250px;
    margin: 2rem;
    flex-direction: column;
    transition: .2s;
}

.services-img {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 15px;
    background: var(--light-gray-2);
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.services-img img {
    margin: 0 auto;
    height: 100%;
    width: 30px;
}

.services-item h3 {
    font-family: DMSDR;
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 15px;
}

.services-item p {
    font-family: Gilroy Regular;
    font-size: 16px;
    line-height: 146.5%;
    text-align: center;
    color: var(--gray);
}

.services-btn {
    margin-top: 35px;
    display: flex;
    justify-content: center;
}

.services-btn a {
    font-family: Gilroy SemiBold;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--green);
    border-radius: 25px 0px;
    padding: 17px 50px;
    transition: 0.3s all;
}

.services-btn a:hover {
    color: var(--white);
    background: var(--green);
    transition: 0.3s all;
}

/*===== Bandeau de contact =====*/

#call-contact {
    background: url('../img/background-call-contact.png');
    background-attachment: fixed;
    background-size: cover;
    min-height: 26vh;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.titre-call-contact {
    font-family: DMSDR;
    font-weight: 400;
    font-size: 42px;
    line-height: 58px;
    text-transform: uppercase;
    color: var(--white);
}

.call-contact-btn {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.call-contact-btn a {
    font-family: Gilroy SemiBold;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 25px 0px;
    padding: 17px 50px;
    transition: 0.3s all;
}

.call-contact-btn a:hover {
    color: var(--black);
    background: var(--white);
    transition: 0.3s all;
}

/*===== Essences =====*/

#essences {
    background-color: var(--white);
    padding: 80px 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

#essences .container {
    max-width: 1500px;
}

.essences-list {
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding: 0;
    flex-wrap: wrap;
    flex: 0 0 33.3333%;
    margin-top: 50px;
}

.essences-item {
    margin: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.essences-item img {
    z-index: 2;
}

.essences-item::after {
    content: '';
    position: absolute;
    border: 1px solid var(--green);
    border-radius: 110px 0px;
    width: 243px;
    height: 330px;
    top: -20px;
    right: -20px;
    opacity: 0;
    transition: ease-in-out 0.3s;
}

.essences-item:hover::after {
    opacity: 1;
    transition: ease-in-out 0.3s;
}

.essences-item p {
    margin-top: 15px;
    font-family: DMSDR;
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    text-transform: uppercase;
    color: var(--black);
}

.descriptif {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.head-titre {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.head-titre-img {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 60px;
    padding: 15px;
    background: var(--white);
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.1);
}

.head-titre h3 {
    font-family: DMSDR;
    font-weight: 400;
    font-size: 32px;
    line-height: 44px;
    text-transform: uppercase;
    color: var(--black);
    margin-top: 15px;
}

.taille,
.volume {
    font-family: Gilroy SemiBold;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: var(--black);
    margin-top: 30px;
}

.green {
    color: var(--green);
}

.btn-schema {
    margin-top: 30px;
}

.btn-schema button {
    font-family: Gilroy SemiBold;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--green);
    border-radius: 25px 0px;
    padding: 17px 50px;
    background: transparent;
    transition: 0.3s all;
    cursor: pointer;
}

.btn-schema button:hover {
    color: var(--white);
    background: var(--green);
    transition: 0.3s all;
}

.prix {
    font-family: Gilroy Italic;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: var(--gray);
    margin-top: 25px;
}

/*===== Popup Volume =====*/

.modal-container {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-container.show {
    pointer-events: auto;
    opacity: 1;
}

.modal {
    background-color: var(--black);
    width: 1350px;
    max-width: 100%;
    box-shadow: 0px 0px 13px rgba(37, 37, 37, 0.35);
    border-radius: 110px 0px;
}

.modal-top,
.modal-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 70px;
}

.modal-top-left,
.modal-top-right,
.modal-bottom-left,
.modal-bottom-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 30px;
}

.modal-top-right,
.modal-bottom-right {
    flex-direction: row-reverse;
}

.modal p {
    font-family: Gilroy Bold;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: var(--white);
}

.modal-top-right p,
.modal-bottom-right p {
    margin-left: 50px;
}

.modal-top-left p,
.modal-bottom-left p {
    margin-right: 50px;
}

.modal-btn {
    margin-bottom: 40px;
}

.modal-btn button {
    font-family: Gilroy SemiBold;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 25px 0px;
    padding: 17px 50px;
    background: transparent;
    transition: 0.3s all;
    cursor: pointer;
}

.modal-btn button:hover {
    color: var(--black);
    background: var(--white);
    transition: 0.3s all;
}

/*===== Avis =====*/

.avis {
    background-color: var(--light-gray-2);
    padding: 80px 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.primary-content {
    font-family: Gilroy Regular;
    font-size: 16px;
    line-height: 146.5%;
    text-align: center;
    color: var(--gray);
    margin: 24px auto;
}

.reviews-name {
    font-family: Gilroy BoldItalic;
    font-size: 16px;
    line-height: 17px;
    color: var(--black);
}

#slider {
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
}

#slider input[type=radio] {
    display: none;
}

#slider label {
    cursor: pointer;
    text-decoration: none;
}

#slides {
    padding: 10px;
    position: relative;
    z-index: 1;
}

.slide-content {
    margin: 0 10px;
}

#overflow {
    width: 100%;
    overflow: hidden;
}

#slide1:checked~#slides .inner {
    margin-left: 0;
}

#slide2:checked~#slides .inner {
    margin-left: -100%;
}

#slide3:checked~#slides .inner {
    margin-left: -200%;
}

#slides .inner {
    transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    width: 400%;
    line-height: 0;
}

#slides .slide {
    width: 25%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: var(--white);
}

#controls {
    margin: -180px 0 0 0;
    width: 100%;
    height: 50px;
    z-index: 3;
    position: relative;
}

#controls label {
    transition: opacity 0.2s ease-out;
    display: none;
    width: 50px;
    height: 50px;
    opacity: .4;
}

#controls label:hover {
    opacity: 1;
}

#slide1:checked~#controls label:nth-child(2),
#slide2:checked~#controls label:nth-child(3),
#slide3:checked~#controls label:nth-child(4),
#slide4:checked~#controls label:nth-child(1) {
    float: right;
    margin: 0 -50px 0 0;
    display: block;
}

#slide1:checked~#controls label:nth-last-child(2),
#slide2:checked~#controls label:nth-last-child(3),
#slide3:checked~#controls label:nth-last-child(4),
#slide4:checked~#controls label:nth-last-child(1) {
    float: left;
    margin: 0 0 0 -50px;
    display: block;
}

#bullets {
    margin: 35px 0 0;
    text-align: center;
}

#bullets label {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background: var(--light-gray);
    margin: 0 7px;
}

#slide1:checked~#bullets label:nth-child(1),
#slide2:checked~#bullets label:nth-child(2),
#slide3:checked~#bullets label:nth-child(3),
#slide4:checked~#bullets label:nth-child(4) {
    background: var(--black);
}

/*===== Menu Responsive =====*/

.menu-responsive {
    display: none;
}

.menu {
    width: 70vw;
    height: 100vh;
    position: fixed;
    background-color: var(--white);
    box-shadow: 0 0 0 rgba(0, 0, 0, .5);
    top: 0;
    left: 30vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 99;
    transform: translateX(70vw);
    transition: .6s cubic-bezier(.6, 0, .4, 1);
}

.menu.menu-open {
    transform: translateX(0);
    box-shadow: 0 0 6rem rgba(0, 0, 0, .5);
}

.menu-container {
    margin-top: 12rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.menu-container p {
    font-size: 20px;
    font-family: Gilroy Medium;
    text-align: right;
    margin: 1rem 0;
    cursor: pointer;
    position: relative;
    color: var(--black);
    transition: .3s ease-in-out;
}

.menu-container p:hover {
    transform: translateX(-1rem);
}

.menu-container p:before {
    content: "";
    width: 0;
    height: .6em;
    bottom: 0;
    left: 100%;
    position: absolute;
    background-color: var(--green);
    z-index: -1;
    transition: .3s ease-in-out;
}

.menu-container p:hover:before {
    width: 100%;
    left: 0;
}

.menu-background {
    width: 100vw;
    height: 100vh;
    position: fixed;
    display: none;
    z-index: 98;
}

.menu-background.menu-open {
    display: block;
}

.hamburger {
    position: fixed;
    width: 30px;
    top: 4rem;
    right: 3rem;
    overflow: visible;
    cursor: pointer;
    z-index: 100;
}

.hamburger rect:nth-child(1),
rect:nth-child(2) {
    transition: .3s ease-in-out;
    transform-origin: 17px 6.5px;
    fill: var(--green);
}

.hamburger.menu-open rect:nth-child(1) {
    transform: translate(-3px, 5px) rotate(45deg);
}

.hamburger.menu-open rect:nth-child(2) {
    transform: translate(-3px, -5px) rotate(-45deg);
}

.nav-logo-responsive {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.nav-logo-responsive img {
    width: 100%;
    height: 70px;
}

/*===== Contact =====*/

#contact {
    min-height: 100vh;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--black);
    position: relative;
    padding: 80px 0;
}

#contact .container {
    max-width: 1500px;
}

.titre-white {
    color: var(--white);
}

.contact-content {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.contact-info {
    margin: 0 50px;
}

.contact-titre,
.infos-title {
    font-family: DMSDR;
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    text-transform: uppercase;
    color: var(--white);
}

.contact-subtitle {
    font-family: Gilroy Regular;
    font-size: 16px;
    line-height: 146.5%;
    text-align: center;
    color: var(--gray);
    margin-top: 10px;
}

.contact-bottom {
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.streetview {
    padding: 0 0 0 80px;
}

.infos-right {
    padding: 0 80px;
}

.infos-subtitle {
    font-family: Gilroy Regular;
    font-size: 16px;
    line-height: 146.5%;
    text-align: center;
    color: var(--white);
    margin-top: 10px;
}

.infos-subtitle-2 {
    font-family: Gilroy Regular;
    font-size: 16px;
    line-height: 146.5%;
    text-align: center;
    color: var(--white);
}

.green-horaires {
    color: var(--green);
}

.infos-content:nth-child(2) {
    margin-top: 50px;
}

/*===== Footer =====*/

.footer {
    background-color: var(--black-2);
    padding: 40px 0 0 0;
    min-height: 30vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container-row {
    display: flex;
    max-width: 1450px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    align-items: center;
    flex-direction: row;
}

.footer-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 50px;
}

.footer-right {
    width: 60%;
    display: flex;
}

.footer-content {
    font-family: Gilroy Regular;
    font-size: 16px;
    line-height: 146.5%;
    text-align: justify;
    color: var(--gray);
    width: 90%;
    margin-top: 25px;
}

.footer-right-list {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-right-list ul {
    padding: 0;
}

.footer-right-list ul li {
    text-align: left;
    margin-bottom: 5px;
}

.footer-right-list h3 {
    font-family: DMSDR;
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-right-list ul li p,
.footer-right-list ul li a {
    font-family: Gilroy Regular;
    font-size: 16px;
    line-height: 146.5%;
    color: var(--gray);
}

.paiement-livr {
    text-align: left;
    margin-top: 30px;
}

.paiement-livr span {
    font-family: Gilroy Regular;
    font-size: 14px;
    line-height: 146.5%;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 30px 0px;
    padding: 12px 35px;
}

.sub-footer {
    padding: 25px 0;
    background: var(--black-2);
}

.sub-footer p {
    font-family: Gilroy Regular;
    font-size: 16px;
    line-height: 146.5%;
    text-align: left;
    color: var(--gray);
}

/*===== MENTIONS LÉGALES =====*/

.mentions-title {
    padding-top: 50px;
    display: flex;
    justify-content: center;
}

.mentions-title h1 {
    font-family: DMSDR;
    font-weight: 400;
    font-size: 42px;
    line-height: 58px;
    text-transform: uppercase;
    color: var(--black);
}

.mentions {
    padding: 50px 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: justify;
}

.mentions .container {
    max-width: 1600px;
}

.mentions h2 {
    font-family: 'DMSDR';
    font-weight: 400;
    font-size: 32px;
    line-height: 44px;
    text-transform: uppercase;
    color: var(--black);
}

.mentions h3 {
    font-family: 'DMSDR';
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    text-transform: uppercase;
    color: var(--black);
}

.mentions p {
    font-family: Gilroy Medium;
    font-size: 16px;
    line-height: 146.5%;
    text-align: justify;
    color: var(--black);
}

.p-margin {
    margin-top: 10px;
}

.h2-margin {
    margin-top: 35px;
}

.h3-margin {
    margin-top: 10px;
}

.mentions a, .mentions span {
    font-family: Gilroy SemiBold;
    font-size: 16px;
    line-height: 146.5%;
    text-align: justify;
    color: var(--green);
}

.mentions-btn {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.mentions-btn a {
    font-family: Gilroy SemiBold;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--green);
    border-radius: 25px 0px;
    padding: 17px 50px;
    transition: 0.3s all;
}

.mentions-btn a:hover {
    color: var(--white);
    background: var(--green);
    transition: 0.3s all;
}