/*********************************
			 FONTS
*********************************/
@import url("https://use.typekit.net/qpf0ezu.css");


/*********************************
		CLASSES GLOBALES
*********************************/

:root {
    /******	  DEFAULT CONTENT STRUCTURE	******/
    --section-max: 1400px;
    --center: auto;
    --padding : 150px 15px;
    --border-radius : 30px;

    /******	  COULEURS	******/
    --color-text: #000000;
    --color-primary: #282865;
    --color-secondary: #90C9E8;
    --color-mention: #E8F4FF;
    --color-white: #F2F9FE;

    /******	  FONT WEIGHT	******/
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;

    /******	  FONT AND TYPOGRAPHY	******/
    --body-font: "forma-djr-micro", sans-serif;
    --normal-font-size: 1rem;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/******	  STRUCTURE PAGE	******/
html {
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--color-white);
}
body {
    background-size: cover; /* version standardisée */
    font-size: var(--normal-font-size);
    font-family: var(--body-font);
    font-weight: var(--font-regular);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: var(--color-text);
    overflow: hidden;
    content: "1";
    line-height: 1.5;
    background-color: var(--color-white);
}

.tablette, .mobile {
    display: none;
}

/******	  TITRES	******/
h1, h2, h3, h4, .like-h2 {
    padding: 0;
    margin:0;
    line-height: 1.1;
}
h1 {
    position: relative;
    color: var(--color-white);
    font-size:2.813rem /* 45px */;
    margin:auto;
    font-weight: var(--font-medium);
}
h2, .like-h2 {
    font-size: 2.5rem /* 40px */;
    color: var(--color-primary);
    margin: 0;
    font-weight: var(--font-medium);
}
h3 {
    font-size: 1.563rem /* 25px */;
    color: var(--color-primary);
    font-weight: var(--font-bold);
    text-decoration: none;
}

/******	  TEXTES	******/
p, table {
    color: var(--color-text);
    font-size: var(--normal-font-size);
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
a {
    outline: none;
    text-decoration: none;
}
em, i /* pour marquer un texte sur lequel on veut insister */ {
    font-size: var(--normal-font-size);
    text-decoration: none;
    padding: 0;
    color: var(--color-text);
    margin: 0;
    display: inline;
}
strong {
    font-weight: var(--font-semi-bold);
}

/******	  LISTES	******/
ul, ul li {
    list-style-type:none;
    padding: 0;
    margin: 0;
}
#tinymce ul,
#tinymce ul li {
    list-style-type: initial;
    margin: 0 0 0 15px;
}
#tinymce ol,
#tinymce ol li {
    margin: 0 0 0 15px;
}

/******	  IMAGES	******/
img, iframe {
    border: none;
    max-width: 100%;
}
.image_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.background_cover {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background_parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/******	  ANIMATIONS	******/
.effect_hover {
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

/******	  CTA GENERAL	******/
.contact_link_nav .nav__link:hover:after {
    content: "";
    display: none;
}
.btn_cta_general{
    display: block;
    background-color: var(--color-secondary);
    color: var(--color-white);
    height: fit-content;
    padding: 13px 37px;
    border-radius: 50px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    box-shadow : 5px 5px 0 0 var(--color-primary);
    font-weight: var(--font-medium);
    font-size: 1.125rem;
    text-align: center;
    width: fit-content;
    border: none;
    font-family: var(--body-font);
    cursor: pointer;
}
.btn_cta_general:hover{
    transform: translate(5px, 5px);
    box-shadow: none;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    text-decoration: none !important;
}
.btn_cta_general:hover a,
.btn_cta_general:hover p,
.btn_cta_general p:hover,
.btn_cta_general a:hover {
    text-decoration: none !important;
}
.btn_cta_general a,
.btn_cta_general p{
    color: var(--color-white);
    text-decoration: none;
}
.btn_cta_center {
    margin: var(--center);
}


/******	 LIEN PLUS	******/
.link_more {
    font-size: 1.125rem;
    font-weight: var(--font-semi-bold);
    position: relative;
    display: flex;
}
.link_more:after {
    content: url("/design/img/link-more-after.svg");
    display: inline-flex;
    margin-left: 10px;
    align-items: center;
    line-height: 1;
}
.link_more:hover {
    text-decoration: underline;
}


/******	  SLIDERS	******/
.splide__track {
    height: 100%;
}
.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*********************************
		CUSTOM SCROLLBAR
*********************************/

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary) #FFFFFF;
}
/* Chrome, Edge and Safari */
html::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}
html::-webkit-scrollbar-track {
    border-radius: 20px;
    background-color: #FFFFFF;
}
html::-webkit-scrollbar-track:hover {
    background-color: #FFFFFF;
}
html::-webkit-scrollbar-track:active {
    background-color: #FFFFFF;
}
html::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: var(--color-secondary);
}
html::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-secondary);
}
html::-webkit-scrollbar-thumb:active {
    background-color: var(--color-secondary);
}


/*********************************
		    DIVIDER
*********************************/
.divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background-repeat: repeat-x;
    height: 50px;
}


/*********************************
		 SCROLL TO TOP
*********************************/
.scrollToTop {
    display: none;
    overflow: hidden;
    margin: 1%;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background: url("/design/img/nav-arrow-down.svg") no-repeat center center;
    padding:10px;
    cursor: pointer;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10000;
    background-color: var(--color-primary);
    transform: rotate(180deg);
}

/*********************************
		 MESSAGE COOKIES
*********************************/
/* Bouton ACCEPTER */
body .termsfeed-com---palette-light .cc-nb-okagree {
    background-color: var(--color-secondary);
    color: #fff;
    border: none;
}
/* Bouton REFUSER */
body .termsfeed-com---palette-light .cc-nb-reject {
    background-color: var(--color-primary); /* rouge */
    color: #fff;
    border: none;
}
body .termsfeed-com---palette-light .cc-cp-foot-save {
    background-color: var(--color-secondary); /* rouge */
    color: var(--color-white);
    border: none;
}
#open_preferences_center {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--color-secondary); /* bleu par défaut */
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: sans-serif;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0.5; /* moitié visible */
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    white-space: nowrap; /* pas de retour à la ligne */
    user-select: none;
    z-index: 9999;
    line-height: 1;
    height: 55px;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#open_preferences_center:hover,
#open_preferences_center:focus {
    opacity: 1; /* totalement visible au survol */
    transform: translateY(-5px); /* petit effet de levée */
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}


/*********************************
		 BANDEAU MESSAGE
*********************************/
.top_banner {
    color: var(--color-white);
    text-align: center;
    background-color: var(--color-text);
    padding: 10px;
    font-family: var(--body-font);
}

.top_banner p {
    font-weight: var(--font-regular);
    font-size: 0.875rem /* 14px */;
}


/*********************************
		     HEADER
*********************************/
/***** TOP NAV *****/
.top-nav {
    background-color: var(--color-secondary);
    padding: 12px 15px;
}
.top-nav__content {
    max-width: 1630px;
    margin: var(--center);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.top-nav__item a,
.top-nav__item span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--color-white);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.top-nav__item a:hover {
    text-decoration: underline;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

/***** NAV *****/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: 9999;
}

/******	  NAV	 ******/
.nav {
    height: 4rem;
    padding: 0 15px;
}
.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav__logo {
    align-items: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.nav__toggle {
    position: relative;
    width: 22px;
    height: 32px;
}
.nav__logo img {
    max-height: 8.2rem;
    width: auto;
    object-fit: contain;
    transform: rotate(-3deg);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.nav__logo:hover img {
    transform: rotate(0deg);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

/******	  BTN CONTACT NAV	 ******/
.contact_link_nav .nav__link {
    background-color: var(--color-white);
    color: var(--color-primary);
    height: fit-content;
    padding: 13px 37px;
    border-radius: 50px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    box-shadow : 5px 5px 0 0 var(--color-secondary);
}
.contact_link_nav .nav__link:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translate(5px, 5px);
    box-shadow: none;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.contact_link_nav .nav__link:hover:after {
    content: "";
    display: none;
}


/******	  FIRST NAV LINKS	 ******/
.nav__link {
    color: var(--color-white);
    font-weight: var(--font-medium);
    padding: 1.25rem 30px;
    font-size: 1.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    position: relative;
}
.nav__link:hover:after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background-color: var(--color-secondary);
    border-radius: 50px;
    position: absolute;
    bottom: -8px;
}

/******	  DROPDOWN	 ******/
.dropdown__item {
    cursor: pointer;
}
.dropdown__arrow {
    transition: transform .4s;
    margin-left: 5px;
}
.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--color-white);
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-medium);
    font-size: 1rem;
    transition: background-color .3s;
}
.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--color-secondary);
}
.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}
/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
    max-height: 1000px;
    transition: max-height .4s ease-in;
}
/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

/******	  DROPDOWN SUBMENU	 ******/
.nav-more {
    margin-left: auto;
}
.dropdown__sublink {
    background-color: var(--color-primary);
}




/*********************************
            FIL ARIANE
*********************************/
.fil_ariane {
    display: block;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    font-size: 1rem;
    color: var(--color-white);
    text-transform: capitalize;
}
.fil_ariane_content {
    display: inline-block;
    overflow: hidden;
    position: relative;
    padding: 0;
}
.fil_ariane span,
.fil_ariane a,
.fil_ariane p {
    color: var(--color-white);
    text-transform: capitalize;
}
.fil_ariane a:hover {
    color: var(--color-secondary);
}
.fil_ariane .current_retour {
    display:none;
}


/*********************************
		 HEADING SLIDER
*********************************/
#heading-slider {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
#heading-slider .splide__track {
    height: 100%;
}
#heading-slider .splide__slide .caption {
    position: absolute;
    width:100%;
    top:50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding: 18px 30px;
    color:#ffffff;
    text-align: center;
}
.caption_titre{
    font-size: 40px;
    font-family:'Mukta Vaani', sans-serif;
    font-weight: 700;
}
.caption_phrase_accroche{
    font-size:27px;
    font-family:'Mukta Vaani', sans-serif;
    font-style: italic;
    margin-bottom: 50px;
    position:relative;
}
.btn_slider{
    display:inline-block;
    padding: 8px 20px;
    background-color: #a3d8c3;
    font-size: 27px;
    text-transform: uppercase;
    font-weight:700;
}
.btn_slider:hover{
    background-color: #96c6b3;
}
.slide .caption a{
    color:#ffffff;
}

/******	  ARROW	 ******/
.splide__arrow {
    border-radius: unset !important;
}
.splide__arrow svg {
    display: none;
}
.custom-arrow .splide__arrows {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}
.splide .custom-arrow-prev {
    /*left: auto;*/
    /*right: 60px;*/
    background: url("/design/img/prev.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: -1em;
}
.splide .custom-arrow-next {
    background: url("/design/img/next.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    right: -1em;
}
.splide__arrow {
    width: 35px !important;
    height: 35px !important;
}
.custom-arrow {
    transform: unset !important;
    position: unset !important;
}

/******	  ARROW	BOTTOM CENTER ******/
.bottom-center-arrow .splide__arrows {
    left: 50%;
    transform: translateX(-50%);
    bottom: -80px;
}

/******	  ARROW	BOTTOM CENTER ******/
.bottom-center-arrow .splide__arrows {
    left: 50%;
    transform: translateX(-50%);
    bottom: -80px;
}

/******	  ARROW TOP RIGHT	 ******/
.top-right-arrow .splide__arrows {
    right: 15px;
    top: -90px;
}

/******	  ARROW BOTTOM RIGHT	 ******/
.bottom-right-arrow .splide__arrows {
    right: 15px;
    bottom: -80px;
}


/*********************************
		     HOMEPAGE
*********************************/

/******	  HERO	 ******/
.hero_home_wrapper {
    max-height: 1080px;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    position: relative;
}
.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: rgba(40, 40, 101, 0.4);
    width: 100%;
    height: 100%;
}
.hero_home_content {
    max-width: 1630px;
    padding: 0 15px;
    width: 100%;
    position: absolute;
    z-index: 5;
    bottom: 150px;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
    color: var(--color-white);
    column-gap: 30px;
    align-items: flex-end;
}
.hero_home_wrapper .caption {
    display: none;
}
.hero_home_title {
    font-size: 4rem;
    max-width: 800px;
    margin: 0;
    font-weight: var(--font-medium);
    line-height: 1;
}
.hero-home_baseline {
    padding-top: 20px;
    display: block;
    max-width: 640px;
    font-size: 1.563rem;
    line-height: 1.1;
}
.hero_home_arrow {
    position: absolute;
    bottom: -10px;
    left: 600px;
}
.hero_home_wrapper .divider {
    bottom: -10px;
    z-index: 9;
}


/****** REASSURANCES ******/
.reassurances {
    padding: var(--padding);
}
.reassurances-content {
    max-width: var(--section-max);
    margin: var(--center);
}
.reassurances-list {
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    align-items: flex-start;
    gap: 60px;
}
.subtitle {
    padding-top: 5px;
    font-size: 1.563rem;
    color: var(--color-primary);
    line-height: 1.1;
    display: block;
}
.reassurances-sub {
    text-align: center;
    padding-top: 5px;
}
.reassurances-h2 {
    text-align: center;
}
.reassurances-h2 {
    font-weight: var(--font-medium);
    text-align: center;
}
.reassurances-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.reassurances-item__title {
    font-weight: var(--font-medium);
    font-size: 1.25rem;
    color: var(--color-primary);
    padding-top: 25px;
}
.reassurances-item__desc {
    text-align: center;
}



/******	  TYPE PARAGRAPHE 1 : slider titre + icone + texte	 ******/
.quick-access {
    position: relative;
    margin: 0 15px;
    background-color: var(--color-mention);
    padding: var(--padding);
    border-radius: var(--border-radius);
}
.quick-access__container {
    max-width: var(--section-max);
    margin: var(--center);
    position: relative;
}
.quick-access__container:before {
    content: "";
    position: absolute;
    top: -270px;
    width: 207px;
    height: 250px;
    background-image: url("/design/img/babyfoot.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.quick-access__titre {
    text-align: center;
    max-width: 975px;
    margin: var(--center);
}
.quick-access__list {
    max-width: 975px;
    margin: var(--center);
    padding-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
    grid-auto-flow: dense;
}
.quick-access__item {
    position: relative;
    border-radius: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}
.quick-access__link a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
}
.quick-access_overlay {
    background-color: var(--color-primary);
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.quick-access__arrow {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--color-secondary);
    height: 60px;
    width: 60px;
    -webkit-border-top-right-radius: 15px;
    -webkit-border-bottom-left-radius: 15px;
    -moz-border-radius-topright: 15px;
    -moz-border-radius-bottomleft: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.quick-access__title {
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: 30px;
    right: 30px;
    font-weight: var(--font-bold);
    color: var(--color-white);
    font-size: 1.25rem;
}
.quick-access__item:hover .quick-access__arrow {
    display: flex;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.quick-access__item:hover .quick-access_overlay {
    opacity: 0.8;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.quick-access__item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 2;
}
.quick-access__item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 2;
}
.quick-access__item:last-of-type {
    grid-column: span 1.3;
    grid-row: span 1;
}
.quick-access__container:after {
    right: 50px;
    position: absolute;
    content: "";
    bottom: -270px;
    width: 180px;
    height: 348px;
    background-image: url("/design/img/ballon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


/******	  AVIS	 ******/
.card-slider {
    padding: var(--padding);
}
.card-slider__container {
    max-width: var(--section-max);
    margin: var(--center);
}
.card-slider__titre {
    text-align: center;
}
#card-slider {
    margin: 65px 0;
}
.card-slider__item {
    padding: 50px 30px;
    background-color: #fff;
    border-radius: var(--border-radius);
    min-height: 360px;
    max-height: 360px;
    display: flex;
    flex-direction: column;
}
.card-slider__star {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}
.card-slider__item img {
    width: auto;
    height: auto;
}
.card-slider__desc {
    margin: 35px 0 50px;
    max-height: 140px;
    overflow: auto;
}
.card-slider__name {
    font-weight: var(--font-bold);
    font-size: 1.125rem;
    color: var(--color-primary);
    display: block;
    margin-top: auto;
}





/*********************************
		     FOOTER
*********************************/

footer .divider {
    top: -40px;
}

/******	  PARTIE SUPERIEURE	 ******/
.footer_top_wrapper {
    position: relative;
    background-color: var(--color-primary);
    padding: 80px 15px;
}
.footer_top_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
}
.footer_links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    column-gap: 80px;
}
footer,
footer a,
footer span,
footer p {
    color: var(--color-white);
}
footer a:hover {
    color: var(--color-secondary);
}
footer ul {
    margin: 0;
}
footer li {
    display: flex;
    align-items: center;
}
footer .toggleTitre {
    color: var(--color-secondary);
    font-weight: var(--font-bold);
    font-size: 1.25rem;
    margin-bottom: 20px;
}
footer .toggleTitre {
    pointer-events: none;
}
footer .toggleTexte {
    margin-top: 20px;
}
footer .footer_contact .toggleTexte li {
    padding-bottom: 10px;
}
.footer_toggle_picto {
    margin-right: 15px;
    width: 25px;
    height: auto;
    object-fit: contain;
}
.footer_rs {
    margin-top: 15px;
}
.footer_rs .toggleTexte {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;

}

/******	  PARTIE INFERIEURE	 ******/
.footer_bottom_wrapper {
    border-top: 1px solid var(--color-secondary);
    background-color: var(--color-primary);
    padding: 15px;
}
.footer_bottom_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;

    max-width: var(--section-max);
    margin: var(--center);
}
.footer_bottom {
    color: var(--color-secondary);
    font-size: 0.813rem;
}
.footer_bottom a {
    color: var(--color-secondary);
}
.footer_bottom a:hover {
    color: var(--color-white);
}


/*********************************
		    ACTUALITES
*********************************/
.actus_wrapper {
    padding: var(--padding);
}
.actus_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: flex-start;
}
.actus_content .page-news__item {
    height: 100%;
}
body .actus_content .page-news__img {
    height: 270px;
}
.no-result {
    max-width: var(--section-max);
    margin: var(--center);
}
.page-news__cat {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 4;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-weight: var(--font-medium);
    font-size: 0.815rem;
    border-radius: 50px;
    padding: 7px 14px;
}


/*********************************
		   UNE ACTUALITE
*********************************/
.uneActu_wrapper {
    max-width: var(--section-max);
    padding: 0 30px 180px;
    margin: var(--center);
}
.uneActu_img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    padding-bottom: 80px;
}

/****** ARCHIVES ******/
#archivesWrapper {
    margin: 0;
    border-radius: unset;
    position: relative;
}
#archivesWrapper .divider {
    top: -40px;
}
#archivesWrapper .page-news__content:after {
    display: none;
}


/*********************************
		    PAGINATION
*********************************/
.paginationCMS{
    text-align: center;
    padding: 0 30px 100px;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.paginationCMS a, .paginationCMS span{
    margin: 10px;
    font-size:1rem;
    color: var(--color-primary);
}
.paginationCMS .pageCourante{
    font-weight: var(--font-medium);
    padding: 5px 18px;
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    width: 15px;
    border-radius: var(--border-radius);
    display: flex;
    text-align: center;
    justify-content: center;
}


/*********************************
		 PAGES DYNAMIQUES
*********************************/

/******	  HERO	 ******/
.slider_top_wrapper {
    max-height: 565px;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    position: relative;
}
.slider_top_wrapper .divider {
    bottom: -10px;
    z-index: 9;
}
.slider_top_content {
    padding: 0 15px;
    position: absolute;
    z-index: 5;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    text-align: center;
    width: 100%;
}
.slider_top_titles_wrapper {
    max-width: 800px;
    width: 100%;
    margin: var(--center);
}
.slider_top_wrapper .caption {
    display: none;
}


/******	  PARAGRAPHES	 ******/
.page_dynamique_content {
    display: block;
    margin: var(--center);
    padding: 0;
    width: auto;
    position: relative;
    box-sizing: border-box;
}

/******	  PARAGRAPHES	 ******/
.wrapper-textChamp {
    padding: 150px 0 0;
    display: flex;
    flex-direction: column;
}
.text_champ ul,
.text_champ ul li {
    font-size: var(--normal-font-size);
    position:relative;
    padding-left:20px;
    list-style-type:initial;
}
.text_champ p strong,
.text_champ p strong a {
    font-weight: var(--font-bold);
}
.text_champ img.imgTinyMceGauche, #tinymce img.imgTinyMceGauche{
    float: left;
    margin-right: 15px;
}
.text_champ img.imgTinyMceDroite, #tinymce img.imgTinyMceDroite{
    float: right;
    margin-left: 15px;
}


/*	  PARAGRAPHES DEROULANTS	*/
.paragraphe_deroulant__wrapper {
    padding: 0 30px;
}
.paragraphe_deroulant {
    max-width: var(--section-max);
    margin: var(--center);
    width: 100%;
    margin-bottom: 20px;
}
.toggleWrapper .toggleTitre {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 50px;
    font-weight: var(--font-bold);
    font-size: 1.125rem;
    color: var(--color-primary);
    background-color: transparent;
    border: 1px solid var(--color-primary);
    border-radius: 15px;
    line-height: 1;
}
.toggleWrapper .toggleTitre:after {
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    content: url("/design/img/nav-arrow-down-blue.svg");
    display: flex;
    align-items: center;
}
.toggleWrapper .toggleTitre.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.toggleWrapper .toggleTitre.active:after {
    content: url("/design/img/nav-arrow-down.svg");
    transform: rotate(180deg);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.toggleWrapper .toggleTexte {
    padding: 30px 50px;
    background-color: var(--color-white);
}
.toggleWrapper .toggleTexte .text_champ {
    padding: 0;
}

/*	  TEXTE SIMPLE	*/
.text__wrapper {
    padding: 0 15px 150px;
}
.text_simple {
    max-width: var(--section-max);
    width: 100%;
    margin: var(--center);
}

/*	  TEXTE + IMAGES	*/
.text_img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--section-max);
    margin: var(--center);
}
.text_champ .texte_pag_dyn,
.text_champ figure {
    display: inline-block;
}
.text_champ .texte_pag_dyn {
    width: 50%;
}
.text_champ figure {
    width: 40%;
}
.text_champ figure a {
    display: block;
}
.text_champ figure img {
    width: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
}
.image_droite {
    margin: 0 0 0 20px;
}
.image_gauche {
    margin: 0 20px 0 0;
}
.text_champ img.imgTinyMceGauche, #tinymce img.imgTinyMceGauche{
    float: left;
    margin-right: 15px;
}
.text_champ img.imgTinyMceDroite, #tinymce img.imgTinyMceDroite{
    float: right;
    margin-left: 15px;
}


/******	  CAROUSEL	 ******/
.carousel_wrapper {
    padding: 0 15px 150px;
}
.carousel_content {
    max-width: var(--section-max);
    margin: var(--center);
}
.splide__pagination {
    bottom: -3em !important;
    left: unset !important;
}
.splide__pagination__page {
    background: var(--color-secondary) !important;
    width: 15px !important;
    border-radius: 50px !important;
    height: 6px !important;
}
.splide__pagination__page.is-active {
    background: var(--color-primary) !important;
    width: 50px !important;
    transform: scale(1.1) !important;
}
.wrapper__carousel_pageDyn img {
    height: 400px;
    border-radius: var(--border-radius);
}



/******	  LIENS UTILES	 ******/
.link__wrapper {
    padding: var(--padding);
}
.link__content {
    max-width: var(--section-max);
    margin: var(--center);
}
.link_blocs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: flex-start;
    column-gap: 50px;
}
.link_bloc {
    border-radius: var(--border-radius);
    box-shadow: 9px 9px 99px #cccccc;
    padding: 30px;
}
.link_bloc .link-bloc-titre {
    text-align: center;
    font-weight: var(--font-semi-bold);
    font-size: 1.25rem;
    color: var(--color-text);
    display: block;
}
.link_bloc_container {
    padding-top: 10px;
}
.link_bloc_link {
    position: relative;
}
.link_bloc_link a {
    border-bottom: 1px solid #cccccc;
    padding: 10px 0;
    position: relative;
    width: 100%;
    display: block;
}
.link_bloc_link:after {
    content: url("/design/img/link-row.svg");
    position: absolute;
    right: 0;
    width: auto;
    top: 50%;
    transform: translateY(-50%);
}


/******	  ACTUALITES PAGES DYNS	 ******/
.page-news {
    padding: var(--padding);
    background-color: var(--color-mention);
    border-radius: var(--border-radius);
    margin: 0 15px 150px;
}
.page-news__content {
    max-width: var(--section-max);
    margin: var(--center);
    position: relative;
}
.page-news__content:after {
    right: 0;
    position: absolute;
    content: "";
    bottom: -250px;
    width: 180px;
    height: 180px;
    background-image: url("/design/img/babyfoot.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.page-news__titre {
    max-width: 770px;
    margin: var(--center);
    text-align: center;
}
#page-news__slider {
    margin: 65px 0;
}
.page-news__item {
    background-color: #fff;
    padding: 20px 20px 35px;
    border-radius: var(--border-radius);
}
.page-news__item a {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
}
.page-news__item:hover .btn_cta_secondary {
    background-color: var(--color-primary);
    color: var(--color-white);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
body .page-news__img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.page-news__h3 {
    padding: 25px 0 30px;
    text-align: center;
    font-size: 1.125rem;
}
.btn_cta_secondary {
    border: 1px solid var(--color-primary);
    font-weight: var(--font-medium);
    font-size: 1rem;
    color: var(--color-primary);
    background-color: transparent;
    border-radius: 50px;
    padding:  10px 20px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    display: block;
    width: fit-content;
    margin: auto auto 0;
}
.btn_cta_secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}





/*********************************
            CONTACT
*********************************/
.contact_wrapper {
    padding: var(--padding);
}
.contact_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: minmax(0,2fr) minmax(0,1fr);
    align-items: flex-start;
    gap: 50px;
}
.texte_accroche{
    font-size: var(--normal-font-size);
    box-sizing: border-box;
}

/******	  FORMULAIRE	******/
#formulaire {
    margin: 0 auto 30px;
}
#creation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: flex-start;
    column-gap: 20px;
    background-color: #fff;
    padding: 50px 30px;
    border-radius: var(--border-radius);
}
.champs_obligatoires{
    margin-top: 30px;
}
.content-formDemande {
    margin-top: 50px;
}
.two_cols {
    grid-column: 1/3;
}

/* CHAMPS FORMULAIRE */
textarea {
    resize: none;
}
.form-group{
    padding: 10px 0;
    margin-bottom: 25px;
}
.form-label {
    font-size: 1rem;
    color: var(--color-primary);
    font-family: var(--body-font);
    font-weight: var(--font-bold);
    margin: 0 0 10px 0;
    display: block;
    opacity: 1;
    -webkit-transition: .333s ease top, .333s ease opacity;
    transition: .333s ease top, .333s ease opacity;
}
.form-control {
    display: block;
    width: 100%;
    padding: 20px 8px;
    font-size: 1rem;
    box-sizing: border-box;
    line-height: 1.4;
    color: var(--color-text);
    background-color: #fff;
    background-image: none;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    border-radius: 0;
    border-color: var(--color-mention);
    border-width: 0 0 3px 0;
    border-style: none none solid none;
    box-shadow: none;
    font-family: var(--body-font);
}
.form-control:focus,
input.filled,
textarea.filled {
    box-shadow: none;
    border-color: var(--color-secondary);
}
.js-hide-label {
    opacity: 0;
}
.js-unhighlight-label {
    color: var(--color-text);
    font-family: var(--body-font);
}
::-webkit-input-placeholder {
    color: var(--color-text);
    opacity: 1;
    font-family: var(--body-font);
}
:-moz-placeholder { /* Firefox 18- */
    color: var(--color-text);
    opacity: 1;
    font-family: var(--body-font);
}
::-moz-placeholder {  /* Firefox 19+ */
    color: var(--color-text);
    opacity: 1;
    font-family: var(--body-font);
}
:-ms-input-placeholder {
    color: var(--color-text);
    opacity: 1;
    font-family: var(--body-font);
}
textarea {
    resize: none;
    min-height:160px;
}
.texte_ok_contact{
    background-color: var(--color-primary);
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    color: var(--color-white);
    padding: 20px;
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: var(--font-bold);
    margin-top: 20px;
}

.datetime {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
}

/* CUSTOM SELECT */
.custom-select {
    position: relative;
    width: 100%;
    padding: 0;
    cursor: pointer;
}
/* Flèche */
.custom-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 5px;
    height: 5px;
    border-right: 2px solid var(--color-text);
    border-bottom: 2px solid var(--color-text);
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    transition: transform 0.2s ease;
}
.selected {
    padding: 20px 8px;
    cursor: pointer;
}
.options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid rgba(0, 0, 0, 0.62);
    background: #fff;
    display: none;
    z-index: 10;
}
.custom-select.open .options {
    display: block;
    max-height: 200px;
    overflow: auto;
}
.options label {
    display: block;
    padding: 4px 10px;
    cursor: pointer;
}
.options label:hover {
    background-color: royalblue;
    color: var(--color-white);
}
select option {
    background: #fff;
}
.options input {
    margin-right: 5px;
}
.option-group-title {
    font-weight: var(--font-bold);
    color: var(--color-secondary);
    font-size: 1rem;
    padding: 5px;
}
.select-search{
    max-width: 99%;
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid var(--color-mention);
    font-size: 0.950rem;
    font-style: italic;
}


    /* BTNS FORMULAIRE */
.wrapper-btnForm {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/******	  COORDONNEES	******/
.map {
    height: 400px;
    width: 100%;
    margin-bottom: 30px;
}
.map iframe{
    width:100%;
    height: 100%;
    border-radius: var(--border-radius);
}
.titleContact {
    display: block;
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: var(--font-bold);
}
.textContact {
    margin-top: 15px;
}
.textContact a {
    color: var(--color-text);
    transition: 0.5s;
}
.textContact a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
    transition: 0.5s;
}
.textContact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.textContact li img {
    margin-right: 10px;
}
.contactRs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.rs_contact_wrap {
    padding-top: 30px;
}


/*********************************
		 MENTIONS LEGALES
*********************************/
.mentions_wrapper {
    padding: var(--padding);
}
.mentions_content {
    max-width: var(--section-max);
    margin: var(--center);
}


/*********************************
		 PLAN DU SITE
*********************************/
.plan_site_wrapper {
    padding: var(--padding);
}
.plan_site_content {
    max-width: var(--section-max);
    margin: var(--center);
    text-align: center;
}
.plan_titre {
    font-size: 1.25rem;
    font-weight: var(--font-bold);
    color: var(--color-primary);
    padding-top: 40px;
    padding-bottom: 5px;
}
.plan_titre:first-of-type {
    padding-top: 0;
}
.plan_site_content a {
    color: var(--color-text);
}
.plan_site_content a:hover {
    color: var(--color-secondary);
}

/*********************************
		    ANIMATIONS
*********************************/
.animations_wrapper {
    padding: var(--padding);
}
.animations-title {
    max-width: var(--section-max);
    margin: var(--center);
    text-align: center;
    padding-bottom: 60px;
}
.animations_content {
    max-width: var(--section-max);
    margin: var(--center);
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 15px;
    align-items: flex-start;
}
.animations_content .page-news__item {
    height: 100%;
}
body .animation__item .page-news__img {
    height: 200px;
}
.animation__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.animation__item:hover {
    transform: translateZ(0) scale(1.03) !important;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.animation__item a {
    display: unset;
    width: unset;
    height: unset;
}
.animation__promo {
    position: absolute;
    top: 35px;
    left: 35px;
    z-index: 4;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-weight: var(--font-medium);
    font-size: 0.815rem;
    border-radius: 50px;
    padding: 7px 14px;
}
.animation__item .page-news__h3 {
    font-size: 1.25rem;
    padding: 25px 0 5px;
}
.animation__prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding-bottom: 20px;
}
.animation__newPrice {
    font-weight: var(--font-medium);
    color: var(--color-secondary);
    font-size: 1.125rem;
}
.animation__oldPrice {
    text-decoration: line-through;
    color: rgba(144, 201, 232, 0.55);
}
.animation__item:hover .btn_cta_secondary {
    background-color: transparent;
    color: var(--color-primary);
}
.animation__item .btn_cta_secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}
/* DESCRIPTION */
.animations-desc {
    padding: 0 15px 150px;
}
.animations-desc__content {
    max-width: var(--section-max);
    margin: var(--center);
}
/* GARANTIES */
.garanties {
    background-color: var(--color-mention);
    position: relative;
    padding: var(--padding);
}
.garanties .divider {
    top: -40px;
}
.garanties_wrapper {
    max-width: var(--section-max);
    margin: var(--center);
}
.garanties_titres {
    text-align: center;
}
.garanties_list {
    padding: 65px 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    align-items: flex-start;
    gap: 60px;
}
.garantie-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.garantie-item__img-wrapper,
.reassurances-item__img-wrapper {
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.garantie-item__titre {
    color: var(--color-primary);
    display: block;
    text-align: center;
    padding: 25px 0 7px;
    font-weight: var(--font-medium);
}
.garantie-item__desc {
    text-align: center;
}

/*********************************
		    ANIMATION
*********************************/
/******	  HERO 	 ******/
.animation-hero {
    padding: 250px 15px 150px;
}
.animation-hero__content {
    max-width: var(--section-max);
    margin: var(--center);
}
/* Bouton retour */
.animation-hero__back {
    font-size: 1.125rem;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--color-primary);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    color: var(--color-primary);
}
.animation-hero__back:hover {
    padding-bottom: 5px;
}
/* Slider */
.animation-hero__product {
    padding-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: flex-start;
    column-gap: 100px;
}
#animation-hero__main-carousel img {
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
}
#animation-hero__thumbnail-carousel {
    margin-top: 25px;
}
#animation-hero__thumbnail-carousel .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
#animation-hero__thumbnail-carousel .splide__slide {
    opacity: 0.6;
    border: none !important;
}
#animation-hero__thumbnail-carousel.splide__slide.is-active {
    opacity: 1;
}
/* Présentation produit */
.animation-hero__prices {
    display: flex;
    justify-content: flex-start;
    gap: 7px;
    align-items: flex-end;
}
.animation-hero__newPrice {
    color: var(--color-secondary);
    font-weight: var(--font-medium);
    font-size: 1.875rem;
}
.animation-hero__oldPrice {
    color: rgba(144, 201, 232, 0.6);
    font-size: 1.125rem;
}
.animation-hero__mention {
    font-weight: var(--font-medium);
    display: block;
    padding-top: 5px;
}
.animation-hero__intro {
    padding: 40px 0;
}
.animation-hero__options {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}
.animation-hero__option {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 33%;
    width: 100%;
    position: relative;
    justify-content: center;
}
.animation-hero__option_label {
    font-weight: var(--font-bold);
    color: var(--color-primary);
    font-size: 1.125rem;
    display: block;
    text-align: center;
    padding-top: 5px;
    line-height: 1.1;
}
.animation-hero__option_label small {
    font-weight: var(--font-regular);
}
.animation-hero__option_check {
    position: absolute;
    top: -5px;
    left: -5px;
}
/* Bouton devis & contact */
.animation-hero__btn {
    margin-top: 65px;
}
.animation-hero__contact {
    text-align: center;
    display: block;
    margin: var(--center);
    padding-top: 20px;
    font-weight: var(--font-medium);
}
.animation-hero__contact a {
    text-decoration: underline;
    color: var(--color-text);
}
.animation-hero__contact a:hover {
    color: var(--color-secondary);
}
/******	  INFOS PRODUIT	 ******/
.infos_product__wrapper {
    padding: 0 15px 150px;
}
.infos_product__content {
    max-width: var(--section-max);
    margin: var(--center);
}
.infos_product__navs {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}
.infos_product__nav {
    background-color: var(--color-mention);
    border-radius: 15px;
    min-width: 200px;
}
.infos_product__nav a {
    padding: 23px 27px;
    display: block;
    color: var(--color-primary);
    font-weight: var(--font-bold);
    text-align: center;
    font-size: 1.125rem;
}
.infos_product__txt,
.infos_product__carac,
.infos_product__video {
    background-color: #fff;
    border-radius: var(--border-radius);
    margin-top: 15px;
    padding: 50px;
}
.infos_product__nav.active {
    background-color: var(--color-primary);
}
.infos_product__nav.active a {
    color: var(--color-white);
}
.infos_product__oneCarac {
    border-bottom: 1px solid var(--color-primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 80px;
    padding: 20px 0;
}
.infos_product_caracTitre {
    max-width: 250px;
    width: 100%;
}
.infos_product_caracTitre span {
    font-weight: var(--font-bold);
    color: var(--color-primary);
    font-size: 1.125rem;
}
.infos_product__cta {
    margin-top: 50px;
}
.iframe-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* ratio 16:9 */
    position: relative;
}
.iframe-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 15px;
}
/******	  ARCHIVES PRODUITS	 ******/
#animationArchives {
    margin: 0;
    border-radius: 0;
    position: relative;
    background-color: var(--color-white);
    padding: 0 15px 150px;
}
#animationArchives .page-news__content:after {
    display: none;
}