/*Animation slide partenaire*/
@keyframes slide {
    from {
        right:0;
    }

    to {
        right: calc(100% + 42px);
    }
}

/* Variable de style */
:root {
    /*color*/
    --light-primary: #22CEBC;
    --primary: #00AE9C;
    --dark-primary: #347B74;
    --opacity-primary: #00AE9C38;
    --dark: #333;
    --bg: #fff;
    --platform: #fafafb;
    /*Gradient*/
    --primary-linear: linear-gradient(45deg, var(--primary), #0d0d0d, var(--primary));
    /*border-radius*/
    --radius: 6px;
    /*font-weight*/
    --light: 400;
    --medium: 600;
    --bold: 800;
}
/* Style général */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}

::selection {
    background: var(--primary);
    color: #fff;
}

body {
    font-weight: var(--light);
    font-size: 18px;
    background: var(--bg);
    color: var(--dark)
}
.container {
    width: min(1600px, 100%)!important;
}
h2 {
    font-weight: var(--medium);
    font-size: 42px;
}
h3 {
    font-weight: var(--medium);
}
.textTitleZone {
	margin: 50px 0;
}
.textTitleZone h2 {
	text-align:center;
}
.textTitleZone p {
	text-align:center;
	line
}
.zonePicker {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display:flex;
    align-items: center;
    background: var(--dark);
    border-radius: 100px;
}
.zonePicker #picker {
    all: unset;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 5px solid var(--dark);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: .3s;
    z-index: 100;
}
.zonePicker #picker::-webkit-color-swatch,
.zonePicker #picker::-webkit-color-swatch-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    border:none;
}

.zonePicker i {
    color: #fff;
    margin-right: 20px;
    cursor: pointer;
}
.zonePicker i.fa-check {
    color: var(--primary);
    margin-right: 20px;
    cursor: pointer;
}
.zonePicker #textPicker {
    all:unset;
    color: #fff;
    width: 100px;
}
/* Style bouton */
.bouton,
.bouton:visited {
    display:block;
    width: fit-content;
    font-size: 18px;
    padding: .55em .9em .63em;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    line-height: 1em;
    font-weight: var(--medium);
    transition: .2s;
    transition-delay: .2s;
    position: relative;
    isolation: isolate;
    overflow:hidden;
    border-radius: 3px;
    border:none;
    outline:none;
}
.bouton::after {
    content: '';
    width: 170%;
    height: 200%;
    position: absolute;
    background: var(--dark-primary);
    transform: rotate(10deg);
    z-index: -2;
    left: -50%;
    top: 150%;
    transition: .2s
}
.bouton:before {
    content: '';
    width: 150%;
    height: 200%;
    position: absolute;
    background: #fff;
    transform: rotate(10deg);
    z-index: -1;
    left: -50%;
    top: 150%;
    transition: .2s;
    transition-delay: .2s;
}
.bouton:hover::after,
.bouton:hover::before {
    left: -30px;
    top: -20px;
}
.bouton:hover {
    color: var(--primary);
    text-decoration: none;
}
.bouton.variant:hover {
    color: #fff;
    text-decoration: none;
}
.bouton.variant::before {
    background: var(--dark);
}
.bouton.white {
    color: var(--primary);
    background: #fff;
    transition-delay: .2s;
}
.bouton.white:hover {
    color: #fff;
    transition-delay: 0s;
}
.bouton.white::before {
    background: var(--primary);
}
.bouton.dark {
    color: #fff;
    background: var(--dark);
    transition-delay: .2s;
}
.bouton.dark:hover {
    color: #fff;
    transition-delay: 0s;
}
.bouton.dark::before {
    background: var(--primary);
}

/*Header*/

#dnnMenu .dropdown-menu {
    border-radius: 0;
    background: #fff;

    padding: 0;
    border: 0;
}
#dnnMenu .topLevel li a span {
    background: transparent;
    top: 50%;
    transform: translateY(-47%);
}
#dnnMenu .dropdown-menu.subLevel li {
    background: var(--platform);
    padding: 0;
}
#dnnMenu .topLevel .dropdown-menu.subLevel a span {
    color: var(--dark)
}
#dnnMenu .topLevel .dropdown.open a > span {
    color: var(--primary)
}
#dnnMenu .subLevel li a:hover {
    background: var(--primary) !important;
}
#dnnMenu .dropdown.open .subLevel > li a:hover span {
    color: #fff;
}
#dnnMenu .dropdown-menu::after {
    display: none;
}
#dnnMenu .dropdown-menu li a span {
    color: var(--dark);
}
#dnnMenu .dropdown-menu li:hover a span {
    color: #fff;
}
#dnnMenu .dropdown-menu li:hover {
    background: var(--primary);
}

/* Style Hero page d'accueil */
#heroHome {
    width: calc(100%);
    height: calc(100dvh - 30px);
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    text-align: center;
    background: #0d0d0d;
    position: relative;
    border-radius: var(--radius);
    isolation: isolate;
}
#heroHome::after {
    inset: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: var(--primary-linear);
    position: absolute;
    opacity: .3;
    z-index: -1;
}

#heroHome .textZone .btnZone {
    display: flex;
    gap: 10px;
}

#heroHome .textZone {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 50px 20px 0;
}

#heroHome .textZone p {
    width: min(800px, 100%);
    color: #fff;
}

#heroHome .textZone h1 {
    font-size: 72px;
    line-height: 1.1em;
    font-weight: var(--bold);
    color: #fff;
}

#heroHome .textZone h1 strong {
    color: var(--primary);
}

#heroHome .logoBg {
    position: absolute;
    inset: 0;
    width: 245px;
    height: 80px;
    background: #fff;
    border-bottom-right-radius: var(--radius);
}

#heroHome .logoBg > div:first-child {
    position: absolute;
    top: 0;
    left: 100%;
    width: var(--radius);
    height: var(--radius);
    background: #fff;
    z-index: 10;
    border-bottom-right-radius: var(--radius);
}

#heroHome .logoBg > div:first-child::before {
    --second-radius: calc(var(--radius) - 1px);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #101514;
    border-top-left-radius: var(--radius);
    border-bottom-right-radius: var(--second-radius);
}

#heroHome .logoBg > div:last-child {
    position: absolute;
    top: 100%;
    left: 0;
    width: var(--radius);
    height: var(--radius);
    background: var(--bg);
    z-index: 10;
    border-bottom-right-radius: var(--radius);
}

#heroHome .logoBg > div:last-child::before {
    --second-radius: calc(var(--radius) - 1px);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #172422;
    border-top-left-radius: var(--radius);
    border-bottom-right-radius: var(--second-radius);
}

#heroHome .clientZone {
    margin-top: auto;
    width: 100%;
}

#heroHome .haloZone {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

#heroHome .haloZone {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: var(--radius);
}
#heroHome .haloZone > div {
    position: absolute;
    top: -60px;
    background: linear-gradient(180deg, var(--primary), transparent);
    transform: rotate(20deg);
    filter: blur(30px);
}

#heroHome .haloZone > div:nth-child(1) {
    right: 20px;
    height: 775px;
    width: 150px;
    opacity: .2;
}

#heroHome .haloZone > div:nth-child(2) {
    right: 300px;
    height: 1000px;
    width: 50px;
    opacity: .1;
}

#heroHome .haloZone > div:nth-child(3) {
    right: 450px;
    height: 650px;
    width: 150px;
    opacity: .2;
}

#heroHome .haloZone > div:nth-child(4) {
    right: 700px;
    height: 775px;
    width: 250px;
    opacity: .1;
}

#heroHome .haloZone > div:nth-child(5) {
    right: 1050px;
    height: 700px;
    width: 150px;
    opacity: .2;
}

#heroHome .haloZone > div:nth-child(6) {
    right: 1250px;
    height: 900px;
    width: 40px;
    opacity: .3;
}

#heroHome .haloZone > div:nth-child(7) {
    right: 1350px;
    height: 600px;
    width: 150px;
    opacity: .2;
}

#heroHome .haloZone > div:nth-child(8) {
    right: 1500px;
    height: 800px;
    width: 100px;
    opacity: .3;
}

#heroHome .clientZone .partenaireTitle {
    color: #fff;
    font-size: 14px;
    padding: 0 20px;
}
#heroHome .clientZone .partenaireTitle strong {
    color: var(--primary);
    font-weight: var(--bold)
}
#heroHome .clientZone .logos {
    overflow: hidden;
    margin: 10px 0 60px;
    margin-top: auto;
    white-space: nowrap;
}
#heroHome .clientZone .logos-slide {
    display: inline-flex;
    margin: 0 20px;
    gap:40px;
}
#heroHome .clientZone .logos:hover .logos-slide .item {
    animation-play-state: paused;
}

#heroHome .clientZone .logos-slide .item {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    animation: 35s slide infinite linear;
}
#heroHome .clientZone .logos-slide img {
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Style Hero page autre que accueil */

#heroHome.page {
    height: fit-content;
    min-height: unset;
}
#heroHome.page .textZone {
    margin: auto;
    padding: 100px 0 70px;
}
#heroHome.page .textZone h1{
    font-size: 62px;
}

/*Zone Services*/
#servicesPresentation {
    margin: 75px 0;
}
#servicesPresentation ul {
    display: flex;
    justify-content: space-between;
}
#servicesPresentation ul li {
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap:10px
}
#servicesPresentation ul li i {
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: var(--radius);
    background: #444;
}
#servicesPresentation ul li h3 {
    font-size: 16px;
    line-height: 1.1em;
    font-weight: var(--medium);
}

/* Module Chiffre */
#numberZone {
    background: #0d0d0d;
    display: flex;
    padding: 50px;
    color: #fff;
    align-items:center;
    border-radius: var(--radius);
    width: min(1600px, 100%);
    margin: 100px auto;
    position: relative;
    isolation: isolate;
}
#numberZone::after {
    content: '';
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-linear);
    position: absolute;
    opacity: .3;
    z-index: -1;
}
#numberZone .leftZone {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 40%;
    padding: 0 50px;
}
#numberZone .leftZone h2{
    color: #fff;
    display: flex;
    flex-direction:column;
}
#numberZone .leftZone h2 strong {
    width: fit-content;
    padding: 0 12px 4px;
    background: var(--primary);
    color: #fff;
}
#numberZone .rightZone {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 50px;
}
#numberZone .rightZone .item {
    padding: 15px;
    width: calc(100% / 3);
}
#numberZone .rightZone .item .number {
    font-size: 38px;
    font-weight: var(--bold);
    display: flex;
    flex-direction: column;
    line-height: 1.2em; 
}

#numberZone .rightZone .item .title {
    font-size: 16px;
    color: #fff;
    opacity: .7;
}

/* Module Bandeau */
#bandeauZone {
    background: var(--primary-linear);
    display: flex;
    padding: 50px;
    color: #fff;
    align-items: center;
    border-radius: var(--radius);
    width: min(1600px, 100%);
    margin: 100px auto;
    position: relative;
}
#bandeauZone .leftZone {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0 50px;
    align-items:center;
    gap: 20px;
}
#bandeauZone .leftZone .title {
    font-size: 32px;
    text-align: center;
    line-height: 1.2em;
    font-weight: var(--medium);
}
#bandeauZone .leftZone .title strong {
    color: var(--primary);
    white-space: nowrap;
}
/* Module Valeurs */
#zoneValeurs {
    display: flex;
    flex-wrap: wrap;
    gap:50px;
    margin: 100px 0;
}
#zoneValeurs h2 {
    width:100%;
    text-align: center;
}
#zoneValeurs .item {
    width: calc(100% / 4 - 38px);
    padding: 20px;
    background: var(--platform);
    border-radius: var(--radius);
}
#zoneValeurs.col3 .item {
    width: calc(100% / 3 - 38px);
    padding: 20px;
    background: var(--platform);
    border-radius: var(--radius);
}
#zoneValeurs .item .zoneTitre {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
#zoneValeurs .item .zoneTitre.noMarge {
	margin-bottom: 0px;
}
#zoneValeurs .item i {
    background: var(--primary);
    min-width: 50px;
    min-height: 50px;
    color: #fff;
    border-radius: var(--radius);
    justify-content: center;
    align-items: center;
    font-size: 24px;
    width: fit-content;
    display: inline-flex;
    margin: 0 10px 0px 0;
}
#zoneValeurs .item .title {
    font-size: 18px;
    font-weight: var(--medium);
    display: inline-block;
}
#zoneValeurs .item p {
    margin: 0;
}

/* Zone Avantage */
#featuresZone {
    margin: 100px 0;
}
#featuresZone .topZone {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}
#featuresZone .topZone h2 {
    text-align: center;
}
#featuresZone .topZone p {
    text-align: center;
    width: min(900px, 100%)
}
#featuresZone .blocks {
    display: flex;
    gap: 20px 20px;
    flex-wrap: wrap;
}
#featuresZone .blocks.col3 .item {
    width: calc(100% / 3 - 15px);
}
#featuresZone .blocks .item {
    width: calc(100% / 4 - 15px);
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--platform);
    padding: 10px;
    border-radius: var(--radius);
}
#featuresZone .blocks .item i {
    background: var(--primary);
    min-width: 50px;
    min-height: 50px;
    color: #fff;
    border-radius: var(--radius);
    display: flex;
    justify-content: center;
    align-items:center;
    font-size: 24px;
}
#featuresZone .blocks .item .title {
    font-size: 16px;
    font-weight: var(--medium)
}
#featuresZone h2 strong {
    width: fit-content;
    padding: 0 12px 4px;
    background: var(--primary);
    color: #fff;
    white-space: nowrap;
}

/* Footer */
#footerZone {
    background: #0d0d0d;
    padding: 50px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 20px;
    overflow: hidden;
    isolation:isolate;
    position:relative;
}
#footerZone::after {
    inset: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: var(--primary-linear);
    position: absolute;
    opacity: .3;
    z-index: -1;
}
#footerZone .CTA{
    display:flex;
    justify-content:space-between;
    align-items: center;
    width: 100%;
    background: var(--primary);
    border-radius: var(--radius);
    padding: 20px;
    gap:20px;
}
#footerZone .CTA .bouton{
    white-space: nowrap;
    min-width: 170px;
}
#footerZone .CTA div {
    color: #fff;
    font-size: 22px;
    font-weight: var(--medium);
    line-height: 1.2em;
}
#footerZone .blocksBottom {
    display: flex;
}
#footerZone .adress {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-right: auto;
}
#footerZone .adress img{
    width: 200px;
    margin-bottom: 20px;
}
#footerZone .adress > div {
    display: flex;
    align-items:center;
    color:#fff;
    gap: 5px;
    font-size: 14px;
}
#footerZone .adress > div i {
    font-size: 22px;
    color: var(--primary);
}
#footerZone .menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 30px;
}
#footerZone .menu .title {
    color: #fff;
    font-size: 22px;
    font-weight: var(--bold);
}
#footerZone .menu ul{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction:column;
    gap: 10px;
}
#footerZone .menu ul li{
    list-style-type: none;
    color: #fff;
}
#footerZone .menu ul li a {
    color: #fff;
    font-size: 14px;
    line-height: 1.3em;
    display: flex;
    align-items:center;
    gap:7px;
    width: fit-content;
}
#footerZone .menu ul li a:hover {
    color: var(--primary);
    text-decoration: none;
}
#footerZone .menu ul li a::before {
    content: '';
    display:block;
    width: 5px;
    height: 5px;
    background: var(--primary);
}

/*Zone solution possible*/

.collapseSolution {
    display:flex;
    gap:50px;
    margin: 100px 0;
    align-items:center;
}

.collapseSolution .zoneLeft ul {
    padding: 0;
    margin: 0;
    display:flex;
    flex-direction: column;
    gap: 20px;
}

.collapseSolution .zoneLeft ul li {
    background: var(--platform);
    list-style-type:none;
    padding: 20px;
    display: flex;
    flex-direction:column;
    gap: 10px;
    border-radius: var(--radius);
}
.collapseSolution .zoneLeft ul li .title{
    font-size: 22px;
    display:flex;
    align-items:center;
    font-weight: var(--medium);
    gap:10px;
}
.collapseSolution .zoneLeft ul li .title i {
    background: var(--primary);
    min-width: 40px;
    min-height: 40px;
    color: #fff;
    border-radius: var(--radius);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}
.collapseSolution .zoneLeft {
	width:50%;
}
.collapseSolution .zoneRight {
	width:50%;
}

/*Liste solution*/


/*Zone solution possible*/

.ListeSolution {
    display:flex;
    gap:50px;
    margin: 100px 0;
    align-items:center;
}
.ListeSolution .title {
	font-size: 22px;
	font-weight: 600;
	margin: 20px 0;
}

.ListeSolution ul {
	display: flex;
	flex-direction: column;
	gap:10px;
}
.ListeSolution ul li {
	display: flex;
	align-items: center;
	gap:10px;
	line-height: 1.4em;
}

.ListeSolution ul li i{
	font-size: 25px;
	color: var(--primary)
}

.ListeSolution .zoneLeft {
	width:50%;
}
.ListeSolution .zoneRight {
	width:50%;
}

@media (max-width: 1600px) {
	#featuresZone .blocks .item .title {
		font-size: 14px;
	}
}

/*Media Queries - Responsive*/
@media (max-width: 1400px) {
    #numberZone .rightZone .item .number {
        font-size: 28px;
    }
	#numberZone {padding: 50px 0px;}
    #numberZone .leftZone h2 {
        font-size: 32px;
    }
    #numberZone .leftZone p {
        font-size: 14px;
    }
    #numberZone .rightZone .item .title {
        font-size: 14px;
    }
    #numberZone .rightZone .item {
        padding: 30px 20px;
    }
}

@media (max-width: 1200px) {
	.collapseSolution .zoneLeft {
		width:100%;
	}
	.collapseSolution .zoneRight {
		width:100%;
	}
	.ListeSolution .zoneLeft {
		width:100%;
	}
	.ListeSolution .zoneRight {
		width:100%;
	}
    .collapseSolution{
        flex-direction: column;
    }
    .collapseSolution .zoneRight{
        display: none;
    }
    .collapseSolution .content {
        text-align: justify;
    }
    .collapseSolution p {
        text-align: justify;
    }

    .ListeSolution{
        flex-direction: column;
    }
    .ListeSolution .zoneLeft{
        display: none;
    }
    .ListeSolution .content {
        text-align: justify;
    }
    .ListeSolution p {
        text-align: justify;
    }
    #featuresZone .blocks {
        justify-content: center;
    }

    #featuresZone .blocks .item {
        width: calc(100% / 3 - 15px);
    }

    #heroHome .textZone h1 {
        font-size: 58px;
    }

    #heroHome .textZone p {
        font-size: 14px;
    }

    #numberZone .leftZone p {
        text-align: justify;
    }

    #numberZone .rightZone .item {
        padding: 10px 20px;
        width: calc(100% / 2);
    }

    #numberZone .leftZone {
        width: 50%;
    }

    #numberZone .leftZone h2 {
        font-size: 30px;
    }

    h2 {
        font-size: 32px;
    }

    #numberZone {
        margin: 75px 0
    }

    #featuresZone {
        margin: 75px 0;
    }

    #heroHome.page .textZone h1 {
        font-size: 52px;
    }
    #heroHome.page .textZone {
        margin: auto;
        padding: 100px 10px 40px;
    }
    #zoneValeurs {
        gap: 10px;
    }
    #zoneValeurs .item {
        width: calc(100% /2 - 5px);
    }
	#zoneValeurs.col3 .item {
			width: calc(100% /2 - 7px);
	}
    #zoneValeurs .item i {
        display: flex;
    }
    #zoneValeurs .item p {
        font-size: 14px;
    }
}
@media (max-width: 992px) {
	#featuresZone .blocks .item {
	width: calc(100% / 2 - 10px);
	}
    #featuresZone .blocks .item {
        gap: 10px;
    }
    #featuresZone .blocks .item .title {
        font-size: 14px;
    }
    #heroHome .textZone h1 {
        font-size: 48px;
    }
    #heroHome .clientZone .logos {
        margin: 10px 0 30px;
    }
    #numberZone {
        flex-direction: column;
    }
    #numberZone .leftZone {
        gap: 0;
        width: 100%;
    }
    #numberZone .rightZone {
        width: 100%;
    }
    #numberZone .rightZone .item {
        width: calc(100% / 3);
    }
    #footerZone .menu {
        margin: 0 10px;
    }
    #footerZone .menu ul li a {
        font-size: 12px;
    }
    #footerZone .adress > div {
        font-size: 12px;
    }
    #footerZone .adress {
        gap: 10px;
    }
    #heroHome.page .textZone h1 {
        font-size: 42px;
    }
    #bandeauZone .leftZone .title {
        font-size: 24px;
    }
    .presEntrep .zoneLeft p {
        font-size: 14px;
    }
    #zoneValeurs .item i {
        min-width: 40px;
        min-height: 40px;
        font-size: 22px;
    }

    #featuresZone .blocks.col3 .item {
        width: calc(100% / 2 - 15px);
    }
}

@media (max-width: 768px) {
	.ListeSolution {
		margin: 50px 0;
	}
	.ListeSolution .title {64
		font-size: 16px;
		margin: 10px 0;
	}
	.ListeSolution ul {
		margin-left: 5px;
	}
	.ListeSolution ul li i {
		font-size: 20px;
	}
    #footerZone {
        padding: 20px;
        margin-bottom: 0px;
    }
    #footerZone .CTA .bouton {
        white-space: nowrap;
        min-width: 135px;
    }
    #numberZone {
        margin: 50px 0
    }
    #featuresZone {
        margin: 50px 0;
    }
    #heroHome .textZone h1 {
        font-size: 38px;
    }
    #numberZone .rightZone .item {
        width: calc(100% / 2);
    }
    #numberZone {
        padding: 40px 20px;
    }
    #featuresZone .blocks .item {
        width: calc(100% / 2 - 15px);
    }
    #heroHome.page .textZone h1 {
        font-size: 32px;
    }

    .bouton,
    .bouton:visited {
        font-size: 14px;
    }
    #heroHome .logoBg {
        width: 145px;
        height: 60px;
    }
    /*Burger Menu*/

    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background: transparent;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background: #fff;
    }

    header.scrolled .navbar-default .navbar-toggle .icon-bar {
        background: var(--primary);
    }
    #heroHome {
        min-height: 600px;
    }
    h2 {
        font-size: 26px;
    }
    #bandeauZone {
        padding: 30px;
    }
    #bandeauZone .leftZone {
        padding: 0;
    }
    #bandeauZone .leftZone .title {
        font-size: 22px;
    }
    .presEntrep {
        flex-direction: column;
        margin: 30px 0 50px;;
    }
    .presEntrep .zoneLeft,
    .presEntrep .zoneRight {
        width: 100%;
    }
    #zoneValeurs {
        margin: 50px 0;
    }
    #zoneValeurs .item {
        width: 100%;
    }
    .collapseSolution {
        margin: 50px 0;
    }
    .collapseSolution .zoneRight {
        display: flex;
    }
}
@media (max-width: 767px) {
    .navbar-default .navbar-toggle {
        margin-right: 25px;
        width: 45px;
        height: 45px;
        margin-top: -5px;
        background: transparent;
        border: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #bandeauZone {
        padding: 30px 20px;
        margin: 50px 0;
    }
    #bandeauZone br {
        display:none;
    }
}
@media (max-width: 650px) {
    #footerZone .blocksBottom {
        flex-direction: column;
        gap: 30px;
    }
    #footerZone .menu {
        margin: 0;
    }
    #featuresZone .blocks.col3 .item {
        width: calc(100% / 1 - 15px);
    }
    #featuresZone .blocks.col3 {
        gap: 5px;
    }
    #featuresZone .blocks.col3 .item {
        width: 100%;
        padding: 5px;
    }
}
@media (max-width: 576px) {
	#featuresZone .blocks .item {
	width: 100%;
	}  
	#featuresZone .blocks .item .title {
		font-size: 12px;
		line-height: 1.2em;
	}
    #numberZone .rightZone .item {
        padding: 10px 5px;
    }
    #footerZone .CTA {
        flex-direction: column;
        text-align: center;
    }
    #footerZone .CTA div {
        font-size: 18px;
    }
    #footerZone {
        gap: 30px;
    }
    #featuresZone {
        margin: 30px 0;
    }
    #numberZone {
        margin: 30px 0;
    }
    #featuresZone .topZone p {
        font-size: 14px;
    }
    #numberZone .leftZone {
        padding: 0 00px;
    }
    #numberZone {
        padding:  20px;
        gap: 10px;
    }
    #numberZone .rightZone {
        padding: 0 00px;
    }
    #heroHome .textZone h1 {
        font-size: 28px;
    }
    #heroHome .textZone p {
        display:none;
    }

    #heroHome {
        min-height: 500px;
    }
    #heroHome .clientZone .logos {
        margin: 0 0 30px;
    }
    #numberZone .leftZone h2 {
        font-size: 20px;
    }
    #numberZone .leftZone p {
        font-size: 12px;
    }
    #numberZone .rightZone .item .number {
        font-size: 22px;
    }
    #numberZone .rightZone .item .title {
        font-size: 12px;
    }
    #featuresZone .blocks .item i {
        min-width: 40px;
        min-height: 40px;
        font-size: 20px;
    }
    #featuresZone .topZone {
        margin-bottom: 5px;
    }
    #heroHome.page .textZone h1 {
        font-size: 28px;
    }
    #heroHome.page .textZone p {
        display: block;
    }
    #bandeauZone .leftZone .title {
        font-size: 18px;
    }
    #bandeauZone {
        padding: 20px 5px;
    }
}
@media (max-width: 500px) {
    h2 {
        font-size: 22px;
    }
    #heroHome.page .textZone h1 {
        font-size: 24px;
    }
}
@media (max-width: 400px) {
    h2 {
        font-size: 22px;
    }
    #featuresZone .blocks {
        gap: 5px;
    }
    #featuresZone .blocks .item {
        width: 100%;
        padding: 5px;
    }
}