/* Importation des polices */
@import url('https://fonts.googleapis.com/css?family=Herr+Von+Muellerhoff|Lato:100,300,400,400i,700,900');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

/* Définition des variables CSS */
:root {
    --font-primary: 'Exo 2', sans-serif;
    --font-secondary: 'Lato', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --color-purple: #5A287F;
    --color-bluenight: #030F27;
    --color-white: #fff;
    --color-yellow: #FBC517;
    --color-text-dark: #333;
    --color-bg-services: rgba(251, 197, 23, 0.4);
    --color-footer-bg: #030F27;
    --color-footer-text: #fff;
    --transition: all 0.35s ease-out;
}


/* start loader */

/* end loader */

/* Styles généraux */
html {
    scroll-behavior: smooth;
}

/* style initial avvannt que l' element soit visible */
.animate-on-scroll {
    opacity: 1;
    transition: opacity 1s ease-out;
}

/* style de l'element lorsquil est visible */
.animate-on-scroll.visible {
    opacity: 1;
}

body {
    font-family: var(--font-primary);


}

.index-z-1 {
    z-index: -1 !important;
}

.lato {
    font-family: var(--font-secondary);
}

.span-shade {
    font-family: var(--font-script);
    /* font-size: 2vw; */
    padding: 2vw 0;

}

.color-z {
    color: var(--color-text-dark);
}
/* 
modal */
.bar-modal{
    background-color: var(--color-purple);
    color: var(--color-white);
}
.bar-modal span{ 
    color: var(--color-yellow);
    font-weight: 700;
}

/* Navigation */
.bg-nav1 {
    background-color: var(--color-white) !important;
}

.textColor {
    color: var(--color-bluenight);
}

.navbarBgDark {
    background-color: var(--color-yellow);
    z-index: 9998 !important;
}

.navbar-toggler {
    color: var(--color-purple);
    background-color: transparent;
    border: var(--bs-border-width) solid var(--color-purple);
}

.navbar-toggler-icon {
    background-image: none !important;
    background-color: var(--color-purple);
    height: 3px;
    width: 25px;
    margin: 10px 0;
    position: relative;
    transition: var(--transition);
    transform-origin: center;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    display: block;
    background-color: var(--color-purple);
    height: 3px;
    content: "";
    position: relative;
    transition: var(--transition);
    transform-origin: center;
}

.navbar-toggler-icon::before {
    top: -7px;
}

.navbar-toggler-icon::after {
    top: 4px;
}

/* Styles pour la transformation des boutons navbar */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    transform: rotate(-90deg) translateX(7px);
}

/* Liens de la navbar */
.navbar-nav .nav-link {
    color: var(--color-purple);
    font-weight: 600;
    transition: font-weight 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-white);
    font-weight: 700;
}

/* Boutons */
.getBtn {
    color: var(--color-purple);
}

/* Ligne de séparation */
.sideLine {
    border-right: 1px solid var(--color-bluenight);
}

.iconHeight {
    height: 24px;
    width: 24px;
}

/* Styles pour les écrans larges */
@media screen and (min-width: 992px) {
    .sideLine {
        border-right: none;
    }

    .iconHeight {
        height: 46px;
        width: 46px;
    }
}

.lg-align {
    align-items: center;
}

/* Pied de page */
footer {
    width: 100%;
    padding: 10px;
    background-color: var(--color-footer-bg);
    color: var(--color-footer-text);
    text-align: center;
}

.legal-mentions {
    margin: 0;
    font-size: 0.9em;
    text-align: center;
}

/* Sections */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5em;
}

.section-container {
    display: grid;
    place-items: center;
}

.section-content {
    color: var(--bs-bg-opacity);
}

section {
    padding: 0 10px;
}



#home {
    min-height: 100vh;
}

#services {
    min-height: 100vh;
    background-color: var(--color-bg-services);
}

/* Image de fond */
.back-img-section {
    position: relative;
    width: 100%;
}

.back-img-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url('/images/assets/back1.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.back-img-section>* {
    position: relative;
    z-index: 2;
    color: var(--color-text-dark);
    padding: 3px;
}

#about,
#extra,
#contact {
    min-height: 100vh;
}

#contact {
    background-color: var(--color-yellow);
}

.background-section {
    background-image: url("/images/back.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    /* Adjust the height as needed */
}

.form {
    width: 100%;
    height: 100%;
    background: #FFF;
    border-radius: 8px;
    box-shadow: 0 0 40px -10px var(--color-text-dark);
    margin: calc(50vh - 40px) auto;
    padding: 20px 30px;
    max-width: calc(100vw - 100px);
    box-sizing: border-box;
    font-family: var(--font-primary), sans-serif;
    position: relative
}

.form-title {
    margin: 10px 0;
    padding-bottom: 10px;
    width: 1OOvw;
    color: var(--color-bluenight);
    border-bottom: 3px solid var(--color-bluenight)
}

.form-input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background: none;
    outline: none;
    resize: none;
    border: 0;
    font-family: var(--font-secondary), sans-serif;
    transition: all .3s;
    border-bottom: 2px solid #bebed2
}

.form-input:focus {
    border-bottom: 2px solid #78788c
}

.sub:before {
    content: "";
    display: block;
    margin: 28px 0 0;
    font-size: 14px;
    color: #5a5a5a
}

.form-button {
    float: left;
    padding: 8px 12px;
    margin: 8px 0 0;
    font-family: var(--font-primary), sans-serif;
    border: 2px solid #78788c;
    background: 0;
    color: var(--color-bluenight);
    cursor: pointer;
    transition: all .3s
}

.form-button:hover {
    background: var(--color-purple);
    color: #fff
}

.contact {
    content: '';
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: var(--color-purple);
    color: #fff;
    width: 350px;
    padding: 16px 4px 16px 0;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 12px;
    box-shadow: 10px 10px 40px -14px #000
}

.contact>span {
    margin: 0 5px 0 15px;

}

/* Titres */
.title-text h2 {
    font-family: var(--font-script);
    padding-bottom: 10px;
    position: relative;
}

.title-text h2 span {
    color: var(--color-yellow);
    font-family: var(--font-secondary);
    text-transform: uppercase;
}

#services .title-text h2 span {
    color: var(--color-white);
    font-family: var(--font-secondary);
    text-transform: uppercase;
}

#contact .title-text h2 span {
    color: var(--color-white);
    font-family: var(--font-secondary);
    text-transform: uppercase;
}

#contact .title-text h2 {
    color: var(--color-white);
    font-family: var(--font-script);
    padding-bottom: 10px;
    position: relative;
}

#contact .title-text h2::after {
    background: var(--color-white);

}


.title-text h2::after {
    background: var(--color-yellow);
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 50px;
}

/* Boutons de lecture */
a.read-more {
    width: 210px;
    text-decoration: none;
    border: 1px solid var(--color-purple);
    background-color: var(--color-purple);
    color: var(--color-yellow);
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    /* margin-top: 30px; */
    padding: 7px 23px;
    text-transform: uppercase;
    align-items: center;
    text-align: center;
}

a.read-more:hover {
    background: var(--color-yellow);
    color: var(--color-bluenight);
    border-color: var(--color-yellow);
}
/* extra */
a.read-more-extra {
    text-decoration: none;
    border: 1px solid var(--color-purple);
    background-color: var(--color-purple);
    color: var(--color-yellow);
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    /* margin-top: 30px; */
    padding: 7px 23px;
    text-transform: uppercase;
    align-items: center;
    text-align: center;
}

a.read-more-extra:hover {
    background: var(--color-yellow);
    color: var(--color-bluenight);
    border-color: var(--color-yellow);
}

/* Zone de compteur */
.counter-section i {
    display: block;
    margin: 0 0 10px;
}

.counter-section span.counter {
    font-size: 40px;
    color: #000;
    line-height: 60px;
    display: block;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
}

.counter-title {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.counter-icon {
    top: 25px;
    position: relative;
}

.counter-style2 .counter-title {
    letter-spacing: 0.55px;
    float: left;
}

.counter-style2 span.counter {
    letter-spacing: 0.55px;
    float: left;
    margin-right: 10px;
}

.counter-style2 i {
    float: right;
    line-height: 26px;
    margin: 0 10px 0 0;
}

.counter-subheadline span {
    float: right;
}

.medium-icon {
    font-size: 40px !important;
    margin-bottom: 15px !important;
}

/* Effet de survol */
.hover {
    overflow: hidden;
    position: relative;
    padding-bottom: 60%;
}

.hover-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    transition: all 0.4s;
}

.hover img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
}

.hover-content {
    position: relative;
    z-index: 99;
}

/* Effet de survol spécifique */
.hover-4 img {
    width: 110%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hover-4 .hover-overlay {
    background: rgba(0, 0, 0, 0.4);
    z-index: 90;
}

.hover-4-title {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1.4rem;
    z-index: 99;
    font-size: .9rem;
   
}
.hover-4-title {
opacity: 1;
}

.hover-4-description {
    position: absolute;
    top: 2rem;
    left: 2rem;
    text-align: right;
    border-right: 3px solid var(--color-white);
    padding: 0 1rem;
    z-index: 99;
    transform: translateX(-1.5rem);
    opacity: 0;
    transition: all 0.3s;
}

@media (min-width: 992px) {
    .hover-4-description {
        width: 81%;
    }
}

.hover-4:hover img {
    width: 100%;
}

.hover-4:hover .hover-4-description {
    opacity: 1;
    transform: none;
}

.hover-4:hover .hover-overlay {
    background: rgba(90, 40, 127, 0.9);
}

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

    .hover-overlay:hover .hover-4-title{
        opacity: O;
    }
   

}

/* Animation */
@keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(0, 0, 0);
    }
}

.svg-elem {
    animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s infinite;
}


/* toast */
.colored-toast.swal2-icon-success {
    background-color: #a5dc86 !important;
  }
  
  .colored-toast.swal2-icon-error {
    background-color: #f27474 !important;
  }
  
  .colored-toast.swal2-icon-warning {
    background-color: #f8bb86 !important;
  }
  
  .colored-toast.swal2-icon-info {
    background-color: #3fc3ee !important;
  }
  
  .colored-toast.swal2-icon-question {
    background-color: #87adbd !important;
  }
  
  .colored-toast .swal2-title {
    color: white;
  }
  
  .colored-toast .swal2-close {
    color: white;
  }
  
  .colored-toast .swal2-html-container {
    color: white;
  }
  



/*contact-section */
#contact {
    width: 100%;
    height: 100%;
}

.section-header {
    text-align: center;
    margin: 0 auto;
    padding: 40px 0;
    font: 300 60px 'Oswald', sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.contact-wrapper {
    background-color: var(--color-yellow);
    box-shadow: 0px 0px 10px var(--color-text-dark);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    max-width: 840px;
}

/* Left contact page */
.form-horizontal {
    /*float: left;*/
    max-width: 400px;
    font-family: 'Lato';
    font-weight: 400;
    background-color: var(--color-yellow);
}

.form-control,
textarea {
    /* max-width: 400px; */

    color: #fff;
    letter-spacing: 1px;
}

.send-button {
    margin-top: 15px;
    height: 34px;
    width: 400px;
    overflow: hidden;
    transition: all .2s ease-in-out;
}

.send-button:hover {
    background-color: var(--color-purple);
    color: var(--color-white);
}

.alt-send-button {
    width: 100%;
    height: 20px;
    transition: all .2s ease-in-out;
}

.send-text {
    display: block;
    margin-top: 10px;
    font: 700 12px 'Lato', sans-serif;
    letter-spacing: 2px;
}
.bann-btn{
    /* background-color: var(--color-purple);  */
    width:100%;
}

        /* Style du bouton et du loader */
      

       .spinner-border {
            display: none;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

       .loading .spinner-border {
            display: inline-block;
        }





        .button {
            display: inline-block;
            min-width: 150px;
            margin: 20px auto;
            background: var(--color-purple);
            color: #fefefe;
            font-size: 1.2em;
            padding: 1em;
            border-radius: 4px;
            text-align: center;
            position: relative;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            border: 0;
            transition: border-radius linear 0.05s, width linear 0.05s;
       }
       .button:hover {
        background: var(--color-bluenight);
        color: #fefefe;
     
   }
        .button:focus {
            outline: 0;
       }
        .button.animate {
            width: 68.1818181818px;
            height: 68.1818181818px;
            min-width: 0;
            border-radius: 50%;
            color: transparent;
       }
        .button.animate:after {
            position: absolute;
            content: '';
            width: 25px;
            height: 25px;
            border: 4px solid #fefefe;
            border-radius: 50%;
            border-left-color: transparent;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            animation: spin infinite 2.5s linear;
            --webkit-animation: spin infinite 2.5s linear;
            animation-name: spin;
            -webkit-animation-name: spin;
            transition-timing-function: ease-in-out;
            -webkit-transition-timing-function: ease-in-out;
            animation-duration: 2.5s;
            -webkit-animation-duration: 2.5s;
            animation-fill-mode: forwards;
            -webkit-animation-fill-mode: forwards;
       }
        .button.animate.success:before {
            position: absolute;
            content: '';
            width: 25px;
            height: 12.5px;
            border: 4px solid #fefefe;
            border-right: 0;
            border-top: 0;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(0);
            transform: translate(-50%, -50%) rotate(0deg) scale(0);
            -webkit-animation: success ease-in 0.15s forwards;
            animation: success ease-in 0.15s forwards;
            animation-delay: 2.5s;
       }
        .button.animate.error {
            position: relative;
            -webkit-animation: vibrate ease-in 0.5s forwards;
            animation: vibrate ease-in 0.5s forwards;
            -webkit-animation-delay: 2.5s;
            animation-delay: 2.5s;
       }
        .button.animate.error:before {
            color: #fff;
            position: absolute;
            content: '!';
            font-size: 1.8rem;
            font-weight: bold;
            text-align: center;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
            -webkit-animation: error ease-in 0.5s forwards;
            animation: error ease-in 0.5s forwards;
            animation-delay: 2.5s;
       }
        @keyframes spin {
            0% {
                transform: translate(-50%, -50%) rotate(0deg) scale(1);
           }
            100% {
                transform: translate(-50%, -50%) rotate(360deg) scale(1);
           }
           
       }
        @-webkit-keyframes spin {
            0% {
                -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1);
           }
            100% {
                -webkit-transform: translate(-50%, -50%) rotate(360deg) scale(1);
           }
          
       }
       
        @keyframes success {
            from {
                transform: translate(-50%, -50%) rotate(0) scale(0);
           }
            to {
                transform: translate(-50%, -50%) rotate(-45deg) scale(1);
           }
       }
        @-webkit-keyframes success {
            from {
                -webkit-transform: translate(-50%, -50%) rotate(0) scale(0);
           }
            to {
                -webkit-transform: translate(-50%, -50%) rotate(-45deg) scale(1);
           }
       }
        @keyframes error {
            from {
                transform: translate(-50%, -50%) scale(0);
           }
            to {
                transform: translate(-50%, -50%) scale(1);
                background-color: #f44336;
           }
       }
        @-webkit-keyframes error {
            from {
                -webkit-transform: translate(-50%, -50%) scale(0);
           }
            to {
                -webkit-transform: translate(-50%, -50%) scale(1);
                background-color: #f44336;
           }
       }
        @keyframes vibrate {
            0%, 30%, 60%, 85%, 100% {
                left: 0;
                background-color: #f44336;
           }
            10%, 40%, 90%, 70% {
                left: -2px;
                background-color: #f44336;
           }
            20%, 50%, 80%, 95% {
                left: 2px;
                background-color: #f44336;
           }
       }
        





.parallax {
    /* The image used */
    background-image: url("/images/back.png");
  

  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
.about-content{
    display: flex;
    justify-content: center;
}
.alt-send-button:hover {
    transform: translate3d(0px, -29px, 0px);
}

/* Begin Right Contact Page */
.direct-contact-container {
    max-width: 400px;
    background-color: var(--color-yellow);
    padding: 5px;
}

/* Location, Phone, Email Section */
.contact-list {
    list-style-type: none;
    margin-left: -30px;
    /* padding-right: 20px; */
}

.list-item {
    line-height: 4;
    color: var(--color-bluenight);
}

.contact-text {
    font: 300 18px 'Lato', sans-serif;
    letter-spacing: 1.9px;
    color: var(--color-bluenight);
}

.place {
    margin-left: 20px;
}

.phone {
    margin-left: 20px;
}

.gmail {
    margin-left: 20px;
}

.contact-text a {
    color: var(--color-bluenight);
    text-decoration: none;
    transition-duration: 0.2s;
}

.contact-text a:hover {
    color: #fff;
    text-decoration: none;
}


/* Social Media Icons */
.social-media-list {
    position: relative;
    font-size: 22px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.social-media-list li a {
    color: #fff;
}

.social-media-list li {
    position: relative;
    display: inline-block;
    height: 60px;
    width: 60px;
    margin: 10px 3px;
    line-height: 60px;
    border-radius: 50%;
    color: #fff;
    background-color: rgb(27, 27, 27);
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.social-media-list li:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 0 1px #fff;
    transition: all .2s ease-in-out;
    pointer-events: none;
    /* Ensure the pseudo-element does not interfere with click events */
}

.social-media-list li:hover {
    background-color: #fff;
}

.social-media-list li:hover:after {
    opacity: 1;
    transform: scale(1.12);
    transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
}

.social-media-list li:hover a {
    color: var(--color-purple);
}

.copyright {
    font: 200 14px 'Oswald', sans-serif;
    color: #555;
    letter-spacing: 1px;
    text-align: center;
}

.form-group {
    padding-bottom: 5px;
}

hr {
    border-color: var(--color-bluenight);
}

/* begin extra-section */


  .title {
   
      margin-bottom: 50px;
      text-transform: uppercase;
  }
  
  .card-block {
      font-size: 1em;
      position: relative;
      margin: 0;
      padding: 1em;
      border: none;
      /* border-top: 1px solid rgba(196, 202, 208, 0.1); */
      box-shadow: none;
       
  }
  .card {
      font-size: 1em;
      overflow: hidden;
      padding: 5;
      border: none;
      border-radius: .28571429rem;
      /* box-shadow: 0 1px 3px 0 #d4d4d5, 0 0 0 1px #d4d4d5; */
      margin-top:20px;
  }
  .resized-img {
    width: 450px;
    height: 300px;
    object-fit: cover; /* Cette propriété ajuste l'image pour remplir l'espace tout en gardant ses proportions */
}
  
  .carousel-indicators li {
      border-radius: 12px;
      width: 12px;
      height: 12px;
      background-color: #404040;
  }
  .carousel-indicators li {
      border-radius: 12px;
      width: 12px;
      height: 12px;
      background-color: #404040;
  }
  .carousel-indicators .active {
      background-color: white;
      max-width: 12px;
      margin: 0 3px;
      height: 12px;
  }
  .carousel-control-prev-icon {
   background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
  }
  
  .carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
  }

  .btn {
    margin-top: auto;
  }


/* end extra-section */

/* Begin Media Queries*/
@media screen and (max-width: 850px) {
    .contact-wrapper {
        display: flex;
        flex-direction: column;
    }

    .direct-contact-container,
    .form-horizontal {
        margin: 0 0;
    }

    .direct-contact-container {
        margin-top: 60px;
        max-width: 300px;
    }

    .social-media-list li {
        height: 60px;
        width: 60px;
        line-height: 60px;
    }

    .social-media-list li:after {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
   

}

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

    .direct-contact-container,
    .form-wrapper {
        float: none;
        margin: 0 auto;
    }

    .form-control,
    textarea {

        margin: 0 auto;
    }


    .name,
    .email,
    textarea {
        width: 280px;
    }

    .direct-contact-container {
        margin-top: 60px;
        max-width: 280px;
    }

    .social-media-list {
        left: 0;
    }

    .social-media-list li {
        height: 55px;
        width: 55px;
        line-height: 55px;
        font-size: 2rem;
    }

    .social-media-list li:after {
        width: 55px;
        height: 55px;
        line-height: 55px;
    }
    /* .bann-btn{
        margin: 0 10px !important;
    } */

}

@media screen and (max-width: 410px) {
    .send-button {
        width: 99%;
    }
}

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

    .hover-overlay :hover{
        display: none;
    }

}