:root {
    --max-width: 1340px;
    --min-margin: 3rem;
    --dynamic-width: min(var(--max-width), calc(100% -(2* var(--min-margin))));
    --dynamic-margin: max(calc(50% - 0.5* var(--max-width)), var(--min-margin));

    --horizontal-linear-gradient : linear-gradient(90deg,rgba(69, 81, 152, 1) 0%, rgba(198, 95, 152, 1) 100%);
    --vertical-linear-gradient : linear-gradient(180deg,rgba(69, 81, 152, 1) 0%, rgba(198, 95, 152, 1) 100%);
} 

/*
 *
 * INITIALISATION 
 *
 */

html, body{
    width : 100%;
    overflow: hidden;
    overflow-y: auto;
}

header .elementor-widget-image a img[src$=".svg"]{
    width: auto;
}

footer .elementor-widget-image a img[src$=".svg"]{
    width: auto;
}


/* DISPLAY NONE */
.d-none{
    display: none!important;
}

@media screen and (min-width:768px){
    .d-sm-only{
        display: none!important;
    }
}

@media screen and (max-width:767px){
    .d-sm-none{
        display: none!important;
    }
}

@media screen and (min-width:1024px){
    .d-md-only{
        display: none!important;
    }
}

@media screen and (max-width:1023px){
    .d-md-none{
        display: none!important;
    }
}

@media screen and (min-width:1200px){
    .d-lg-only{
        display: none!important;
    }
}

@media screen and (max-width:1199px){
    .d-lg-none{
        display: none!important;
    }
}

/* RECAPTCHA */
.grecaptcha-badge{
	display : none!important;
	opacity : 0;
	z-index : -99999;
}

/*
 *
 * GENERAL 
 *
 */


/* Full height */
@media screen and (min-width:768px){
    .full-height{
        height: 100%!important;
    }
}

/* Offset left wrapper */
@media screen and (min-width:768px){
    .offset-left-wrapper{
        position: relative;
        padding-left: var(--dynamic-margin);
    }
}

/* Background image & squared background image */
.background-img, .squared-img{
    position: relative;
}

.background-img:before, .squared-img:before{
    z-index: 2;
}

.squared-img{
    aspect-ratio: 1 / 1;
}

.squared-img > div, .background-img > div{
    position: static;
}

.squared-img .elementor-widget-image, .background-img .elementor-widget-image{
    position: static;
}

.squared-img img, .background-img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    object-position: center;
    min-height: 100%;
}

.squared-img.top img, .background-img.top img{
    object-position: center top;
}

.squared-img.bottom img, .background-img.bottom img{
    object-position: center bottom;
}

@media screen and (max-width:767px){
    .background-img.full-height, .squared-img.full-height{
        height: auto!important;
    }
}

/*
 *
 * GENERAL CUSTOM
 *
 */
@property --_x {
  syntax: "<length>";
  inherits: true;
  initial-value: 0px; 
}

/* ROUNDED BORDER */
[class^="rounded-border"], [class^="rounded-border"]::before, [class^="rounded-border"]::after{
backface-visibility: hidden;
transform: translateZ(0) translate(0, 0);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
will-change: transform, clip-path;}

.rounded-border:before, .rounded-border:after{
    content: "";
    position: absolute;
    background-color: transparent;
    box-shadow : 0 0 0 50px #FFF, 0 0 0 0 #FFF;
    pointer-events : none ; clip-path : inset(0);
}

/* ROUNDED BORDER LIGHT BLUE */
.rounded-border.light-blue:before, .rounded-border.light-blue:after{
    box-shadow : 0 0 0 50px var(--e-global-color-6834968), 0 0 0 0 var(--e-global-color-6834968);
}

/* ROUNDED BORDER BIG */
.rounded-border.big:before, .rounded-border.big:after{
    width: 2.5rem;
    height: 2.5rem;
}   

/* ROUNDED BORDER */
.rounded-border:not(.big):before, .rounded-border:not(.big):after{
    width: 1.5rem;
    height: 1.5rem;
}  

/* ROUNDED BORDER BOTTOM LEFT */
.rounded-border.bottom-left:before, .rounded-border.bottom-left:after{
    border-radius: 0 0 0 50px;
}

.rounded-border.bottom-left:before{
    top: auto;
    bottom: 99.9%;
    left: -1px;
}

.rounded-border.bottom-left:after{
    left: 99.9%;
    bottom: -1px;
}

/* ROUNDED BORDER BOTTOM Right */
.rounded-border.bottom-right:before, .rounded-border.bottom-right:after{
    border-radius: 0 0 50px;
}

.rounded-border.bottom-right:before{
    top: auto;
    bottom: 99.9%;
    right: -0.5px;
    left: auto;
}

.rounded-border.bottom-right:after{
    right: 99.9%;
    bottom: -1px;
}

/* ROUNDED BORDER BOTTOM CENTER */
.rounded-border.bottom-center:before, .rounded-border.bottom-center:after{
    bottom: -1px;
}

.rounded-border.bottom-center:before{
    border-radius: 0 0 50px 0;
    left: auto;
    top: auto;
    right: 99.9%;
}

.rounded-border.bottom-center:after{
    border-radius: 0 0 0 50px;
    left: 99.9%;
}

/* SLIDER */
.card-slider{
    position: relative;
}

@media screen and (min-width:768px) {
    .card-slider:not(.right){
        padding-left: 6rem;
    }

    .card-slider.right{
        padding-right: 4rem;
    }
}

@media screen and (max-width:767px) {
    .card-slider{
        padding-bottom: 6rem;
    }
}

.card-slider .swiper{
    border-radius: 2rem;
    z-index: 1;
}

.card-slider:before, .card-slider:after{
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    border-radius: 2rem;
    background-color: #fff;
    border: 2px solid var(--e-global-color-6834968);
    border-radius: 2rem;
    transform-origin: 100% 100%;
    z-index: 0;
}

.card-slider:not(.right):before, .card-slider:not(.right):after{
    width: calc(100% - 6rem);
    right: 0;
}

.card-slider.right:before, .card-slider.right:after{
    width: calc(100% - 4rem);
    right: 4rem;
}

.card-slider:after{
    transform: rotate(-3deg);
}

.card-slider:before{
    transform: rotate(-6deg);
}


@media screen and (min-width:768px) {
    .card-slider .swiper-pagination{
        display: flex;
        flex-direction: column;
        gap: .5rem;
    }
}

@media screen and (max-width:767px) {
    .card-slider:before, 
    .card-slider:after,
    .card-slider.right:before, 
    .card-slider.right:after{
        width: 100%!important;
        right: 0;
        height: calc(100% - 5rem);
    }

    .card-slider.right .swiper-pagination,
    .card-slider.left .swiper-pagination{
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
    }
}


.card-slider .swiper-slide .squared-img .elementor-widget-image{
    height: 100%;
}


/* Main Hero */
.hero#home-hero .custom-title > span.normal:nth-child(1){
    display: block;
    margin-bottom: 1rem;
}

/* Gradient Background */
.gradient-bg.blue{
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(236, 237, 245, 1) 50%, rgba(236, 237, 245, 1) 100%);
}

.gradient-bg.pink{
    background: linear-gradient(180deg, rgba(252, 238, 247, 1) 50%, rgba(252, 238, 247, 1) 50%, rgba(252, 238, 2475, 1) 100%);
}

.gradient-bg.blue.up{
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 45%, rgba(236, 237, 245, 1) 45%, rgba(236, 237, 245, 1) 100%);
}

.gradient-bg.pink.up{
    background: linear-gradient(180deg, rgba(252, 238, 247, 1) 45%, rgba(252, 238, 247, 1) 45%, rgba(252, 238, 2475, 1) 100%);
}


@media screen and (max-width:767px){
    .gradient-bg.blue{
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 40%, rgba(236, 237, 245, 1) 40%, rgba(236, 237, 245, 1) 100%);
    }

    .gradient-bg.blue.up{
        background: linear-gradient(0deg, rgba(255, 255, 255, 1) 40%, rgba(236, 237, 245, 1) 40%, rgba(236, 237, 245, 1) 100%);
    }

    .gradient-bg.pink{
        background: linear-gradient(180deg, rgba(252, 238, 247, 1) 40%, rgba(252, 238, 247, 1) 40%, rgba(252, 238, 2475, 1) 100%);
    }

}

/* LIST ICON */
.elementor-widget-text-editor ul{
    padding: 0;
}

.elementor-widget-text-editor ul li{
    position: relative;
    padding-left: 2rem;
    list-style-type: none;
}

.elementor-widget-text-editor ul li:not(:last-child){
    margin-bottom: .7rem;
}

.elementor-widget-text-editor ul li:before{
    content: url(../images/icon-check-EGC-incomplete.svg);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.4rem;
    height: auto;
}

/* TABS */

.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title{
    position: relative;
}

.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title:before,
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title:after{
    transition: box-shadow .3s ease;
}

.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title .e-n-tab-title-text{
    display: inline-block;
}

.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title .e-n-tab-title-text b{
    display: block;
}

/* TABS TITLE */
[class^="e-n-tab-title"], [class^="e-n-tab-title"]::before, [class^="e-n-tab-title"]::after{
backface-visibility: hidden;
transform: translateZ(0) translate(0, 0);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
will-change: transform, clip-path;}

.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title:before, .elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title:after{
    content: "";
    position: absolute;
    background-color: transparent;
    box-shadow : 0 0 0 50px #FFF, 0 0 0 0 #FFF;
    pointer-events : none ; clip-path : inset(0);
    width: 1.5rem;
    height: 1.5rem;
    bottom: 0;
}

/* TABS TITLE SELECTED */


.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected="true"]:before, 
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected="true"]:after,
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected="false"]:hover:before, 
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected="false"]:hover:after,
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected="false"]:focus:before, 
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected="false"]:focus:after{
    box-shadow : 0 0 0 50px var(--e-global-color-6834968), 0 0 0 0 var(--e-global-color-6834968);
}

.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title:before{
    border-radius: 0 0 50px 0;
    left: auto;
    top: auto;
    right: 100%;
}

.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title:after{
    border-radius: 0 0 0 50px;
    left: 100%;
}

@media screen and (max-width:767px) {
    .elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected="true"]{
        width: 70%!important;
        margin: auto;
    }

    .elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected="false"]{
        width: 100%!important;
        border: 2px solid var(--e-global-color-6834968);
        border-radius: 2rem;
    }

    .elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected="false"]:hover:before, 
    .elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected="false"]:hover:after,
    .elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected="false"]:focus:before, 
    .elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected="false"]:focus:after{
        box-shadow : 0 0 0 0px var(--e-global-color-6834968), 0 0 0 0 var(--e-global-color-6834968);
    }
}

/* COUNTER */
.elementor-widget-counter .elementor-counter-title{
    text-align: center;
}

/* WP NOTIFICATION BAR */
#wpfront-notification-bar div.wpfront-close {
    border: 1px solid transparent!important;
    background-color: transparent!important;
    color: transparent!important;
}

#wpfront-notification-bar div.wpfront-close:before{
    content : url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="%23ffffff"><path d="M256-192.35 192.35-256l224-224-224-224L256-767.65l224 224 224-224L767.65-704l-224 224 224 224L704-192.35l-224-224-224 224Z"/></svg>');
    position : absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
}

#wpfront-notification-bar-open-button.top, #wpfront-notification-bar-open-button.bottom{
    background-image: none!important;
    border: 0!important;
    padding: .25rem!important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .75)!important;
}

#wpfront-notification-bar-open-button.top:before, #wpfront-notification-bar-open-button.bottom:before{
    content : url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="%23ffffff"><path d="M480-336.35 232.35-584 296-647.65l184 184 184-184L727.65-584 480-336.35Z"/></svg>');
    width: 12px;
    height: 12px;
}

#wpfront-notification-bar-open-button.top:before{
    content : url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="%23ffffff"><path d="M480-336.35 232.35-584 296-647.65l184 184 184-184L727.65-584 480-336.35Z"/></svg>');
}

#wpfront-notification-bar-open-button.bottom:before{
    content : url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="%23ffffff"><path d="m480-520.35-184 184L232.35-400 480-647.65 727.65-400 664-336.35l-184-184Z"/></svg>');
}

/*
 *
 * HEADER 
 *
 */

#main-header{
    position: fixed;
    transition: all .3s ease;
    background-color: #fff;
    z-index: 10;
}

#main-header .elementor-widget-theme-site-logo{
    transition: all .3s ease;
}

/* STICKED */
#main-header .elementor-widget-image {
	z-index: 3;
}

#main-header.sticked{
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 5;
    padding-top : 0!important;
	transform : translateY(-100%);
	transition : transform .3s ease;
}

#main-header.sticked .elementor-widget-theme-site-logo{
    transform: scale(.8);
}

#main-header.sticked.active{
	transform : translateY(0);
}

#main-header li a span.d-sm-none{
    padding-right : 0.3rem;
}

/*
 *
 * MAIN MENU 
 *
 */

#main-menu {
    display: inline-flex;
    width: auto;
    max-width: max-content;
}

#main-menu .e-n-menu-item [id^="e-n-menu-content-"] > .e-con-inner:before{
    content: "";
    position: absolute;
    bottom: 100%;
    left : 50%;
    transform: translateX(-50%) translateY(.75rem);
    --r: 3px; /* border radius */

    width: 25px;
    aspect-ratio: 1/cos(30deg);
    --_g:calc(tan(60deg)*var(--r)) bottom var(--r),#000 98%,#0000 101%;
    mask:
        /* a conic gradient to fill the middle area */
        conic-gradient(from -30deg at 50% calc(200% - 3*var(--r)/2),#000 60deg,#0000 0)
        0 100%/100% calc(100% - 3*var(--r)/2) no-repeat,
        /* 3 radial gradients for 3 circles */
        radial-gradient(var(--r) at 50% calc(2*var(--r)),#000 98%,#0000 101%),
        radial-gradient(var(--r) at left  var(--_g)),
        radial-gradient(var(--r) at right var(--_g));
    /* the 3-point polygon */
    clip-path: polygon(50% 0,100% 100%,0 100%);
    background: #ffffff;
}

#main-menu #hilighted-item{
    padding: 0;
}

#main-menu #hilighted-item .e-n-menu-title-container{
    background: #455198;
    background: var(--horizontal-linear-gradient);
    padding: .4rem 1.3rem;
    border-radius: 50px;
    background-size: 100% 100%;
    background-position: 0% 100%;
    transition: all .3s ease;
}

#main-menu #hilighted-item .e-n-menu-title-container:hover,
#main-menu #hilighted-item .e-n-menu-title-container:focus{
    background-size: 200% 200%;
    background-position: 0% 50%;
}

#main-menu #hilighted-item .e-n-menu-title-text{
    color: #fff;
}

@media screen and (max-width:1024px){
    #main-menu li.e-n-menu-item > .e-n-menu-content > .e-con{
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0)!important;
    }
}

@media screen and (max-width:767px){
    #main-menu .e-n-menu-toggle[aria-expanded="true"] + .e-n-menu-wrapper{
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100vh;
        z-index: 10;
        background-color: rgb(255, 255, 255);
        display: flex;
        padding: 4rem;
    }
}

/*
 *
 * HOME
 *
 */

.testimonial-item .video-wrapper .video-player > .elementor-wrapper{
    height: 100%;
}

#pagination .elementor-post-navigation__separator-wrapper{
    padding: 0 2rem;
}

@media screen and (max-width:767px){
    #pagination .elementor-post-navigation__separator-wrapper{
        padding: 0 1rem;
    }
}

/*
 *
 * ACTUALITES
 *
 */

.article-item .article-item-title h3 a, .article-item .article-item-title h3{
    transition: font-weight .3s ease;
}

.article-item:is(:hover,:focus) .article-item-title h3 a, .article-item:is(:hover,:focus) .article-item-title h3{
    font-weight: 900;
}

.article-item .article-item-link .elementor-button-link{
    transition: all .3s ease;
}

.article-item:is(:hover,:focus) .article-item-link .elementor-button-link{
    box-shadow: -7px 7px 0px 0px #C65F98!important;
}

.elementor-button-link .elementor-button-text{
    transition: all .3s ease;
}

.elementor-button-link:is(:hover,:focus) .elementor-button-text{
    font-weight: 900;
}

@media screen and (max-width:767px){
    .article-item{
        height: auto!important; 
    }
}

/*
 *
 * METIERS 
 *
 */

#job-notice-search form{
    padding: 1.2rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--e-global-color-secondary);
    background-color: #fff;
    box-shadow: -15px 15px 0px 0px var(--e-global-color-secondary);
}

#job-notice-search form ul{
    padding-left: 0;
}

#job-notice-search form ul h4{
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--e-global-color-secondary);
}

#job-notice-search form ul > li > ul > li{
    display: flex;
    align-items: flex-start;
}

/*#job-notice-search form ul .sf-field-taxonomy-categorie-de-metier > ul{
    columns: 2;
}

#job-notice-search form > ul{
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

#job-notice-search .sf-field-taxonomy-categorie-de-metier{
    width: 70%;
}

#job-notice-search .sf-field-taxonomy-formation{
    width: 20%;
}*/

/*
 *
 * CONTACT 
 *
 */

.elementor-field-group-rgpd_texte{
    margin-top : 1rem;
    margin-bottom: 1rem;
}

.elementor-field-group-rgpd_texte .elementor-field-option{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top : 0.5rem;
}

.elementor-field-group-rgpd_texte .elementor-field-option label{
    line-height: 1.4;
    width: 90%!important;
    font-size : .9rem;
}