.cas_cliniques_block_info{
    display: flex;
    gap: 30px;
    padding: 80px 0;
}
.cas_cliniques_block:nth-child(odd){
    background: #F1F3F7;
}
.cas_cliniques_image{
    border-radius: 20px;
    width: 50%;
    overflow: hidden;
}
.cas_cliniques_info{
    width: 50%;
}
.cas_cliniques_text{
    
}
.cas_cliniques_block_info._right .cas_cliniques_info{
    order: 1;
}
.cas_cliniques_block_info._right .cas_cliniques_image{
    order: 2;
}
.cas_cliniques_text p{
    font-size: 16px;
    line-height: 24px;
    color: #27292B;
}
.cas_cliniques_text h2{
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 12px;  
    margin-top: 0;
}
.cas_cliniques_text h3{
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 12px;
}
.cas_cliniques_text h4{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 12px;
}

@media screen and (max-width: 968px) {
    .cas_cliniques_block_info{
        padding: 40px 0;
    }
}
@media screen and (max-width: 768px) {
    .cas_cliniques_block_info .cas_cliniques_info{
        order: 1;
        width: 100%;
    }
    .cas_cliniques_block_info .cas_cliniques_image{
        order: 2;
        width: 100%;
    }
    .cas_cliniques_block_info{
        flex-direction: column;
        gap: 20px;
    }
}
.valeurs_container{
    margin-left: -15px;
    margin-right: -15px;
}
.valeurs_item{
    width: 33.33%;
    margin-bottom: 30px;
}


.valeurs_item_info{
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 380 / 300;
    position: relative;
    display: block;
    cursor: pointer;
}
.valeurs_item_info img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal_block_body{
    background: #063F71;
    border-radius: 20px;
    padding: 30px;
    color: #fff;   
    display: flex;
    position: relative;
    justify-content: space-between;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}
.modal_block_image{
    width: calc(50% - 15px);
    border-radius: 20px;
    overflow: hidden;
}
.modal_block_textcontent{
    width: calc(50% - 15px);
}
.modal_block_close{
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center; 
    background-size: cover;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIyLjUgNy41TDcuNSAyMi41IiBzdHJva2U9IndoaXRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPHBhdGggZD0iTTcuNSA3LjVMMjIuNSAyMi41IiBzdHJva2U9IndoaXRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9zdmc+Cg==);
}
.modal{ 
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
}
.modal.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.modal .modal_block_content{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .35s ease .05s, transform .35s ease .05s;
}
.modal.active .modal_block_content{
    opacity: 1;
    transform: translateY(0);
}
body.modal-open{
    overflow: hidden;
}
.modal_block{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.modal_block_title{
    text-align: center;
    font-size: 36px;
    line-height: 46px;
    color: #27292B;
    font-weight: 400;
    margin-bottom: 120px;
}
.modal_block_ttl{
    font-size: 26px;
    line-height: 36px;
}
.modal_overlay{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .4);
}
.modal_block_content{
    position: relative;
    z-index: 2;
    margin: auto;
    width: 100%;
}
.modal_block_text{
    margin-top: 20px;
}

@media screen and (max-width: 1180px) {
    .valeurs_item{
        width: 50%;
    }
    .modal_block_image{
        width: calc(50% - 10px);
        border-radius: 20px;
        overflow: hidden;
    }
    .modal_block_textcontent{
        width: calc(50% - 10px);
    }
    .valeurs_item_info{
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 768px) {
    .valeurs_item{
        width: 100%;
        margin-bottom: 20px;
    }
    .modal_block{
        padding: 20px 12px;
        align-items: flex-start;
    }
    .modal_block_title{
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 30px;
    }
    .modal_block_body{
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    .modal_block_image,
    .modal_block_textcontent{
        width: 100%;
    }
    .modal_block_ttl{
        font-size: 20px;
        line-height: 28px;
    }
    .modal_block_close{
        right: 6px;
        top: 6px;
        width: 24px;
        height: 24px;
    }
}
.category_hero img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.implant_icon_list{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.implant_icon_list_item_ico{
    width: 38px;
    height: 38px;
    margin: 0 auto;
}
.implant_icon_list_item_title{
    margin-top: 4px;
}

/*Land*/
.land_text{
    font-size: 16px;
    line-height: 24px;
}
.land_text p{
    margin-top: 16px;
    margin-bottom: 16px;
}
.land_text strong,.land_text b{
    font-weight: 700;
}

.land_text h2{
    font-size: 36px;
    line-height: 46px;
    font-weight: 400;
}
.land_text h3{
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    margin-top: 16px;
    margin-bottom: 16px;
}
.land_text ul{
    list-style: outside disc;
    margin-left: 20px;
}
.land_text ol{
    list-style: outside decimal;
    margin-left: 20px;
}
.land_text li{

}

.land_section{
    padding-top: 80px;
    padding-bottom: 80px;
}
.land_preserver{
    background: #063F71;
    color: #fff;
}
.land_preserver_block{
    display: flex;
    justify-content: space-between;
}
.land_preserver_block_column{
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.land_preserver_block_image{
    border-radius: 20px;
    overflow: hidden;
    margin-top: 30px;
}

.land_info_block_item{
    display: flex;
    justify-content: space-between;
}
.land_info_block_content{
    width: calc(50% - 15px);
}

.land_info_block_image{
    width: calc(50% - 15px);
}
.land_info_block_image img{
    border-radius: 20px;
}
.land_info_block:nth-child(even){
    background: #F1F3F7;
}
.land_info_block:nth-child(even) .land_info_block_content{
    order: 2;
}
.land_info_block:nth-child(even) .land_info_block_image{
    order: 1;
}
.land_approche_list{
    margin-top: 40px;
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
}
.land_approche_item{
    width: 33.33%;
}
.land_approche_info{
    margin-left: 15px;
    margin-right: 15px;
}
.land_approche_icon{
    width: 60px;
    height: 60px;
    margin: 0 auto;
}
.land_approche_title{
    margin-top: 12px;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    color: #002645;
}
.land_approche_subtitle{
    margin-top: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-align: center;
    color: #002645;
}
.land_approche_text{
    margin-top: 8px;
    text-align: center;
}
.land_compare_text{
    margin-top: 16px;
}
.comparer_list{
    
}
.land_info_block_content h2, 
.land_info_block_content h3{
    color: #002645;
}
.land_compare_text {
    margin-top: 16px;
    text-align: center;
}
.land_hero{
    height: 100dvh;
    max-height: 830px;
    position: relative;
}
.land_hero_info{
    position: absolute;
    left: 0;
    bottom: 77px;
    width: 100%;
    color: #fff;
    z-index: 1;

}
.land_hero_info_block{
    max-width: 585px;
    margin: 0 auto;
    text-align: center;
}
.land_hero_info_block h1{
    font-size: 40px;
    line-height: 50px;
}
.land_hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.land_hero:before{
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #2B3C4B 100%);
}
.comparer_list{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 1fr);
    grid-template-rows: repeat(var(--comparer-rows, 1), auto);
    border-radius: 16px;
    box-shadow: 0px 8px 24px 0px #0026450F;
    overflow: hidden;
    margin-top: 40px;

}
.comparer_row{
    display: contents;
}
.comparer_item{
    padding: 12px 20px;
    height: 100%;
}
.comparer_item._title{
    background: #063F71;
    color: #fff;
    text-align: center;
    padding: 24px 20px;
}
.comparer_item{
    display: flex;
    align-items: center;
}
.comparer_row:first-child .comparer_item:not(._title){
    background: #F1F3F7;
}
@media (max-width: 768px) {
    .land_section{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .land_approche_list{
        flex-direction: column;
        margin-top: 20px;
    }
    .land_approche_item{
        width: 100%;
        margin-bottom: 20px;
    }
    .land_info_block_image{
        order: 1;
        width: 100%;
        margin-bottom: 20px;
    }
    .land_info_block_content {
        order: 2;
        width: 100%;
    }
    .land_info_block_item{
        flex-direction: column; 
    }
    .land_preserver_block{
        flex-direction: column;
    }
    .land_preserver_block_column {
        width: 100%;
    }
    .land_preserver_block_column._left{
        margin-bottom: 20px;
    }
    .land_text h2{
        font-size: 32px;
        line-height: 42px;
    }
    .land_text h3{
        font-size: 22px;
        line-height: 32px;
    }
    .comparer_list{
        display: block;
    }
    .comparer_row{
        display: block;
    }
}
.category_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -15px;
    margin-right: -15px;
}

.category_itm{
    width: 33.33%;
    margin-bottom: 30px;
}
.category_itm_info{
    margin-left: 15px;
    margin-right: 15px;
    
    
    
}
.category_itm_img{
    aspect-ratio: 306 / 212;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}
.category_itm_info img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.category_itm h3{
    font-size: 26px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
}
@media (max-width: 968px) {
    .category_itm{
        width: 50%;
    } 
}
@media (max-width: 768px) {
    .category_itm{
        width: 100%; 
    }
}
.comparer_item{
    border-right: 1px solid #DFE8F2; 
    border-bottom: 1px solid #DFE8F2;
}
.comparer_item._title{
    border-right: 1px solid #FFFFFF1F
}
.comparer_row:last-child .comparer_item{
    border-right: none;
}
.comparer_row .comparer_item:last-child{
    border-bottom: none;
}
body{ 
    overflow-x: hidden;
}
#category-filters li a{
    display: flex;
    justify-content: space-between;
    width: 100%;
} 
#cas-tags-list li{
    width: 100%;
}
.widget-menu li a{
    overflow: initial!important;
}
.equipe_img img{
    transition: .2s;
}
.equipe_img:hover img{
    transform: scale(1.1);
}
.wrp_bgConseils{
    position: relative;
}
.category_itm_img{
    position: relative;
}
.category_itm_img:before{
    position: absolute;
    content:'';
    width: 100%;
    height: 100%;
    left:0 ;
    top: 0;
    background: linear-gradient(180deg, rgba(6, 63, 113, 0.2) 50%, rgba(6, 63, 113, 0.84) 100%);
    z-index: 1;
}
.category_itm_img h3{
    /*
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 20px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    transition: .2s;
    */
    position: absolute;
    z-index: 2;
    left: 0;
    /* bottom: 0; */
    top: 100%;
    transform: translate(0, -100%);
    margin-top: -20px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    transition: .4s;
}
.category_itm_info .roundBTN{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 100%);
    border: 1px solid #fff;
    color: #fff;
    z-index: 1;
    backdrop-filter: blur(12px);
} 
.category_itm_info:hover h3{
    top: 0;
    transform: translate(0, 0); 
    margin-top: 20px;    
}
.category_itm_info:hover .roundBTN{
    transform: translate(-50%, -20px);
}
@media (max-width: 768px) {
    .category_itm_info h3{
        top: 0;
        transform: translate(0, 0);
        margin-top: 20px;    
    }
    .category_itm_info .roundBTN{
        transform: translate(-50%, -20px);
    }    
}
/* Cas cliniques — слайдер (3 в ряд на десктопе, автопрокрутка) */
.cas-cliniques-slider{
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.cas-cliniques-slider::-webkit-scrollbar{
    display: none;
}
.cas-slide{
    flex: 0 0 calc((100% - 60px) / 3);
    scroll-snap-align: start;
}
@media (max-width: 968px){
    .cas-slide{
        flex-basis: calc((100% - 30px) / 2);
    }
}
@media (max-width: 768px){
    .cas-cliniques-slider{
        gap: 20px;
    }
    .cas-slide{
        flex-basis: 100%;
    }
}

.conseils-cat.active{
    border-width: 1px;
}
header .main-menu>li.menu-item-has-children>.sub-menu>li:first-child{
    transition: .2s;
}
header .main-menu>li.menu-item-has-children>.sub-menu>li:first-child:hover{
    border-top-right-radius: 0;
}
.conseils-cat{
    transition: .2s;
}
.conseils-cat:hover{
    color: rgb(166 192 214/var(--tw-text-opacity));
}

.conseils-archive-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.conseils-archive-list .conseils-item{
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
}
.conseils-archive-list .conseils-item.is-hidden{
    display: none;
}
@media (max-width: 768px){
    .conseils-archive-list .conseils-item{
        flex-basis: calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }
}
@media (max-width: 575px){
    .conseils-archive-list .conseils-item{
        flex-basis: 100%;
        max-width: 100%;
    }
}