*{
    padding: 0;
    margin: 0;
    transition: 1s;
}
body{
    font-family: "Aladin", system-ui;
}
p{
    margin-bottom: 0px !important;
}

html{
    scroll-behavior: smooth;
}
header{
    height: 100vh;
}
/* NAV */
nav ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 20px 40px 0px 10px;
    vertical-align: middle;
}

.bg-white-logo{
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: absolute;
    top: 33px;
    left: 44px;
}
.logo img{
    width: 300px;
    padding: 10px 0px 10px 0px;
    position: relative;
    z-index: 1;
}
.nav-center{
    padding-top: 20px;
    z-index: 1;
}
.nav-center a{
    text-decoration: none;
    color: black;
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-right{
    display: flex;
    column-gap: 40px;
    padding-top: 20px;
    z-index: 1;
}
.nav-right li a{
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: white;
    padding: 15px 15px;
    position: relative;
}
.nav-right li a::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-top: 2px solid white;
    transition: 0.5s;
    width: 0;
}
.nav-right li a:hover::before{
    width: 100%;
}
.nav-right li a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 2px solid white;
    transition: 0.5s;
    width: 0%;
}
.nav-right li a:hover::after{
    width: 100%;
}

@media screen and (min-width: 1000px){
    .menuResponsive{
        display: none;
    }
}
/* FIN NAV */



/* ACCUEIL */

header{
    background-image: url('../img/pexels-anete-lusina-4792286.jpg');
    background-image: url('../img/img-accueil-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: 50%;
    animation-duration: 3s;
    position: relative;
}

/* btn */

.frame{
    position: absolute;
    bottom: 20%;
    right: 8%;
    width: fit-content;
    height: fit-content;
}

.custom-btn {
    
    width: fit-content;
    padding: 30px 50px;
    border: 1px solid white;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-size: 20px;
    text-transform: uppercase;
    border-radius: 5px;
    color: white;
    letter-spacing: 3px;
}

/* 11 */
.btn-11 {
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-11:hover {
    background: white;
    transition: 0.5 s;
    color: black;
    border: none;
    border-radius: 0px;
}
.btn-11:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: black;
    animation: shiny-btn1 3s ease-in-out infinite;
}
.btn-11:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}


@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.bg-btn-accueil a{
  position:absolute;
  bottom: 50px;
  left: 50%;
  translate: -50%, -50%;
  padding: 30px 60px 30px 60px;
  color: white;
  font-weight: 600;
  text-transform:uppercase;
  text-decoration:none;
  letter-spacing: 5px;
  font-size: 25px;
  overflow:hidden;
  border-radius: 5px;
  box-shadow: rgb(255, 255, 255) 0px 20px 30px -10px;
}

.bg-btn-accueil a::before
{
  content:"";
  position:absolute;
  top:2px;
  left:2px;
  bottom:2px;
  width:50%;
  background:rgba(255,255,255,0.05);
  
}
.bg-btn-accueil a span:nth-child(1)
{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:2px;
  background:linear-gradient(to right, #3f48cc ,#fff);
  animation: animate1 2s linear infinite;
  animation-delay:1s;
  
}
@keyframes animate1
{
  0%
  {
    transform:translateX(-100%);
}
  100%
  {
    transform:translateX(100%);
  }
}
.bg-btn-accueil a span:nth-child(2)
{
  position:absolute;
  top:0;
  right:0;
  width:2px;
  height:100%;
  background:linear-gradient(to bottom, #3f48cc ,#fff);
  animation: animate2 2s linear infinite;
  animation-delay:2s;
}
@keyframes animate2
{
  0%
  {
    transform:translateY(-100%);
}
  100%
  {
    transform:translateY(100%);
  }
}
.bg-btn-accueil a span:nth-child(3)
{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:2px;
  background:linear-gradient(to left, #3f48cc ,#fff);
   animation: animate3 2s linear infinite;
  animation-delay:1s;
  
}
@keyframes animate3
{
  0%
  {
    transform:translateX(100%);
}
  100%
  {
    transform:translateX(-100%);
  }
}
.bg-btn-accueil a span:nth-child(4)
{
  position:absolute;
  top:0;
  left:0;
  width:2px;
  height:100%;
  background:linear-gradient(to top, #3f48cc ,#fff);
   animation: animate4 2s linear infinite;
  animation-delay:2s;
  
}
@keyframes animate4
{
  0%
  {
    transform:translateY(100%);
}
  100%
  {
    transform:translateY(-100%);
  }
}

/* fin btn */

/* arrow */

.bg-arrow img{
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    animation: shakeY;
    animation-duration: 7s;
    animation-iteration-count: infinite;
}

/* fin arrow */


.bg-accueil-left{
    position: relative;
}
.bg-accueil-left h1{
    position: absolute;
    text-transform: uppercase;
    top: 25vh;
    left: 100px;
    font-size: 60px;
    letter-spacing: 10px;
    line-height: 160%;
    z-index: 1;
    font-weight: 100;
    color: white;
    /*text-shadow: 2px 2px 2px black;*/
}


.filter-img-accueil{
    /*background-color: rgba(63, 72, 204, 0.3);*/
    background-color: rgba(0, 0, 0, 0.4);
    height: 100%;
}

.text-animate-1,
.text-animate-2,
.text-animate-3 {
    display: inline-block; /* indispensable pour fadeInLeft/fadeInRight */
    animation-delay: 1s;
    animation-duration: 3s;
    animation-fill-mode: both;
}

.text-animate-2 {
    animation-delay: 1.5s;
}
.text-animate-3 {
    animation-delay: 2s;
}

.bg-img-accueil {
    animation-duration: 6s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
    animation-name: fadeIn;
}

/* FIN ACCUEIL */

/* MAIN */

main > div h1{
    text-transform: uppercase;
    letter-spacing: 12px;
    color: rgba(197, 22, 177, 1);
    color: rgba(63, 72, 204, 1.0);
    padding: 100px 0px 0px 100px;
}
.divContact h1{
    padding-top: 150px;
}
/* services */

.card{
    --bs-card-border-width: none !important;
}
.card-body{
    padding: 0px !important;
    padding-top: 10px !important;
}
.btn{
    --bs-btn-padding-x: 0px !important;
    --bs-btn-padding-y: 0px !important;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0px !important;
    padding: 0px 5px 0px 5px;
    transition: 0.5s;
    margin-top: 5px;
}
.btn:hover{
   background-color: transparent;
   /*border: 1px solid #3f48cc;*/
   transition: 0.5s;
   padding: 0px !important;
}
a[aria-expanded="true"] svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

a[aria-expanded="false"] svg {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.sous-text{
    padding: 10px 0px 0px 100px;
    letter-spacing: 1px;
    font-size: 20px;
}
.divContact .sous-text{
    padding-bottom: 40px !important;
}
.contain-services{
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:"services-1 services-2"
                        "services-3 services-4";
    row-gap: 100px;
    padding: 0px 200px 0px 200px;
    column-gap: 100px;
    justify-content: center;
}
.blockServices1 div:nth-child(2), .blockServices2 div:nth-child(2), .blockServices3 div:nth-child(2), .blockServices4 div:nth-child(2){
    padding: 20px 0px 20px 0px;
}

.blockServices1, .blockServices2{
    height: fit-content;
    min-height: 350px !important;
    min-width: 300px;
}
.blockServices3, .blockServices4{
    height: fit-content;
    min-height: 250px !important;
}
.mainTitleServices{
    font-weight: bold;
    text-transform: uppercase;
    color: rgba(63, 72, 204, 1.0);
    padding-bottom: 10px;
    letter-spacing: 1px;
}


.bgImgServices{
    border-radius: 5px;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    width: fit-content;
    background: linear-gradient(90deg, 
    rgba(138, 43, 226, 1) 0%,
    rgba(255, 0, 128, 1) 100% );
    border: 1px solid rgba(197, 22, 177, 1);
    padding: 10px 15px 10px 15px;
}
.bgImgServices img{
    width: 40px;
}

.blockServices1, .blockServices2, .blockServices3, .blockServices4{
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: 1s !important;
    padding: 15px 0px 15px 20px;
    border-radius: 10px;
    opacity: 0; 
    transition: opacity 1s ease;
}
.blockServices1 p, .blockServices2 p, .blockServices3 p, .blockServices4 p{
    font-size: 15px;
}
.blockServices2 {
    animation-delay: 0.2s;
}
.blockServices3{
    animation-delay: 0.5s;
}
.blockServices4{
    animation-delay: 0.8s;
}
.blockServices1:hover, .blockServices2:hover, .blockServices3:hover, .blockServices4:hover{
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: 0.2s !important;
    cursor: pointer;
}


.containBlockServices3{
    display: flex;
    padding-left: 0px !important;
    /*max-width: 300Px;*/
}
.containBlockServices3 > div{
    width: 100%;
    min-width: 250px;
}
@media screen and (min-width: 1200px){
    .containBlockServices3 > div{
        min-width: 250px !important;
    }
}
.containBlockServices3 div:last-child{
    padding: 0px !important;
}

/* fin services */


/* transition */

.bgTransition {
    background-image: url('../img/pexels-anete-lusina-4792286.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 200px;
}

.filterBgTransition {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    padding: 90px 0;
    display: flex;
    justify-content: center;  /* centre horizontalement */
    align-items: center;      /* centre verticalement */
    text-align: center;
}

.filterBgTransition p {
    font-size: 35px;
    letter-spacing: 4px;
    color: white;
    border-right: 3px solid white; /* curseur */
    white-space: nowrap;
    overflow: hidden;
    min-height: 1em;
    display: inline-block;
}

/* Curseur clignotant */
@keyframes blink {
    0% { border-color: white; }
    50% { border-color: transparent; }
    100% { border-color: white; }
}

.filterBgTransition p.typing {
    animation: blink 0.3s infinite;
}

/* Classe appliquée quand l’écriture est finie */
.filterBgTransition p.finished {
    border-right: none; /* le curseur disparaît */
}





/* fin tranistion */




/* contact */

.bgContact{
    display: grid;
    place-items: center;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:"bgContactLeft bgContactRight";
    position: absolute;
    column-gap: 200px;
    transform: translate(17%, 0%);
}
@media screen and (min-width: 1100px){
    .bgContact{
        top: -0px !important;
    }
}

.bgContactLeft, .bgContactRight{
    background-color: blue;
    background-color: white;
    background-color: rgba(255, 255, 255, 1.0);
    height: fit-content;
    padding: 60px 70px  50px 40px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.bgContactLeft p, .bgContactRight p:first-child{
    font-size: 30px;
    letter-spacing: 3px;
}
form, .bgContactRight p:nth-child(2){
    margin-top: 40px;
}
.bgContactRight p:nth-child(3), .bgContactRight p:nth-child(4), .bgContactRight p:nth-child(5), .bgContactRight p:nth-child(6){
    padding-top: 30px;
}
.bgContactRight p:nth-child(2), .bgContactRight p:nth-child(3), .bgContactRight p:nth-child(4), .bgContactRight p:nth-child(5), .bgContactRight p:nth-child(6){
    font-size: 18px;
    vertical-align: middle;
    padding-left: 10px;
}
.bgContactLeft{
    grid-area: bgContactLeft;
}
.bgContactRight{
    grid-area: bgContactRight;
    height: 100%;
}

.bgHoraires{
    padding: 10px 0px 0px 35px;
}
.bgHoraires span{
    line-height: 30px;
}



.bgContactLeft form  button{
    border: none;
    width: fit-content;
    height: fit-content;
    background-color: transparent;
    margin-top: 40px;
    padding: 10px 30px 10px 30px;
    animation: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    color: black;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.bgContactLeft form button::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
    width: 0%;
    height: 100%;
    transition: 0.5s;
    z-index: -1;
}
.bgContactLeft form  button:hover::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: -1;
}
.bgContactLeft form button span:hover{
}


form{ 
    display: grid;
}
form input, textarea{
    padding: 20px 100px 20px 15px;
    border: none;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 5px;
}
form input::placeholder, textarea::placeholder{
    font-size: 18px;
}
form input:nth-child(2), form input:nth-child(3), form input:nth-child(4), textarea{
    margin-top: 30px;
}

.textAlign{
    vertical-align: middle;
}


/* animations background */

.login-root {
    background: #fff;
    display: flex;
    width: 100%;
    /*min-height: 120vh;*/
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    position: relative;
}
.loginbackground {
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}
.flex-flex {
    display: flex;
}
.align-center {
  align-items: center; 
}
.center-center {
  align-items: center;
  justify-content: center;
}
.box-root {
    box-sizing: border-box;
}
.flex-direction--column {
    -ms-flex-direction: column;
    flex-direction: column;
}
.loginbackground-gridContainer {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: [start] 1fr [left-gutter] (86.6px)[16] [left-gutter] 1fr [end];
    grid-template-columns: [start] 1fr [left-gutter] repeat(16,86.6px) [left-gutter] 1fr [end];
    -ms-grid-rows: [top] 1fr [top-gutter] (64px)[8] [bottom-gutter] 1fr [bottom];
    grid-template-rows: [top] 1fr [top-gutter] repeat(8,64px) [bottom-gutter] 1fr [bottom];
    justify-content: center;
    margin: 0 -2%;
    transform: rotate(-12deg) skew(-12deg);
}

.box-divider--light-all-2 {
    /*box-shadow: inset 0 0 0 1px #3f48cc;*/
    background-color: #e3e8ee;
}
.box-background--blue {
    /*background-color: #5469d4;*/
    background: linear-gradient(90deg, 
    rgba(138, 43, 226, 1) 0%,
    rgba(255, 0, 128, 1) 100% );
}
.box-background--white {
  background-color: #ffffff; 
}
.box-background--blue800 {
    /*background-color: #212d63;*/
    background-color: rgba(63, 72, 204, 1.0);
}
.box-background--gray100 {
    /*background-color: #e3e8ee;*/
    box-shadow: inset 0 0 0 1px #3f48cc;
    /*background-color: #e3e8ee;*/
}
.box-background--cyan200 {
    /*background-color: #7fd3ed;*/
    background-color: #e3e8ee;
}
.padding-top--64 {
  padding-top: 64px;
}
.padding-top--24 {
  padding-top: 24px;
}
.padding-top--48 {
  padding-top: 48px;
}
.padding-bottom--24 {
  padding-bottom: 24px;
}
.padding-horizontal--48 {
  padding: 48px;
}
.padding-bottom--15 {
  padding-bottom: 15px;
}


.flex-justifyContent--center {
  -ms-flex-pack: center;
  justify-content: center;
}


.animationRightLeft {
  animation: animationRightLeft 4s ease-in-out infinite;
}
.animationLeftRight {
  animation: animationLeftRight 4s ease-in-out infinite;
}
.tans3s {
  animation: animationLeftRight 5s ease-in-out infinite;
}
.tans4s {
  animation: animationLeftRight 7s ease-in-out infinite;
}

@keyframes animationLeftRight {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(1000px);
  }
  100% {
    transform: translateX(0px);
  }
} 

@keyframes animationRightLeft {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-1000px);
  }
  100% {
    transform: translateX(0px);
  }
} 


/* fin animations background */



/* fin contact */

/* FIN MAIN */

/* FOOTER */

footer{
    background: linear-gradient(90deg, 
    rgba(138, 43, 226, 1) 0%, 
    rgba(255, 0, 128, 1) 100%   
  );
  /*background-color: rgba(63, 72, 204, 1.0);*/
  padding: 20px ;
  text-align: center;
  color: white;
  margin-top: 50px;
}
footer p{
    letter-spacing: 0.5px;
    font-size: 20px;
}
footer p a{
    color: white;
    text-decoration: none;
    font-weight: 600;
}
footer p a:hover{
    text-decoration: underline;
}

/* FIN FOOTER */

