@font-face {
    src: url('../fonts/Inter_18pt-Regular.ttf');
    font-family: 'Inter-Regular';
}
@font-face {
    src: url('../fonts/Inter_18pt-Medium.ttf');
    font-family: 'Inter-Medium';
}
@font-face {
    src: url('../fonts/Inter_18pt-Bold.ttf');
    font-family: 'Inter-Bold';
}
@font-face {
    src: url('../fonts/Inter_18pt-ExtraBold.ttf');
    font-family: 'Inter-ExtraBold';
}

.medium_text{
    font-family: 'Inter-Medium';
}
.bold_text{
    font-family: 'Inter-Bold'; 
}
.extra_bold_text, h1, h2, h3, h4, h5, h6{
    font-family: 'Inter-ExtraBold';
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
    border: none;
    box-sizing: border-box;
    font-family: 'Inter-Regular';
    transition: all 300ms ease-out;
}
*:hover {
    transition: all 0.3s ease-in;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-gutter: stable;
}
a {
    text-decoration: none;
    color: var(--black);
}
img, video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
:root {
    --black: #111;
    --greyFont: rgba(40, 40, 40, 0.60);
    --brandGreen: #668A86;
    --white: #FFF;
    --whiteOpacity: rgba(255, 255, 255, 0.8);
    --background: #F4F4F4;
    --borderColor: rgba(40, 40, 40, 0.20);
}
:root {
    --twelve: 12px;
    --forteen: 14px;
    --sixteen: 16px;
    --eighteen: 18px;
    --twenty: 20px;
    --fontTwentyTwo: 22px;
    --twofour: 24px;
    --thirty: 30px;
    --titleFont: 50px;
}
.wrapper {
    max-width: 1600px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
}
.sto_ {
    width: 100%;
}
.big_wrapper{
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}
.full_wrapper {
    max-width: 1840px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}
.d_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body{
    color: var(--black);
}
ul, ol{
    padding-left: 20px;
}
textarea {
    resize: none;
    border-radius: 8px !important;
}
html, body {
    overscroll-behavior: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--brandGreen);
    background-clip: padding-box;
    transition: all 300ms ease-out;
    cursor: pointer;
}
.scrollbar::-webkit-scrollbar{
    height: 2px;
    width: 2px;
}
.scrollbar::-webkit-scrollbar-track {
    background-color: #DFE5EA;
}
main{
    padding-top: 160px;
}

/* header */
header{
    position: fixed;
    top: 20px;
    right: 0;
    left: 0;
    padding: 26px 0;
    z-index: 11;
    width: calc(100% - 40px);
    max-width: 1824px;
    margin: 0 auto;
    border-radius: 20px;
    background: transparent;
    transition: background-color 0.3s ease;
}
header.scrolled {
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(15px);
}
.height_line{
    height: 22px;
    border-right: 1px solid var(--borderColor);
}
.head_first{
    justify-content: start;
    gap: 45px;
}
.header_block{
    gap: 20px;
}
.logo_{
    max-width: 230px;
}
.logo_ img{
    object-fit: contain;
}
.nav_bar {
    gap: 30px;
}
.drp_title{
    cursor: pointer;
    gap: 8px;
}
.dropdown_rel, .position_rel{
    position: relative;
}
.dropdown_{
    position: absolute;
    z-index: 10;
    flex-direction: column;
    border-radius: 12px;
    overflow: auto;
    max-height: 300px;
    min-width: 240px;
    padding: 16px 12px;
    display: none;
    left: 0;
    top: 34px;
    gap: 12px;
    background-color: var(--background);
}
.dropdown_active{
    display: flex;
}
.serv_item_head{
    font-size: var(--sixteen);
}
.nav_alink{
    white-space: nowrap;
    text-align: center;
    text-transform: uppercase;
    font-size: var(--sixteen);
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #668A86, #668A86 50%, var(--black) 50%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 500ms ease;
}
.nav_alink:hover {
    background-position: 0 100%;
}
.serv_item_head:hover{
    color: var(--brandGreen);
}
.burger_svg{
    display: none;
}
.head_last_blck{
    gap: 36px;
}
.phone_num{
    gap: 12px;
}
.phone_icon{
    min-width: 26px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--black);
    justify-content: center;
}
.phone_sp{
    font-size: var(--eighteen);
}
.phone_num:hover .phone_icon{
    background-color: var(--brandGreen);
}
.phone_num:hover .phone_sp{
    text-decoration: underline;
}
.red_btn{
    font-size: var(--eighteen);
    min-width: fit-content;
    padding: 14px 20px;
    border-radius: 12px;
    cursor: pointer;
    justify-content: center;
    color: var(--white);
    background-color: var(--black);
}
.red_btn:hover{
    background-color: var(--brandGreen);
}
a.red_btn {
    text-decoration: none;
    display: inline-flex;
    box-sizing: border-box;
}
/* end header */

/* home */
.big_wrapper_home{
    max-width: 1800px;
    overflow: hidden;
    width: calc(100% - 40px);
    margin: 20px auto 0 auto;
    padding-top: 112px;
    background: linear-gradient(180deg, #BACAC9 0%, #AFCAC4 100%), #BAB5AF;
    border-radius: 30px;
}
.home_top{
    margin-top: -160px;
}
.home_general_block{
    min-height: 800px;
    justify-content: start;
    align-items: end;
    gap: 160px;
    padding: 20px 0 70px 0;
}
.general_img{
    position: absolute;
    top: -47px;
    right: -20%;
    width: 100%;
    height: 100%;
    max-width: 1500px;
}
.general_img img{
    object-fit: contain;
    transform: rotate(45deg);
    transition: transform 1.2s ease;
}
.general_img img.rotate-in {
    transform: rotate(0deg);
}
.about_group{
    z-index: 1;
    max-width: 590px;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.general_title{
    font-size: var(--titleFont);
    color: var(--black);
}
.view_btn{
    font-size: var(--eighteen);
}
.description_{
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-size: var(--eighteen);
    color: var(--greyFont);
}
.inf_blck{
    justify-content: start;
    gap: 34px;
}
.about_group .description_{
    margin: 10px 0;
}
.stretch_blocks{
    margin: 30px 0;
    align-items: stretch;
}
/* Bloc « Mes valeurs » : largeur au plus proche du rendu vidéo, hauteur alignée sur la colonne texte */
.stretch_blocks.myvalue_blck {
    align-items: stretch;
}
.stretch_blocks.myvalue_blck > .video_blck {
    z-index: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 30%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    flex: 0 0 30%;
    align-self: stretch;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background-color: #000;
    cursor: pointer;
}
.stretch_blocks.myvalue_blck > .video_blck video {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}
.video_blck video.edaliz-v-preview {
    cursor: pointer;
}
.stretch_blocks.myvalue_blck > .back_blck {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    align-self: stretch;
}
.button_for_video{
    position: absolute;
    bottom: 60px;
    right: 60px;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 220px;
    cursor: default;
}
.play_pause_blck, .mute_on_sound, .edaliz-fullvideo-btn {
    justify-content: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background-color: var(--white);
    border-radius: 50%;
}
.edaliz-fullvideo-btn {
    align-items: center;
    flex-shrink: 0;
}
.edaliz-fullvideo-btn:focus-visible {
    outline: 2px solid #111;
    outline-offset: 2px;
}
.play_btn, .pause_btn, .sound_on_btn, .sound_off_btn {
    display: none;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.active_btn {
    display: flex;
}
.back_blck{
    width: 50%;
    border-radius: 30px;
    padding: 20px 94px;
    gap: 22px;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background);
}
.sub_title{
    font-size: var(--eighteen);
    color: var(--greyFont);
    text-align: center;
}
.second_title{
    max-width: 500px;
    text-align: center;
    font-size: var(--thirty);
}
.underline_mini{
    width: 34px;
    border-bottom: 2px solid rgba(17, 17, 17, 0.10);
}
.nameof_ceo{
    font-size: var(--eighteen);
}
.white_opacity_back{
    max-width: 792px;
    padding: 20px;
    gap: 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.40);
    flex-direction: column;
    margin-top: 38px;
}
.white_opacity_back .description_{
    text-align: center;
    max-width: 550px;
}
.four_grid_blck{
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
}
.white_grid_items{
    justify-content: start;
    background-color: var(--white);
    border-radius: 14px;
    gap: 20px;
    padding: 20px;
    font-size: var(--sixteen);
}
.management_blck{
    max-width: 550px;
    flex-direction: column;
    gap: 25px;
    margin: 0 auto;
}
.management_blck .description_{
    text-align: center;
}
.cncgp_blck{
    margin-top: 20px;
    justify-content: center;
    gap: 20px;
}
a.cncgp_blck{
    text-decoration: none;
    color: inherit;
}
a.cncgp_blck:hover{
    opacity: 0.92;
}
.cncgp_img {
    max-width: 116px;
}
.mini_inf_blck_cnc{
    flex-direction: column;
    align-items: start;
    max-width: 258px;
}
.grey_des{
    font-size: var(--sixteen);
    color: var(--greyFont);
}
.bold_des{
    font-size: var(--sixteen);
}
.half_img{
    z-index: 1;
    position: relative;
    align-items: end;
    min-height: 800px;
    border-radius: 30px;
    overflow: hidden;
    width: 50%;
}
.beige_block{
    flex-direction: column;
    gap: 18px;
    padding: 82px;
    border-radius: 36px;
    background: #EDEDED;
    margin: 100px 0;
}
.mini_sub{
    text-align: center;
    font-size: var(--sixteen);
}
.why_choose_blck{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 26px;
    gap: 10px;
}
.choose_item{
    gap: 18px;
    padding: 36px;
    border-radius: 26px;
    align-items: start;
    flex-direction: column;
    background-color: #F9F9F9;
}
.choose_icons{
    max-width: 28px;
    margin-bottom: 20px;
}
.choose_items_title{
    margin-top: auto;
    font-size: var(--twofour);
}
.info_onimg{
    position: absolute;
    bottom: 30px;
    padding: 0 30px;
    gap: 8px;
    display: grid;
    grid-template-columns: repeat( 4,1fr);
}
.infof_steps{
    padding: 20px;
    border-radius: 20px;
    background: #F9F9F9;
    flex-direction: column;
    align-items: start;
    gap: 30px;
}
.finanse_step_title{
    font-size: var(--sixteen);
}
.info_grid_area{
    margin: 100px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
}
.third_blck {
    grid-column: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 2;
    gap: 20px;
    border-radius: 20px;
    background: #F9F9F9;  
}
.fourth_blck {
    grid-row: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 1;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    border-radius: 20px;
    padding: 40px;
    gap: 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #BACAC9 0%, #D3E2DF 100%), linear-gradient(180deg, #959595 0%, #616161 100%), linear-gradient(0deg, #43312D 0%, #43312D 100%), linear-gradient(180deg, #0B393A 0%, #064E4F 100%), linear-gradient(180deg, #BAB5AF 0%, #6D6151 100%), linear-gradient(0deg, #BAB5AF 0%, #BAB5AF 100%), linear-gradient(180deg, #17191B 0%, #4F5052 100%), linear-gradient(180deg, #2E6E90 0%, #8FC0D1 100%), #F9F9F9;
}
.last_blcks .first_mini_info_blck{
    height: 100%;
    background-color: transparent;
    border-radius: 0;
    max-width: 410px;
}
.first_mini_info_blck{
    flex-direction: column;
    align-items: start;
    gap: 20px;
    border-radius: 20px;
    padding: 40px;
    background: #F9F9F9;   
}
.inf_wind_title{
    z-index: 1;
    font-size: var(--eighteen);
}
.third_img{
    height: 100%;
}
.third_img img{
    object-fit: contain;
}
.fourth_img{
    position: absolute;
    height: 100%;
    bottom: 0;
    right: 0;
}
.learn_more{
    cursor: pointer;
    z-index: 1;
    margin-top: 6px;
}
.info_grid_area .description_{
    z-index: 1;
}
.fourth_blck .learn_more{
    background-color: var(--white);
    padding: 14px 20px;
    border-radius: 12px;
    font-size: var(--eighteen);
}
.fourth_blck .learn_more:hover{
    color: var(--white);
    background-color: var(--brandGreen);
}
.fourth_blck .inf_wind_title{
    color: var(--white);
}
.fourth_blck .description_{
    color: var(--whiteOpacity);
}
.title_info_block{
    margin-top: 100px;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 60px;
}
.descrip_view_blck, .titlew_imgs{
    flex-direction: column;
    align-items: start;
    gap: 18px;
}
.descrip_view_blck{
    max-width: 688px;
}
.titlew_imgs .second_title{
    text-align: start;
    max-width: 550px;
}
.sliders_arrow{
    gap: 4px;
}
.swiper-button-next:after, .swiper-button-prev:after{
    content: '' !important;
}
.swiper-button-next svg, .swiper-button-prev svg{
    width: 7px !important;
    height: 22px !important;
}
.swiper-button-next:hover svg path, 
.swiper-button-prev:hover svg path{
    stroke: var(--white);
}
.swiper-button-next, .swiper-button-prev{
    margin: 0 !important;
    position: inherit !important;
    width: 54px !important;
    height: 54px !important;
    border-radius: 12px;
    background-color: var(--background);
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
    background-color: var(--brandGreen);
}
.reviewer_img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}
.rev_info{
    justify-content: start;
    gap: 12px;
}
.revs_name_inf {
    flex-direction: column;
    align-items: start;
    gap: 4px;
}
.revs_name{
    font-size: var(--eighteen);
}
.cap_date{
    font-size: var(--forteen);
}
.review_item{
    height: auto !important;
    max-width: 580px;
    padding: 20px;
    border-radius: 12px;
    background: #F8F8F8;
    display: flex !important;
    flex-direction: column;
    align-items: start;
    gap: 12px;
}
.review_text{
    font-size: var(--eighteen);
    color: var(--greyFont);
}
.review_rating {
    font-size: var(--forteen);
    color: var(--brandGreen);
    font-weight: 600;
}
.revSlider, .newsSlider {
    align-items: stretch;
}
.revSlider{
    padding-left: 20px !important;
}
.newsSlider .swiper-wrapper{
    align-items: stretch;
}
.green_back{
    margin: 100px 0;
    padding: 74px 0 50px 0;
    background: linear-gradient(180deg, #BACAC9 0%, #4C7C72 100%), linear-gradient(180deg, #959595 0%, #353535 100%), linear-gradient(0deg, #43312D 0%, #43312D 100%), linear-gradient(180deg, #0B393A 0%, #000F0F 100%), linear-gradient(180deg, #403830 0%, #6D6151 100%), linear-gradient(0deg, #BAB5AF 0%, #BAB5AF 100%), linear-gradient(180deg, #2A2A2A 0%, #111 100%), linear-gradient(180deg, #09364E 0%, #2C7995 100%);
    border-radius: 30px;
    overflow: hidden;
}
.back_img_green{
    position: absolute;
    height: 100%;
    bottom: 0;
    left: 0;
}
.infoon_green_blck{
    margin-bottom: 230px;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
    position: relative;
}
.white_title{
    font-size: var(--thirty);
    color: var(--white);
}
.white_descrip{
    max-width: 760px;
    text-align: center;
    color: var(--whiteOpacity);
}
.phone_icon_white{
    background-color: var(--white);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    justify-content: center;
}
.infoon_green_blck .phone_sp{
    color: var(--white);
}
.infoon_green_blck .red_btn{
    background-color: var(--white);
    color: var(--black);
}
.infoon_green_blck .red_btn:hover{
    color: var(--brandGreen);
}
.four_grid_invest{
    z-index: 1;
    position: relative;
    display: grid;
    gap: 12px;
    align-items: stretch;
    grid-template-columns: repeat(4,1fr);
}
.invest_inf_blcks{
    padding: 30px;
    border-radius: 30px;
    background: #F9F9F9;
    flex-direction: column;
    align-items: start;
    gap: 14px;
}
.black_icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    background-color: var(--black);
}
.invest_inf_title{
    margin-top: auto;
    font-size: var(--eighteen);
}
.descriptioin_inv{
    font-size: var(--sixteen);
    color: var(--greyFont);
}
.news_item{
    height: auto !important;
    padding: 14px;
    display: flex !important;
    gap: 10px;
    flex-direction: column;
    border-radius: 30px;
    background: #F9F9F9;
}
.news_item_img{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 20px;
    min-height: 0;
    flex-shrink: 0;
}
/* Seul l'image est en absolute : en flex, le conteneur peut mal calculer la zone ; le slider aussi. */
.news_item_img.d_flex {
    display: block !important;
}
.dateof_news{
    margin-bottom: auto;
    font-size: var(--sixteen);
    color: var(--greyFont);
}
.news_items_title{
    font-size: var(--twofour);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;  
}
.news_item_descrip{
    font-size: var(--eighteen);
    color: var(--greyFont);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;    
}
/* end home */

/* footer */
footer{
    margin-top: 120px;
    border-radius: 30px 30px 0 0;
    background: #F4F4F4;
    padding: 65px 0 42px 0;
}
.logo_cours_f, .f_nav_bar{
    flex-direction: column;
    align-items: start;
    gap: 12px;
}
footer .logo_icon {
    max-width: 190px;
}
footer .logo_icon img {
    max-width: 100%;
    height: auto;
}
.f_nav_bar{
    max-width: 312px;
    justify-content: start;
}
.footer_block {
    gap: 12px;
    align-items: stretch;
}
.f_title{
    text-transform: uppercase;
    font-size: var(--eighteen);
}
.f_alink{
    font-size: var(--sixteen);
}
.f_alink:hover{
    text-decoration: underline;
}
.social_alink{
    width: 26px;
    height: 26px;
    border-radius: 50%;
    justify-content: center;
    background-color: var(--black);
}
.social_alink:hover{
    background-color: var(--brandGreen);
}
.f_last{
    gap: 15px;
}
.f_nav_bar .phone_num{
    margin-top: 15px;
    max-width: 270px;
    align-items: start;
}
.phone_num:first-child{
    margin: 0;
}
.f_nav_bar .phone_sp{
    font-size: var(--sixteen);
}
.underline_{
    margin: 44px 0 34px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.10);
}
.footer_legal_nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0 0 28px 0;
}
.footer_legal_row {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 32px;
    width: 100%;
}
.footer_legal_link {
    font-size: var(--sixteen);
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}
.footer_legal_link:hover {
    text-decoration-thickness: 2px;
}
.rights_reserved, .site_dev {
    gap: 5px;
    font-size: var(--sixteen);
}
/* end footer */

/* popup */
.gray_back{
    background: rgb(102 138 134 / 80%);
    display: none;
    position: fixed;
    width: 100%;
    z-index: 32;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
}
.gray_back_active {
    display: block;
}
.parent_pop{
    position: relative;
    display: flex;
    justify-content: center;
}
.popup_block{
    z-index: 33;
    position: fixed;
    display: none;
    width: 92%;
    z-index: 32;
    top: 10%;
    max-width: 642px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}
.popup_block_active{
    display: flex;
}
.popups_form_blck {
    overflow: auto;
    max-height: 640px;
    flex-direction: column;
    background-color: var(--background);
    padding: 40px;
    border-radius: 20px;
}
.step {
    display: none;
}
.step.active {
    display: flex;
}
.etap_popup_blcks{
    flex-direction: column;
    gap: 12px;
}
.step_sp{
    text-align: center;
    font-size: var(--eighteen);
}
.btns_popup_blck{
    gap: 6px;
    align-items: stretch;
}
.prev, .next{
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
}
.prev{
    background: #D8D8D8;
}
.next, .prev:hover{
    background-color: var(--black);
    color: var(--white);
}
.next:hover{
    background-color: var(--brandGreen);
}
.edaliz_bilan_send{
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    background-color: var(--black);
    color: var(--white);
}
.edaliz_bilan_send:hover{
    background-color: var(--brandGreen);
}
.edaliz_bilan_popup_block .edaliz_bilan_step{
    display: none;
    width: 100%;
}
.edaliz_bilan_popup_block .edaliz_bilan_step.active{
    display: flex;
}
.edaliz-recaptcha-wrap--popup {
    margin: 16px 0 8px;
}
.close_popup{
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}
.close_popup:hover svg path{
    stroke: red;
}
.choose_items_blck{
    overflow: auto;
    max-height: 270px;
    padding-right: 10px;
    flex-direction: column;
    gap: 6px;
    margin: 20px 0;
}
.full_inpt{
    position: relative;
    padding: 20px;
    justify-content: start;
    gap: 20px;
    background-color: var(--white);
    border-radius: 14px;
    cursor: pointer;
}
.full_inpt .checko_, .full_inpt .check_inp,
.full_inpt .checkbox_form{
    border-radius: 50%;
}
.full_inpt .checkbox_form{
    border-color: transparent;
    background-color: rgba(244, 244, 244, 1);
}
.full_inpt .checko_ input:checked~.checkbox_form{
    background-color: var(--black);
}
.etap_popup_blcks .description_{
    text-align: center;
}
.success_img{
    max-width: 236px;
}




/* end popup */

/* about us */
.aboutus_descrip_section{
    text-align: center;
    max-width: 850px;
    margin: 100px auto;
    flex-direction: column;
    gap: 12px;
}
.for_four_img{
    position: absolute;
}
.three_inf_blcks{
    /* position: absolute; */
    padding: 30px;
    z-index: 1;
    /* bottom: 30px; */
    flex-direction: column;
    align-items: start;
    gap: 40px;
}
.second_title_white{
    color: var(--white);
    font-size: var(--thirty);
    max-width: 464px;
}
.three_inf_blcks .info_onimg{
    position: initial;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
}
.three_inf_blcks .info_onimg .infof_steps_copy{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}
.three_inf_blcks .info_onimg .info_onimg_step_text{
    margin: 0;
    font-size: var(--sixteen);
    color: var(--greyFont);
    line-height: 1.45;
    font-weight: 400;
}
.three_inf_blcks > a.red_btn {
    margin-top: 8px;
    align-self: flex-start;
}
.info_grey_block{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-radius: 36px;
    gap: 10px;
    padding: 82px;
    background: #EDEDED;
    margin: 100px 0;
}
.info_grey_block .infof_steps{
    padding: 36px;
}
.info_grey_block .finanse_step_title{
    font-size: var(--twofour);
}
.full_grey{
    border-radius: 30px;
    background-color: var(--background);
}
.full_grey .management_blck {
    max-width: 670px;
    padding: 40px;
    width: 50%;
}
.about_img{
    display: flex;
    width: 50%;
    margin-top: auto;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
}
.about_img img{
    object-fit: contain;
}
.brands_info_blck{
    max-width: 575px;
    flex-direction: column;
    align-items: start;
    margin: 100px 0 60px 0;
    gap: 25px;
}
.brands_info_blck .second_title{
    text-align: start;
}
.brand_logo{
    max-width: 276px;
    border-radius: 12px;
    padding: 20px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 120px !important;
    background: #F8F8F8;
}
.management_green_blck{
    min-height: 765px;
    justify-content: end;
    padding: 65px 54px;
    background: linear-gradient(180deg, #BACAC9 0%, #AFCAC4 100%), linear-gradient(180deg, #17191B 0%, #4F5052 100%), linear-gradient(180deg, #2E6E90 0%, #8FC0D1 100%);
}
.management_green_blck .second_title_white, 
.management_green_blck .description_, .adviced_blck .description_{
    text-align: center;
}
.management_green_blck .description_{
    color: var(--whiteOpacity);
}
.brandsSlider{
    margin-bottom: 100px;
}
.partners_text_block{
    max-width: 850px;
    margin: 0 auto 60px;
    flex-direction: column;
    gap: 20px;
}
.partners_text_block__line{
    align-items: start;
    text-align: left;
    width: 100%;
}
.partners_text_block__line a{
    color: var(--brandGreen);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.edaliz_partners_blue_title{
    color: #0b6693;
    max-width: 100%;
    text-align: center;
    margin: 40px auto 12px;
}
.edaliz_partners_tagline{
    text-align: center;
    margin-bottom: 24px;
}
.brand_log_slider--text{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 0 12px;
    font-size: var(--forteen);
    line-height: 1.25;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.logo_white_{
    max-width: 200px;
}
.brand_log_slider img{
    object-fit: contain;
}
/* end about us */

/* service */
.service_back, .shadow_for_img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.shadow_for_img{
    z-index: 1;
}
.for_white .general_title, .for_white .view_btn{
    color: var(--white);
}
.for_white .description_{
    color: var(--whiteOpacity);
}
.for_white .red_btn{
    background-color: var(--white);
    color: var(--black);
}
.for_white .red_btn:hover{
    background-color: var(--brandGreen);
    color: var(--white);
}
.for_white .called_back {
    color: var(--white);
}
.for_white .called_back:hover {
    color: var(--white);
    opacity: 0.9;
}
.tiffany_blck{
    min-height: 765px;
    background: linear-gradient(0deg, #CCDDDC 0%, #CCDDDC 100%), linear-gradient(180deg, #17191B 0%, #4F5052 100%), #D9D9D9;
}
/* end service */

/* expertises */
.expertises_slide_item{
    height: 466px !important;
    max-width: 410px;
    padding: 30px;
    gap: 12px;
    border-radius: 30px;
    cursor: pointer;
    display: flex !important;
    flex-direction: column;
    align-items: start;
    background: #F9F9F9;
}
.icon_exp{
    margin-bottom: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--black);
    justify-content: center;
}
.icon_exp img{
    width: 24px;
    height: 24px;
}
.exp_item_title{
    font-size: var(--twofour);
}
.expertises_slide_item .description_{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.info_on_hover{
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    flex-direction: column;
    gap: 20px;
    margin-top: 18px;
}
.expertises_slide_item:hover .info_on_hover{
    max-height: 120px;
    opacity: 1;
}
.green_btn{
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    color: var(--white);
    background-color: #AFCAC4;
}
.green_btn:hover{
    background-color: var(--brandGreen);
}
.three_item_grid{
    grid-template-columns: repeat(3, 1fr) !important;
}
/* end expertises */

/* patrimoine */
.patrimoine_img img.rotate-in {
    transform: scale(1.5);
}
/* end patrimoine */

/* news */
.news_section{
    flex-direction: column;
    gap: 26px;
}
.news_page_descrip{
    font-size: var(--eighteen);
    max-width: 466px;
    color: var(--greyFont);
    text-align: center;
}
.big_news_info_blck{
    padding: 40px;
    flex-direction: column;
    align-items: start;
    gap: 14px;
    border-radius: 20px;
    max-width: 576px;
    background: #F4F4F4;
    flex-shrink: 0;
}
/* Le bloc image ne contient qu’un <img> en position:absolute → sans largeur flex il peut rester à 0 px. */
.news_item_big.stretch_blocks > .news_big_img {
    flex: 1 1 0%;
    min-width: 0;
    width: 100%;
}
.news_big_img{
    position: relative;
    max-width: 1090px;
    height: 532px;
    border-radius: 20px;
    overflow: hidden;
    min-height: 0;
}
a.news_big_img {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.news_big_img:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 4px;
}
.news_item_big .news_items_title a {
    color: inherit;
    text-decoration: none;
}
.news_item_big .news_items_title a:hover {
    text-decoration: underline;
}
.news_gid_block{
    margin: 56px 0 24px 0;
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.news_gid_block .news_item{
    max-width: none;
}
/* Liste blog : annuler le reset global `img, video { width:100%; height:100% }` (hauteur % = image invisible). */
.news_item_img,
.news_big_img {
    background: #ececec;
}
.news_gid_block .news_item_img img,
.news_item_big .news_big_img img,
.news_item_img img,
.news_big_img img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none;
    min-width: 0;
    object-fit: cover;
    display: block;
    z-index: 1;
}
/* Pagination liste d’actualités */
.edaliz-nav-pagination {
    width: 100%;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
}
.edaliz-nav-pagination .page-numbers {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 12px;
    margin: 0;
    padding: 0;
}
.edaliz-nav-pagination .page-numbers a,
.edaliz-nav-pagination .page-numbers span {
    display: inline-block;
    min-width: 2.25em;
    padding: 0.4em 0.6em;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    color: var(--black);
    background: #F0F0F0;
    font-size: var(--sixteen);
}
.edaliz-nav-pagination .page-numbers a:hover,
.edaliz-nav-pagination .page-numbers .current {
    background: var(--black);
    color: #fff;
}
.edaliz-nav-pagination .page-numbers .current {
    font-weight: 600;
}
/* end news */

/* news item */
.news_item_section{
    max-width: 1120px;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.25rem);
    font-size: var(--eighteen);
    color: var(--greyFont);
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
.news_item_general_img{
    position: relative;
    height: 544px;
    border-radius: 20px;
    overflow: hidden;
    align-self: stretch;
    width: 100%;
}
.news_item_general_img img,
.news_item_general_img .wp-post-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news_item_section h1, .news_item_section h2, 
.news_item_section h3, .news_item_section h4,
.news_item_section h5, .news_item_section h6{
    color: var(--black);
}
/* Single article (blog) — lisibilité, colonne de lecture */
.news_item_section .general_title {
    width: 100%;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.25rem;
    text-wrap: balance;
}
.news_item_section .edaliz-entry,
.news_item_section .entry-content {
    width: 100%;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.78;
}
.news_item_section .edaliz-entry p,
.news_item_section .entry-content p {
    margin: 0 0 1.4em;
}
.news_item_section .edaliz-entry p:last-child,
.news_item_section .entry-content p:last-child {
    margin-bottom: 0;
}
.news_item_section .edaliz-entry h2,
.news_item_section .edaliz-entry h3,
.news_item_section .edaliz-entry h4,
.news_item_section .entry-content h2,
.news_item_section .entry-content h3,
.news_item_section .entry-content h4 {
    margin-top: 1.75em;
    margin-bottom: 0.65em;
    line-height: 1.28;
}
.news_item_section .edaliz-entry h2:first-child,
.news_item_section .edaliz-entry h3:first-child,
.news_item_section .entry-content h2:first-child,
.news_item_section .entry-content h3:first-child {
    margin-top: 0;
}
.news_item_section .edaliz-entry ul,
.news_item_section .edaliz-entry ol,
.news_item_section .entry-content ul,
.news_item_section .entry-content ol {
    margin: 0 0 1.35em 1.25rem;
    padding-left: 1.1rem;
}
.news_item_section .edaliz-entry li,
.news_item_section .entry-content li {
    margin-bottom: 0.45em;
}
.news_item_section .edaliz-entry a,
.news_item_section .entry-content a {
    color: var(--brandGreen);
    text-decoration: underline;
}
.news_item_section .edaliz-entry a:hover,
.news_item_section .entry-content a:hover {
    text-decoration: none;
}
.news_item_section .edaliz-entry blockquote,
.news_item_section .entry-content blockquote {
    margin: 1.25em 0;
    padding-left: 1rem;
    border-left: 3px solid rgba(102, 138, 134, 0.45);
}
.map_block{
    width: 50%;
    height: 765px;
    border-radius: 30px;
    overflow: hidden;
}
.map_contact{
    height: 100%;
}
.map_contact--embed {
    position: relative;
    width: 100%;
    min-height: 320px;
}
.map_contact__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.map_contact--leaflet {
    position: relative;
    width: 100%;
    min-height: 320px;
    height: 100%;
}
.map_block .edaliz-contact-map.leaflet-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 30px;
    font-family: 'Inter-Regular', 'Inter', sans-serif;
    background: #e8eef0;
}
.map_block .contact_in_map {
    z-index: 500;
}
.edaliz-map-marker-root {
    background: none !important;
    border: none !important;
}
.edaliz-map-pin {
    position: relative;
    display: flex;
    width: 88px;
    height: 102px;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    animation: edaliz-map-float 2.8s ease-in-out infinite;
    will-change: transform;
}
.edaliz-map-pin__core {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111111;
    border: 3px solid #000000;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12);
    transition: none !important;
}
.edaliz-map-pin__ring {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 84px;
    height: 84px;
    margin: -42px 0 0 -42px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.42);
    box-sizing: border-box;
    animation: edaliz-map-pulse 2.1s ease-out infinite;
    transform-origin: center center;
    transition: none !important;
}
.edaliz-map-pin__ring--delayed {
    animation-delay: 1.05s;
}
@keyframes edaliz-map-pulse {
    0% {
        transform: scale(0.45);
        opacity: 0.85;
    }
    100% {
        transform: scale(1.75);
        opacity: 0;
    }
}
@keyframes edaliz-map-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .edaliz-map-pin {
        animation: none;
    }
    .edaliz-map-pin__ring,
    .edaliz-map-pin__ring--delayed {
        animation: none;
        opacity: 0.4;
        transform: scale(1.15);
    }
}
.map_block .leaflet-control-attribution {
    font-size: 10px;
    line-height: 1.35;
    color: var(--greyFont);
    background: rgba(255, 255, 255, 0.88);
    border-radius: 8px 0 0 0;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 2px 8px;
}
.map_block .leaflet-control-attribution a {
    color: var(--brandGreen);
}
.edaliz-form-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin: 10px 0 6px;
    padding: 16px 18px;
    border-radius: 16px;
    text-align: left;
    font-size: var(--sixteen);
    line-height: 1.5;
    box-sizing: border-box;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(17, 17, 17, 0.06);
    color: var(--black);
    font-family: 'Inter-Regular', 'Inter', sans-serif;
}
.edaliz-form-notice[hidden] {
    display: none !important;
}
.edaliz-form-notice.is-success {
    background: linear-gradient(135deg, rgba(102, 138, 134, 0.12) 0%, rgba(255, 255, 255, 0.95) 60%);
    border-color: rgba(102, 138, 134, 0.35);
    color: var(--black);
}
.edaliz-form-notice.is-success::before {
    content: "✓";
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    background: var(--brandGreen);
    color: var(--white);
}
.edaliz-form-notice.is-error {
    background: linear-gradient(135deg, rgba(200, 90, 90, 0.08) 0%, rgba(255, 255, 255, 0.98) 55%);
    border-color: rgba(200, 90, 90, 0.28);
    color: rgba(30, 28, 29, 0.92);
}
.edaliz-form-notice.is-error::before {
    content: "!";
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    background: rgba(200, 90, 90, 0.95);
    color: var(--white);
}
.edaliz-form-notice__text {
    flex: 1;
    min-width: 0;
}
.edaliz-recaptcha-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 8px 0 4px;
}
.edaliz-accept-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.edaliz-accept-err {
    margin: 0;
    min-height: 0;
}
.edaliz-accept-err .error_message {
    text-align: center;
}
.edaliz-accept-err .error_message::before {
    display: none;
}
.edaliz-accept-block.edaliz-accept--invalid .checko_ {
    outline: 2px solid rgba(200, 90, 90, 0.5);
    outline-offset: 3px;
    border-radius: 6px;
}
.contact_in_map{
    position: absolute;
    bottom: 30px;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
}
.loc_white_last{
    grid-column: span 2 / span 2;
}
.white_cont_blck{
    padding: 20px;
    border-radius: 12px;
    background-color: var(--white);
}
.contact_in_map .phone_sp{
    min-width: fit-content;
    font-size: var(--forteen);
}
.location_blck .phone_sp{
    min-width: auto;
}
.contactus_form{
    max-width: 574px;
    flex-direction: column;
    gap: 12px;
}
.contactus_form .description_{
    margin-bottom: 18px;
    max-width: 430px;
    text-align: center;
}
.called_back{
    cursor: pointer;
}
.inps_err_blck{
    flex-direction: column;
    gap: 6px;
}
.error_message {
    text-align: left;
    width: 100%;
    display: none;
    padding: 8px 12px 8px 14px;
    margin: 0;
    font-size: var(--forteen, 14px);
    line-height: 1.45;
    color: rgba(110, 50, 50, 0.95);
    background: linear-gradient(90deg, rgba(200, 90, 90, 0.1) 0%, rgba(255, 255, 255, 0.6) 100%);
    border: 1px solid rgba(200, 90, 90, 0.22);
    border-radius: 10px;
    box-sizing: border-box;
    font-family: 'Inter-Regular', 'Inter', sans-serif;
}
.error_message::before {
    content: "→ ";
    color: rgba(200, 90, 90, 0.85);
    font-weight: 600;
}
.error_message_active {
    display: block;
}
.contactus_form .inps_.edaliz-input--error,
.contactus_form .inps_.edaliz-input--error:focus {
    border-color: rgba(200, 90, 90, 0.55);
    background-color: rgba(255, 250, 250, 0.65);
    box-shadow: 0 0 0 1px rgba(200, 90, 90, 0.12);
}
.two_inps{
    gap: 10px;
}
.inps_{
    font-size: var(--eighteen);
    padding: 14px 20px;
    border: 2px solid var(--borderColor);
    border-radius: 14px;
    background-color: transparent;
}
.inps_:focus{
    border-color: var(--brandGreen);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.book_appointment{
    font-size: var(--eighteen);
    padding: 20px 30px;
    text-align: center;
    border-radius: 12px;
    color: var(--white);
    cursor: pointer;
    background-color: var(--black);
}
.book_appointment:hover{
    background-color: var(--brandGreen);
}
.radio_lab {
    margin: 18px 0;
    cursor: pointer;
    gap: 10px;
    align-items: start;
    justify-content: start;
}
.checko_, .check_inp, .checkbox_form {
    padding: 0;
    border: none;
    width: 20px;
    height: 20px;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
}
.check_inp {
    opacity: 0;
    z-index: 2;
    position: absolute;
    cursor: pointer;
}
.checkbox_form {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black);
    border-radius: 4px;
    position: absolute;
    cursor: pointer;
    z-index: 0;
}
.checko_svg {
    display: none;
    justify-content: center;
    align-items: center;
}
.checko_ input:checked~.checkbox_form .checko_svg {
    display: flex;
}
.accept_descrip{
    font-size: var(--eighteen);
}
/* end news item */

/* Prévisualisation vidéo + lightbox plein son */
.edaliz-video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}
.edaliz-video-lightbox[hidden] {
    display: none !important;
}
.edaliz-video-lightbox.is-open {
    display: flex !important;
}
.edaliz-video-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.72);
    cursor: pointer;
}
.edaliz-video-lightbox__inner {
    position: relative;
    z-index: 1;
    display: block;
    width: fit-content;
    width: -moz-fit-content;
    max-width: min(100%, calc(100vw - 48px));
    max-height: 85vh;
    line-height: 0;
}
.edaliz-video-lightbox__video {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 85vh;
    border-radius: 16px;
    background: #000;
    object-fit: contain;
}
.edaliz-video-lightbox__close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: #111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.edaliz-video-lightbox__close:hover {
    opacity: 0.9;
}
body.edaliz-video-lightbox-open {
    overflow: hidden;
}

/* Pages légales (avertissement, etc.) */
.edaliz-legal-page .general_title {
    text-align: center;
    width: 100%;
}
.edaliz-legal-page .edaliz-legal__h2 {
    margin-top: 1.75em;
    margin-bottom: 0.65em;
    font-size: var(--fontTwentyTwo);
    color: var(--black);
}
.edaliz-legal-page .edaliz-legal__h3 {
    margin-top: 1.25em;
    margin-bottom: 0.5em;
    font-size: var(--twenty);
    color: var(--black);
}
.edaliz-legal-page .edaliz-legal__intro {
    margin-bottom: 1.5em;
}
.edaliz-legal-page .edaliz-legal__body {
    max-width: 52rem;
    margin: 2rem auto 0;
    font-size: var(--eighteen);
    color: var(--greyFont);
    line-height: 1.65;
}
.edaliz-legal-page .edaliz-legal__body p {
    margin: 0 0 1.15em;
}
.edaliz-legal-page .edaliz-legal__body a {
    color: var(--brandGreen);
    text-decoration: underline;
}
.edaliz-legal-page .edaliz-legal__body a:hover {
    text-decoration: none;
}
.edaliz-legal-page .edaliz-legal__body ul,
.edaliz-legal-page .edaliz-legal__body ol {
    margin: 0 0 1em 1.25em;
    padding-left: 1em;
}
.edaliz-legal-page .edaliz-legal__body li {
    margin-bottom: 0.5em;
}

/*
 * Page « Qu’est-ce que la gestion de patrimoine ? »
 * Lisibilité, largeur de lecture, rythme vertical (héros + article uniquement sur ce template)
 */
.edaliz-quest-gestion-article .home_top .about_group {
    gap: 1.5rem;
}
.edaliz-quest-gestion-article .home_top .general_title {
    margin-bottom: 0.5rem;
}
.edaliz-quest-gestion-article__section {
    padding-top: clamp(2.5rem, 4.5vw, 3.75rem);
    padding-bottom: 5rem;
}
.edaliz-quest-gestion-article .edaliz-legal__body {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    line-height: 1.78;
}
.edaliz-quest-gestion-article .edaliz-legal__body p {
    margin: 0 0 1.4em;
}
.edaliz-quest-gestion-article .edaliz-legal__body p:last-child {
    margin-bottom: 0;
}
.edaliz-quest-gestion-article .edaliz-legal__intro {
    margin-bottom: 2.15em;
}
.edaliz-quest-gestion-article .edaliz-legal__intro + .edaliz-legal__h2 {
    margin-top: 1.6rem;
}
.edaliz-quest-gestion-article .edaliz-legal__h2 {
    margin-top: 2.85rem;
    margin-bottom: 0.85em;
    line-height: 1.28;
}
.edaliz-quest-gestion-article .edaliz-legal__h3 {
    margin-top: 1.85em;
    margin-bottom: 0.62em;
    line-height: 1.32;
}
.edaliz-quest-gestion-article .edaliz-legal__body ul,
.edaliz-quest-gestion-article .edaliz-legal__body ol {
    margin: 0.35em 0 1.4em 1.25em;
    padding-left: 1.15em;
}
.edaliz-quest-gestion-article .edaliz-legal__body li {
    margin-bottom: 0.6em;
    line-height: 1.68;
}
@media (max-width: 768px) {
    .edaliz-quest-gestion-article .home_top .general_title {
        margin-bottom: 0.65rem;
    }
    .edaliz-quest-gestion-article .edaliz-legal__body {
        line-height: 1.74;
    }
    .edaliz-quest-gestion-article .edaliz-legal__h2 {
        margin-top: 2.35rem;
        margin-bottom: 0.72em;
    }
    .edaliz-quest-gestion-article .edaliz-legal__intro + .edaliz-legal__h2 {
        margin-top: 1.35rem;
    }
    .edaliz-quest-gestion-article .edaliz-legal__h3 {
        margin-top: 1.65em;
        margin-bottom: 0.55em;
    }
    .edaliz-quest-gestion-article .edaliz-legal__body p {
        margin-bottom: 1.3em;
    }
}

/* FAQ — pages service (accordéon exclusif, bouton + panneau) */
.edaliz-faq-section .beige_block {
    align-items: stretch;
}
.edaliz-faq-section .second_title {
    text-align: center;
    max-width: none;
    width: 100%;
}
.edaliz-faq {
    margin-top: 1.25rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.edaliz-faq__item {
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(17, 17, 17, 0.04);
    transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.edaliz-faq__item.is-open {
    border-color: rgba(102, 138, 134, 0.35);
    box-shadow: 0 8px 28px rgba(17, 17, 17, 0.07);
}
.edaliz-faq__trigger {
    cursor: pointer;
    width: 100%;
    margin: 0;
    padding: 1.1rem 2.75rem 1.1rem 1.25rem;
    text-align: left;
    font: inherit;
    font-weight: 600;
    font-size: var(--eighteen);
    color: var(--black);
    line-height: 1.45;
    background: transparent;
    border: none;
    border-radius: 16px;
    position: relative;
    transition: color 0.25s ease;
    box-sizing: border-box;
}
.edaliz-faq__item.is-open .edaliz-faq__trigger {
    border-radius: 16px 16px 0 0;
}
.edaliz-faq__trigger:hover,
.edaliz-faq__trigger:focus-visible {
    color: var(--brandGreen);
}
.edaliz-faq__trigger:focus-visible {
    outline: 2px solid rgba(102, 138, 134, 0.45);
    outline-offset: 2px;
}
.edaliz-faq__question {
    display: block;
    padding-right: 0.25rem;
}
.edaliz-faq__trigger::after {
    content: "";
    position: absolute;
    right: 1.15rem;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -6px;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform: rotate(45deg);
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease;
    pointer-events: none;
}
.edaliz-faq__item.is-open .edaliz-faq__trigger::after {
    transform: rotate(225deg);
    margin-top: -2px;
    border-color: var(--brandGreen);
}
.edaliz-faq__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.edaliz-faq__item.is-open .edaliz-faq__panel {
    grid-template-rows: 1fr;
}
.edaliz-faq__panel-inner {
    overflow: hidden;
    min-height: 0;
}
.edaliz-faq__answer {
    padding: 0 1.25rem 1.15rem 1.25rem;
}
.edaliz-faq__answer .description_ {
    margin: 0;
    padding-top: 0.15rem;
    border-top: 1px solid rgba(17, 17, 17, 0.06);
}
@media (max-width: 620px) {
    .edaliz-faq__trigger {
        padding: 1rem 2.5rem 1rem 1.1rem;
        font-size: calc(var(--eighteen) - 1px);
    }
    .edaliz-faq__trigger::after {
        right: 1rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .edaliz-faq__item,
    .edaliz-faq__panel,
    .edaliz-faq__trigger,
    .edaliz-faq__trigger::after {
        transition-duration: 0.01ms !important;
    }
}

.edaliz-transmission-audience-title {
    max-width: min(100%, 56rem);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

/* Grille public : 4 colonnes (surcharge du grid 3 col de .why_choose_blck) */
.why_choose_blck.edaliz-audience-4col {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
    margin-top: 26px;
    align-items: stretch;
}
.edaliz-audience-4col .choose_item {
    align-items: center;
    text-align: center;
    justify-content: center;
    min-height: 120px;
    padding: 24px 16px;
}
.edaliz-audience-4col .choose_items_title {
    margin-top: 0;
    font-size: clamp(1rem, 1.9vw, var(--sixteen));
    line-height: 1.4;
}
@media (max-width: 900px) {
    .why_choose_blck.edaliz-audience-4col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 520px) {
    .why_choose_blck.edaliz-audience-4col {
        grid-template-columns: 1fr;
    }
}
.edaliz-transmission-mgmt {
    align-items: center;
    text-align: center;
    width: 100%;
}
.edaliz-transmission-mgmt .second_title,
.edaliz-transmission-mgmt .sub_title {
    margin-left: auto;
    margin-right: auto;
}
.edaliz-transmission-mgmt .inf_blck {
    justify-content: center;
    width: 100%;
}

.edaliz-transmission-cta-actions {
    justify-content: center;
}

/* Bouton Être rappelé — bloc CTA bas de page transmission (texte blanc sur fond sombre) */
.edaliz-cta-transmission-rappel {
    color: var(--white) !important;
    background-color: var(--black);
    padding: 14px 20px;
    border-radius: 12px;
    justify-content: center;
    min-width: fit-content;
    border: none;
    box-sizing: border-box;
}
.edaliz-cta-transmission-rappel:hover {
    background-color: var(--brandGreen);
    color: var(--white) !important;
}
.aboutus_descrip_section .description_ a,
.management_blck .description_ a {
    color: var(--brandGreen);
    text-decoration: underline;
}
.aboutus_descrip_section .description_ a:hover,
.management_blck .description_ a:hover {
    text-decoration: none;
}

