/**
 * Theme Name: TayyurtTheme
 * Author: Buildup
 * Author URI: https://buildup.ma
 * Version: 1.0.3
 */


:root{
    --border-radius-2rem:2rem;
    --border-radius-1rem:1rem;
    --border-radius-half-rem:0.5rem;
    --base-color-lightgreenlime:#69e7d1;
    --base-color-darkblue:#09354d;
    --base-color-yellow:#fee578;
    --accent-color-lightblue:#0693e6;
    --dark-blue-bg-color:#1E5BAA;
    --spacing-between-divs:4rem;
    --letter-spacing: 0.125rem;
    --main-header-height:24rem;
    font-size: 16px !important;
    --accent-color-wave-svg:#FFF;
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body{
    width: 100%;
}
a{
    color: unset;
    text-decoration: unset;
}
.wp-block-group > .wp-block-group__inner-container {
    display: inherit;
    width: 100%;
    height: 100%;
    border-end-end-radius: inherit;
    margin-inline: inherit;
    border-start-start-radius: inherit;
    border-end-start-radius: inherit;
    border-start-end-radius: inherit;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    background-color: inherit;
}
.border-b{
    border-bottom: 1px solid;
}
.border-blue{
    border-color:var(--dark-blue-bg-color);
}
.main-header-wrapper{
    width: 100%;
}
.main-header-wrapper.not-page-headered{
    height: var(--main-header-height);
}
.main-header-wrapper.empty-header-bg-img{
    background-color: #b4f3e8;
}
.main-header-wrapper > *:not(img,.page-title){
    position: relative;
    z-index: 15;
}
.main-header-wrapper .page-title{
    position: absolute;
    width: 100%;
    font-weight: 700;
    top: calc(var(--main-header-height) - (var(--main-header-height) * 1/2));
    text-align: center;
    font-size: clamp(1rem,5vw,1.5rem);
}
.main-header-wrapper > img {
    width: 100%;
    z-index: -1;
    object-fit: cover;
    position: absolute;
    height: inherit;
    top: 0rem;
    filter: brightness(0.5);
}
.main-header-wrapper.page img{
    object-position: 0 70%;
    color: var(--accent-color-lightblue);
}
@media screen and (max-width:36rem) and (min-width:20rem){
    .main-header-wrapper.page > img{
        object-position: 50% 80%;
    }
}
.main-header-content,.main-content .contained,.main-content.contained{
    width: calc(100% * 20/24);
    position: relative;
    margin: 0 auto;
}

.main-content > *[class*="section"] .section-header{
    font-size: clamp(1.75rem,3vw,2.25rem);
}

@media screen and (max-width:64rem){
    .main-content > .wp-block-group:last-child{
        padding-block-end: 4rem;
    }
    .main-content > .wp-block-group:first-child{
        margin-block-start: 4rem;
    }
}
.main-header-content{
    width: clamp(calc(64rem - 4rem),70vw,calc(80rem - 4rem));
    gap: clamp(15%,8vw,25%);
    align-items: center;
    display: flex;
    padding-inline: 2rem;
    overflow-x: clip;
    z-index: 10;
    position: relative;
    top: 2rem;
}
@media screen and (max-width:64rem){
    .main-header-content{
        width: 100%;
        justify-content: space-between;
        flex-direction: row-reverse;
        padding-inline: 0;
    }
    .main-header-wrapper > *:not(img,.page-title){
        position: fixed;
        z-index: 20;
        top: -1px;
        background-color: white;
    }
}

.woosurf-pullquote{
    border: 0;
    margin: 9rem auto 2rem auto;
    width: 50%;
    height: 14rem;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}
.woosurf-pullquote-quote{
    font-size: clamp(1.25rem,2vw,2.75rem);
}
.woosurf-pullquote-author{
    font-size: clamp(1rem,2vw,1.5rem);
}
@media screen and (max-width:90rem){
    .woosurf-pullquote{
        width: 100%;
    }
}
.main-header-content.not-page-headered{
    background-color: white;
    width: clamp(calc(64rem - 4rem),70vw,calc(80rem - 4rem));
    justify-content: space-around; 
}
.main-header-content .menu-main-navigation-container{
    z-index: 15;
    flex: 1 0 auto;
}
.main-header-content .mobile-icon-menu{
    display: none;
}
.main-header-content .mobile-navigation-menu{
    display: none;
}
@media screen and (max-width:64rem){
    .main-header-content .main-header-img-wrapper{
        max-width: 4rem;
        margin-inline: 0;
        order: 1;
    }
    .main-header-content.not-page-headered{
        justify-content: space-between;
        width: 100%;
        flex-direction: row-reverse;
        top: 0rem;
        position: fixed;
        z-index: 20;
        top: -1px;
        background-color: white;
    }

    .main-header-content > :not(.menu-main-navigation-container) {
        margin-inline: 1rem;
    }
    .main-header-content .mobile-icon-menu{
        display: unset;
        width: 2rem;
        order: 1;
    }
    .main-header-content .menu-main-navigation-container{
        position: fixed;
        top: 0rem;
        min-height: 100vh;
        width: 100%;
        transform: translateX(-100%);
        transition: transform 250ms ease-in-out;
        background-color:#00000096;
    }
    .main-header-content .menu-main-navigation-container.open{
        transform: translateX(0%);
    }
    .main-header-content .main-header-main-menu{
        flex-direction: column;
        min-height: inherit;
        background-color: white;
        gap: 0rem;
        width: clamp(calc(20rem - 4rem),12vw,calc(48rem - 8rem));
    }
    .main-header-content .main-header-main-menu li{
        border-bottom: 1px solid lightgrey;
        padding-block: 1rem;
        font-size: 0.875rem;
        padding-inline: 1rem 0;
        font-weight: 600;
        word-spacing: 0.25rem;
    }
    .main-header-content .main-header-main-menu .menu-item-has-children .sub-menu{
        display: none;
        visibility: collapse;
    }
}
.main-header-img-wrapper{
    max-width: 6rem;
    margin-inline: 1rem;
}
.main-header-img-wrapper img{
    width: clamp(4rem,calc(100% * 4/5),6rem);
    height: auto;
}

.main-header-main-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.75rem,2vw,2rem);
    letter-spacing: var(--letter-spacing);
}
#menu-footer-menu ul:has(ul) > li,#menu-main-navigation ul:has(ul) > li{
    padding-block: 1rem;
}
.main-header-main-menu a{
    text-decoration: none;
    color: black;
}
.menu-item-has-children {
    position: relative;
}

.page-contact-faq p{
    color: #939393;
}
.spaced-word{
    letter-spacing: var(--letter-spacing);
}
.slider-x{
    overflow-x: scroll;
    overflow-y: hidden;
}
.slider-y{
    overflow-y: scroll;
    overflow-x: hidden;
}

*[class*="slider-control-"]{
    cursor: pointer;
    font-size: 1.5rem;
}

@media screen and (min-width:64rem){
    .slider-x-wrapper.enable-on-tablet-n-mobile > *[class*="slider-control-"]{
        display: none;
    }
}
span[class*="slider-control-"]{
    color: lightgray;
}
span#current-slide{
    color: blue;
}
.menu-item-has-children .sub-menu{
    position: absolute;
    height: auto;
    overflow: scroll;
    scrollbar-width: none;
    padding: 2rem 1rem;
    width: max-content;
    margin-block: 1rem 0;
    z-index: 10;
    border-radius: var(--border-radius-1rem);
    background-color: #fee578;
    max-width: 14rem;
    color: #09354d;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-4rem);
    transition: opacity 250ms ease, transform 250ms ease-in-out;
}
.menu-item-has-children.flip-hover-on-top .sub-menu{
    transform: translateX(-8rem);
}
.menu-item-has-children:hover.flip-hover-on-top .sub-menu{
    transform: translateY(-18rem) translateX(-8rem);
    pointer-events: auto;
    visibility: visible;
}

.menu-item-has-children .sub-menu li:not(:last-child){
    border-bottom: 2px solid #69e7d1;
    width: 70%;
}
.menu-item-has-children .sub-menu li{
    padding: 0.5rem;
}

.main-content .wp-block-group .shaped-wave{
    margin-inline: unset;
    width: 100%;
}
.shaped-wave .safe-svg-inside.safe-svg-inline svg{
    max-width: 200vw;
    width: 150%;
}
.shaped-wave .safe-svg-inside.safe-svg-inline{
    width: 100% !important;
    height: 6rem !important;
    position: absolute;
    left: 0;
    overflow: hidden;
    fill: white;
}
.wp-block-group div.shaped-wave:nth-of-type(2n+1) .safe-svg-inside.safe-svg-inline{
    bottom:calc(100% - 1rem);
    transform: rotate(0deg);
    top: calc(0% - 1px);
}
.wp-block-group div.shaped-wave:nth-of-type(2n) .safe-svg-inside.safe-svg-inline{
    bottom:calc(0% - 1rem);
    transform: rotate(180deg);
}

@media screen and (max-width:36rem){
    .wp-block-group div.shaped-wave{
        overflow: hidden;
    }
}
.menu-item-has-children .sub-menu li{
    list-style: none;
}
.menu-item-has-children:hover .sub-menu{
    transform: translateY(-1rem);
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}
.blog-posts-list > li{
    position: relative;
}
.blog-posts-list > li >*:not(figure){
    position: absolute;
}
.blog-posts-list > li figure img{
    border-radius: 1rem;
}
.wp-block-social-links{
    margin-block: 1rem 0;
}
.wp-block-social-links .wp-block-social-link.wp-social-link{
    margin-block: 1rem 0;
    filter: grayscale(1);
    transition: filter 0.2s ease-in-out;
}
.wp-block-social-links .wp-block-social-link.wp-social-link:hover{
    filter: grayscale(0);
}


.wp-block-post .wp-block-post-featured-image img{
    min-height: 24rem;
    max-height: 100%;
}
.blog-posts-list > li .wp-block-post-date{
    position: absolute;
    top: 1rem;
    right: 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    filter: invert(1);
    background-color: #a9a9a98c;
    padding: 0.25rem;
}
.blog-posts-list > li .wp-block-post-title{
    position: absolute;
    bottom: 2rem;
    font-weight: 700;
    font-size: clamp(1.125rem,2vw,2rem);
    background-color: #3333336b;
    padding: 0.5rem;
    filter: invert(1);
    border-radius: 1rem;
    margin: 0 1rem;
}
.blog-posts-list-wrapper span[class*="slider-control"]{
    font-size: 3rem;
}
@media screen and (max-width:36rem){   
    .blog-posts-list-wrapper span[class*="slider-control"]{
        font-size: 1.5rem;
        color: black;
    }
}
.blog-posts-list > li .wp-block-post-title a{
    color: black;
}
.wp-block-group .wp-block-heading{
    margin: 0rem 0 2rem 0;
    font-size: 2.25rem;
}
.wp-block-latest-posts__list .wp-block-latest-posts__featured-image img {
    height: inherit; 
    object-fit: cover;
    width: 100%;
}
.wp-block-latest-posts.is-grid{
    width: max-content;
    margin: 0 auto;
}
.wp-block-image a{
    height: inherit;
    max-height: inherit;
}
figure.wp-block-image img{
    width: 100%;
    height:inherit;
    max-height: inherit;
    object-fit: cover;
    border-radius: inherit;
    border-end-end-radius: inherit;
    border-end-start-radius: inherit;
    border-start-end-radius: inherit;
    border-start-start-radius: inherit;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
}
.space-around{
    justify-content: space-around;
}
.taxonomy-category.wp-block-post-terms {
    top: 2rem;
    left: 2rem;
    display: flex;
    width: 50%;
    flex-wrap: wrap;
    row-gap: 0.2rem;
}
.taxonomy-category.wp-block-post-terms a {
    text-align: left;
    font-weight: 500;
    background-color: #b4f3e8;
    padding: 0.5rem;
    border-radius: 0.5rem;
}
.woosurfup-tabbed-listing{
    width: clamp(64rem,60%,112rem);
    margin-inline: auto;
    padding-block: 8rem;
}
.woosurfup-tabs-header{
    border-bottom: 1px solid slategray;
    padding-block-end: 1rem;
}
.woosurfup-tabs-title{
    font-size: 2.25rem;
    flex: 0 0 auto;
    padding-inline-end: 2rem;
}
.woosurfup-tabs-items-group{
    display: flex;
    list-style: none;
    gap: 2rem;
    font-weight: 600;
    font-size: 1.25rem;
    width: 100%;
}
@media screen and (max-width:64rem){
    .woosurfup-tabbed-listing{
        width: calc(100% - 4rem);
    }
    .woosurfup-tabbed-listing .woosurfup-tabs-header{
        border-bottom: unset;
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    .woosurfup-tabs-header .woosurfup-tabs-title{
        padding-block: 0 1rem;
        border-bottom: 1px solid;
        width: 100%;
    }
    .woosurfup-tabs-header .woosurfup-tabs-items-group {
        justify-content: center;
        overflow-x: scroll;
        padding-block: 0.5rem;
    }
    .woosurfup-tabs-header .woosurfup-tabs-items-group li{
        white-space: nowrap;
    }
}
@media screen and (max-width:48rem){   
    .woosurfup-tabs-header .woosurfup-tabs-items-group {
        justify-content: start;
    }
    .woosurfup-tabs-header .woosurfup-tabs-title {
        font-size: 1.875rem;
        line-height: 2.25rem;
        font-weight: 500 !important;
        padding-inline-end: 0px;
    }
}
.woosurfup-tabs-items-group li{
    cursor: pointer;
}
.woosurfup-tabs-items-group .active{
    color: white;
}
.woosurfup-listing-content-group{
    display: flex;
}
.woosurfup-listing-content-list li{
    padding: 0.5rem;
}
.woosurfup-listing-content-list{
    transform: translateY(2rem);
    opacity: 0;
    transition: all 0.2s;
    list-style-position: inside;
}
.woosurfup-listing-content-list.active{
    transform: translateY(0);
    opacity: 1;
}
.pattern-book-now-prefooter {
    margin-inline: auto;
    padding: 2rem 0;
    width: 60%;
    gap: 0;
    border-radius: 0.5rem;
}
.page-about-us-gallery-header p{
    margin-block: 2rem;
}
.page-about-us-gallery-header h4{
    font-size: 2rem;
}
.page-about-us-gallery-items{
    width: clamp(calc(64rem - 4rem),70vw,80rem);
    margin-inline: auto;
    margin-block: 2rem;
}
.page-about-us-gallery-items > *{
    flex: 0 0 calc(100% * 1/6);
} 
.page-about-us-gallery-items figure{
    border-radius: var(--border-radius-1rem);
}
.page-about-us-gallery-items .page-about-us-gallery-column img{
    height: 100%;
}
.page-about-us-gallery-column figure.wp-block-image{
    flex-grow: 1;
}

.pattern-book-now-prefooter p{
 line-height: 2 !important;
}
.pattern-book-now-prefooter p strong{
    color: black;
}
.pattern-book-now-prefooter div.is-layout-flex{
    padding: 1rem 0;
}
.pattern-book-now-prefooter .wp-block-button{
    font-size: 1rem;
}
.pattern-book-now-prefooter > div:not(:last-child){
    border-right: 2px solid #69e7d1;
}
@media screen and (max-width:90rem){
    .pattern-book-now-prefooter{
        flex-flow: column ;
    }

    .pattern-book-now-prefooter > div:not(:last-child){
        border-right: none;
    }
}

@media screen and (max-width:48rem){
    .pattern-book-now-prefooter{
        padding: 2rem;
        width: 80%;
        text-align: center;
    }
}
p.google-reviews-icon{
    font-size: 3rem;
    border-radius: 48rem;
    font-weight: 600;
    width: 1.5em;
    padding:0 0.5rem;
}

.page-contact-faq p.faq-title { 
    padding-block: 2rem;
    font-size: clamp(1.5rem,3vw,1.75rem);
    line-height: 1.75rem;
    font-weight: 600;
    color: var(--base-color-darkblue);
}
.faq-list{
    width: calc(100% - 4rem);
    padding: 2rem 0;
    gap: 2rem;
}
@media screen and (max-width:64rem){
    .faq-list{
        width: 100%;
    }
}
.faq-list .faq-item {
    overflow: hidden;
    cursor: pointer;
    border-bottom: 1px solid var(--base-color-yellow);
    max-height: var(--summary-height);
    transition: max-height 0.3s ease-in-out;
}
.faq-list .faq-item.faq-item.opened{
    max-height: calc(var(--content-height) + var(--summary-height));
}
.faq-list .faq-item .faq-item-question{
    font-size: 1.5rem;
    padding-block: 0 1rem;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}
.faq-list .faq-item-question:hover, .faq-list .faq-item.opened .faq-item-question{
    color: var(--accent-color-lightblue);
}
.faq-list .faq-item .faq-item-answer{
    max-height: 0;
    padding: 1rem 0;
    color: unset;
    transition: max-height 0.3s ease-in-out;
}
.faq-list .faq-item.opened .faq-item-answer{
    max-height: calc(var(--content-height) + var(--summary-height));
}

*[class*="woosurfup-form-group-flex"]{
    display: flex;
    gap: 2rem;
}

*[class*="woosurfup-form"] label{
    display: block;
    font-size: clamp(1.125rem,2vw,1.25rem);
    font-weight: 400;
    margin-block: 1rem;
    white-space: nowrap;
}
*[class*="woosurfup-form"] input:not(*[class*="submit"]),*[class*="woosurfup-form"] textarea{
    width: 100%;
    padding: 0.5rem;
}
*[class*="submit"]{
    padding: 0.5rem;
    width: calc(20% + 2rem);
    border-width: 0;
    margin-block: 1rem;
    background-color: var(--base-color-yellow);
    color: var(--base-color-darkblue);
    font-size: 1.25rem;
    text-transform: uppercase;
    border-radius: 0.5rem;
}

.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
.gap-2{
    gap: 2rem;
}
.card{
    border: 1px solid lightgray;
}
.card .accomodation-item-tags,.card .accomodation-item-tags p{
    color: #0693e6 !important;
    text-align: center;
}
.card p a{
    font-size: clamp(0.75rem,2vw,1.5rem);
    font-weight: 700;
}
.card:nth-of-type(odd){
    background-color: #fee578;
}
.card:nth-of-type(odd) p a{
    color: #09354d;
}
.card:nth-of-type(even) p a{
    color: #fee578;
}
.card:nth-of-type(even){
    background-color: #09354d;
}

.w-50per{
    width: 50%;
}
.center-margin{
    margin-inline: auto;
}
.has-scrollbar-thin{
    scrollbar-width: thin;
}
#menu-footer-menu{
    display: flex;
    list-style: none;
    gap: clamp(0.5rem,5vw,4rem);
    margin-block: 4rem;
}

footer{
    overflow: hidden;
}

footer > .mobile-footer {
    display: flex;
    overflow: hidden;
    width: 100%;
    min-height: 4rem;
    position: fixed;
    bottom: 0;
    visibility: unset;
    align-items: center;
    background-color: white;
    z-index: 15;
    padding-block: 1rem;
    box-shadow: 0rem 0rem 0.5rem lightgray;
    justify-content: space-around;
}
.mobile-footer .mobile-link{
    display: flex;
    flex-flow: column;
    align-items: center;
    font-size: clamp(0.75rem,3vw,1rem);
}
.mobile-footer .mobile-link svg{
    color: var(--base-color-darkblue);
    width: 1rem;
}

.h-96{
    height: 24rem;
}
.max-h-96{
    max-height: 24rem;
}
.min-h-96{
    min-height: 24rem;
}
.h-80{
    height: 20rem;
}
.max-h-80{
    max-height: 20rem;
}
.min-h-80{
    min-height: 20rem;
}
.h-64{
    height: 16rem;
}
.max-h-64{
    max-height: 16rem;
}
.min-h-64{
    min-height: 16rem;
}
#menu-footer-menu a{
    text-decoration: none;
    color: black;
}
.w-full{
    width: 100%;
}
.w-fit{
    width: fit-content;
}
.inlined-content{
    display: inline-block;
}
.inlined-content > p{
    display: inline;
    max-width: fit-content;
}
.flex{
    display: flex;
}
.flex-col{
    flex-direction: column;
}
.flex-row{
    flex-direction:row;
}
.align-items-end{
    align-items:flex-end;
}
.align-items-start{
    align-items:flex-start;
}
.min-w-1-3rd{
    min-width: calc(100% * 1/3);
}
.max-w-1-3rd{
    max-width: calc(100% * 1/3);
}
.my-2{
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.my-4{
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.px-2{
    padding-left:2rem;
    padding-right:2rem;
}
.py-2{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.px-4{
    padding-left:4rem;
    padding-right:4rem;
}
.py-4{
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.w-1-5th{
    width: calc(100% * 1/5);
}
.w-2-5th{
    width: calc(100% * 2/5);
}
.w-3-5th{
    width: calc(100% * 3/5);
}
.w-4-5th{
    width: calc(100% * 4/5);
}
.w-5-5th{
    width: calc(100% * 5/5);
}

.inlined{
    display: inline;
}

.border-radius-1\/2,.border-radius-1\/2 > *{
    border-radius: 0.5rem;
}
.border-radius-1,.border-radius-1 > *{
    border-radius: 1rem;
}
.border-radius-2, .border-radius-2 > *{
    border-radius: 2rem;
}
.border-radius-top-1\/2,.border-radius-top-1\/2 > *{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: unset;
    border-bottom-right-radius: unset;
}
.border-radius-top-1,.border-radius-top-1 > *{
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: unset;
    border-bottom-right-radius: unset;
}
.border-radius-top-2,.border-radius-top-2 > *{
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    border-bottom-left-radius: unset;
    border-bottom-right-radius: unset;
}
.text-white{
    color: white;
}
.text-black{
    color: black;
}
.margin-nulled{
    margin: unset;
}
.underlined-text{
    text-decoration: underline;
}
.underlined-text-spaced{
    text-decoration: unset;
    border-bottom: 1px solid;
}
.d-none,.hidden{
    display: none !important;
}
button{
    font-family: 'League Spartan', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.underlined-bold-spaced strong{
    border-bottom: 1px solid;
    font-weight: 600;
    color: var(--accent-color-lightblue);
}
.google-maps-iframe{
    flex: 0 0 100%;
    border: none;
    width: 100%;
}

.whatsapp-icon{
	font-size:2rem;
    z-index: 10;
    color:var(--accent-color-lightblue);
}
.whatsapp-icon svg{
    width: 2rem;
}
/* Style du lien */
.whatsapp-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
    background-color: var(--base-color-lightgreenlime); /* Couleur de l'animation */
    border-radius: 50%; /* Pour un cercle parfait */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Ombre légère */
    position: relative;
}


/* Style de l'icône Font Awesome */
.whatsapp-icon a svg {
    color: var(--base-color-darkblue); /* Couleur de l'icône en bleu foncé */
    font-size: 32px; /* Taille de l'icône */
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}
/* Effet au survol */
.whatsapp-icon a:hover svg {
    transform: scale(1.1); /* Légère mise à l'échelle au survol */
}

/* Animation "water drop wave" */
@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Cercle animé */
.whatsapp-icon a::before,
.whatsapp-icon a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--base-color-lightgreenlime); /* Couleur de l'animation */
    border-radius: 50%;
    z-index: 1;
    animation: wave 2s infinite;
}

/* Délai pour l'animation du deuxième cercle */
.whatsapp-icon a::after {
    animation-delay: 1s;
}

@media screen and (min-width:120rem){
    .main-content .contained {
        width: calc(120rem * 20/24);
    }
    footer > .mobile-footer{
        width: calc(120rem * 20/24);
        right: 50%;
        transform: translateX(50%);
        border-top-left-radius: 25rem;
        border-top-right-radius: 25rem;
    }
}
@media screen and (max-width:80rem){ 
    .blog-posts-list > li .wp-block-post-title{
        font-weight: 600;
        padding: 0.5rem;
        border-radius: 1rem;
        margin: 0 1rem;
    }
    body .is-layout-grid.blog-posts-list{
        display: flex;
    }
    body .is-layout-grid.blog-posts-list > li {
        flex: 0 0 calc((100% * 1/3) - 1rem);
    }
}
@media screen and (max-width:64rem){
    body .is-layout-grid.blog-posts-list .wp-block-post{
        flex: 0 0 calc((100% * 1/2) - 1rem);
    }


}
@media screen and (max-width:48rem){
    body .is-layout-grid.blog-posts-list .wp-block-post{
        flex: 0 0 calc(100% - 1rem);
    }
    .blog-posts-list .wp-block-post .taxonomy-category.wp-block-post-terms{
        top: 4rem;
        font-size: 0.875rem;
        left: 1rem;
    }
}
