/*=================================
===============GLOBAL==============
=================================*/
:root {
    --black: #000000;
    --white: #FFFFFF;
    --orange:#FFD100;
}
body::selection {
    background: var(--orange);
    color: var(--black);
}
#top .inside, .header .inside, #footer .inside, #bottom .inside, body.sidebar #container, .mod_article:not(.fullwidth) > .container, .fullwidth.boxed-content .contentwrap, .smallwidth .contentwrap, .boxed-content .contentwrap, .autogrid_wrapper.article, .ce_text_image_bar .inside, .ce_headerimage .ce_headerimage_inside, .ce_video_background .ce_video_background_inside, #offcanvas-top .offcanvas-top-inside, .ce_calltoaction .ce_calltoaction_inside, .mod_breadcrumb .mod_breadcrumb_inside, .mod_pageimage .container, .ce_easy_slider .swiper-inside .swiper-inside-wrap {
    max-width: 1860px;
    margin-left: auto;
    margin-right: auto;
}
#wrapper {
    position: relative;
    z-index: 1;
}
body {
    color: var(--black);
    font-family: "Aspekta", sans-serif;
    line-height: normal;
    font-weight: normal;
    font-size: 16px;
    background: var(--white);
}
.body {
    overflow: hidden;
    background: var(--white);
}
body.mmenu_open {
    overflow: hidden;
}
body.maintenance .mod_article {
    height: 100vh;
    background: #d7e6fb;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.maintenance .content-image {
    border-radius: 0;
    box-shadow: none;
    margin: auto;
    display: block;
}
.mod_article.fullwidth-boxed-small:not(.fullwidth) > .container {
    max-width: 1800px;
    padding-left: 80px;
    padding-right: 80px;
}
.content-image,
.content-player {
    display: flex;
    width: fit-content;
}
.content-image.align-right {
    margin-left: auto;
}
.content-image.align-left {
    margin-right: auto;
}
.content-image.align-center {
    margin-left: auto;
    margin-right: auto;
}
.content-image figure,
.content-image picture {
    display: flex;
    width: 100%;
    height: 100%;
}
.content-image img,
.content-player video {
    object-fit: cover;
    width: 100%;
}
.group-hyperlink {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 5px;
}
.content-hyperlink {
    display: flex;
    width: fit-content;
}
.content-hyperlink.align-right {
    margin-left: auto;
}
.content-hyperlink.align-left {
    margin-right: auto;
}
.content-hyperlink.align-center {
    margin-left: auto;
    margin-right: auto;
}
.content-text p,
.content-text ul li {
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
    line-height: normal;
}
.content-text p a,
.content-text ul li a {
    color: var(--black);
    text-decoration: 1px underline var(--black);
}
.content-text.txt-color-white p,
.content-text.txt-color-white ul li,
.content-text.txt-color-white p a,
.content-text.txt-color-white ul li a {
    color: var(--white);
}
.content-text ul {
    padding-left: 18px;
    margin-bottom: 15px;
}
.content-text ul li {
    list-style: disc;
}
.content-text.width-l {
    max-width: 1250px;
}
.content-text.width-m {
    max-width: 750px;
}
.content-text.width-s {
    max-width: 450px;
}
.headline span.linebreak::before {
    content: "";
    display: block;
}
.column.h-center {
    align-self: center;
}
.ce_rsce_marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    justify-content: initial;
    gap: 20px;
}
.ce_rsce_marquee .container {
    width: auto;
    min-width: 100%;
    flex: none;
    display: flex;
    justify-content: space-around;
    animation: marquee 30s linear infinite;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
}
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(calc(-100% - 1rem));
    }
}
/*=================================
===============HEADER==============
=================================*/
.header {
    position: absolute;
    background: transparent;
    height: auto;
    line-height: initial;
    top: 20px;
}
.header .inside {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    height: auto;
}
.header .logos {
    grid-area: logo;
    display: flex;
    justify-content: flex-start;
    width: 280px;
    height: auto;
}
.header .logos a {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}
.header .logos a svg {
    width: 100%;
    height: auto;
}
.header .mainmenu {
    height: auto;
    float: none;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 80px;
    padding: 5px 4px 5px 24px;
    background: var(--white);
    border-radius: 4px;
}
.header .mainmenu > .headline {
    font-family: "Roboto Mono", sans-serif;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.40);
    font-weight: 700;
    line-height: normal;
}
.header .mainmenu ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header .mainmenu ul.menu {
    gap: 32px;
}
.header .mainmenu ul li {
    margin-left: 0;
    margin-right: 0;
}
.header .mainmenu ul li a {
    font-family: "Roboto Mono", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--black);
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: -0.28px;
    margin: 0;
    padding: 0;
}
.header .mainmenu ul.menu > li:last-child a {
    background: var(--black);
    color: var(--white);
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 4px;
}
.header .mainmenu ul:after {
    display: none!important;
}
.header .mainmenu .hide-menu-desktop {
    display: none;
}
.header .mainmenu ul li ul {
    display: none;
}
/*=================================
===============FOOTER==============
=================================*/
#footer > .inside {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
.copyright {
    text-align: right;
}
.copyright,
.copyright span,
.copyright a {
    color: var(--black);
}
/*=================================
==============SECTION==============
=================================*/
.section-slider .content-player {
    position: relative;
    height: 955px;
    width: 100%;
}
.section-slider .content-player::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%); */
    background: linear-gradient(180deg, rgba(55, 58, 54, 0.00) 0%, #373A36 100%);
    pointer-events: none;
}
/*=================================
=============BREADCRUMB============
=================================*/
.mod_breadcrumb {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 1;
    background: #3a85f20d;
}
.mod_breadcrumb .mod_breadcrumb_inside {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1750px;
}
.mod_breadcrumb .pagetitle {
    display: none;
}
.mod_breadcrumb ul {
    display: flex;
    align-items: center;
}
.mod_breadcrumb ul li, .mod_breadcrumb ul li a, .mod_breadcrumb ul li span {
    color: #000000;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 3.125rem;
}
.mod_breadcrumb ul li:not(:first-child):before {
    content: "/";
    margin-right: 5px;
    margin-left: 5px;
}
/*=================================
=================FAQ===============
=================================*/
.ce_rsce_faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ce_rsce_faq .faq-content .answer {
    max-height: 0px;
    overflow: hidden;
    transition: 0.25s;
}
.ce_rsce_faq .faq-content.active .answer {
    max-height: 850px;
    padding-top: 20px;
}
/*=================================
=============FORMULAIRE============
=================================*/
.ce_form input:-webkit-autofill,
.ce_form textarea:-webkit-autofill,
.ce_form select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
  box-shadow: 0 0 0 1000px white inset;
  -webkit-text-fill-color: #000;
}
.form-contact .formbody {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.ce_form .widget {
    width: 100%;
}
.ce_form .widget.col-6 {
    width: calc(50% - 16px / 2);
}
.ce_form .widget.col-3 {
    width: calc(25% - 16px / 2);
}
.ce_form .widget.col-4 {
    width: calc(33.33% - 16px / 2);
}
.ce_form .widget.col-8 {
    width: calc(66.66% - 16px / 2);
}
.ce_form .widget.col-9 {
    width: calc(75% - 16px / 2);
}
.ce_form .widget-checkbox fieldset {
    border: none;
    padding: 0;
    margin: 0;
}
.ce_form .widget-checkbox fieldset > span {
    display: flex;
    align-items: center;
    gap: .4rem;
}
.ce_form .widget-checkbox label {
    cursor: pointer;
    flex: 1;
}
.ce_form .widget-checkbox input {
    margin-right: 0;
}
input[type="checkbox"] {
    appearance: none;
    width: 16px !important;
    height: 16px !important;
    border: 1px solid #dddddd !important;
    border-radius: 4px;
    padding: 0;
}
input[type="checkbox"]:checked {
    background: var(--black);
    border: 1px solid var(--black) !important;
}
.ce_form .widget-altcha .altcha {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ce_form .widget-altcha .altcha label {
    margin-bottom: 0;
    font-size: 0.75rem;
    color: var(--black);
}
.ce_form .widget-altcha .altcha-footer div {
    font-size: 0.60rem;
    color: var(--black) !important;
}
.ce_form .widget-altcha .altcha > div {
    padding: 0;
}
.ce_form .widget-altcha .altcha-checkbox,
.ce_form .widget-altcha .altcha-checkbox input,
.ce_form .widget-altcha .altcha-checkbox svg {
    height: 16px;
    width: 16px;
}
.ce_form .column:has(> .widget-altcha) > div:first-child {
    margin-bottom: 0;
}

/*=================================
============RESPONSIVE=============
=================================*/
@media only screen and (max-width: 1440px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 768px) {
    .mod_breadcrumb .mod_breadcrumb_inside {
        padding-left: 20px;
        padding-right: 20px;
    }
    .ce_form .widget.col-3,
    .ce_form .widget.col-4,
    .ce_form .widget.col-6,
    .ce_form .widget.col-8,
    .ce_form .widget.col-9 {
        width: 100%;
    }
}
@media only screen and (max-width: 565px) {
}

/*=================================
==============PRINT================
=================================*/
@media print {
    @page {
        size: A4 portrait;
        margin: 2cm 1.5cm;
    }
    #fix-wrapper,
    #slider,
    footer,
    #mmenu,
    .mmenu_overlay,
    #tarteaucitronRoot,
    #bottom,
    #stickyheader,
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
    video,
    object,
    iframe {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    .print {
        display: revert;
    }
    .no-print {
        display: none;
    }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none;
    scroll-behavior: auto;
  }
}