html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sarabun', sans-serif;
}




.sarabun-thin {
    font-family: "Sarabun", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.sarabun-extralight {
    font-family: "Sarabun", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.sarabun-light {
    font-family: "Sarabun", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.sarabun-regular {
    font-family: "Sarabun", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.sarabun-medium {
    font-family: "Sarabun", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.sarabun-semibold {
    font-family: "Sarabun", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.sarabun-bold {
    font-family: "Sarabun", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.sarabun-extrabold {
    font-family: "Sarabun", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.sarabun-thin-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.sarabun-extralight-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.sarabun-light-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.sarabun-regular-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.sarabun-medium-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.sarabun-semibold-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.sarabun-bold-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.sarabun-extrabold-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.large-header {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(../media/images/test.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

#demo-canvas {
    display: block;
}

.custom-dropdown {
    position: relative;
}

.custom-dropdown-toggle {
    width: 80px;
    height: 80px;
    background: none;
    border: none;
    cursor: pointer;
    color: #FFF;
    font-size: 30px;
    transition: transform 0.2s ease;
}

.custom-dropdown-menu {
    background-color: #131313;
    border: none;
    list-style: none;
    padding: 0;
    margin: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
}

.custom-dropdown-menu.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-dropdown-item {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
}

.custom-dropdown-item:hover {
    background-color: #ffffff;
    color: #131313;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.video-container::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.accueil-section-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.footer {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding: 20px;

}

.logoFooter {
    width: 120px;
    height: auto;
}

.backFooter {
    background-color: rgba(0, 0, 0, 0.8);
    color: #e0e0e0;
}

a.title {
    color: #e0e0e0 !important;
}

a.title:hover {
    color: #00bcd4 !important;
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    .logoFooter {
        width: 100px;
    }
}

.custom-carousel-container {
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
}


.custom-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.custom-card {
    min-width: 315px;
    margin: 0 5px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.custom-card-text {
    max-height: 500px;
    overflow-y: auto;
    margin-bottom: 10px;
}


.custom-card.active {
    transform: scale(1.1);
    z-index: 2;
    padding: 40px;
    box-sizing: border-box;
}

.custom-card:not(.active) {
    opacity: 0.6;
    transform: scale(0.9);
}

.custom-carousel-button {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transform: translateY(-50%);
    z-index: 3;
}

.custom-carousel-button.prev {
    left: 0px;
}

.custom-carousel-button.next {
    right: 0px;
}

.custom-card-title {
    padding: 10px;
    font-size: 1.2em;
}

.drone-carousel-container {
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.drone-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.drone-card {
    min-width: 315px;
    margin: 0 5px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.drone-card-text {
    max-height: 500px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.drone-card.active {
    transform: scale(1.1);
    z-index: 2;
    padding: 30px;
    box-sizing: border-box;
}

.drone-card:not(.active) {
    opacity: 0.6;
    transform: scale(0.9);
}

.drone-carousel-button {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transform: translateY(-50%);
    z-index: 3;
}

.drone-carousel-button.prev {
    left: 0px;
}

.drone-carousel-button.next {
    right: 0px;
}

.drone-card-title {
    padding: 10px;
    font-size: 1.2em;
}

.angel-agent-card {
    border-radius: 0px !important;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.692);
    border: 1px solid #646464 !important;
}

.angel-agent-card:hover {
    transform: scale(1.02);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.692);
}

.angelFrame-sections .section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.angelFrame-sections .section.active {
    display: block;
    opacity: 1;
}

.buttonAngelFrameA {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #b9b9b96b;
    color: white;
}

.buttonAngelFrameB {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #b9b9b96b;
    color: white;
}

.buttonAngelFrameC {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #b9b9b96b;
    color: white;
}

.buttonAngelFrameHover:hover {
    background-color: #274684;
}

.ombreText {
    text-shadow: 2px 2px 2px black;
}

.break-on-small {
    display: inline-block;
}

@media (max-width: 576px) {
    .break-on-small::after {
        content: '\A';
        white-space: pre;
    }
}

.blocAngelFrame {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border: 1px solid #646464;
}

.special-nav-link {
    color: white !important;
    text-decoration: none !important;
    border: 1px solid #646464;
    border-bottom: none;
    padding: 5px;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    margin-bottom: 0px !important;
    background-color: rgba(0, 0, 0, 0.8);
}

.nav-link.active {
    background-color: #274684;
    color: white;
}

.container-article-angel-agent {
    border-top: 1px solid rgb(43, 43, 43);
    position: relative;
    height: 353px;
    margin-bottom: 50px;
    padding: 15px;
}

@media (max-width: 1024px) {
    .container-article-angel-agent {
        margin-bottom: 40px;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .container-article-angel-agent {
        margin-bottom: 30px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .container-article-angel-agent {
        margin-bottom: 20px;
        padding: 8px;
    }
}

@media (max-width: 320px) {
    .container-article-angel-agent {
        margin-bottom: 10px;
        padding: 5px;
    }
}

.animated-article {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.animated-article.show {
    opacity: 1;
    z-index: 2;
}

.animated-article.hidden {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.animated-article.slide-in-bck-top {
    animation: slide-in-bck-top 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-bck-top {
    0% {
        -webkit-transform: translateZ(700px) translateY(-300px);
        transform: translateZ(700px) translateY(-300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0) translateY(0);
        transform: translateZ(0) translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-bck-top {
    0% {
        -webkit-transform: translateZ(700px) translateY(-300px);
        transform: translateZ(700px) translateY(-300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0) translateY(0);
        transform: translateZ(0) translateY(0);
        opacity: 1;
    }
}

.article-angel-agent-bas-position {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .article-angel-agent-bas-position {
        margin-top: 100px !important;
    }
}

@media (max-width: 533px) {
    .article-angel-agent-bas-position {
        margin-top: 150px !important;
    }
}

@media (max-width: 493px) {
    .article-angel-agent-bas-position {
        margin-top: 230px !important;
    }
}

.bg-dark-perso {
    background-color: rgb(58, 58, 58) !important;
}

.container-administration {
    max-height: 400px;
    border: 1px solid #646464;
}

.bg-dark-perso-transparent {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.button-valid {
    background-color: #274684 !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.button-valid:hover {
    scale: 1.1;
}

.button-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-evenly !important;
    margin-bottom: 20px !important;
}

.filter-button {
    display: inline-block !important;
    padding: 10px 20px !important;
    margin: 5px !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid #646464 !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: background-color 0.3s, transform 0.3s !important;
}

.filter-button.active {
    background-color: #274684 !important;
}

.filter-button:hover {
    transform: scale(1.1) !important;
}

.modal-content {
    max-width: 90%;
    height: auto;
}

.modal-content img {
    max-width: 200px;
    height: auto;
}

.underline-perso {
    text-decoration: 1px underline;
}

.borderImg {
    border: 5px ridge #274684 !important;
}

.container-carousel-angelPro {
    background-color: rgba(0, 0, 0, 0.55) !important;
}

.container-tran {
    background-color: rgba(0, 0, 0, 0.8) !important;
    border-radius: none !important;
    border: 1px solid #646464 !important;
}

.editIcon {
    background: none;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
}

.deleteIcon {
    background: none;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
}

.editIcon:hover {
    color: #0065b8;
}

.deleteIcon:hover {
    color: #0065b8;
}

.pointer {
    cursor: pointer !important;
}

.carousel-card,
.grid-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    max-width: 100%;
}

.carousel-card .card-img,
.grid-card .card-img {
    height: 200px;
    object-fit: cover;
    max-height: 300px;
}

.carousel-card .card-img-overlay,
.grid-card .card-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
}

/* Carousel custom */
.custom-carousel .carousel-item,
.custom-carousel .carousel-inner,
.custom-carousel .card {
    height: 100%;
}

@media (min-width: 768px) {

    .carousel-card,
    .grid-card {
        max-height: 400px;
    }

    .carousel-card .card-img,
    .grid-card .card-img {
        height: auto;
        max-height: 200px;

    }
}

#exposition {
    display: block;
}

.logo-admin {
    border-radius: 100%;
    box-shadow: 0px 0px 15px #00bcd4;
}

.logo-newsletter {
    width: 150px;
    height: auto;
}

.logo-Designed {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 130px;
    height: auto;
}

@media (max-width: 1024px) and (min-width: 768px) {
    .logo-Designed {
        position: absolute;
        bottom: 10px;
        right: 10px;
        width: 100px;
        height: auto;
    }
}

@media (max-width: 767px) {
    .logo-Designed {
        position: absolute;
        bottom: 10px;
        right: 10px;
        width: 100px;
        height: auto;
    }
}

.image-70,
.image-69 {
    perspective: 1000px;
    width: 150px !important;
    height: 150px !important;
    position: relative;
}

.image-70,
.image-69 {
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.image-69 {
    transform: rotateY(180deg);
}

.front,
.back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    object-fit: cover;
}

.front {
    z-index: 2;
}

.back {
    transform: rotateY(180deg);
}


.button-01 {
    appearance: none;
    background: #fff;
    border-width: 0;
    box-sizing: border-box;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1em;
    margin: 0;
    opacity: 1;
    outline: 0;
    padding: 1em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-rendering: geometricprecision;
    text-transform: uppercase;
    transition: opacity 300ms cubic-bezier(.694, 0, 0.335, 1), background-color 100ms cubic-bezier(.694, 0, 0.335, 1), color 100ms cubic-bezier(.694, 0, 0.335, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
}

.button-01:before {
    animation: opacityFallbackOut .5s step-end forwards;
    backface-visibility: hidden;
    background-color: #004a86;
    clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateZ(0);
    transition: clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1), -webkit-clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1);
    width: 100%;
}

.button-01:hover {
    color: #fff;
}

.button-01:hover:before {
    animation: opacityFallbackIn 0s step-start forwards;
    clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}

.button-01:after {
    background-color: #004a86;
}

.button-01 span {
    z-index: 1;
    position: relative;
}

.title-card-accueil {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.card:hover .title-card-accueil {
    opacity: 0;
    pointer-events: none;
}


.accueil-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 10px;
}

.play-button {
    color: #fff;
    text-shadow: 0 0 2px #00e1ff;
    font-size: 24px;
    cursor: pointer;
}

.card:hover .play-button {
    color: #00e1ff;
    text-shadow: 0 0 2px #fff;
}

.content-table {
    max-width: 1200px;
    margin: auto;
}

.title-bleu {
    color: #0065b8;
}

.form-modif-contenue input,
.form-modif-contenue textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-left: none;
    border-right: none;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.verification-code-container{
    width: 100%;
    max-width: 600px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: auto;
    color: #fff;
    text-align: center;
    margin-top: 50px;
}

.form-login-field input {
    background: none;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    border-left: none;
    border-right: none;
    width: 100%;
    color: white;
    padding: 5px 10px;
    margin-bottom: 20px;
}

.form-login-field input::placeholder {
    color: white;
}

.form-login-field label {
    color: #fff;
}

.form-login-field input:focus {
    outline: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
}

.link-forgot-password {
    color: #ccc;
    text-decoration: underline;
    cursor: pointer;
}

.link-forgot-password:hover {
    color: #007bff;
}

.content-mdp-oublier{
    width: 100%;
    max-width: 500px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: auto;
    color: #fff;
    text-align: center;
    margin-top: 50px;
}       