/*************************** COLOR ***************************/
:root{
    --greenKV: #62b26b;
}

/*************************** FONT ***************************/
@font-face {
    font-family: aileronTitle;
    src: url(../assets/font/Aileron/Aileron-BlackItalic.otf);
}

@font-face {
    font-family: aileronText;
    src: url(../assets/font/Aileron/Aileron-Bold.otf);
}

/*************************** ANIMATION ***************************/

@keyframes logo_loading {
    50% {
      transform: scale(1.04);
    }
    100% {
      transform: scale(1);
    }
}

.section_body{
    overflow-x: hidden;
    /* background: radial-gradient(
        circle at 10% 50%, 
        #1a1a1a 10%, 
        #0a0a0a 40.2%,
        #030303 70.2%, 
        #2a2a2a 90.2%); */

        background: radial-gradient(
            circle at 10% 50%, 
            #1a1a1a 10%, 
            #191b11 40.2%,
            #292b21 70.2%, 
            #393b41 90.2%);
    background-repeat: repeat;
    position: relative;
    display: none;
}

.website_loading{
    display: none;
}

.website_loading_logo{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    width: 18%;
}

.website_loading_kv{
    animation: logo_loading 0.9s infinite;
}

/*************************** SCROLLBAR ***************************/
::-webkit-scrollbar {
    width: 8px;
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--greenKV);
    border-radius: 10px;
}

/*************************** NAVBAR ***************************/
.navbar_page{
    /* background: #030303; */
    background: #191b11;
    position: fixed !important;
    top:0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 12px 22px -7px #3c3c3c;
    -webkit-box-shadow: 0px 12px 22px -7px #3c3c3c;
    -moz-box-shadow: 0px 12px 22px -7px #3c3c3c;
    transition: 0.6s;
    border-bottom-left-radius: 10%;
    border-bottom-right-radius: 10%;
}

.navbar-img{
    display: block;
}

.nav-link,
.navbar_text_img_part,
.navbar_txt{
    color: #fff !important;
    text-transform: uppercase;
    font-family: 'prompt';
    font-weight: 700 !important;
    font-style: italic;
}

.nav-link{
    font-size: 19px !important;
    transition: 0.6s;
    
}

/* .navbar_text_img_part,
.navbar_txt{
    font-size: 24px !important;
} */

.nav-link.active{
    background: linear-gradient(var(--greenKV), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.6s;
}

.menu_icon{
    color: #fff;
    font-size: 30px;
    margin-right: 70px;
}

.navbar_perso{
    margin-right: 50px;
    margin-bottom: 15px;
}

.navbar_img_perso_lg{
    margin-left: 100px;
}

.navbar_img_perso_mini{
    margin-left: 50px;
}

.navbar_img_perso_content{
    width: 80px;
}

.navbar_nav_link{
    margin-right: 100px !important;
}

/*************************** SECTION HOME ***************************/
.section_home,
.section_linked{
    position: relative;
    text-align: center;
    height: 100vh;
}

.img_home_verboom_content{
    opacity: 0.7;
}

/*************************** TITLE & SECTION ***************************/
.section_title{
    color:#fff;
}

.section_title{
    font-size: 45px;
}

.section_title,
.goal_card_title{
    text-transform: uppercase;
    font-family: "Prompt", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.section_method,
.section_goal
{
    padding-top: 50px;
    padding-bottom: 50px;
}

.section_about{
    padding-bottom: 180px;
    /* padding-top: 50px; */
}

.section_goal{
    box-shadow: 1px -7px 41px 10px rgba(0,0,0,0.73);
-webkit-box-shadow: 1px -7px 41px 10px rgba(0,0,0,0.73);
-moz-box-shadow: 1px -7px 41px 10px rgba(0,0,0,0.73);
}

.section_about{
    box-shadow: -3px 35px 41px -5px rgba(0,0,0,0.91);
    -webkit-box-shadow: -3px 35px 41px -5px rgba(0,0,0,0.91);
    -moz-box-shadow: -3px 35px 41px -5px rgba(0,0,0,0.91);
}

.section_method{
    position: relative;
    width: 100%;
}

.section_method::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), 
                url('../assets/img/webp/goals_bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* Seule l'image en arrière-plan est affectée */
    z-index: 0; /* Met l'image en arrière-plan */
}

.section_contact{
    padding-bottom: 120px;
    padding-top: 50px;
    position: relative;
    width: 100%;
}

.section_contact::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), 
                url('../assets/img/webp/method_img.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* Seule l'image en arrière-plan est affectée */
    z-index: 0; /* Met l'image en arrière-plan */
}

.section_sponsors{
    box-shadow: -3px -17px 37px 14px rgba(60,60,60,0.71);
-webkit-box-shadow: -3px -17px 37px 14px rgba(60,60,60,0.71);
-moz-box-shadow: -3px -17px 37px 14px rgba(60,60,60,0.71);
}

.about_section_title{
    padding-bottom: 40px;
}

.method_section_title{
    padding-top: 60px;
    text-align: center;
}

.contact_section_title{
    padding-top: 50px;
    /* padding-bottom: 100px; */
}

/*************************** SECTION ABOUT ***************************/
.about_subtitle,
.about_subtitle2{
    font-size: 45px;
}
.about_subtitle,
.about_subtitle2,
.goal_card_text{
    font-family: aileronText;
    text-align: center !important;
    text-transform: uppercase;
}

.about_explain_part{
    color: #fff;
}

.about2_explain_part_content{
    height: 100%;
}

.about_subtitle_markup{
    background: linear-gradient(var(--greenKV), #2a2a2a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-weight: 800;
}

.about_text,
.goal_card_text{
    font-size: 18px;
    font-family: aileronText;
    font-weight: 400; 
}

.goal_card_text{
    text-align: justify;
}

.about_text{
    text-align: center;
}

.about_video_div,
.about_play_stops{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_play_stops{
    position: absolute;
    left: 50%;
    top: 85%;
    transform: translate(-50%,-50%);
}

.about_video,
.about_img2,
.about_img2_mini{
    position: relative;
    width: 100%;
}

.card_video,
.about_video,
.about_img2,
.about_img2_mini{
    border-radius: 40px !important;
    border-color: #2a2a2a !important;
    border-width: 5px !important;
}

.card_video{
    background-color: #030303 !important;
}

.about_video_play_icon,
.about_video_pause_icon{
    color: #fff;
    font-size: 50px;
    opacity: 0.3;
}

.about_video_div_play_icon{
    display: block;
    transition: 0.6s;
}

.about_video_play_icon:hover,
.about_video_pause_icon:hover{
    color: var(--greenKV);
    opacity: 1;
    transition: 0.6s;
}

.about_video_div_pause_icon{
    display: none;
    transition: 0.6s;
}

.about_intro2{
    padding-top: 100px;
}

/*************************** SECTION NEWS & LINE UP ***************************/

.methode_ul {
    --col-gap: 8rem;
    --barH: 1rem;
    --roleH: 2rem;
    --flapH: 6rem;
  
    /* width: min(60rem, 90%); */
    margin-inline: auto;
  
    display: flex;
    flex-wrap: wrap;
  
    gap: var(--col-gap);
    padding-inline: calc(var(--col-gap) / 2);
  
    justify-content: center;
    align-items: flex-start;
    list-style: none;
  }
  .methode_ul li {
    width: 18em;
    display: grid;
    grid-template:
      "role"
      "icon"
      "title"
      "descr";
    align-items: flex-start;
    gap: 1rem;
    padding-block-end: calc(var(--flapH) + 1rem);
    text-align: center;
    /* background: var(--accent-color); */
    background-image: linear-gradient(
      rgba(0, 0, 0, 0.6) var(--roleH),
      rgba(0, 0, 0, 0.4) calc(var(--roleH) + 0.5rem),
      rgba(0, 0, 0, 0) calc(var(--roleH) + 0.5rem + 5rem)
    );
    clip-path: polygon(
      calc(var(--col-gap) / -2 - 5px) 0,
      calc(100% + var(--col-gap) / 2 + 5px) 0,
      calc(100% + var(--col-gap) / 2 + 5px ) calc(100% - var(--flapH)),
      50% 100%,
      calc(var(--col-gap) / -2 - 5px) calc(100% - var(--flapH))
    );
    background: linear-gradient(#393b41, var(--greenKV));
  }
  
  /* bar */
  .methode_ul li::before {
    content: "";
    grid-area: role;
    height: var(--barH);
    width: calc(100% + var(--col-gap));
    margin-left: calc(var(--col-gap) / -2);
    margin-top: calc(var(--roleH) / 2 - var(--barH) / 2);
    background: grey;
    z-index: -1;
    background-image: linear-gradient(
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.2) 30%,
      rgba(255, 255, 255, 0.1) 40%,
      rgba(0, 0, 0, 0.1) 60%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(0, 0, 0, 0.4)
    );
  }
  
  /* role */
  .methode_ul li::after {
    content: "";
    grid-area: role;
    background: var(--accent-color);
    background-image: linear-gradient(
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.2) 30%,
      rgba(255, 255, 255, 0.1) 40%,
      rgba(0, 0, 0, 0.1) 60%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(0, 0, 0, 0.4)
    );
    height: var(--roleH);
  }
  
  .methode_ul li .icon,
  .methode_ul li .title,
  .methode_ul li .descr {
    padding-inline: 1rem;
    color: white;
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
  }
  
  .methode_ul li .icon {
    font-size: 35px;
    color: var(--greenKV);
  }
  .methode_ul li .title {
    font-size: 30px;
    font-weight: 700;
    /* background: linear-gradient(var(--greenKV), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    font-style: italic;
  }
  
  .methode_ul li .descr {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
  }

.goal_card{
    background-color: transparent !important;
    border: none !important;
}

.goal_card_title{
    text-align: center;
    text-underline-offset: 8px;
}

.card-text small{
    font-size: 12px;
    font-weight: 400;
}

.goal_card_text_content,
.contact_service_part{
    border-right: solid;
    border-color: #fff;
}

.carousel-control-prev,
.carousel-control-next{
    width: 0 !important;
}

.next_carous,
.previous_carous{
    color: white;
    font-size: 45px;
    background-color: transparent;
}

.next_carous_news{
    margin-left: 90px;
}

.previous_carous_goal{
    margin-right: 90px;
}


.goal_content,
.row_goal_descritpion_content,
.row_ticket{
    margin-top: 40px;
}

.goal_card_title{
    font-size: 65px;
    margin-bottom: 10px !important;
}


/*************************** SECTION CONTACT ***************************/

.contact_icon_add,
.contact_text_add{
    background: linear-gradient(#fff, var(--greenKV));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
}

.contact_link_add,
.nav_link_subscription{
    text-decoration: none;
    cursor: pointer;
}

.contact_icon_add{
    color: #fff;
    font-size: 5em;
}

.contact_text_add{
    color: #fff;
    font-size: 2em;
    font-weight: 600;
    font-style: italic;
}

.contact_div_add{
    text-align: center;
}

.contact_service_part_lg{
    padding-right: 60px !important;
}

.contact_form_part_lg{
    padding-left: 60px !important;
}

.col_social_media{
    font-size: 45px;
    /* background: linear-gradient(var(--greenKV), #393b41); */
    background: linear-gradient(#fff, var(--greenKV));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.col_social_media_icon{
    text-decoration: none;
}

.col_social_media_text{
    font-size: 20px;
    line-height: normal;
    font-weight: 600;
}

.col_social_media_icon_content:hover,
.btn_contact_form:hover,
.contact_icon_add:hover,
.contact_text_add:hover{
    background: linear-gradient(var(--greenKV), #393b41);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact_title{
    font-size: 40px;
    font-family: "Prompt", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #fff;
    text-align: center;
}

.contact_form,
.subscript_form{
    font-size: 18px !important;
    background-color: #f4f4f5 !important;
    color: #202020 !important;
    font-weight: 700 !important;
    font-family: aileronText;
    border: 2px !important;
    border-style: ridge !important;
    border-radius: 20px !important;
    border-color: var(--greenKV) !important;
}

.contact_form::placeholder,
.subscript_form::placeholder,
textarea::placeholder,
.subscript_form_select:required:invalid,
.subscript_form_date::placeholder
{
    color: #5b5d5f !important;
    font-size: 16px !important;
    text-align: center;
    font-style: italic;
}

textarea{
    text-align: left !important;
}

.btn_contact_form{
    font-size: 18px !important;
    background: linear-gradient(var(--greenKV), #5b5d5f);
    color: #fff !important;
    font-family: "Prompt", sans-serif;
    font-weight: 600 !important;
    font-style: normal;
    padding-left: 50px !important;
    padding-right: 50px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    border-radius: 15px !important;
    transition: 3s;
}

.alert_message_form{
    position: absolute;
    width: 100%;
}

.alert_form_kv{
    font-weight: 600;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.ql-editor {
    background-color: white !important;
    color: black;
    min-height: 100px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.ql-toolbar {
    background-color: white !important;
    border-bottom: 1px solid #ccc;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.ql-container{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.ql-toolbar button {
    color: black !important;
}

.ql-toolbar button.ql-active {
    background-color: #f0f0f0 !important;
}

/*************************** SECTION SPONSORS ***************************/
.section_sponsors{
    background-color: #fff;
}

/*************************** SECTION FOOTER ***************************/
.footer{
    background: #191b11;
}

.footer_content{
    color: #fff;
    font-family: aileronText;
    font-size: 16px;
    text-align: center;
}

.footer_kv,
.footer_devbak{
    font-style: italic;
    font-weight: bold;
    text-decoration: none;
}

.footer_kv{
    background: linear-gradient(var(--greenKV), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer_devbak{
    background: linear-gradient(#fe330a, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*************************** MODAL SUBSCRIPTION ***************************/
.modal-header{
    border: none !important;
}

.modal_subscript_close_btn_up{
    color: #fff !important;
}

.modal-content{
    background: linear-gradient(#292b21,var(--greenKV));
}

.modal-title{
    color: #fff;
    font-style: italic;
    font-weight: 700;
    text-align: center;
    font-size: 20px;
}

.img_subscription_form{
    text-align: center;
}

.img_subscription_form_content{
    width: 150px;
}

.col_subscription_form{
    color: #fff;
    font-weight: 600;
    font-family: aileronText;
}

.subscript_form_send,
.subscript_form_no{
    background: #fff !important;
    font-weight: 700 !important;
    border: none !important;
}

.subscript_form_send{
    color: var(--greenKV) !important;
}
.subscript_form_no{
    color: #f55742 !important;
}

.subscript_form_select option[value=""][disabled]{
    display: none;
}

.subscript_form_select option{
    color: #202020;
}

/*************************** ANIMATION PAGE BEGINNING ***************************/
.navbar_page,
.home_div_img,
.about_section_title,
.about_explain_part1,
.about_video_part,
.about_video_part_lg,
.about_explain_part2,
.about_video_part_mini,
.goal_section_title,
.row_goal_conten_left,
.row_goal_conten_middle,
.row_goal_conten_right,
.goal_carousel,
.method_section_title,
.contact_section_title,
.contact_service_part_left,
.contact_service_part_right,
.row_sponsor{
    visibility: hidden;
}

.navbar_page,
.home_div_img,
.row_goal_conten_middle,
.goal_carousel,
.row_sponsor{
    --animate-duration: 3s;
}

.about_section_title,
.about_explain_part1,
.about_video_part,
.about_video_part_lg,
.about_explain_part2,
.about_video_part_mini,
.method_section_title,
.goal_section_title,
.row_goal_conten_left,
.row_goal_conten_right,
.contact_section_title,
.contact_service_part_left,
.contact_service_part_right{
    /* --animate-duration: 1.5s; */
}

/*************************** MEDIA SIZE ***************************/
@media screen and (max-width:1200px) {
    .website_loading_logo{
        width: 30%;
    }
}

@media screen and (max-width:1000px) {
    .carousel-control-prev,
    .carousel-control-next{
        align-items: start !important;
        margin-top: 80px !important;
    }

    .next_carous,
    .previous_carous{
        font-size: 35px;   
    }

    .next_carous_news{
        margin-left: 0;
    }

    .previous_carous_goal{
        margin-right: 0;
    }
}

@media screen and (max-width:576px) {
    .website_loading_logo{
        width: 45%;
    }
}