/****Phudu*****/

@font-face {
    font-family: 'Phudu-Black';
    src: url(../fonts/phudu/Phudu-Black.ttf);
}

@font-face {
    font-family: 'Phudu-Bold';
    src: url(../fonts/phudu/Phudu-Bold.ttf);
}

@font-face {
    font-family: 'Phudu-ExtraBold';
    src: url(../fonts/phudu/Phudu-ExtraBold.ttf);
}

@font-face {
    font-family: 'Phudu-Light';
    src: url(../fonts/phudu/Phudu-Light.ttf);
}

@font-face {
    font-family: 'Phudu-Medium';
    src: url(../fonts/phudu/Phudu-Medium.ttf);
}

@font-face {
    font-family: 'Phudu-Regular';
    src: url(../fonts/phudu/Phudu-Regular.ttf);
}

@font-face {
    font-family: 'Phudu-SemiBold';
    src: url(../fonts/phudu/Phudu-SemiBold.ttf);
}

/*****Poppins*******/

@font-face {
    font-family: 'Poppins-ExtraLightItalic';
    src: url(../fonts/Poppins/Poppins-ExtraLightItalic.ttf);
}

@font-face {
    font-family: 'Poppins/Poppins-Regular';
    src: url(../fonts/Poppins/Poppins-Regular.ttf);
}

@font-face {
    font-family: 'Poppins-LightItalic';
    src: url(../fonts/Poppins/Poppins-LightItalic.ttf);
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url(../fonts/Poppins/Poppins-Bold.ttf);
}

@font-face {
    font-family: 'Poppins-ExtraBold';
    src: url(../fonts/Poppins/Poppins-ExtraBold.ttf);
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url(../fonts/Poppins/Poppins-Medium.ttf);
}

@font-face {
    font-family: 'Poppins-ExtraLight';
    src: url(../fonts/Poppins/Poppins-ExtraLight.ttf);
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url(../fonts/Poppins/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url(../fonts/Poppins/Poppins-Regular.ttf);
}

@font-face {
    font-family: 'Poppins-Light';
    src: url(../fonts/Poppins/Poppins-Light.ttf);
}













html {
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background-color: #F3D6CB;
    /* font-family: 'Helvetica Neue'; */
}

.btn:active {
    outline: none;
    border: none;
}

.btn {
    display: block;
    outline: none !important;
    border: none;
}

.btn a {
    color: #fff;
    font-size: 30px;
    font-family: 'Phudu-ExtraBold';
    text-decoration: none;
    background-color: #EE334E;
    padding: 15px 45px;
    border-radius: 42px;
    display: inline-block;
    text-transform: uppercase;

}

.btn a:hover {
    background-color: #DC1734;
}

a {
    outline: none !important;
}

.button {
    outline: none !important;
}

body img {
    max-width: 100%
}



body p:empty {
    display: none
}

a {
    overflow: hidden;
}

.container {
    width: 1800px;
    max-width: 100%;
    margin: 0 auto;
}

.br-mobile {
    display: none;
}


/* .modal.fade .modal-dialog {
    height: 80%;
} */






/* Video Modal
-----------------------------------------*/
.video-modal,
.video-modal .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3000;
}

.video-modal {
    overflow: hidden;
    position: fixed;
    opacity: 0;
    -webkit-transform: translate(500%, 0%);
    transform: translate(500%, 0%);
    -webkit-transition: -webkit-transform 0s linear 0s;
    transition: -webkit-transform 0s linear 0s;
    transition: transform 0s linear 0s;
    transition: transform 0s linear 0s, -webkit-transform 0s linear 0s;
    /* using flexbox for vertical centering */
    /* Flexbox display */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* Vertical alignment */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.video-modal .overlay {
    z-index: 0;
    background: rgba(13, 1, 61, 0.82);
    /* overlay color */
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-out 0.05s;
    transition: opacity 0.2s ease-out 0.05s;
}

.video-modal-content {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    margin: 0 auto;
    overflow-y: visible;
    background: #000;
    width: calc(100% - 12em);
    height: 0;
    padding-top: calc((100% - 12em) * 0.5625);
    /* 16:9 calc */
}

/* Scaling to fit within the current Viewport size:
   When viewport aspect ratio is greater than 16:9
   work off the height instead of the width for calc */
@media (min-aspect-ratio: 16 / 9) {
    .video-modal-content {
        width: 0;
        height: calc(100vh - 10em);
        padding-top: 0;
        padding-left: calc((100vh - 10em) * 1.7778);
        /* 16:9 calc */
    }
}

/* Mobile Layout Tweaks - side margins reduced */
@media (max-width: 640px) {
    .video-modal-content {
        width: calc(100% - 1em);
        padding-top: calc((100% - 1em) * 0.5625);
        /* 16:9 calc */
    }
}

/* modal close button */
.close-video-modal {
    display: block;
    position: absolute;
    left: 0;
    top: -40px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

/* set the iframe element to stretch to fit its parent element */
iframe#youtube {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #000;
    -webkit-box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.5);
}

iframe#youtube-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #000;
    -webkit-box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.5);
}

/* show the modal: 
   add class to the body to reveal */
.show-video-modal .video-modal {
    opacity: 1;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    z-index: 99999;
}

.show-video-modal .video-modal .overlay {
    opacity: 1;
}

.show-video-modal .video-modal-content {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
}

@-webkit-keyframes borderAnimation {
    0% {
        border-width: 0;
    }

    100% {
        border-width: 20px;
    }
}

@keyframes borderAnimation {
    0% {
        border-width: 0;
    }

    100% {
        border-width: 20px;
    }
}
























/***************************************************start***********************************************************************/
/*********HOVER**********/
/* Grow */
.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/*********END HOVER**********/
header {
    width: 1830px;
    max-width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 15px;
}

header .content {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
}

header .content .logo {
    padding-left: 15px;

}

header .content .logo img {
    width: 190px;
    max-width: 100%;
    background: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 25px 10px 15px;
}


/**section hero**/

.section.section-hero {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    /* height: 100vh; */
}

.section.section-hero .container {
    background-image: url(../images/bg-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
}

.section.section-hero .content .col-hero {
    position: absolute;
    bottom: 8%;
    right: 0;
    left: 0;
    width: 1470px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 0px;
    align-items: center;

}

.section.section-hero .content .col-hero .titre-hero {
    background-color: #2C42B1;
    width: 80%;
    max-width: 100%;
    padding: 30px;
    position: relative;
    margin: 0px 15px;
}

.section.section-hero .content .col-hero .titre-hero::before {
    content: '';
    position: absolute;
    width: 310px;
    height: 220px;
    background-image: url(../images/bef-hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: -28%;
    right: 0%;
    z-index: 11;
}

.section.section-hero .content .col-hero .titre-hero::after {
    content: 'Chiots médaillés';
    position: absolute;
    font-size: 25px;
    top: -20px;
    letter-spacing: 4px;
    left: 5%;
    z-index: 111;
    color: #2C42B1;
    background-color: #F3D6CB;
    text-transform: uppercase;
    font-family: 'Phudu-Bold';
    padding: 0px 7px;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* General styling to hide spin buttons */
input[type="number"] {
    appearance: textfield;
}

.section.section-hero .content .col-hero .icone-video a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 10px;
}

.section.section-hero .content .col-hero .icone-video i {
    font-size: 100px;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
}

.section.section-hero .content .col-hero .icone-video .lire-video span {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Phudu-Medium';
    cursor: pointer;

}

.section.section-hero .content .col-hero .icone-video:hover i {
    transform: scale(1.2, 1.2);
    opacity: 60%;
}

.section.section-hero .content .col-hero .icone-video:hover .lire-video span {
    opacity: 60%;
}

.section.section-hero .content .col-hero .titre-hero .texte {
    width: 77%;
    max-width: 100%;
}

.section.section-hero .content .col-hero .titre-hero .texte p {
    color: #F3D6CB;
    font-size: 30px;
    font-family: 'Poppins-ExtraLight';
}

.section.section-hero .content .col-hero .titre-hero .titre h1 {
    color: #fff;
    font-size: 130px;
    font-family: 'Phudu-ExtraBold';
}

.section.section-hero .content .col-hero .titre-hero .titre h1 span {
    color: #EAC7B9;
}

.section.section-hero .content .col-hero .titre-hero .txt-icone {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section.section-hero .content .col-hero .titre-hero .txt-icone .flech img {
    height: 28px;
}

.section.section-hero .content .col-hero .titre-hero .txt-icone .txt h3 {
    color: #fff;
    font-size: 64px;
    font-family: 'Phudu-ExtraBold';
}


/*************************don form*******************************/
.navbar-expand-lg {
    position: fixed;
    bottom: 0;
    z-index: 99999;
    left: 0;
    right: 0;
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #F3D6CB !important;
    padding: 15px 0;
}

.btn-don {
    padding: 17px 51px;
    background-color: #EE334E;
    color: #fff;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    font-size: 24px;
    font-family: 'Phudu-ExtraBold';
    text-decoration: none;
}


.d-mobile {
    display: none;
}

.nav-mobile {
    display: none;
}

/****/

.calcul-cnt.container-sx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    width: 100%;
}

.calcul-cnt .calcul-btn {
    width: 80%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.calcul-cnt .calcul-btn-don {
    width: 20%;
    max-width: 100%;
    text-align: center;
}

.calcul-cnt .calcul-btn .btn-calcul {
    margin: 0 6px;
    position: relative;
    transition: all 0.25s ease;
}

.calcul-cnt .calcul-btn .btn-calcul.hvr:hover {
    transform: scale(1.1, 1.1);
}

/* .calcul-cnt .calcul-btn .btn-calcul:hover .subtext p{
    display: block;
} */

.calcul-cnt .calcul-btn .btn-calcul.input .subtext p {
    margin-top: 8px;
}

.calcul-cnt .calcul-btn .btn-calcul a {
    padding: 0px 70px;
    background: #fff;
    color: #2C42B1;
    display: inline-block;
    border: 2px solid #2C42B1;
    border-radius: 50px;
    text-decoration: none;
    font-size: 32px;
    font-family: 'Phudu-ExtraBold';
}

.calcul-cnt .calcul-btn .btn-calcul a:hover {
    background-color: #2C42B1;
    color: #fff;
    border-color: #fff;
}

.calcul-cnt .calcul-btn .btn-calcul.input input {
    padding: 0px 0px;
    text-align: center;
    background: #fff;
    color: #2C42B1;
    display: inline-block;
    border: 2px solid #2C42B1;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Phudu-Medium';
    width: 200px;
    max-width: 100%;
    height: 50px;
}

.calcul-cnt .calcul-btn .btn-calcul.input input:focus-visible {
    border: red !important;
}

.calcul-cnt .calcul-btn .btn-calcul.input input::placeholder {
    color: #2C42B1;
}


.subtext {
    text-align: center;
}

.subtext p {
    display: none;
    color: #2C42B1;
    font-size: 14px;
    font-family: 'Poppins-Regular';
}

.btn-calcul .active+.subtext p,
.btn-calcul.input .subtext.active p {
    display: block;
    margin: unset;
    line-height: 18px;
}


.btn-calcul.input .subtext.active p span {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 5px;
    gap: 5px;
}

.btn-calcul.input .subtext.active p #subtextPrice {
    margin: unset;
}

.subtext p span {
    display: block;
    color: #2C42B1;
    font-size: 16px;
    font-family: 'Poppins-SemiBold';
}

.calcul-cnt .calcul-btn .btn-calcul a.active {
    color: #fff;
    border-color: #fff;
    background-color: #EE334E;
}

.calcul-btn-don a {
    padding: 17px 51px;
    background-color: #EE334E;
    color: #fff;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    font-size: 24px;
    font-family: 'Phudu-ExtraBold';
    text-decoration: none;
}

.calcul-btn-don a:hover {
    background-color: #DC1734;
}

.calcul-cnt .calcul-btn .btn-calcul .subtext .primary-color {
    display: flex;
    justify-content: center;
    gap: 5px;
}






/**section champion***/

.section.section-champion {
    width: 100%;
    max-width: 100%;
    margin-bottom: 50px;
    padding: 0 15px;
}

.section.section-champion .container {
    position: relative;
    padding: 0 20px;
}

.section.section-champion .container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 90%;
    max-width: 100%;
    top: 0;
    left: 0;
    background-color: #2C42B1;
    z-index: 11;
}

.section.section-champion .content {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    position: relative;
    z-index: 1111;

}

.section.section-champion .content .text {
    width: 70%;
    max-width: 100%;
}

.section.section-champion .content .text p {
    color: #2C42B1;
    font-size: 80px;
    font-family: 'Phudu-ExtraBold';
    line-height: 70px;
    margin: unset;

}

.section.section-champion .content .text p span {
    display: block;
    color: #EAC7B9;
}

.section.section-champion .content .image {
    width: 25%;
    max-width: 100%;
}


/***start parcour***/
.section.section-parcour {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    margin-bottom: 50px;
}

.section.section-parcour .container {
    padding: 70px 70px 30px;
    background-color: #FAEEEA;
}

.section.section-parcour .content {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.section.section-parcour .content .text {
    width: 50%;
    max-width: 100%;
    background-color: #2C42B1;
    padding: 40px;
    position: relative;
}

.section.section-parcour .content .text::before {
    content: 'Pré-éducation';
    position: absolute;
    font-size: 25px;
    top: -20px;
    letter-spacing: 4px;
    left: 5%;
    z-index: 111;
    color: #2C42B1;
    background-color: #F3D6CB;
    text-transform: uppercase;
    font-family: 'Phudu-Bold';
    padding: 0px 7px;
}

.section.section-parcour .content .text .titre {
    line-height: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.section.section-parcour .content .text .icone img {
    width: 68px;
    max-width: 100%;
}

.section.section-parcour .content .text .titre p {
    color: #fff;
    font-size: 30px;
    font-family: 'Poppins-ExtraLightItalic';
}

.section.section-parcour .content .text .titre span {
    color: #fff;
    font-size: 16px;
    text-align: right;
    width: 100%;
    display: block;
    text-transform: uppercase;
    font-family: 'Poppins/Poppins-Regular';
}

.section.section-parcour .content .text .text-content {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section.section-parcour .content .text .text-content p {
    color: #fff;
    font-size: 22px;
    font-family: 'Poppins-LightItalic';
}

.section.section-parcour .content .text .text-content p span {
    color: #F3D6CB;
}

.section.section-parcour .content .text .petite-icon {
    display: flex;
    justify-content: end;
}


.section.section-parcour .content .img {
    width: 50%;
    max-width: 100%;
    background-image: url(../images/chien.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.section.section-parcour .content .img::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 224px;
    background-image: url('../images/before-parcour1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    bottom: 0;
    left: 0;
    z-index: 11;
}

.section.section-parcour .content .img .info {
    text-align: right;
    text-align: right;
    position: absolute;
    bottom: 5%;
    right: 5%;
}

.section.section-parcour .content .img .info p {
    color: #fff;
    font-size: 30px;
    font-family: 'Poppins-ExtraBold';
    text-transform: uppercase;
    margin: unset;
    line-height: 30px;
}

.section.section-parcour .content .img .info span {
    color: #F3D6CB;
    font-size: 30px;
    font-family: 'Phudu-ExtraBold';
    text-transform: uppercase;
    display: block;
    line-height: 30px;
}

.section.section-parcour .container .titre-btn {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
}

.section.section-parcour .container .titre-btn .titre {
    margin-bottom: 10px;
}

.section.section-parcour .container .titre-btn .titre h3 {
    color: #2C42B1;
    text-transform: uppercase;
    font-size: 30px;
    font-family: 'Phudu-ExtraBold';
}


/****start parcour 2*****/
.section.section-parcour.parcour-2 .content .img {
    width: 50%;
    max-width: 100%;
    background-image: url(../images/chien-parc-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.section.section-parcour.parcour-2 .content .text::before {
    content: "éducation";
    position: absolute;
    font-size: 25px;
    top: -20px;
    letter-spacing: 4px;
    left: 5%;
    z-index: 111;
    color: rgb(44, 66, 177);
    background-color: rgb(243, 214, 203);
    text-transform: uppercase;
    font-family: Phudu-Bold;
    padding: 0px 7px;
}

.section.section-parcour.parcour-2 .content .img::before {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    background-image: url(../images/before-parcour2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    bottom: 5%;
    right: 5%;
    left: unset;
    z-index: 11;
}

.section.section-parcour.parcour-2 .content .img .info {
    position: absolute;
    bottom: 5%;
    right: unset;
    left: 5%;
    text-align: left;
}

/******parcour 3***/

.section.section-parcour.parcour-3 .content .img {
    width: 50%;
    max-width: 100%;
    background-image: url(../images/chien-parc-3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.section.section-parcour.parcour-3 .content .img::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 300px;
    background-image: url(../images/before-parcour3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    bottom: 0;
    left: 0%;
    right: unset;
    z-index: 11;

}

.section.section-parcour.parcour-3 .content .text::before {
    content: 'Remise';
    position: absolute;
    font-size: 25px;
    top: -20px;
    letter-spacing: 4px;
    left: 5%;
    z-index: 111;
    color: #2C42B1;
    background-color: #F3D6CB;
    text-transform: uppercase;
    font-family: 'Phudu-Bold';
    padding: 0px 7px;
}


/*****parcour 4*****/

.section.section-parcour.parcour-4 .content .img {
    width: 50%;
    max-width: 100%;
    background-image: url(../images/chien-parc-4.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.section.section-parcour.parcour-4 .content .img::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 170px;
    background-image: url(../images/before-parcour4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    bottom: 5%;
    right: 7%;
    left: unset;
    z-index: 11;
}

.section.section-parcour.parcour-4 .content .img .info {
    position: absolute;
    bottom: 5%;
    left: 5%;
    text-align: left;
}


.section.section-parcour.parcour-4 .content .text::before {
    content: 'soutien';
    position: absolute;
    font-size: 25px;
    top: -20px;
    letter-spacing: 4px;
    left: 5%;
    z-index: 111;
    color: #2C42B1;
    background-color: #F3D6CB;
    text-transform: uppercase;
    font-family: 'Phudu-Bold';
    padding: 0px 7px;
}


/***section fiscalite****/
.section.section-fiscalite {
    width: 100%;
    max-width: 100%;
    margin-bottom: 50px;
    padding: 0 15px;
}

/**block-1**/
.section.section-fiscalite .block-1 {
    margin: 0 20px;
}

.section.section-fiscalite .block-1 .content {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 50px;
    position: relative;
    z-index: 1111;
}

.section.section-fiscalite .block-1 .content .text {
    width: 70%;
    max-width: 100%;
}

.section.section-fiscalite .block-1 .content .image {
    width: 25%;
    max-width: 100%;
}

.section.section-fiscalite .block-1 .content .text p {
    color: #2C42B1;
    font-size: 80px;
    font-family: 'Phudu-ExtraBold';
    line-height: 70px;
    margin: unset;
}

.section.section-fiscalite .block-1 .content .text p span {
    display: block;
    color: #EAC7B9;
}

/**block-2**/
.section.section-fiscalite .block-2 {
    margin-top: -9%;
}

.section.section-fiscalite .block-2 .content {
    width: 100%;
    max-width: 100%;
    background-image: url(../images/bg-fiscalite.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 12% 12% 29%;
}

.section.section-fiscalite .block-2 .content .titre {
    width: 1200px;
    max-width: 100%;
}

.section.section-fiscalite .block-2 .content .titre h3 {
    color: #fff;
    font-size: 60px;
    font-family: 'Phudu-ExtraBold';
}

.section.section-fiscalite .block-2 .content .text {
    width: 760px;
    max-width: 100%;
}

.section.section-fiscalite .block-2 .content .text p {
    color: #F3D6CB;
    font-size: 30px;
    font-family: 'Poppins-ExtraLight';
}

.section.section-fiscalite .block-2 .content .text p span {
    font-family: 'Poppins-Medium';
}

.section.section-fiscalite .block-2 .content .text .text-2 p {
    color: #fff;
    font-family: 'Poppins-Medium';
}

/***block-3***/
.section.section-fiscalite .block-3 {
    margin-top: -27%;
    margin-left: 20px;
    margin-right: 20px;
}

.section.section-fiscalite .block-3 .content {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #2C42B1;
    padding: 50px;
}

.section.section-fiscalite .block-3 .content .items .item .image {
    margin-bottom: 10px;
}

.section.section-fiscalite .block-3 .content .items {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 30px;
    border-bottom: 2px solid #fff;
}

.section.section-fiscalite .block-3 .items .item {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    padding-bottom: 86px;
}

.section.section-fiscalite .block-3 .items .item .montant {
    margin-bottom: 10px;
    text-align: center;
}

.section.section-fiscalite .block-3 .items .item .montant p {
    color: #EE334E;
    font-size: 30px;
    background-color: #fff;
    font-family: 'Phudu-ExtraBold';
    width: fit-content;
    margin: 0 auto;
    padding: 0 5px;
    border-radius: 4px;
}

.section.section-fiscalite .block-3 .items .item .montant span {
    color: #fff;
    display: block;
}

.section.section-fiscalite .block-3 .items .item .montant .grand {
    font-family: 'Poppins-SemiBold';
    font-size: 18px;
    margin-top: 10px;
}

.section.section-fiscalite .block-3 .items .item .montant .petite {
    font-family: 'Poppins-Regular';
    font-size: 16px;
}

.section.section-fiscalite .block-3 .items .item .divider {
    width: 2px;
    height: 24px;
    background-color: #fff;
    margin: 0 auto;
}

.section.section-fiscalite .block-3 .items .item .text {
    margin: 10px 0;
    padding: 0 10px;
}

.section.section-fiscalite .block-3 .items .item .text p {
    color: #fff;
    font-size: 22px;
    font-family: 'Poppins-Light';
    margin-bottom: unset;
}

.section.section-fiscalite .block-3 .items .item .text p span {
    color: #F3D6CB;
}

.section.section-fiscalite .block-3 .items .item .btn {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
}

.section.section-fiscalite .block-3 .items .item .btn a {
    font-size: 24px;
    padding: 18px 28px;

}

/**block chart***/

.section.section-fiscalite .col-chart .content-chart {
    width: 845px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
}

.section.section-fiscalite .col-chart .content-chart .image {
    width: 25%;
    max-width: 100%;
}

.section.section-fiscalite .col-chart .content-chart .text {
    width: 73%;
    max-width: 100%;
}

.section.section-fiscalite .col-chart .content-chart .text p {
    color: #fff;
    font-size: 28px;
    font-family: 'Poppins-Light';
    line-height: 38px;
}

.section.section-fiscalite .col-chart .content-chart .text p span {
    font-family: 'Poppins-Medium';
    background-color: #EE334E;
    padding: 5px 5px;
}

/*****section chiffres******/
.section.section-chiffres {
    width: 100%;
    max-width: 100%;
    margin-bottom: 50px;
    padding: 0 15px;
}

.section.section-chiffres .container {
    background-color: #FAEEEA;
    padding: 40px 0;

}

.section.section-chiffres .block-1 .content {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px 0;
    position: relative;
    z-index: 1111;
}

.section.section-chiffres .block-1 .content .image-chien {
    width: 20%;
    max-width: 100%;
}

.section.section-chiffres .block-1 .content .text {
    width: 50%;
    max-width: 100%;
}

.section.section-chiffres .block-1 .content .image-icone {
    width: 20%;
    max-width: 100%;
}

.section.section-chiffres .block-1 .content .text p {
    font-size: 60px;
    color: #2C42B1;
    font-family: 'Phudu-ExtraBold';
    line-height: 70px;
}

/***block-2***/
.section.section-chiffres .block-2 {
    margin-bottom: 40px;
}

.section.section-chiffres .block-2 .last-contenu {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    background-color: #fff;
    justify-content: space-between;
    align-items: flex-start;
    padding: 35px 35px;
    position: relative;
    z-index: 1111;
    gap: 30px;
}

.section.section-chiffres .block-2 .last-contenu .item {
    width: calc(100%/ 3);
}

.section.section-chiffres .block-2 .last-contenu .item h5 {
    color: #2C42B1;
    font-size: 30px;
    font-family: 'Phudu-ExtraBold';
}

.section.section-chiffres .block-2 .last-contenu .item .text p {
    color: #2C42B1;
    font-size: 22px;
    font-family: 'Poppins-Light';
}

.section.section-chiffres .block-2 .last-contenu .item .numberes {
    display: flex;
    gap: 5px;
}

/***block-3****/
.section.section-chiffres .block-3 {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
}

.section.section-chiffres p {
    margin: unset;
}

.section.section-chiffres .block-3 .content {
    width: 970px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section.section-chiffres .block-3 .content .texte p {
    color: #2C42B1;
    font-size: 30px;
    text-align: center;
    font-family: 'Poppins-Medium';
}

.section.section-chiffres .block-3 .content .titre {
    margin-bottom: 15px;
}

.section.section-chiffres .block-3 .content .titre h2 {
    color: #EE334E;
    font-size: 64px;
    font-family: 'Phudu-ExtraBold';
}


/*****section footer*****/
.section.section-footer {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
}

.section.section-footer .container {
    background-color: #fff;
    position: relative;
}

.section.section-footer .container .content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.section.section-footer .container .content .logo-footer {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.section.section-footer .container .content .text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section.section-footer .container .content .logo-footer img {
    width: 140px;
    max-width: 100%;
    background: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.section.section-footer .container .content .mention-legal a {
    font-size: 16px;
    text-decoration: none;
    color: #2C42B1;
    font-family: 'Poppins-Regular';
}

.section.section-footer .container .content .mention-legal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section.section-footer .container .content .mention-legal a:hover {
    color: #EE334E;
    text-decoration: underline;
}

.section.section-footer .container .content .mention-legal .divider-div {
    width: 2px;
    height: 16px;
    background-color: #2C42B1;
}

.section.section-footer .container .content .association {
    text-align: center;
}

.section.section-footer .container .content .association span {
    color: #2C42B1;
    font-size: 14px;
    font-family: 'Poppins-Light';
}

.section.section-footer .container .content .minde-me {
    display: flex;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.section.section-footer .container .content .minde-me span {
    color: #2C42B1;
    font-size: 14px;
    font-family: 'Poppins-Light';
}


/*********responsive********/
@media only screen and (max-width: 1500px) {

    header .content .logo img {
        width: 170px;
    }

    .section.section-footer .container .content .logo-footer img {
        width: 130px;
    }

    /**section hero***/
    .section.section-hero .content .col-hero .titre-hero .texte p {
        font-size: 27px;
    }

    .section.section-hero .content .col-hero .titre-hero .titre h1 {
        font-size: 100px;
    }

    .section.section-hero .content .col-hero .titre-hero .txt-icone .txt h3 {
        font-size: 50px;
    }

    .section.section-hero .content .col-hero .titre-hero::before {
        content: '';
        position: absolute;
        width: 220px;
        height: 170px;
        top: -23%;
    }

    .section.section-hero .content .col-hero .icone-video i {
        font-size: 70px;
    }

    /* 
    .section.section-hero .content .col-hero {
        gap: 5px;
    } */

    .section.section-hero .content .col-hero .icone-video .lire-video span {
        font-size: 17px;
    }

    /***don-form***/

    .calcul-cnt .calcul-btn .btn-calcul a {
        padding: 0px 50px;
        font-size: 28px;
    }

    .calcul-cnt .calcul-btn .btn-calcul.input input {
        font-size: 17px;
        width: 170px;
        height: 46px;
    }
    .calcul-cnt .calcul-btn .btn-calcul.input .subtext p {
        margin-top: 6px;
    }

    .subtext p span {
        font-size: 14px;
    }

    .calcul-btn-don a {
        padding: 15px 46px;
        font-size: 20px;
    }

    .section.section-hero .content .col-hero .icone-video a {
        gap: 5px;
    }









    /*****section champion***/
    .section.section-champion .content .text p {
        font-size: 65px;
        line-height: 60px;
    }

    .section.section-champion .content {
        padding: 40px;
    }

    .section.section-champion .content .image {
        width: 22%;
        max-width: 100%;
    }

    /**section parcour****/
    /**1**/
    .section.section-parcour .container {
        padding: 70px 30px 30px;
    }

    .section.section-parcour .content .text::before,
    .section.section-hero .content .col-hero .titre-hero::after {
        font-size: 22px;
    }

    .section.section-parcour .content .text {
        padding: 30px;
    }

    .section.section-parcour .content .text .text-content {
        gap: 10px;
        margin: 15px 0;
    }

    .section.section-parcour .content .text .titre {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .section.section-parcour .content .text .titre p {
        font-size: 25px;
    }

    .section.section-parcour .content .text .titre span {
        font-size: 15px;
    }

    .section.section-parcour .content .text .icone img {
        width: 60px;
    }

    .section.section-parcour .content .text .text-content p {
        font-size: 20px;
    }

    .section.section-parcour .content .img::before {
        content: '';
        position: absolute;
        width: 170px;
        height: 153px;
    }

    .section.section-parcour .content .img .info p,
    .section.section-parcour .content .img .info span {
        font-size: 25px;
        line-height: 25px;
    }

    .section.section-parcour .container .titre-btn .titre h3 {
        font-size: 25px;
    }

    .btn a {
        font-size: 25px;
        padding: 12px 50px;
    }

    /**2**/
    .section.section-parcour.parcour-2 .content .text::before,
    .section.section-parcour.parcour-3 .content .text::before,
    .section.section-parcour.parcour-4 .content .text::before {
        font-size: 22px;
    }

    .section.section-parcour.parcour-3 .content .img::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 200px;
    }

    .section.section-parcour.parcour-4 .content .img::before {
        content: '';
        position: absolute;
        width: 176px;
        height: 150px;
    }

    /*******section fescalite***/
    /**block-1**/
    .section.section-fiscalite .block-1 .content .text p {
        font-size: 65px;
        line-height: 60px;
    }

    .section.section-fiscalite .block-1 .content {
        padding: 10px 40px;

    }

    .section.section-fiscalite .block-1 .content .image {
        width: 22%;
        max-width: 100%;
        text-align: center;
    }

    .section.section-fiscalite .block-1 .content .image IMG {
        height: 270px;
    }

    /***block-2*/

    .section.section-fiscalite .block-2 .content .titre h3 {
        font-size: 50px;
    }

    .section.section-fiscalite .block-2 .content .text p {
        font-size: 26px;

    }

    /**block-3***/
    .section.section-fiscalite .block-3 .items .item .montant p {
        font-size: 25px;
    }

    .section.section-fiscalite .block-3 .items .item .montant .grand {
        font-size: 16px;
    }

    .section.section-fiscalite .block-3 .items .item .montant .petite {
        font-size: 15px;
    }

    .section.section-fiscalite .block-3 .items .item .text p {
        font-size: 20px;
    }

    .section.section-fiscalite .block-3 .items .item .btn a {
        font-size: 22px;
    }

    .section.section-fiscalite .block-3 .content {
        padding: 40px;
    }

    .section.section-fiscalite .col-chart .content-chart .text p {
        font-size: 25px;
        line-height: 38px;
        margin: unset;
    }

    .section.section-fiscalite .col-chart .content-chart .image {
        width: 22%;
    }

    .section.section-fiscalite .block-3 .content .items {
        padding-bottom: 15px;
    }

    .section.section-fiscalite .col-chart .content-chart {
        padding-top: 30px;
    }

    .section.section-fiscalite .col-chart .content-chart .text {
        width: 75%;
        max-width: 100%;
    }

    /**section chiffres***/
    /**block-1**/
    .section.section-chiffres .block-1 .content .text p {
        font-size: 50px;
        line-height: 45px;
    }

    .section.section-chiffres .block-1 .content {
        padding: 10px 50px 0;
    }

    .section.section-chiffres .block-1 .content .image-icone img {
        height: 200px;
    }

    .section.section-chiffres .block-1 .content .image-chien img {
        height: 300px;
    }

    /**block-2**/
    .section.section-chiffres .block-2 .last-contenu .item h5 {
        font-size: 25px;
    }

    .section.section-chiffres .block-2 .last-contenu .item .text p {
        font-size: 20px;
    }

    /**block-3**/
    .section.section-chiffres .block-3 .content .texte p {
        font-size: 25px;
    }

    .section.section-chiffres .block-3 .content .titre h2 {
        font-size: 50px;
    }

    /**section footer**/
    .section.section-footer .container .content .mention-legal a {
        font-size: 15px;
    }





}

@media only screen and (max-width: 1100px) {

    header .content .logo img{
        width: 160px;
    }
    .section.section-footer .container .content .logo-footer img {
        width: 120px;
    }

    /**section hero**/
    .section.section-hero .content .col-hero .titre-hero .texte p {
        font-size: 22px;
    }

    .section.section-hero .content .col-hero .titre-hero .titre h1 {
        font-size: 85px;
    }

    .section.section-hero .content .col-hero .titre-hero .txt-icone .txt h3 {
        font-size: 40px;
        margin: unset;
    }

    .section.section-hero .content .col-hero .titre-hero .txt-icone .flech img {
        height: 20px;
    }

    .section.section-hero .content .col-hero .icone-video i {
        font-size: 70px;
    }

    .section.section-hero .content .col-hero .icone-video .lire-video span {
        font-size: 15px;
    }

    .section.section-hero .content .col-hero {
        gap: 0px;
    }

    .section.section-hero .content .col-hero .titre-hero {
        width: 75%;
    }

    .section.section-hero .content .col-hero .titre-hero::before {
        content: '';
        position: absolute;
        width: 170px;
        height: 140px;
        top: -21%;
    }

    .section.section-hero .content .col-hero {
        bottom: 6%;
    }

    /****don form****/

    .calcul-cnt .calcul-btn .btn-calcul a {
        padding: 0px 39px;
        font-size: 23px;
    }

    .calcul-cnt .calcul-btn .btn-calcul.input input {
        font-size: 15px;
        width: 150px;
        height: 38px;
    }

    .calcul-btn-don a {
        padding: 13px 38px;
        font-size: 17px;
    }

    .subtext p {
        font-size: 12px;
        line-height: 16px;
    }

    .subtext p span {
        font-size: 12px;
    }

    .calcul-cnt .calcul-btn .btn-calcul.input .subtext p {
        margin-top: 6px;
    }

    .navbar-expand-lg {
        padding: 6px 0;
    }





    /***section champion***/
    .section.section-champion .content .text p {
        font-size: 45px;
        line-height: 45px;
    }

    .section.section-champion .content {
        padding: 30px;
    }

    /****section parcour****/
    .section.section-parcour .content .text {
        padding: 20px;
    }

    .section.section-parcour .content .text::before,
    .section.section-parcour.parcour-2 .content .text::before,
    .section.section-parcour.parcour-3 .content .text::before,
    .section.section-parcour.parcour-4 .content .text::before,
    .section.section-hero .content .col-hero .titre-hero::after {
        font-size: 20px;
    }

    .section.section-parcour .content .text .titre p {
        font-size: 20px;
    }

    .section.section-parcour .content .text .titre span {
        font-size: 14px;
    }

    .section.section-parcour .content .text .icone img {
        width: 50px;
    }

    .section.section-parcour .content .text .text-content p {
        font-size: 18px;
        margin: unset;
    }

    .section.section-parcour .content .text .text-content {
        gap: 10px;
        margin: 10px 0;
    }

    .section.section-parcour .content .text .petite-icon img {
        width: 28px;
    }

    .section.section-parcour .content .img::before {
        width: 140px;
        height: 130px;
    }

    .section.section-parcour .content .img .info p,
    .section.section-parcour .content .img .info span {
        font-size: 22px;
        line-height: 22px;
    }

    .section.section-parcour .container .titre-btn .titre h3 {
        font-size: 22px;
    }

    .btn a {
        font-size: 22px;
        padding: 12px 50px;
    }

    .section.section-parcour .container .titre-btn {
        padding: 20px 20px;
    }

    /**parcour-2***/
    .section.section-parcour.parcour-2 .content .img::before {
        width: 130px;
        height: 130px;
        bottom: 5%;
    }

    /**parcour-3**/
    .section.section-parcour.parcour-3 .content .img::before {
        content: '';
        position: absolute;
        width: 220px;
        height: 170px;
    }

    /**parcour-3**/
    .section.section-parcour.parcour-4 .content .img::before {
        content: '';
        position: absolute;
        width: 116px;
        height: 98px;
    }

    /****section fescalite*****/
    /**block-1**/
    .section.section-fiscalite .block-1 .content {
        padding: 10px 30px;
    }

    .section.section-fiscalite .block-1 .content .text p {
        font-size: 45px;
        line-height: 45px;
    }

    .section.section-fiscalite .block-1 .content .image IMG {
        height: 210px;
    }

    /**block-2**/
    .section.section-fiscalite .block-2 .content .titre h3 {
        font-size: 35px;
    }

    .section.section-fiscalite .block-2 .content .text p {
        font-size: 22px;
    }

    /**block-3**/
    .section.section-fiscalite .block-3 .content {
        padding: 20px;
    }

    .section.section-fiscalite .block-3 .items .item .montant p {
        font-size: 22px;
    }

    .section.section-fiscalite .block-3 .items .item .montant .grand {
        font-size: 15px;
    }

    .section.section-fiscalite .block-3 .items .item .divider {
        height: 18px;
    }

    .section.section-fiscalite .block-3 .items .item .text p {
        font-size: 18px;
        margin: unset;
    }

    .section.section-fiscalite .block-3 .items .item .btn a {
        font-size: 19px;
        padding: 15px 28px;
    }

    .section.section-fiscalite .col-chart .content-chart .image {
        width: 20%;
    }

    .section.section-fiscalite .col-chart .content-chart .text p {
        font-size: 22px;
        line-height: 33px;
        margin: unset;
    }

    .section.section-fiscalite .col-chart .content-chart .text {
        width: 78%;
        max-width: 100%;
    }


    /***section chiffres****/
    /**block-1**/
    .section.section-chiffres .container {
        background-color: #FAEEEA;
        padding: 30px 0;
    }

    .section.section-chiffres .block-1 .content {
        padding: 10px 30px 0;
    }

    .section.section-chiffres .block-1 .content .text p {
        font-size: 40px;
        line-height: 40px;
    }

    .section.section-chiffres .block-1 .content .image-chien img {
        height: 260px;
    }

    .section.section-chiffres .block-1 .content .image-icone img {
        height: 170px;
    }

    /**block-2**/
    .section.section-chiffres .block-2 .last-contenu {
        padding: 25px 25px;
    }

    .section.section-chiffres .block-2 .last-contenu .item h5 {
        font-size: 22px;
    }

    .section.section-chiffres .block-2 .last-contenu .item .text p {
        font-size: 18px;
    }

    /**block-3**/
    .section.section-chiffres .block-3 .content .texte p {
        font-size: 22px;
    }

    .section.section-chiffres .block-3 .content .titre h2 {
        font-size: 40px;
    }

    .section.section-chiffres .block-3 .content .titre {
        margin-bottom: 10px;
    }

    /**section footer**/
    .section.section-footer .container .content .logo-footer img {
        width: 120px;
    }


}

@media only screen and (max-width: 992px) {
    .dnon-mobile {
        display: none;
    }

    .nav-mobile {
        display: flex;
        justify-content: center;
        box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
        position: fixed;
        bottom: 0;
        z-index: 99999;
        left: 0;
        right: 0;
        width: 1440px;
        max-width: 100%;
        margin: 0 auto;
        padding: 8px 0;
        background-color: #EAC7B9 !important;
    }

    .navbar-expand-lg {
        bottom: unset;
        top: 0;
        padding: unset;
        z-index: 999999;
    }

    .navbar-collapse {
        height: 100vh;
        display: flex;
        flex-direction: column;
        gap: 10%;
        width: 100%;
        max-width: 100%;
    }

    .d-mobile {
        display: flex;
        align-items: center;
        align-items: flex-start;
        padding: 0px 30px;
        justify-content: space-between;
        width: 100%;
    }

    .close-btn {
        width: 36px;
        height: 36px;
        border-radius: 50px !important;
        padding: unset;
        margin-top: 20px;
        background: #2C42B1;
        color: #EAC7B9;
    }



    body .navbar>.container-fluid {
        justify-content: center;
        gap: 30px;
    }

    .navbar-expand-lg .navbar-nav {
        width: 500px;
        margin: 0 auto;
        text-align: center;
        max-width: 100%;
    }

    .navbar-nav .nav-item.li-btn {
        justify-content: center;
        margin-top: 20px;
    }

    .calcul-cnt.container-sx {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }

    .calcul-cnt .calcul-btn {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }

    .calcul-cnt .calcul-btn .btn-calcul {
        width: 400px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .calcul-cnt .calcul-btn .btn-calcul a {
        padding: 6px 50px;
        font-size: 30px;
        width: 290px;
        max-width: 100%;
        text-align: center;
    }

    .calcul-cnt .calcul-btn .btn-calcul.input input {
        font-size: 20px;
        width: 299px;
        height: 61px;
    }

    .calcul-cnt .calcul-btn-don {
        width: 300px;
        max-width: 100%;
    }

    .calcul-btn-don a {
        padding: 25px 72px;
        font-size: 24px;
    }

    .subtext p {
        font-size: 17px;
    }

    .subtext p span {
        font-size: 17px;
    }

    .btn-calcul .active+.subtext p {
        margin-top: 10px;
    }

    .calcul-cnt .calcul-btn .btn-calcul.input .subtext p {
        margin-top: 10px;
    }







}

@media only screen and (max-width: 800px) {
    .br-mobile {
        display: block;
    }

    /**section hero**/
    .section.section-hero {
        padding: unset;
    }

    .section.section-hero .content .col-hero {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
        row-gap: 20px;
    }

    .section.section-hero .content .col-hero .lire-video {
        width: 100%;
    }

    .section.section-hero .content .col-hero .titre-hero {
        width: 97%;
        margin: unset;
        margin-right: auto;
        padding: 20px 20px 35px;
    }

    .section.section-hero .content .col-hero .lire-video {
        display: none;
    }

    .section.section-hero .content .col-hero .icone-video i {
        font-size: 100px;
        color: #fff;
    }

    .section.section-hero .content .col-hero .titre-hero .texte {
        width: 77%;
        max-width: 100%;
    }

    .section.section-hero .content .col-hero .titre-hero .texte p {
        margin: unset;
        font-size: 19px;
    }

    .section.section-hero .content .col-hero .titre-hero .titre h1 {
        font-size: 70px;
    }

    .section.section-hero .content .col-hero .titre-hero .txt-icone .txt h3 {
        font-size: 30px;
        margin: unset;
    }

    .section.section-hero .content .col-hero .titre-hero::before {
        content: '';
        position: absolute;
        width: 150px;
        height: 130px;
        top: -31%;
    }

    .section.section-hero .content .col-hero .titre-hero .txt-icone .flech img {
        height: 17px;
    }

    /***don form***/

    .d-mobile .logo-mobile img {
        width: 120px;
        max-width: 100%;
        background: #fff;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        padding: 25px 10px 15px;
    }

    /**section champion**/

    .section.section-champion {
        padding: unset;
    }

    .section.section-champion .container {
        padding: unset;
    }

    .section.section-champion .container::before {
        background-color: unset;
    }

    .section.section-champion .content {
        align-items: flex-start;
    }

    .section.section-champion .content .text p {
        font-size: 40px;
        line-height: 40px;
    }

    .section.section-champion .content {
        padding: 20px;
    }

    /**section parcour***/
    .section.section-parcour {
        padding: unset;
    }

    header .content .logo img,
    .d-mobile .logo-mobile img {
        width: 150px;
    }

    .section.section-parcour .container {
        padding: unset;
    }

    .section.section-parcour .content {
        flex-wrap: wrap;
    }

    .section.section-parcour .content.rev {
        flex-direction: column-reverse;
    }

    .section.section-parcour .content .text {
        width: 100%;
    }

    .section.section-parcour .content .text::before,
    .section.section-parcour.parcour-2 .content .text::before,
    .section.section-parcour.parcour-3 .content .text::before,
    .section.section-parcour.parcour-4 .content .text::before,
    .section.section-hero .content .col-hero .titre-hero::after {
        font-size: 18px;
    }

    .section.section-parcour .content .text .titre p {
        font-size: 18px;
    }

    .section.section-parcour .content .text .text-content p {
        font-size: 17px;
        margin: unset;
    }

    .section.section-parcour .content .text .icone img {
        width: 40px;
    }

    .section.section-parcour .content .img {
        width: 100%;
        height: 745px;
    }

    .section.section-parcour .content .img .info p,
    .section.section-parcour .content .img .info span {
        font-size: 20px;
        line-height: 20px;
    }

    .section.section-parcour .container .titre-btn .titre h3 {
        font-size: 20px;
    }

    .btn a {
        font-size: 20px;
        padding: 12px 50px;
    }

    /***parcour-2***/
    .section.section-parcour.parcour-2 .content .img {
        width: 100%;
        height: 865px;
    }

    .section.section-parcour.parcour-3 .content .img {
        width: 100%;
    }

    .section.section-parcour.parcour-4 .content .img {
        width: 100%;
    }

    /***section fescalite****/
    .section.section-fiscalite {
        padding: unset;
    }

    .section.section-fiscalite .container {
        width: 100%;
        padding: unset;
    }

    /**block-1**/

    .section.section-fiscalite .block-1 {
        margin: unset;
    }

    .section.section-fiscalite .block-1 .content {
        width: 100%;
        padding: 10px 20px;
    }

    .section.section-fiscalite .block-1 .content .text p {
        font-size: 40px;
        line-height: 40px;
    }

    .section.section-fiscalite .block-1 .content .image img {
        height: 140px;
    }

    /**block-2**/
    .section.section-fiscalite .block-2,
    .section.section-fiscalite .block-3 {
        width: 100%;
    }

    .section.section-fiscalite .block-2 .content .titre h3 {
        font-size: 30px;
    }

    .section.section-fiscalite .block-2 .content .text p {
        font-size: 20px;
    }

    /***block-3**/
    .section.section-fiscalite .block-3 {
        margin-left: 0;
        margin-right: 0;
    }

    .section.section-fiscalite .block-3 .content .items {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .section.section-fiscalite .block-3 .items .item {
        width: 45%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section.section-fiscalite .block-3 .items .item .montant p {
        font-size: 20px;
    }

    .section.section-fiscalite .block-3 .items .item .montant .grand,
    .section.section-fiscalite .block-3 .items .item .montant .petite {
        font-size: 14px;
    }

    .section.section-fiscalite .block-3 .items .item .text p {
        font-size: 17px;
        margin: unset;
    }

    .section.section-fiscalite .block-3 .items .item .btn a {
        font-size: 16px;
        padding: 13px 26px;
    }

    .section.section-fiscalite .block-3 .content .items .item .image {
        width: 260px;
        max-width: 100%;
    }

    .section.section-fiscalite .block-3 .items .item {
        padding-bottom: 70px;
    }

    .section.section-fiscalite .col-chart .content-chart .text p {
        font-size: 20px;
        line-height: 29px;
    }


    /****section chiffres**/
    .section.section-chiffres {
        padding: unset;
    }

    /**block-1**/
    .section.section-chiffres .block-1 .content .text p {
        font-size: 30px;
        line-height: 30px;
    }

    .section.section-chiffres .block-1 .content .image-chien img {
        height: 210px;
    }

    .section.section-chiffres .block-1 .content .image-icone img {
        height: 130px;
    }

    .section.section-chiffres .block-1 .content {
        padding: 10px 20px 0;
    }

    .section.section-chiffres .container {
        background-color: #FAEEEA;
        padding: 0 0 30px 0;
    }

    /**block-2**/

    .section.section-chiffres .block-2 .last-contenu {
        flex-wrap: wrap;
    }

    .section.section-chiffres .block-2 .last-contenu .item {
        width: 70%;
    }

    /**block-3**/
    .section.section-chiffres .block-2 {
        margin-bottom: 30px;
    }

    .section.section-chiffres .block-3 .content .titre h2 {
        font-size: 35px;
    }

    .btn a {
        font-size: 18px;
        padding: 12px 50px;
    }

    /**section footer**/
    .section.section-footer {
        padding: unset;
    }

    .section.section-footer .container .content .logo-footer {
        position: unset;
        transform: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .section.section-footer .container .content {
        flex-wrap: wrap;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 10px 30px;
        row-gap: 10px;
    }

    .section.section-footer .container .content .text {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }





}

@media only screen and (max-width: 500px) {
    .section.section-hero .content .col-hero {
        position: unset;
    }

    .section.section-hero .container {
        height: 626px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .section.section-hero {
        height: unset;
    }

    .section.section-hero .container {
        padding-left: unset;
    }

    /**section hero**/

    header .content .logo img,
    .d-mobile .logo-mobile img {
        width: 120px;
    }

    .section.section-hero .content .col-hero .titre-hero .texte p {
        margin: unset;
        font-size: 22px;
    }

    .section.section-hero .content .col-hero .titre-hero .titre h1 {
        font-size: 46px;
    }

    .section.section-hero .content .col-hero .titre-hero .txt-icone .txt h3 {
        font-size: 25px;
        margin: unset;
    }

    .section.section-hero .content .col-hero .icone-video i {
        font-size: 82px;
    }

    .section.section-hero .content .col-hero .titre-hero::before {
        content: '';
        position: absolute;
        width: 190px;
        height: 150px;
        top: -31%;
    }

    .section.section-hero .content .col-hero {
        row-gap: 50px;
    }

    /*****don form****/
    .calcul-cnt .calcul-btn .btn-calcul a {
        padding: 0px 25px;
        font-size: 32px;
        height: 50px;
        width: 200px;
        text-align: center;
        max-width: 100%;
    }

    .calcul-cnt .calcul-btn .btn-calcul.input input {
        font-size: 20px;
        width: 200px;
        height: 50px;
    }

    .subtext p {
        font-size: 13px;
    }

    .subtext p span {
        font-size: 14px;
    }

    .calcul-btn-don a {
        padding: 18px 10px;
        font-size: 24px;
        width: 200px;
        max-width: 100%;
    }

    .calcul-cnt .calcul-btn {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }


    .d-mobile {
        padding: 0px 0;
    }

    header .content .logo {
        padding: 0;
    }




    /**section champion***/
    .section.section-champion .content .text {
        width: 66%;
        max-width: 100%;
    }

    .section.section-champion .content .text p {
        font-size: 38px;
        line-height: 38px;
    }

    .section.section-champion .content .image {
        width: 31%;
        max-width: 100%;
    }

    /**section parcour***/

    .section.section-parcour .content .text::before,
    .section.section-parcour.parcour-2 .content .text::before,
    .section.section-parcour.parcour-3 .content .text::before,
    .section.section-parcour.parcour-4 .content .text::before,
    .section.section-hero .content .col-hero .titre-hero::after {
        font-size: 16px;
        top: -15px;
    }


    .section.section-parcour .content .text .titre p {
        font-size: 22px;
    }

    .section.section-parcour .content .text .titre span {
        font-size: 12px;
    }

    .section.section-parcour .content .text .icone {
        margin-bottom: 15px;
    }

    .section.section-parcour .content .text .text-content p {
        font-size: 16px;
        margin: unset;
    }

    .section.section-parcour .content .img {
        width: 100%;
        height: 500px;
    }

    .section.section-parcour .content .img .info p,
    .section.section-parcour .content .img .info span {
        font-size: 22px;
        line-height: 22px;
    }

    .section.section-parcour .content .img .info {
        right: 3%;
    }

    .section.section-parcour .content .img::before {
        left: 6%;
    }

    .section.section-parcour .container .titre-btn .titre h3 {
        font-size: 22px;
    }

    .btn a {
        font-size: 24px;
        padding: 13px 25px;
    }

    .section.section-parcour.parcour-2 .content .img {
        width: 100%;
        height: 570px;
    }

    .section.section-parcour.parcour-2 .content .img::before {
        width: 115px;
        height: 113px;
        bottom: 5%;
    }

    .section.section-parcour.parcour-2 .content .img .info {
        left: 3%;
    }

    .section.section-parcour.parcour-3 .content .img::before {
        content: '';
        position: absolute;
        width: 210px;
        height: 170px;
    }

    /***section fescalite***/

    .section.section-fiscalite .block-1 .content .text p {
        font-size: 38px;
        line-height: 38px;
    }

    .section.section-fiscalite .block-2 .content {
        background-image: url('../images/bg-fiscalite-mob.png');
    }

    .section.section-fiscalite .block-2 .content {
        padding: 13% 9% 5%;
    }

    .section.section-fiscalite .block-2 .content .text p {
        font-size: 22px;
    }

    .section.section-fiscalite .block-3 {
        margin-top: -5%;
    }

    .section.section-fiscalite .block-3 .items .item .montant p {
        font-size: 22px;
    }

    .section.section-fiscalite .block-3 .items .item .montant .grand {
        font-size: 13px;
    }

    .section.section-fiscalite .block-3 .items .item .montant .petite {
        font-size: 12px;
    }

    .section.section-fiscalite .block-3 .items .item .text p {
        font-size: 16px;
        margin: unset;
    }

    .section.section-fiscalite .block-3 .items .item .text {
        padding: unset;
    }

    .section.section-fiscalite .block-3 .items .item .btn a {
        font-size: 18px;
        padding: 13px 20px;
    }

    .section.section-fiscalite .col-chart .content-chart {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 20px;
    }

    .section.section-fiscalite .col-chart .content-chart .image {
        width: 40%;
    }

    .section.section-fiscalite .col-chart .content-chart .text {
        width: 100%;
    }

    .section.section-fiscalite .col-chart .content-chart .text p {
        font-size: 22px;
        line-height: 30px;
    }

    .section.section-fiscalite {
        margin-bottom: 30px;
    }

    .section.section-chiffres .block-1 .content {
        align-items: flex-start;
        padding: 20px;
    }

    .section.section-chiffres .block-1 .content .image-chien,
    .section.section-chiffres .block-1 .content .image-icone {
        margin-top: 10px;
    }

    .section.section-chiffres .block-1 .content .image-chien img {
        height: auto;
    }

    .section.section-chiffres .block-1 .content .image-icone img {
        height: 90px;
    }

    .section.section-chiffres .block-2 .last-contenu .item {
        width: 100%;
    }

    .section.section-chiffres .block-2 .last-contenu .item .text p {
        font-size: 16px;
    }

    .section.section-chiffres .block-2 .last-contenu {
        padding: 20px 20px;
        gap: 20px;
    }

    .section.section-chiffres .block-3 .content .texte {
        padding: 0 20px;
    }

    .section.section-chiffres .block-3 .content .titre h2 {
        font-size: 30px;
    }

    .section.section-chiffres .block-3 .content .btn a {
        font-size: 24px;
        padding: 15px 28px;
    }

    .section.section-chiffres .block-3 .content .titre {
        padding: 0 20px;
    }

    .section.section-chiffres .block-1 .content .text {
        width: 55%;
        max-width: 100%;
    }

    .section.section-chiffres .block-1 .content .text p {
        font-size: 22px;
        line-height: 27px;
    }

    /***section footer***/
    .section.section-footer .container .content .logo-footer img {
        width: 100px;
    }

    .section.section-footer .container .content .mention-legal a {
        font-size: 12px;
    }

    .section.section-footer .container .content .mention-legal {
        gap: 5px;
    }

    .section.section-footer .container .content .mention-legal .divider-div {
        height: 11px;
    }

    .section.section-footer .container .content .association span {
        font-size: 10px;
    }

    .section.section-footer .container .content .minde-me span {
        font-size: 10px;
    }

    .section.section-footer .container .content .minde-me img {
        width: 60px;
    }

    .section.section-footer .container .content {
        padding: 10px 10px 15px;
    }






}

@media only screen and (max-width: 424px) {
    .section.section-footer .container .content .minde-me {
        gap: 10px;
    }

    .section.section-footer .container .content .minde-me img {
        width: 45px;
    }

    /**section hero**/
    header .content .logo img,
    .d-mobile .logo-mobile img {
        width: 110px;
    }

    .section.section-hero .content .col-hero .titre-hero .texte p {
        margin: unset;
        font-size: 20px;
    }

    .section.section-hero .content .col-hero .titre-hero .titre h1 {
        font-size: 36px;
    }

    .section.section-hero .content .col-hero .titre-hero .txt-icone .txt h3 {
        font-size: 23px;
        margin: unset;
    }

    .section.section-hero .content .col-hero .titre-hero::before {
        width: 150px;
        height: 130px;
        top: -31%;
    }

    .section.section-hero .content .col-hero .icone-video i {
        font-size: 77px;
    }


    /**don form**/
    .calcul-cnt .calcul-btn .btn-calcul a {
        padding: 0px 25px;
        font-size: 28px;
        width: 180px;
    }

    .calcul-cnt .calcul-btn .btn-calcul.input input {
        font-size: 17px;
        width: 180px;
        height: 50px;
    }

    .calcul-cnt .calcul-btn {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .calcul-cnt.container-sx {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    .subtext p {
        font-size: 12px;
    }

    .subtext p span {
        font-size: 13px;
    }

    .calcul-btn-don a {
        padding: 18px 10px;
        font-size: 19px;
        width: 180px;
        max-width: 100%;
    }



    /**section champion**/
    .section.section-champion .content .text p {
        font-size: 30px;
        line-height: 30px;
    }

    .section.section-parcour .content .text::before,
    .section.section-parcour.parcour-2 .content .text::before,
    .section.section-parcour.parcour-3 .content .text::before,
    .section.section-parcour.parcour-4 .content .text::before,
    .section.section-hero .content .col-hero .titre-hero::after {
        font-size: 15px;
        top: -13px;
    }

    .section.section-parcour .content .text .titre p {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .section.section-parcour .content .text .titre span {
        font-size: 11px;
    }

    .section.section-parcour .content .text .text-content p {
        font-size: 15px;
        margin: unset;
    }

    .section.section-parcour .content .img {
        width: 100%;
        height: 450px;
    }

    .section.section-parcour .content .img .info p,
    .section.section-parcour .content .img .info span {
        font-size: 20px;
        line-height: 20px;
    }

    .section.section-parcour .container .titre-btn .titre h3 {
        font-size: 22px;
    }

    .btn a {
        font-size: 22px;
        padding: 13px 23px;
    }

    .section.section-parcour.parcour-2 .content .img {
        width: 100%;
        height: 520px;
    }

    .section.section-fiscalite .block-1 .content .text p {
        font-size: 30px;
        line-height: 30px;
    }

    .section.section-fiscalite .block-1 .content .image img {
        height: 130px;
    }

    .section.section-fiscalite .block-2 .content .titre h3 {
        font-size: 27px;
    }

    .section.section-fiscalite .block-2 .content .text p {
        font-size: 20px;
    }

    .section.section-fiscalite .block-2 .content {
        padding: 13% 8% 5%;
    }

    .section.section-fiscalite .block-3 .content .items {
        align-items: flex-start;
    }

    .section.section-fiscalite .block-3 .items .item .montant p {
        font-size: 20px;
    }

    .section.section-fiscalite .block-3 .items .item.sec {
        padding-bottom: 90px;
    }

    .section.section-fiscalite .block-3 .items .item .btn a {
        font-size: 15px;
        padding: 13px 16px;
    }


    .section.section-fiscalite .block-3 .items .item .text p {
        font-size: 14px;
        margin: unset;
    }

    .section.section-fiscalite .col-chart .content-chart {
        padding-top: 20px;
    }

    .section.section-fiscalite .col-chart .content-chart .image {
        width: 35%;
    }

    .section.section-fiscalite .col-chart .content-chart .text p {
        font-size: 16px;
        line-height: 25px;
    }

    .section.section-chiffres .block-1 .content .text p {
        font-size: 20px;
        line-height: 24px;
    }

    .section.section-chiffres .block-1 .content .image-chien img {
        height: auto;
    }

    .section.section-chiffres .block-1 .content .image-icone img {
        height: 90px;
    }

    .section.section-chiffres .block-2 .last-contenu .item h5 {
        font-size: 20px;
    }

    .section.section-chiffres .block-2 .last-contenu .item .text p {
        font-size: 14px;
    }

    .section.section-chiffres .block-2 .last-contenu {
        padding: 20px 20px;
        gap: 10px;
    }

    .section.section-chiffres .block-3 .content .texte p {
        font-size: 17px;
    }

    .section.section-chiffres .block-3 .content .titre h2 {
        font-size: 25px;
    }

    .section.section-chiffres .block-3 .content .btn a {
        font-size: 20px;
        padding: 13px 28px;
    }

    .section.section-chiffres .container {
        padding: 0 0 20px 0;
    }

    .section.section-footer .container .content .mention-legal a {
        font-size: 11px;
    }









}

@media only screen and (max-width: 369px) {
    .section.section-footer .container .content .minde-me span {
        font-size: 9px;
    }

    .section.section-footer .container .content {
        padding-left: unset;
        padding-right: unset;
    }

    .section.section-footer .container .content .minde-me {
        gap: 4px;
    }

    .section.section-footer .container .content .minde-me img {
        width: 35px;
    }

    /**section hero**/
    .section.section-hero .content .col-hero .titre-hero .texte p {
        margin: unset;
        font-size: 18px;
    }

    .section.section-hero .content .col-hero .titre-hero .titre h1 {
        font-size: 32px;
    }

    .section.section-hero .content .col-hero .titre-hero .txt-icone .txt h3 {
        font-size: 21px;
        margin: unset;
    }

    .section.section-hero .content .col-hero .titre-hero .txt-icone {
        gap: 10px;
    }

    .section.section-hero .content .col-hero .titre-hero::before {
        width: 130px;
        height: 106px;
        top: -22%;
    }

    /**don form**/


    .calcul-cnt .calcul-btn .btn-calcul a {
        padding: 0px 25px;
        font-size: 23px;
        width: 170px;
        height: 42px;
    }

    .calcul-cnt .calcul-btn .btn-calcul.input input {
        font-size: 15px;
        width: 170px;
        height: 42px;
    }

    .calcul-btn-don a {
        padding: 15px 10px;
        font-size: 18px;
        width: 170px;
        max-width: 100%;
    }

    .section.section-hero .content .col-hero .titre-hero {
        width: 97%;
        margin: unset;
        margin-right: auto;
        padding: 20px 20px 40px;
    }







    /**section champion**/
    .section.section-champion .content .text p {
        font-size: 26px;
        line-height: 26px;
    }

    .section.section-parcour .content .text .titre p {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .section.section-parcour .content .text .text-content p {
        font-size: 13px;
        margin: unset;
    }

    .section.section-parcour .content .img {
        width: 100%;
        height: 390px;
    }

    .section.section-parcour .content .img::before {
        width: 120px;
        height: 110px;
    }

    .section.section-parcour .content .img .info p,
    .section.section-parcour .content .img .info span {
        font-size: 17px;
        line-height: 17px;
    }

    .section.section-parcour .container .titre-btn .titre h3 {
        font-size: 18px;
    }

    .btn a {
        font-size: 20px;
        padding: 13px 23px;
    }

    .section.section-parcour.parcour-2 .content .img {
        width: 100%;
        height: 430px;
    }

    .section.section-parcour.parcour-2 .content .img::before {
        width: 95px;
        height: 94px;
        bottom: 5%;
    }

    .section.section-parcour.parcour-3 .content .img::before {
        content: '';
        position: absolute;
        width: 150px;
        height: 120px;
    }

    .section.section-parcour.parcour-4 .content .img::before {
        content: '';
        position: absolute;
        width: 96px;
        height: 82px;
    }

    .section.section-fiscalite .block-1 .content .text p {
        font-size: 26px;
        line-height: 26px;
    }

    .section.section-fiscalite .block-1 .content .image img {
        height: 130px;
    }

    .section.section-fiscalite .block-2 .content .titre h3 {
        font-size: 24px;
    }

    .section.section-fiscalite .block-2 .content .text p {
        font-size: 18px;
    }

    .section.section-fiscalite .block-3 .items .item .montant p {
        font-size: 18px;
    }

    .section.section-fiscalite .block-3 .items .item .montant .grand {
        font-size: 12px;
    }

    .section.section-fiscalite .block-3 .items .item .montant .petite {
        font-size: 10px;
    }

    .section.section-fiscalite .block-3 .items .item .text p {
        font-size: 12px;
        margin: unset;
    }

    .section.section-fiscalite .block-3 .items .item .btn a {
        font-size: 13px;
        padding: 11px 11px;
    }

    .section.section-fiscalite .col-chart .content-chart .text p {
        font-size: 15px;
        line-height: 23px;
    }

    .section.section-chiffres .block-1 .content .text p {
        font-size: 20px;
        line-height: 22px;
    }

    .section.section-chiffres .block-1 .content .image-chien img {
        height: auto;
    }

    .section.section-chiffres .block-1 .content .image-icone img {
        height: 80px;
    }

    .section.section-chiffres .block-2 .last-contenu .item h5 {
        font-size: 18px;
    }

    .section.section-chiffres .block-2 .last-contenu .item .text p {
        font-size: 13px;
    }

    .section.section-chiffres .block-3 .content .texte p {
        font-size: 16px;
    }

    .section.section-chiffres .block-3 .content .titre h2 {
        font-size: 21px;
    }

    .section.section-chiffres .block-3 .content .btn a {
        font-size: 18px;
        padding: 13px 28px;
    }

    .section.section-parcour {
        margin-bottom: 30px;
    }

    .section.section-chiffres {
        margin-bottom: 30px;
    }







}