* {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}
body {
    overflow-x: hidden;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #F5F7FE;

}
.toHide {
    display: none;
    width: 0;
    height: 0;
    visibility: hidden;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;

}

section {
    width: 100vw;
    display: flex;
    position: relative;
}
header {
    width: 100%;
    transition: .4s ease-in-out;
}

header.sticky {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: white;
    padding: 10px 0; /* Réduire la taille du padding pour l'effet sticky */
}
header {
    background: #E9EBF3;
    padding: 30px 80px ;
    margin-top: 0;
}
 header .content {
    display: flex;
    justify-content: space-between;
    align-items: center;

}
header .content .logo,
header .content .logo a {
    display: flex;
}
header .content .logo img {
    width: 126px;

}
header .content .cta-ct a.cta-form {
    display: flex;
    z-index: 3;
    border-radius: 80px;
    background: linear-gradient(357deg, #BA9765 4.6%, #F7DDB9 185.35%);
    padding: 20px 40px;
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: .5s ease-in-out;

}
header .content .cta-ct {
    display: flex;
    gap: 16px;
}
header .content .cta-ct a:first-of-type {
    display: flex;
    align-items: center;
    transition: .5s ease-in-out;
}
header .content .cta-ct a:first-of-type img {
    width: 60px;
}
header .content .cta-ct a:first-of-type:hover {
    transform: scale(1.1);
}
header .content .cta-ct a.cta-form::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 0%;
    background: #000;
    z-index: -2;
    transition: .4s ease-in-out;
}

header .content .cta-ct a.cta-form:hover:after {
    height: 100%;
}
header .content .cta-ct a.cta-form:hover {
    color: #BA9765;
}
 section.hero-sec {
    border-radius: 24px;
    margin-top: 24px;
    padding-top: 80px;
    background: green;
    padding-left: 40px;
}
section.hero-sec .content {
    width: 100%;
    position: relative;
}
section.hero-sec .content .top {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
section.hero-sec .content .top .hero-title h1 {
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    width: 95%;
}
section.hero-sec .content .top .hero-cta {
    display: flex;
}
section.hero-sec .content .top .hero-cta a {
    border-radius: 80px;
    background: #fff;
    display: inline-flex;
    text-decoration: none;
    padding:  20px 40px; 
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #BA9765;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
section.hero-sec .content .img-holder {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: end;

}
section.hero-sec .content .img-holder img {
    width: 100%;
    object-fit: cover;
}

/* Cases PG  */
body.single-case-pg header,
body.cases-pg header {
    background: #E9EBF3;
}
body.single-case-pg header .content,
body.cases-pg header .content {
    display: flex;
    align-items: center;
}
body.single-case-pg header .content .logo a img,
body.cases-pg header .content .logo a img{
    width: 132px;

}

body.cases-pg .cases-sec {
    background: #F5F7FE;
    padding-top: 80px;
}

body.cases-pg .cases-sec .container {
    padding-right: 60px;
    padding-left: 60px;
}
body.cases-pg .cases-sec .container .content .top {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
body.cases-pg .cases-sec .container .content .top .cases-title h1 {
    color: #1C1C1B;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    padding: 24px 0;
}
body.cases-pg .cases-sec .container .content .top .cases-title h1::after {
    content: '';
    width: 140px;
    height: 6px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #BA9765;
    border-radius: 6px;
}
body.cases-pg .cases-sec .container .content .top .cases-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1FR);
    gap: 20px;
    justify-content: center;
}
body.cases-pg .cases-sec .container .content .top .cases-boxes .case-boxe {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 40px;
    padding-bottom: 55px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    background: #E9EBF3;
    transition: .5s ease-in-out;
    text-decoration: none;
}


body.cases-pg .cases-sec .container .content .top .cases-boxes .case-boxe .case-img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 168px;
}
body.cases-pg .cases-sec .container .content .top .cases-boxes .case-boxe .case-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .5s ease-in-out;
}
body.cases-pg .cases-sec .container .content .top .cases-boxes .case-boxe .case-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
body.cases-pg .cases-sec .container .content .top .cases-boxes .case-boxe .case-texts span {
    display: block;
    position: relative;
    z-index: 3;
    transition: .6s ease-in-out;
}
body.cases-pg .cases-sec .container .content .top .cases-boxes .case-boxe .case-texts .case-title span {
    color: #757887;
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;

}
body.cases-pg .cases-sec .container .content .top .cases-boxes .case-boxe .case-texts .case-subtitle span {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
}
body.cases-pg .cases-sec .container .content .top .cases-boxes .case-boxe::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    width: 100%;
    height: 40%;
    background: #BA9765;
    z-index: 0;
    transition: .5s ease-in-out;
}
body.cases-pg .cases-sec .container .content .top .cases-boxes .case-boxe:hover .case-texts span{
    color: #fff;
}
body.cases-pg .cases-sec .container .content .top .cases-boxes .case-boxe:hover .case-img img {
    transform: scale(1.1);
}
body.cases-pg .cases-sec .container .content .top .cases-boxes .case-boxe:hover::after {
    transform: translateY(0%);

}


/* Single Case  */
body.single-case-pg .single-case-sec {
    margin-top: 100px;
    padding-bottom: 50px;
}
body.single-case-pg .single-case-sec .container .content {
    display: flex;
    flex-direction: column;
    gap: 40px;

}
body.single-case-pg .single-case-sec .container .content .top-title {
    display: flex;
    justify-content: space-between ;
    align-items: center;
    background: #E9EBF3;
    padding: 40px 30px ;
}
body.single-case-pg .single-case-sec .container .content .top-title .single-case-date {
    display: flex;
}
body.single-case-pg .single-case-sec .container .content .top-title .single-case-date span {
    border-radius: 80px;
    background: linear-gradient(357deg, #BA9765 4.6%, #F7DDB9 185.35%);
    padding: 10px 40px;
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
}
body.single-case-pg .single-case-sec .container .content .top-title .single-case-title {
    display: flex;
    flex-direction: column;

}
body.single-case-pg .single-case-sec .container .content .top-title .single-case-title span {
    display: block;
    
}
body.single-case-pg .single-case-sec .container .content .top-title .single-case-title span.single-case-company {
    color: #757887;
    text-align: right;
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    
}
body.single-case-pg .single-case-sec .container .content .top-title .single-case-title span.single-case-slug {
    color: #1C1C1B;
    text-align: right;
    font-family: "Roboto", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
iframe .ytp-show-cards-title {
    display: none !important;
}
body.single-case-pg .single-case-sec .container .content .top-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
body.single-case-pg .single-case-sec .container .content .top-banner .picture-player {
    width: 100%;
    /* max-width: 992px; */
    position: relative;
    background: #E9EBF3;
    height: 500px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
body.single-case-pg .single-case-sec .container .content .top-banner .picture-player img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
body.single-case-pg .single-case-sec .container .content .top-banner .video-player {
    width: 100%;
    max-width: max-content;
    position: relative; 
    /* padding: 2px;  */
    background: #E9EBF3;
    overflow: hidden;
    height: 500px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);

}
.video-player video {
    position: relative;
    width: 100%;
    height: 100%;
    border: 0;
    max-height: 500px !important;

}
body.alx1 .video-player::before {
    content: "";
    display: block;
    background-image: url('../imgs/alx1-banner.png');
    background-size: cover;
    background-position: center;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: -10;
}
body.single-case-pg .single-case-sec .container .content .top-logos {
    padding: 55px 24px;
    background: #E9EBF3;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    
}
body.single-case-pg .single-case-sec .container .content .top-logos .logo-boxe {
    /* width: 80px; */
}
body.single-case-pg .single-case-sec .container .content .top-logos .logo-boxe img {
    width: 100%;
    height: 100%;
}
body.single-case-pg .single-case-sec .container .content .top-infos {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    padding: 24px;
    background: #E9EBF3;
}
body.single-case-pg .single-case-sec .container .content .top-infos .top-descrip {
    background: #fff;
    padding: 24px;
}
body.single-case-pg .single-case-sec .container .content .top-infos .top-descrip p {
    color: #636780;
    text-align: justify;
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 166.667% */
}
body.single-case-pg .single-case-sec .container .content .top-keys {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;

}
body.single-case-pg .single-case-sec .container .content .top-keys .top-key {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: #fff;
    padding: 24px;

}
body.single-case-pg .single-case-sec .container .content .top-keys .top-key-title span {
    color: #757887;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
} 
body.single-case-pg .single-case-sec .container .content .top-keys .top-key-number span {
    color: #1041C1;
    font-family: "Roboto", sans-serif;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    text-wrap: nowrap;
    line-height: normal;
}
/* whirlpool */
body .whirlpool1 {

}
.top-influencers {
    display: flex;
    flex-direction: column;
    gap: 20px;

}
.top-influencers .top-influencers-title {
    background: #D9DBE3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
}

.top-influencers .top-influencers-title span {
    color: #1C1C1B;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.top-influencers .top-influencers-title.goldColor {
    background: #ba966545;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
}
.top-influencers .top-influencers-title.goldColor span {
    color: #BA9765;

}
.top-influencers .top-influencers-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1FR);
    gap: 20px;
}
.top-influencers .top-influencers-boxes .top-influencer-boxe {
    position: relative;
    overflow: hidden;

}
.top-influencers .top-influencers-boxes .top-influencer-boxe .top-influencer-boxe-img {
    cursor: grab;
    display: flex;
    position: relative;
    overflow: hidden;
    transition: .5s ease-in-out;
    /* height: 450px; */

}
.top-influencers .top-influencers-boxes .top-influencer-boxe .top-influencer-boxe-img img {
    object-position: center top;
    width: 100%;
    height: 100%;
    transition: .5s ease-in-out;
}

.top-influencers .top-influencers-boxes .top-influencer-boxe .top-influencer-boxe-title span {
    color: #757887;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    transition: .4s ease-in-out;

}
.top-influencers .top-influencers-boxes .top-influencer-boxe .top-influencer-boxe-title {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E9EBF3;
    padding: 27px 6px;
    transition: .4s ease-in-out;
}
.top-influencers .top-influencers-boxes .top-influencer-boxe:hover .top-influencer-boxe-img img {
    transform: scale(1.1);

}
.top-influencers .top-influencers-boxes .top-influencer-boxe .top-influencer-boxe-title {
    position: relative;
}
.top-influencers .top-influencers-boxes .top-influencer-boxe .top-influencer-boxe-title::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 100%;
    background-color: #BA9765 ;
    opacity: 1;
    z-index: 2;
    transform: translateX(-100%);
    transition: .4s ease-in-out;

}
.top-influencers .top-influencers-boxes .top-influencer-boxe:hover .top-influencer-boxe-title span{
    color: #BA9765;
    transform: translateX(15px);

}
.top-influencers .top-influencers-boxes .top-influencer-boxe:hover .top-influencer-boxe-title::after{
    transform: translateX(0%);


}

body.fairmont .single-case-sec .container .content .top-banner .video-player {
    max-width: max-content;
}

/* Startiha W'Glitchihaaa  */
/* .top-influencers .top-influencers-boxes .top-influencer-boxe .top-influencer-boxe-img::before,
.top-influencers .top-influencers-boxes .top-influencer-boxe .top-influencer-boxe-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    mix-blend-mode: difference;
    opacity: 0;
    z-index: 2;
}

.top-influencers .top-influencers-boxes .top-influencer-boxe .top-influencer-boxe-img::before {
    background: linear-gradient(90deg, rgba(255,0,0,0.3), rgba(0,255,0,0.3), rgba(0,0,255,0.3));
}

.top-influencers .top-influencers-boxes .top-influencer-boxe .top-influencer-boxe-img::after {
    background: linear-gradient(90deg, rgba(255,0,0,0.3), rgba(0,255,0,0.3), rgba(0,0,255,0.3));
}

.top-influencers .top-influencers-boxes .top-influencer-boxe .top-influencer-boxe-img:hover::before {
    opacity: 0.6;
    animation: glitch-anim 0.3s steps(2) infinite;
}

.top-influencers .top-influencers-boxes .top-influencer-boxe .top-influencer-boxe-img:hover::after {
    opacity: 0.8;
    animation: glitch-anim2 0.4s steps(3) infinite;
}

@keyframes glitch-anim {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-5px, 5px);
    }
    40% {
        transform: translate(5px, -5px);
    }
    60% {
        transform: translate(-5px, -5px);
    }
    80% {
        transform: translate(5px, 5px);
    }
    100% {
        transform: translate(0);
    }
    }

    @keyframes glitch-anim2 {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(5px, -5px);
    }
    40% {
        transform: translate(-5px, 5px);
    }
    60% {
        transform: translate(5px, 5px);
    }
    80% {
        transform: translate(-5px, -5px);
    }
    100% {
        transform: translate(0);
    }
    } */
  
/* Endiha W'Glitchihaaa  */




/* PIP MODE  */
/* Styles pour la fenêtre PiP simulée */
#pip-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; /* 80% de la largeur de l'écran */
    height: 75%; /* 75% de la hauteur de l'écran */
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

#pip-container video {
    width: 100%;
    height: 100%;
}

#pip-container.hidden {
    display: none;
}

#close-pip {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #BA9765;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}