/*
Theme Name: Renaud Restauration
Theme URI: https://idizbox.com
Author: iDizBox
Author URI: https://idizbox.com
Description: By iDizBox - 2026
Version: 1.00
Text Domain: idbxboostrap1
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --white: #FFFFFF;
    --black: #3C2D17;
    --black-rgb: 60, 45, 23;
    --color-bg : #FFFFFF;
    --orange : #B35C2D;
    --orange_hover : #d16429;
    --orange_semilight : #CD9375;
    --orange_light : #F4E7E0;
    --green : #9FA07E;
    --green_hover : #B0B181;
    --green_semilight : #B0B194;
    --green_light : #E2E2D8;
    --yellow : #D1A139;
    --yellow_hover : #B0B181;
    --yellow_semilight : #DDBC70;
    --yellow_light : #F1E3C3;
}


html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: clip;
/*    overflow-y: visible !important;*/
}

body {
    background-color: var(--color-bg);
    color: var(--black);
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    position: relative;
}

.mobile_only {
    display: none;
}

:focus {
    outline: 0!important;
}

a, a:visited, a:focus {
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.mb_10 { margin-bottom: 10px; }
.mb_15 { margin-bottom: 15px; }
.mb_20 { margin-bottom: 20px; }
.mb_25 { margin-bottom: 25px; }
.mb_30 { margin-bottom: 30px; }
.mb_40 { margin-bottom: 40px; }
.mb_50 { margin-bottom: 50px; }
.mb_60 { margin-bottom: 60px; }
.mt_10 { margin-top: 10px; }
.mt_15 { margin-top: 15px; }
.mt_20 { margin-top: 20px; }
.mt_25 { margin-top: 25px; }
.mt_30 { margin-top: 30px; }
.mt_40 { margin-top: 40px; }
.mt_50 { margin-top: 50px; }
.mt_60 { margin-top: 60px; }

.pb_10 { padding-bottom: 10px; }
.pb_15 { padding-bottom: 15px; }
.pb_20 { padding-bottom: 20px; }
.pb_25 { padding-bottom: 25px; }
.pb_30 { padding-bottom: 30px; }
.pb_40 { padding-bottom: 40px; }
.pb_50 { padding-bottom: 50px; }
.pb_60 { padding-bottom: 60px; }
.pt_10 { padding-top: 10px; }
.pt_15 { padding-top: 15px; }
.pt_20 { padding-top: 20px; }
.pt_25 { padding-top: 25px; }
.pt_30 { padding-top: 30px; }
.pt_40 { padding-top: 40px; }
.pt_50 { padding-top: 50px; }
.pt_60 { padding-top: 60px; }

.page_standard {
    padding-top: 86px;
}

.pos_rel {
    position: relative;
}

h1, .h1 {
    font-size: 52px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0;
}

h2, .h2 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0;
}

h1.h1_smaller {
    font-size: 40px;
}

h2.h2_smaller {
    font-size: 34px;
    line-height: 1.2;
}

.p_div p:last-of-type {
    margin-bottom: 0;
}

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

.btn, .btn:active, .btn:visited, .btn:focus {
    background-color: var(--orange);
    color: var(--white);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    padding: 11px 30px;
    border-radius: 100px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border: 2px solid var(--orange);
    transition: all 0.2s ease;
}

.btn:hover {
    color: var(--white);
    background-color: var(--orange_hover);
}

.btn_outline_orange, .btn_outline_orange:active, .btn_outline_orange:visited, .btn_outline_orange:focus {
    background-color: transparent;
    color: var(--orange);
}

.btn_outline_orange:hover {
    color: var(--white);
    background-color: var(--orange_hover);
}

.btn_green, .btn_green:active, .btn_green:visited, .btn_green:focus {
    background-color: var(--green);
    color: var(--white);
    border: 2px solid var(--green);
}

.btn_green:hover {
    color: var(--white);
    background-color: var(--green_hover);
}

.btn_smaller, .btn_smaller:active, .btn_smaller:visited, .btn_smaller:focus {
    font-size: 14px;
}

.color_black {
    color: var(--black);
}

.color_orange {
    color: var(--orange);
}

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

.bg_orange {
    background-color: var(--orange);
}

.bg_orange_light {
    background-color: var(--orange_light);
}

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

.bg_green_light {
    background-color: var(--green_light);
}

.bg_yellow {
    background-color: var(--yellow);
}

.bg_yellow_light {
    background-color: var(--yellow_light);
}

.tag {
    background-color: var(--orange_semilight);
    display: inline-block;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    padding: 6px 15px;
}

.tag_orange_semilight {
    background-color: var(--orange_semilight);
}

.tag_green_semilight {
    background-color: var(--green_semilight);
}

.tag_yellow_semilight {
    background-color: var(--yellow_semilight);
}

/************************************/
/************************************/
/*             NAVBAR               */
/************************************/
/************************************/

.navbar {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--color-bg);
    border-bottom: 0;
}

.navbar-expand-xl .navbar-nav {
    gap: 30px;
}

.navbar-logo {
    height: 56px;
    width: auto;
}

.navbar-expand-xl .navbar-nav .nav-link {
    padding: 0;
    color: var(--black);
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.navbar-expand-xl .navbar-nav .nav-link.active, .navbar-expand-xl .navbar-nav .nav-link:hover {
    color: var(--orange);
}

.navbar-toggler {
    border: 0;
    padding: 0;
    position: absolute;
    right: 15px;
    top: 16px;
}

.navbar-toggler span {
    display: block;
    background-color: var(--black);
    height: 3px;
    width: 30px;
    margin-top: 5px;
    margin-bottom: 6px;
    position: relative;
    left: 0;
    opacity: 1;
    transition: all 0.35sease-out;
    transform-origin: center left;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler span:nth-child(1) {
    transform: translate(0%, 0%) rotate(0deg);
}

.navbar-toggler span:nth-child(2) {
    opacity: 1;
}

.navbar-toggler span:nth-child(3) {
    transform: translate(0%, 0%) rotate(0deg);
}

.navbar-toggler span:nth-child(1) {
    margin-top: 0.3em;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translate(15%, -33%) rotate(45deg);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translate(15%, 33%) rotate(-45deg);
    margin-top: 7px;
}

#navbar-bg {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    pointer-events: none;
    background: #000000;
    z-index: 300;
    -webkit-transition: opacity 1.5s ease-out .1s,visibility 1.5s ease-out .1s;
    transition: opacity 1.5s ease-out .1s,visibility 1.5s ease-out .1s;
    opacity: 0;
    visibility: hidden;
}

body.navbar-on #navbar-bg {
    visibility: visible;
    opacity: .5;
    pointer-events: auto;
    -webkit-transition-timing-function: cubic-bezier(0.19,1,0.22,1);
    transition-timing-function: cubic-bezier(0.19,1,0.22,1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    cursor: pointer;
    z-index: 1029;
}

.btn_nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12.5px 30px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .2s ease;
    font-family: 'Poppins', sans-serif;
}

.btn_nav_outline {
    color: var(--orange);
    border: 2px solid var(--orange);
    background: transparent;
}

.btn_nav_outline:hover {
    color: var(--white);
    background: var(--orange);
}

.btn_nav_fill {
    color: var(--white);
    border: 2px solid var(--orange);
    background: var(--orange);
}

.btn_nav_fill:hover {
    color: var(--white);
    background: var(--orange_hover);
    border: 2px solid var(--orange_hover);
}

#collapseNavbar {
    align-items: center;
    justify-content: end;
    gap: 30px;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle span.dropdown-icon {
    margin-left: 3px;
}

.navbar .dropdown-menu {
    border: 0;
    border-radius: 10px;
    padding: 10px;
    min-width: 240px;
    margin-top: 18px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(var(--black-rgb), .14);
}

.navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 28px;
    width: 16px;
    height: 16px;
    background: var(--white);
    transform: rotate(45deg);
}

.navbar .dropdown-item {
    border-radius: 7px;
    padding: 11px 14px;
    color: var(--black);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item.active {
    background: var(--orange_light);
    color: var(--orange);
}

.navbar .dropdown-toggle .dropdown-icon {
    display: inline-flex;
    transition: transform .2s ease;
}

.navbar .dropdown-toggle.show .dropdown-icon {
    transform: rotate(180deg);
}

.navbar .dropdown-toggle.show svg path,
.navbar .dropdown-toggle:hover svg path,
.navbar .dropdown-toggle.active svg path {
    fill: var(--orange);
}

@media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

    .navbar .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .navbar .dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 12px;
        padding: 8px;
        background: var(--orange_light);
        text-align: center;
    }

    .navbar .dropdown-menu::before {
        display: none;
    }

    .navbar .dropdown-item {
        text-align: center;
    }
}

/************************************/
/************************************/
/*             GLOBAL               */
/************************************/
/************************************/

.page_hero_content, .home_hero_content {
    position: relative;
}

.page_hero_content::before, .home_hero_content::before {
    content: "";
    position: absolute;
    left: -55px;
    top: 50%;
    width: 472px;
    height: 581px;
    background: url(img/rr_r.png) no-repeat center / contain;
    opacity: 1;
    z-index: -1;
    pointer-events: none;
    transform: translate(0%, -50%);
}

.page_hero_rr {
    overflow: hidden;
}

.page_hero_img_col {
    position: relative;
}

.page_hero_img_wrap {
    position: relative;
    height: 100%;
}

.page_hero_img_wrap img {
    width: calc(100% + ((100vw - 1295px) / 2));
    max-width: none;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
    min-height: calc(100vh - 146px);
}

@media (max-width: 1399px) {
    .page_hero_img_wrap img {
        width: calc(100% + ((100vw - 1115px) / 2));
    }
}

@media (max-width: 1199px) {
    .page_hero_img_wrap img {
        width: calc(100% + ((100vw - 935px) / 2));
    }
}

@media (max-width: 991px) {
    .page_hero_img_wrap img {
        width: 100%;
        max-width: 100%;
        height: 300px;
        min-height: 0;
        border-radius: 0;
    }
}

.page_header_intro {
    font-size: 18px;
}

/************************************/
/************************************/
/*             ACCUEIL              */
/************************************/
/************************************/


.home_hero_rr {
    overflow: hidden;
}

.home_hero_img_col {
    position: relative;
}

.home_hero_img_wrap {
    position: relative;
    height: 100%;
}

.home_hero_img_wrap img {
    width: calc(100% + ((100vw - 1295px) / 2));
    max-width: none;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
    min-height: calc(100vh - 146px);
}

@media (max-width: 1399px) {
    .home_hero_img_wrap img {
        width: calc(100% + ((100vw - 1115px) / 2));
    }
}

@media (max-width: 1199px) {
    .home_hero_img_wrap img {
        width: calc(100% + ((100vw - 935px) / 2));
    }
}

@media (max-width: 991px) {
    .home_hero_img_wrap img {
        width: 100%;
        max-width: 100%;
        height: 300px;
        min-height: 0;
        border-radius: 0;
    }
}

.home_header_intro {
    font-size: 18px;
}

.home_solution_card {
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.home_solution_img {
    width: 100%;
    aspect-ratio: 1.75 / 1;
    overflow: hidden;
}

.home_solution_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home_solution_content {
    flex: 1;
    padding: 20px 20px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home_solution_content h3 {
    margin-bottom: 20px;
    color: var(--black);
    font-size: 26px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    font-weight: bold;
}

.home_solution_resume {
    margin-bottom: 30px;
    color: var(--black);
    opacity: 0.7;
}

.home_solution_resume p:last-child {
    margin-bottom: 0;
}

.home_solution_content .btn {
    margin-top: auto;
}






.home_cuisine_slider_wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home_cuisine_slider {
    overflow: visible;
    padding: 0 0 5px;
}

.home_cuisine_img {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
}

.home_cuisine_img img,
.home_engagements_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home_cuisine_caption {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.home_cuisine_captionin {
    background-color: var(--white);
    padding: 2px 10px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 5px;
}

.home_cuisine_prev,
.home_cuisine_next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--orange);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:all .3s ease;
    color:#fff;
}

.home_cuisine_prev{
    left:20px;
}

.home_cuisine_next{
    right:20px;
}

.home_cuisine_prev:hover,
.home_cuisine_next:hover{
    transform:translateY(-50%) scale(1.08);
}

.home_cuisine_prev svg,
.home_cuisine_next svg{
    width:9px;
    height:auto;
}

.home_cuisine_prev::after,
.home_cuisine_next::after{
    display:none;
}

.home_engagements_img {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1.55 / 1;
}

#home_engagements .p_div,
#home_engagements p {
    color: var(--black);
}

.section_contact_btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.clients_sep {
    width: 100%;
    height: 1px;
    background-color: var(--orange);
}

.home_clients_slider_wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home_clients_slider {
    overflow: visible;
    padding: 0 0 5px;
}

.home_client_card {
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--black);
}

.home_client_card:hover {
    transform: translateY(-5px);
}

.home_client_img {
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
}

.home_client_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.home_client_card:hover .home_client_img img {
    transform: scale(1.05);
}

.home_client_content {
    padding: 25px;
    text-align: center;
}

.home_client_logo {
    height: 70px;
    margin: -60px auto 25px;
    background: var(--white);
    border-radius: 10px;
    padding: 12px 18px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(var(--black-rgb), .08);
}

.home_client_logo.is_empty {
    opacity: 0;
}

.home_client_logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.home_client_content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    line-height: 1.1;
    font-weight: bold;
    color: var(--orange);
    margin-bottom: 25px;
}

.home_clients_prev,
.home_clients_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    color: #fff;
}

.home_clients_prev {
    left: 20px;
}

.home_clients_next {
    right: 20px;
}

.home_clients_prev:hover,
.home_clients_next:hover {
    transform: translateY(-50%) scale(1.08);
}

.home_clients_prev.swiper-button-disabled,
.home_clients_next.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

.home_clients_prev svg,
.home_clients_next svg {
    width: 9px;
    height: auto;
}

.home_clients_prev::after,
.home_clients_next::after {
    display: none;
}

.home_clients_slider_wrap {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 992px) {
    .home_clients_slider_wrap {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .home_client_content {
        padding: 22px 18px 25px;
    }

    .home_client_logo {
        width: 135px;
        height: 62px;
        margin-top: -50px;
    }

    .home_client_content h3 {
        font-size: 22px;
    }

    .home_clients_prev,
    .home_clients_next {
        width: 42px;
        height: 42px;
    }
    
    .home_clients_prev {
        left: 0px;
    }

    .home_clients_next {
        right: 0px;
    }
}

/************************************/
/************************************/
/*             SOLUTIONS            */
/************************************/
/************************************/

.solution_format_card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.solution_format_img {
    height: 100%;
    min-height: 390px;
}

.solution_format_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution_format_content {
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution_format_content h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--orange);
    font-size: 30px;
    line-height: 1.1;
    font-weight: bold;
    margin-bottom: 30px;
}

.solution_format_text {
    font-size: 16px;
    line-height: 1.45;
    text-align: justify;
}

.solution_format_text ul {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.solution_format_text li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.4;
    color: rgba(var(--black-rgb), 0.7);
}

.solution_format_text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
}

/************************************/
/************************************/
/*      SOLUTIONS > PORTAGE         */
/************************************/
/************************************/

.portage_choix_card {
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.portage_choix_card h3 {
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    margin-bottom: 20px;
}

.portage_choix_text {
    margin-bottom: 25px;
}


.distributeurs_intro {
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
}

.distributeurs_intro p:last-child {
    margin-bottom: 0;
}

.distributeurs_search {
    position: relative;
    background: var(--white);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    gap: 10px;
}

.distributeurs_search input {
    flex: 1;
    border: 1px solid var(--orange);
    border-radius: 7px;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--black);
}

.distributeurs_search .btn {
    white-space: nowrap;
}

.distributeur_suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 10px;
    right: 10px;
    z-index: 20;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(60,45,23,.12);
    overflow: hidden;
    display: none;
}

.distributeur_suggestion_item {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.distributeur_suggestion_item span {
    font-weight: 500;
}

.distributeur_suggestion_item small {
    opacity: .55;
    font-size: 13px;
}

.distributeur_suggestions button {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--black);
}

.distributeur_suggestions button:hover {
    background: var(--orange_light);
    color: var(--orange);
}

.distributeur_card {
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.distributeur_head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.distributeur_logo {
    width: 80px;
    height: 80px;
    border: 1px solid var(--orange);
    border-radius: 5px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.distributeur_logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.distributeur_card h3 {
    color: var(--orange);
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    line-height: 1.15;
    font-weight: bold;
    margin: 0;
}

.distributeur_block {
    margin-bottom: 20px;
}

.distributeur_block h4 {
    color: var(--orange);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    margin-bottom: 8px;
}

.distributeur_text, .distributeur_communes {
    font-size: 16px;
    line-height: 1.35;
}

.distributeur_text p:last-child {
    margin-bottom: 0;
}

.distributeur_communes span::after {
    content: " · ";
}

.distributeur_communes span:last-of-type::after {
    content: "";
}

.distributeur_communes small,
.communes_modal_list small {
    opacity: .55;
    margin-left: 4px;
}

.communes_more_btn {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--orange);
    font-weight: bold;
    font-size: 16px;
    margin-left: 5px;
}

.distributeur_btn {
    margin-top: auto;
    align-self: flex-start;
}

.distributeurs_empty {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
    color: var(--orange);
    font-weight: bold;
}

.distributeur_modal_header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.distributeur_modal_header h3 {
    color: var(--orange);
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    line-height: 1.15;
    font-weight: bold;
    margin: 0;
}

.distributeur_modal_coordonnees h4, .distributeur_modal_communes h4 {
    color: var(--orange);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.15;
    font-weight: bold;
    margin: 0;
    margin-bottom: 8px;
}

.distributeur_modal_coordonnees a {
    color: var(--black);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .distributeurs_search {
        flex-direction: column;
    }

    .distributeurs_search .btn {
        width: 100%;
    }
}

.fonctionnement_card {
    height: 100%;
    background: var(--orange_light);
    border-radius: 10px;
    padding: 20px;
}

.fonctionnement_number {
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 18px;
}

.fonctionnement_card h3 {
    color: var(--orange);
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    line-height: 1.1;
    font-weight: bold;
    margin-bottom: 18px;
}

.fonctionnement_text {
    font-size: 16px;
    line-height: 1.35;
    color: var(--black);
}

.fonctionnement_text p:last-child {
    margin-bottom: 0;
}

/************************************/
/************************************/
/*             HISTOIRE             */
/************************************/
/************************************/

#histoire {
    overflow: visible;
}

.story_scroll {
    position: relative;
    overflow: visible;
    margin-top: 60px;
}

.story_visual {
    position: sticky;
    top: 108px;
    height: calc(100vh - 140px);
    min-height: 560px;
    border-radius: 10px;
    overflow: hidden;
}

.story_visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity .65s ease, transform 1.2s ease;
}

.story_visual img.active {
    opacity: 1;
    transform: scale(1);
}

.story_steps {
    display: grid;
    gap: 34px;
    padding-bottom: 10vh;
}

.story_step {
    position: relative;
    min-height: 64vh;
    display: flex;
    align-items: center;
}

.story_card {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    opacity: .6;
    transform: translateY(20px) scale(.985);
    transition: .5s ease;
}

.story_step.active .story_card {
    opacity: 1;
    transform: none;
}

.story_topline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.story_year {
    display: inline-flex;
    align-items: center;
    padding: 3px 13px;
    border-radius: 5px;
    background: var(--orange);
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.story_card h3 {
    color: var(--orange);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 30px;
}

.story_text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .story_visual {
        position: relative;
        top: auto;
        height: 360px;
        min-height: 360px;
    }

    .story_steps {
        gap: 22px;
        padding-bottom: 0;
    }

    .story_step {
        min-height: auto;
        display: block;
    }

    .story_card {
        opacity: 1;
        transform: none;
        padding: 32px;
    }
}

.rse_card {
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
}

.rse_card_icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--green_light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.rse_card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--black);
}

.rse_card_text p:last-child {
    margin-bottom: 0;
}

/**/

.rr-story {
    position: relative;
}

.rr-story::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: 0px;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        180deg,
        transparent,
        rgba(179, 92, 45, .55),
        rgba(209, 161, 57, .75),
        rgba(179, 92, 45, .55),
        transparent
    );
}

.rr-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    padding: 15px 0;
}

.rr-row.compact {
    padding: 22px 0;
}

.rr-dot {
    grid-column: 2;
    justify-self: center;
    position: relative;
    z-index: 5;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange);
    border: 6px solid var(--orange_light);
}

.rr-content {
    position: relative;
    z-index: 2;
}

.rr-row .rr-dot,
.rr-row .rr-content {
    grid-row: 1;
}

.rr-row.left .rr-dot,
.rr-row.right .rr-dot {
    grid-column: 2;
}

.rr-row.left .rr-content {
    grid-column: 1;
    text-align: right;
}

.rr-row.right .rr-content {
    grid-column: 3;
    text-align: left;
}

.rr-card {
    position: relative;
    display: inline-block;
    width: min(100%, 380px);
    padding: 20px;
    border-radius: 10px;
    background: var(--white);
    transition: .35s ease;
}

.rr-card:hover {
    transform: translateY(-6px);
}

.rr-mini {
    width: min(100%, 400px);
    padding: 20px;
}

.rr-card.has-side-image {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.rr-row.left .rr-card.has-side-image {
    flex-direction: row-reverse;
}

.rr-row.right .rr-card.has-side-image {
    flex-direction: row;
}

.rr-card-img.square {
    width: 150px;
    min-width: 150px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--orange_light);
    flex-shrink: 0;
}

.rr-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.rr-card small {
    display: block;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: var(--orange);
    text-transform: uppercase;
}

.rr-card h2,
.rr-card h3 {
    margin: 0 0 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: var(--orange);
}

.rr-card h2 {
    font-size: 52px;
    line-height: .95;
}

.rr-card h3 {
    font-size: 34px;
    line-height: 1;
    color: var(--black);
}

.rr-card-text {
    color: rgba(var(--black-rgb), .72);
    font-size: 16px;
    line-height: 1.45;
}

.rr-card-text p:last-child {
    margin-bottom: 0;
}

.rr-card-text strong {
    color: var(--black);
}

.rr-number-card {

}

.rr-number-card::after {

}

.rr-number-card small {
    color: var(--yellow);
}

.rr-number {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 12px;
    color: var(--yellow);
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    line-height: .9;
    font-weight: bold;
}

.rr-number-card .rr-card-text {
    position: relative;
    z-index: 2;
}

.rr-number-card.rr-card h3 {
    font-size: 14px;
    line-height: 1;
    color: var(--black);
}

.rr-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: .65s ease;
}

.rr-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {

    .rr-story {
        padding-top: 35px;
    }

    .rr-story::before {
        left: 11px;
        transform: none;
    }

    .rr-row,
    .rr-row.compact {
        grid-template-columns: 22px minmax(0, 1fr);
        column-gap: 20px;
    }

    .rr-dot {
        grid-column: 1!important;
        grid-row: 1!important;
        justify-self: start;
        align-self: flex-start;
        margin-top: 28px;
        margin-left: 1px;
        width: 22px;
        height: 22px;
        transform: none;
    }

    .rr-content,
    .rr-row.left .rr-content,
    .rr-row.right .rr-content {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
    }

    .rr-card,
    .rr-mini,
    .rr-card.has-side-image {
        width: 100%;
        padding: 24px;
    }

    .rr-card.has-side-image {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .rr-card-img.square {
        width: 170px;
        min-width: 170px;
        height: 170px;
    }

    .rr-card h2 {
        font-size: 42px;
    }

    .rr-card h3 {
        font-size: 30px;
    }
}

.rr-final {
    position: relative;
    z-index: 3;
    width: min(980px, 100%);
    margin: 40px auto 0;
    padding: clamp(34px, 6vw, 64px);
    border-radius: 10px;
    background: var(--white);
    text-align: center;
}

.rr-final-year {
    font-family: 'Poppins', sans-serif;
    font-size: 72px;
    line-height: .75;
    font-weight: bold;
    color: var(--orange);
    margin-bottom: 24px;
}

.rr-final small {
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: var(--yellow);
}

.rr-final h2 {
    margin: 0 auto 40px;
    max-width: 680px;
    font-size: 38px;
    line-height: 1.05;
    color: var(--black);
}

.rr-final-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.rr-final-item {
    padding: 24px 16px;
    border-radius: 10px;
    background: var(--orange_light);
}

.rr-final-item span {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--white);
    font-size: 22px;
}

.rr-final-item-text {
    font-size: 14px;
    line-height: 1.35;
    font-weight: bold;
}

.rr-final-item-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .rr-final {
        margin-left: 42px;
        width: calc(100% - 42px);
        padding: 34px 20px;
        text-align: left;
    }
    
    .rr-final::before {
        content: "";
        position: absolute;
        left: -42px;
        top: 48px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--orange);
        border: 6px solid var(--orange_light);
        z-index: 5;
    }

    .rr-final-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .rr-final-item-text {
        text-align: center;
    }
    
    .rr-final-year {
        font-size: 52px;
    }
    
    .rr-final h2 {
        font-size: 24px;
    }
    
}

@media (max-width: 560px) {
    .rr-final-grid {
        grid-template-columns: 1fr;
    }
}

/************************************/
/************************************/
/*           CONTACT                */
/************************************/
/************************************/

.section_contact h2 {
    line-height: 1.2;
}

.section_contact .contact_infos h3 {
    color: var(--orange);
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section_contact .contact_infos p {
    margin-bottom: 0;
    line-height: 1.45;
}

.contact_form_card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
}

.rr_form select,
.rr_form input[type="text"],
.rr_form input[type="email"],
.rr_form input[type="tel"],
.rr_form textarea {
    width: 100%;
    border: 1px solid rgba(60,45,23,.45);
    border-radius: 5px;
    padding: 12px 10px;
    font-size: 16px;
    color: var(--black);
    background: #fff;
}

.rr_form select {
    height: 50px;
}

.rr_form textarea {
    resize: vertical;
}

.contact_infos a {
    color: var(--black);
    text-decoration: underline;
}

.humans_rr {
    display: none!important;
}

.sticky_top {
    position: sticky;
    top: 120px;
}

/************************************/
/************************************/
/*        NOUS REJOINDRE            */
/************************************/
/************************************/

.job_card {
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
}

.job_card h3 {
    color: var(--orange);
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.job_infos {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.job_infos li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
}

.job_infos li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
}

.empty_jobs_card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
}

.candidature_img {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1.65 / 1;
}

.candidature_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rr_modal .modal-content {
    border: 0;
    border-radius: 10px;
    padding: 30px;
    background: var(--white);
    position: relative;
}

.rr_modal .modal-body {
    padding: 0;
}

.rr_modal_close {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 2;
}

.rr_form label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 5px;
}

.rr_form input[type="text"],
.rr_form input[type="email"],
.rr_form input[type="tel"],
.rr_form input[type="file"],
.rr_form textarea {
    width: 100%;
    border: 1px solid rgba(60,45,23,.18);
    border-radius: 5px;
    padding: 12px 10px;
    font-size: 16px;
    color: var(--black);
    background: #fff;
}

.rr_form textarea {
    resize: vertical;
}

.rr_form input:focus,
.rr_form textarea:focus {
    border-color: var(--orange);
}

.rr_checkbox {
    display: flex !important;
    gap: 12px;
    align-items: flex-start;
    font-family: "Roboto", sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.35;
    margin-bottom: 0 !important;
}

.rr_checkbox input {
    margin-top: 4px;
}

.rr_checkbox span {
    font-size: 16px;
}

.rr_file {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rr_file input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.rr_file_btn {
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    transition: .2s;
}

.rr_file_btn:hover {
    background: var(--orange_hover);
}

.rr_file_name {
    font-size: 14px;
    opacity: .7;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header_top_actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-template-page-contact .footer_sep {
    background-color: transparent;
}

/************************************/
/************************************/
/*             FOOTER               */
/************************************/
/************************************/

footer {
    background-color: var(--white);
    color: var(--black);
    padding-bottom: 40px;
    border-top: 0;
    font-size: 16px;
}

footer a {
    color: var(--black);
}

.footer_sep {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--black);
    margin-bottom: 40px;
}

footer h4 {
    color: var(--orange);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

.footer_menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_menu li {
    position: relative;
    padding-left: 15px;
    line-height: 30px;
}

.footer_menu li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c06b3d;
}

footer p {
    line-height: 30px;
}

.footer_bottom {
    text-align: center;
    opacity: 0.6;
    font-size: 14px;
    margin-top: 30px;
}

/************************************/
/************************************/
/*          MEDIA QUERIES           */
/************************************/
/************************************/

@media (min-width: 1270px) and (max-width: 1350px) {

    
    
}

@media (min-width: 1200px) and (max-width: 1399px) {

    .navbar-expand-xl .navbar-nav {
        gap: 15px;
    }

    #collapseNavbar {
        gap: 15px;
    }

    .btn_nav {
        padding: 12px 15px;
    }

}

@media (min-width: 993px) and (max-width: 1269px) {
    
    .navbar-expand-xl .navbar-nav {
        gap: 20px;
    }
    
    h1, .h1 {
        font-size: 34px;
    }
    
    h1.h1_smaller {
        font-size: 30px;
    }
    
    h2, .h2 {
        font-size: 26px;
    }
    
    h2.h2_smaller {
        font-size: 24px;
    }
    
}

@media (max-width: 992px) {
    
    .mob_mb_10 { margin-bottom: 10px; }
    .mob_mb_15 { margin-bottom: 15px; }
    .mob_mb_20 { margin-bottom: 20px; }
    .mob_mb_25 { margin-bottom: 25px; }
    .mob_mb_30 { margin-bottom: 30px; }
    .mob_mb_40 { margin-bottom: 40px; }
    .mob_mb_50 { margin-bottom: 50px; }
    .mob_mb_60 { margin-bottom: 60px; }
    .mob_mt_10 { margin-top: 10px; }
    .mob_mt_15 { margin-top: 15px; }
    .mob_mt_20 { margin-top: 20px; }
    .mob_mt_25 { margin-top: 25px; }
    .mob_mt_30 { margin-top: 30px; }
    .mob_mt_40 { margin-top: 40px; }
    .mob_mt_50 { margin-top: 50px; }
    .mob_mt_60 { margin-top: 60px; }

    .mob_pb_0 { padding-bottom: 0px; }
    .mob_pb_10 { padding-bottom: 10px; }
    .mob_pb_15 { padding-bottom: 15px; }
    .mob_pb_20 { padding-bottom: 20px; }
    .mob_pb_25 { padding-bottom: 25px; }
    .mob_pb_30 { padding-bottom: 30px; }
    .mob_pb_40 { padding-bottom: 40px; }
    .mob_pb_50 { padding-bottom: 50px; }
    .mob_pb_60 { padding-bottom: 60px; }
    .mob_pt_0 { padding-top: 0px; }
    .mob_pt_10 { padding-top: 10px; }
    .mob_pt_15 { padding-top: 15px; }
    .mob_pt_20 { padding-top: 20px; }
    .mob_pt_25 { padding-top: 25px; }
    .mob_pt_30 { padding-top: 30px; }
    .mob_pt_40 { padding-top: 40px; }
    .mob_pt_50 { padding-top: 50px; }
    .mob_pt_60 { padding-top: 60px; }
    
    .mob_text_justify {
        text-align: justify;
    }
    
    .navbar>.container {
        position: relative;
    }
    
    .navbar-expand-xl .navbar-nav {
        gap: 30px;
        padding-top: 30px;
    }
    
    h1, .h1 {
        font-size: 34px;
    }
    
    h1.h1_smaller {
        font-size: 30px;
    }
    
    h2, .h2 {
        font-size: 26px;
    }
    
    h2.h2_smaller {
        font-size: 24px;
    }
    
    .home_hero_content, .page_hero_content {
        text-align: center;
    }
    
    .home_solution_content h3 {
        font-size: 22px;
    }
    
    #home_engagements, #home_qui {
        text-align: center;
    }
    
    .section_contact_btns {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .btn, .btn:active, .btn:visited, .btn:focus {
        padding: 11px 10px;
    }
    
    footer {
        text-align: center;
    }
    
    .footer_menu li {
        padding-left: 0;
    }
    
    .footer_menu li::before {
        display: none;
    }
    
    .home_hero_img_col, .page_hero_img_col {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .home_hero_img_wrap, .page_hero_img_wrap {
        height: auto;
        margin-left: calc(var(--bs-gutter-x) * -0.5);
        margin-right: calc(var(--bs-gutter-x) * -0.5);
    }

    .home_hero_img_wrap img, .page_hero_img_wrap img {
        width: 100%;
        max-width: 100%;
        height: 260px;
        min-height: 0;
        object-fit: cover;
        object-position: center;
        border-radius: 0;
    }
    
    .story_scroll {
        margin-top: 30px;
    }
    
    .story_card h3, .solution_format_content h3 {
        margin-bottom: 20px;
        font-size: 24px;
    }
    
    .solution_format_content {
        padding: 20px;
    }
    
    .rse_card h3, .fonctionnement_card h3 {
        font-size: 22px;
    }
    
    .portage_choix_card h3 {
        font-size: 24px;
    }
    
    .sticky_top {
        position: relative;
        top: auto;
    }
    
    .navbar-actions {
        flex-direction: column;
        width: 100%;
    }

    .navbar-actions .btn_nav {
        justify-content: center;
    }
    
    .page_hero_content::before, .home_hero_content::before {
        display: none;
    }

}