
:root {

    /* Couleurs */
    --color-white: #fff;
    --color-black: #000;
    --color-grey: #C0C0C0;
    --color-primary: #FFB232;
    --color-secondary: #6c757d;


}


.otgs-development-site-front-end {
    display: none!important;
}
/******************/
/** Styles Reset **/
/******************/

* {
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
     height:auto;
     width:auto;
}
ul, ol {
    list-style: none;
    padding-left: 0;
}

button {
    background: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.btn {
    display: inline-block;

    text-decoration: none;
    padding: 14px 20px;
    font-weight: 550;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    transition: ease-in-out .15s;
}
.btn span {
    z-index: 100;
}
.btn::before {
    content:'';
    position: absolute;
    top:0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-grey);
    transition: ease-in-out .15s;
}
.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn--secondary {
    background: var(--color-white);
    color: var(--color-primary);
}
.btn:hover {
    color:var(--color-white);
}
.btn:hover::before {
    width: 100%;
}
@media all and (max-width: 1024px) {
    .btn {
        font-size:16px;
    }
}
@media all and (max-width: 768px) {
    .btn {
        font-size:14px;
    }
}
@media all and (max-width: 600px) {
    .btn {
        width: 100%;
    }
}

main  ul {
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

main ul li {
    width: 100%;
    padding-left: 30px;
}

main  ul li::before {
    content: '';
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;
    background: url('/wp-content/uploads/list-puce.png') no-repeat center center;
    background-size: contain;
    display: block;

}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
}

@media all and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
}

@media all and (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

html, body {
    font-family: "Special Gothic", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

strong {
    font-weight: 550;
    letter-spacing: .5px;
}


.h1-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* -------------------- Default section -------------------- */

.section {
}

.section .container {
}

.section .section__header {
    margin: 0 0 30px 0;
}

.section .section__title {
    font-size: 33px;
    font-weight: 600;
    text-transform: uppercase;
}

.section .section__subtitle {
    color: var(--color-primary);
    font-size: 22px;
    font-weight: 550;
    letter-spacing: .5px;
    margin: 30px 0 0 0;
}

.section .section__text {
    font-size: 18px;
    line-height: 1.6;
}

.section .section__text a {
    color: var(--color-black);
    text-decoration: none;
}

.section .section__text a:hover {
    text-decoration: underline;
}

.section .section__content {
}

.section .section__footer {
    margin: 27px 0 0 0;
}

.section .section__image {
    max-width: 100%;
}

.section .section__image img {
    max-width: 100%;
}

@media all and (max-width: 1024px) {

    .section .section__title {
        font-size: 28px;
    }
    .section .section__subtitle {
        font-size: 20px;
    }
    .section .section__text {
        font-size: 16px;
    }

    .section .section__text p br {
        display: none;
    }
    ul li br{
        display: none;
    }
}
@media all and (max-width: 768px) {
    .section .section__title {
        font-size: 24px;
    }
    .section .section__subtitle {
        font-size: 18px;
    }
}



.page-header {
    position: relative;
    overflow: hidden;
}

.page-header__marquee {
    width: 100%;
    overflow: hidden;
}

.page-header__track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.page-header__item {
    max-width: 20vw;
    max-height: 380px;
    box-sizing: border-box;
}

.page-header__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* Décoration */
.page-header__motif {
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Animation */
@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Sécurité responsive */
@media (max-width: 1024px) {
    .page-header__item {
    max-width: 30vw;
    }
}

@media (max-width: 640px) {
    .page-header__item {
    max-width: 40vw;
    }
}











.navigation {
}

.navigation .navigation__motif {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 10%;
    max-height: 100%;
}

.navigation .row {
    width: 100%;
}

.navigation .row.row--top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}

.navigation .row--top .block {
    width: 240px;
}
.navigation .row--top .block.block--responsive {
    display: none;
}
.navigation .row--top .block--logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}
.navigation .row--top .block--logo img {
    max-width: 100%;
    width:auto;
}
.navigation .row--top .block--languages {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navigation .row--top .block--languages .btn-language {

}

.navigation .row--top .block--languages .btn-language svg {
    width: 28px;
}

.navigation .row--top .block:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.navigation .row--top .block-aside li::before {
    display: none;
}

.navigation .row--top .block-aside .btn {
    padding: 9px 30px;
}

.navigation .row--top .social-networks {

}

.navigation .row--top .social-networks .social {
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    transition:  ease-in-out .15s;
}

.navigation .row--top .social-networks .social svg {
}

.navigation .row--top .social-networks .social svg * {
    fill: var(--color-primary);
    transition:  ease-in-out .15s;
}

.navigation .row--top .social-networks .social:hover {
    border-color:var(--color-black);
}
.navigation .row--top .social-networks .social:hover svg *{
    fill:var(--color-black);
}
.navigation .row--top .social-networks .social--linkedin svg {
    width: 18px;
}

.navigation .row--bottom {
    padding: 0 0 32px 0;
}

.navigation .row--bottom ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
}

.navigation .row.row--bottom ul li {
    padding: 0;
    width: auto;

    display: flex;
    justify-content: center;
    flex-direction: column;
}

.navigation .row.row--bottom ul li::before {
    display: none;
}

.navigation .row.row--bottom ul li span {
    content: '';
    width: 100%;
    height: 17px;
    position: absolute;
    top: 100%;
    left: 0;
    background: url('/wp-content/uploads/navigation-puce.png') no-repeat center center;
    background-size: contain;
    display: block;
    opacity: 0;
}

.navigation .row.row--bottom ul li.active {
    font-weight: 550;
}

.navigation .row.row--bottom ul li.active span {
    opacity: 1;
}

.navigation .row.row--bottom ul li:hover span {
    opacity: 1;
}

.navigation .row.row--bottom ul li a {
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--color-black);
    padding: 6px 0;
}

@media all and (max-width: 1024px){
    .page {
        margin-top:94px;
    }
    .navigation {
        position: fixed;
        top:0;
        left:0;
        width: 100%;
        z-index: 9000;
        background: var(--color-white);
        transition: ease-in-out .25s;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    .navigation.is-hidden {
        transform: translateY(-100%);
    }
    .navigation .row.row--top {
        padding: 10px 0;
    }
    .navigation .row--top .block:first-child {
        width: 100px;
    }
    .navigation .row--top .block:nth-child(2) {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navigation .row--top .block:nth-child(2) img{
        max-height: 70px;
    }
    .navigation .row--top .block.block--responsive {
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .navigation .btn--menu {
        width: 40px;
        height: 40px;
        background: 0 0;
        padding: 0;
        cursor: pointer;
        border: none;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        flex-direction: row;
    }
    .navigation .btn--menu .bar{
        width: 100%;
        height: 3px;
        position: absolute;
        top: 0;
        left: 0;
        background: var(--color-black);
        border-radius: 3px;
        transition: linear .15s;
    }
    .navigation .btn--menu .bar:nth-child(2) {
        top: 9px;
    }
    .navigation .btn--menu .bar:nth-child(3) {
        top: 18px;
    }
    .navigation .btn--menu .btn__title {
        font-size: 10px;
        text-transform: uppercase;
        width: 100%;
        text-align: center;
        line-height: 1.5;
        font-weight: 400;
        color: var(--color-black);
        display: block;
    }
    .navigation .row--top .block:last-child {
        display: none;
    }
    .navigation .row.row--bottom {
        display: none;
    }
}

@media all and (max-width: 768px){
    .navigation .row--top .block:first-child {
        width: 60px;
    }
    .navigation .row--top .block--logo{
        width: 180px;
    }
    .navigation .row--top .block.block--responsive{
        width: 60px;
    }
}
@media all and (max-width: 500px){
    .navigation .row--top .block:nth-child(2){
        width: 100px;
    }
}
/* -------------------- Modal Navigation -------------------- */


.modal--menu {
    position: fixed;
    inset: 0;
    display: grid;
    grid-template-rows: 90px 1fr;
    background: var(--color-white);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-10px);
}

.modal--menu.is-open {
    z-index: 9999;
    opacity: 1;
    pointer-events: initial;
    visibility: visible;
    transform: translateY(0);
}

/* Supprime les animations pour les utilisateurs qui préfèrent une expérience sans mouvements */
@media (prefers-reduced-motion: reduce) {
    .modal--menu,
    .modal--menu.is-open {
        transition: none;
        transform: none;
    }
}

/* Modal Header */

.modal--menu .modal__header {
    width: 100%;
    height: 90px;

}
.modal--menu .modal__header .modal__logo {
    display: block;
}

.modal--menu .modal__header .modal__logo img {
}
.modal--menu .modal__header .row--top .block--responsive{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.modal--menu .modal__header .btn--close {
    width: 40px;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: row;
    background: none;
    padding: 0;
    cursor: pointer;
    border: none;
}

.modal--menu .modal__header .btn--close .bar {
    width: 100%;
    height: 3px;
    background: var(--color-black);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    transition: linear .15s;
}

.modal--menu .modal__header .btn--close .bar:nth-child(1) {
    transform: translate(0%, 12px) rotate(45deg);
}

.modal--menu .modal__header .btn--close .bar:nth-child(2) {
    transform: translate(0%, 12px) rotate(-45deg);
}

.modal--menu .modal__header .btn--close .btn__title {
    width: 100%;
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
    color: var(--color-black);
}

.modal--menu .modal__header .btn--close:hover .bar {
    background: var(--color-primary);
}

/* Content of the modal */

.modal--menu .modal__content {
    width: 100%;
    padding: calc(90px + 50px) 0 50px 0;
    overflow-y: auto;
    height: 100vh;
}

.modal--menu .modal__content .modal__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px 0;
    flex-shrink: 0;
}

.modal--menu .modal__content .modal__list li {
    width: 100%;
    text-align: center;
    padding-left:0;
}
.modal--menu .modal__content .modal__list li::before {
    display: none;
}
.modal--menu .modal__content .modal__list li a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.75;
    text-transform: uppercase;
    transition: ease-in-out .15s;
}
.modal--menu .modal__content .modal__list li .btn:hover {
    color:var(--color-white);
}
.modal--menu .modal__content .modal__list li .btn {
    min-width: 250px;
    margin: 8px auto;
}


@media all and (max-width: 600px){
    .modal--menu .modal__content .modal__list li .btn {
        width: calc(100% - 32px);
    }
}







.page-footer {
    margin: 50px 0 0 0;
    padding: 76px 0;
    background: #F7F7F7;
}

.page-footer .page-footer__motif {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 10%;
    max-height: 100%;
}

.page-footer .container {
    display: flex;
    justify-content: space-between;
}

.page-footer .page-footer__column:nth-child(1) {
    width: 22%;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.page-footer .page-footer__column:nth-child(2) {
    width: 22%;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    border-right: 2px solid var(--color-primary);
}

.page-footer .page-footer__column:nth-child(3) {
    width: 56%;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 70px;
}

.page-footer .page-footer__logo {
    width: calc(100% - 40px);
}

.page-footer .page-footer__logo img {
    max-width: 100%;
}

.page-footer .page-footer__text {
}

.page-footer .page-footer__text p {
    font-size: 14Px;
    line-height: 1.6;
}

.page-footer .page-footer__text p:not(:first-child) {
    margin-top: 8px;
}

.page-footer .page-footer__text a {
    color: var(--color-black);
    text-decoration: none;
}

.page-footer .page-footer__text a:hover {
    text-decoration: underline;
}

.page-footer .page-footer__list {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 28px 0;
    padding: 0;
    margin: 0;
}

.page-footer .page-footer__list li {
    width: calc(100% / 3);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:16px;
    padding-left: 0;
}

.page-footer .page-footer__list li::before {
    display: none;
}

.page-footer .page-footer__list li a {
    color: var(--color-black);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
}

.page-footer .page-footer__list li a:hover {
    text-decoration: underline;
}

.page-footer .social-networks {

}

.page-footer .social-networks .social {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    transition:  ease-in-out .15s;
}

.page-footer .social-networks .social svg {
}

.page-footer .social-networks .social svg * {
    fill: var(--color-primary);
    transition:  ease-in-out .15s;
}

.page-footer .social-networks .social:hover {
    border-color:var(--color-black);
}
.page-footer .social-networks .social:hover svg *{
    fill:var(--color-black);
}
.page-footer .social-networks .social--linkedin svg {
    width: 14px;
}



@media all and (max-width: 1024px) {
    .page-footer .container {
        flex-wrap: wrap;
    }

    .page-footer .page-footer__column:nth-child(1) {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 0 32px 0;
    }
    .page-footer .page-footer__column:nth-child(1) a {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .page-footer .page-footer__logo {
        max-height: 110px;
        width: auto;
    }
    .page-footer .page-footer__column:nth-child(2) {
        width: 100%;
        border-right: none;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 0 50px 0;
    }
    .page-footer .page-footer__list li{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .page-footer .page-footer__list li a{
        text-align: center;
    }

    .page-footer .page-footer__column:nth-child(3) {
        width: 100%;
        padding-left:0;
    }
}

@media all and (max-width: 768px) {
    .page-footer .page-footer__list li {
        width: 50%;
    }

    .page-footer .page-footer__list li:nth-child(1){ order:1;}
    .page-footer .page-footer__list li:nth-child(2){ order:2;}
    .page-footer .page-footer__list li:nth-child(3){ order:8;}
    .page-footer .page-footer__list li:nth-child(4){ order:3;}
    .page-footer .page-footer__list li:nth-child(5){ order:4;}
    .page-footer .page-footer__list li:nth-child(6){ order:7;}
    .page-footer .page-footer__list li:nth-child(7){ order:6;}
    .page-footer .page-footer__list li:nth-child(8){ order:5;}
}

@media all and (max-width: 500px) {
    .page-footer .page-footer__list li {
        width: 100%;
    }

    .page-footer .page-footer__list li:nth-child(1){ order:1;}
    .page-footer .page-footer__list li:nth-child(2){ order:4;}
    .page-footer .page-footer__list li:nth-child(3){ order:7;}
    .page-footer .page-footer__list li:nth-child(4){ order:2;}
    .page-footer .page-footer__list li:nth-child(5){ order:5;}
    .page-footer .page-footer__list li:nth-child(6){ order:8;}
    .page-footer .page-footer__list li:nth-child(7){ order:3;}
    .page-footer .page-footer__list li:nth-child(8){ order:6;}
}



/* -------------------- Breadcrumb -------------------- */

.breadcrumb {
    margin: 32px 0 64px 0;
}

.breadcrumb .container {
}

.breadcrumb .breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 3px;
}

.breadcrumb .breadcrumb__list__item {
    display: inline-flex;
    align-items: center;
    font-size: clamp(10px, 2vw, 12px);
}

.breadcrumb .breadcrumb__list__item:not(:last-child)::after {
    content: '/';
    margin: 0 0 0 3px;
    font-size: clamp(10px, 2vw, 12px);
}

.breadcrumb .breadcrumb__list__link {
    color: var(--color-black);
    text-decoration: none;
    transition: color .15s linear, text-decoration-color .15s linear;
}

.breadcrumb .breadcrumb__list__link:hover,
.breadcrumb .breadcrumb__list__link:focus-visible {
    text-decoration: underline;
    color: var(--color-primary);
}

.breadcrumb .breadcrumb__list__item [aria-current="page"],
.breadcrumb .breadcrumb__list__item[aria-current="page"] span {
}

@media all and (max-width: 1024px){
    .breadcrumb {
       padding-top:32px;
    }

}
.section--error {
    margin-top:110px;
    margin-bottom:200px;
}
.section--error .section__title{
    width: 100%;
    text-align: center;
}
.section--error .section__text {
    width: 100%;
    text-align: center;
}
.section--error .section__footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

