@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    box-sizing: border-box;
    border: none;
    margin: 0 auto;
    padding: 0 auto;
    font-size: 100%;
    font-family: var(--f_Roboto_vegalie);
}

body {
    width: 100vw;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url(/img/indexhtmlmobile.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: var(--c_dark_vegalie) !important;
    overflow-x: hidden;
    overflow-y: auto;
    cursor: default;
}

/*-- Liens --*/
a {
    font-family: var(--f_Kdam_vegalie);
}

/* All btn */
.btn_submit {
    padding: .5em 1.5em;
    background-color: var(--c_orange_vegalie);
    color: var(--c_light_vegalie);
    border-radius: 10px;
    font-size: .8rem;
    letter-spacing: 1px;
    font-family: var(--f_Kdam_vegalie);
}

.btn_submit:hover {
    background-color: var(--c_bg_vegalie);
}

/* Scroll To Top Btn */
#scrollToTopBtn {
    z-index: 20;
    position: fixed;
    bottom: 110px;
    right: 100px;
    display: none;
    padding: 10px 20px;
    border-radius: 100%;
    color: var(--c_dark_vegalie);
    background-color: var(--c_orange_vegalie);
}

#scrollToTopBtn:hover {
    color: var(--c_orange_vegalie);
    background-color: var(--c_bg_vegalie);
}

@media screen and (max-width: 500px) {

    #scrollToTopBtn {
        bottom: 120px;
        right: 20px;
    }
}

/*-- General --*/
:root {
    /* Colors */
    --c_bg_vegalie: #262b33;
    --c_dark_vegalie: #191D23;
    --c_darkalpha_vegalie: #191d23d3;
    --c_gray_vegalie: #767c7f;
    --c_light_vegalie: #F2F2F2;
    --c_orange_vegalie: #CC4331;
    --c_green_vegalie: #31ccadb0;
    --c_pink_vegalie: #ffcec8;
    --c_gold_vegalie: #ccad31;

    /* Transitions */
    --t_1s_vegalie: all 1s ease 0s;
    --t_3s_vegalie: all 3s ease 0s;

    /* Fonts */
    --f_Kdam_vegalie: 'Krona One', sans-serif;
    --f_Roboto_vegalie: 'Nunito', sans-serif;
    --f_KronaOne_vegalie: "Krona One", sans-serif;
    --f_Nunito_vegalie: 'Nunito', sans-serif;
}

/*-- Selector --*/
::selection {
    background-color: var(--c_dark_vegalie);
    color: var(--c_orange_vegalie);
    border-radius: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    border-radius: 25px;
}

::-webkit-scrollbar-track {
    background-color: var(--c_dark_vegalie);
    border-radius: 25px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--c_bg_vegalie);
    border-radius: 25px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--c_orange_vegalie);
    border-radius: 25px;
}

/* Scrollbar pour Firefox */
body::-webkit-scrollbar {
    width: 10px;
    border-radius: 25px;
    scrollbar-width: thin;
}

body::-webkit-scrollbar-track {
    border-radius: 25px;
    background-color: var(--c_dark_vegalie);
    scrollbar-track-color: var(--c_dark_vegalie);
}

body::-webkit-scrollbar-thumb {
    border-radius: 25px;
    background-color: var(--c_bg_vegalie);
    scrollbar-thumb-color: var(--c_bg_vegalie);
}

body::-webkit-scrollbar-thumb:hover {
    border-radius: 25px;
    background-color: var(--c_orange_vegalie);
}

/* Video */
#myVideo {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

/* Main */
.main {
    flex: 1;
    width: 100%;
    padding-top: 70px;
    /* Espace pour la topbar de hauteur fixe */
    padding-bottom: 120px;
    /* Espace pour le footer de hauteur fixe */
}

@media screen and (max-width: 900px) {

    .main {
        padding-bottom: 0px;
    }
}

/* H 1-6 */
.main h1 {
    font-size: 5em;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 30px;
    color: var(--c_light_vegalie);
    font-family: var(--f_KronaOne_vegalie);
}

.main h2 {
    font-size: 3em;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 20px;
    font-weight: bold;
    color: var(--c_light_vegalie);
}

.main h3 {
    font-size: 2.5em;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 10px;
    color: var(--c_light_vegalie);
}

.main h4 {
    font-size: 2em;
    color: var(--c_orange_vegalie);
    letter-spacing: 2px;
}

.main h5 {
    font-size: 1.5em;
    color: var(--c_light_vegalie);
}

.main p {
    color: var(--c_light_vegalie);
    letter-spacing: 1px;
    font-family: var(--f_Roboto_vegalie);
    font-weight: 300;
}

.title-dashboard {
    padding: 0 3vw;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-align: left;
    font-weight: bold;
    text-transform: none;
    color: var(--c_gray_vegalie);
}

.title-dashboard i {
    color: var(--c_orange_vegalie);
}

/* Infobul */
.infobul {
    position: relative;
    display: inline-block;
    font-family: var(--f_Roboto_vegalie);
}

.infobul::after {
    content: attr(data-title);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--c_orange_vegalie);
    color: var(--c_light_vegalie);
    padding: .8rem 1rem;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    font-size: .8rem;
    letter-spacing: 1px;
}

.infobul:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Content */
.content {
    position: relative;
    top: -70px;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Laser */
.laser {
    z-index: 1;
    left: 2rem;
    position: absolute;
    transform: translate(5%, -50%);
}

/* Hero */
.hero {
    width: 100%;
    height: 100vh;
    background-image: url(/img/indexhtmlmobile.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    opacity: .7;
}

/* Identity */
.identity {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.404);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.identity h1 {
    font-size: 5vw;
    font-weight: 900;
    text-shadow: 0px 0px 10px rgba(250, 250, 250, 0.7);
}

.identity h2 {
    font-size: 1vw;
}

.identity .btn_login {
    z-index: 10;
    margin-top: 4vh;
    padding: .8rem 4rem;
    font-size: .7em;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
    color: var(--c_light_vegalie);
    border-radius: 10px;
    text-transform: uppercase;
    background-color: var(--c_dark_vegalie);
}

.identity .btn_login:hover {
    color: var(--c_light_vegalie);
    background-color: var(--c_orange_vegalie);
}

.hero video {
    z-index: -1;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

@media screen and (max-width: 500px) {

    .hero,
    .hero video {
        height: 50vh;
    }
}

/* Originary */
.originary {
    padding: 10vh 0;
    border-bottom: 1px solid var(--c_orange_vegalie);
    border-top: 1px solid var(--c_orange_vegalie);
    background-image: url(/img/indexhtmlmobile.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.originary h3 {
    font-size: 2rem;
    text-shadow: 2px 2px 4px #000000a7;
}

/* Lore */
.lore {
    padding: 10vh 20vw;
    background-image: url(/img/indexhtmlmobile.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid var(--c_orange_vegalie);
}

.lore .quote {
    margin-bottom: 70px;
}

.lore .quote p {
    font-size: 1.2rem;
}

.lore h4 {
    margin-left: 20px;
    padding: 0 20px;
    border-left: 10px solid var(--c_light_vegalie);
    text-shadow: 2px 2px 4px #000000a7;
}

.lore p {
    margin-bottom: 50px;
    padding: 0 1vw;
}

/* Statut */
.statut {
    display: flex;
    padding: 10vh 20vw;
    text-align: center;
    background-image: url(/img/indexhtmlmobile.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid var(--c_orange_vegalie);
}

@media screen and (max-width: 800px) {
    .statut {
        flex-direction: column;
    }
}

.statut .maintenance,
.statut .support,
.statut .legal,
.statut .partner {
    width: 200px;
}

.statut img {
    max-width: 100px;
    margin-bottom: 10px;
}

.statut p {
    font-size: 1.5em;
    text-transform: uppercase;
    font-family: var(--f_Kdam_vegalie);
    text-shadow: 2px 2px 4px #000000a7;
}

/* Trust */
.trust {
    padding: 10vh 20vw;
    text-align: center;
    background-image: url(/img/indexhtmlmobile.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid var(--c_orange_vegalie);
}

.trust h3 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px #000000a7;
}

/* 4R */
.service4R {
    padding: 10vh 0;
    text-align: center;
    background-image: url(/img/indexhtmlmobile.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid var(--c_orange_vegalie);
    position: relative;
    width: 100%;
}

.service4R .img-4R {
    max-width: 50%;
}

.service4R .btn-services {
    padding: 1em 2em;
    width: auto;
    color: var(--c_light_vegalie);
    font-weight: 200;
    text-align: center;
    background-color: var(--c_orange_vegalie);
    font-family: var(--f_Kdam_vegalie);
    letter-spacing: 1px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service4R .btn-services:hover {
    background-color: var(--c_dark_vegalie);
}

.service4R p {
    position: absolute;
    margin: 0 20%;
    padding: 1rem;
    top: 50px;
    font-size: .9rem;
    text-shadow: 2px 2px 4px #000000a7;
    font-family: var(--f_Nunito_vegalie);
    text-align: center;
    background-color: #0000005f;
    border-radius: 10px;
}

@media screen and (max-width: 800px) {

    .service4R .btn-services {
        left: 50%;
    }

    .service4R img {
        max-width: 70%;
    }
}

@media screen and (max-width: 1300px) {

    .service4R p {
        display: none;
    }
}

/* Services */
.services {
    padding: 2rem 10vw;
    background-image: url(/img/indexhtmlmobile.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid var(--c_orange_vegalie);
}

.services img {
    padding: 1em;
    max-width: 100%;
    height: 200px;
}

.services h4 {
    padding: 10px 20px;
    border-left: 10px solid var(--c_light_vegalie);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px #000000a7;
}

.services p {
    text-align: left;
}

.services .crucible,
.services .vulcan,
.services .cambio,
.services .multi-tool {
    display: flex;
    margin: 50px 0;
}

@media screen and (max-width: 800px) {

    .services .crucible,
    .services .vulcan,
    .services .cambio,
    .services .multi-tool {
        display: flex;
        flex-direction: column;
    }
}

/* Rescue Medical */
.medicalR {
    padding: 2rem 0;
    text-align: center;
    background-image: url(/img/indexhtmlmobile.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid var(--c_orange_vegalie);
    position: relative;
}

.medicalR img {
    max-width: 90%;
}

.medicalR .btn-services {
    padding: 1em 2em;
    width: 200px;
    color: var(--c_light_vegalie);
    font-weight: 200;
    text-align: center;
    background-color: var(--c_orange_vegalie);
    font-family: var(--f_Kdam_vegalie);
    letter-spacing: 1px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
}

.medicalR .btn-services:hover {
    background-color: var(--c_dark_vegalie);
}

@media screen and (max-width: 800px) {

    .medicalR .btn-services {
        left: 50%;
    }
}

/* Team */
.team {
    padding: 10vh 20vw;
    background-image: url(/img/indexhtmlmobile.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid var(--c_orange_vegalie);
}

.team .cmd {
    display: flex;
}

@media screen and (max-width: 700px) {

    .team .cmd {
        flex-direction: column;
    }
}

.team .cmd .cmd_team {
    margin: 0 10px 10px 10px;
    padding: 20px;
    width: 25%;
    border-radius: 10px;
    background-color:rgba(25, 29, 35, .4);
}

.team .cmd .cmd_team:hover {
    transform: scale(1.02);
}

@media screen and (max-width: 700px) {

    .team .cmd .cmd_team {
        width: 100%;
    }
}

.team .cmd .cmd_team img {
    width: 100%;
    padding-bottom: 2rem;
}

.team .cmd .cmd_team h2 {
    font-size: 1rem;
    text-align: center;
    color: var(--c_orange_vegalie);
    letter-spacing: 0;
}

.team .cmd .cmd_team p {
    font-size: .8em;
    text-align: center;
    font-style: italic;
    font-weight: bold;
    color: var(--c_gray_vegalie);
}

.team .cmd .cmd_team .x-link {
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement industrielle*/
    width: 15px;
}

.team .cmd .cmd_team .x-icon {
    width: 15px;
    height: 15px;
    margin-bottom: 1rem;
}

.team .recrutement {
    padding: 1em 2em;
    border-radius: 10px;
    color: var(--c_light_vegalie);
    background-color: var(--c_orange_vegalie);
    display: block; /* ou inline-block */
    width: fit-content; /* ou une largeur fixe comme width: 200px */
    margin: 0 auto; /* Centre horizontalement */
    text-align: center; /* Centre le texte à l'intérieur du bouton */
    letter-spacing: 1px;
}

.team .recrutement:hover {
    background-color: var(--c_dark_vegalie);
    transform: scale(1.1);
}

.team .corporecrute {
    margin: 10vh 0 0 0;
}

.team .recruit {
    display: flex;
}

@media screen and (max-width: 700px) {

    .team .recruit {
        flex-direction: column;
    }
}

.team .recruit .step {
    padding: 20px 20px 0 20px;
    width: 25%;
}

@media screen and (max-width: 700px) {

    .team .recruit .step {
        width: 100%;
    }
}

.team .recruit .step h2 {
    font-size: 4rem;
    text-align: center;
    align-items: center;
    align-content: center;
    color: var(--c_orange_vegalie);
    text-shadow: 2px 2px 4px #000000a7;
}

.team .recruit .step p {
    font-size: .8em;
    text-align: center;
}

/* Partners */
.partners {
    margin-bottom: -190px;
    padding: 10vh 20vw;
    background-image: url(/img/bg_blur.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 900px) {

    .partners {
        margin-bottom: -100px;
    }
}

.partners h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: left;
    color: var(--c_light_vegalie);
    text-shadow: 2px 2px 4px #000000a7;
}

.partners-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

@media screen and (max-width: 700px) {

    .partners-content {
        flex-direction: column;
    }
}

.partners img {
    width: 25vw;
    height: auto;
}

@media screen and (max-width: 700px) {

    .partners img {
        width: 80vw;
    }
}

.partners-description {
    width: auto;
}

.partners-description h5 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--c_light_vegalie);
    text-shadow: 1px 1px 3px #000000a7;
}

.partners-description p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0;
}

.partners-cta {
    text-align: right;
    margin-top: 1.5rem;
}

.partners a {
    font-size: 1rem;
    color: var(--c_light_vegalie);
    text-decoration: none;
    text-shadow: 2px 2px 4px #000000a7;
}

.partners a:hover {
    color: var(--c_orange_vegalie);
}

.partners a i {
    margin-right: 0.3rem;
}





























































/* /////////////////////////////////////// */
/* Style for PHP */
/* /////////////////////////////////////// */
.username,
.username:hover {
    color: var(--c_orange_vegalie);
}

/* Style for Table */
table {
    width: 100%;
    text-align: center;
}

table th {
    padding: .5rem 0;
    color: var(--c_light_vegalie);
    background-color: transparent;
    font-size: .7rem;
    letter-spacing: 1px;
    font-family: var(--f_Kdam_vegalie);
    font-weight: 100;
}

table td {
    padding: 1rem 0;
    font-size: .7rem;
}

th,
td {
    font-size: .8rem;
    font-family: var(--f_Roboto_vegalie);
}

table .tr_title:hover {
    background-color: transparent;
}

table thead {
    border-bottom: 1px solid var(--c_orange_vegalie);
}

table tbody .avatar {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    border: 4px solid var(--c_orange_vegalie);
}

table tr:hover {
    background-color: var(--c_bg_vegalie);
    color: var(--c_light_vegalie);
}

/* Style for alert message */
.alert-message {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    float: left;
    clear: both;
    z-index: 200;
    top: 5rem;
    left: 5%;
    padding: 1rem;
    font-size: .8rem;
    color: var(--c_light_vegalie);
    background-color: var(--c_orange_vegalie);
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1rem;
}

.nomember {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--c_orange_vegalie);
    padding: 1rem 2rem;
    color: var(--c_light_vegalie);
    letter-spacing: 1px;
    text-align: center;
    border-radius: 10px;
    max-width: 50%;
}

.fa-circle-question {
    font-size: .7rem;
    color: var(--c_orange_vegalie);
}