/*****************
	  +1025px
******************/
@media screen and (min-width: 1025px) {
    /******	  NAV	 ******/
    .nav {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .nav__toggle {
        display: none;
    }
    .nav__list {
        height: 100%;
        display: flex;
        flex-direction: column;
        column-gap: 3rem;
        align-items: flex-end;
    }
    .nav__link {
        height: 100%;
        padding: 0;
        justify-content: initial;
        column-gap: .25rem;
    }
    .nav__link:hover {
        background-color: transparent;
    }

    /******	  NAV DROPDOWNS	 ******/
    .dropdown__item,
    .dropdown__subitem {
        position: relative;
        height: 100%;
    }
    .dropdown__menu,
    .dropdown__submenu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        left: auto;
        top: 6rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s, top .3s;
    }
    .dropdown__link,
    .dropdown__sublink {
        padding-inline: 1rem 3.5rem;
    }
    .dropdown__subitem .dropdown__link {
        padding-inline: 1rem;
    }
    .dropdown__submenu {
        position: absolute;
        right: 100%;
        top: .5rem;
    }
    /* Show dropdown menu */
    .dropdown__item:hover .dropdown__menu {
        opacity: 1;
        top: 6rem;
        pointer-events: initial;
        transition: top .3s;
    }
    /* Show dropdown submenu */
    .dropdown__subitem:hover > .dropdown__submenu {
        opacity: 1;
        top: 0;
        pointer-events: initial;
        transition: top .3s;
    }
}

/*****************
		1120px
******************/
@media (max-width: 1120px) {
    /**** NAV ***/
    .nav__link {
        font-size: 1rem;
    }
}

/*****************
		1024px
******************/
@media (max-width: 1024px) {
    /******	  GENERAL	******/
    h2, .like-h2 {
        font-size: 1.25rem /* 20 */;
        padding-bottom: 20px;
    }
    h3, .like-h3, .adherents_name {
        font-size: 1.25rem /* 20 */;
    }
    .surtitre {
        font-size: 1.125rem;
    }

    .paginationCMS {
        padding: 80px 20px 0;
    }

    /******	  COOKIES	******/
    #termsfeed-com---nb {
        max-width: 100%;
    }

    /******	  NAVIGATION	******/
    header {
        column-gap: 80px;
        padding: 40px 20px;
        grid-template-columns: minmax(0,1fr);
        gap: 40px;
    }
    .header-nav {
        order: 1;
    }
    .header-brand {
        order: 2;
    }
    .nav__data {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }
    .nav {
        width: 100%;
    }
    .nav__logo img {
        max-width: 140px;
    }
    .nav__menu {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top .4s, opacity .3s;
    }
    .nav__menu::-webkit-scrollbar {
        width: 0;
    }
    .nav__list {
        background-color: var(--color-primary);
        overflow: auto;
        height: 100vh;
        padding-top: 80px;
    }
    .nav__link:hover:before,
    .nav__link.active:before{
        left: unset;
        right: -71px;
    }
    .nav__link {
        font-size: 1.25rem;
        font-family: var(--title-font);
        width: fit-content;
        padding: 20px;
    }



    /* Show menu */
    .show-menu {
        opacity: 1;
        top: 0;
        pointer-events: initial;
    }


    /******	  ANIMATION TOGGLE MENU 	******/
    .bar, .bar::before, .bar::after {
        transition: all 0.2s linear;
        position: absolute;
        background: var(--color-white);
        margin: auto;
        width: 100%;
        height: 0.10rem;
        content: '';
        top: 50%;
        left: 0;
        cursor: pointer;
    }
    .bar {
        margin-top: -0.2rem;
    }
    .bar::before {
        top: -0.45rem;
    }
    .bar::after {
        top: 0.45rem;
    }
    .bar::before, .bar::after {
        transform: rotate(0deg);
    }
    .show-icon .bar {
        background: 0;
    }
    .show-icon .bar::before {
        transform: rotate(45deg);
    }
    .show-icon .bar::after {
        transform: rotate(-45deg);
    }
    .show-icon .bar::before, .show-icon .bar::after {
        top: 0;
    }
    .show-icon .bar, .show-icon .bar::before, .show-icon .bar::after {
        transition: all 0.2s linear;
    }


    /******	  ACCUEIL	******/
    /* HERO */
    .slider_top_wrapper {
        height: auto;
    }
    .slider_top_wrapper .splide__slide img {
        object-fit: contain;
    }
    .tiny-cols__content {
        column-gap: 80px;
    }
    .tiny-cols__txt {
        column-gap: 40px;
    }
    .tiny-cols__title {
        padding-bottom: 20px;
    }
    .reviews-content {
        padding: 0 20px;
    }
    .reviews-inner-content {
        padding-top: 80px;
        column-gap: 80px;
    }
    .reviews-inner-img {
        max-width: 50px;
    }
    .reviews-moyenne__star img,
    .slider-reviews__star img {
        width: 18px;
    }
    .slider-reviews__author {
        font-size: 1.125rem;
    }
    .splide .splide__arrow {
        width: 35px !important;
        height: 35px !important;
    }
    .video-wrapper {
        max-height: 400px;
    }
    .slider-reviews__meta {
        margin-top: 20px;
    }


    /******	  ACTUALITES	******/
    .actus_content {
        grid-template-columns: repeat(2, 1fr);
    }

    /*** CONTACT ***/
    .contact_wrapper {
        padding: 80px 20px;
    }

    .contact_content {
        grid-template-columns: minmax(0, 1fr);
        gap: 80px;
    }
    .rs_contact_wrap {
        padding-top: 40px;
    }
    .content_left {
        order: 2;
    }
    .content_right {
        order: 1;
    }

    /*** PAGES DYNAMIQUES ***/
    .wrapper-textChamp {
        padding: 80px 0 0;
    }
    .slider_top_content {
        padding: 0 20px 80px;
    }
    .text_img {
        flex-direction: column;
        row-gap: 40px;
    }
    .text_champ figure img {
        max-height: 400px;
        width: 100%;
        object-fit: contain;
        height: auto;
    }
    .text_champ figure {
        width: 100%;
        order: 1;
        height: 100%;
    }
    .text_champ .texte_pag_dyn {
        width: 100%;
        order: 2;
    }
    .text__wrapper,
    .reviews {
        padding: 0 20px 80px;
    }
    .carousel_wrapper {
        padding: 0 20px 140px;
    }
    .paragraphe_deroulant__wrapper {
        padding: 0 20px;
    }
    .toggleWrapper .toggleTitre {
        padding: 20px;
    }
    .toggleWrapper .toggleTexte {
        padding: 40px 20px;
    }
    .toggleWrapper .toggleTitre {
        font-size: 1.125rem;
    }
    .wrapper__carousel_pageDyn img {
        max-height: 400px;
    }
    .grid-col-4 {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .text__wrapper.text-simple-before-cols {
        padding-bottom: 0;
    }


    /***** FOOTER ******/
    .footer {
        padding: 80px 20px 40px;
    }
    .footer-contact {
        margin-bottom: 80px;
    }
    .footer-contact p {
        font-size: 1rem;
    }
    .scrollToTop,
    #open_preferences_center {
        height: 40px;
        width: 40px;
        background-size: contain;
    }
    #open_preferences_center img {
        width: 20px;
        height: 20px;
    }
    .scrollToTop {
        right: 70px;
    }



    /**** ADHERENTS *****/
    .adherents {
        padding: 80px 20px;
    }
    .adherents_item {
        padding: 20px 0;
        column-gap: 20px;
    }
    .adherents__infos_item a, .adherents__infos_item span, .adherents_contact {
        font-size: 1rem;
    }
    .adherents__numb {
        font-size: 1rem;
    }
    .adherents__infos {
        gap: 10px;
    }

    /******	  ACTUALITES	******/
    .actus_wrapper {
        padding: 80px 20px;
    }
    .actus-year {
        margin-bottom: 80px;
    }
    .actus-row {
        padding-bottom: 40px;
        margin-bottom: 40px;
        gap: 80px;
    }
    .actus-item__title {
        padding: 40px 0 0;
    }
    .actus-item__img img {
        margin-top: 40px;
    }
    .actus-row--double::before {
        bottom: 40px;
    }


    /**** MENTIONS LEGALES ****/
    .mentions_wrapper {
        padding: 80px 20px;
    }
}

/*****************
		930px
******************/
@media (max-width: 930px) {
    /***** PAGES DYNAMIQUES ******/
    .tiny-cols__content {
        flex-direction: column;
        row-gap: 20px;
    }
    .tiny-cols__txt {
        column-count: 1;
    }
    .text_simple .surtitre,
    .text_img .surtitre,
    .text__cols .surtitre {
        padding-bottom: 20px;
    }
    .text_champ .tiny-cols__label {
        padding-bottom: 0;
    }

        /***** AVIS ******/
    .reviews-inner-content {
        flex-direction: column;
        row-gap: 80px;
    }
    .reviews-inner-left {
        order: 2;
        margin: auto;
        text-align: center;
    }
    .reviews-inner-right {
        order: 1;
    }

    /**** ADHERENTS ****/
    .adherents_item {
        grid-template-columns: minmax(0,1fr);
        row-gap: 20px;
    }
    .adherents_img {
        grid-column: 1/2;
    }
    .adherents_img img {
        margin: 0 auto;
        display: block;
        max-height: 250px;
    }
}

/*****************
		900px
******************/
@media (max-width: 900px) {
    /**** ACTUALITES ****/
    .actus-row {
        grid-template-columns: minmax(0,1fr);
        row-gap: 40px;
    }
    .actus-row--double::before {
        display: none;
    }
    .actus-row .actus-item:first-of-type {
        padding-bottom: 40px;
        border-bottom: 1px solid var(--color-mention);
    }
}

/*****************
		815px
******************/
@media (max-width: 815px) {
    /**** PAGES DYNAMIQUES ****/
    .grid-col-3,
    .grid-col-4 {
        grid-template-columns: repeat(1, minmax(0,1fr));
        gap: 40px;
    }
}


/*****************
		665px
******************/
@media (max-width: 665px) {
    /** CONTACT **/
    .contact_wrapper {
        grid-template-columns: 1fr;
    }
}

/*****************
		630px
******************/
@media (max-width: 630px) {
    /***** ACCUEIL *****/
    /*	  CARD SLIDER	 */
    .card-slider__image {
        height: 350px !important;
    }

    /** FOOTER **/
    .footer_bottom_content {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }


    /****** PAGES DYNAMIQUES ******/
    .wrapper__carousel_pageDyn img {
        height: auto;
        max-height: 400px;
        width: 100%;
        object-fit: contain;
    }
}

/*****************
		500px
******************/
@media (max-width: 500px) {
    /***** ADHERENTS ******/
    .adherents_item {
        grid-template-columns: minmax(0,1fr);
        row-gap: 20px;
    }
    .adherents_img {
        grid-column: 1;
    }
    .adherents_img img {
        margin: 0;
    }
}


/*****************
		480px
******************/
@media (max-width: 480px) {
    h2, .like-h2 {
        font-size: 1.25rem;
    }
    h3, .like-h3, .adherents_name {
        font-size: 1.125rem;
    }
    .surtitre {
        font-size: 1.125rem;
    }
    .slider-reviews__author {
        font-size: 1rem;
    }

    .actus-item__img img {
        max-height: 250px;
    }

    .toggleWrapper .toggleTitre {
        padding: 20px;
    }
    .toggleWrapper .toggleTexte {
        padding: 50px 20px;
    }

    .reviews-inner-img {
        max-width: 30px;
    }

    /** CAROUSEL PAGES DYNS **/
    .slick-slider{
        padding:0;
    }

    /** ARCHIVES ACTUS **/
    .archivesActus_right {
        padding: 0 20px;
    }
}

/*****************
		463px
******************/
@media (max-width: 463px) {
    /** CAROUSEL PAGES DYNS **/
    .slick-initialized .slick-slide {
        float: left;
    }
}

/*****************
		400px
******************/
@media (max-width: 400px) {
    /** ACCUEIL **/
    .slider-extended__carousel-wrapper {
        padding: 0 20px;
    }
}

/*****************
		340px
******************/
@media (max-width: 340px) {
    .container {
        margin-inline: 1rem;
    }

    .nav__link {
        padding-inline: 1rem;
    }

    .contact_link_nav {
        padding-inline: 1rem;
    }
}