@charset "UTF-8";
/*///////////////////////////////////////*/
/* ///// STYLE GLOBAL ///////////////// */
/*/////////////////////////////////////*/
@font-face {
    font-family: "Bree";
    src: url("fonts/bree-bold-opentype-webfont.woff2") format("woff2"), url("fonts/bree-bold-opentype-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "breeregular";
    src: url("fonts/bree-regular-opentype-webfont.woff2") format("woff2"), url("fonts/bree-regular-opentype-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
/*
font-family: 'Bree';
font-family: 'breeregular';
font-family: "Barlow", sans-serif;
*/
html {
    box-sizing: border-box;
}
html * {
    box-sizing: border-box;
}

body {
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    color: #231F20;
}

body p {
    color: var(--Gris, #231F20);
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

body strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

main {
    clear: both;
}

.container-large {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 0 auto;
}

.container-medium {
    width: calc(100% - 60px);
    max-width: 1320px;
    margin: 0 auto;
}

.container-small {
    width: calc(100% - 60px);
    max-width: 1200px;
    margin: 0 auto;
}

.flex-center {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flex-end {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.dynamic-padding-left,
.dynamic-padding-right {
    opacity: 0;
    transition: 200ms ease-in-out;
}

.default-btn,
.form-submit {
    padding: 10px 15px;
    border: none;
    text-decoration: none;
    border-radius: 6px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 200ms ease-in-out;
    text-align: center;
    font-family: "breeregular";
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    min-width: max-content;
}

.default-btn.orange,
.form-submit {
    color: #fff;
    background: var(--Orange, #F68B33);
}

.default-btn.orange:hover,
.form-submit:hover {
    background: #FD8357;
}

/*///////////////////////////////////////*/
/* ///// HEADER /////////////////////// */
/*/////////////////////////////////////*/
header {
    position: relative;
    background: #FEEBA9;
    z-index: 100;
}

header.sticky-desktop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100px);
}

header.sticky-desktop.open {
    transition: all 400ms ease-in-out;
    transform: translateY(0);
}

.page-node-type-contenu header:not(.sticky-desktop),
.page-node-type-service header:not(.sticky-desktop) {
    background: #FDD857;
}

header .region-header {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 40px;
}

/*Logo*/
#block-cna2c-vitrine-theme-logoheader {
    width: 100%;
    max-width: 220px;
}

#block-cna2c-vitrine-theme-logoheader a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

#block-cna2c-vitrine-theme-logoheader a .animation {
    position: relative;
    width: 100%;
    max-width: 73px;
    height: 71px;
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes inverseRotating {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
@keyframes inverseRotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

#block-cna2c-vitrine-theme-logoheader a .animation .rond {
    position: absolute;
    top: 0;
    left: 0;
}

#block-cna2c-vitrine-theme-logoheader a:hover .rond1,
#block-cna2c-vitrine-theme-logoheader a:hover .rond3 {
    -webkit-animation: rotating 3s ease-in-out infinite;
    -moz-animation: rotating 3s ease-in-out infinite;
    -ms-animation: rotating 3s ease-in-out infinite;
    -o-animation: rotating 3s ease-in-out infinite;
    animation: rotating 3s ease-in-out infinite;
}

#block-cna2c-vitrine-theme-logoheader a:hover .rond2,
#block-cna2c-vitrine-theme-logoheader a:hover .rond4 {
    -webkit-animation: inverseRotating 3s ease-in-out infinite;
    -moz-animation: inverseRotating 3s ease-in-out infinite;
    -ms-animation: inverseRotating 3s ease-in-out infinite;
    -o-animation: inverseRotating 3s ease-in-out infinite;
    animation: inverseRotating 3s ease-in-out infinite;
}

#block-cna2c-vitrine-theme-logoheader a .text {
    width: 100%;
    max-width: 139px;
}

/*Navigation principale*/
header .block-superfish {
    width: 100%;
    max-width: 1414px;
}

#superfish-main {
    position: relative;
    display: flex;
    gap: 10px;
    padding-right: 20px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#superfish-main > li {
    position: static;
    display: inline-block;
    float: none;
}

#superfish-main > li > a {
    color: var(--Dark, #231F20);
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    padding: 0 15px;
    font-family: "breeregular", sans-serif;
}

#superfish-main > li.menuparent > a {
    padding: 0 37px 0 15px;
}

#superfish-main > li > a.extranet {
    position: relative;
    padding: 0 37px 0 15px;
}

#superfish-main > li > a.extranet:after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: url("../images/svg/newtab.svg") no-repeat center/contain;
}

#superfish-main .sf-sub-indicator:after {
    display: none;
}

#superfish-main .sf-sub-indicator {
    opacity: 1;
    width: 14px;
    height: 10px;
    background: url("../images/svg/arrow-submenu.svg") no-repeat center/contain;
}

#superfish-main > li > ul {
    display: flex;
    padding: 40px;
    gap: 20px 12px;
    flex-wrap: wrap;
    right: 0;
    left: 0;
    width: 100% !important;
    border-top: 2px solid var(--Orange, #F68B33);
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
}

#superfish-main > li > ul > li {
    width: calc(33.333333% - 8px);
}

#superfish-main > li > ul > li a {
    margin: 0;
    padding: 0;
    display: flex;
    border-radius: 15px;
    background: #FFF;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
#superfish-main > li > ul > li a .image {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 150px;
}
#superfish-main > li > ul > li a .image img {
    width: 100%;
    transition: all 200ms ease-in-out;
}
#superfish-main > li > ul > li a .titre {
    width: 100%;
    color: var(--Red, #F05430);
    font-family: Bree;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 25px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
#superfish-main > li > ul > li a:hover {
    background: #FFDA9E;
}
#superfish-main > li > ul > li a:hover .image img {
    transform: scale(1.1);
}

/*///////////////////////////////////////*/
/* ///// TITRE DE PAGE //////////////// */
/*/////////////////////////////////////*/
.region-page-title {
    min-height: 200px;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    background: linear-gradient(180deg, #FDD857 0%, #F8AE0D 100%);
}

.block-page-title-block {
    width: calc(100% - 60px);
    max-width: 1320px;
    margin: 0 auto;
}

.page-node-type-service .block-page-title-block {
    padding-right: 665px;
}

.block-page-title-block h1 {
    color: var(--White, #FFF);
    font-family: Bree;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/*///////////////////////////////////////*/
/* ///// BREADCRUMBS ////////////////// */
/*/////////////////////////////////////*/
.block-system-breadcrumb-block {
    width: calc(100% - 60px);
    max-width: 1320px;
    margin: 0 auto;
}

.page-node-type-service .block-system-breadcrumb-block {
    padding-right: 665px;
}

.block-system-breadcrumb-block li,
.block-system-breadcrumb-block li a {
    color: var(--White, #FFF);
    font-family: Barlow;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.block-system-breadcrumb-block li a:hover {
    text-decoration: underline;
}

.block-system-breadcrumb-block li:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 8px;
    background: url("../images/svg/arrow-breadcrumbs.svg") no-repeat center;
}

/*///////////////////////////////////////*/
/* ///// PAGE 404 ///////////////////// */
/*/////////////////////////////////////*/
#block-404 {
    width: calc(100% - 60px);
    max-width: 1088px;
    margin: 0 auto;
    padding: 120px 0;
}

#block-404 h1 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Bree", sans-serif;
}

#block-404 .sous-titre {
    color: #333;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: "Bree", sans-serif;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL MISE EN AVANT //////// */
/*/////////////////////////////////////*/
.mise-en-avant {
    height: 710px;
    position: relative;
    background: url("../images/interface/bg-mise-en-avant.png") no-repeat bottom center/100% 100%;
}
.mise-en-avant .container-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-top: 35px;
    width: calc(100% - 60px);
    max-width: 1480px;
    margin: 0 auto;
}
.mise-en-avant .container-content .visuel {
    width: 100%;
    max-width: 650px;
}
.mise-en-avant .container-content .visuel img {
    width: 100%;
}
.mise-en-avant .container-content .content {
    width: 100%;
    padding-top: 100px;
}
.mise-en-avant .container-content .content .inner {
    padding-left: 80px;
}
.mise-en-avant .container-content .content .inner h1 {
    color: var(--White, #FFF);
    font-family: Bree;
    font-size: 36px;
    font-weight: 700;
    line-height: 32px;
    margin: 45px 0 40px;
}
.mise-en-avant .container-content .content .inner h1 span {
    color: var(--White, #FFF);
    font-family: Bree;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL POINTS FORTS ///////// */
/*/////////////////////////////////////*/
.points-forts {
    padding: 170px 0 150px;
    text-align: center;
}
.points-forts h2 {
    color: var(--Red, #F05430);
    text-align: center;
    font-family: "Bree";
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}
.points-forts .texte-intro {
    text-align: center;
    font-family: Barlow;
    font-size: 16px;
    font-weight: 400;
    line-height: 34px;
}
.points-forts .liste-points-forts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 65px 30px;
    margin-top: 70px;
}
.points-forts .liste-points-forts .point-fort {
    width: calc(33.33333% - 20px);
    border-radius: 15px;
    background: var(--Yellow, #FDB834);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px 40px;
}
.points-forts .liste-points-forts .point-fort:nth-child(3), .points-forts .liste-points-forts .point-fort:nth-child(4) {
    background: var(--Jaune, #FDB834);
}
.points-forts .liste-points-forts .point-fort:nth-child(1), .points-forts .liste-points-forts .point-fort:nth-child(5) {
    background: var(--Red, #F05430);
}
.points-forts .liste-points-forts .point-fort:nth-child(2), .points-forts .liste-points-forts .point-fort:nth-child(6) {
    background: var(--Orange, #F68B33);
}
.points-forts .liste-points-forts .point-fort .picto {
    min-height: 115px;
    display: flex;
    align-content: center;
    justify-content: center;
    margin-top: -40px;
}
.points-forts .liste-points-forts .point-fort h3 {
    color: #FFF;
    text-align: center;
    font-family: Bree;
    font-size: 18px;
    line-height: normal;
    margin: 25px 0 10px;
}
.points-forts .liste-points-forts .point-fort .texte {
    color: #FFF;
    text-align: center;
    font-family: Barlow;
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
}

/*///////////////////////////////////////*/
/* //////// BLOCK NEWSLETTER ////////// */
/*/////////////////////////////////////*/
body:not(.frontpage) .region-newsletter {
    margin-top: 120px;
}

.region-newsletter {
    background: linear-gradient(90deg, #F8AE0D -5.54%, #FEEBA9 115.01%);
}
.region-newsletter .newsletter-form-container {
    padding: 50px 0;
    position: relative;
    width: calc(100% - 60px);
    max-width: 1320px;
    margin: 0 auto;
}
.region-newsletter .newsletter-form-container:after {
    content: "";
    position: absolute;
    left: -60px;
    top: -40px;
    width: 94px;
    height: 85px;
    background: url("../images/interface/picto-newsletter.png") no-repeat center/contain;
}
.region-newsletter .newsletter-form-container form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.region-newsletter .newsletter-form-container form .bloc-titre {
    width: 100%;
    max-width: 620px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.region-newsletter .newsletter-form-container form .bloc-titre .form-titre {
    color: var(--Red, #F05430);
    font-family: Bree;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}
.region-newsletter .newsletter-form-container form .bloc-titre .form-sous-titre {
    color: #000;
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.region-newsletter .newsletter-form-container form .liste-champs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 10px;
}
.region-newsletter .newsletter-form-container form .liste-champs .form-item {
    margin: 0;
}
.region-newsletter .newsletter-form-container form .liste-champs .form-item.form-item-email {
    width: 100%;
}
.region-newsletter .newsletter-form-container form .liste-champs .form-item.form-item-email label.form-required {
    display: none;
}
.region-newsletter .newsletter-form-container form .liste-champs .form-item.form-item-email input {
    width: 100%;
    border-radius: 5px;
    border: 2px solid #FBA84A;
    background: #FFF;
    display: flex;
    height: 50px;
    padding: 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}
.region-newsletter .newsletter-form-container form .liste-champs .form-item.form-item-email input:focus {
    outline: none;
}
.region-newsletter .newsletter-form-container form .liste-champs .form-item.form-item-rgpd {
    display: flex;
    align-items: center;
    gap: 10px;
    width: calc(100% - 65px);
}
.region-newsletter .newsletter-form-container form .liste-champs .form-item.form-item-rgpd label {
    color: #231F20;
    font-family: Barlow;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.region-newsletter .newsletter-form-container form .liste-champs .form-item.form-item-rgpd label a {
    color: #231F20;
}
.region-newsletter .newsletter-form-container form .liste-champs .form-actions {
    width: 100%;
    max-width: 55px;
    margin: 0;
}
.region-newsletter .newsletter-form-container form .liste-champs .form-actions input {
    background: var(--Red, #F05430);
    display: flex;
    padding: 10px 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    text-align: center;
    font-family: Bree;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL SERVICES ///////////// */
/*/////////////////////////////////////*/
.accueil-services {
    background: #F4F4F4;
    position: relative;
    z-index: 1;
    padding: 150px 0;
}
.accueil-services:after {
    content: "";
    z-index: -1;
    position: absolute;
    left: -15px;
    bottom: -20px;
    width: 700px;
    height: 700px;
    background: url("../images/interface/logo-blanc.png") no-repeat bottom left/contain;
}
.accueil-services h2 {
    color: var(--Red, #F05430);
    text-align: center;
    font-family: Bree;
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
}
.accueil-services .texte-intro {
    color: #747474;
    text-align: center;
    font-family: Barlow;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    max-width: 690px;
    margin: 10px auto 50px;
}
.accueil-services .texte-intro a {
    color: var(--Orange-1, #F26532);
}
.accueil-services #slider-services {
    position: relative;
}
.accueil-services #slider-services .swiper-slide {
    display: flex;
    justify-content: center;
    min-height: stretch;
}
.accueil-services #slider-services .swiper-button-prev {
    width: 40px;
    height: 40px;
    left: -50px;
    background: url("../images/svg/arrow-slider-prev-orange.svg") no-repeat center;
}
.accueil-services #slider-services .swiper-button-next {
    width: 40px;
    height: 40px;
    right: -50px;
    background: url("../images/svg/arrow-slider-next-orange.svg") no-repeat center;
}
.accueil-services .titre-et-meme-plus {
    color: var(--Red, #F05430);
    text-align: center;
    font-family: Bree;
    font-size: 26px;
    font-style: normal;
    line-height: normal;
    margin: 35px 0;
}
.accueil-services .liste-solutions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.accueil-services .liste-solutions .solution {
    width: calc(50% - 10px);
    display: flex;
    height: 220px;
    align-items: flex-end;
    border-radius: 15px;
    background: #052842;
    color: #fff;
    text-decoration: none;
}
.accueil-services .liste-solutions .solution.cautioneo {
    background: #4842E3;
}
.accueil-services .liste-solutions .solution.athomme {
    background: #35347B;
}
.accueil-services .liste-solutions .solution .image {
    display: flex;
    width: 100%;
    max-width: 250px;
}
.accueil-services .liste-solutions .solution .contenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    height: 100%;
    width: 100%;
    padding: 20px 30px;
}
.accueil-services .liste-solutions .solution .contenu .titre {
    font-family: Bree;
    font-size: 22px;
    font-style: normal;
    line-height: normal;
}
.accueil-services .liste-solutions .solution .contenu .texte {
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.accueil-services .liste-solutions .solution .contenu .flex-end span {
    text-align: center;
    font-family: Bree;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
}
.accueil-services .liste-solutions .solution .contenu .flex-end span:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 3px;
    width: 0%;
    background: #fff;
    transition: all 200ms ease-in-out;
}
.accueil-services .liste-solutions .solution:hover {
    opacity: 0.9;
}
.accueil-services .liste-solutions .solution:hover .contenu .flex-end span:after {
    width: 100%;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL PRESENTATION ///////// */
/*/////////////////////////////////////*/
.accueil-presentation {
    padding: 150px 0 50px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.accueil-presentation .visuel {
    width: 100%;
    max-width: 482px;
}
.accueil-presentation .contenu {
    width: 100%;
}
.accueil-presentation .contenu h2 {
    color: var(--Red, #F05430);
    font-family: Bree;
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.accueil-presentation .contenu p {
    margin-bottom: 10px;
}
.accueil-presentation .contenu ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
    padding-left: 10px;
}
.accueil-presentation .contenu ul li {
    color: var(--Gris, #231F20);
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    padding-left: 27px;
    position: relative;
}
.accueil-presentation .contenu ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: url("../images/svg/icon-check-orange-round.svg") no-repeat center/contain;
}

/*///////////////////////////////////////*/
/* ///// BLOC SERVICE ///////////////// */
/*/////////////////////////////////////*/
.bloc-service {
    overflow: hidden;
    border-radius: 15px;
    background: #FFF;
}
.bloc-service .image {
    display: flex;
    overflow: hidden;
}
.bloc-service .image img {
    width: 100%;
    transition: all 200ms ease-in-out;
}
.bloc-service .image:hover img {
    transform: scale(1.1);
}
.bloc-service .contenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 22px;
    padding: 30px 30px 45px;
}
.bloc-service .contenu .titre {
    text-align: center;
    font-family: Bree;
    font-size: 24px;
    line-height: normal;
}
.bloc-service .contenu .titre a {
    color: var(--Red, #F05430);
    text-decoration: none;
}
.bloc-service .contenu .resume {
    color: var(--Gris, #231F20);
    text-align: center;
    font-family: Barlow;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.bloc-service .contenu .readmore {
    position: relative;
    color: var(--Orange, #F68B33);
    text-align: center;
    font-family: Bree;
    font-size: 18px;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
}
.bloc-service .contenu .readmore:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 3px;
    width: 0%;
    background: var(--Orange, #F68B33);
    transition: all 200ms ease-in-out;
}
.bloc-service .contenu .readmore:hover:after {
    width: 100%;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL CHIFFRES CLES //////// */
/*/////////////////////////////////////*/
.accueil-chiffres-cles {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 50px 0;
}
.accueil-chiffres-cles .bloc-chiffre-cle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 204px;
    max-width: 450px;
    padding-top: 35px;
    background: url("../images/interface/logo-gris.png") no-repeat center/contain;
}
.accueil-chiffres-cles .bloc-chiffre-cle .chiffre {
    color: var(--Red, #F05430);
    text-align: center;
    font-family: Bree;
    font-size: 58px;
    font-weight: 700;
    line-height: 54px;
}
.accueil-chiffres-cles .bloc-chiffre-cle .chiffre sup {
    font-family: Barlow;
    font-size: 34px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.accueil-chiffres-cles .bloc-chiffre-cle:nth-child(2) .chiffre {
    color: var(--Orange, #F68B33);
}
.accueil-chiffres-cles .bloc-chiffre-cle:nth-child(3) .chiffre {
    color: var(--Yellow, #FDB834);
}
.accueil-chiffres-cles .bloc-chiffre-cle .titre {
    color: var(--Gris, #231F20);
    text-align: center;
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    min-height: 32px;
    max-width: 290px;
}

/*///////////////////////////////////////*/
/* ///// SLIDER ACCUEIL /////////////// */
/*/////////////////////////////////////*/
.view-slider-accueil {
    position: relative;
}

.view-slider-accueil .swiper-slide {
    min-height: 685px;
    display: flex;
    align-items: center;
}

.view-slider-accueil .swiper-slide .contenu {
    max-width: 40%;
}

.view-slider-accueil .swiper-slide .contenu .titre {
    font-size: 32px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: "Bree", sans-serif;
}

.view-slider-accueil .swiper-slide .contenu .texte {
    margin-bottom: 35px;
}

.view-slider-accueil .swiper-button-prev {
    width: 25px;
    height: 45px;
    left: 5%;
    background: url("../images/svg/arrow-slider-prev.svg") no-repeat center;
}

.view-slider-accueil .swiper-button-next {
    width: 25px;
    height: 45px;
    right: 5%;
    background: url("../images/svg/arrow-slider-next.svg") no-repeat center;
}

/*///////////////////////////////////////*/
/* ///// PARTENAIRES ACCUEIL ////////// */
/*/////////////////////////////////////*/
.view-id-partenaires.view-display-id-accueil {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.view-id-partenaires.view-display-id-accueil .h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
    font-family: "Bree", sans-serif;
}

.view-id-partenaires.view-display-id-accueil .seo-text {
    font-size: 16px;
    line-height: 30px;
    color: #242424;
    margin-bottom: 50px;
    max-width: 810px;
    text-align: center;
}

.view-id-partenaires.view-display-id-accueil .view-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

/*///////////////////////////////////////*/
/* ///// CONTACT FORM ///////////////// */
/*/////////////////////////////////////*/
.contact-form {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 40px auto 0;
}

.contact-form form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-form form .field--type-list-string,
.contact-form form .field--type-string,
.contact-form form .field--type-email {
    width: 32%;
}

.contact-form form .field--type-list-string .form-radios {
    display: flex;
    flex-wrap: wrap;
}

.contact-form form .field--type-list-string .form-radios .form-type-radio:not(:last-of-type) {
    margin-right: 40px;
}

.contact-form form .form-item {
    margin-bottom: 0;
}

.contact-form form label {
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    color: #242424;
}

.contact-form form .field--type-string-long {
    width: 100%;
}

.contact-form form input[type=text],
.contact-form form input[type=email],
.contact-form form select {
    color: #4B4B4D;
    width: 100%;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    border-radius: 5px;
    border: solid 1px #C8C8C8;
}

.contact-form form textarea {
    color: #4B4B4D;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    padding: 15px;
    border-radius: 5px;
    border: solid 1px #C8C8C8;
}

.contact-form form .form-actions {
    width: 100%;
    display: flex;
    justify-content: center;
}

.g-recaptcha {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/*CHECKBOX*/
input[type=checkbox]:checked,
input[type=checkbox]:disabled:checked,
input[type=radio]:checked,
input[type=radio]:disabled:checked {
    background-color: #F39517;
}

input[type=checkbox]:hover,
input[type=checkbox]:focus,
input[type=radio]:hover,
input[type=radio]:focus {
    border: 2px solid #C2C2C2;
}

input[type=checkbox],
input[type=radio] {
    margin: 0 10px 0 0;
}

input[type=checkbox]:before,
input[type=radio]:before {
    font-family: "Font Awesome 5 Free";
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    margin-top: -2px;
    font-weight: 700;
    border-radius: 0;
    padding-left: 0.5px;
    padding-top: 2px;
    text-align: center;
    background: #fff;
    font-size: 11px;
    color: #FBA84A;
    border: 2px solid #FBA84A;
    cursor: pointer;
    margin-left: -2px;
}

input[type=radio]:before {
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

input[type=radio]:checked:before {
    color: #FBA84A;
    content: "\f111";
}

input[type=checkbox]:checked:before {
    content: "";
    background: #FBA84A;
    outline: solid 3px #fff;
    outline-offset: -6px;
}

/*///////////////////////////////////////*/
/* ///// LISTE ACTUALITES ///////////// */
/*/////////////////////////////////////*/
.view-actualites {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 120px auto;
}

.view-actualites .view-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.view-actualites .view-content .views-row {
    width: 100%;
    max-width: 352px;
    margin: 15px 5px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.view-actualites .view-content .views-row:hover {
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.25);
}

.view-actualites .view-content .views-row .image {
    height: 178px;
}

.view-actualites .view-content .views-row .contenu {
    padding: 0 25px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.view-actualites .view-content .views-row .contenu .date {
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    color: #fff;
    z-index: 5;
    position: relative;
    padding: 0 30px;
    border-radius: 30px;
    margin-top: -10px;
    margin-bottom: 25px;
    background: #242424;
    letter-spacing: 1px;
    font-family: "Bree", sans-serif;
}

.view-actualites .view-content .views-row .contenu .titre {
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: "Bree", sans-serif;
}

.view-actualites .view-content .views-row .contenu .resume {
    font-size: 16px;
    line-height: 30px;
    color: #242424;
}

.view-actualites .view-content .views-row .contenu .lire-la-suite {
    font-size: 16px;
    color: #F39517;
    margin-top: 20px;
    text-decoration: underline;
}

.view-actualites.view-display-id-accueil .h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 2px;
    font-family: "Bree", sans-serif;
}

.view-actualites.view-display-id-accueil .flex-center {
    margin-top: 70px;
}

/*///////////////////////////////////////*/
/* ///// PAGE ACTUALITE /////////////// */
/*/////////////////////////////////////*/
.node--type-actualite {
    width: 90%;
    max-width: 1088px;
    margin: 0 auto;
    padding-top: 25px;
}

.node--type-actualite .date {
    font-size: 14px;
    line-height: 25px;
    font-weight: 700;
    color: #fff;
    z-index: 5;
    position: relative;
    padding: 0 30px;
    border-radius: 30px;
    margin-top: -10px;
    margin-bottom: 35px;
    background: #242424;
    letter-spacing: 1px;
    font-family: "Bree", sans-serif;
}

.node--type-actualite h1 {
    font-size: 29px;
    line-height: 36px;
    font-weight: 700;
    color: #242424;
    text-align: center;
    font-family: "Bree", sans-serif;
}

.node--type-actualite .breadcrumb ol {
    text-align: center;
    margin-top: 10px;
}

.node--type-actualite .texte {
    margin-bottom: 40px;
}

/*///////////////////////////////////////*/
/* ///// LISTE SERVICES /////////////// */
/*/////////////////////////////////////*/
.liste-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
}
.liste-services a {
    display: flex;
    border-radius: 15px;
    border: 1px solid var(--Yellow, #FDB834);
    background: #FFF;
    overflow: hidden;
    text-decoration: none;
    width: calc(33.333333% - 16px);
}
.liste-services a .image {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 190px;
}
.liste-services a .image img {
    width: 100%;
    transition: all 200ms ease-in-out;
}
.liste-services a h3 {
    width: 100%;
    color: var(--Red, #F05430);
    font-family: Bree;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 10px 10px 10px 25px;
    display: flex;
    align-items: center;
    margin: 0;
}
.liste-services a:hover .image img {
    transform: scale(1.1);
}

/*///////////////////////////////////////*/
/* ///// PAGE SERVICE ///////////////// */
/*/////////////////////////////////////*/
.node--type-service .entete-service {
    display: flex;
    align-items: flex-start;
    padding-top: 50px;
    gap: 60px;
}
.node--type-service .entete-service .introduction {
    width: 100%;
    max-width: 660px;
}
.node--type-service .entete-service .block-points-forts {
    position: relative;
    width: 100%;
    margin-top: -200px;
    display: flex;
    width: 600px;
    padding: 40px 30px 40px 60px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    border-radius: 20px;
    background: var(--Red, #F05430);
}
.node--type-service .entete-service .block-points-forts:before {
    content: "";
    position: absolute;
    top: -30px;
    left: -18px;
    width: 75px;
    height: 90px;
    z-index: 1;
    background: url("../images/interface/picto-points-forts.png") no-repeat center/contain;
}
.node--type-service .entete-service .block-points-forts h2 {
    color: var(--White, #FFF);
    font-family: Bree;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}
.node--type-service .entete-service .block-points-forts ul li {
    color: var(--White, #FFF);
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    line-height: 28px;
    padding-left: 22px;
}
.node--type-service .entete-service .block-points-forts ul li:before {
    background: url("../images/svg/yellow-check.svg") no-repeat center/contain;
    width: 15px;
    height: 13px;
    top: 8px;
}
.node--type-service .block-cta {
    position: relative;
    display: flex;
    height: 86px;
    padding: 15px 40px 15px 172px;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
    border-radius: 10px;
    background: var(--Light-grey, #F4F4F4);
    margin-top: 70px;
}
.node--type-service .block-cta:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 102px;
    height: 146px;
    background: url("../images/interface/cta-service.png") no-repeat center/contain;
}
.node--type-service .block-cta .titre {
    color: var(--Orange-1, #F26532);
    font-family: Bree;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.node--type-service .block-cta .sous-titre {
    color: #333;
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/*///////////////////////////////////////*/
/* ///// PAGE DE CONTENU ////////////// */
/*/////////////////////////////////////*/
/*///////////////////////////////////////*/
/* ///// FOOTER /////////////////////// */
/*/////////////////////////////////////*/
footer {
    clear: both;
    color: #fff;
    background: var(--Dark, #231F20);
}
footer .footer-contenu {
    padding: 100px 0 50px;
    display: flex;
    gap: 50px;
}
footer .footer-contenu .logo-contacts {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 535px;
    padding-right: 50px;
    border-right: solid 1px #fff;
}
footer .footer-contenu .logo-contacts .adresse {
    color: #FFF;
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
footer .footer-contenu .logo-contacts .btns {
    display: flex;
    align-items: center;
    gap: 15px;
}
footer .footer-contenu .logo-contacts .btns a.social {
    padding-right: 15px;
}
footer .footer-contenu .logo-contacts .btns a.social:not(:last-of-type) {
    border-right: solid 1px #fff;
}
footer .footer-contenu .menus {
    width: 100%;
}
footer .footer-contenu .menus .menu-services {
    margin-bottom: 30px;
}
footer .footer-contenu .menus .menu-services .titre {
    color: var(--Red, #F05430);
    font-family: Bree;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}
footer .footer-contenu .menus .menu-services .liste-liens {
    column-count: 2;
    column-gap: 20px;
}
footer .footer-contenu .menus .menu-services .liste-liens a {
    display: block;
    color: #FFF;
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}
footer .footer-contenu .menus .menu-classique {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
footer .footer-contenu .menus .menu-classique a {
    color: var(--Red, #F05430);
    font-family: Bree;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}

/*Copyright*/
footer .gl-copy {
    padding: 25px 0 40px;
    text-align: center;
    color: #FFF;
    text-align: center;
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    line-height: 20px;
    width: calc(100% - 60px);
    max-width: 1320px;
    margin: 0 auto;
    border-top: 1px solid #fff;
}

footer .gl-copy img {
    margin-bottom: -5px;
}

footer .gl-copy a {
    color: #fff;
}

/*///////////////////////////////////////*/
/* ///// MASQUAGE ADMIN MENU ////////// */
/*/////////////////////////////////////*/
#toolbar-administration {
    display: none;
}

body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
    margin-left: 0;
}

body,
.adminimal-admin-toolbar.toolbar-fixed.toolbar-vertical {
    padding: 0 !important;
}

/*///////////////////////////////////////*/
/* //// GALERIE PARAGRAPHE //////////// */
/*/////////////////////////////////////*/
.galerie-paragraphe .grid__item,
.galerie-paragraphe .grid__col-sizer {
    width: calc(25% - 24px);
}

.galerie-paragraphe .grid__gutter-sizer {
    width: 24px;
}

.galerie-paragraphe .grid__item {
    margin-bottom: 24px;
}

/*///////////////////////////////////////*/
/* //////////// WEBFORMS ////////////// */
/*/////////////////////////////////////*/
.webform-submission-form {
    width: 100%;
    max-width: 1320px;
    margin: 40px auto 120px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    padding-bottom: 80px;
    margin-bottom: 80px;
}

.path-node-278 .webform-submission-form {
    width: calc(100% - 60px);
    margin: 40px auto;
}

.webform-submission-form .form-item {
    margin: 0 0 15px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.webform-submission-form .form-type-textfield,
.webform-submission-form .form-type-email,
.webform-submission-form .form-type-tel,
.webform-submission-form .form-type-select,
.webform-submission-form .form-type-date,
.webform-submission-form .form-type-number {
    width: calc(50% - 5px);
    margin-bottom: 10px;
}
.webform-submission-form .form-type-textfield.form-item-code-postal, .webform-submission-form .form-type-textfield.form-item-ville,
.webform-submission-form .form-type-email.form-item-code-postal,
.webform-submission-form .form-type-email.form-item-ville,
.webform-submission-form .form-type-tel.form-item-code-postal,
.webform-submission-form .form-type-tel.form-item-ville,
.webform-submission-form .form-type-select.form-item-code-postal,
.webform-submission-form .form-type-select.form-item-ville,
.webform-submission-form .form-type-date.form-item-code-postal,
.webform-submission-form .form-type-date.form-item-ville,
.webform-submission-form .form-type-number.form-item-code-postal,
.webform-submission-form .form-type-number.form-item-ville {
    width: calc(25% - 8px);
}

.webform-submission-form .form-type-select.form-item-offre-concernee {
    width: 100%;
}

.webform-submission-form .form-item-date-souhaitee,
.webform-submission-form .form-item-periode-de-la-journee,
.webform-submission-form .form-item-nb-adultes,
.webform-submission-form .form-item-nb-12-ans {
    width: calc(25% - 8px);
}

.webform-submission-form .form-type-textarea {
    width: 100%;
}

.webform-submission-form .form-textarea-wrapper {
    width: 100%;
}

.webform-submission-form .form-type-checkbox {
    margin-top: 10px;
}

.webform-submission-form .form-actions {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.webform-submission-form .form-item .fieldset-legend,
.webform-submission-form .form-item label {
    color: var(--Gris, #231F20);
    font-family: Bree;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 5px;
}

.webform-submission-form .form-type-checkbox label {
    font-family: breeregular;
    padding-left: 35px;
    margin-top: -15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}

.webform-submission-form input[type=text],
.webform-submission-form input[type=email],
.webform-submission-form input[type=tel],
.webform-submission-form input[type=number],
.webform-submission-form input[type=date],
.webform-submission-form select {
    height: 42px;
    line-height: 42px;
    border-radius: 30px;
    border: 1px solid #D9D9D9;
    padding: 0 20px;
    width: 100%;
}

.webform-submission-form select {
    padding-right: 35px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    cursor: pointer;
    background: url("../images/svg/arrow-select.svg") no-repeat center right 15px;
}

.webform-submission-form textarea {
    border-radius: 15px;
    border: 1px solid #D9D9D9;
    padding: 25px 35px;
}

.webform-submission-form input[type=text]:focus,
.webform-submission-form input[type=email]:focus,
.webform-submission-form input[type=tel]:focus,
.webform-submission-form input[type=number]:focus,
.webform-submission-form input[type=date]:focus,
.webform-submission-form select {
    outline: none;
}

/*///////////////////////////////////////*/
/* ///// PAGE CONTACT ///////////////// */
/*/////////////////////////////////////*/
.page-contact {
    display: flex;
    gap: 25px;
    margin-top: 50px;
}
.page-contact .infos-contact {
    width: 100%;
    max-width: 360px;
    display: flex;
    padding: 80px 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    text-align: center;
    border-radius: 15px;
    background: var(--Light-grey, #F4F4F4);
}
.page-contact .infos-contact .adresse {
    color: var(--Gris, #231F20);
    font-family: breeregular;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 25px;
    text-align: left;
    background: url("../images/svg/marker-map-mini.svg") no-repeat top left;
}
.page-contact .infos-contact .adresse strong {
    font-weight: normal;
    font-family: Bree;
}
.page-contact .infos-contact .horaires {
    color: #333;
    text-align: center;
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.page-contact #blockMap {
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
}

#block-cna2c-vitrine-theme-webform h2 {
    padding-top: 50px;
    color: var(--Orange-1, #F26532);
    font-family: Bree;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
#block-cna2c-vitrine-theme-webform .intro-contact-form {
    color: var(--Gris, #231F20);
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

/*///////////////////////////////////////*/
/* // MISE EN PAGE PARAGRAPHES //////// */
/*/////////////////////////////////////*/
.paragraphes .para-item {
    width: calc(100% - 60px);
    max-width: 1320px;
    margin: 0 auto 40px;
    clear: both;
}
.paragraphes .para-item:first-of-type {
    margin-top: 40px;
}
.paragraphes .para-item a:not(.default-btn) {
    color: #F05430;
}

.intro {
    width: calc(100% - 60px);
    max-width: 1320px;
    margin: 0 auto 50px;
    clear: both;
}

/*Swiper paragraphes*/
.paragraphes .swiper-paragraphe {
    width: 100%;
    margin: 25px auto;
    position: relative;
}

.paragraphes .swiper-paragraphe .swiper-button-prev {
    width: 40px;
    height: 45px;
    left: 1%;
    background: url(../images/svg/arrow-slider-prev-white.svg) no-repeat center;
}

.paragraphes .swiper-paragraphe .swiper-button-next {
    width: 40px;
    height: 45px;
    right: 1%;
    background: url(../images/svg/arrow-slider-next-white.svg) no-repeat center;
}

/*Paragraphe pleine largeur*/
.paragraphes .para-item.full-width {
    width: 100%;
    max-width: none;
    padding: 40px 0;
}

.paragraphes .para-item.full-width .container-para {
    width: calc(100% - 60px);
    max-width: 1320px;
    margin: 0 auto;
}

.paragraphes .para-item.full-width.pos-photo-3 .container-para,
.paragraphes .para-item.full-width.pos-photo-4 .container-para {
    width: 100%;
    max-width: none;
    opacity: 0;
    transition: 200ms ease-in-out;
}

.paragraphes .para-item.full-width.pos-photo-3 .container-para .para-photo-img a,
.paragraphes .para-item.full-width.pos-photo-4 .container-para .para-photo-img a {
    display: flex;
    overflow: hidden;
}

.paragraphes .para-item.full-width.pos-photo-3 .container-para .para-photo-img {
    display: flex;
    overflow: hidden;
}

.paragraphes .para-item.full-width.pos-photo-3 .container-para .para-photo-img a {
    border-radius: 150px 0 0 150px;
}

.paragraphes .para-item.full-width.pos-photo-4 .container-para .para-photo-img a {
    border-radius: 0 150px 150px 0;
}

.paragraphes .para-item.full-width.pos-photo-4 .container-para .para-photo-img {
    display: flex;
    overflow: hidden;
}

.paragraphes h2 {
    color: var(--Orange-1, #F26532);
    font-family: Bree;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
}

.paragraphes h3 {
    color: var(--Orange-1, #F26532);
    font-family: Bree;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 25px 0 15px;
}

.paragraphes h4 {
    color: var(--Gris, #231F20);
    font-family: Bree;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
}

.paragraphes p,
.paragraphes li {
    color: var(--Gris, #231F20);
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    line-height: 28px;
}

.paragraphes p {
    margin-bottom: 15px;
}

.paragraphes p a.default-btn {
    margin-top: 20px;
}

.para-photo-legende {
    margin: 5px 0 15px 0;
    text-align: center;
    font-size: 12px;
}

/*photo à droite*/
.pos-photo-3 .container-para {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}

.pos-photo-3 .para-desc {
    margin-right: 5%;
}

/*photo à gauche*/
.pos-photo-4 .container-para {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pos-photo-4 .para-photos {
    margin-right: 5%;
}

/*photo en haut et en bas*/
.para-item-photo-contenu .para-photos {
    display: flex;
    flex-wrap: wrap;
}

.pos-photo-1 .para-photos .para-photo,
.pos-photo-2 .para-photos .para-photo {
    margin: 10px;
}

.para-item-photo-contenu .para-photos .para-photo img,
.para-item-photo-contenu .para-photos .para-photo img {
    height: 200px;
    width: auto;
}

img[data-align=center] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img[data-align=right] {
    float: right;
}

img[data-align=left] {
    float: left;
}

.paragraphes table {
    width: 100%;
}

.paragraphes table p {
    margin-bottom: 0;
}

.paragraphes table tr td {
    padding: 10px;
    border: 1px solid #d6d6d6;
}

.paragraphes table {
    margin-bottom: 30px;
}

.layout-content ul {
    padding-left: 27px;
    margin-bottom: 15px;
}

.layout-content ul li {
    font-size: 16px;
    line-height: 30px;
    list-style-type: none;
    position: relative;
    padding-left: 20px;
}

.layout-content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FDB834;
}

/*Début accordéon*/
.para-item-accordeon .elements {
    overflow: hidden;
}

.para-item-accordeon .element {
    border-bottom: solid 1px #000;
}

.para-item-accordeon .titre-elem {
    cursor: pointer;
    position: relative;
    padding: 20px 30px 20px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.para-item-accordeon .titre-elem:after {
    content: "";
    position: absolute;
    right: 0;
    top: 20px;
    width: 18px;
    height: 18px;
    background: url("../images/svg/accordeon-open.svg") no-repeat center;
}

.para-item-accordeon .titre-elem.active:after {
    background: url("../images/svg/accordeon-close.svg") no-repeat center;
}

.para-item-accordeon .texte-elem {
    max-height: 0;
    overflow: hidden;
    line-height: 24px;
    text-align: justify;
}

.para-item-accordeon .texte-elem.active {
    max-height: 2000px;
    overflow: visible;
    margin-bottom: 20px;
}

/*Fin accordéon*/
/*Documents*/
.paragraphes .documents a {
    display: block;
    width: 100%;
    text-decoration: none;
    padding-left: 55px;
    line-height: 40px;
    color: #707070;
    border-bottom: solid 1px #d8d8d8;
}

.paragraphes .documents a:last-of-type {
    border-bottom: none;
}

.paragraphes .documents a.type-xls {
    background: url("../images/svg/picto-xls.svg") no-repeat 17px center;
}

.paragraphes .documents a.type-doc {
    background: url("../images/svg/picto-doc.svg") no-repeat 17px center;
}

.paragraphes .documents a.type-ppt {
    background: url("../images/svg/picto-ppt.svg") no-repeat 17px center;
}

.paragraphes .documents a.type-pdf {
    background: url("../images/svg/picto-pdf.svg") no-repeat 17px center;
}

/*TARTEAUCITRON*/
html body #tarteaucitronRoot div#tarteaucitronAlertBig {
    top: auto !important;
    transform: none !important;
    left: 20px !important;
    bottom: 80px !important;
    width: 420px !important;
    height: auto !important;
    margin: auto !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    padding: 0 !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15), 0 2px 6px rgba(0,0,0,0.05) !important;
    border: none !important;
    text-align: left !important;
    background: #fff !important;
    transition: all 500ms ease-in-out !important;
}

html body #tarteaucitronRoot div#tarteaucitronAlertBig.show {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

#tarteaucitronRoot .tarteaucitronDeny {
    background: #333 !important;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert, #tarteaucitronAlertBig #tarteaucitronPersonalize, #tarteaucitronAlertBig #tarteaucitronPersonalize2, .tarteaucitronCTAButton, #tarteaucitron #tarteaucitronPrivacyUrl, #tarteaucitron #tarteaucitronPrivacyUrlDialog, #tarteaucitronRoot .tarteaucitronDeny, #tarteaucitronRoot .tarteaucitronAllow {
    margin: 5px !important;
}

html body #tarteaucitronRoot #tarteaucitronAlertBig span#tarteaucitronDisclaimerAlert {
    font-size: 13px !important;
    padding: 30px 30px 0 !important;
    display: block !important;
    line-height: 18px !important;
    color: grey !important;
    background-color: transparent !important;
    background: url(https://www.grouplive.net/modules/custom/cookies_grouplive/images/cookie.svg) no-repeat right 20px top 6px !important;
    background-size: 40px !important;
    text-align: left !important;
}

html body #tarteaucitronRoot span#tarteaucitronDisclaimerAlert #tarteaucitronTitle {
    font-family: 'Aleo' !important;
    font-size: 16px !important;
    padding-right: 100px !important;
    color: #06212F !important;
}

html body #tarteaucitronRoot span#tarteaucitronDisclaimerAlert  a {
    color: #06212F !important;
}

html body #tarteaucitronRoot div#tarteaucitronAlertBig .block-btns {
    width: 100% !important;
    display: flex !important;
}
html body #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPrivacyUrl {
    background-color: transparent !important;
}


html body #tarteaucitronRoot div#tarteaucitronAlertBig button.tarteaucitronCTAButton,
html body #tarteaucitronRoot div#tarteaucitronAlertBig button#tarteaucitronCloseAlert {
    width: 45% !important;
    padding: 0 25px !important;
    text-align: center !important;
    background: #fff !important;
    color: #06212F !important;
    border: solid 1px rgba(0, 0, 0, .1) !important;
    margin: 0 !important;
    line-height: 40px !important;
    text-transform: none !important;
    font-family: 'Aleo' !important;
    transition: all 200ms ease-in-out !important;
    height: auto !important;
    box-sizing: border-box;
    margin-left: 12px !important;
    margin-bottom: 14px !important;
}

html body #tarteaucitronRoot div#tarteaucitronAlertBig button#tarteaucitronPersonalize2 {
    width: calc(100% - 25px) !important;
    background: #36a136 !important;
    color: #fff !important;
}

#tarteaucitronPrivacyUrl {
    color: #06212F !important;
    width: 100%;
    margin-bottom: 10px;
    text-decoration: underline;
    font-size: 13px;
}

#tarteaucitronPrivacyUrl:focus {
    outline: none;
}

html body #tarteaucitronRoot div#tarteaucitronAlertBig button.tarteaucitronCTAButton :hover {
    color: #fff !important;
    background: #06212F !important;
}

html body #tarteaucitronRoot div#tarteaucitronAlertBig button.tarteaucitronCTAButton :first-of-type {
    border-right: solid 1px rgba(0, 0, 0, .1) !important;
    width: 35% !important;
}

div#tarteaucitronAlertBig:before {
    display: none !important;
}

@media screen and (max-width: 768px) {
    html body #tarteaucitronRoot div#tarteaucitronAlertBig button.tarteaucitronCTAButton,
    html body #tarteaucitronRoot div#tarteaucitronAlertBig button#tarteaucitronCloseAlert {
        display: inline-block !important;
    }
}

@media screen and (max-width: 768px) {

    html body #tarteaucitronRoot div#tarteaucitronAlertBig {
        left: 5% !important;
        bottom: 20px !important;
        width: 90% !important;
        max-width: 420px !important;
        height: auto !important;
        margin: auto !important;
    }

    #tarteaucitronRoot span#tarteaucitronDisclaimerAlert #tarteaucitronTitle {
        padding-right: 65px !important;
    }

    html body #tarteaucitronRoot div#tarteaucitronAlertBig .block-btns button {
        height: 50px !important;
        line-height: 50px !important;
    }
}

span.tarteaucitron-magic-block {
    position: fixed;
    bottom: 0;
    left: 0;
    p {
        color: #fff;
    }
}