/*Variables*/
:root {
    --color-white: #fff;
    --color-black: #000;

    --color-green: #8cb83f;
    --color-green-dark: #6e9132;
}

/*Helper*/
.mt-24 {
    margin-top: 24px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.pl-24 {
    padding-left: 24px;
}

.pr-24 {
    padding-right: 24px;
}

.link-white {
    color: #FFFFFF;
}

.link-gray {
    color: #626262;
}

.link-pale-gray {
    color: #9c9c9c;
}

.link-gray:hover, .link-pale-gray:hover, .link-white:hover {
    color: var(--color-green);
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background: white;
}

.hover-scale:hover {
    scale: 1.1;
    transition: all .3s ease;
}

/*SwiperJs*/
.swiper-button-prev, .swiper-button-next {
    color: var(--color-green);
}

/*new-menu*/
.newmenu {
    position: fixed;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 999;
    font-family: Oswald, sans-serif !important;

    transition: backdrop-filter .3s ease;
}

.newmenu__width {
    width: fit-content;
    height: 100%;
    display: flex;
}

.newmenu__sidebar {
    position: relative;
    z-index: 10;
    width: 50px;
    height: 100%;
    background: var(--color-green);
}

.newmenu__sidebar__after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    cursor: pointer;
}

.newmenu__sidebar__button {
    border: none;
    background: none;
    width: 50px;
    height: 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;

    position: absolute;
    top: 12px;
    right: 50%;
    transform: translateX(50%);
}

.newmenu__sidebar__buttonback {
    border: none;
    background: none;
    width: 50px;
    height: 40px;
    padding: 0;
    cursor: pointer;

    display: none;
    opacity: 0;

    position: absolute;
    top: 8px;
    left: 0;
}

.newmenu__sidebar__buttonback i {
    font-size: 2.25rem;
    color: var(--color-white);
    width: 100%;
    height: 100%;
}

.newmenu__sidebar__button .newmenu__sidebar__button__span {
    width: 26px;
    height: 4px;
    border-radius: 20px;
    background: var(--color-white);
}

.newmenu__sidebar__button .newmenu__sidebar__button__title {
    font-family: Oswald, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-white);
}

.newmenu__sidebar__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
}

.newmenu__menu__first {
    width: 0;
    height: 100%;
    background: var(--color-green-dark);
    overflow: hidden;
    position: relative;
    z-index: 10;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: all .3s linear;
}

.newmenu__menu__first li {
    opacity: 0;
}

.newmenu__menu__second {
    position: absolute;
    top: 0;
    left: 250px;
    height: 100%;
    padding: 0;
    background: var(--color-black);
    overflow: hidden;

    display: flex;
    opacity: 0;
    transform: translateX(calc(-100% - 250px));
    align-items: center;

    transition: opacity .1s linear, transform .3s linear;
}

.newmenu__menu__second .newmenu__menu__list li a {
    text-transform: uppercase;
}

.newmenu__menu__second .newmenu__menu__list li a:hover {
    font-size: 18px;
}

.newmenu__menu__second .row > div {
    min-width: 275px;
}

.newmenu__menu__nav {
    position: relative;
}

.newmenu__menu__btn-group {
    position: absolute;
    bottom: calc(34px + 24px);
    left: 42px;
}

.newmenu__menu__btn-group button {
    background: none;
    border: none;
    font-size: 1rem !important;
    text-transform: uppercase;
}

.newmenu__menu__btn-group .dropdown-menu {
    min-width: 8rem !important;
}

.newmenu__menu__btn-group button:hover {
    background: none;
    border: none;
}

.newmenu__menu__nav__title {
    display: none;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-white);
    width: 100%;

    flex-direction: column;
}

.newmenu__menu__title {
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.newmenu__menu__list {
    list-style: none;
}

.newmenu__menu__list li {
    margin-bottom: 10px;
}

@media screen and (min-width: 1180px) {

    .newmenu__menu__second {
        background: var(--color-white);
    }

    .newmenu__menu__title {
        color: #626262;
    }

    .newmenu__menu__list li a {
        color: var(--color-green);
    }

    .newmenu li .menuimage:not(.nofilter) {
        filter: invert(46%) sepia(65%) saturate(390%) hue-rotate(40deg) brightness(99%) contrast(93%);
    }

    .newmenu li:nth-child(even) .menuimage:not(.nofilter) {
        filter: invert(58%) sepia(11%) saturate(2354%) hue-rotate(40deg) brightness(87%) contrast(78%);
    }

    .newmenu__menu__second .newmenu__menu__list li:nth-child(even) a {
        color: var(--color-green-dark);
    }
}

.newmenu__button {
    margin-bottom: 12px;
}

.newmenu__menu__list .newmenu__button.cta a {
    background: #eb330f !important;
    border-radius: .25rem;
    margin-left: 10px;
    display: inline;
}

.newmenu__menu__list .newmenu__button.cta a:hover {
    background: #626262 !important;
}

.newmenu__menu__list .newmenu__button.cta a::before {
    display: none;
}

@media screen and (min-width: 1180px) {
    .newmenu__button button, .newmenu__button a {
        position: relative;
    }
    
    .newmenu__button button::before, .newmenu__button a::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background-color: var(--color-green);
        width: 4px;
        height: 16px;
        display: none; /*inline-block*/
        margin-right: 5px;
        margin-bottom: -2px;
    }

    .newmenu__button:hover button::before, .newmenu__button:hover a::before, .newmenu__button.active-before button::before {
        display: inline-block;
    }

    .newmenu__menu__title {
        position: relative;
        margin-left: 10px;
    }

    .newmenu__menu__title::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -10px;
        transform: translateY(-50%);
        background-color: var(--color-green);
        width: 4px;
        height: 16px;
        display: inline-block;
        margin-right: 5px;
        margin-bottom: -2px;
    }
}

.newmenu__menu__list .newmenu__button button, .newmenu__menu__list .newmenu__button a {
    border: none;
    background: none !important;
    color: var(--color-white);
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    padding: 6px 12px;
    white-space: nowrap;

    align-items: center;
    gap: 6px;
}

.newmenu__menu__list .newmenu__button.theme-color button, .newmenu__menu__list .newmenu__button.theme-color a {
    color: var(--color-green);
}

.newmenu__menu__list .newmenu__button button .fa {
    margin: 0;
}


/*newmenu js*/
.openMenuFirst {
    width: 200px;
}

.openMenuFirst li {
    animation: opacity ease .2s forwards;
}

.openMenuFirst li:nth-child(1) {
    animation-delay: .1s;
}

.openMenuFirst li:nth-child(2) {
    animation-delay: .2s;
}

.openMenuFirst li:nth-child(3) {
    animation-delay: .3s;
}

.openMenuFirst li:nth-child(4) {
    animation-delay: .4s;
}

.openMenuFirst li:nth-child(5) {
    animation-delay: .5s;
}

.openMenuFirst li:nth-child(6) {
    animation-delay: .6s;
}

.openMenuFirst li:nth-child(7) {
    animation-delay: .7s;
}

.openMenuSecond {
    transform: translateX(0);
    opacity: 1;
    padding: 0 40px;
    transition: all .5s ease;
}

.menuActive {
    width: 100%;
    backdrop-filter: blur(10px);
}

.rotationArrow {
    transform: rotate(-90deg);
    transition: all .2s linear;
}

/*Responsive new-menu*/
@media screen and (max-width: 1180px) {
    .newmenu {
        width: 100%;
        height: 50px;
    }

    .newmenu__width {
        height: auto;
        width: 100%;
        flex-direction: column;
        background: var(--color-green);
        position: relative;
        z-index: 2;
    }

    .newmenu__sidebar {
        width: 100%;
        height: 60px;
    }

    .newmenu__sidebar__button {
        top: 14px;
        right: 0;
        transform: translateX(0);
        cursor: pointer;
    }

    .newmenu__sidebar__after {
        display: none;
    }

    .openMenuMobile::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        background: var(--color-green-dark);
    }

    .openMenuMobile .newmenu__sidebar {
        background-color: var(--color-green-dark);
    }

    .openMenuMobile .newmenu__sidebar .newmenu__sidebar__button__span:nth-child(1) {
        transform: translateY(15px) rotate(-45deg);
        transition: all .3s ease;
    }

    .openMenuMobile .newmenu__sidebar .newmenu__sidebar__button__span:nth-child(3) {
        transform: rotate(45deg);
        transition: all .3s ease;
    }

    .openMenuMobile .newmenu__sidebar picture, .openMenuMobile .newmenu__sidebar .newmenu__sidebar__button__title, .openMenuMobile .newmenu__sidebar .newmenu__sidebar__button__span:nth-child(2) {
        opacity: 0;
        transition: all .3s ease;
    }

    .newmenu__menu__first {
        width: 100%;
        height: 0;
        justify-content: start;
        align-items: start;
        padding: 0;
        z-index: 2;
    }

    .newmenu__menu__btn-group {
        display: none;
    }

    .newmenu__menu__second {
        width: 100%;
        height: calc(100vh - 108px);
        justify-content: start;
        align-items: start;
        padding: 0 60px;
        background: var(--color-green-dark);

        position: absolute;
        left: 0;
        top: 60px;
        z-index: 2;

        opacity: 1;
        transform: translateX(100%);
    }

    .newmenu__menu__second .newmenu__menu__title, .newmenu__menu__list a {
        color: var(--color-white);
    }

    .newmenu__menu__second .col-sm-6 {
        margin-top: 40px;
    }

    .newmenu__menu__nav {
        width: 100%;
    }

    .newmenu__menu__nav__title {
        display: flex;
    }

    .newmenu__menu__nav__title .fa-angle-left {
        margin-bottom: 40px;
        cursor: pointer;
    }

    .newmenu__menu__list .newmenu__button button, .newmenu__menu__list .newmenu__button a {
        font-size: 1.5rem;
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: space-between;
    }

    .newmenu__menu__list .newmenu__button button .fa {
        opacity: 0;
        font-size: 2.5rem;
        transition: all .3s ease-out;
    }

    .newmenu__menu__list .newmenu__button button:hover .fa {
        opacity: 1;
    }


    /*newmenu js*/
    .openMenuFirstMobile {
        height: calc(100vh - 108px);
        padding: 0 60px;
    }

    .openMenuFirstMobile li {
        animation: opacity ease .2s forwards;
    }

    .openMenuFirstMobile li:nth-child(1) {
        animation-delay: .3s;
    }

    .openMenuFirstMobile li:nth-child(2) {
        animation-delay: .4s;
    }

    .openMenuFirstMobile li:nth-child(3) {
        animation-delay: .5s;
    }

    .openMenuFirstMobile li:nth-child(4) {
        animation-delay: .6s;
    }

    .openMenuFirstMobile li:nth-child(5) {
        animation-delay: .7s;
    }

    .openMenuFirstMobile li:nth-child(6) {
        animation-delay: .8s;
    }

    .openMenuFirstMobile li:nth-child(7) {
        animation-delay: .9s;
    }

    .openMenuSecondMobile {
        transform: translateX(0);
    }

    .openMenuSecondMobileBack {
        display: block;
        opacity: 1;
        transition: all .3s ease;
    }

}

@keyframes opacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*Menu-bottom*/
.barfooterfixe {
    padding: 5px 0;
}

.barfooterfixe > div {
    margin: 0 50px;

    @media screen and (max-width: 1110px) {
        margin: 0 20px;
    }
}

@media screen and (max-width: 1000px) {
    .devenez1 {
        display: none;
    }

    .barfooterfixe > div > div {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 450px) {
    .mobile-sm-hide {
        display: none;
    }
}

.btnrouge:hover {
    background-color: #626262 !important;
    border-color: #626262 !important;
}

/*Accueil*/
.slider-hero .button-hero:hover {
    scale: 1.1;
    color: #363636 !important;
    transition: all .3s ease;
}

.blocs-sous-slider {
    padding-top: 2px;
}

.blocs-sous-slider .sliderbtn:hover {
    background-size: auto 105%;
    background-position: bottom center;
    transition: all .8s ease;
}

.blocs-sous-slider .sliderbtn:hover .sliderbtn-titre-1 {
    color: var(--color-green-dark);
}

.blocs-sous-slider .sliderbtn:hover .sliderbtn-titre-2 {
    color: var(--color-green);
}

.bganimation {
    transition: all .3s ease-in-out;
}

.temoignages__video:hover {
    scale: 1.1;
    transition: all .3s ease;
}

.accueil-blogue:hover {
    scale: 1.05;
    transition: all .3s ease;
}

/*Nos clients*/
.nos-clients .portfolio-item:hover img {
    transform: none;
}

.nos-clients .portfolio-item:hover {
    scale: 1.1;
    transition: all .3s ease;
}

#client-container .col-6 {
    padding: 0 7.5px !important;
}

/*services-template*/

.navigation__template {
    border-radius: 12px;
    background: gray;
    padding: 24px;
}

.navigation__template ul {
    list-style: none;
    position: relative;
}

.navigation__template ul::after {
    content: "";
    position: absolute;
    top: 0;
    left: 4px;
    width: 1px;
    height: calc(100% - 16px);
    background-color: lightgray;
    opacity: .8;
}

.navigation__template nav > ul > li > a {
    background: none !important;
    color: white !important;
    border: none;
    padding-left: 30px;
    position: relative;
    display: block;
}

.navigation__template nav > ul > li > a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 1px;
    background-color: lightgray;
    opacity: .8;
}

.crm-epr-bg {
    background: url("../images/services/crm-erp/crm-erp.webp");
}

.hebergement-courriels-bg {
    background: url("../images/services/hebergement-courriels/hero-hebergement-courriels.webp");
    background-size: cover;
}

.facebook-ads-bg {
    background: url("../images/services/facebook-ads/hero-facebook-ads.webp");
    background-size: cover;
}

.publicites-bing-bg {
    background: url("../images/services/publicites-bing/hero-publicites-bing.webp");
    background-size: cover;
}

.publicites-web-bg {
    background: url("../images/services/publicites-web/hero-publicites-web.webp");
    background-size: cover;
}

/*New-split-section*/
.new-split-section {
    position: relative;
}
.new-split-section.left .col-img {
    padding: 0;
}
@media screen and (max-width: 768px) {
    .new-split-section.left .col-img {
        order: 2;
        width: 100%;
    }
}
.new-split-section.left img {
    left: 0;
}
.new-split-section.right .col-img {
    padding: 0;
}
@media screen and (max-width: 768px) {
    .new-split-section.right .col-img {
        width: 100%;
    }
}
.new-split-section.right img {
    right: 0;
}
.new-split-section .new-split-section-image {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .new-split-section .new-split-section-image {
        position: relative;
        width: 100%;
        max-height: 400px;
    }
}
.new-split-section .new-split-section-texte {
    padding: 100px 0;
}
@media screen and (max-width: 991px) {
    .new-split-section .new-split-section-texte {
        padding: 60px 0;
    }
}
@media screen and (max-width: 768px) {
    .new-split-section {
        padding-bottom: 0;
    }
    .new-split-section .new-split-section-texte {
        padding: 30px 0;
    }
}

/*Notre Histoire*/
.notre-histoire .swiper {
    border-radius: 12px;
}

/*Notre Équipe*/
.notre-equipe .col-xs-12, .notre-equipe .col-xs-12 img {
    border-radius: 12px;
}

.notre-equipe .entry {
    border-radius: 12px;
    overflow: hidden;
}

.notre-equipe .entry img {
    transform: scale(1);
    transition: all .5s ease;
}

.notre-equipe .entry:hover img {
    transform: scale(1.1);
}

/*Pourquoi*/
.pourquoi .leftcolumn {
    padding-left: 47px;
}

.pourquoi .aproposbox1,
.pourquoi .aproposbox2,
.pourquoi .media.border,
.pourquoi .swiper-slide,
.pourquoi .swiper-slide img,
.pourquoi .swiper-slide .certification__hover {
    border-radius: 12px;
}

@media screen and (max-width: 1180px) {
    .pourquoi {
        padding-top: 60px;
    }
}

@media screen and (max-width: 576px) {
    .pourquoi .leftcolumn {
        padding-left: 15px;
    }

    .pourquoi .aproposbox1 {
        margin-left: 15px;
        margin-right: 15px;
    }
}

/*Conception site web*/
.conceptionsiteweb .swiper-slide:has(.conceptionweb-icon) {
    font-size: 2.5rem;
    text-align: center;
}

.hero-conception-base {
    background: url(../images/services/conceptionweb/conception-web-header-v4.webp) center;
    background-size: cover;
}

/*Photographie*/
.photographie img:not(.border-radius-12-top) {
    border-radius: 12px;
}

/*ProVideo*/
.provideo .blog-border, .provideo .media.border, .provideo .fa.fa-play {
    border-radius: 12px;
}

.provideo .blog-border img {
    border-radius: 12px 12px 0 0;
}

.provideo .blog-border .blog-info {
    border-radius: 0 0 12px 12px;
}

/*Google Ads (ppc)*/
.ppc .media.border {
    border-radius: 12px;
}

/*Expertises*/
.rainbow-text {
    background: linear-gradient(to right, rgb(237, 34, 36), rgb(243, 91, 34), rgb(249, 150, 33), rgb(245, 193, 30), rgb(241, 235, 27) 27%, rgb(241, 235, 27), rgb(241, 235, 27) 33%, rgb(99, 199, 32), rgb(12, 155, 73), rgb(33, 135, 141));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*Portfolio*/
.websiteimg-right, .websiteimg-left {
    border-radius: 12px;
}

/*blogue-single et podcast-single*/

.single-blog .row ul, .single-blog .row ol {
    padding: 0;
    margin: 0;
}

.single-blog .row ul li, .single-blog .row ol li {
    list-style-type: none;
    padding-left: 25px;
    position: relative;
    margin: 5px 0;
    line-height: 28px;
}

.single-blog .row ul li::after, .single-blog .row ol li::after {
    content: "";
    font-size: 1.125rem;
    font-family: "FontAwesome", fantasy;
    position: absolute;
    color: var(--color-green);
    left: 0;
    top: 0;
}

.single-blog ul {
    padding-left: 20px;
    padding-bottom: 10px;
}

.single-blog .size-full {
    width: 100%;
    height: auto !important;
}

.single-blog details ol {
    counter-reset: item
}

.single-blog details .h2summary {
    display: block
}

.single-blog details .h2summary:before {
    content: counters(item, ".") ". ";
    counter-increment: item
}

.single-blog details .h3summary {
    display: block
}

.single-blog details .h3summary:before {
    content: counters(item, ".") " ";
    counter-increment: item
}

.single-blog .summary-blogue {
    border-radius: 25px 0px 25px 25px;
    background-color: #f2f2f2;
    padding: 25px;
    font-family: 'Oswald', sans-serif !important;
    background-image: url(/images/logos/logo-seul-blanc.gif);
    background-size: 250%;

}

.single-blog .summary-blogue .title {
    text-transform: uppercase;
    font-size: 24px;
    padding-left: 40px;
}

.single-blog .summary-blogue hr {
    border-bottom: 1px solid #eceff8;
}

.single-blog .summary-blogue .h2summary {
    margin-bottom: 8px;
    font-size: 18px;
}

.single-blog .summary-blogue .h2summary .d-flex {
    margin-top: 8px;
    font-size: 16px;
}

.single-blog .summary-blogue .h2summary a {
    color: #6e9132 !important;
}

.single-blog .summary-blogue .h3summary a {
    color: #8cb83f !important;
}

.single-blog .title-btn {
    display: block;
    margin-right: 0;
    float: right;
    padding-right: 40px
}

.single-blog h2 {
    text-transform: uppercase;
    font-size: 26px;
    font-family: 'Oswald', sans-serif !important;
}

.single-blog h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'Oswald', sans-serif !important;
}

/*single-faq*/
.single-faq .row ul, .single-faq .row ol {
    padding: 0;
    margin: 0;
}

.single-faq .row ul li, .single-faq .row ol li {
    list-style-type: none;
    padding-left: 25px;
    position: relative;
    margin: 5px 0;
    line-height: 28px;
}

.single-faq .row ul li::after, .single-faq .row ol li::after {
    content: "";
    font-size: 1.125rem;
    font-family: "FontAwesome", fantasy;
    position: absolute;
    color: var(--color-green);
    left: 0;
    top: 0;
}

.single-faq ul {
    padding-left: 20px;
    padding-bottom: 10px;
}


.title3{
font-size:16px;
text-transform: uppercase;
font-family: 'Oswald', sans-serif !important;
color: #8cb83f !important;
;

}

/*************************************
   Page AIO
**************************************/
.aio-s3-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.aio-s3-grid-reason{
    background: #F5F5F5;
    border-radius: 20px;
    padding: 24px;
}
.aio-s3-grid-reason h3{
    display: flex;
    gap: 15px;
}