/* Letterbox ICG */
@font-face {
    font-family: 'LetterboxICG';
    src: url('../fonts/Letterbox/Litterbox-ICG-Regular.ttf') format('truetype');
}

/* Mesmerize */
@font-face {
    font-family: 'Mesmerize_Bold';
    src: url('../fonts/Mesmerize/Mesmerize_Bold.otf') format('opentype');
}

@font-face {
    font-family: 'Mesmerize_book';
    src: url('../fonts/Mesmerize/Mesmerize_book.otf') format('opentype');
}

@font-face {
    font-family: 'Mesmerize_Rg';
    src: url('../fonts/Mesmerize/Mesmerize_Rg.otf') format('opentype');
}

/* Raleway Regular */
@font-face {
    font-family: 'Raleway-Regular';
    src: url('../fonts/Raleway/Raleway-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway-Medium';
    src: url('../fonts/Raleway/Raleway-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway-SemiBold';
    src: url('../fonts/Raleway/Raleway-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway-Bold';
    src: url('../fonts/Raleway/Raleway-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway-ExtraBold';
    src: url('../fonts/Raleway/Raleway-ExtraBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway-Heavy';
    src: url('../fonts/Raleway/Raleway-Heavy.ttf') format('truetype');
}

:root {
    /* === FONT FAMILIES === */
    --font-letterbox: 'LetterboxICG';
    --font-Mesmerize_Bold: 'Mesmerize_Bold';
    --font-Mesmerize_book: 'Mesmerize_book';
    --font-Mesmerize_Rg: 'Mesmerize_Rg';
    --font-raleway-regular: 'Raleway-Regular';
    --font-raleway-semibold: 'Raleway-SemiBold';
    --font-raleway-bold: 'Raleway-Bold';
    --font-Raleway-Medium: 'Raleway-Medium';
    --font-Raleway-Heavy: 'Raleway-Heavy';
    --font-raleway-extrabold: 'Raleway-ExtraBold';
}



html {
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    background: #fff;
}

body p,
body span {
    line-height: normal;
}

.btn:active {
    outline: none;
    border: none;
}

.btn {
    display: block;
    outline: none !important;
    border: none;
}

a {
    outline: none !important;
}

.button {
    outline: none !important;
}

body img {
    max-width: 100%
}

body p:empty {
    display: none
}

a {
    overflow: hidden;
}

.parent_container {
    width: 1250px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    margin-bottom: 70px;
}

.my-btn {
    width: fit-content;
}

.btn-video {
    width: fit-content;
}

.my-btn a {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-family: var(--font-Mesmerize_Bold);
    color: #fff;
    background-color: #D44508;
    text-decoration: none;
    text-transform: uppercase;
    padding: 15px 35px;
    border: 2px solid #D44508;
    gap: 25px;
}

.my-btn a:hover {
    color: #D44508;
}

.my-btn a:focus {
    color: #D44508;
}

.btn-video a {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-family: var(--font-Mesmerize_Bold);
    color: #D44508;
    background-color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 15px 35px;
    border: 2px solid #fff;
    gap: 20px;
}

.btn-video a:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(7169%) hue-rotate(194deg) brightness(112%) contrast(93%);
}

strong {
    font-family: var(--font-raleway-bold) !important;
}







/*-------------------- 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;
    display: -ms-flexbox;
    display: flex;
    -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: #d44508d4;
    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);

}


@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);

    }
}


@media (max-width: 640px) {
    .video-modal-content {
        width: calc(100% - 1em);
        padding-top: calc((100% - 1em) * 0.5625);

    }
}


.close-video-modal {
    display: block;
    position: absolute;
    left: 0;
    top: -40px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}


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-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**********/
@keyframes hvr-icon-pulse-grow {
    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
}

.hvr-icon-pulse-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);
}

.hvr-icon-pulse-grow .hvr-icon,
.hvr-icon-pulse-grow:focus .hvr-icon,
.hvr-icon-pulse-grow:active .hvr-icon {
    -webkit-animation-name: hvr-icon-pulse-grow;
    animation-name: hvr-icon-pulse-grow;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function:
        linear;
    animation-timing-function:
        linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.hvr-icon-pulse-grow .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-timing-function:
        ease-out;
    transition-timing-function:
        ease-out;
}

/* 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);
}

/* Bounce To Right */
.hvr-bounce-to-right {
    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);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFF;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn-video .hvr-bounce-to-right:before {
    background: #D44508;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
    color: white;
}

.hvr-bounce-to-right:hover:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Radial Out */
.hvr-radial-out {
    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);
    position: relative;
    overflow: hidden;
    background: #e1e1e1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-radial-out:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-radial-out:hover,
.hvr-radial-out:focus,
.hvr-radial-out:active {
    color: white;
}

.hvr-radial-out:hover:before,
.hvr-radial-out:focus:before,
.hvr-radial-out:active:before {
    -webkit-transform: scale(2);
    transform: scale(2);
}

/*********END HOVER**********/

/**section header*/
section.section-header {
    width: 100%;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

section.section-header .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.section-header .content .logo {
    width: 260px;
}

section.section-header .content .deduction {
    width: 152px;
}

/** section slider **/
.section.section-slider {
    height: 100vh;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.section.section-slider::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url(../images/ligne-section.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
}

.section.section-slider .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: 0;
}

.section.section-slider .parent_container {
    height: 100%;
}

.section.section-slider .content {
    height: 100%;
    width: 100%;
    position: relative;
}

.section.section-slider .hero .contenu {
    position: relative;
}

.section.section-slider .content .hero {
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    z-index: 999;
    text-align: center;
    width: 100%;
}

.section.section-slider .content .hero .first-title h1 {
    font-size: 130px;
    color: #fff;
    font-family: var(--font-letterbox);
}

.section.section-slider .content .hero .txt p {
    font-size: 24px;
    color: #fff;
    font-family: var(--font-raleway-semibold);
    text-align: center;
}

.section.section-slider .content .hero .txt .p-orange {
    font-size: 28px;
    background: url('../images/bg-txt.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    font-family: var(--font-raleway-bold);
    text-align: center;
    width: fit-content;
    padding: 3px 16px 3px 12px;
    margin: 0 auto;
    margin-top: 20px;
}

.section.section-slider .content .hero .box-btn {
    display: flex;
    gap: 20px;
    margin-top: 38px;
    justify-content: center;
}

/*****start section don form*****/
.section.section-don-form {
    position: fixed;
    bottom: 0px;
    z-index: 1111;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    background-color: rgb(56 56 56);
}

.section.section-don-form .parent_container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: unset;
}

.section.section-don-form .parent_container .bg-red {
    padding: unset;
    width: 1250px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.section.section-don-form .navbar-nav {
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    padding: 10px 0px;
    gap: 10px;
    align-items: center;
}

.navbar>.container-fluid {
    padding: unset;
}

.navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
}


.bg-red {
    background-color: #383838;
}

.navbar-expand-lg {
    /* box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.16); */
    z-index: 99;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: center;
}

li.li-heart {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-nav .nav-item.li-btn {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item .div-don>span.prix {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    font-variant: var(--font-Mesmerize_Bold) !important;
}

.navbar-nav .form-check {
    min-height: 2.5rem;
    padding-left: 20px;
}

.navbar-nav .form-check .form-check-input {
    margin-left: -2em;
    margin-top: 10px;
}

.navbar-nav .form-check-input {
    width: 30px;
    height: 30px;
}

.navbar-nav .form-check-input:checked[type=radio] {
    --bs-form-check-bg-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8' %3E%3Ccircle r='2' fill='%23D44508' /%3E%3C/svg%3E");
}

.navbar-nav .div-don {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: 3px;
    margin-left: 10px;
}

.form-text input {
    font-family: var(--font-Mesmerize_Bold);
    border: 2px solid #fff;
    padding: 13px 10px;
    background-color: transparent;
    color: #fff;
    max-width: 100%;
    width: 165px;
    font-size: 15px;
}

li.nav-item.li-star {
    width: 160px;
    color: #fff;
    max-width: 100%;
    position: relative;
}

li.nav-item.li-star:after {
    content: url('../images/etoile-filante.svg');
    top: -60px;
    right: 0;
    position: absolute;
}

li.nav-item .div-don strong {
    font-family: var(--font-Mesmerize_Bold) !important;
}

li.nav-item .div-don .euro {
    font-family: var(--font-Mesmerize_book) !important;
}

li.nav-item span.s-description.fs12 {
    font-size: 12px;
    font-family: var(--museo-sans500);
}

span.fs12.s-description.txt {
    display: block;
    line-height: 9px;
}

li.nav-item span.s-description.fs12 .bold {
    font-family: var(--museo-sans900);
}

.d-mobile {
    display: none;
}

.burger-btn {
    margin-top: 10px;
}

.close-toggler {
    position: absolute;
    right: 20px;
    top: 20px;
    border-radius: 50%;
    padding: 0px 7px;
    border: unset;
    background: var(--unnamed-color-ffd300);
}

.fixed {
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

#otherAmount::placeholder {
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.navbar-nav .form-check .form-check-input {
    border: 1px solid;
    border-color: #fff !important;
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #fff;
    box-shadow: unset !important;
}

.navbar-nav .form-check-input:checked {
    background-color: #fff;
    border-color: #fff !important;
}

.my-btn.mobile {
    display: none;
}

.section.section-don-form .parent_container .my-btn a {
    font-size: 15px;
    padding: 13px 30px;
}

.box-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}


.section.section-don-form .navbar-nav .left-text p,
.section.section-don-form .navbar-nav .left-text span {
    font-size: 15px;
    font-family: var(--font-Raleway-Heavy);
    margin: unset;
    color: #fff;
    text-transform: uppercase;
    padding-right: 15px;
}

.section.section-don-form .navbar-nav .left-text span {
    font-family: var(--font-Raleway-Medium);
    display: block;
}

.section.section-don-form .navbar-nav .montant-deduction .montant {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
}

.section.section-don-form .navbar-nav .montant-deduction {
    width: 45%;
    max-width: 100%;
    text-align: center;
}

.section.section-don-form .navbar-nav .montant-deduction .deduction span {
    color: #fff;
    font-size: 12px;
    font-family: var(--font-raleway-regular);
}

.section.section-don-form .navbar-nav .montant-deduction .deduction .result {
    font-family: var(--font-raleway-bold);
}

/*section-2*/
.section.section-2 {
    position: relative;
    margin: unset;
    background-color: #fff;
}

.section.section-2::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url(../images/ligne-section5.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
}

.section-2 .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-2 .title {
    font-size: 75px;
    font-family: var(--font-letterbox);
    color: #000000;
    margin-bottom: 10px;
}

.section-2 .subtitle {
    font-size: 40px;
    font-family: var(--font-Raleway-Heavy);
    color: #000000;
    margin-bottom: 45px;
}

.section-2 .orange {
    color: #D44507;
}

.section-2 .intro {
    font-size: 18px;
    font-family: var(--font-raleway-regular);
    margin: 0 auto 15px;
    color: #000000;
    line-height: 25px;
}

.section-2 .highlight {
    font-size: 19px;
    font-family: var(--font-raleway-bold);
    margin: 25px auto;
    color: #000000;
}

.section-2 .stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: start;
    margin: 40px 0;
    margin-bottom: 46px;
    max-width: 100%;
}

.section-2 .stat .img1 {
    width: 105px;
}

.section-2 .stat .img2 {
    width: 108px;
}

.section-2 .stat .img3 {
    width: 135px;
}

.section-2 .stat {
    width: 330px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
}

.section-2 .number {
    font-size: 26px;
    font-family: var(--font-Raleway-Heavy);
}

.section .txt p {
    margin: unset;
}

.section-2 .desc {
    font-size: 19px;
    font-family: var(--font-raleway-regular);
    color: #000000;
    margin-top: 5px;
}

.section-2 .text {
    font-size: 19px;
    font-family: var(--font-raleway-regular);
    margin: 0 auto 23px;
    color: #000000;
    margin-bottom: 20px;
}

.section-2 .call {
    font-size: 25px;
    color: #D44507;
    font-family: var(--font-raleway-bold);
    margin-bottom: 26px;
}

.section-2 .my-btn {
    padding-bottom: 70px;
}

.section-2 .my-btn a {
    border: 5px solid #FED0BB;
}

.section-2 .bottom-text {
    font-size: 19px;
    font-family: var(--font-raleway-regular);
    color: #000000;
    margin-bottom: 27px;
}

/**section-3*/

.section-3 {
    background-color: #E5E5E5;
    padding: 32px 0px;
    text-align: center;
    color: #000;
    padding-bottom: 210px;
}

.section-3 h2 {
    font-size: 40px;
    font-family: var(--font-Raleway-Heavy);
    margin-bottom: 25px;
}

.section-3 h2 span {
    color: #D44508;
}

.section-3 p {
    font-size: 19px;
    font-family: var(--font-raleway-regular);
    margin-bottom: 12px;
    line-height: 26px;
    color: #000000;
}

.section-3 .highlight {
    font-size: 19px;
    color: #D44508;
    font-family: var(--font-raleway-bold);
}

/*section-4*/

.section-4 .titre {
    background-color: #D44508;
    color: #000000;
    padding: 71px 15px 187px 15px;
}

.section-4 .title {
    text-align: center;
    font-size: 40px;
    font-family: var(--font-Raleway-Heavy);
    text-transform: uppercase;
    color: #000000;
    margin: unset;
}

.section-4 .title span {
    color: #fff;
}

.section-4 .victory-block {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    background: #fff;
    margin-top: -125px;
}

.section-4 .victory-block .image {
    width: 30%;
}

.section-4 .victory-block .text {
    width: 65%;
    padding: 45px 60px 45px 0px;
}

.section-4 .victory-block .text p {
    font-size: 19px;
    font-family: var(--font-raleway-regular);
    color: #000000;
    line-height: 27px;
}

.section-4 .victory-block .text p:last-of-type {
    margin: unset;
}

.section-4 .acat-box {
    background: #E5E5E5;
    padding: 27px 25px 43px 25px;
    margin: 45px auto 0;
    width: 876px;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-4 .acat-box .subtitle {
    font-family: var(--font-letterbox);
    font-size: 41px;
    color: #D44508;
    margin-bottom: 12px;
}

.section-4 .acat-box .stats {
    font-size: 19px;
    color: #000000;
    font-family: var(--font-raleway-regular);
    margin-bottom: 20px;
}

.section-4 .acat-box .stats span {
    font-family: var(--font-raleway-bold);
    color: #D44508;
}

.section-4 .acat-box .stats .orange-nbr {
    font-size: 32px;
}

.section-4 .acat-box .call {
    font-size: 26px;
    font-family: var(--font-raleway-regular);
    margin-bottom: 18px;
}

.section-4 .my-btn a {
    border: 5px solid #FED0BB;
    margin: 0 auto;
}

/*section-5*/
.section.section-5 {
    position: relative;
    margin: unset;
}

.section.section-5::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url(../images/ligne-section5.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
}

.section-5 .box-img.mob {
    display: none;
}

.section-5 .title {
    font-size: 40px;
    font-family: var(--font-Raleway-Heavy);
    text-transform: uppercase;
    margin-bottom: 33px;
    color: #000000;
}

.section-5 .title span {
    color: #D44508;
}

.section-5 .don-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 100px;
}

.section-5 .don-left {
    width: 45%;
}

.section-5 .don-text-orange {
    font-family: var(--font-letterbox);
    color: #D44508;
    font-size: 37px;
    line-height: 37px;
    margin-bottom: 12px;
}

.section-5 .don-desc {
    font-size: 19px;
    line-height: 27px;
    color: #000000;
    font-family: var(--font-raleway-regular);
    margin-bottom: 16px;
}

.section-5 .don-desc strong {
    font-size: 27px;
    font-family: var(--font-Raleway-Heavy) !important;
}

.section-5 .don-highlight {
    font-size: 28px;
    background: url(../images/bg-txt.png) no-repeat center center;
    background-size: cover;
    color: #fff;
    font-family: var(--font-raleway-bold);
    text-align: center;
    width: fit-content;
    padding: 3px 16px 3px 12px;
}

.section-5 .my-btn a {
    border: 5px solid #FED0BB;
}

.section-5 .don-right {
    width: 55%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-5 .don-right .box-img {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
}

.section-5 .don-right .box-img .image.two {
    margin-left: -88px;
    width: 305px;
}

.section-5 .don-right .box-img .image.one {
    width: 457px;
}

.section-5 .don-right .image-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
}

.section-5 .don-right .image-arrow {
    position: absolute;
    top: 123px;
    right: 70px;
    width: 30px;
}

.section-5 .don-right .text {
    position: absolute;
    top: 20px;
    right: 88px;
    text-align: center;
}

.section-5 .don-right .text p {
    font-size: 16px;
    font-family: var(--font-raleway-bold);
    margin: unset;
}

.section-5 .don-right .text span {
    font-size: 70px;
    font-family: var(--font-Mesmerize_Bold);
}

.section-5 .don-right .text span sup {
    font-family: var(--font-Mesmerize_Rg);
}

/*section-6*/
.section-6 {
    background-color: #E5E5E5;
    padding: 55px 0 28px 0;
    margin-bottom: unset !important;
}

.section-6 .block-droits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.section-6 .block-droits .text-part {
    width: 50%;
}

.section-6 .block-droits .text-part h2 {
    color: #000000;
    font-family: var(--font-Raleway-Heavy);
    font-size: 40px;
    margin-bottom: 40px;
}

.section-6 .block-droits .text-part h2 span {
    color: #D44508;
}

.section-6 .block-droits .text-part p {
    font-size: 19px;
    color: #000000;
    font-family: var(--font-raleway-regular);
    line-height: 27px;
}

.section-6 .block-droits .stats-part {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 30px;
    gap: 30px;
}

.section-6 .block-droits .stats-part .ligne {
    width: 2px;
    height: -webkit-fill-available;
    background-color: #D44508;
}

.section-6 .block-droits .stat {
    text-align: left;
}

.section-6 .block-droits .stat .number {
    color: #D44508;
    font-family: var(--font-Raleway-Heavy);
    font-size: 27px;
}

.section-6 .block-droits .stat p {
    font-size: 19px;
    color: #000000;
    font-family: var(--font-raleway-regular);
    margin-top: 3px;
}

.section-6 .block-droits .stats-part.mob {
    display: none;
}

/*footer*/
.footer {
    background-color: #D44508;
    padding: 54px 0 50px 0;
}

.footer .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .footer-left .logo {
    width: 250px;
}

.footer .footer-right {
    text-align: right;
}

.footer .footer-right p {
    font-size: 14px;
    font-family: var(--font-raleway-regular);
    color: #FFF;
    margin: unset;
}

.footer img.logo-mindme {
    margin-right: 10px;
    width: 55px;
}

.footer p.p-credits {
    margin-top: 30px;
    margin-bottom: 13px;
    color: #fff;
    font-size: 12px;
    font-family: var(--font-Mesmerize_book)
}

.footer p.p-ia {
    color: #fff;
    font-size: 12px;
    font-family: var(--font-Mesmerize_book)
}

.footer a {
    font-family: var(--font-raleway-bold);
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}


/****section3-tabs***/
.slider-mobile {
    display: none;
}

section.section3-tabs {
    margin-top: -190px;
}

section.section3-tabs .cols {
    display: flex;
}

section.section3-tabs .content .left-col {
    width: 50%;
}

section.section3-tabs .content .left-col .box-image {
    height: 510px;
}

section.section3-tabs .content .left-col .box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.section3-tabs .content .right-col {
    width: 50%;
    display: flex;
    align-items: center;
    position: relative;
}


section.section3-tabs .content .right-col .box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.section3-tabs .content .right-col .title p {
    font-size: 27px;
    font-family: var(--font-Raleway-Heavy);
    color: #fff;
}

section.section3-tabs .content .right-col .title .black {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    margin-bottom: 8px;
}

section.section3-tabs .content .right-col .txt p {
    font-size: 19px;
    line-height: 26px;
    font-family: var(--font-raleway-regular);
    color: #fff;
    margin-bottom: unset;
}

section.section3-tabs .content .right-col .title img {
    width: 21px;
}

section.section3-tabs .content .right-col .box-info {
    width: -webkit-fill-available;
    padding: 30px 30px 80px 50px;
    background-color: #D44508;
    margin-left: -38px;
    min-height: 355px;
}

section.section3-tabs .content .right-col .box-info {
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

section.section3-tabs .content .right-col .box-info.active {
    display: block;
    opacity: 1;
}

.box-tab .image.hidden {
    display: none;
}

section.section3-tabs .content .right-col .box-tab {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 25px;
}

section.section3-tabs .content .right-col .box-tab .image {
    width: 130px;
    height: 118px;
    cursor: pointer;
    transition: 0.3s;
}

section.section3-tabs .content .right-col .box-tab .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.section3-tabs .content .right-col .dots {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 35px;
}

section.section3-tabs .content .right-col .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);

}

section.section3-tabs .content .right-col .dot.d-active {
    background-color: #FFFFFF;

}

section.section3-tabs .content .text-bottom {
    text-align: center;
    margin: 35px auto;
}

section.section3-tabs .content .text-bottom p {
    margin: unset;
    color: #D44508;
    font-size: 27px;
    font-family: var(--font-raleway-extrabold);
}

section.section3-tabs .my-btn {
    margin: 0 auto;
    margin-bottom: 48px;
}

section.section3-tabs .my-btn a {
    border: 5px solid #FED0BB;
    margin: 0 auto;
}

section.section3-tabs .slider-tabs {
    width: 100%;
}

.my-btn.mob {
    display: none;
}



/****************Responsive*****************/
@media screen and (max-width: 1300px) {

    /**don form**/
    .navbar-nav .div-don {
        margin-top: 8px;
        margin-left: 10px;
    }

    .form-text input {
        width: 140px;
    }

    .navbar-nav .nav-item .div-don>span.prix {
        font-size: 25px;
    }

    .navbar-nav .nav-item.li-btn .my-btn a {
        font-size: 14px;
        width: 200px;
        max-width: 100%;
    }
}

@media screen and (max-width: 1200px) {

    /* section-3*/
    .section-3 p br {
        display: none;
    }

    .section-3 p {
        padding: 0px 35px;
    }

    /*section-4*/

    .section-4 .victory-block .text {
        width: 65%;
        padding: 35px 60px 35px 0px;
    }

    /* .section-4 .victory-block .image {
        height: -webkit-fill-available;
    } */

    .section-4 .victory-block .image img {
        height: 100%;
        object-fit: cover;
    }

    /*section-5*/
    .section-5 .don-right .box-img .image.one {
        width: unset;
    }

    .section-5 .don-right .box-img .image.two {
        margin-left: -66px;
        width: unset;
    }

    .section-5 .don-right .text span {
        font-size: 55px;
    }

    .section-5 .don-right .text p {
        font-size: 14px;
    }

    .section-5 .don-right .text {
        top: -5px;
        right: 77px;
    }

    .section-5 .don-right .image-arrow {
        top: 79px;
        right: 64px;
        width: 20px;
    }

    /*section-6*/
    .section-6 .block-droits .stat p br {
        display: none;
    }

    .section-6 .block-droits .stats-part {
        gap: 20px;
    }

}

@media screen and (max-width: 930px) {
    /*section-slider*/

    .section.section-slider {
        height: 100dvh;
    }

    /*don form*/
    .section.section-don-form .parent_container .bg-red {
        display: none;
    }

    .section-slider .my-btn.desk {
        display: none;
    }

    .section-2 .my-btn.mob {
        width: calc(100% - 60px);
        display: block;
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        z-index: 99;
        padding: unset;
    }

    .section.section-slider .content .hero {
        top: unset;
        left: 50%;
        transform: translateX(-50%);
        bottom: 90px;
    }

    .section.section-slider .btn-video,
    .section-2 .my-btn.mob {
        width: 100%;
    }

    .section.section-slider .btn-video a,
    .section-2 .my-btn.mob a {
        justify-content: center;
    }

    .section-2 .my-btn.mob {
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 800px) {

    /*section-slider*/
    section.section-header .content .logo {
        width: 230px;
    }

    section.section-header .content .deduction {
        width: 140px;
    }

    .section.section-slider .content .hero .first-title h1 {
        font-size: 120px;
        line-height: 95px;
    }

    .section.section-slider .content .hero .txt p {
        font-size: 22px;
    }

    .section.section-slider .content .hero .txt .p-orange {
        font-size: 26px;
    }

    /*section-2*/
    .section-2 .title {
        font-size: 72px;
    }

    .section-2 .subtitle {
        font-size: 38px;
        margin-bottom: 35px;
    }

    .section-2 .intro br {
        display: none;
    }

    .section-2 .highlight {
        margin: 20px auto;
    }

    .section-2 .stats {
        gap: 25px;
        margin: 30px 0;
    }

    .section-2 .number {
        font-size: 22px;
    }

    .section-2 .call {
        margin-bottom: 22px;
    }

    .section-2 .bottom-text {
        padding: 0 30px;
        margin-bottom: 22px;
    }

    .section-2 .bottom-text br {
        display: none;
    }

    /*section-3*/
    .section-3 h2 {
        font-size: 38px;
    }

    /*section3-tabs*/
    section.section3-tabs .parent_container {
        padding: unset;
    }

    section.section3-tabs .cols {
        flex-direction: column;
    }

    section.section3-tabs .content .left-col {
        width: 100%;
    }

    section.section3-tabs .content .right-col {
        width: 100%;
    }

    section.section3-tabs .content .left-col .box-image {
        height: 410px;
    }

    section.section3-tabs .content .right-col .box-info {
        margin-left: unset;
    }

    section.section3-tabs .content .text-bottom {
        margin-top: 110px;
    }

    section.section3-tabs .content .right-col .box-tab {
        bottom: -75px;
    }

    section.section3-tabs .content .right-col .txt p br {
        display: none;
    }

    section.section3-tabs .content .box {
        width: 80%;
        margin: 0 auto;
    }


    /*section-4*/
    .section-4 .title {
        font-size: 38px;
    }

    .section-4 .victory-block {
        gap: 20px;
        margin-top: -135px;
    }

    .section-4 .victory-block .image {
        width: 40%;
    }

    .section-4 .victory-block .text {
        width: 57%;
    }

    /*section-5*/
    .section-5 .title {
        font-size: 38px;
        margin-bottom: 25px;
    }

    .section-5 .don-block {
        flex-direction: column;
    }

    .section-5 .don-left {
        width: 100%;
    }

    .section-5 .don-right {
        width: 100%;
    }

    .section-5 .don-right .box-img .image.two {
        margin-left: -88px;
        width: 305px;
    }

    .section-5 .don-right .box-img .image.one {
        width: 457px;
    }

    .section-5 .don-right .text span {
        font-size: 70px;
    }

    .section-5 .don-right .text {
        top: 20px;
        right: 88px;
    }

    .section-5 .don-right .text p {
        font-size: 16px;
    }

    .section-5 .don-right .image-arrow {
        top: 123px;
        right: 70px;
        width: 30px;
    }

    /*section-6*/
    .section-6 .block-droits {
        flex-direction: column;
        align-items: start;
    }

    .section-6 .block-droits .text-part {
        width: 100%;
    }

    .section-6 .block-droits .text-part h2 {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .section-6 .block-droits .text-part p br {
        display: none;
    }

    .section-6 .block-droits .stats-part {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .section {
        margin-bottom: 40px;
    }

    .parent_container {
        padding: 0 30px;
    }

    .my-btn {
        width: 100%;
    }

    .section-2 .my-btn.mob {
        width: calc(100% - 60px);
    }

    /*section header*/
    section.section-header .content .logo {
        width: 170px;
    }

    section.section-header {
        top: 20px;
    }

    /*section-slider*/
    .section.section-slider .content .hero .first-title h1 {
        font-size: 90px;
        line-height: 70px;
        margin-bottom: 20px;
    }

    .section.section-slider .content .hero .txt p {
        font-size: 20px;
        width: 90%;
        margin: 0 auto;
        line-height: 24px
    }

    .section.section-slider .content .hero .txt p br {
        display: none;
    }

    .section.section-slider .content .hero .txt .p-orange {
        font-size: 24px;
    }

    .section.section-slider .content .hero .box-btn {
        flex-direction: column-reverse;
        gap: 12px;
    }


    .btn-video a,
    .my-btn a {
        padding: 12px 0px;
        justify-content: center;
    }

    /*section-2*/
    .section-2 .title {
        font-size: 50px;
    }

    .section-2 .subtitle {
        font-size: 32px;
        margin-bottom: 26px;
    }

    .section-2 .orange {
        display: block;
    }

    .section-2 .intro {
        font-size: 18px;
        line-height: 26px;
    }

    .section-2 .highlight br {
        display: none;
    }

    .section-2 .highlight {
        font-size: 18px;
        line-height: 26px;
    }

    .section-2 .highlight {
        margin: 12px auto;
    }

    .section-2 .text {
        font-size: 18px;
        line-height: 26px;
    }

    .section-2 .call {
        font-size: 22px;
        padding: 0 30px;
    }

    .section-2 .bottom-text {
        font-size: 18px;
        line-height: 26px;
        padding: unset;
    }

    .section-2 .slick-prev,
    .section-2 .slick-next {
        width: 60px;
        height: 60px;
        z-index: 9;
    }

    .section-2 .slick-next::before {
        content: "";
        display: block;
        width: 60px;
        height: 60px;
        background-image: url(../images/arrow-right.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 1;
    }

    .section-2 .slick-next {
        right: 15px;
    }

    .section-2 .slick-prev::before {
        content: "";
        display: block;
        width: 60px;
        height: 60px;
        background-image: url(../images/arrow-left.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 1;
    }

    .section-2 .slick-prev {
        left: 15px;
    }

    .section-2 .my-btn {
        width: 100%;
    }

    /*section-3*/
    .section-3 h2 {
        font-size: 32px;
    }

    .section-3 h2 span {
        display: block;
    }

    .section-3 p {
        font-size: 18px;
        line-height: 26px;
        padding: unset;
    }

    /*section3-tabs*/
    .desktop-version {
        display: none !important;
    }

    section.section3-tabs .content .left-col .box-image {
        height: 250px;
    }

    section.section3-tabs .content .left-col .box-image img {
        object-position: 50% 30%;
    }

    section.section3-tabs .content .box {
        width: 95%;
        margin: 0 auto;
    }

    section.section3-tabs .content .right-col .title p br {
        display: none;
    }

    section.section3-tabs .content .right-col .box-info {
        padding: 30px 30px 80px 30px;
        min-height: 374px;
    }

    section.section3-tabs .content .right-col .box-tab {
        width: 90%;
    }

    section.section3-tabs .content .right-col .box-tab .image {
        height: 105px;
    }

    section.section3-tabs .content .text-bottom {
        margin-top: 75px;
    }

    section.section3-tabs .content .text-bottom p {
        font-size: 26px;
    }

    section.section3-tabs .my-btn {
        padding: 0 30px;
    }

    /*mob-slider*/
    .slider-mobile {
        display: block;
    }

    section.section3-tabs .content .slider-mobile .box-image {
        height: 250px;
    }

    section.section3-tabs .content .slider-mobile .box-image img {
        object-position: 50% 30%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    section.section3-tabs .content .slider-mobile .box-info {
        padding: 30px 30px 80px 30px;
        min-height: 370px;
        background-color: #D44508;
        width: 100%;
    }

    section.section3-tabs .content .slider-mobile .slick-dots {
        bottom: -37px;
    }

    section.section3-tabs .content .slider-mobile .slick-dots li button:before {
        color: #FFF;
    }

    section.section3-tabs .content .slider-mobile .slick-dots li.slick-active button:before {
        opacity: 1;
        color: #fff;
    }

    section.section3-tabs .content .slider-mobile .box {
        width: 95%;
        margin: 0 auto;
    }

    section.section3-tabs .content .slider-mobile .title .black {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #000000;
        margin-bottom: 8px;
    }

    section.section3-tabs .content .slider-mobile .slick-dots li {
        width: 70px;
        height: 70px;
    }

    section.section3-tabs .content .slider-mobile .slick-dots li img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    section.section3-tabs .slider-mobile .title p {
        font-size: 27px;
        font-family: var(--font-Raleway-Heavy);
        color: #fff;
    }

    section.section3-tabs .content .slider-mobile .txt p {
        font-size: 19px;
        line-height: 26px;
        font-family: var(--font-raleway-regular);
        color: #fff;
        margin-bottom: unset;
    }

    section.section3-tabs .content .slider-mobile .txt p br {
        display: none;
    }

    section.section3-tabs .content .slider-mobile .dots {
        display: flex;
        align-items: center;
        gap: 17px;
        margin-top: 25px;
        position: absolute;
        bottom: 75px;
    }

    section.section3-tabs .content .slider-mobile .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.4);
    }

    section.section3-tabs .content .slider-mobile .dot.d-active {
        background-color: #FFFFFF;
    }





    /*section-4*/
    .section-4 .title {
        font-size: 32px;
    }

    .section-4 .titre {
        padding: 55px 15px 55px 15px;
    }

    .section-4 .victory-block {
        gap: 20px;
        margin-top: unset;
        flex-direction: column-reverse;
    }

    .section-4 .victory-block .image {
        width: 100%;
    }

    .section-4 .victory-block .text {
        width: 100%;
        padding: 35px 30px 10px 30px;
    }


    .section-4 .victory-block .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .section-4 .parent_container {
        padding: unset;
    }

    .section-4 .acat-box {
        margin-top: unset;
    }

    .section-4 .acat-box .stats {
        font-size: 18px;
        line-height: 26px;
    }

    .section-4 .acat-box .call {
        font-size: 24px;
    }

    /*section-5*/
    .section-5 .don-right .box-img .image.one {
        width: unset;
    }

    .section-5 .don-right .box-img .image.two {
        margin-left: -66px;
        width: unset;
    }

    .section-5 .don-right .text span {
        font-size: 55px;
    }

    .section-5 .don-right .text p {
        font-size: 14px;
    }

    .section-5 .don-right .text {
        top: -5px;
        right: 77px;
    }

    .section-5 .don-right .image-arrow {
        top: 79px;
        right: 64px;
        width: 20px;
    }

    .section-5 .title {
        font-size: 32px;
        text-align: center;
    }

    .section-5 .box-img.desk {
        display: none;
    }

    .section-5 .box-img.mob {
        display: block;
    }

    .section-5 .don-left .box-img.mob {
        position: relative;
        display: flex;
        align-items: end;
        justify-content: center;
    }

    .section-5 .don-left .box-img .image.two {
        margin-left: -88px;
        width: 305px;
    }

    .section-5 .don-left .box-img .image.one {
        width: 457px;
    }

    .section-5 .don-left .image-arrow {
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
    }

    .section-5 .don-left .image-arrow {
        position: absolute;
        top: 75px;
        right: 0px;
        width: 24px;
    }

    .section-5 .don-left .text {
        position: absolute;
        top: 15px;
        right: 0px;
        text-align: center;
    }

    .section-5 .don-left .text p {
        font-size: 12px;
        font-family: var(--font-raleway-bold);
        margin: unset;
    }

    .section-5 .don-left .text span {
        font-size: 28px;
        font-family: var(--font-Mesmerize_Bold);
    }

    .section-5 .don-left .text span sup {
        font-family: var(--font-Mesmerize_Rg);
    }

    .section-5 .don-block {
        padding-bottom: 30px;
    }

    .section-5 .my-btn {
        margin: 0 auto;
    }

    .section-5 .don-highlight {
        font-size: 26px;
    }

    /*section-6*/
    .section-6 {
        padding: 28px 0 28px 0;
    }

    .section-6 .block-droits .text-part h2 {
        font-size: 34px;
        text-align: center;
    }

    .section-6 .block-droits .text-part p {
        font-size: 18px;
        line-height: 26px;
    }


    .section-6 .block-droits .stats-part.desk {
        display: none;
    }

    .section-6 .block-droits .stats-part.mob {
        display: block;
        padding-left: unset;
    }

    .section-6 .block-droits .stats-part {
        width: 50%;
        margin: 0 auto;
    }

    .section-6 .block-droits .stat {
        text-align: center;
    }

    .section-6 .block-droits .stat p br {
        display: block;
    }

    .section-6 .slick-prev,
    .section-6 .slick-next {
        width: 60px;
        height: 60px;
        z-index: 9;
    }

    .section-6 .slick-next::before {
        content: "";
        display: block;
        width: 60px;
        height: 60px;
        background-image: url(../images/arrow-right.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 1;
    }

    .section-6 .slick-next {
        right: -90px;
    }

    .section-6 .slick-prev::before {
        content: "";
        display: block;
        width: 60px;
        height: 60px;
        background-image: url(../images/arrow-left.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 1;
    }

    .section-6 .slick-prev {
        left: -90px;
    }

    /*footer*/
    .footer .content {
        flex-direction: column;
        gap: 20px;
    }

    .footer {
        padding: 30px 0 38px 0;
    }

    .footer .footer-right {
        padding: 0px 40px;
    }

    .footer .footer-right p {
        text-align: center;
        line-height: 30px;
    }

    .footer p.p-ia {
        line-height: 18px;
    }
}

@media screen and (max-width: 398px) {
    .parent_container {
        padding: 0 15px;
    }

    /*section-slider*/
    .section.section-slider .content .hero .first-title h1 {
        font-size: 80px;
        line-height: 57px;
        margin-bottom: 20px;
    }

    .section-2 .my-btn.mob {
        width: calc(100% - 30px);
    }

    .btn-video,
    .my-btn {
        width: 100%;
    }

    /*section-2*/

    .section-2 .subtitle {
        font-size: 30px;
    }

    /*section-3*/
    .section-3 h2 {
        font-size: 30px;
    }

    /*section3-tabs*/
    section.section3-tabs .content .right-col .box-info {
        min-height: 430px;
    }

    section.section3-tabs .my-btn {
        padding: 0 15px;
    }

    section.section3-tabs .content .text-bottom p {
        padding: 0 15px;
    }

    /*mob*/
    section.section3-tabs .content .slider-mobile .box-info {
        min-height: 400px;
    }

    /*section-4*/
    .section-4 .title {
        font-size: 30px;
    }

    .section-4 .victory-block .text {
        padding: 30px 15px 10px 15px;
    }

    .section-5 .don-highlight {
        font-size: 25px;
    }

    /*section-5*/
    .section-5 .title {
        font-size: 32px;
        text-align: center;
    }

    /*section-6*/

    .section-6 .block-droits .text-part h2 {
        font-size: 32px;
    }


}

@media screen and (min-width: 600px) and (max-height: 650px) {
    section.section-header {
        top: 20px;
    }

    .section.section-slider .content .hero {
        top: 53%;
    }
}