/********** Template CSS **********/
:root {
    --primary: #FF5E14;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;

    --primary-gradient: linear-gradient(165deg, rgba(255,94,20,1) 0%, rgba(246,194,21,1) 100%);;
    --secondary-gradient: #5F656F;
    --light-gradient: #F5F5F5;
    --dark-gradient: linear-gradient(165deg, rgba(2,36,91,1) 0%, rgba(66,126,192,1) 100%);;
    
    --primary-gradient-1: #FF5E14;
    --secondary-gradient-1: #5F656F;
    --light-gradient-1: #F5F5F5;
    --dark-gradient-1: #02245B;
    
    --primary-gradient-2: #FF5E14;
    --secondary-gradient-2: #5F656F;
    --light-gradient-2: #F5F5F5;
    --dark-gradient-2: #02245B;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease-out, visibility 0s linear .2s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .2s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .2s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: white;
    background: var(--primary);
}


.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}



.topbar-right {
    position: relative; 
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background: white;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .2s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 75px;
    display: flex;
    align-items: center; 
}

.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background: var(--dark);
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .2s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .2s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

#header-carousel .carousel-item {
    position: relative;
    height: 90vh;
}

#header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        height: 90vh;

    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.navbar-brand h3{
    width: 120px;
}

@media (min-width: 500px) {

    .navbar-brand h3{
        width: 150px;
    }
}

/* @media (max-width: 600px) {

    .container, .container-xxl, .card, .row, .col{
        padding: 1px;
        margin: 1px;
    }
} */

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: var(--dark);
}

.facts .border { 
    border-radius: 10px;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.336);
    position: relative;
    bottom: 0px;
    transition: .2s;
    border: none;
    backdrop-filter: blur(5px);
}

.facts .border:hover { 
    bottom: 10px;
    box-shadow: 1px 10px 20px rgba(0, 0, 0, 0.5);
}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border-radius: 20px;
    overflow: hidden;
}

.service-item .service-img {
    position: absolute;
    padding: 12px;
    width: 130px;
    height: 130px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .img-fluid {
    height: 500px;
    width: 100%;
}

.img-fluid {
    border-radius: 20px;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.432);
}

.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; 
    transition: .2s;
}

.service-item .service-title h3 { 
    padding: 30px;
    background: #ffffffa6; 
    border-radius: 20px;
    box-shadow: Opx Opx 30px white;
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    transition: .2s;
    border-radius: 20px;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .2s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute; 
    height: 50px;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Project ***/
.project-carousel {
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
}

.project-item img {
    transition: .2s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .2s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .2s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .2s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .3s;
}


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .2s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

input:focus {
    outline: none;
    border: none;
}

input {
    outline: none;
    border: none;
}

.form-control:focus {
    outline: none;
    border: none;
}

.form-control {
    outline: none;
    border: none;
}

.footer-bg {
    background-image: url("/img/bg/bg.jpg");
    background-color: unset;
    background-repeat: no-repeat;
    background-size: cover;
}

.spinner-logo {
    /* Autres styles de votre spinner... */
    width: 100px; /* Largeur de l'élément (à adapter selon vos besoins) */
    height: 100px; /* Hauteur de l'élément (à adapter selon vos besoins) */ 
    border-radius: 50%; /* Rendre l'élément rond */ 
    animation: spin 1s linear infinite; /* Animation de rotation */
}

/* Définition de l'animation */
@keyframes spin {
    from { transform: rotate(0deg); } /* Début de la rotation */
    to { transform: rotate(360deg); } /* Fin de la rotation */
}


.button-1 {
    min-width: 300px;
    min-height: 60px;
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #313133;
    background: #fc7e14;
  background: linear-gradient(90deg, #fc7e14 0%, #fcc614 100%);
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px #fc7c1488;
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
    }
  
  .button-1::before {
  content: '';
    border-radius: 1000px;
    min-width: calc(300px + 12px);
    min-height: calc(60px + 12px);
    border: 6px solid #fc7e14;
    box-shadow: 0 0 60px #fc7c1483;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
  }
  
  .button-1:hover, .button-1:focus {
    color: #313133;
    transform: translateY(-6px);
  }
  
  .button-1:hover::before, button:focus::before {
    opacity: 1;
  }
  
  .button-1::after {
    content: '';
    width: 30px; height: 30px;
    border-radius: 100%;
    border: 6px solid #fc7e14;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
  }
  
  .button-1:hover::after, button:focus::after {
    animation: none;
    display: none;
  }
  
  @keyframes ring {
    0% {
      width: 30px;
      height: 30px;
      opacity: 1;
    }
    100% {
      width: 300px;
      height: 300px;
      opacity: 0;
    }
  }


























  
.btn-hover {
    width: 200px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 20px;
    height: 55px;
    text-align:center;
    border: none;
    background-size: 300% 100%;

    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:focus {
    outline: none;
}

.btn-hover.color-1 {
    background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
    box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
}
.btn-hover.color-2 {
    background-image: linear-gradient(to right, #f5ce62, #e43603, #fa7199, #e85a19);
    box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);
}
.btn-hover.color-3 {
    background-image: linear-gradient(to right, #667eea, #764ba2, #6B8DD6, #8E37D7);
    box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
}
.btn-hover.color-4 {
    background-image: linear-gradient(to right, #fc6076, #ff9a44, #ef9d43, #e75516);
    box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
}
.btn-hover.color-5 {
    background-image: linear-gradient(to right, #0ba360, #3cba92, #30dd8a, #2bb673);
    box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}
.btn-hover.color-6 {
    background-image: linear-gradient(to right, #009245, #FCEE21, #00A8C5, #D9E021);
    box-shadow: 0 4px 15px 0 rgba(83, 176, 57, 0.75);
}
.btn-hover.color-7 {
    background-image: linear-gradient(to right, #6253e1, #852D91, #A3A1FF, #F24645);
    box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);
}
.btn-hover.color-8 {
    background-image: linear-gradient(to right, #29323c, #485563, #2b5876, #4e4376);
    box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
}
.btn-hover.color-9 {
    background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
}
.btn-hover.color-10 {
        background-image: linear-gradient(to right, #ed6ea0, #ec8c69, #f7186a , #FBB03B);
    box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75);
}
.btn-hover.color-11 {
       background-image: linear-gradient(to right, #eb3941, #f15e64, #e14e53, #e2373f);  box-shadow: 0 5px 15px rgba(242, 97, 103, .4);
}

a.collision {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    display: block;
    height: 70px;
    width: 200px;
    overflow: hidden;
    line-height: 70px;
    text-align: center;
    position: relative;
  }
  
  a.collision::before,
  a.collision::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background: var(--hot-pink);
    top: 50%;
    border-radius: 50%;
    z-index: -1;
  }
  
  a.collision::before {
    transform: translate(-50%, -50%);
    left: -20px;
  }
  
  a.collision::after {
    transform: translate(50%, -50%);
    right: -20px;
  }
  
  a.collision:hover::before {
    animation: move-left .8s both;
    animation-direction: alternate;
  }
  a.collision:hover::after {
    animation: move-right .8s both;
    animation-direction: alternate;
  }
  
  @keyframes move-left {
    0% {
      left: -20px;
    }
    50% {
      left: 50%;
      width: 20px;
      height: 20px;
    }
    100% {
      left: 50%;
      height: 400px;
      width: 400px;
    }
  }
  
  @keyframes move-right {
    0% {
      right: -20px;
    }
    50% {
      right: 50%;
      width: 20px;
      height: 20px;
    }
    100% {
      right: 50%;
      height: 400px;
      width: 400px;
    }
  }
  

  .bg-primary-gradient {
    background-image: linear-gradient(to right, #f18407, #f3b610, #eccb0c, #e0d321);
    box-shadow: 0 4px 15px 0 rgba(105, 105, 105, 0.75);
}

.bg-primary {
    background-color: var(--primary);
    box-shadow: 0px 5px 10px var(--primary);
} 

.description img, .procedures img {
    max-height: 400px;
    padding: 0px;
    border-radius: 10px;
}

.description img {
    border-radius: 0px;
}

.description div, .procedures div {
    overflow: hidden;
    margin-top: 20px;
}

.description p, .procedures p { 
    padding: 10px; 
}

.description li { 
    margin: 5px; 
    padding: 5px;
}

.liste-sous-service li {
    list-style-type: none;
}

/* .etape-services .nav-link.active{
    background-image: linear-gradient(to right,#0c4fec, #9ba8f5);
    box-shadow: 0 4px 15px 0 rgba(105, 105, 105, 0.75);
    border-radius: 10px;
    cursor:pointer;
} */

.etape-services .nav-link{ 
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.158);
    border-radius: 10px; 
    margin: 5px;
    padding: 5px;
    color: gray;
    cursor:pointer;
    transition: .3s all;
}

.etape-services .nav-link.active{ 
    box-shadow: 0 0 15px 0  rgba(0, 0, 0, 0.158);
    color: var(--primary);
    background-color: unset; 
}

.btn-flash {
    position: relative;
    z-index: 5; 
    border: 1px solid rgba(0, 81, 255, 1);
    color: rgba(0, 81, 255, 1);
    overflow: hidden;
    transition: .5s all;
}

.btn-flash:hover {
    color: white;
    letter-spacing: 3px;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.527);
}




/* .b::before, .b::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    transition: .5s all;
    transform: rotate(45deg);
}

.b::after {
    background-color: rgba(0, 81, 255, 0.568);
    top: -100%;
    left: -100%;
}

.b::before {
    background-color: rgba(255, 208, 0, 0.527);
    bottom: -100%;
    right: -100%;
}

.b:hover::after { 
    top: 0%;
    left: 50%;
}

.b:hover::before { 
    bottom: 0%;
    right: 50%;
} */


.btn-flash::before, .btn-flash::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 200%;
    transition: .5s all;
    border-radius: 50%;
}

.btn-flash::after {
    background-color: rgba(0, 81, 255, 1);
    top: -300%;
    left: -0%;
}

.btn-flash::before {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 5px 10px rgb(255, 255, 255);
    top: -50%;
    left: -100%;
    width: 5%;
    z-index: 1;
    transform: rotate(45deg);
    border-radius: 0%;
}

.btn-flash:hover::after { 
    top: -50%; 
    width: 200%;
    left: -50%;
}

.btn-flash::before { 
    bottom: 0%;
    right: 50%;
    animation: anime-button 2s linear 0s infinite;
}

@keyframes anime-button {
    0%{
        left: -100%; 
    }
    70%{
        left: -100%; 
    }
    100%{
        left: 100%; 
    }
}

.btn-form {
    color: var(--primary);
    border-color: var(--primary);
    background-color: unset;
}

.btn-form::after {
    border-radius: unset; 

    left: -200%;
    background-color:  var(--primary);
}

.btn-form:hover::after {
    left: -50%;
}

/* 
.bg-anime {
    animation: anime-bg 2s linear 0s infinite;
}

@keyframes anime-bg {
    0% {
        background: linear-gradient(90deg, #ff6214, #ff7f00); 
    }
    70% {
        background: linear-gradient(90deg, #ff7f00, #f7bb15);
    }
    100% {
        background: linear-gradient(90deg, #f7bb15, #ff6214);
    }
} */


body {
    margin: auto;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: auto;
    background: linear-gradient(315deg, rgba(253, 152, 1, 0.233) 3%, rgba(60, 133, 206, 0.274) 38%, rgba(48, 238, 225, 0.253) 68%, rgba(251, 255, 25, 0.226) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}



.area{
    background: #1824ff;  
    background: -webkit-linear-gradient(to left, #000dff83, #121eff);  
    width: 100%;
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}


canvas {
    display: block;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    position: fixed;
    top: 0%;
    left: 0%; 
}


.news-card, .news-aside, .commentaires, .modal-dialog, .card {
    background-color: rgba(255, 255, 255, 0.678);
    border: none;
    box-shadow: 1px 10px 20px rgba(0, 0, 0, 0.219);
    border-radius: 10px;
    margin-bottom: 20px;
    backdrop-filter: blur(7px);
}

.news-aside div, .commentaires .card, .modal-dialog div{
    background-color: unset;
    border: none;
}

.modal-dialog {
    background-color: rgba(255, 255, 255, 0.753);
    backdrop-filter: blur(7px);
}

.news-aside .list-group, .news-aside .list-group-item{
    background-color: unset;
    border: none;
}


.list-group-item{
    position: relative;
    transition: .5s all;
    left: 0px;
}

.news-aside .list-group-item.active{
    background-color: #e755169f;
    border: none;
    box-shadow: 0px 5px 10px #e755168c;
}

.news-aside .list-group-item:hover{
    background-color: #ffffff;
    color: gray;
    box-shadow: 0px 5px 10px #ffffffb2; 
    left: 10px;
}

.form-floating:focus label{
    bottom: 70px;
}

.profil-card
{
    display: flex;
    justify-content: center;
    position: relative;
}

.profil-card .card
{
    width: 70%;  
    height: 300px;
    transition: .2s all 0s ease-in;
}


.profil-card .card .card-header {
    margin: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.856);
    border-radius: 10px;
    position: relative;
    top: 0px;
    transition: .2s all .2s ease-in;
}

.profil-card .card .card-body {
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 100%;
}


.profil-card .card .card-header img {
     margin: 20px;
     width: 150px;
     height: 150px;
     border-radius: 50%;
     object-fit: cover;
     transition: .2s all .4s ease-in;
}

.profil-card .card .card-text {
    position: relative;
    top: 20px;
    opacity: 0;
    letter-spacing: 5px;
    transition: .2s all .6s ease-in;
}

.profil-card .card .social-icons {
    display: flex;
    justify-content: space-around;
    align-items:  center;
    padding: 20px;
}

.profil-card .card .social-icons .social-icon{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    padding: 10px;
    opacity: 0;
}

.profil-card .card .social-icons .social-icon:nth-child(1){
    transition: .2s all 1s ease-in;
}

.profil-card .card .social-icons .social-icon:nth-child(2){
    transition: .2s all 1.1s ease-in;
}

.profil-card .card .social-icons .social-icon:nth-child(3){
    transition: .2s all 1.2s ease-in;
}

.profil-card .card .social-icons .social-icon:nth-child(4){
    transition: .2s all 1.3s ease-in;
}

.profil-card .card .social-icons .social-icon:nth-child(5){
    transition: .2s all 1.4s ease-in;
}

.profil-card .card:hover
{
    width: 100%;   
}

.profil-card .card:hover .card-header { 
    top: -150px;
    z-index: 11;
    background-color: unset;
}

.profil-card .card:hover .card-header img { 
     width: 200px;
     height: 200px;
     border-radius: 5%; 
}

.profil-card .card:hover .card-text {
    opacity: 1;
    letter-spacing: 1px; 
}

.profil-card .card:hover .social-icons .social-icon{
    width: 40px;
    height: 40px;
    opacity: 1;
}

.menu-mobile {
    width: 100%;
    height: 70px;
    position: fixed;
    bottom: 0%;
    right: 0%;
    z-index: 15; 
    background-color: rgba(255, 255, 255, 0.712);
}

.menu-mobile .menu {
    background-color: unset;
    width: 100%;
    height: 70px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.menu-mobile .menu a{
    width: 20%;
    border: none;
    text-align: center;
    color: rgba(0, 0, 255, 0.726)    
}

.menu-mobile .icones-menu {
    font-size: 30px;
}

.menu-mobile .menu a:hover, .menu-mobile .menu a .active{
    color: var(--primary);
}



.slide-in {
    transform: translate3d(0, 0, 0) !important;
  }

.menu-top { 
    height: 75%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 20;
    transform: translate3d(0, -100%, 0);
    transition: all 0.3s ease-in;
    display: flex;
    margin: 0px;
    justify-content: center;
    align-items: center;
  }

  .menu-top .list-group { 
    width: 100%; 
    text-align: center; 
    position: absolute;
    top: 70px;
  }

  .menu-top .list-group a{ 
    color: white;
    transition: .3s all; 
    font-size: 18px;
  }

  .menu-top .list-group .active-menu, .navbar-nav .active-menu{ 
    color: var(--primary); 
  }
  
  .menu-top .list-group a:hover{ 
    text-shadow: 0px 2px 5px var(--primary);
    letter-spacing: 3px;
    color: var(--primary); 
  }

  
  .menu-bottom {
    height: 25%;
    z-index: 20;
    width: 100%;
    background-color: #36364E;
    position: fixed;
    bottom: 0;
    transform: translate3d(0, 175px, 0);
    transition: all 0.5s ease;
  }

  
  .avatar {
    height: 60px;
    width: 60px;
    border: 5px solid #36364E;
    background-color: #222;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .avatar img {
    height: 100%;
    width: auto;
    border-radius: 50%;
    position: absolute;
    top: 0%;
    left: 0%; 
    object-fit: cover;
  }

  
  .user-name {
    font-family: 'Lato';
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding-top: 35px;
    display: block;
    text-align: center;
  }


  .container-menu-icon {
    cursor: pointer;
    display: flex;
    width: 70px;
    height: 70px;
    padding: auto; 
    position: absolute;
    right: 5px;
  }
  svg {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 70px;
    height: 70px; 
   border-radius: 50%;
  }
  .active svg {
    transform: rotate(90deg);
  }
  path {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1); 
      stroke: rgba(0, 0, 255, 0.678);
  }
  path:nth-child(1) {
    transform-origin: 36% 40%;
  }
  path:nth-child(2) {
    stroke-dasharray: 29 299;
  }
  path:nth-child(3) {
    transform-origin: 35% 63%;
  }
  path:nth-child(4) {
    stroke-dasharray: 29 299;
  }
  path:nth-child(5) {
    transform-origin: 61% 52%;
  }
  path:nth-child(6) {
    transform-origin: 62% 52%;
  }
  .active path:nth-child(1) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
  }
  .active path:nth-child(2) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
  }
  .active path:nth-child(3) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
  }
  .active path:nth-child(4) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
  }
  .active path:nth-child(5) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
  }
  .active path:nth-child(6) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
  }
  
  .menu-bottom .social-icons {
    position: absolute;
    bottom: 10px;
    width: 100%;
    max-height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
}

.menu-bottom .social-icons .social-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    padding: 5px;
    font-size: 30px; 
    background-color: unset;
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.76);
}

.menu-bottom .social-icons a{
    background-color: white; 
}



/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
/* Styles spécifiques au premier lien */
.scroll-top:nth-child(1) i {
color: var(--chatbot-color);
}

/* Styles spécifiques au deuxième lien */
.scroll-top:nth-child(2) i {
color: var(--haut-parleur-color);
}

/* Styles spécifiques au troisième lien */
.scroll-top:nth-child(3) i {
color: var(--plus-color);
}

/* Ajoutez les couleurs personnalisées dans votre feuille de style ou remplacez-les par des valeurs spécifiques */
:root {
--chatbot-color: #ff0000; /* Rouge, ou une couleur de votre choix */
--haut-parleur-color: #00ff00; /* Vert, ou une couleur de votre choix */
--plus-color: #0000ff; /* Bleu, ou une couleur de votre choix */
}

/* Les styles restants restent inchangés */
.scroll-top {
    position: fixed; 
    right: 15px;
    bottom: 65px;
    z-index: 99997;
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    transition: all 0.4s;
    cursor: pointer;
  }
  
  .scroll-top i {
    font-size: 24px;
    color: var(--secondary);
    line-height: 0;
  }
  
  .scroll-top:hover {
    background: #ff580a;
    color: #fff;
  }
  
  .scroll-top.active, .scroll-top.visible {
    visibility: visible;
    opacity: 1;
  }
  
  /* Les styles pour positionner les boutons restent inchangés */
  .scroll-top:nth-child(1).afficher {
    bottom: 165px; 
  }
  
  .scroll-top:nth-child(2).afficher {
    bottom: 115px; 
  }
  
  .scroll-top:nth-child(1).cache {
    bottom: 65px;
  }
  
  .scroll-top:nth-child(2).cache {
    bottom: 65px;
  }
  
  .scroll-top:nth-child(4).active {
    bottom: 15px; 
  }
  
  .scroll-top:nth-child(3) {
    bottom: 65px;
    z-index: 99999;
  }
  
  @keyframes pulsation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .scroll-top:nth-child(2).activer-haut-parleur {
    animation: pulsation 1s ease-in-out infinite;
  }
  
  
  .scroll-top:nth-child(3).visible{
    bottom: 65px; 
    transform: rotate(45deg);
  }
  
  .scroll-top:nth-child(3).demasquer { 
    transform: rotate(45deg);
  }
  
  .scroll-top:nth-child(3).masquer { 
    transform: rotate(0deg);
  }

  .content-blog-bg {
    width:fit-content;
}

button:focus, .form-control:focus{
    box-shadow: none;
}