/*Theme components*/
/*fonts*/
@font-face {
    font-family: 'Unbounded-Regular';
    src: local('Unbounded-Regular'),
        url('../fonts/unbounded/Unbounded-Regular.woff2') format('woff2'),
        url('../fonts/unbounded/Unbounded-Regular.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Unbounded-Bold';
    src: local('Unbounded-Bold'),
        url('../fonts/unbounded/Unbounded-Bold.woff2') format('woff2'),
        url('../fonts/unbounded/Unbounded-Bold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Rubik-Bold';
    src: local('Rubik-Bold'),
        url('../fonts/rubik/Rubik-Bold.woff2') format('woff2'),
        url('../fonts/rubik/Rubik-Bold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Rubik-Regular';
    src: local('Rubik-Regular'),
        url('../fonts/rubik/Rubik-Regular.woff2') format('woff2'),
        url('../fonts/rubik/Rubik-Regular.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Rubik-Medium';
    src: local('Rubik-Medium'),
        url('../fonts/rubik/Rubik-Medium.woff2') format('woff2'),
        url('../fonts/rubik/Rubik-Medium.woff') format('woff');
    font-display: swap;
}

/*colors*/
.hover-white:hover,
.white {
    color: white
}

.bg-hover-white:hover,
.bg-white {
    background: white
}

.hover-black:hover,
.black {
    color: #2B2B2B
}

.bg-hover-black:hover,
.bg-black {
    background: black
}

.blue {
    color: #5B79A4
}

.special-bg-blue,
.bg-blue {
    background: #5B79A4;
}

.blue-lite {
    color: #56BFCA
}

.bg-blue-lite {
    background: #56BFCA
}

.bg-blue-extra-lite {
    background: rgb(86 191 202 / 10%)
}

.yellow {
    color: #FCC978
}

.bg-yellow {
    background: #FCC978
}

.orange {
    color: #EF7B63
}

.bg-orange {
    background: #EF7B63
}

/*components*/
.cta-simple {
    font-family: 'Unbounded-Regular';
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
}

.cta-simple svg {
    margin-left: 11px
}

.main-title {
    font-size: 42px;
    line-height: 52px;
    font-family: 'Unbounded-Regular';
}

.big-title {
    font-size: 36px;
    line-height: 45px;
    font-family: 'Unbounded-Regular';
}

.big-title-2 {
    font-size: 30px;
    line-height: 36px;
    font-family: 'Rubik-Medium';
}

.medium-title {
    font-family: 'Unbounded-Regular';
    font-size: 24px;
    line-height: 30px;
}

body:not(.wp-admin, .wp-core-ui) p,
.medium-text {
    font-family: 'Rubik-Regular';
    font-size: 18px;
    line-height: 28px;
}

body:not(.wp-admin) p strong,
body:not(.wp-admin) p b {
    font-family: 'Rubik-Bold';
}

body p.big-text {
    font-family: 'Rubik-Regular';
    font-size: 22px;
    line-height: 28px;
}

body p.small-text,
body span.small-text {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Rubik-Regular';
}

.mini-text {
    font-size: 12px;
    font-family: 'Rubik-Regular';
}

.cta {
    font-family: 'Unbounded-Regular';
    font-size: 16px;
    border: 2px solid white;
    padding: 13px 28px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.cta:hover .button_circle {
    transform: scale(600);
    animation-play-state: running;
}

.button_circle {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 1px;
    transform: scale(0);
    border-radius: 50%;
    transition: transform 1s ease;
    z-index: -1;
    animation: 5s filter infinite;
    animation-play-state: paused;
}

.cta.white .button_circle {
    background: white
}

.cta.blue .button_circle {
    background: #5B79A4
}

.cta.blue-lite .button_circle {
    background: #56BFCA
}

@keyframes filter {
    from {
        /* filter: hue-rotate(0deg); */
    }

    to {
        /* filter: hue-rotate(360deg); */
    }
}

.cta.white:hover {
    color: #EF7B63
}

.cta.white:hover img {
    filter: brightness(0) saturate(100%) invert(72%) sepia(68%) saturate(3747%) hue-rotate(322deg) brightness(105%) contrast(87%);
}

.cta.blue-lite:hover,
.cta.blue:hover {
    color: white
}

.cta.blue-lite:hover img,
.cta.blue:hover img {
    filter: brightness(0) invert(1)
}


div.wpcf7 .cta-simple svg {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    transition: transform 0.5s;
}

div.wpcf7 .cta-simple:hover svg {
    -webkit-transform: translateX(8px);
    -ms-transform: translateX(8px);
    transform: translateX(8px);
}

.cta img.arrow {
    margin-left: 10px;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    transition: transform 0.5s;
}

.cta:hover img.arrow {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}

.cta-simple img,
.cta-simple svg {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    transition: transform 0.5s;
}

.cta-simple:hover img,
.cta-simple:hover svg {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}

.section-0 .cta img.arrow {
    top: 2px;
    position: relative;
}

.cta.blue {
    border-color: #5B79A4
}

.cta.yellow {
    border-color: #FCC978
}

.cta.blue-lite {
    border-color: #56BFCA
}

.mini-cta {
    font-family: 'Unbounded-Regular';
    font-size: 16px;
}

.radius {
    border-radius: 10px
}

.cta.billeterie {
    padding: 11.8px 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 164px;
    position: absolute;
    right: 60px;
    top: 15px;
}

.cta.billeterie svg {
    margin-right: 15px
}

/*bloc-sider-img*/
.bloc-sider-img img {
    height: 640px;
    border-radius: 8px;
    object-fit: cover;
}

.bloc-img-text .slick-dots,
.bloc-text-img .slick-dots,
.bloc-sider-img .slick-dots {
    bottom: 36px
}

.bloc-3-img .slick-dots {
    bottom: 25px
}

.bloc-3-img .slick-dots li,
.gallery-partenaires .slick-dots li,
.bloc-text-img-2 .slick-dots li,
.bloc-img-text-2 .slick-dots li,
.bloc-img-text .slick-dots li,
.bloc-text-img .slick-dots li,
.bloc-sider-img .slick-dots li {
    background: none;
    width: 16px;
    height: 8px;
    border: 2px solid #5B79A4
}

.bloc-3-img .slick-dots li.slick-active,
.gallery-partenaires .slick-dots li.slick-active,
.bloc-text-img-2 .slick-dots li.slick-active,
.bloc-img-text-2 .slick-dots li.slick-active,
.bloc-img-text .slick-dots li.slick-active,
.bloc-text-img .slick-dots li.slick-active,
.bloc-sider-img .slick-dots li.slick-active {
    width: 30px;
    background: #5B79A4;
}

.bloc-text-img-2 .slick-dots li.slick-active,
.bloc-img-text-2 .slick-dots li.slick-active {
    background: white;
}

.bloc-text-img-2 .slick-dots li,
.bloc-img-text-2 .slick-dots li {
    border: 2px solid white
}

.bloc-text-cta p a,
.bloc-double-texte p a,
.bloc-text-img-2 p a,
.bloc-img-text-2 p a,
.bloc-img-text p a,
.bloc-text-img p a,
.bloc-text p a {
    color: #5B79A4;
    font-size: 18px;
    font-family: 'Rubik-Bold';
    text-decoration: underline;
}

.wpcf7-not-valid-tip {
    font-family: 'Rubik-Regular';
    font-size: 14px;
    top: -30px;
    position: relative;
    color: #EF7B63;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    border: none;
    background: #46b450;
    color: white;

    padding: 10px;
    padding-right: 0px;
    font-size: 13px;
    margin-top: 30px;
}

.wpcf7 form.invalid .wpcf7-response-output {
    border: none;
    background: #EF7B63;
    color: white;
    padding: 10px;
    padding-right: 0px;
    font-size: 13px;
    margin-top: 30px;
}

.wpcf7 form .wpcf7-response-output {
    font-family: 'Rubik-Regular';
    font-size: 14px;

}

/*bloc-img*/
.bloc-img img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    border-radius: 8px;
}

/*bloc equipe*/
.bloc-equipe .item img {
    width: 220px;
    height: 220px;
    border-radius: 100%;
    object-fit: cover;
}

.flex-equipe {
    flex-wrap: wrap;
    display: flex;
    width: 100%;
    justify-content: center;
}

.flex-equipe .item {
    width: 220px;
    margin: 0px 67px;
    position: relative;
    margin-bottom: 70px;
}

.flex-equipe .item:nth-child(3n+1) {
    top: 110px
}

.flex-equipe .item:nth-child(3n+2) {
    top: 55px;
    opacity: 1;
}

.flex-equipe .item:nth-child(3n+3) {
    top: 0px
}

body .bloc-equipe {
    padding-bottom: 200px
}

.flex-equipe .item {
    text-align: center
}

.flex-equipe .item img {
    margin-bottom: 22px
}

.flex-equipe .item p {
    margin-top: 4px
}

body .bloc-text-cta,
body .bloc-tarifs,
body .bloc-equipe {
    padding-top: 100px;
    background-image: url('../img/jpg/esca.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 100px;
}

.second-text-tarifs {
    font-size: 14px !important;
    margin-bottom: 40px;
}

.second-text-tarifs.m-t-special {
    margin-top: -30px;

}

.triangle-team-top {
    width: 0;
    height: 0;
    border-bottom: 150px solid white;
    border-right: 100vw solid transparent;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(180deg);
}

.triangle-team-bottom {
    width: 0;
    height: 0;
    border-top: 150px solid white;
    border-left: 100vw solid transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

/**/
.bloc-sider-card .section-2 {
    margin-top: 0px;
    padding-top: 0px;
}

/*faq*/
.accordion .accordion-item {
    border-bottom: 1px solid #5B79A4
}

.accordion .accordion-item button[aria-expanded=true] {
    /* border-bottom: 1px solid #5B79A4; */
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 28px 0px;
    color: #5B79A4;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #03b5d2;
    border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
    font-family: 'Rubik-Bold';
    color: #2B2B2B;
    font-size: 20px;
    line-height: 24px;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: calc(50% - 11.5px);
    right: 0;
    width: 23px;
    height: 23px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 0;
    width: 23px;
    height: 2px;
    background: #5B79A4;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: -1px;
    left: 11px;
    width: 2px;
    height: 23px;
    background: #5B79A4;
}

.accordion button[aria-expanded=true] {
    color: #03b5d2
}

.accordion button[aria-expanded=true] .icon::after {
    width: 0
}

.accordion button[aria-expanded=true]+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
    padding: 25px 0px;
    display: table;
    padding-top: 0px;
}

.accordion .accordion-content a {
    text-decoration: underline;
    color: #2B2B2B
}

.accordion .accordion-content em {
    font-style: italic;
}

em {
    font-style: italic !important;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 400ms linear, max-height 400ms linear;
    will-change: opacity, max-height;
}

.accordion {
    margin-bottom: 50px
}

.bloc-faq .big-title {
    margin-bottom: 25px
}

.bloc-faq .m-b-65 {
    margin-bottom: 50px
}

/*bloc-text-img*/
.bloc-img-text .flex,
.bloc-text-img .flex {
    position: relative
}





.bloc-text-img .flex .content ul li,
.bloc-img-text .flex .content ul li {
    font-family: 'Rubik-Regular';
    font-size: 18px;
    line-height: 28px;
    list-style-type: disc;
    margin-left: 20px;
}

.flex-equipe .small-text a {
    text-decoration: underline;
    color: #5B79A4;
}

.bloc-3-text p a {
    text-decoration: underline;
    color: #EF7B63;
}

.bloc-text-img .flex .content a:not(.cta),
.bloc-img-text .flex .content a:not(.cta) {
    color: #2B2B2B;
    text-decoration: underline;
}

.bloc-text-img .flex .content em,
.bloc-img-text .flex .content em {
    font-style: italic;
}


.bloc-img-text .flex .content,
.bloc-text-img .flex .content {
    float: left;
    width: 555px;
    padding-right: 55px;
    display: inline;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bloc-img-text .flex .content {
    float: right;
    padding-right: 0px;
    padding-left: 55px;
    left: 55px;
    position: relative;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bloc-img-text .gallery,
.bloc-text-img .gallery {
    width: 640px;
    float: left;
    position: absolute;
    top: 0;
    left: 555px;
}

.bloc-img-text .gallery {
    left: -80px
}

.bloc-img-text .gallery img,
.bloc-text-img .gallery img {
    width: 640px;
    height: 640px;
    object-fit: cover;
    border-radius: 8px;
}

body .bloc-img-text,
body .bloc-text-img {
    min-height: 640px;
    margin: 25px 0px;
}

.bloc-text-img-2 .big-title,
.bloc-img-text-2 .big-title,
.bloc-img-text .big-title,
.bloc-text-img .big-title {
    margin-bottom: 13px;
}

.bloc-text-img-2 .big-title-2,
.bloc-img-text-2 .big-title-2,
.bloc-img-text .big-title-2,
.bloc-text-img .big-title-2 {
    margin-bottom: 16px;
}

.bloc-text-img-2 .cta,
.bloc-img-text-2 .cta,
.bloc-img-text .cta,
.bloc-text-img .cta {
    margin: 0 auto;
    display: flex;
    margin-top: 52px;
}

/*.bloc-3-text */
.bloc-3-text h3 {
    font-size: 21px;
    line-height: normal;
    font-family: 'Unbounded-Regular';
    margin-bottom: 12px;
}

.bloc-3-text .big-title {
    margin-bottom: 15px
}

.bloc-3-text .flex {
    display: flex;
    margin: 33px 0px;
}

.bloc-3-text .bloc {
    width: 340px;
    border: 2px solid #EF7B63;
    border-radius: 8px;
    margin-right: 37px;
    text-align: center;
    padding: 30px;
}

.bloc-3-text .bloc p {
    font-family: 'Rubik-Medium'
}

/*bloc-tarifs*/
body .bloc-tarifs {
    margin-bottom: 0px;
    padding: 135px 0px;
}

.bloc-tarifs .item {
    border: 2px solid #5B79A4;
    display: flex;
    margin-bottom: 60px;
    position: relative;
    border-radius: 8px;
}

.bloc-tarifs .item>img {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 298px;
    top: 0;
    left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.bloc-tarifs .item.hide {
    display: none
}

.bloc-tarifs .content {
    width: calc(100% - 298px);
    padding-left: 40px;
    padding-right: 25px;
    padding-top: 35px;
    padding-bottom: 25px;
    left: 298px;
    position: relative;
}

.bloc-price-tarif {
    position: relative;
    display: table;
    margin-top: 3px;
}

.bloc-price-tarif * {
    font-family: 'Unbounded-Regular';
    font-size: 30px;
    line-height: 40px;
    color: #5B79A4
}

.price-tarifs {
    position: absolute;
    right: 30px;
    top: 43px;
}

.price-tarifs label {
    font-family: 'Unbounded-Regular';
    font-size: 16px;
}

.sold-price {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.bloc-tarifs .content .medium-title {
    margin-bottom: 22px
}

.bloc-tarifs .date p span {
    font-family: 'Rubik-Bold'
}

.bloc-tarifs .parent-date {
    margin-bottom: 21px
}

.bloc-tarifs .content>p {
    margin-bottom: 38px
}

.bloc-tarifs .group-cta {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 9;
    position: relative;
}

.bloc-tarifs .cta-simple {
    position: relative;
    bottom: 0;
    right: 0px;
    margin-right: 60px;
    display: flex;
    align-items: center;
}

.bloc-tarifs .cta-simple img {
    margin-left: 15px
}

.bloc-tarifs .big-title {
    margin-bottom: 13px
}

.switch-tarif .switch-label {
    position: relative;
    display: inline-block;
    width: 75px;
    height: 40px;
    margin: 0px 8px;
}

.switch-tarif .switch-label input {
    opacity: 0;
    width: 0;
    height: 0;
}

.bloc-text-cta em {
    font-style: italic;
}

.bloc-text-cta li a,
.bloc-text-cta p a {
    text-decoration: underline;
    color: #5B79A4
}

.bloc-text-cta li {
    font-family: 'Rubik-Regular';
    font-size: 18px;
    line-height: 28px;
    list-style-type: disc;
    margin-left: 20px;
}

.text-tarifs li,
.simple-text ul li {
    font-family: 'Rubik-Regular';
    font-size: 18px;
    line-height: 28px;
    list-style-type: disc;
    margin-left: 20px;
}

.simple-text h2 {
    font-size: 30px;
    line-height: 36px;
    font-family: 'Rubik-Medium';
    color: #56BFCA;
    margin-bottom: 15px;
    margin-top: 15px;
}

.text-tarifs {
    font-family: 'Rubik-Regular';
    font-size: 18px;
    line-height: 28px;
}

.text-tarifs strong {
    font-family: 'Rubik-Bold';
}

.flexible-options {

    margin-bottom: 100px;
}

.text-tarif {
    margin-bottom: 20px;
}

.text-tarifs h3 {
    font-size: 21px;
    line-height: 25px;
    font-family: 'Rubik-Medium';
    margin-bottom: 15px;
    margin-top: 15px;
}

.text-tarifs a {
    color: #5B79A4;
    text-decoration: underline;

}



.simple-text h3,
.simple-text h4,
.simple-text h5 {
    font-size: 21px;
    line-height: 25px;
    font-family: 'Rubik-Medium';
    margin-bottom: 15px;
}

.simple-text em {
    font-style: italic;
}

.switch-tarif .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s cubic-bezier(0, 1, 0.5, 1);
    border-radius: 8px;
    border: 2px solid #5B79A4;
}

.switch-tarif .slider:before {
    position: absolute;
    content: "";
    height: 29px;
    width: 29px;
    left: 4px;
    bottom: 4px;
    background-color: #5B79A4;
    -webkit-transition: .4s;
    transition: .4s cubic-bezier(0, 1, 0.5, 1);
    border-radius: 4px;
    bottom: 3px;
}

/* .switch-tarif input:focus + .slider {box-shadow: 0 0 4px #7efa70} */
.switch-tarif input:checked+.slider:before {
    -webkit-transform: translateX(33px);
    -ms-transform: translateX(33px);
    transform: translateX(33px);
}

.switch-tarif>span {
    font-family: 'Rubik-Regular';
    font-size: 18px;
    line-height: 28px;
}

.switch-tarif>span:first-child {
    width: 110px
}

.switch-tarif>span.active {
    font-family: 'Rubik-Bold'
}

.switch-tarif {
    display: flex;
    align-items: center;
}

.switch-tarif {
    margin-top: 40px;
    margin-bottom: 55px;
}

.bloc-price-tarif.has-sold.active .sold-price {
    opacity: 1
}

.bloc-price-tarif.has-sold.active .regular-price {
    opacity: 0
}

/*bloc-text*/
.bloc-text {
    margin: 0px
}

.bloc-video video {
    width: 100%;
    border-radius: 8px;
}

.legende-video {
    margin-top: 10px;
    font-style: italic;
    font-size: 14px !important;
}

/*bloc article*/
.slide-post-bloc .slide {
    width: 100%;
    margin-top: 50px;
}

.bloc-articles .slide li {
    width: calc(33% - 30px);
    height: 408px;
}

.bloc-articles .big-title {
    margin-bottom: 25px
}

.bloc-articles .cta-simple img {
    margin-left: 15px
}

.bloc-articles .container>.cta-simple {
    bottom: inherit;
    top: 75px;
    right: 60px;
    display: flex;
    align-items: center;
}

/*bloc-img-text-2 */
.bloc-text-img-2 .gallery img,
.bloc-img-text-2 .gallery img {
    clip-path: polygon(0 0, 90% 14%, 100% 82%, 0% 100%);
    width: 100%;
    object-fit: cover;
}

.gal-parent,
.bloc-text-img-2 .gallery .img,
.bloc-img-text-2 .gallery .img {
    position: relative;
}

.bloc-text-img-2 .slick-list,
.bloc-img-text-2 .slick-list {
    padding-bottom: 100px
}

.bloc-text-img-2 .slick-dots,
.bloc-img-text-2 .slick-dots {
    bottom: 220px
}

.bloc-text-img-2 .gallery .img,
.bloc-img-text-2 .gallery .img,
.bloc-text-img-2 .gallery.slider,
.bloc-img-text-2 .gallery.slider,
.gal-parent {
    width: 900px;
}

.bloc-text-img-2 .gallery img,
.bloc-img-text-2 .gallery img,
.gal-parent {
    height: 650px
}

.bloc-text-img-2 .slick-slide,
.bloc-img-text-2 .slick-slide {
    left: 2px
}

.bloc-text-img-2 .slick-slide.slick-active,
.bloc-img-text-2 .slick-slide.slick-active {
    left: 0
}

.bloc-text-img-2 .content,
.bloc-img-text-2 .content {
    padding-right: 0px;
    padding-left: 55px;
    position: relative;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 555px;
}

.bloc-img-text-2 .content {
    float: right;
    left: 0px;
    margin-top: 0;

}

.bloc-img-text-2 .gallery:not(.slider),
.bloc-img-text-2 .gal-parent {
    float: left;
}

.triangle-special,
.triangle-special-2 {
    position: absolute;
    height: 100%;
    width: 101%;
    left: 0;
}

.triangle-special-2 {
    width: 100%
}

.triangle-special {
    background: #5b79a4;
    clip-path: polygon(0% 80%, 98% 65%, 99% 65%, 0% 97%);
    bottom: -108px;
}

.triangle-special-2 {
    background: #ffffff;
    bottom: -68px;
    z-index: 0;
    clip-path: polygon(49% 87.5%, 100% 71%, 100% 100%, 47% 100%);
}

@media screen and (max-width: 1700px) {

    .bloc-text-img-2 .gallery .img,
    .bloc-text-img-2 .gallery.slider,
    .bloc-img-text-2 .gallery .img,
    .bloc-img-text-2 .gallery.slider,
    .gal-parent {
        width: 792px;
    }
}

/*.bloc-text-img-2 */
.bloc-text-img-2 .gallery:not(.slider),
.bloc-text-img-2 .gal-parent {
    transform: rotate3d(0, 1, 0, 180deg);
    float: right;
    z-index: 9;
    position: relative;
}

.bloc-text-img-2 .content {
    float: left;
    left: 0px;
    margin-top: 0;
    padding-left: 0px;
    padding-right: 55px;
}

/*bloc-cta-texte*/
body .bloc-text-cta {
    padding-top: 150px;
    padding-bottom: 150px;
    margin-bottom: 0px;
}

.triangle-team-bottom-2 {
    border-bottom: 150px solid #ffffff;
    border-left: 100vw solid transparent;
    position: absolute;
    transform: none;
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
}

body .bloc-text-cta .big-title {
    margin-bottom: 20px
}

body .bloc-text-cta .big-text {
    margin-bottom: 35px
}


/* bloc-3-img*/
.bloc-3-img {
    display: flex;
    justify-content: center;
}

.bloc-3-img img {
    width: 408px;
    height: 408px;
    object-fit: cover;
    margin: 0px 13px;
    border-radius: 8px;
}

body .bloc-citation {
    padding-top: 130px;
    padding-bottom: 122px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    clip-path: polygon(0 calc(100% - 321px), 100% 0, 100% 100%, 0 calc(100% - 89px));
}

body .bloc-citation:after {
    content: "";
    background: rgb(255 255 255 / 67%);
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    z-index: 0;
}

body .bloc-citation .big-title,
body .bloc-citation svg {
    z-index: 99;
    position: relative;
}

body .bloc-citation .big-title {
    text-align: center;
    margin-top: 43px;
}

body .bloc-citation .triangle-team-top {
    border-top: 150px solid white;
    border-right: 100vw solid transparent;
    transform: none;
}

body .bloc-citation .triangle-team-bottom {
    border-top: 150px solid white;
    border-right: 100vw solid transparent;
    transform: none;
}

.bloc-double-texte .inner {
    display: flex;
    flex-direction: row
}

.bloc-double-texte .inner .block-left {
    padding-right: 30px
}

.bloc-double-texte .inner .block-right {
    padding-left: 30px
}

.bloc-double-texte .big-title-2 {
    margin-bottom: 15px
}

/*Bloc actu hp*/
body .bloc-actu-hp {
    padding-top: 100px;
    padding-bottom: 100px;
}

body .bloc-actu-hp:before {
    content: none
}

/*.bloc-story-hp*/
.bloc-story-hp img.img-story {
    width: auto;
    max-height: 100%;
    top: 0px;
}


body .bloc-story-hp {
    padding-bottom: 100px;
}

.block-img-left,
.bloc-story-hp>img:not(.img-story) {
    width: auto;
    top: 0;
    left: -400px;
}

.block-img-left {
    position: absolute;
    top: 100px;
    left: -350px;
}

/*bloc-carte-cadeau*/
body .bloc-avis-google-hp {
    padding-top: 0px;
    padding-top: 70px !important;
}

body .bloc-avis-google-hp .block-google-avis {
    margin-top: 0px;
}

body .bloc-avis-google-hp:before {
    content: none;
}


@media screen and (min-width: 768px) {
    body .pad-left-50 {
        padding-left: 50px;
    }
}

.mb-20 {
    margin-bottom: 20px;
}

.form-avis-google {
    position: absolute;
    top: 0px;
    width: auto;
    left: -400px;
}

.form-carte-cadeau {
    position: absolute;
    top: 100px;
    right: -350px;
}

/*bloc-relation-page-hp*/
body .bloc-relation-page-hp {
    margin-top: 0px;
    padding-top: 100px;
    padding-bottom: 100px;
}

/*body .bloc-horraires-hp*/
body .bloc-horraires-hp {
    clip-path: inherit;
    padding-bottom: 100px;
    padding-top: 100px;
}

body .bloc-horraires-hp .chiffres {
    margin-top: 100px
}

body .bloc-horraires-hp:before {
    content: "";
    background: rgb(43 43 43 / 60%);
    position: absolute;
    left: 0px;
    height: 100%;
    width: 100%;
    top: 0;
    transform: none;
}

body .bloc-horraires-hp p.m-b {
    margin-bottom: 20px;
}

body .bloc-community {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 767px) {

    .bloc-img-text .gallery img,
    .bloc-text-img .gallery img {
        width: 640px;
        height: 570px;
        object-fit: cover;
        border-radius: 8px;
    }
}

@media screen and (max-width: 1850px) {

    .bloc-text-img-2 .gallery .img,
    .bloc-img-text-2 .gallery .img,
    .bloc-text-img-2 .gallery.slider,
    .bloc-img-text-2 .gallery.slider,
    .gal-parent {
        width: 750px;
    }
}

@media screen and (max-width: 1560px) {

    .bloc-text-img-2 .gallery .img,
    .bloc-img-text-2 .gallery .img,
    .bloc-text-img-2 .gallery.slider,
    .bloc-img-text-2 .gallery.slider,
    .gal-parent {
        width: 700px;
    }
}

@media screen and (max-width: 1460px) {

    .bloc-text-img-2 .gallery .img,
    .bloc-img-text-2 .gallery .img,
    .bloc-text-img-2 .gallery.slider,
    .bloc-img-text-2 .gallery.slider,
    .gal-parent {
        width: 550px;
    }

    .triangle-special {
        bottom: -89px
    }

    .bloc-3-img img {
        width: 350px;
        height: 350px;
    }
}

@media screen and (max-width: 1400px) {

    .bloc-img-text .gallery img,
    .bloc-text-img .gallery img {
        width: 100%;
    }

    .bloc-img-text .gallery,
    .bloc-text-img .gallery {
        width: calc(100% - 555px)
    }

    .bloc-img-text .gallery {
        left: 0px
    }

    .bloc-img-text .flex .content {
        padding-left: 0px
    }

    .bloc-img-text .gallery img,
    .bloc-text-img .gallery img,
    .bloc-text-img-2 .gallery img,
    .bloc-img-text-2 .gallery img,
    .gal-parent {
        height: 562px;
    }

    .bloc-img-text .flex .content,
    .bloc-text-img .flex .content {
        min-height: 562px;
    }

    .big-container {
        max-width: 90%
    }

    .bloc-3-img img {
        width: 330px;
        height: 330px;
    }
}

@media screen and (max-width: 1300px) {
    .flex-equipe .item {
        width: 165px
    }

    .bloc-3-text .bloc {
        padding: 20px 30px
    }

    .bloc-3-text .bloc {
        width: 33.33%
    }

    .bloc-3-text h3 {
        font-size: 18px
    }

    .bloc-sider-img img {
        height: 580px
    }
}

@media screen and (max-width: 1200px) {

    .bloc-img-text .flex .content,
    .bloc-text-img .flex .content {
        width: 45%;
    }

    .bloc-img-text .flex .content {
        left: 0
    }

    .bloc-3-img img {
        width: 300px;
        height: 300px;
    }

    .bloc-text-img-2 .gallery .img,
    .bloc-img-text-2 .gallery .img,
    .bloc-text-img-2 .gallery.slider,
    .bloc-img-text-2 .gallery.slider,
    .gal-parent {
        width: 450px;
    }

    .bloc-text-img-2 .content,
    .bloc-img-text-2 .content {
        width: 55%
    }
}

@media screen and (max-width: 991px) {
    .bloc-3-img img {
        width: 210px;
        height: 210px;
    }

    .bloc-text-img-2 .gallery:not(.slider),
    .bloc-img-text-2 .gallery:not(.slider),
    .gal-parent {
        width: 50%;
    }

    .bloc-text-img-2 .gallery .img,
    .bloc-img-text-2 .gallery .img,
    .bloc-text-img-2 .gallery.slider,
    .bloc-img-text-2 .gallery.slider {
        width: 100%;
    }

    .bloc-text-img-2 .content,
    .bloc-img-text-2 .content {
        width: 50%;
    }

    .bloc-double-texte .inner .block-left,
    .bloc-double-texte .inner .block-right {
        width: 50%;
        padding: 0px 15px;
    }

    .bloc-sider-img img {
        height: 400px
    }

    .section-3 .container>p,
    .section-6 .container>p,
    .section-2 .container>p {
        width: 100%;
    }

    .flex-equipe .item {
        width: calc(33% - 20px);
        margin: 0px 10px;
        margin-bottom: 70px;
    }

    .flex-equipe {
        margin-top: 50px
    }

    .bloc-img-text .flex .content,
    .bloc-text-img .flex .content {
        width: 55%;
    }

    .bloc-img-text .gallery,
    .bloc-text-img .gallery {
        width: 45%;
        position: relative;
        left: 0;
    }

    .bloc-img-text .flex .content {
        left: 0px;
        padding-left: 55px;
    }

    .bloc-tarifs .content {
        width: 100%;
        left: 0px;
    }

    .bloc-tarifs .medium-title {
        font-size: 20px;
        line-height: 26px;
    }

    .bloc-price-tarif * {
        font-size: 25px;
        line-height: 36px;
    }

    .bloc-tarifs .item>img {
        width: 100%;
        position: relative;
        width: 100%;
        height: 280px;
    }

    .bloc-tarifs .item {
        flex-direction: column
    }

    .bloc-articles .slide li {
        width: calc(50% - 30px);
        height: 408px;
    }

    .bloc-articles .container>.cta-simple {
        position: relative;
        top: 0;
        right: 0;
        float: right;
        right: 50px;
        margin-top: 15px;
    }

    .accordion button .accordion-title {
        display: table
    }

    .bloc-sider-card .slide {
        margin-top: 35px
    }

    .big-title-2 {
        font-size: 28px;
        line-height: 34px;
    }

    .big-title {
        font-size: 33px;
        line-height: 42px;
        font-family: 'Unbounded-Regular';
    }

    .bloc-3-text .bloc {
        width: 33.33%;
        margin: 0px 10px;
        padding: 20px 20px;
    }

    .bloc-3-text .bloc p {
        font-size: 16px
    }

    .breadcrumbs {
        padding: 0px 0px
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .bloc-articles .slide li:nth-of-type(3) {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .flex-equipe .item:nth-child(3n+1) {
        top: 0px
    }

    .flex-equipe .item:nth-child(3n+2) {
        top: 0px
    }

    .flex-equipe {
        flex-direction: column
    }

    .flex-equipe .item {
        width: 100%;
        margin-bottom: 65px;
    }

    .bloc-img-text .flex .content,
    .bloc-text-img .flex .content {
        width: 100%;
        padding-right: 0px;
    }

    .bloc-img-text .gallery,
    .bloc-text-img .gallery {
        width: 100%;
        position: relative;
        left: 0;
        margin-top: 55px
    }

    .bloc-img-text .gallery img,
    .bloc-text-img .gallery img,
    .bloc-text-img-2 .gallery img,
    .bloc-img-text-2 .gallery img,
    .gal-parent {
        height: 300px;
    }

    .bloc-img-text .slick-dots,
    .bloc-text-img .slick-dots,
    .bloc-sider-img .slick-dots {
        bottom: 15px;
    }

    .bloc-img-text .flex .content {
        left: 0px;
        padding-left: 0px;
    }

    #content-vue,
    main,
    .section-2 {
        display: block;
    }

    .slide-02,
    .slide-03,
    .slide-04,
    .slide-01 {
        padding-left: 35px;
        display: block;
        width: 100%;
        position: relative;
    }

    .cta-swipe {
        display: none;
    }

    body {
        display: block;
    }

    /* .slide-01 .slide{
      display: block;
    }
  .slide-01  .container{
    display: block;
  } */
    .snapslider-wrapper {

        display: block;
    }

    .bloc-text-img-2 .content,
    .bloc-img-text-2 .content {
        width: 100%;
        padding: 0px;
        margin-top: 35px;
    }

    .bloc-text-img-2 .gallery:not(.slider),
    .bloc-img-text-2 .gallery:not(.slider),
    .gal-parent {
        width: 80%;
    }

    .triangle-special {
        bottom: -48px;
    }

    .bloc-3-text .flex {
        flex-direction: column
    }

    .bloc-3-text .bloc {
        width: 100%;
        margin: 10px 0px;
        padding: 20px 5px;
    }

    body .bloc-equipe {
        margin-bottom: 0px;
    }

    .bloc-tarifs .content {
        padding-top: 60px;
        padding-left: 25px;
        padding-bottom: 20px;
    }

    .bloc-tarifs .item>img {
        height: 205px;
    }

    .bloc-price-tarif * {
        font-size: 20px;
        line-height: 36px;
    }

    .bloc-price-tarif {

        margin-top: 0px;
    }

    .price-tarifs label {
        margin-left: 10px;
    }

    .price-tarifs {
        top: 10px;
        right: inherit;
        left: 30px;
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
    }

    .bloc-tarifs .group-cta {
        flex-direction: column
    }

    .bloc-tarifs .cta-simple {
        margin-right: 0px;
        margin-bottom: 20px
    }

    .bloc-sider-img img {
        height: 330px
    }

    .bloc-3-img {
        padding: 0px 15px !important
    }

    .flex-equipe .item {
        margin: 0Px;
        margin-bottom: 70px;
    }

    .bloc-double-texte .inner {
        flex-direction: column
    }

    .bloc-double-texte .inner .block-left,
    .bloc-double-texte .inner .block-right {
        width: 100%
    }

    .bloc-double-texte .inner .block-right {
        margin-top: 50px
    }

    .accordion button .accordion-title {
        line-height: 22px;
        padding-bottom: 0px;
        padding-top: 0px;
        font-size: 18px;
        padding-right: 65px;
    }

    .top-single-post * {
        padding-left: 8px;
        padding-right: 8px;
    }

    .accordion button .icon {

        transform: scale(0.65);
    }

}