/*===== FONTS =====*/

@font-face {
    font-family: General Sans Regular;
    src: url('../assets/fonts/GeneralSans-Regular.otf');
}

@font-face {
    font-family: General Sans Medium;
    src: url('../assets/fonts/GeneralSans-Medium.otf');
}

@font-face {
    font-family: General Sans Semibold;
    src: url('../assets/fonts/GeneralSans-Semibold.otf');
}

@font-face {
    font-family: General Sans Bold;
    src: url('../assets/fonts/GeneralSans-Bold.otf');
}

/*===== VARIABLES =====*/

:root {
    /*----- Fonts -----*/
    --font-gen-reg: General Sans Regular;
    --font-gen-med: General Sans Medium;
    --font-gen-sem: General Sans Semibold;
    --font-gen-bol: General Sans Bold;

    /*----- Colors -----*/
    --clr-brand-950: #0B2814;
    --clr-brand-900: #1D4A2A;
    --clr-accent: #E34248;
    --clr-assist: #8F8C79;
    --clr-neutral-50: #FFFFFF;
    --clr-black: #0A0A0A;


    --clr-light-70: rgba(245, 242, 239, 70%);
    --clr-light-50: rgba(245, 242, 239, 50%);
    --clr-light-40: rgba(245, 242, 239, 40%);
    --clr-light-20: rgba(245, 242, 239, 20%);
    --clr-green-15: rgba(4, 25, 20, 15%);
    --clr-bg-btn-primary: #434D48;
    --clr-bg-btn-secondary: #E5E0DC;
    --clr-green-text-70: rgba(4, 25, 20, 0.7);

}

/*===== RESET =====*/

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

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

body {
    min-height: 100dvh;
}

main {
    width: 100%;
}

.text-bold {
    font-family: var(--font-gen-sem);
    font-weight: 700;
}

/*====== ACCUEIL ======*/

.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1600px;
    padding: 0 7rem;
    position: relative;
}

header {
    width: 100%;
    background: var(--clr-brand-900);
    z-index: 99;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.primary-header {
    width: 100%;
    background: var(--clr-brand-950);
    border-radius: 24px 24px 0 0;
}

.nav-secondary {
    display: flex;
    justify-content: flex-end;
    padding: .75rem 7rem;
}

.nav-secondary ul {
    display: flex;
    gap: 1.5rem;
}

.nav-secondary ul li a {
    font-size: .75rem;
    color: var(--clr-neutral-50);
    font-family: var(--font-gen-reg);
    font-weight: 400;
}

.nav-primary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 7rem;
}

.nav-primary ul {
    display: flex;
    gap: 1.5rem;
}

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

.logo img {
    height: 36px;
}

.nav-primary ul li {
    position: relative;
    transition: all 0.1s ease-in-out;
    cursor: pointer;
}

.nav-primary ul li a {
    color: var(--clr-neutral-50);
    font-family: var(--font-gen-reg);
    font-size: 1rem;
    font-weight: 400;
}

.primary-header.secondary {
    background: var(--clr-bg-btn-secondary);
}

.nav-primary.secondary ul li a {
    color: var(--clr-green-text-70);
}

.nav-primary ul li::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -6px;
    left: 0;
    background-color: var(--clr-accent);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-primary ul li:hover {
    cursor: pointer;
}

.nav-primary ul li:hover::after {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.hero {
    padding: 8rem 0 8rem 0;
    background: var(--clr-brand-950);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.hero-content .titles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-content .titles h1 {
    font-family: var(--font-gen-med);
    font-weight: 500;
    color: var(--clr-neutral-50);
    font-size: 3rem;
    line-height: 135%;
}

.hero-content .titles p {
    font-family: var(--font-gen-reg);
    font-weight: 400;
    color: var(--clr-light-70);
    font-size: 1rem;
    line-height: 165%;
    width: 50%;
}

.button-row {
    display: flex;
    position: relative;
    width: 100%;
}

.button-row.center {
    justify-content: end;
}

.button {
    cursor: pointer;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    outline: 0;
    border-radius: 99999px;
    white-space: nowrap;
}

.arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 3.75em;
    height: 3.75em;
    border-radius: 50%;
    transform: rotate(0.001deg);
}

.button .arrow {
    transition: transform .5s cubic-bezier(.3, 1, .3, 1);
}

.button .arrow.first {
    transform: scale(0) rotate(0.001deg);
    transform-origin: left;
}

.button.primary .arrow.first .fill {
    background: var(--clr-neutral-50);
}

.button.secondary .arrow.first .fill {
    background: var(--clr-accent);
}

.arrow .fill {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.button.primary .arrow.first .arrow-content {
    color: var(--clr-brand-950);
}

.button.secondary .arrow.first .arrow-content {
    color: var(--clr-neutral-50);
}

.arrow .arrow-content {
    width: 1.4em;
    position: relative;
    display: flex;
    transform: rotate(0.001deg);
    transition: transform .5s cubic-bezier(.3, 1, .3, 1);
}

.button-content {
    position: relative;
    height: 3.75em;
    transform: translateX(-3.75em) rotate(0.001deg);
    transition: transform .5s cubic-bezier(.3, 1, .3, 1);
}

.button.primary .button-content .fill {
    background: var(--clr-bg-btn-primary);
}

.button.secondary .button-content .fill {
    background: var(--clr-bg-btn-secondary);
}

.button-content .fill {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 2.125em;
    top: 0;
    left: 0;
}

.button-content .button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 2em;
    font-family: var(--font-gen-reg);
    font-weight: 400;
    font-size: 1rem;
    position: relative;
    border-radius: 999px;
}

.button.primary .button-content .button-text p {
    transition: .5s cubic-bezier(.3, 1, .3, 1);
    color: var(--clr-neutral-50);
}

.button.secondary .button-content .button-text p {
    transition: .5s cubic-bezier(.3, 1, .3, 1);
    color: var(--clr-brand-950);
}

.button .arrow.second {
    position: absolute;
    z-index: 2;
    right: 0;
    transform: scale(1) rotate(0.001deg);
    transform-origin: right;
}

.button.primary .arrow.second .fill {
    background: var(--clr-accent);
}

.button.secondary .arrow.second .fill {
    background: var(--clr-brand-950);
}

.button.primary .arrow.second .arrow-content {
    color: var(--clr-neutral-50);
}

.button.secondary .arrow.second .arrow-content {
    color: var(--clr-neutral-50);
}

.button:hover .arrow.first {
    transform: scale(1) rotate(0.001deg);
}

.button:hover .button-content {
    transform: translateX(0em) rotate(0.001deg);
}

.button:hover .arrow.second {
    transform: scale(0) rotate(0.001deg);
}

.button:hover .arrow .arrow-content {
    transform: rotate(-45deg);
}

.line-decoration {
    right: calc(10vw + 5vw);
    bottom: 0;
    height: calc(100% + 6em);
    position: absolute;
    aspect-ratio: 14 / 44;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}

.line-decoration .line {
    height: 101.5%;
    width: 1px;
    background: var(--clr-light-20);
    position: absolute;
    transform: rotate(-9deg);
}

.line-decoration .line:nth-child(1) {
    left: 74.5%;
}

.line-decoration .line:nth-child(2) {
    left: 24.5%;
}

.line-decoration .line:nth-child(3) {
    transform: rotate(9deg);
    left: 74.5%;
}

.background-image {
    width: 100%;
    height: 1000px; 
    background-image: url('../assets/img/BandeauAccueil.webp');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    margin: 0;
    padding: 0;
    z-index: 999;
    position: relative;
}

.background-about {
    background-image: url('../assets/img/BandeauApropos.webp');
}

.valeurs, .about, .artisans, .news {
    padding: 8rem 0 8rem 0;
}

.valeurs {
    position: relative;
    background: var(--clr-brand-950);
}

.valeurs::after {
    content: "";
    position: absolute;
    top: calc(100%);
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--clr-brand-950);
    z-index: -1;
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.75rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.valeurs-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.valeurs-card svg {
    color: var(--clr-assist);
    width: 2.5rem;
    height: 2.5rem;
    font-weight: 300;
}

.valeurs-card h3 {
    font-family: var(--font-gen-med);
    font-weight: 500;
    font-size: 1.75rem;
    color: var(--clr-neutral-50);
}

.valeurs-card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.valeurs-card p {
    font-family: var(--font-gen-reg);
    font-weight: 400;
    font-size: 1rem;
    color: var(--clr-light-70);
    line-height: 165%;
}

.about {
    background: var(--clr-neutral-50);
    border-radius: 24px 24px 0 0;
    position: relative;
}

.about::after {
    content: "";
    position: absolute;
    top: calc(100%);
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--clr-neutral-50);
    z-index: -1;
}

.about-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 8rem;
}

.about-img {
    width: 100%;
}

.about-img img {
    border-radius: 8px;
    height: 700px;
    object-fit: cover;
}

.about-content-details {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.about-content .titles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-content .titles h2 {
    color: var(--clr-brand-950);
    font-size: 2.25rem;
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.about-content .titles p {
    color: var(--clr-green-text-70);
    font-size: 1rem;
    font-family: var(--font-gen-reg);
    font-weight: 400;
    line-height: 165%;
}

.divider {
    height: 1px;
    background: var(--clr-green-15);
    margin: 6.25rem 0 6.25rem 0;
}

/* .about .about-content:last-child {
    flex-direction: row;
} */

.artisans {
    position: relative;
    background: var(--clr-brand-950);
    border-radius: 24px 24px 0 0;
}

.artisans::after {
    content: "";
    position: absolute;
    top: calc(100%);
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--clr-brand-950);
    z-index: -1;
}

.artisans-content {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.artisans-content h2 {
    color: var(--clr-neutral-50);
    font-size: 2.25rem;
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.artisans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem 3.75rem;
}

.artisans-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.artisans-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.artisans-categories .artisans-divider {
    height: 1px;
    background: var(--clr-light-20);
}

.artisans-content h3 {
    color: var(--clr-neutral-50);
    font-size: 1.75rem;
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.artisans-card ul {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.artisans-card ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.artisans-card ul li a span {
    color: var(--clr-light-50);
    font-size: 1rem;
    font-family: var(--font-gen-med);
    font-weight: 500;
    transition: .2s all;
}

.artisans-card ul li a:hover span {
    color: var(--clr-neutral-50);
}

.button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 999px;
    white-space: nowrap;
}

.bi-arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 2.25em;
    height: 2.25em;
    border-radius: 50%;
    transition: transform .5s cubic-bezier(.3, 1, .3, 1);
}

.button-icon .bi-arrow.first {
    transform: scale(0) rotate(0.001deg);
    transform-origin: left;
}

.artisans-card ul li a:hover .button-icon .bi-arrow.first {
    transform: scale(1) rotate(0.001deg);
}

.button-icon .bi-arrow.first .fill {
    border: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--clr-accent);
    transition: transform .5s cubic-bezier(.3, 1, .3, 1);
}

.button-icon .bi-arrow.first .bi-arrow-content {
    color: var(--clr-neutral-50);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(0.001deg);
    transition: transform .5s cubic-bezier(.3, 1, .3, 1);
    width: 1.25rem;
    height: 1.25rem;
}

.button-icon .bi-arrow.second {
    transform: scale(1) rotate(0.001deg);
    transform-origin: right;
}

.artisans-card ul li a:hover .button-icon .bi-arrow.second {
    transform: scale(0) rotate(0.001deg);
}

.button-icon .bi-arrow.second {
    position: absolute;
    z-index: 2;
    right: 0;
    width: 2.25em;
    height: 2.25em;
    transition: transform .5s cubic-bezier(.3, 1, .3, 1);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.button-icon .bi-arrow.second .fill {
    border: 1px solid var(--clr-light-20);
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    transition: transform .5s cubic-bezier(.3, 1, .3, 1);
}

.button-icon .bi-arrow.second .bi-arrow-content {
    color: var(--clr-neutral-50);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(0.001deg);
    transition: transform .5s cubic-bezier(.3, 1, .3, 1);
    width: 1.25rem;
    height: 1.25rem;
}

.artisans-card ul li a:hover .button-icon .bi-arrow .bi-arrow-content {
    transform: rotate(-45deg);
}

.news {
    border-radius: 24px;
    background-color: var(--clr-neutral-50);
    position: relative;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    row-gap: 4rem;
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.news-content h2 {
    color: var(--clr-brand-950);
    font-size: 2.25rem;
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.news-img img {
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.news-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.news-content-details {
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

.news-content-details .tag span {
    font-size: .875rem;
    font-family: var(--font-gen-reg);
    font-weight: 400;
    color: var(--clr-green-text-70);
}

.news-content-details h4 {
    font-size: 1.25rem;
    color: var(--clr-brand-950);
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.news-details-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: .75rem;
}

.news-details-bottom .date {
    font-size: 1rem;
    font-family: var(--font-gen-reg);
    font-weight: 400;
    color: var(--clr-green-text-70);
}

.button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 999px;
    white-space: nowrap;
}

.bt-arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 2.25em;
    height: 2.25em;
    border-radius: 50%;
    transition: transform .5s cubic-bezier(.3, 1, .3, 1);
}

.button-form .bt-arrow {
    width: 36px;
    height: 36px;
}

.button-text .bt-arrow.first {
    transform: scale(0) rotate(0.001deg);
    transform-origin: left;
}

.button-text .bt-arrow.first .fill {
    background: var(--clr-accent);
    border: 0;
}

.bt-arrow .fill {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform .5s cubic-bezier(.3, 1, .3, 1);
}

.button-text .bt-arrow.first .bt-arrow-content {
    color: var(--clr-neutral-50);
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform .5s cubic-bezier(.3, 1, .3, 1);
}

.bt-content {
    height: 2.25em;
    transform: translateX(-2.25em) rotate(0.001deg);
    position: relative;
    transition: transform .5s cubic-bezier(.3, 1, .3, 1);
}

.button-form .bt-content {
    height: 36px;
    transform: translateX(-36px) rotate(0.001deg);
}

.bt-content .fill {
    background: transparent;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 2.125em;
    top: 0;
    left: 0;
}

.bt-content .bt-content-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 .5em;
    position: relative;
    border-radius: 1000em;
}

.bt-content .bt-content-text span {
    font-size: 1rem;
    font-family: var(--font-gen-reg);
    font-weight: 400;
    color: var(--clr-green-text-70);
}

.button-form .bt-content .bt-content-text span {
    color: var(--clr-neutral-50);
}

.button-text .bt-arrow.second {
    position: absolute;
    z-index: 2;
    right: 0;
    transform: scale(1) rotate(0.001deg);
    transform-origin: right;
    transition: transform .5s cubic-bezier(.3, 1, .3, 1);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.button-text .bt-arrow.second .fill {
    background: transparent;
    border: 1px solid var(--clr-green-15);
}

.button-form .bt-arrow.second .fill {
    background: transparent;
    border: 1px solid var(--clr-light-20);
}

.button-text .bt-arrow.second .bt-arrow-content {
    color: var(--clr-brand-950);
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform .5s cubic-bezier(.3, 1, .3, 1);
}

.button-form .button-text .bt-arrow.second .bt-arrow-content {
    color: var(--clr-neutral-50);
}

.news-card:hover .button-text .bt-arrow.first, .contact-form .button-text:hover .bt-arrow.first {
    transform: scale(1) rotate(0.001deg);
}

.news-card:hover .button-text .bt-content, .contact-form .button-text:hover .bt-content {
    transform: translateX(0em) rotate(0.001deg);
}

.news-card:hover .button-text .bt-arrow.second, .contact-form .button-text:hover .bt-arrow.second {
    transform: scale(0) rotate(0.001deg);
}

.footer-top {
    background: var(--clr-brand-900);
    padding: 6.25rem 0;
    border-radius: 0 0 24px 24px;
    position: relative;
}

.footer-top::after {
    content: "";
    position: absolute;
    bottom: calc(100%);
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--clr-brand-900);
    z-index: -1;
}

.footer-top-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-top .footer-logo {
    display: flex;
    align-items: center;
}

.footer-top .footer-logo img {
    height: 40px;
}

.footer-navigation {
    display: flex;
    gap: 4.5rem;
}

.footer-navigation nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-navigation nav span {
    font-size: 1.125rem;
    color: var(--clr-light-40);
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.footer-navigation nav ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-navigation nav ul li a {
    font-size: 1rem;
    color: var(--clr-neutral-50);
    font-family: var(--font-gen-reg);
    font-weight: 400;
}

.contact-details {
    display: flex;
    gap: 7.5rem;
}

.adress {
    display: flex;
    gap: .75rem;
}

.adress svg {
    color: var(--clr-light-40);
}

.adress p {
    font-size: 1rem;
    color: var(--clr-neutral-50);
    font-family: var(--font-gen-reg);
    font-weight: 400;
}

.direct-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.direct-contact a {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.direct-contact a svg {
    color: var(--clr-light-40);
}

.direct-contact a span {
    font-size: 1rem;
    color: var(--clr-neutral-50);
    font-family: var(--font-gen-reg);
    font-weight: 400;
}

.footer-bottom {
    background: var(--clr-brand-950);
    padding: 1.5rem 0;
    position: relative;
}

.footer-bottom::after {
    content: "";
    position: absolute;
    bottom: calc(100%);
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--clr-brand-950);
    z-index: -1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content .left, .footer-bottom-content .right ul {
    display: flex;
    gap: 1rem;
}

.footer-bottom-content .left a, .footer-bottom-content .right ul li a {
    font-size: .75rem;
    color: var(--clr-neutral-50);
    font-family: var(--font-gen-reg);
    font-weight: 400;
}

.footer-bottom-content .left p {
    font-size: .75rem;
    color: var(--clr-light-50);
    font-family: var(--font-gen-reg);
    font-weight: 400;
}

.apropos .valeurs {
    border-radius: 24px 24px 0 0;
}

.titles.secondary h1 {
    color: var(--clr-brand-950);
}

.titles.secondary p {
    color: var(--clr-green-text-70);
}

.hero.secondary {
    background: var(--clr-bg-btn-secondary);
}

.line-decoration.secondary .line {
    background: var(--clr-green-15);
}

.artisans-page, .news-page {
    background: var(--clr-bg-btn-secondary);
    padding-bottom: 8rem;
    position: relative;
}

.news-page {
    border-radius: 0 0 24px 24px;
}

.artisans-page::after {
    content: "";
    position: absolute;
    top: calc(100%);
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--clr-bg-btn-secondary);
    z-index: -1;
}

.news-page::after {
    content: "";
    position: absolute;
    top: calc(100%);
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--clr-bg-btn-secondary);
    z-index: -1;
}

.artisans-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    row-gap: 4rem;
}

.artisans-page-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.artisans-page-card-img img {
    height: 440px;
    object-fit: cover;
    border-radius: 8px;
}

.artisans-page-card-details {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.artisans-page-card-details h3 {
    font-size: 1.75rem;
    color: var(--clr-brand-950);
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.artisans-page-card-details span {
    font-size: 1rem;
    color: var(--clr-green-text-70);
    font-family: var(--font-gen-reg);
    font-weight: 400;
}

.filters {
    padding: 0 0 3.75rem 0;
    background: var(--clr-bg-btn-secondary);
}

.filters-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filters-content p {
    font-size: 1rem;
    color: var(--clr-brand-950);
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.filters-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filters-button {
    display: inline-block;
    padding: 0.8125rem 1.5rem;    
    background-color: transparent;
    color: var(--clr-brand-950);
    font-size: 1rem;
    font-family: var(--font-gen-reg);
    font-weight: 400;
    transition: all 0.2s;
    border: 1px solid var(--clr-green-15);
    outline: none;
    cursor: pointer;
    border-radius: 999px;
}

.filters-button.active {
    outline: none;
    background-color: var(--clr-brand-950);
    color: var(--clr-neutral-50);
}

.one-artisans {
    background: var(--clr-bg-btn-secondary);
    padding: 8rem 0;
    position: relative;
}

.one-artisans::after {
    content: "";
    position: absolute;
    top: calc(100%);
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--clr-bg-btn-secondary);
    z-index: -1;
}

.one-artisans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
}

.one-artisans-img img {
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
}

.one-artisans-details .titles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.one-artisans-divider {
    margin-top: 3rem;
    height: 1px;
    background: var(--clr-green-15);
}

.one-artisans-details .titles h1 {
    font-family: var(--font-gen-med);
    font-weight: 500;
    color: var(--clr-brand-950);
    font-size: 3rem;
    line-height: 135%;
}

.one-artisans-details .titles span {
    font-family: var(--font-gen-med);
    font-weight: 500;
    color: var(--clr-assist);
    font-size: 1.5rem;
}

.one-artisans-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.one-artisans-details .bottom {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.one-artisans-details .bottom .socials {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.one-artisans-details .bottom .socials .socials-top {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-direction: column;
}

.socials-card {
    display: flex;
    gap: .25rem;
    align-items: center;
}

.socials-card p {
    font-family: var(--font-gen-reg);
    color: var(--clr-green-text-70);
    font-size: 1rem;
    font-weight: 400;
}

.socials-card span,  .socials-card a {
    font-family: var(--font-gen-med);
    color: var(--clr-brand-950);
    font-size: 1rem;
    font-weight: 500;
}

.socials-bottom {
    display: flex;
    align-items: center;
}

.socials-bottom a {
    font-family: var(--font-gen-med);
    color: var(--clr-brand-950);
    font-size: 1rem;
    font-weight: 500;
    margin-right: 1rem;
}

.socials-bottom:last-child {
    margin-right: 0;
}

.one-artisans-details .bottom p, .one-artisans-details .titles p {
    font-family: var(--font-gen-reg);
    color: var(--clr-green-text-70);
    font-size: 1rem;
    font-weight: 400;
    line-height: 165%;
}

.artisans-works {
    background: var(--clr-neutral-50);
    padding: 8rem 0;
    position: relative;
    border-radius: 24px;
}

.artisans-works h2 {
    color: var(--clr-brand-950);
    font-size: 2.25rem;
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.artisans-works-content {
    display: flex;
    gap: 3.75rem;
    flex-direction: column;
}

.artisans-works-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

.artisans-works-img.large {
    grid-column: span 2;
}

.artisans-works-img.large img {
    height: 1000px;
}

.artisans-works-img img {
    object-fit: cover;
    border-radius: 8px;
}

.one-evenements {
    background: var(--clr-bg-btn-secondary);
    padding: 8rem 0;
    position: relative;
    border-radius: 0 0 24px 24px;
}

.one-evenements::after {
    content: "";
    position: absolute;
    top: calc(100%);
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--clr-bg-btn-secondary);
    z-index: -1;
}

.one-evenements-content .titles {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.one-evenements-divider {
    height: 1px;
    background: var(--clr-green-15);
}

.one-evenements-content .titles h1 {
    font-family: var(--font-gen-med);
    font-weight: 500;
    color: var(--clr-brand-950);
    font-size: 3rem;
    line-height: 135%;
}

.one-evenements-content .details {
    padding: 3rem 0 3rem 0;
    display: flex;
    gap: 2.25rem;
}

.one-evenements-content .middle {
    padding-bottom: 5rem;
}

.one-evenements-content .middle img {
    border-radius: 8px;
}

.one-evenements-content .bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
}

.one-evenements-content .bottom h4 {
    font-size: 1.25rem;
    color: var(--clr-brand-950);
    font-family: var(--font-gen-med);
    font-weight: 500;
    margin-bottom: 1rem;
}

.one-evenements-content .bottom p, .paragraph-intro {
    font-size: 1rem;
    color: var(--clr-green-text-70);
    font-family: var(--font-gen-reg);
    font-weight: 400;
    line-height: 165%;
}

.paragraph-intro {
    margin-bottom: 4rem;
    width: 70%;
}

.one-evenements-content .bottom img {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.contact-page {
    position: relative;
    padding: 8rem 0;
    background: var(--clr-bg-btn-secondary);
}

.contact-page::after {
    content: "";
    position: absolute;
    top: calc(100%);
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--clr-bg-btn-secondary);
    z-index: -1;
}

.contact-page-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6.25rem;
}

.contact-page-content h1 {
    font-family: var(--font-gen-med);
    font-weight: 500;
    color: var(--clr-brand-950);
    font-size: 3rem;
    line-height: 135%;
}

.contact-page-divider {
    margin: 2rem 0 3rem 0;
    height: 1px;
    background: var(--clr-green-15);
}

.contact-page-fast {
    display: flex;
    gap: 5rem;
}

.contact-page-fast .adress {
    display: flex;
    gap: .75rem;
}

.contact-page-fast .adress svg {
    color: var(--clr-assist);
}

.contact-page-fast .adress p {
    font-size: 1rem;
    color: var(--clr-brand-950);
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.contact-page-fast .direct-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-page-fast .direct-contact a {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: fit-content;
}

.contact-page-fast .direct-contact a svg {
    color: var(--clr-assist);
}

.contact-page-fast .direct-contact a span {
    font-size: 1rem;
    color: var(--clr-brand-950);
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.contact-page-content .right {
    background: var(--clr-brand-950);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 3rem;
}

.contact-form {
    width: 100%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.row {
    display: flex;
    gap: 2rem;
}

.details-cell, .message {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 50%;
}

.message {
    width: 100%;
}

.details-cell label, .message label {
    font-size: 1rem;
    color: var(--clr-neutral-50);
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.details-cell label span, .message label span {
    font-size: 1rem;
    color: var(--clr-accent);
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.details-cell input {
    height: 45px;
    color: var(--clr-neutral-50);
    background-color: transparent;
    border: 1px var(--clr-light-20);
    border-bottom: 1px solid var(--clr-light-20);
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    font-family: var(--font-gen-reg);
    font-size: 1rem;
    font-weight: 400;
    outline: none;
    width: 100%;
}

.message textarea {
    color: var(--clr-neutral-50);
    background-color: transparent;
    border: 1px var(--clr-light-20);
    border-bottom: 1px solid var(--clr-light-20);
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    font-family: var(--font-gen-reg);
    font-size: 1rem;
    font-weight: 400;
    outline: none;
    width: 100%;
    resize: none;
}

.details-cell input::placeholder, .message textarea::placeholder {
    color: var(--clr-light-50);
    font-family: var(--font-gen-reg);
    font-weight: 400;
}

button.button-text {
    background: transparent;
    border: none;
    cursor: pointer;
}

.button-form {
    display: flex;
    justify-content: flex-end;
}

.menu-mobile {
    display: none;
}

.menu-mobile .menu {
    width: 2.6em;
    height: 2.6em;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--clr-brand-900);
}

.menu-background {
    z-index: 199;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000bf;
    position: fixed;
    visibility: hidden;
    opacity: 0;
    transition: .5s cubic-bezier(.7, 0, .3, 1);
}

.menu-background.active {
    visibility: visible;
    opacity: 1;
}

.menu-mobile-content {
    top: 0;
    left: clamp(1em, 4vw, 2.5em);
    right: clamp(1em, 4vw, 2.5em);
    bottom: 0;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transition: .5s cubic-bezier(.7, 0, .3, 1);
    transform: translateY(-1em) scale(1) rotate(0.001deg);
    position: fixed;
    display: flex;
    justify-content: center;
    pointer-events: none;
    padding: clamp(1em, 4vw, 2.5em) 0;
    height: 100vh;
    align-items: flex-start;
    padding-top: 20vh;
}

.menu-mobile-content.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0em) scale(1) rotate(0.001deg);
}

.menu-mobile-block {
    background: var(--clr-neutral-50);
    border-radius: 12px;
    pointer-events: all;
    position: relative;
    width: min(100%, 18em);
    padding: 1.5em 1.5em 2em 2.25em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.menu-mobile-block .title {
    display: flex;
    justify-content: space-between;
    align-items: center; 
}

.menu-mobile-block .title p {
    color: var(--clr-green-text-70);
    font-size: .85rem;
    font-family: var(--font-gen-reg);
    font-weight: 400;
}

.menu-mobile-block .title .close {
    width: 2.6em;
    height: 2.6em;
    border-radius: 50%;
    border: 1px solid rgba(4, 25, 20, 0.25);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    flex-grow: 0;
}

.menu-mobile-block .title .close svg {
    width: 1.3em;
}

.menu-mobile-block nav ul li {
    display: flex;
    width: 100%;
    padding-right: 1.3em;
}

.menu-mobile-block nav ul li a {
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
    padding: 0.5em 0;
}

.menu-mobile-block nav ul li a span {
    font-size: 1.15rem;
    color: var(--clr-brand-900);
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.menu-mobile-block nav ul li.active a span  {
    color: var(--clr-accent);
}

.menu-mobile-block nav ul li.active a::after {
    content: "";
    position: absolute;
    right: 0;
    width: 0.4em;
    height: 0.4em;
    background: var(--clr-accent);
    border-radius: 1em;
    transform: translateX(50%);
}

.lieu {
    position: relative;
    padding: 8rem 0;
    background: var(--clr-brand-950);
    border-radius: 24px 24px 0 0;
}

.lieu::after {
    content: "";
    position: absolute;
    top: calc(100%);
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--clr-brand-950);
    z-index: -1;
}

.lieu-content {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.lieu-content .left img {
    object-fit: cover;
    height: 560px;
    border-radius: 8px;
}

.lieu-content .right {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    width: 80%;
}

.lieu-content .right .title h2 {
    color: var(--clr-neutral-50);
    font-size: 2.25rem;
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.lieu-content .right .paragraphs {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
}

.lieu-content .right .paragraphs .details {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.lieu-content .right .paragraphs .details p:nth-child(1) {
    color: var(--clr-neutral-50);
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.lieu-content .right .paragraphs .details p:nth-child(2) {
    color: var(--clr-light-70);
    font-family: var(--font-gen-reg);
    font-weight: 400;
    line-height: 165%;
}

.maps iframe {
    border-radius: 24px;
    height: 1000px;
}

.legals {
    padding: 0 0 8rem 0;
    background: var(--clr-bg-btn-secondary);
    border-radius: 0 0 24px 24px;
}

.legals-details h2 {
    margin-bottom: 1rem;
    color: var(--clr-brand-950);
    font-size: 2.25rem;
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.legals-details h3 {
    margin-bottom: 1rem;
    color: var(--clr-brand-950);
    font-size: 1.5rem;
    font-family: var(--font-gen-med);
    font-weight: 500;
}

.legals-details p {
    font-family: 1rem;
    color: var(--clr-green-text-70);
    font-family: var(--font-gen-reg);
    line-height: 165%;
}

.legals-details p a {
    color: var(--clr-);
    font-family: var(--font-gen-med);
}

.legals-details .margin-top {
    margin-top: 1rem;
}

.legals-details h3.margin-top {
    margin-top: 2rem;
}

.legals-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

