body {
    background-image: url("../../img/bg-home-2.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.text-secondary {
    color: #E45F2B !important;
}

.text-primary {
    color: #0098F3 !important;
}

.text-primary-400 {
    color: #2CB4FF !important;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.card,
.card-body,
.card-footer,
.card-header {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

a {
    text-decoration: none !important;
}

@media(max-width:992px) {
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media(max-width:786px) {
    section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
/*-----------------------------
form
-------------------------------*/

.form-control,
.form-select {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(25px);
    color: var(--Grayscale-300, #000);
    text-align: left;

    /* Body / Regular */
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    border: none;
    min-height: 50px;
}

.form-control::placeholder {
    color: var(--Grayscale-300, #C8C8C8);
}

.input-group {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(25px);
    flex-wrap: nowrap;
    border: none;
}

.form-check-input {
    border: 1px solid #75CDFF;
    background-color: #fff;
}

.form-check input:checked+label.btn-secondary {
    color: #fff !important;
    border: 3px solid var(--Secondaire-300, #F0AC81) !important;
    background: var(--Secondaire-600, #D54721);
}

.form-check h5 {
    color: var(--Primary-600, #007AD4);
    /* Body / Bold */
    font-family: "Arial Rounded MT Bold";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.form-check p {
    color: var(--Grayscale-700, #7B7B7B);

    /* Body / Regular */
    font-family: "Work Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.input-group .form-control,
.input-group .form-select {
    background-color: transparent;
    border-radius: 0px 0px 0px 0px;
    box-shadow: none;
    backdrop-filter: unset;
}

.input-group .input-group-text {
    background-color: transparent;
    border-radius: 0px 0px 0px 0px;
    box-shadow: none;
    border: none;
}

textarea::-webkit-scrollbar {
    width: 5px;
}

textarea::-webkit-scrollbar-thumb {
    background: #0061AB;
    border-radius: 10px;
}

textarea::-webkit-scrollbar-thumb:hover {
    background: #0061AB;
}

@media(max-width:992px) {

    .form-control,
    .form-select {
        font-size: 13px;
    }

    .form-label {
        font-size: 14px;
    }
}

@media(max-width:768px) {

    .form-control,
    .form-select {
        font-size: 12px;
    }

    .form-label {
        font-size: 12px;
    }
}
/*-----------------------------
buttons
------------------------------*/
.btn-primary {
    border-radius: 6px;
    background: var(--Primary-500, #0098F3);
    color: #FFF;
    text-align: center;
    font-family: "Arial Rounded MT Bold";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 171.429% */
}

.btn-primary:hover {
    background: var(--Primary-600, #007AD4);
    box-shadow: 0 8px 18px -6px rgba(24, 39, 75, 0.12), 0 12px 42px -4px rgba(24, 39, 75, 0.12);
}

.btn-primary:focus {
    border: 3px solid var(--Primary-300, #75CDFF);
    background: var(--Primary-600, #007AD4);
}

.btn-primary:disabled {
    background: var(--Primary-200, #B6E2FF);
}

.btn-secondary {
    border-radius: 6px;
    background: var(--Secondaire-500, #E45F2B);
    color: #FFF;
    text-align: center;
    font-family: "Arial Rounded MT Bold";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 171.429% */
    border: none !important;
}

.btn-secondary:hover {
    color: #fff !important;
    background: var(--Secondaire-600, #D54721);
    box-shadow: 0 8px 18px -6px rgba(24, 39, 75, 0.12), 0 12px 42px -4px rgba(24, 39, 75, 0.12);
}

.btn-secondary:focus {
    color: #fff !important;
    border: 3px solid var(--Secondaire-300, #F0AC81) !important;
    background: var(--Secondaire-600, #D54721);
}

.btn-secondary:disabled {
    color: #fff !important;
    background: var(--Secondaire-200, #F6CDB2) !important;
}


@media(max-width:992px) {

    .btn-primary,
    .btn-secondary {
        font-size: 13px;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

@media(max-width:768px) {

    .btn-primary,
    .btn-secondary {
        font-size: 12px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

@media(max-width:570px) {
    .btns {
        display: block !important;
    }

    .btns .btn {
        width: 100% !important;
        margin-bottom: 10px;
    }
}

/*---------------------------------
hero
----------------------------------*/
.hero .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero .text h1 {
    color: var(--Secondaire-500, #E45F2B);

    /* H1/Bold */
    font-family: "Arial Rounded MT Bold";
    font-size: 49px;
    font-style: normal;
    font-weight: 400;
    line-height: 58.8px;
    /* 120% */
    margin-bottom: 1rem;
}

.hero .text p {
    color: var(--Grayscale-900, #545454);

    /* Body / Regular */
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin-bottom: 1rem;
}

.hero .text .btn {
    width: fit-content;
}

.hero .image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .image img {
    width: 100%;
    max-width: 582px;
    max-height: 497px;
    object-fit: contain;
}

@media(max-width:992px) {
    .hero .text h1 {
        font-size: 45px;
    }

    .hero .text p {
        font-size: 15px;
    }

    .hero .image img {
        max-width: 482px;
        max-height: 397px;
    }
}

@media(max-width:768px) {
    .hero .text {
        align-items: center;
    }

    .hero .text h1 {
        font-size: 40px;
        text-align: center;
    }

    .hero .text p {
        font-size: 14px;
        text-align: center;
    }

    .hero .image {
        display: none;
    }
}

@media(max-width:570px) {

    .hero .text h1 {
        font-size: 35px;

    }

    .hero .text p {
        font-size: 12px;
    }
}

/*--------------------------
section-title
---------------------------*/
.section-title h2 {
    color: var(--Primary-500, #0098F3);
    text-align: center;

    /* H3 / Bold */
    font-family: "Arial Rounded MT Bold";
    font-size: 31px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media(max-width:992px) {
    .section-title h2 {
        font-size: 28px;
    }
}

@media(max-width:786px) {
    .section-title h2 {
        font-size: 25px;
    }
}

@media(max-width:570px) {
    .section-title h2 {
        font-size: 20px;
    }
}

/*----------------------------
video container
------------------------------*/
.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    border-radius: 20px;
    background: rgba(54, 54, 54, 0.40);
    max-height: 494px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    /* assombrir */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 1;
    /* ne bloque pas les clics */
    z-index: 2;
    pointer-events: auto;
}

.video-overlay.hide {
    opacity: 0;
    pointer-events: none;
    /* quand caché → clics passent à la vidéo */
}

.play-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 3;
    pointer-events: auto;
    /* bouton reste cliquable */
}

.video-container .play-btn img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

@media(max-width:992px) {
    .video-container .play-btn img {
        width: 50px;
        height: 50px;
    }
}

@media(max-width:786px) {
    .video-container .play-btn img {
        width: 40px;
        height: 40px;
    }
}

/*-----------------------
cardAbout
-------------------------*/
.cardAbout {
    height: 100%;
    display: block !important;
}

.cardAbout .card-header {
    text-align: center;
    padding-bottom: 0px;
}

.cardAbout .card-body {
    padding-top: 0px;
    padding-bottom: 0px;
}

.cardAbout img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.cardAbout h3 {
    color: var(--Grayscale-950, #363636);
    text-align: center;

    /* Headline / Bold */
    font-family: "Arial Rounded MT Bold";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
    margin-bottom: 0px;
}

.cardAbout p {
    color: var(--Grayscale-950, #363636);
    text-align: center;
    /* Body / Regular */
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

@media(max-width:992px) {
    .cardAbout img {
        width: 95px;
        height: 95px;
    }

    .cardAbout h3 {
        font-size: 18px;
    }

    .cardAbout p {
        font-size: 15px;
    }
}

@media(max-width:768px) {
    .cardAbout img {
        width: 95px;
        height: 95px;
    }

    .cardAbout h3 {
        font-size: 16px;
    }

    .cardAbout p {
        font-size: 14px;
    }
}

@media(max-width:570px) {
    .cardAbout img {
        width: 95px;
        height: 95px;
    }

    .cardAbout h3 {
        font-size: 15px;
    }

    .cardAbout p {
        font-size: 12px;
    }
}

/*---------------------------
cardAvis
-----------------------------*/
.cardAvis {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.40);
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(30px);
    cursor: pointer;
    height: 100%;
    padding: 27px 15px;
}

.cardAvis .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cardAvis .card-header .media {
    display: flex;
    align-items: center;
    justify-content: start;
}

.cardAvis .card-header .media img {
    width: 68px;
    height: 68px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
}

.cardAvis .card-header .media h3 {
    color: var(--Primary-500, #0098F3);
    text-align: start;

    /* Headline / Bold */
    font-family: "Arial Rounded MT Bold";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
}

.cardAvis .card-header .media p {
    color: var(--Primary-400, #2CB4FF);
    text-align: start;
    /* Body / Regular */
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.cardAvis .card-header svg {
    width: 50px !important;
    height: 50px !important;
    aspect-ratio: 35/31;
    object-fit: contain;
}

.cardAvis .card-body p {
    color: var(--Primary-400, #2CB4FF);
    /* Body / Regular */
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    text-align: start;
}

.cardAvis .card-footer p {
    color: var(--Primary-600, #007AD4);
    text-align: start;
    /* Subtitle / Bold */
    font-family: "Arial Rounded MT Bold";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cardAvis:hover {
    background: var(--Primary-300, #75CDFF);
}

.cardAvis:hover h3,
.cardAvis:hover p {
    color: #fff !important;
}

.cardAvis:hover .card-header svg path {
    fill: #fff !important;
}

@media(max-width:992px) {
    .cardAvis {
        padding: 25px 13px;
    }

    .cardAvis .card-header .media img {
        width: 58px;
        height: 58px;
    }

    .cardAvis .card-header .media h3 {
        font-size: 16px;
    }

    .cardAvis .card-header .media p,
    .cardAvis .card-body p {
        font-size: 13px;
    }

    .cardAvis .card-header svg {
        width: 40px !important;
        height: 40px !important;
    }
}

@media(max-width:768px) {
    .cardAvis {
        padding: 20px 10px;
    }

    .cardAvis .card-header .media img {
        width: 48px;
        height: 48px;
    }

    .cardAvis .card-header .media h3 {
        font-size: 15px;
    }

    .cardAvis .card-header .media p,
    .cardAvis .card-body p {
        font-size: 12px;
    }

    .cardAvis .card-header svg {
        width: 30px !important;
        height: 30px !important;
    }
}

@media(max-width:570px) {
    .cardAvis {
        margin-right: 0px !important;
        padding: 10px 5px;
    }

    .cardAvis .card-header .media img {
        width: 38px;
        height: 38px;
    }

    .cardAvis .card-header .media h3 {
        font-size: 14px;
    }

    .cardAvis .card-header .media p,
    .cardAvis .card-body p {
        font-size: 12px;
    }

    .cardAvis .card-header svg {
        width: 20px !important;
        height: 20px !important;
    }
}

/*----------------------------
image-slide
------------------------------*/
.image-slide {
    width: 100%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.40);
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(30px);
}

/*--------------------------
cardPlan
---------------------------*/
.cardPlan {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.40);
    box-shadow: 0 10px 32px 0 rgba(158, 217, 255, 0.71), 0 20px 60px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(30px);
}

.cardPlan.actuel {
    border-radius: 20px;
    background: rgba(240, 172, 129, 0.40);
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(30px);
    margin-top: -50px;
}

.cardPlan .card-header img {
    width: 60.268px;
    height: 56.009px;
    object-fit: contain;
}

.cardPlan span {
    font-size: 13px;
}

.cardPlan h3 {
    color: var(--Primary-500, #0098F3);

    /* Headline / Bold */
    font-family: "Arial Rounded MT Bold";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
}

.cardPlan.actuel h3,
.cardPlan.actuel h4,
.cardPlan.actuel li i {
    color: var(--Secondaire-500, #E45F2B);
}

.cardPlan h4 {
    color: var(--Primary-500, #0098F3);
    /* H3 / Bold */
    font-family: "Arial Rounded MT Bold";
    font-size: 31px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cardPlan h4 span {
    color: var(--Grayscale-600, #888);
    /* H4 / Regular */
    font-family: "Work Sans";
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.cardPlan p {
    color: var(--Grayscale-600, #888);

    /* Body / Regular */
    font-family: "Work Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.cardPlan ul {
    list-style: none;
    padding-left: 0px;
}

.cardPlan ul li {
    display: flex;
    align-items: start;
    justify-content: start;
    color: var(--Grayscale-900, #545454);

    /* Body / Regular */
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.cardPlan ul li i {
    font-size: 16px;
    color: #0098F3;
}

@media(max-width:992px) {
    .cardPlan .card-header img {
        width: 50.268px;
        height: 46.009px;
    }

    .cardPlan span {
        font-size: 12px;
    }

    .cardPlan h3 {
        font-size: 18px;
    }

    .cardPlan h4 {
        font-size: 28px;
    }

    .cardPlan h4 span {
        font-size: 22px;
    }

    .cardPlan ul li {
        font-size: 13px;
    }
}

@media(max-width:768px) {
    .cardPlan.actuel {
        margin-top: 0px !important;
    }
    .cardPlan .card-header img {
        width: 40.268px;
        height: 36.009px;
    }

    .cardPlan span {
        font-size: 11px;
    }

    .cardPlan h3 {
        font-size: 16px;
    }

    .cardPlan h4 {
        font-size: 25px;
    }

    .cardPlan h4 span {
        font-size: 20px;
    }

    .cardPlan ul li {
        font-size: 12px;
    }
}

/*-------------------------
accordion-item
---------------------------*/
.accordion-item {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.40);
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(30px);
    margin-bottom: 1rem;
    border: none;
}

.accordion-button {
    color: var(--Grayscale-900, #545454);
    /* Headline / Regular */
    font-family: "Work Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    /* 150% */
    border-radius: 10px;
    background: transparent;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'><path d='M16.6004 7.45837L11.1671 12.8917C10.5254 13.5334 9.47539 13.5334 8.83372 12.8917L3.40039 7.45837' stroke='%23676767' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'><path d='M16.6004 7.45837L11.1671 12.8917C10.5254 13.5334 9.47539 13.5334 8.83372 12.8917L3.40039 7.45837' stroke='%23676767' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    transform: rotate(180deg);
    /* Rotation quand ouvert */
}
.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none !important;
}
.accordion-item p {
    color: var(--Grayscale-900, #545454);
    /* Headline / Regular */
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
}

@media(max-width:992px) {
    .accordion-button {
        font-size: 14px;
    }

    .accordion-item p {
        font-size: 12px;
    }
}
/*-----------------------------
cardContact
-----------------------------*/
.cardContact {
    border-radius: 20px;
border: 2px solid var(--Primary-500, #0098F3);
background: rgba(255, 255, 255, 0.40);
backdrop-filter: blur(30px);
padding: 10px;
}