@charset "UTF-8";
/***!  /media/templates/site/avenir/css/main.css?736373  !***/

/**** NORMALIZE **********************************************************************************/

html, body{
	width: 100%;
	padding: 0;
	margin: 0;
	background: #ffffff;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	position: relative;

	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}
*{
	outline: none;
	box-sizing: border-box;
}
img{
	border: 0;
}
a{
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6{
	margin: 0;
	font-weight: normal;
	font-size: 16px;
}
picture{
	display: block;
}

/**** FIN NORMALIZE ******************************************************************************/

/**** VARIABLES **********************************************************************************/

:root{
    --color-1: #000000; /* noir */
    --color-2: #ffffff; /* blanc */
    --color-3: #f5c645; /* jaune */
    --color-4: #4fa8b5; /* bleu */
    --color-5: #e85c56; /* rouge */
    --color-6: #525252; /* gris foncé */
    --color-7: #bfbfbf; /* gris moyen */
    --color-8: #e2e2e2; /* gris clair */
    --color-9: #f3f3f3; /* gris très clair */

    --color-3-darker: #e4b132;
    --color-4-darker: #418f9b;
    --color-5-darker: #cf504b;
    --color-6-darker: #404040;

    --font-1: "Open Sans", sans-serif;
    --font-2: "Bebas Neue", sans-serif;

	--global-padding: 60px;
	--global-spacing: 40px;
	--global-spacing-big: 100px;

    --header-height: 130px;
    --header-height-big: 200px;

    --breadcrumbs-height: 60px;

    --content-width-normal: 1024px;
    --content-width-wide: 1400px;
}

@media (max-width: 1024px) {

	:root{
        --header-height: 100px;
		--global-padding: 30px;
	}

}

@media (max-width: 768px) {

	:root{
		--global-padding: 20px;
		--global-spacing: 40px;
	    --global-spacing-big: 60px;
	}

}

/**** FIN VARIABLES ******************************************************************************/

/**** STYLES GLOBAUX *****************************************************************************/

*{
    scroll-margin-top: calc(var(--header-height) + 20px);
}
.fee_page * {
    scroll-margin-top: 0;
}

body{
    line-height: 1.5;
    font-family: var(--font-1);
    font-size: 16px;
}

a{
    color: var(--color-4);
    text-decoration: none;
}

.h1, .rte h1{
    margin: 0;
    color: var(--color-6);
    line-height: 1;
    font-family: var(--font-2);
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
}
.h2, .rte h2{
    margin: 0;
    line-height: 1.5;
    color: var(--color-1);
    font-size: 24px;
    font-weight: 900;
    text-transform: none;
}
.h3, .rte h3{
    margin: 0;
    line-height: 1.5;
    color: var(--color-1);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
.h4, .rte h4{
    margin: 0;
    color: var(--color-1);
    font-size: 14px;
    font-weight: 900;
    text-transform: none;
}

@media (max-width: 1024px) {

    .h1, .rte h1{
        font-size: 40px;
    }
    .h2, .rte h2{
        font-size: 20px;
    }
    .h3, .rte h3{
        font-size: 16px;
    }
    .h4, .rte h4{
        font-size: 12px;
    }

}

/*************************************************************************************************/

.rte{
    line-height: 1.8;

    & p:first-child{
        margin-top: 0;
    }
    & p:last-child{
        margin-bottom: 0;
    }
    & img{
        max-width: 100%;
    }
    & h1, & h2, & h3, & h4{
        margin-bottom: 1em;
    }

    & :is(ul, ol):first-child{
        margin-top: 0;
    }
    & :is(ul, ol):last-child{
        margin-bottom: 0;
    }
}

/*************************************************************************************************/

.pagebuilderck.workspaceck,
.pagebuilderck > [class^="pbckid"]{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/*************************************************************************************************/

.fullcontainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 60px var(--global-padding);
    background: var(--color-9);
}
    .fullcontainer-content{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1024px;
        gap: var(--global-spacing);
    }

/*************************************************************************************************/

.facebook-bg{
    background: #3b5998;
}
.instagram-bg{
    background: #e4405f;
}
.x-bg{
    background: #000000;
}
.linkedin-bg{
    background: #0077b5;
}
.youtube-bg{
    background: #ff0000;
}

/*************************************************************************************************/

.customButton{
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    border: none;
    border-radius: 20px;
    background: var(--color-4);
    color: var(--color-2);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;

    transition: background .2s ease-in-out;

    &:hover{
        background: var(--color-4-darker);
    }
}

/**** FIN STYLES GLOBAUX *************************************************************************/

/**** STRUCTURE PRINCIPALE ***********************************************************************/

.header{
    width: 100%;
    height: var(--header-height);
    background: var(--color-2);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;

    transition: height .3s ease-in-out;
}
    .header_left{
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 100%;
        padding: 25px 0 25px 25px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;

        transition: padding .3s ease-in-out;
    }
    .header_top{
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
        width: 100%;
        height: 80px;
        padding-right: 20px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
    }
    .header_bottom{
        display: flex;
        flex-direction: auto;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 50px;
        padding: 0 20px;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
    }

@media (min-width: 1281px) {

    body.home.top{

        & .header{
            height: var(--header-height-big);
        }
        & .header_left{
            padding: 70px 0 60px 60px;
        }

    }

}

@media (max-width: 1280px) {

    .header{
        display: flex;
        flex-direction: row;
        padding: 20px;
    }
    .header_left{
        padding: 0;
        position: static;
    }
    .header_top{
        gap: 10px;
        padding: 0;
        height: 100%;
        position: static;
    }
    .header_bottom{
        display: none;
    }

}

/*************************************************************************************************/

.subheader{
    margin-top: var(--header-height);
    padding-bottom: 60px;
    transition: margin-top .3s ease-in-out;
}

body.home .subheader{
    padding-bottom: 0;
}

@media (min-width: 1401px) {

    body.home.top{

        & .subheader{
            margin-top: var(--header-height-big);
        }

    }

}

@media (max-width: 1024px) {

    .subheader{
        padding-bottom: 0;
    }

}

/*************************************************************************************************/

.mobilenav{
    height: 100%;
    width: 100%;
    position: fixed;
    right: 0;
    bottom: 100%;
    z-index: 11;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}
    .mobilenav_overlay{
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }
    .mobilenav_panel{
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 360px;
        height: 100%;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
        background: var(--color-9);
        position: absolute;
        top: 0;
        right: -400px;
        z-index: 2;
        transition: right .3s ease-in-out;
    }
        .mobilenav_panel-header{
            flex-shrink: 0;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
            width: 100%;
            height: var(--header-height);
            padding: 0 30px;
            background: var(--color-2);
        }
            .mobilenav_close{
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 29px;
                color: var(--color-6);
                font-size: 24px;
                cursor: pointer;
            }
        .mobilenav_panel-body{
            flex-grow: 1;
            width: 100%;
            overflow: auto;
        }
            .mobilenav_panel-content{
                display: flex;
                flex-direction: column;
                gap: 30px;
                width: 100%;
                padding: 30px;
            }

body.menu-opened {

    & .mobilenav {
        bottom: 0;
        opacity: 1;
    }
    & .mobilenav_panel {
        right: 0;
    }

}

/*************************************************************************************************/

.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--global-spacing);
    width: 100%;
    padding: 60px var(--global-padding);
}
    .main > *{
        width: 100%;
        max-width: var(--content-width-normal);
    }
    .main > *.wide{
        max-width: var(--content-width-wide);
    }
    .main > *.full{
        width: calc(100% + 2 * var(--global-padding));
        max-width: none;

        &:first-child{
            margin-top: -60px;
        }
        &:last-child{
            margin-bottom: -60px;
        }
    }

body.home .main{
    gap: var(--global-spacing-big);
    padding: 100px var(--global-padding);

    & > *.full{

        &:first-child{
            margin-top: -100px;
        }
        &:last-child{
            margin-bottom: -100px;
        }
    }

}

/*************************************************************************************************/

.footer{
    display: flex;
    flex-direction: column;
    width: 100%;
}
    .footer_top{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 60px var(--global-padding);
        background: var(--color-8);
    }
        .footer_top-narrow{
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: center;
            flex-wrap: wrap;
            gap: 60px var(--global-padding);
            width: 100%;
        }
    .footer_bottom{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px var(--global-padding);
        background: var(--color-1);
    }

@media (max-width: 768px) {

    .footer_top{
        padding: 40px var(--global-padding);
    }
    .footer_top-narrow{
        gap: 40px var(--global-padding);
    }

}

/**** FIN STRUCTURE PRINCIPALE *******************************************************************/

/**** TAGS ***************************************************************************************/

.tags{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
}
    .tag{
        height: 30px;
        padding: 0 15px;
        border-radius: 15px;
        background: var(--color-4);
        color: var(--color-2);
        line-height: 30px;
        font-size: 14px;
        font-weight: 800;
        white-space: nowrap;

        transition: background .2s ease-in-out;

        &:hover{
            background: var(--color-4-darker);
        }
    }

/**** FIN TAGS ***********************************************************************************/

/**** FRONT END EDITING **************************************************************************/

.fee_triggers{
        display: none;
        flex-direction: row;
        align-items: center;
        gap: 5px;
        position: fixed;
        right: 5px;
        bottom: 0;
        z-index: 20;
}
    .fee_trigger{
        padding: 5px 10px;
        border-radius: 5px 5px 0 0;
        background: var(--color-5);
        color: var(--color-2);
        font-size: 14px;
        font-weight: bold;

        transition: all .2s ease-in-out;

        &:hover{
            background: var(--color-5-darker);
            padding-bottom: 8px;
        }
    }


/**** FIN FRON TEND EDITING **********************************************************************/

/**** RS FORM PRO (Responsive) *******************************************************************/

.rsform{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;

    & [id^=rsfp-thankyou-scroll]{
        margin-bottom: -30px;
    }
    & > p{ /* Message de remerciement */
        margin: 0;
    }
    & .formResponsive > .rsform-thankyou-button{
        align-self: flex-start;
    }
}

.rsform .formResponsive{

    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin: 0;

    /* Message d'erreur du formaulaire */
    & .formRed{
        padding: 10px 20px;
        margin: 0;
        border-radius: 20px;
        background: var(--color-5);
        color: #ffffff;
        font-weight: normal;
    }

    /* Système de colonnes / lignes (container > row > span) */
    & .formContainer{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
        & .formRow{
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-gap: 20px;
            width: 100%;

            &:after, &:before { display: none !important; }
        }
            & .formRow [class*=formSpan]{
                display: flex;
                flex-direction: column;
                gap: 10px;
                width: auto;
                margin-left: 0;

                &:is(.formSpan1)  {  width: auto; grid-column: span 1;  }
                &:is(.formSpan2)  {  width: auto; grid-column: span 2;  }
                &:is(.formSpan3)  {  width: auto; grid-column: span 3;  }
                &:is(.formSpan3)  {  width: auto; grid-column: span 3;  }
                &:is(.formSpan4)  {  width: auto; grid-column: span 4;  }
                &:is(.formSpan5)  {  width: auto; grid-column: span 5;  }
                &:is(.formSpan6)  {  width: auto; grid-column: span 6;  }
                &:is(.formSpan7)  {  width: auto; grid-column: span 7;  }
                &:is(.formSpan8)  {  width: auto; grid-column: span 8;  }
                &:is(.formSpan9)  {  width: auto; grid-column: span 9;  }
                &:is(.formSpan10) {  width: auto; grid-column: span 10; }
                &:is(.formSpan11) {  width: auto; grid-column: span 11; }
                &:is(.formSpan12) {  width: auto; grid-column: span 12; }
            }

    /* Système de champs */
    & .rsform-block{
        display: flex;
        flex-direction: column;
        gap: 5px;

        &:after, &:before { display: none !important; }
    }
        & .formControlLabel{
            color: var(--color-1);
            line-height: 20px;
            font-size: 14px;
            font-weight: bold;

            & .formRequired{
                color: var(--color-5);
                font-weight: normal;
            }
        }
        & .formControls{
        }
            & .formBody{
                display: flex;
                flex-direction: row;
                align-items: center;
                flex-wrap: wrap;
                width: 100%;
                position: relative;
            }
                & .formValidation{
                    width: 100%;

                    & .formError{
                        height: auto;
                        padding: 0;
                        margin: 5px 0 0 0;
                        color: var(--color-5);
                        font-size: 12px;
                    }
                }
                & .formDescription{
                    width: 100%;
                    margin: 5px 0 0 0 !important;
                    color: var(--color-6);
                    font-size: 12px;

                    &:empty{ display: none; }
                }
    & .formContainer.formHorizontal{
        & .rsform-block{
            flex-direction: row;
            gap: 20px;
            margin-bottom: 0;
        }
            & .formControlLabel{
                flex-shrink: 0;
                width: 300px;
                margin: 10px 0;
                padding: 0;
                text-align: right;
            }
            & .formControls{
                flex-grow: 1;
                margin-left: 0;
            }
    }

    /* Texte libre */
    & .rsform-type-freetext{
        display: block;
        line-height: 1.8;
        margin: 20px 0 !important;

        & p:first-child{
            margin-top: 0;
        }
        & p:last-child{
            margin-bottom: 0;
        }
    }

    /* Champs */
    & input[type=email],
    & input[type=number],
    & input[type=password],
    & input[type=tel],
    & input[type=text],
    & input[type=url],
    & textarea,
    & select{
        display: inline-block;
        box-sizing: border-box;
        width: 100%;
        height: 40px;
        padding: 0 15px;
        margin-bottom: 0;
        font-size: 16px;
        line-height: normal;
        border: 1px solid var(--color-7);
        border-radius: 10px;
        background: var(--color-2);
        color: var(--color-1);
        font-family: inherit;
        box-shadow: none;

        &:focus {
            border: 1px solid var(--color-6);
            outline: 0;
            box-shadow: none;
        }
        &.rsform-error,
        &.rsform-error:focus {
            color: var(--color-1);
            border: 1px solid var(--color-5);
            box-shadow: none;
        }
    }
    & textarea{
        resize: vertical;
        height: 140px;
        padding: 8px 15px;
        line-height: 24px;
    }
    & .formBody > label{
        width: 100%;
        margin: 10px 0 0 0;
        line-height: 20px;

        & input[type=checkbox],
        & input[type=radio]{
            margin-right: 7px;

            &:focus {
                border: 1px solid var(--color-6);
                outline: 0;
                box-shadow: none;
            }
            &.rsform-error,
            &.rsform-error:focus {
                color: var(--color-1);
                border: 1px solid var(--color-5);
                box-shadow: none;
            }
        }
    }
    & .rsform-upload-box{
        width: auto;
        height: auto;

        &::-webkit-file-upload-button {
            height: 40px;
            padding: 10px 16px;
            border: none;
            border-radius: 20px;
            background: var(--color-6);
            color: var(--color-2);
            font-family: inherit;
            font-size: 14px;
            cursor: pointer;
        }
        &:focus {
            outline: 0;
            box-shadow: none;
        }
        &.rsform-error,
        &.rsform-error:focus {
            color: var(--color-1);
            box-shadow: none;
        }
    }
    & .iti{
        & .iti__selected-country{
            border-radius: 10px 0 0 10px;
            background: var(--color-9);
        }
        & .iti__selected-country-primary:hover{
            border-radius: 10px 0 0 10px;
            background: var(--color-9);
        }
        & .iti__search-input{
            border: 0;
            border-bottom: 1px solid var(--color-8);
            border-radius: 0;

            &:focus {
                border: 0;
                border-bottom: 1px solid var(--color-8);
            }
        }
    }
    & .rsform-select-box-small{
        width: 110px;
        margin: 0 10px;

        &:first-child{
            margin-left: 0;
        }
    }
    & .rsform-calendar-box{
        & + .rsform-calendar-button{
            position: absolute;
            height: 38px;
            border: 0;
            border-radius: 0 11px 11px 0;
            background: var(--color-8);
            color: var(--color-1);
            top: 1px;
            right: 1px;
        }
    }
    & .yui-calcontainer{
        margin-top: 10px;
        z-index: 5 !important;
    }
    & .xdsoft_datetimepicker{
        z-index: 5 !important;
    }
    & .rsform-submit-button{
        height: 40px;
        padding: 0 20px;
        border: 0;
        border-radius: 20px;
        background: var(--color-4);
        color: var(--color-2);
        text-shadow: none;
        font-family: inherit;
        font-size: 18px;
        font-weight: bold;

        transition: background .2s ease-in-out;

        &:hover{
            background: var(--color-4-darker);
            color: var(--color-2);
            text-shadow: none;
            transition: background .2s ease-in-out;
        }
    }

}

@media (max-width: 768px) {

    .rsform .formResponsive{
        & .formRow [class*=formSpan]{
            &:is(.formSpan1)  {  grid-column: span 12;  }
            &:is(.formSpan2)  {  grid-column: span 12;  }
            &:is(.formSpan3)  {  grid-column: span 12;  }
            &:is(.formSpan3)  {  grid-column: span 12;  }
            &:is(.formSpan4)  {  grid-column: span 12;  }
            &:is(.formSpan5)  {  grid-column: span 12;  }
            &:is(.formSpan6)  {  grid-column: span 12;  }
            &:is(.formSpan7)  {  grid-column: span 12;  }
            &:is(.formSpan8)  {  grid-column: span 12;  }
            &:is(.formSpan9)  {  grid-column: span 12;  }
            &:is(.formSpan10) {  grid-column: span 12; }
            &:is(.formSpan11) {  grid-column: span 12; }
            &:is(.formSpan12) {  grid-column: span 12; }
        }
    }

}

/**** FIN RS FORM PRO (Responsive) ***************************************************************/

.main .cktype:not([data-type="faq"]) .ui-accordion .ui-accordion-header{
    border-radius: 10px;
    margin-top: 5px;
    padding: 10px;

    &.ui-state-active{
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    &:first-child{
        margin-top: 0;
    }
}
.main .cktype:not([data-type="faq"]) .ui-accordion .ui-accordion-icons{
    padding-left: 30px;
}
.main .cktype:not([data-type="faq"]) .ui-accordion .ui-accordion-content{
    border-radius: 0 0 10px 10px;
    padding: 20px 30px 30px 30px;
}

[data-type="text"] + [data-type="accordion"]{
    margin-top: 10px;
}

.imageck img{
    display: block !important;
}
