/*
Theme Name: GP Developer Child Theme
Template: generatepress
Theme URI: https://generatepress.com
Author: Alexis Bricard
Author URI: https://k-lya.fr
Version: 1.0
*/
/*



/* ==========================================
              RESET CSS
==============================================*/


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    /* margin: 0; */
    padding: 0;
    border: 0;
    outline: 0;
    /* font-size: 100%; */
    vertical-align: baseline;
    background: transparent;
}

.single-commerce ol,
.single-commerce ul,
.single-bureau ol,
.single-bureau ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

b,
strong {
    font-weight: 600;
}


/* ==========================================

/* =============================================================
=============================================================

                        Menu 

=============================================================
=============================================================*/

/* menu hover */
#primary-menu li a:hover:not(.contact-menu a:hover, .sub-menu li a:hover) {
    text-decoration: underline var(--neon-green);
    text-decoration-thickness: 3px;

}

/* logo */
.navigation-branding {
    width: 13%;
}

.sf-menu li a {
    line-height: 24px !important;
}

.main-navigation .main-nav ul li[class*="current-menu-"]>a:hover {
    color: #263737;
}


@media screen and (min-width: 1024px) and (max-width: 1200px) {

    .main-navigation .main-nav ul li a {
        padding-left: 14px;
        padding-right: 14px;

    }
}


/* =========================================
              menu mobile
  =========================================*/

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

    .mobile-menu-control-wrapper .menu-toggle,
    .mobile-menu-control-wrapper .menu-toggle:hover {
        background-color: rgba(0, 0, 0, 0) !important;
        transform: translateY(-2px);
    }

    .navigation-branding,
    .site-logo.mobile-header-logo {

        z-index: 99999999;

    }

    .inside-navigation.grid-container.grid-parent {
        overflow: hidden;



    }

    nav#generate-slideout-menu {
        height: 100vh;
        background-color: var(--beige);

    }

    .menu-toggle {
        font-size: 32px !important;
        color: var(--dark-blue-dark-text) !important;
        padding: 0 !important;
    }

    .slideout-navigation.do-overlay .slideout-exit {

        width: 100% !important;
        text-align: right !important;
        margin-right: -1.2em !important;
        /* margin-top: -0.75em !important; */

    }


    .slideout-navigation.do-overlay .slideout-exit {

        font-size: 32px !important;
        color: var(--dark-blue-dark-text) !important;
        padding: 0 !important;

    }



    .navigation-branding {
        width: 30%;
    }

    .main-navigation.slideout-navigation .main-nav>ul>li>a {
        line-height: 75px !important;
    }

    #site-navigation .navigation-branding {
        margin-left: 30px !important;
    }
}

@media screen and (max-width: 375px) {
    .menu-toggle {
        padding: 0 !important;
    }
}





/* ==========================================
=! ANIMATION
------------------------------------------ */

/* --- do all the preload stuff --- */

.preload * {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    animation: none !important;
}

.has-js .prep-animation,
.has-js .prep-scroll-animation {
    visibility: hidden;
}

.has-js .do-animation,
.has-js .do-scroll-animation {
    visibility: visible;
}


/* ----------------------------------------------
 * Generated by Animista
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

.fade-in-left {
    -webkit-animation: fade-in-left 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-left 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.fade-in {
    -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.fade-in-top {
    -webkit-animation: fade-in-top 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-top 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.fade-in-bottom {
    -webkit-animation: fade-in-bottom 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-bottom 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.fade-in-right {
    -webkit-animation: fade-in-right 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-right 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}



/* --- animation fade-in-left --- */
@-webkit-keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-75px);
        transform: translateX(-75px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-75px);
        transform: translateX(-75px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

/* --- animation fade-in --- */
@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* --- animation fade-in-bottom --- */
@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(75px);
        transform: translateY(75px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(75px);
        transform: translateY(75px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

/* --- animation fade-in-top --- */
@-webkit-keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

/* --- animation fade-in-right --- */
@-webkit-keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(75px);
        transform: translateX(75px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(75px);
        transform: translateX(75px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

/**
 * ----------------------------------------

/* --- delay classes --- */
.delay-250 {
    -webkit-animation-delay: 250ms;
    animation-delay: 250ms;
}

.delay-500 {
    -webkit-animation-delay: 500ms;
    animation-delay: 500ms;
}

.delay-750 {
    -webkit-animation-delay: 750ms;
    animation-delay: 750ms;
}

.delay-1000 {
    -webkit-animation-delay: 1000ms;
    animation-delay: 1000ms;
}

.delay-1250 {
    -webkit-animation-delay: 1250ms;
    animation-delay: 1250ms;
}

.delay-1500 {
    -webkit-animation-delay: 1500ms;
    animation-delay: 1500ms;
}


/* =========================== */


.inside-header.grid-container {
    background-color: var(--beige);
    max-width: 1394px;
    border-radius: 0px 0px 30px 30px;
    z-index: 999;
    position: relative;
}

@media (max-width: 768px) {
    .inside-header {
        padding-right: 10px;
        padding-left: 10px;
    }

}


/* ==========================================
            FOOTER
==========================================*/

/* ==========================================
           MENU
==========================================*/
@font-face {
    font-family: "ivypresto-display", serif;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "ivypresto-display", serif;
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "ivypresto-display", serif;
    font-weight: 700;
    font-style: normal;
}


/* ---------------- */



@media (min-width: 1025px) {
    .inside-navigation {
        position: static !important;
    }

    /* --------------------------- */
    /* menu */

    /* submenu  */
    .menu-item-sub-menu {
        position: static !important;

    }

    .menu-item-sub-menu>ul {
        width: 100% !important;
        left: 0 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        padding-top: 28px;
    }

    /* hover submenu */
    /* .underline-submenu {
        position: relative;
    }

    .underline-submenu:hover {

        background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/11/underline-menu.png);
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: 100%;
        padding-bottom: 0.2em;

    } */



    .sub-menu li {
        width: 20% !important;
        padding-left: 39px !important;
    }

    .sub-menu li:nth-child(4) {
        width: 26% !important;
    }

    /* Commerce / agencement boutiques */
    .sub-menu li a {
        padding: 0 !important;
    }



    .menu-sectors a {
        display: flex !important;
        flex-direction: row !important;
        padding: 0 !important;

    }


    .sub-menu li {
        width: 22% !important;

    }

    .menu-sectors div {
        width: 80%;

    }

    /* background submenu */

    .site-logo {
        z-index: 100000;
    }

    .menu-item-has-children .sub-menu:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 40px;
        background-color: var(--beige);
        border-radius: 0 0 40px 40px;

    }
}






.title-submenu {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.subtitle-submenu {
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 50px;
}


/* metier de bouche */
.sub-menu li:nth-child(2) .menu-sectors svg {
    /* width: 27%; */
    width: 52.998px;
    height: 47.002px;
    position: relative;
    left: -0.2em;
    margin-right: 12px;
}

/* textile */
.sub-menu li:nth-child(3) .menu-sectors svg {
    width: 42.992px;
    height: 46.996px;
    position: relative;
    left: -0.2em;
    margin-right: 12px;
}

/* bien-être */
.sub-menu li:nth-child(4) .menu-sectors svg {
    width: 45.998px;
    height: 45.998px;
    position: relative;
    left: -0.2em;
    margin-right: 12px;
}

/* secteurs */
.sub-menu li:nth-child(1) {
    width: 100% !important;
    font-family: ivypresto-display !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding-top: 35px;
}

.sub-menu li:nth-child(1) a {
    font-family: ivypresto-display !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding-bottom: 15px !important;

}

/* button contact menu */

.contact-menu {
    margin: 0 15px;
    border-radius: 100px;
    font-weight: 500;
    border: 1px solid var(--green);
    z-index: 99999999;
}

.contact-menu a {
    font-weight: 500;
    padding: 9px 32px !important;
}

.contact-menu:hover {
    background-color: var(--green);
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.contact-menu:hover a {

    color: var(--white) !important;
}



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

    .main-navigation.slideout-navigation .main-nav>ul>.contact-menu a {
        line-height: 30px !important;
    }

    .contact-menu {
        background-color: var(--green);


    }

    .contact-menu a {

        color: var(--white) !important;
    }


}


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

    /* logo */

    .site-logo {

        max-width: 60% !important;
    }

    .inside-header {
        padding-right: 20px;
        padding-left: 20px;
    }


    /* submenu */
    /* changement couleur submenu */
    .main-navigation ul ul {
        background-color: var(--beige);
    }

    /* suppresion padding margin */
    .main-navigation .main-nav ul ul li a {

        padding: 0 20px;

    }

    .subtitle-submenu {

        margin-bottom: 0;
    }

    /* margin bottom last child */
    .menu-item-sub-menu>ul li:last-child .subtitle-submenu {
        margin-bottom: 35px;
    }

    /* suppression margin svg */
    .sub-menu li:nth-child(2) .menu-sectors svg,
    .sub-menu li:nth-child(3) .menu-sectors svg,
    .sub-menu li:nth-child(4) .menu-sectors svg {
        left: 0;
        margin-right: 0;
    }
}

/* --------------------------------------- */
/* search modal design */

.gp-modal .gp-modal__overlay {
    backdrop-filter: none;
    padding-top: 92px;
    z-index: 9;
}

.gp-modal__container {
    background-color: var(--white);
}

:root {
    --gp-search-modal-overlay-bg-color: none;
}

.gp-modal .gp-modal__container {
    padding: 50px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    max-width: 1394px;
    transition: none;
    margin-top: -3px;
}

.search-modal-form .search-field,
.search-modal-form :is(.search-field, .search-field:focus) {
    border-bottom: 1px solid;
}

/* text */

.search-modal-form .search-field,
.search-modal-form :is(.search-field, .search-field:focus) {
    border-bottom: 0 !important;
}

input[type=search] {
    padding: 0;
}

.search-modal-fields {
    border-bottom: 1px solid;
}

input.search-field {
    color: var(--dark-blue-dark-text);
    font-family: "ivypresto-display", serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}


/* button search */

.span.gp-icon.icon-search .gp-icon svg {
    fill: var(--dark-blue-dark-text);

}

/* icon search in modal */
.search-modal-fields span.gp-icon.icon-search svg {
    height: 22px !important;
    width: 22px !important;
    transform: translateY(2px);
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    -ms-transform: translateY(2px);
    -o-transform: translateY(2px);
}


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

    /* icon search in modal */
    .search-modal-fields span.gp-icon.icon-search svg {
        transform: translateY(2px);
        -webkit-transform: translateY(2px);
        -moz-transform: translateY(2px);
        -ms-transform: translateY(2px);
        -o-transform: translateY(2px);
    }
}


.search-modal-fields button,
.search-modal-fields button:active,
.search-modal-fields button:focus,
.search-modal-fields button:hover {
    padding: 0 !important;
    width: 25px;
    margin-top: 5.5px;
}



/* ------------------------------ */



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

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

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


/* ----------------------*/



/* ----------------------
      Section
-----------------------*/

/* Responsive */

/* ----------------------*/






/* ==========================================
        correction bug
==========================================*/


/* bug aos scroll */
.site.grid-container.container {
    /* overflow-x: hidden; */
}

/* ==========================================
==========================================*/



/* ==========================================
      Optimisations de la performance
==========================================*/
/* ------------------------

------------------------ */
img[width][height] {
    content-visibility: auto;
}

.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 300px;
}

/* ==========================================
==========================================*/



/* ==========================================
      Template article
==========================================*/


/* hero article */
.hero-article:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(45, 53, 56, 0.60) 0%, rgba(45, 53, 56, 0.00) 100%);
}

.hero-article h1 {
    position: relative;
    z-index: 9;
}

.p-date-article:before {
    content: "Date : ";
    text-decoration: underline;
}

.single-commerce .read-time span,
.single-bureau .read-time span,
.single-commerce .read-time,
.single-bureau .read-time {
    /* font-weight: 700; */
    color: var(--white);
}

.single-commerce .read-time span,
.single-bureau .read-time span {
    text-decoration: underline;
}

/* TOC */

.kb-table-of-content-list li {
    list-style: none;
}

/* partage rs */

a.a2a_dd.addtoany_share_save.addtoany_share {
    display: none;
}

/* h2 */
.single-commerce h2,
.single-bureau h2 {
    padding-bottom: 0.5em;
    margin: 2em 0 1em 0;
    border-bottom: 1px solid var(--third-green);
    position: relative;
    padding-left: 0.1em;
}

.single-commerce h2:not(.single-commerce figure~ h2),
.single-bureau h2:not(.single-bureau figure~ h2) {

    margin: 2em 0 1em 0;

}

/* list style */
.single-commerce .site-content ul li::before,
.single-bureau .site-content ul li::before {
    content: "\2022";
    color: var(--orange);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* images */
.single-commerce img:not(.img-auteur, .container-img-banniere img, .addtoany_shortcode img, .is-logo-image, .container-related-post img, .site-footer img, .gb-query-loop-item img),
.single-bureau img:not(.img-auteur, .container-img-banniere img, .addtoany_shortcode img, .is-logo-image, .container-related-post img, .site-footer img, .gb-query-loop-item img) {
    margin: 2em 0 3.5em 0;
}

/* vidéo */
figure.is-type-video {
    margin: 2em 0 !important;
}

/* banniere */
.container-img-banniere {
    position: relative;
}

.container-img-banniere::before {
    content: "";
    position: absolute;
    z-index: 99;
    width: 87px;
    height: 71px;
    top: 2em;
    left: -4.35em;
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/07/visu-img-ban.svg);
    background-repeat: no-repeat;
}


/* related post */

.categorie-p span {
    background: var(--third-green);
    color: var(--white);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    padding: 3px 8px;
    border-radius: 5px;
}

.button-read-article {
    position: relative;
    transition: all ease-in 2s;
    -webkit-transition: all ease-in 2s;
    -moz-transition: all ease-in 2s;
    -ms-transition: all ease-in 2s;
    -o-transition: all ease-in 2s;
}

.button-read-article:hover {
    text-decoration: none;
}


.button-read-article::after {

    content: "";
    top: 1.5em;
    z-index: 9;
    position: absolute;
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/07/button-underline.svg);
    background-repeat: no-repeat;
    width: 91px;
    height: 5px;

}

.button-read-article:hover::after {
    transform: translateY(-1px);
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
}


.tag-article span {
    position: relative;
    padding-left: 0.9em;
}

.tag-article span:before {
    content: "#";
    position: absolute;
    left: 0;
    color: #909698;
    /* left: -1em; */

}



/* responsive */
@media screen and (max-width: 1024px) {

    .single-commerce .entry-content,
    .single-bureau .entry-content {
        margin: 0 1em;
    }

    .hero-article:before {

        background: linear-gradient(45deg, rgba(45, 53, 56, 0.70) 0%, rgba(45, 53, 56, 0.00) 100%);
    }

}

@media screen and (max-width: 768px) {
    .container-img-banniere::before {

        top: 2em;
        left: -0.5em;

    }
}

/* ==========================================
      Template page vente
==========================================*/

/* hero */

.container-img-hero-vente figure {
    position: relative;
}

.container-img-hero-vente figure:before {
    content: "";
    top: 0.5em;
    right: 0;
    z-index: 9;
    position: absolute;
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/07/graphics-nos-agenceurs.svg);
    background-repeat: no-repeat;
    width: 149px;
    height: 149px;
}


.underline {
    /* position: relative; */
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/12/underline-1.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

/* after hero commmerce service */
@media screen and (max-width: 1024px) {
    .container-hero-commerce::after {
        content: "";
        background-image: linear-gradient(90deg, rgba(45, 53, 56, 0.60) 0%, rgba(45, 53, 56, 0.00) 100%);
        z-index: 0;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        pointer-events: none;
    }

}



/* ========
besoin
=========  */

.container-need-user {
    position: relative;
    z-index: 99;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}


/* ========
responsive
=========  */
@media screen and (min-width: 1025px) and (max-width: 1280px) {
    .grid-need-user {
        padding: 39px 50px 39px 80px !important;
        max-width: 1025px !important;
    }
}

@media screen and (max-width: 767px) {
    .container-need-user {
        position: relative;
        z-index: 99;
        transform: translateY(-20%);
        -webkit-transform: translateY(-20%);
        -moz-transform: translateY(-20%);
        -ms-transform: translateY(-20%);
        -o-transform: translateY(-20%);
    }
}


/* ========
Why Nos Agenceurs
=========  */

/* number */

.number span {
    text-align: center;
    font-family: IvyPresto Display;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    transform: translateX(2px);
    -webkit-transform: translateX(2px);
    -moz-transform: translateX(2px);
    -ms-transform: translateX(2px);
    -o-transform: translateX(2px);
}

.icon-why svg {
    transform: translateX(-2px);
    -webkit-transform: translateX(-2px);
    -moz-transform: translateX(-2px);
    -ms-transform: translateX(-2px);
    -o-transform: translateX(-2px);
}

.number .gb-icon {
    transform: translateX(-0.1px);
}

/* ========
Bénéfices
=========  */

/* benefices equipes */
.gb-accordion__item-open>.gb-accordion__toggle .gb-accordion__icon,
.gb-accordion__item:not(.gb-accordion__item-open)>.gb-accordion__toggle .gb-accordion__icon-open {
    display: none;
}

.container-img-team,
.container-img-customer {
    position: relative;
}

.container-img-team:before {
    content: "";
    bottom: -1.5em;
    right: 3em;
    z-index: 9;
    position: absolute;
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/07/draw-img.svg);
    background-repeat: no-repeat;
    width: 182px;
    height: 75px;

}

.container-img-customer:before {
    content: "";
    bottom: -3.5em;
    left: -1.2em;
    z-index: 9;
    position: absolute;
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/07/draw-img-team.svg);
    background-repeat: no-repeat;
    width: 265.01px;
    height: 208.88px;
}


@media screen and (max-width: 1024px) {
    .container-hero-commerce:before {
        opacity: 1 !important;
    }
}

/* ========
steps amenagement
=========  */
/* circle */
.circle {
    position: relative;
    display: inline-block;
}

.circle:before {
    content: "";
    z-index: 9;
    position: absolute;
    left: -12px;
    bottom: -18px;
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/07/circle-1.svg);
    background-repeat: no-repeat;
    width: 193px;
    height: 79px;
}

/* hover number */
.step-number-amenagement {
    position: relative;
    /* display: inline-block; */
}

.step-number-amenagement::before {
    transition: all ease-in 0.5s;
    -webkit-transition: all ease-in 0.5s;
    -moz-transition: all ease-in 0.5s;
    -ms-transition: all ease-in 0.5s;
    -o-transition: all ease-in 0.5s;
    content: "";
    opacity: 0;
    z-index: 9;
    position: absolute;
    left: -1.7em;
    top: 0.1em;
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/07/hover-step.svg);
    width: 30px;
    height: 70px;
}

.step-number-amenagement:hover::before {
    opacity: 1;

}



/* ====
Banniere cta
===== */
/* underline */
.underline-txt {
    position: relative;
    display: inline-block;
}

.underline-txt::before {
    content: "";
    z-index: 9;
    position: absolute;
    left: 0;
    bottom: -4px;
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/07/underline-2.svg);
    width: 100%;
    height: 5px;

}

/* ========
faq
=========  */

@media screen and (min-width: 1280px) and (max-width: 1640px) {
    .list-faq-ventes {
        padding: 174px 140px 174px 56px !important;
    }

}

@media screen and (min-width: 1025px) and (max-width: 1279px) {
    .list-faq-ventes {

        padding: 174px 30px 174px 30px !important;
    }


}


/* ==================== 
Contact commerce
============================*/

/* =====
Formulaire
======== */


/* button radio */
.gform-theme--framework {
    --gform-theme-control-radio-check-size-md: 12px !important
}




.ginput_container input,
.ginput_container_textarea textarea {
    background-color: rgba(0, 0, 0, 0) !important;
}

.gform_page_footer .gform_next_button,
.gform_page_footer .gform_previous_button,
.gform_page_footer .gform_button {
    padding: 9px 32px !important;
    font-size: 16px !important;
    border-radius: 100px !important;
    -webkit-border-radius: 100px !important;
    -moz-border-radius: 100px !important;
    -ms-border-radius: 100px !important;
    -o-border-radius: 100px !important;
}

.gform_page_footer .gform_previous_button {
    background-color: rgba(0, 0, 0, 0) !important;
}



/* ======================
Template categorie home
=============================*/
/* hero */



/* block service */


.block-agencement-cat-home {
    position: relative;

    z-index: 99;
}

@media screen and (min-width: 1641px) {
    .block-agencement-cat-home {
        margin-top: -230px;
    }
}


@media screen and (min-width: 1280px) and (max-width: 1640px) {

    .container-hero-cat-home {
        padding-top: 16em !important;

    }

    .block-agencement-cat-home {
        margin-top: -150px;

    }

}

@media screen and (min-width: 1025px) and (max-width: 1279px) {

    .container-hero-cat-home {
        padding-top: 16em !important;

    }

    .block-agencement-cat-home {
        margin-top: -100px;

    }

}


@media screen and (min-width: 390px) and (max-width: 767px) {
    .block-agencement-cat-home {
        margin-top: -70px;

    }

}

.img-right-cat-home figure {
    position: relative;
}

.img-right-cat-home figure:before {
    content: "";
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/09/picto-img-1.svg);
    position: absolute;
    width: 87px;
    height: 71px;
    top: -2em;
    right: -1em;
    z-index: 9;

}

/* circle mot boutique */
/* circle */
.circle-1 {
    position: relative;
    display: inline-block;
}

.circle-1:before {
    content: "";
    z-index: 9;
    position: absolute;
    left: -26px;
    bottom: -9px;
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/09/ent-mc-boutique.svg);
    background-repeat: no-repeat;
    width: 204px;
    height: 60px;
}

.img-left-cat-home figure {
    position: relative;
}

.img-left-cat-home figure:before {
    content: "";
    bottom: -1.5em;
    left: -5.2em;
    z-index: 99;
    position: absolute;
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/07/draw-img-team.svg);
    background-repeat: no-repeat;
    width: 261.01px;
    height: 205px;
}


.grid-cat-liens-pages {
    max-width: 749px;
    margin: 0 auto !important;
}

.icon-services {
    position: relative;

}

.circle-2 {
    position: relative;
    display: inline-block;
}

.circle-2:before {
    content: "";
    z-index: 9;
    position: absolute;
    left: -9px;
    bottom: -13px;
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/09/ent-mc-boutique.svg);
    background-repeat: no-repeat;
    width: 261.01px;
    height: 60px;
}

@media screen and (max-width: 768px) {
    .circle-2:before {
        width: 205px;

    }
}


/* actualités blog */
.button-read-article.all-articles:after {
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/10/underline-all-articles.svg);
    background-repeat: no-repeat;
    width: 100%;
    height: 5px;
}


/* dossiers */



/* ======================
Template author
=============================*/


.container-articles-author {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px 100px 20px;
}

.grid-articles-author {
    column-gap: 35px !important;
    row-gap: 50px !important;

}

@media screen and (min-width: 1200px) {
    .grid-articles-author .gb-grid-column {
        width: 31.33% !important;

    }
}

@media screen and (min-width: 767px) and (max-width: 1199px) {
    .grid-articles-author .gb-grid-column {
        width: 48% !important;
        flex-grow: 1;
        flex-shrink: 0;

    }
}

.img-author-hero {
    position: relative
}


.img-author-hero:before {
    content: "";
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/09/picto-img-1.svg);
    position: absolute;
    width: 87px;
    height: 71px;
    top: -2em;
    right: -1em;
    z-index: 9;
}






/* accueil */

/* hero */

@media screen and (min-width: 768px) {
    .hero-subtitle-home:after {
        content: "";
        position: absolute;
        background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/12/arrow-hero-home.svg);
        width: 77.933px;
        height: 104.079px;
        top: -4em;
        left: 20em;

    }
}


.home .button-read-article::after {

    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/11/underline-more-articles.svg);
    background-repeat: no-repeat;
    width: 145px;
}

/* section right bureaux */

.home .img-right-cat-home figure:before {

    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/11/Frame-2.svg);
    width: 119px;
    height: 119px;
    top: -2em;
    right: -1.3em;

}

@media screen and (max-width: 768px) {
    .home .img-right-cat-home figure:before {


        right: -0.3em;

    }

}

/* section left commerce */

.home .img-left-cat-home figure:before {
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/12/graphic-commerce-home.svg);
    width: 153px;
    height: 63px;
    bottom: -1.5em;
    left: -3.2em;
}



.home .circle-2:before {

    left: -9px;
    bottom: -13px;
    background-image: url(https://nosagenceurs.com/wp-content/uploads/2023/12/ent-12l.svg);
    background-repeat: no-repeat;
    width: 232px;
    height: 67px;
}



/* actualités */

.gb-container.ALB.gb-accordion__item {
    opacity: 0.6;
}

.gb-container.ALB.gb-accordion__item.gb-accordion__item-open {
    opacity: 1;
}



/* bug mobile hero */

.container-hero-commerce>.gb-container {
    z-index: 9 !important;
}



/* footer */
.site-footer a {
    text-decoration: none;
}

.site-footer a:hover:not(.bloc-switch-espace a) {
    text-decoration: underline var(--neon-green);
    text-decoration-thickness: 3px;
}

/* RGPD */

button#tarteaucitronPrivacyUrl{
display: none!important;
}
@media screen and (max-width: 768px) {
    button#tarteaucitronPersonalize2 {
        margin-bottom: 0.8em;
    }

    span#tarteaucitronDisclaimerAlert {
        margin-bottom: 0.5em!important;
        padding: 0 20px!important;
    text-align: center!important;
    }

}