/**
*
* [Biz Design Solution]
*
* [Graphiste & Webdesigner]
*
* [Version 1.0 * 03/2024]
*
**/

/*************/
/* [Général] */
/*************/

*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    /* scrollbar-width: none; */
}

:root {
    /* Couleurs Principales */
    --color1: #FFFFFF; /* F5F5F7 */
    --color2: #111111;
    --color3: #16bed1;
    --color4: #292929;
    --color5: #FFD203;
    --color6: #26adc5; /* #16bed1; */
    --color7: #f5f3ef;

    /* Typographie */   
    --font1: 'Nunito', sans-serif;
    --font2: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font1);
    background-color: var(--color1);
    /* Overflow X */
    overflow-x: hidden;
    color: var(--color2);
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    opacity: 1;
}

b { font-weight: 500; }

strong { font-weight: 300; }

ul, nav, li { list-style: none;}

h1, h2, h3, h4, h5, h6 { font-weight: 400; }

h2 {
    font-family: var(--font2);
    color: var(--color2);
    font-size: 28px; 
    font-weight: 700;
    margin-bottom: 20px;
}

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

.centrage { margin: 0 auto; }

.italique {
    font-family: var(--font1);
    font-size: 16px;
    font-style: italic;
    color: var(--color2);
}

p {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 300;
}

@media screen and (max-width: 600px) {
    p { font-size: 16px; }
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
}

@media screen and (max-width: 600px) {
    .container { 
        padding-left: 20px;
        padding-right: 20px;
    }
}

.justify { text-align: justify; }

.section-title h1, .section-title h2 {
    padding-bottom: 20px;
    margin-bottom: 60px;
    position: relative;
}

.section-title h1::before, .section-title h2::before {
    content: '';
    content: '';
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 80px);
}

.section-title h1::after, .section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 30px;
    height: 3px;
    background: var(--color6);
    bottom: 0;
    left: calc(50% - 15px);
}

/***************/
/* [Scroll-UP] */
/***************/

#scroll-up {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 32px;
    bottom: 16px;
    z-index: 10;
    background: var(--color6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 1px;
    transition: all 0.4s;
}

#scroll-up img {
    width: 20px;
    color: var(--color1);
}

#scroll-up:hover {
    background: #16bed1;
    border: 2px solid #16bed1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

#scroll-up a {
    text-decoration: none;
}

@media all and (max-width: 1080px) {
    #scroll-up {
        display: none;
    }
}

@media all and (max-width: 880px) {  
    .scroll-down {
        display: none;
    }
}

/****************/
/* [Hover Zoom] */
/****************/

.hover-zoom { height: 100%; overflow: hidden; }  
.hover-zoom img { transition: transform 1s ease; }
.hover-zoom:hover img { transform: scale(1.05); overflow: hidden; }

/*************/
/* [Boutons] */
/*************/

.bubbly-button {
    font-family: var(--font1);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    font-size: 16px;
    padding: 16px 32px;
    margin-top: 60px;
    margin-bottom: 30px;
    appearance: none;
    background-color: var(--color6);
    color: #fff;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 25px rgba(0, 183, 255, 0.3);
}

.bubbly-button:hover {
    background-color: #16bed1;
}

.bubbly-button:focus { outline: 0; }

.bubbly-button:before, .bubbly-button:after {
    position: absolute;
    content: "";
    display: block;
    width: 140%;
    height: 100%;
    left: -20%;
    z-index: -1000;
    transition: all ease-in-out 0.5s;
    background-repeat: no-repeat;
}

.bubbly-button:before {
    display: none;
    top: -75%;
    background-image:   radial-gradient(circle, #1a97a5 20%, transparent 20%), 
                        radial-gradient(circle, transparent 20%, #1a97a5 20%, transparent 30%), 
                        radial-gradient(circle, #1a97a5 20%, transparent 20%), 
                        radial-gradient(circle, #1a97a5 20%, transparent 20%), 
                        radial-gradient(circle, transparent 10%, #1a97a5 15%, transparent 20%), 
                        radial-gradient(circle, #1a97a5 20%, transparent 20%), 
                        radial-gradient(circle, #1a97a5 20%, transparent 20%), 
                        radial-gradient(circle, #1a97a5 20%, transparent 20%), 
                        radial-gradient(circle, #1a97a5 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}

.bubbly-button:after {
    display: none;
    bottom: -75%;
    background-image:   radial-gradient(circle, #1a97a5 20%, transparent 20%), 
                        radial-gradient(circle, #1a97a5 20%, transparent 20%), 
                        radial-gradient(circle, transparent 10%, #1a97a5 15%, transparent 20%), 
                        radial-gradient(circle, #1a97a5 20%, transparent 20%), 
                        radial-gradient(circle, #1a97a5 20%, transparent 20%), 
                        radial-gradient(circle, #1a97a5 20%, transparent 20%), 
                        radial-gradient(circle, #1a97a5 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}

.bubbly-button:active {
    transform: scale(0.9);
    background-color: var(--color6);
    box-shadow: 0 2px 25px rgba(0, 183, 255, 0.3);
}

.bubbly-button.animate:before {
    display: block;
    animation: topBubbles ease-in-out 0.75s forwards;
}

.bubbly-button.animate:after {
    display: block;
    animation: bottomBubbles ease-in-out 0.75s forwards;
}

@keyframes topBubbles {
    0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
    }
    50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
    }
    100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

@keyframes bottomBubbles {
    0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
    }
    50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
    }
    100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

/******************/
/* [Subline-Menu] */
/******************/

.menu-active {
    background-color: var(--color6);
    padding: 0 25px;
    height: 70px;
    color: var(--color1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease-in-out;
}

.menu-active:hover {
    background-color: #16bed1;
}

.subline-menu {
    padding: 0 25px;
    height: 70px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;    
}

.subline-menu:hover {
    background-color: var(--color7);
    color: var(--color6);
}

/*****************/
/* [Toggle Menu] */
/*****************/

.toggle {
    position: fixed;
    z-index: 10;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    display: none;
}

.line {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color2);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.l1 {
    transform: translateY(-10px);
}

.l3 {
    transform: translateY(10px);
}

.open .toggle .l1 {
    transform: translateY(0px) rotate(135deg);
}
.open .toggle .l2 {
    opacity: 0;
}
.open .toggle .l3 {
    transform: translateY(0px) rotate(-135deg);
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.menu li {
    font-family: var(--font1);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu li:last-child {
    margin-right: 0;
}

@media all and (max-width: 991px) {
    .toggle {
        cursor: pointer;
        z-index: 2;
        display: inherit;
    }
    .menu {
        background: #f3f3f3;
        width: 100%;
        height: 100vh;
        position: absolute; 
        top: 0;
        right: 0;
        /* Menu Circle */
        clip-path: circle(0 at 100% 0);
        transition: all 0.5s ease-in-out;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    .open .menu {
        clip-path: circle(200% at 100% 0);
        transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
    }
    .menu li {
        margin-right: 0;
    }
    .menu li a {
        font-size: 24px;
        color: var(--color2);
        opacity: 0.7;
    }
    .menu li a:hover {
        font-size: 24px;
        color: var(--color2);
        opacity: 1;
    }
    .menu-active {
        background-color: transparent;
        color: var(--color1);
    }
    .menu-active:hover {
        background-color: transparent;
    }
    .subline-menu {
        background-color: transparent; 
    }    
    .subline-menu:hover {
        background-color: transparent;
        color: var(--color6);
    }
}

/************/
/* [Navbar] */
/************/

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 70px;
    background-color: var(--color1); 
    box-shadow: 0 1px 20px -1px rgba(0, 0, 0, 0.1); 
    z-index: 4;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: 70px;
    z-index: 3;
}

.company {
    display: flex;
    align-items: center;
    color: var(--color2);
    font-family: var(--font1);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.company-logo {
    z-index: 3;
}

.company-logo img {
    margin-right: 24px;
    width: 50px;
    animation: rotate 2.5s ease-in-out;
    animation-delay: 2.5s;
}

@keyframes rotate {
    100% {
        transform: rotatey(360deg);
    }
}

.company-logo a { opacity: 0.8; }

.company-logo a:hover { opacity: 1; }
.company-name { z-index: 1; }

@media all and (max-width: 400px) {  
    .company-name {
        display: none;
    }
}

/*************/
/* [Accueil] */
/*************/

.hero-home {
    background-color: var(--color7);
    width: 100vw;
    height: 470px;
    position: relative;
    overflow: hidden;
}

.bg-zoom-home {
    background: url(img/backgrounds/bg-home-plage.webp);
    background-size: cover;
    background-position: right;
    position: absolute;
    top: 0;
    left: 0;    
    width: 100vw;
    height: 470px;
    animation: zoom-in-zoom-out 30s ease-in-out infinite;  
    z-index: 1;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1.05);    
  }
  50% {
    transform: scale(1);    
  }
  100% {
    transform: scale(1.05);    
 }
}

.slogan-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 470px;
}

.slogan-container h1 {
    margin-top: 70px;
    z-index: 3;
    position: relative;
}

.h1-first {
    font-family: var(--font2);
    font-size: clamp(8px, 10vw, 16px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: var(--color1);
    display: inline-block;
    position: absolute;
    left: 100px;
    top: -20px;
}

.h1-first::before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 70px;
    height: 1px;
    background: #ddd;
    top: 8px;
    left: -90px;
}

.h1-bis { 
    display: block; 
    font-family: var(--font2);
    color: var(--color1);
    text-transform: uppercase;
    font-size: clamp(20px, 10vw, 100px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 10px;
}

.color-title { color: var(--color6); }

@media all and (max-width:1000px) {
    .h1-first {
        font-size: clamp(10px, 5vw, 16px);
        left: 5px;
    }
    .h1-first::before {
        width: 0;
    }
}

/*******************/
/* [Ray-Light-Sun] */
/*******************/

.sun { 
    position: absolute;
    top: 120px;
    right: 100px;
    margin: auto;  
    width: 70px;
    height: 70px;
    border-radius: 50%;	
    background:white;
    opacity: 0.9;			
    box-shadow: 0px 0px 40px 15px white;  
    z-index: 2;
}

.ray_box {
    position: absolute;
    margin: auto;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;	
    width: 70px;  
    animation: ray_anim 120s linear infinite;
}
.ray {  
    background: linear-gradient(to top, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0.8) 50%, 
                rgba(255,255,255,0) 100%); 
    margin-left: 10px;
    border-radius: 80% 80% 0 0;
    position: absolute;
    opacity: 0.1;
}

.ray1 {    
    height: 170px;
    width: 30px;
    transform: rotate(180deg);
    top: -175px;
    left: 15px;
}

.ray2 {
    height: 100px;
    width: 8px;
    transform: rotate(220deg);
    top: -90px;
    left: 75px;
}

.ray3 {
    height: 170px;
    width: 28px;
    transform: rotate(250deg);
    top: -80px;
    left: 100px;
}

.ray4 {
    height: 120px;
    width: 14px;
    transform: rotate(305deg);
    top: 30px;
    left: 100px;
}

.ray5 {
    height: 140px;
    width: 30px;
    transform: rotate(-15deg);
    top: 60px;
    left: 40px;
}

.ray6 {
    height: 90px;
    width: 32px;
    transform: rotate(30deg);
    top: 60px;
    left: -40px;
}

.ray7 {
    height: 180px;
    width: 10px;
    transform: rotate(70deg);
    top: -35px;
    left: -40px;
}

.ray8 {
    height: 120px;
    width: 30px;
    transform: rotate(100deg);
    top: -45px;
    left: -90px;
}

.ray9 {
    height: 80px;
    width: 10px;
    transform: rotate(120deg);
    top: -65px;
    left: -60px;
}

.ray10 {
    height: 190px;
    width: 23px;
    transform: rotate(150deg);
    top: -185px;
    left: -60px;
}  

@keyframes ray_anim { 
    0% { transform: rotate(0deg); transform: rotate(0deg);}    
    100% { transform: rotate(360deg); transform: rotate(360deg);}
}

/***********/
/* [About] */
/***********/

.bg-zoom-about {
    background: url(img/backgrounds/bg-about.webp);
    background-size: cover;
    background-position: bottom center;
    position: absolute;
    top: 0px;
    left: 0;    
    width: 100vw;
    height: 470px;
    animation: zoom-in-zoom-out 30s ease-in-out infinite;
    z-index: 1;
}

.about {
    padding-top: 160px;
    padding-bottom: 20px;
}

.about-container {
    color: var(--color2);
}

.about h2 {
    font-family: var(--font2);
    color: var(--color4);
    text-transform: uppercase;
    font-size: clamp(30px, 10vw, 60px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 10px;
    text-align: center;
}

.h2-mini {
    font-family: var(--font2);
    font-size: clamp(16px, 5vw, 18px);
}

.about p {
    font-size: 20px;
    line-height: 1.2;
}

.about-block {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
}

.about-block-text {
    width: 47%;
}

.about-block .button {
    margin-top: 50px;
}

@media all and (max-width: 1000px) {  
    .about-block {
        flex-direction: column;
    }
    .about-block-text {
        width: 100%;
        margin-bottom: 50px;
    }
    .about-block .button {
        margin: 50px auto 0;
    }
}

/*****************/
/* [Hover-Cards] */
/*****************/

.hovercards-container {
    margin-top: 80px;
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px; 
}

.add-button {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.add-button img { 
    width: 24px !important;
    height: auto !important;
}

.hovercards:hover .add-button {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}    

.hovercards-photo-1 { grid-area: 1 / 1 / 2 / 2; }
.hovercards-photo-2 { grid-area: 1 / 2 / 2 / 3; }
.hovercards-photo-3 { grid-area: 1 / 3 / 2 / 4; }
.hovercards-photo-4 { grid-area: 1 / 4 / 2 / 5; } 

.hovercards {
    width: 100%;
    height: auto;
    max-height: 525px;
    position: relative;
    overflow: hidden;
    box-sizing: content-box;
}

.hovercards img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 5s ease-in-out;
}

.hovercard-title {
    margin-top: 20px;
}

.hovercards h3 {
    padding-top: 20px;
    font-family: var(--font2);
    font-weight: 500;
    color: var(--color1);
    text-transform: uppercase;
}

.hovercard-details {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(182, 182, 182, 0.3);
    backdrop-filter: blur(16px) saturate(120%);
    transition: 0.3s ease-in-out;    
    color: #fff;
    z-index: 0;
}
    
.hovercards:hover .hovercard-details {
    bottom: 0;
    transition: 0.7s ease-in-out;
}

.hovercard-text {
    width: 100%;
    padding: 30px;
    font-family: var(--font2);
    color: var(--color1);
}

.hovercard-text p {
    font-size: 16px;
    font-weight: 500;
}

@media all and (max-width: 1000px) {
    .hovercards-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 2fr;
        gap: 10px;
    }
    .hovercard-details { height: auto; }
    .hovercard-photo-1 { grid-area: 1 / 1 / 2 / 2; }
    .hovercard-photo-2 { grid-area: 1 / 2 / 2 / 3; }
    .hovercard-photo-3 { grid-area: 2 / 1 / 3 / 2; }
    .hovercard-photo-4 { grid-area: 2 / 2 / 3 / 3; } 
}

@media all and (max-width: 600px) {
    .hovercard-details { height: 100%; }
}

@media all and (max-width: 500px) {
    .hovercards-container {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: 4fr;
        gap: 10px;
    }
    .hovercard-details { height: auto; }
    .hovercard-photo-1 { grid-area: 1 / 1 / 2 / 2; }
    .hovercard-photo-2 { grid-area: 2 / 1 / 3 / 2; }
    .hovercard-photo-3 { grid-area: 3 / 1 / 4 / 2; }
    .hovercard-photo-4 { grid-area: 4 / 1 / 5 / 2; } 
}

/********************/
/* [Call-To-Action] */
/********************/

.cta {
    background: #fafafa;
    clip-path: polygon(50% 5%, 52% 0, 100% 0, 100% 100%, 0 100%, 0 0, 48% 0);
    margin-top: 160px;
    padding: 100px 0;
    width: 100%;
    position: relative;
    color: var(--color2);
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-container p {
    font-size: 20px;
    line-height: 1.2;
}

.cta-block-g { width: 70%; }
.cta-block-d { width: 30%; }

@media all and (max-width: 1000px) {
    .cta { padding: 100px 0 40px;}
    .cta-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }
    .cta-block-g { width: 100%; }
    .cta-block-d { width: 100%; }
}

@media all and (max-width: 500px) {
    .cta {
        clip-path: initial;
    }
}


/****************/
/* [Map-France] */
/****************/

.map-france {
    padding-top: 160px;
    padding-bottom: 20px;
    overflow-x: hidden;
}

.map-france h2 {
    font-family: var(--font2);
    text-transform: uppercase;
    font-size: clamp(30px, 10vw, 60px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 10px;
    text-align: center;
}

.map-france p {
    font-size: 20px;
    line-height: 1.2;
}

.map-container {
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 10px;
}

.map-block {
    width: 45%;
    padding: 30px;
    border-radius: 2px;
    /* background: rgba(204, 204, 204, 0.1); */
}

.map-block img { 
    width: 100%; 
}

.map-block h3 { 
    margin-bottom: 20px;
    text-transform: uppercase;
    height: 52px;
    font-weight: 600;
}

.villes-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.ville-block {
    display: flex;
    justify-content: center;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 300;
    margin: 3px 50px;
}

.check {
    color: var(--color6);
    margin-right: 15px;
    font-size: 18px;
}

@media all and (max-width: 1000px) {
    .map-container { 
        flex-direction: column; 
    }
    .map-block {
        width: 100%;
        margin-bottom: 50px;
        justify-self: center;
        padding: 0;
    }   
    .villes-container {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(5, 1fr); 
        place-content: center;
        place-items: start;
    }
    .ville-block:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
    .ville-block:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
    .ville-block:nth-child(3) { grid-area: 3 / 1 / 4 / 2; }
    .ville-block:nth-child(4) { grid-area: 4 / 1 / 5 / 2; }
    .ville-block:nth-child(5) { grid-area: 5 / 1 / 6 / 2; }
    .ville-block:nth-child(6) { grid-area: 1 / 2 / 2 / 3; }
    .ville-block:nth-child(7) { grid-area: 2 / 2 / 3 / 3; }
    .ville-block:nth-child(8) { grid-area: 3 / 2 / 4 / 3; }
    .ville-block:nth-child(9) { grid-area: 4 / 2 / 5 / 3; }
    .ville-block:nth-child(10) { grid-area: 5 / 2 / 6 / 3; } 
}

@media all and (max-width: 630px) {
    .villes-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(10, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px; 
    }
    .ville-block:nth-child(1) { grid-area: initial; }
    .ville-block:nth-child(2) { grid-area: initial; }
    .ville-block:nth-child(3) { grid-area: initial; }
    .ville-block:nth-child(4) { grid-area: initial; }
    .ville-block:nth-child(5) { grid-area: initial; }
    .ville-block:nth-child(6) { grid-area: initial; }
    .ville-block:nth-child(7) { grid-area: initial; }
    .ville-block:nth-child(8) { grid-area: initial; }
    .ville-block:nth-child(9) { grid-area: initial; }
    .ville-block:nth-child(10) { grid-area: initial; } 
}

/******************/
/* [Nos-Services] */
/******************/

.bg-zoom-services {
    background: url(img/backgrounds/bg-services.webp);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;    
    width: 100vw;
    height: 470px;
    animation: zoom-in-zoom-out 30s ease-in-out infinite;  
    z-index: 1;
}

/******************/
/* [Nos-Formules] */
/******************/

.formules-table {
    margin-top: 80px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    row-gap: 100px;
}

.formules-bonus { display: none;}

.formules-card {
    color: #555;
    background-color: #fafafa;
    width: 32%;
    min-width: 160px;
    max-width: 360px;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    cursor: default;
}

.formules-card h2 {
    color: #ffffff;
    font-family: var(--font2);
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.formules-card-title {
    margin-bottom: 50px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    transition: all 0.5s ease-in-out;
}

.formules-card-title img {
    width: 50px;
    opacity: 1;
    position: absolute;
    transform: translateX(-50%);
    transition: all 0.5s ease-in-out;
}

.formules-card:hover .formules-card-title img {
    width: 70px;
    translate: -50% -70%;
    transform: rotate(80deg);
    opacity: 1;
}

.formules-card-ribbon {
    position: relative;
    padding: 35px 20px;
    margin: 0 -12px 32px;
    transform: skew(0, -10deg);
    border-radius: 3px 0;
    box-shadow: 0 32px 20px -32px #666666;
    translate: 0 150px;
    transition: all 0.5s ease-in-out;
    z-index: 3;
}
                       
.formules-card:hover .formules-card-ribbon {
    translate: 0 40px;
}

.formules-card-ribbon:before,
.formules-card-ribbon:after {
    width: 0;
    height: 0;
    border-style: solid;
    content: "";
    position: absolute;
}

.formules-card-ribbon:before {
    border-width: 0 12px 12px 0;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
}

.formules-card-ribbon:after {
    border-width: 12px 0 0 12px;
    right: 0;
    top: 0;
    transform: translateY(-100%);
}

.ribbon-1 { background-color: #ec7b30; background-image: linear-gradient(315deg, #db8953 0%, #ecaa30 74%);}
.ribbon-2 { background-color: #dadada; background-image: linear-gradient(315deg, #e2e2e2 0%, #cecece 74%);}
.ribbon-3 { background-color: #FFD700; background-image: linear-gradient(315deg, #FFD700 0%, #ecdc05 74%); }
.ribbon-4 { background-color: #26ADC5; background-image: linear-gradient(315deg, #26ADC5 0%, #4bc4da 74%); }

.ribbon-1:before { border-color: transparent #e07024 transparent transparent; }
.ribbon-2:before { border-color: transparent #c5c5c5 transparent transparent; }
.ribbon-3:before { border-color: transparent #d6ba18 transparent transparent; }
.ribbon-4:before { border-color: transparent #16BED1 transparent transparent; }

.ribbon-1:after { border-color: transparent transparent transparent #e07024; }
.ribbon-2:after { border-color: transparent transparent transparent #c5c5c5; }
.ribbon-3:after { border-color: transparent transparent transparent #d6ba18; }
.ribbon-4:after { border-color: transparent transparent transparent #157485; }

.formules-card-ribbon-text {
    font-family: var(--font2);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color1);
    display: block;
    transform: skew(0, 10deg);
    transform: rotateX(-10deg);
    text-align: center;
}

.formules-card-details {
    margin-bottom: 10px;
    font-family: var(--font1);
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    padding: 40px 40px 0;
    text-align: left;
    z-index: 2;
}

.formules-card-block {
    display: flex;
    justify-content: left;
    align-items: stretch;
    margin: 10px 0;
}

.formules-card .check {
    color: var(--color2);
    margin-right: 15px;
    font-size: 18px;
    opacity: 0.6;
}

.ou {
    margin: 10px;
}

.formules-text {
    margin-top: 120px;
}

.formules-text p {
    font-size: 20px;
    line-height: 1.2;
}

.formules-circle {
    position: absolute;
    right: -15px;
    bottom: 15px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: var(--color1);
    border: 2px solid rgba(34, 34, 34, 0.5);
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.formules-angle-up img {
    width: 14px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 0.3s ease-in-out;
    opacity: 0.3;
}

.formules-circle:hover {
    cursor: pointer;
    border: 2px solid rgba(34, 34, 34, 0.8);
}

.formules-circle:hover img {
    opacity: 0.8;
}

@media all and (max-width: 1300px) {
    .formules-table {
        justify-content: space-evenly;
    }    
    .formules-card {
        width: 40%;
        max-width: 600px;
    }  
    .formules-bonus { 
        display: initial;
    }
}

@media all and (max-width: 885px) {  
    .formules-card {
        width: 100%;
        max-width: 500px;
        min-height: 400px;
    }  
    .formules-bonus { 
        display: initial;
    }
}

@media all and (max-width: 380px) {  
    .formules-card-details {
        font-size: 16px;
        line-height: 1.5;
        padding: 40px 20px 0;
    }
}


/*********************/
/* [Etats-Des-Lieux] */
/*********************/

.etat-des-lieux {
    padding-top: 160px;
    padding-bottom: 20px;
}

.etat-des-lieux h2 {
    font-family: var(--font2);
    text-transform: uppercase;
    font-size: clamp(30px, 10vw, 60px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 10px;
    text-align: center;
}

.etat-des-lieux p {
    font-size: 20px;
    line-height: 1.2;
}

.etat-des-lieux-container {
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 10px;
}

.etat-des-lieux-container img { 
    width: 100%; 
    height: auto;
    min-height: 300px;
    object-fit: cover;
    object-position: right;
    margin: 20px auto;
    transition: all 0.3s ease-in-out;
}

/********************/
/* [Contact-Footer] */
/********************/

.contact {
    margin-bottom: 150px;
}

.contact-container {
    color: var(--color2);
}

.contact h2 {
    font-family: var(--font2);
    color: var(--color4);
    text-transform: uppercase;
    font-size: clamp(30px, 10vw, 60px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 10px;
    text-align: center;
}

.contact p {
    font-size: 20px;
    line-height: 1.2;
}

.contact-mentions {
    font-size: 16px !important;
    line-height: 1.2; 
    color: var(--color2) !important;
    margin-left: 10px;
}

.contact-block {
    display: flex;
    justify-content: space-between;
}

.contact-block-c { width: 100%; }
.contact-block-g { width: 68%; }
.contact-block-d { width: 28%; align-self: center; justify-self: center;}
.contact-block .button { margin: 0 auto;}

@media all and (max-width: 1000px) {  
    .contact-block {
        flex-direction: column;
    }
    .contact-block-g {
        width: 100%;
        margin-bottom: 50px;
    }
    .contact-block-d {
        width: 100%;
      }
}

/************/
/* [Footer] */
/************/

.bg-footer {
    background-color: var(--color7);
    color: var(--color2);
    padding: 32px 0;
}

.footer-container {
    font-size: 16px;
    display: flex;
    justify-content:space-between;
    padding: 0 50px;
}

.copyright-g {
    display: flex;
    justify-content: center;
}

.copyright-d {
    padding-left: 20px;
}

.footer-container a {
    transition: 0.3s;
    color: var(--color2);
    opacity: 0.8;
}

.footer-container a:hover {
    transition: 0.3s;
    color: var(--color2);
    opacity: 1;
}

.footer-container p {
    margin-top: 0;
    margin-bottom: 0 !important;
}

@media screen and (max-width: 1400px) {
    .footer-container {
        justify-content: center;
    }
}

@media screen and (max-width: 1200px) {
    .footer-container {
        justify-content:space-evenly;
    }
}

@media all and (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        justify-content: space-between;
    }    
    .footer-block:first-child {
        padding-bottom: 16px;
    }
    .copyright-d {
        padding-left: 0;
    }
}

@media all and (max-width: 580px) {
    .copyright-g {
        flex-direction: column;
    }
    .footer-cookies {
        padding: 16px 0;
    }
}

/*****************/
/* [Nos-Valeurs] */
/*****************/

.valeurs {
    padding-top: 160px;
    padding-bottom: 20px;
}

.valeurs h2 {
    font-family: var(--font2);
    text-transform: uppercase;
    font-size: clamp(30px, 10vw, 60px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 10px;
    text-align: center;
}

.valeurs p {
    font-size: 20px;
    line-height: 1.2;
}

.valeurs-container {
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 10px;
}

.valeurs-block {
    width: 32%;
    padding: 30px;
    border-radius: 2px;
    background: rgba(204, 204, 204, 0.1);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease-in-out;
    cursor: default;
}

.valeurs-block:hover {
    transform: translateY(-10px);
    background: var(--color6);
    color: var(--color1);
}

.valeurs-block img { 
    width: 64px; 
    margin: 20px auto;
    transition: all 0.3s ease-in-out;
}

.valeurs-block:hover img {
    transform: translateY(-10px);
    filter: invert(100%);
}


.valeurs-block h3 { 
    font-family: var(--font2);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.valeurs-image img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
    object-position: center;
    margin-top: 20px;
    margin-bottom: 100px;
    transition: all 0.3s ease-in-out;
}

@media all and (max-width: 1000px) {
    .valeurs-block {
        width: 48%;
        margin-bottom: 50px;
    }    
}

@media all and (max-width: 700px) {
    .valeurs-block {
        width: 100%;
        margin-bottom: 0;
    }    
}

/********************/
/* [Nous-Contacter] */
/********************/

.bg-zoom-contact {
    background: url(img/backgrounds/bg-contact.webp);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;    
    width: 100vw;
    height: 470px;
    animation: zoom-in-zoom-out 30s ease-in-out infinite;  
    z-index: 1;
}

.bg-contact {
    margin: 0 auto;
    color: var(--color2);
    padding-top: 100px;
    padding-bottom: 100px;
}

.bg-contact h2 {
    font-family: var(--font2);
    color: var(--color4);
    text-transform: uppercase;
    font-size: clamp(30px, 10vw, 60px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 10px;
    text-align: center;
}

.bg-contact p {
    font-size: 20px;
    line-height: 1.2;
  }

#contact-form {
    /* margin-top: 80px; */
    /* margin-bottom: 80px; */
    padding-top: 100px;
}
  
.formulaire {
    max-width: 900px;
    margin: 0 auto;
}

.formulaire-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    /* margin: 25px 0; */
}

/* Nom et Prénom */
.form-flex-1 {
    width: 50%;
    padding: 10px 10px 10px 0;
    align-self: stretch;
}

/* Téléphone */
.form-flex-2 {
    width: 50%;
    padding: 10px 0 10px 10px;
    align-self: stretch;
}

/* Email */
.form-flex-3 {
    width: 50%;
    padding: 10px 10px 10px 0;
    align-self: stretch;
}

/* Type de demande */
.form-flex-4 {
    width: 50%;
    padding: 10px 0 10px 10px;
    align-self: stretch;
}

/* Honeypot Trappe */
.trappe {display: none;}

/* Votre Message */
.form-flex-5 {
    width: 100%;
    padding: 10px 0;
}

/* Bouton Envoyer */
.form-flex-6 {
    width: 100%;
    padding: 25px 0;
}

/* Valeurs et Options du Formulaire */

textarea:hover, 
input:hover, 
textarea:active, 
input:active, 
textarea:focus, 
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
select,
.btn:active,
.btn.active
{
    outline: 0px;
    appearance:none;
    box-shadow: none;
}

.bg-contact-form {
    margin: 0 auto;
    color: var(--color2);
    font-family: var(--font1);
}

.bg-contact-form label {
    color: var(--color3);
    padding: 10px 0;
}

.bg-contact-form input::placeholder {
    opacity: 0.5;
    color: var(--color4);
}

.bg-contact-form input:focus::placeholder {
  color: var(--color1);
}

/* Option Value Select Items */

.bg-contact-form input {
    background: transparent;
    font-family: var(--font1);
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    color: var(--color2);
    outline: none;
    border: 1px solid var(--color4);
    padding: 12px;
    width: 100%;
}

.bg-contact-form input:hover {
    border: 1px solid var(--color3);
    color: var(--color2);
    cursor: pointer;
    background: transparent;
    border-radius: 0;
    outline: 1px solid var(--color3);
    padding: 12px;
}

.bg-contact-form input:focus {
    border: 1px solid var(--color3);
    color: var(--color1);
    font-weight: 700;
    cursor: pointer;
    background: var(--color3);
    border-radius: 0;
    outline: 2px solid var(--color3);
    padding: 12px;
    transition: 0.3s;
}

.bg-contact-form option {
    appearance: none;
    outline: none;
    background: var(--color3);
    border-radius: 0;
    border: 1px solid var(--color3);
    padding: 12px;
    transition: 0.3s;
    color: var(--color1);
}

.bg-contact-form select {
    background: transparent;
    font-family: var(--font1);
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    color: var(--color4);
    outline: none;
    border: 1px solid var(--color4);
    padding: 12px;
    width: 100%;
}

.bg-contact-form select:hover {
    border: 1px solid var(--color6);
    color: var(--color6);
    cursor: pointer;
    border-radius: 0;
    outline: 1px solid var(--color3);
    padding: 12px;
}

.bg-contact-form select:focus {
    border: 1px solid var(--color3);
    color: var(--color2);
    font-weight: 500;
    cursor: pointer;
    border-radius: 0;
    outline: none;
    padding: 12px;
    transition: 0.3s;
}

.bg-contact-form textarea {
    background: transparent;
    font-family: var(--font1);
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    outline: none;
    border: 1px solid var(--color4);
    padding: 12px;
    color: var(--color2);
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    resize: none;
}

.bg-contact-form textarea:hover {
    border: 1px solid var(--color3);
    cursor: pointer;
    background: transparent;
    border-radius: 0;
    outline: none;
    padding: 12px;
    outline: 1px solid var(--color3);
}

.bg-contact-form textarea:focus {
    border: 1px solid var(--color3);
    color: var(--color1);
    cursor: pointer;
    background: var(--color3);
    border-radius: 0;
    outline: 2px solid var(--color3);
    padding: 12px;
    transition: 0.3s;
}

.button-disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Custom Checkbox */

.checkbox-contact {
    display: flex;
    justify-content: center;
    align-items: start;
    column-gap: 10px;
}

.checkbox-contact input[type="checkbox"] {
    display: none;
    visibility: hidden;
}

.checkbox-contact .cbx {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}
.checkbox-contact .cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}
.checkbox-contact .cbx span {
    position: relative;
    width: 24px;
    height: 24px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid var(--color2);
    transition: all 0.2s ease;
}
.checkbox-contact .cbx span svg {
    position: absolute;
    top: 6px;
    left: 5px;
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}
.checkbox-contact .cbx span:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color3);
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}

.checkbox-contact .cbx:hover span {
    border-color: var(--color3);
}

.checkbox-contact .input-cbx:checked + .cbx span {
    background: var(--color3);
    border-color: var(--color3);
    animation: wave-46 0.4s ease;
}
.checkbox-contact .input-cbx:checked + .cbx span svg {
    stroke-dashoffset: 0;
}
.checkbox-contact .input-cbx:checked + .cbx span:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
}

@keyframes wave-46 {
    50% {
    transform: scale(0.9);
    }
}  

/* Bouton Input */

.bouton-input input {
    font-family: var(--font1);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    font-size: 16px;
    padding: 16px 32px;
    appearance: none;
    background-color: var(--color6);
    color: #fff;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 25px rgba(0, 183, 255, 0.3);
    width: 150px;
}

.bouton-input {
    font-family: var(--font1);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    font-size: 16px;
    padding: 16px 32px;
    margin-bottom: 30px;
    appearance: none;
    background-color: var(--color6);
    color: #fff;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 25px rgba(0, 183, 255, 0.3);
}

.bouton-input:hover {
    background-color: #16bed1;
}

.bouton-input:focus { outline: 0; }

.formulaire .bubbly-button {
    margin-top: 20px;
    margin-bottom: 20px;
  }

/* Alert Ajax Formulaire */

.alert {
    position: relative;
    padding: 16px 16px;
    margin-top: 16px;
    margin-bottom: 16px;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: .280px;
}

.alert-success {
    color: white;
    background-color: #136841 !important;
    border: none !important;
    border-radius: 0 !important;
}

.alert-dismissable {
    color: white;
}

.alert-danger {
    color: white;
    background-color: #b91d1d !important;
    border: none !important;
    border-radius: 0 !important;
}

label {
    color: #333;
}

.help-block.with-errors {
    color: #ff5050;
    margin-top: 10px;
    font-size: 14px;
}
  
/* Bouton croix fermer */

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.close:focus, .close:hover {
    color: white;
    text-decoration: none;
    opacity: .75;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    appearance: none;
}

[type="reset"], [type="submit"], button, html [type="button"] {
    /* Erreur CSS */
    /* appearance: button; */
    appearance: none;
}

.close {
    float: right;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: white;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

/* Media Queries Formulaire */

@media all and (max-width: 600px) {
    .form-flex-1 {
        width: 100%;
        padding: 10px 0;
    }
    .form-flex-2 {
        width: 100%;
        padding: 10px 0;
    }
    .form-flex-3 {
        width: 100%;
        padding: 10px 0;
    }
    .form-flex-4 {
        width: 100%;
        padding: 10px 0;
    }
}


/**********************/
/* [Mentions Légales] */
/**********************/

.mentions-titre h1 {
    font-family: var(--font2);
    text-transform: uppercase;
    font-weight: 600;
    font-size: clamp(30px, 10vw, 60px);
    letter-spacing: 3px;
    padding-bottom: 20px;
    text-align: center;
}

.bg-mentions {
    background-color: var(--color1);
    color: var(--color2);
    margin-bottom: 200px;
}

.mentions-legales {
    font-family: var(--font1) !important;
    font-size: 16px;
    max-width: 1300px;
}

.bg-mentions h2 {
    font-family: var(--font1);
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    padding: 40px 20px;
    font-weight: normal;
}

.mentions-legales h3 {
    font-family: var(--font1);
    font-size: 16px;
    color: var(--color6);
    font-weight: bold;
    margin: 10px 0;
    text-transform: capitalize;
}

.mentions-legales h4 {
    font-family: var(--font1);
    font-size: 16px;
    color: var(--color6);
    font-weight: bold;
    margin: 10px 0;
    text-transform: capitalize;
}

.mentions-legales hr {
    color: transparent;
    border-style: none;
    border-top: 1px dashed var(--color4);
    margin: 20px 0 30px;
}

.mentions-legales b {
    font-family: var(--font1);
    color: var(--color2);
    font-weight: bold;
}

.mentions-legales p {
    color: var(--color2);
    font-family: var(--font1);
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    margin: 10px 0;
}

.mentions-legales a {
    color: var(--color2);
    opacity: 0.9;
    transition: 0.3s ease-in-out;
}

.mentions-legales a:hover {
    color: var(--color2);
    opacity: 1;
    transition: 0.3s ease-in-out;
}
/* ===== Page Partenaires ===== */
.partners {
    padding: 40px 0 100px;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.partner-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}
.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}
.partner-logo {
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.partner-logo img {
    max-height: 80px;
    max-width: 80%;
    width: auto;
    object-fit: contain;
}
.partner-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: #1c1c1c;
}
.partner-desc {
    font-family: 'Nunito', sans-serif;
    font-size: 0.98rem;
    line-height: 1.55;
    color: #555;
    margin: 0 0 22px;
    flex-grow: 1;
}
.partner-link {
    display: inline-block;
    padding: 10px 22px;
    border: 1.5px solid #1c1c1c;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1c1c1c;
    text-decoration: none;
    transition: background .25s ease, color .25s ease;
}
.partner-link:hover {
    background: #1c1c1c;
    color: #fff;
}

.become-partner {
    padding: 60px 0 120px;
}
.become-partner-container {
    max-width: 760px;
    margin: 0 auto;
}
.become-partner-container p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    margin: 18px 0 32px;
}

@media (max-width: 900px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
    .partners-grid { grid-template-columns: 1fr; gap: 20px; }
    .partners { padding: 20px 0 60px; }
    .become-partner { padding: 30px 0 80px; }
}
