@charset "UTF-8";
@import url(main.css);
h2.display-6.fw-bold.p-3.pt-lg-3.m-0.titles { color: black; }

/*--------------------------BLOC VIDEO + TEXTE----------------------*/
.custom-video-div { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; padding: 100px; background-size: cover; background-position: center; background-attachment: fixed; }

.custom-video-text { flex: 1; padding: 20px; }

.custom-video { flex: 1; }

@media (max-width: 908px) { .custom-video-div { flex-direction: column !important; } }

.custom-video-text { color: #ffffff !important; }

/*--------------------------CSS h1---------------------*/
.boxed-title { display: block; /* ou inline-block */ margin: 60px auto; /* auto = centrage horizontal */ text-align: center; position: relative; padding: 40px 60px; font-family: sans-serif; font-size: 24px; font-weight: bold; opacity: 0; animation: fadeIn 0.8s ease forwards; width: fit-content; /* important pour limiter la largeur du bloc */ }

.boxed-title h1 { font-size: 2em; text-align: center; margin: 0; }

/* Coin en bas à gauche */
.boxed-title::before { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 0; border-left: 6px solid #00a3e0; /* bleu */ border-bottom: 6px solid #a3d6a3; /* vert */ animation: cornerBottomLeft 1s ease-out forwards; animation-delay: 0.3s; }

/* Coin en haut à droite */
.boxed-title::after { content: ""; position: absolute; right: 0; top: 0; width: 0; height: 0; border-right: 6px solid #00a3e0; /* bleu */ border-top: 6px solid #a3d6a3; /* vert */ animation: cornerTopRight 1s ease-out forwards; animation-delay: 0.3s; }

/* Animation d’apparition */
@keyframes fadeIn { to { opacity: 1; } }

/* Coin bas gauche */
@keyframes cornerBottomLeft { to { width: 50px;
    height: 50px; } }

/* Coin haut droit */
@keyframes cornerTopRight { to { width: 50px;
    height: 50px; } }

/*--------------------------Fond bloc espcement---------------------*/
.b-bloc-divider { height: 10px !important; background-color: transparent !important; border: none !important; box-shadow: none !important; }

.mx-4.mb-3.logo-footer.mx-auto { width: 13rem !important; }

/*--------------------------   CSS Bouton header---------------------*/
.custom-button { position: relative; border: 1px solid #ccc; border-radius: 999px; background-color: transparent; color: #0a0a0a; text-transform: uppercase; font-weight: bold; font-size: 1rem; padding: 0.75rem 1.5rem; cursor: pointer; overflow: hidden; z-index: 1; transition: all 0.3s ease; }

.custom-button::before { content: ""; position: absolute; top: 5px; left: 5px; width: 100%; height: 100%; background-color: #f5f5f5; border-radius: 999px; z-index: -1; transition: all 0.3s ease; }

.custom-button:hover::before { top: 7px; left: 7px; background-color: #e0e0e0; }

/*------------------------------------------Bouton Fixe en bas à droite------------------------------*/
.btnFixe { position: fixed; bottom: 20px; right: 20px; z-index: 10; width: 100px; transition: width 0.5s ease; }

.btnFixe:hover { width: 115px; transition: width 0.5s ease; }

/*# sourceMappingURL=custom.css.map */