:root{
    --primaryColor: #d4a630;
    --secondaryColor: #f3fcff;
    --secondaryColorLight: #f3fcff;
    --pinkColor: #fa7fc356;
    --purpleColor: #ffc107;
    --purpleColorLight: #d4a630;
    --darkenBlue: #313037;
    --colorTitle: #323138;
    --colorWhite: #fff;
    --animate-duration: .8s;
}
@keyframes floating{
    0%{
        transform: translateY(0) translateX(0);
    }
    50%{
        transform: translateY(15px) translateX(15px);
    }
    100%{
        transform: translateY(0) translateX(0);
    }
}
@keyframes floating2{
    0%{
        top: 20px;
    }
    50%{
        top: 70px;
    }
    100%{
        top: 20px;
    }
}
/* @-webkit-keyframes fadeUp{
    0%{
        opacity: 0;
        transform: translateY(30px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.fadeUp{
    will-change: transform;
    animation: fadeUp 1.5s ease forwards;
} */
body{
    position: relative;
    width: 100%;
    overflow-x: hidden;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}
body.overflow{
    overflow: hidden;
}
.btn:focus{
    box-shadow: none;
}
#cursor{
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--secondaryColor);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 880000;
    pointer-events: none;
    user-select: none;
    border-radius: 100%;
    transform: translate(-50%,-50%);
    transition: .1s;
}
#cursor.filtre{
    backdrop-filter: grayscale(1);
    -webkit-backdrop-filter: grayscale(1);
}
#cursor span{
    color: var(--colorWhite);
    font-size: 12px;
    opacity: 0;
}
#cursor.active{
    background: #14172c88;
    width: 50px;
    height: 50px;
}
#cursor.active span{
    opacity: 1;
}
#cursor.bg-overplay{
    background: rgba(255, 255, 255, 0.199);
    width: 70px;
    height: 70px;
}
#cursor.bg-overplay-lg{
    background: rgba(255, 255, 255, 0.459);
    width: 70px;
    height: 70px;
}
.loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6000000000;
    background: #fff;
    transition: .5s;
}
.loading.complete{
    opacity: 0;
    visibility: visible;
    z-index: 0;
    pointer-events: none;
}
#loader {
    animation: animate2 1.5s linear infinite;
    clip: rect(0, 80px, 80px, 40px);
    height: 80px;
    width: 80px;
    position: absolute;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    z-index: 5000;
  }
  @keyframes animate2 {
    0% {
      transform: rotate(0deg)
    }
    100% {
      transform: rotate(220deg)
    }
  }
  #loader:after {
    animation: animate3 1.5s ease-in-out infinite;
    clip: rect(0, 80px, 80px, 40px);
    content:'';
    border-radius: 50%;
    height: 80px;
    width: 80px;
    position: absolute;
  }
  @keyframes animate3 {
    0% {
      box-shadow: inset var(--primaryColor) 0 0 0 17px;
      transform: rotate(-140deg);
    }
    50% {
      box-shadow: inset var(--purpleColor) 0 0 0 2px;
    }
    100% {
      box-shadow: inset var(--secondaryColor) 0 0 0 17px;
      transform: rotate(140deg);
    }
  }
p{
    color: var(--colorTitle);
}
a{
    color: inherit;
    text-decoration: none;
}
.global-div{
    position: relative;
    overflow-x: hidden;
    transition: .5s;
}
.wrapper{
    position: relative;
    overflow-x: hidden;
}
.btn-devis{
    position: fixed;
    width: 50px;
    height: 50px;
    background: var(--secondaryColor);
    right: -100px;
    z-index: 1003;
    transform: none;
    bottom: 30px;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--colorWhite);
    visibility: hidden;
    padding: 0;
    border-radius: 100%;
    transition: .5s cubic-bezier(0.23,1.83,0.42,1.19);
    font-size: 20px;
}
.btn-devis:hover{
    color: var(--colorWhite);
    background: var(--darkenBlue);
}
.btn-devis.active{
    right: 30px;
    opacity: 1;
    visibility: visible;
}
.btn-devis::before{
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: #1570b633;
    z-index: -1;
    border-radius: 100%;
    animation: pulse 1.3s linear infinite;
}
@keyframes pulse {
    0%{
        transform: scale(1);
        opacity: 1;
    }
    50%{
        transform: scale(1.5);
        opacity: 0;
    }
    100%{
        transform: scale(1);
        opacity: 0;
    }
}
.navbar{
    padding: 30px 20px;
    background: transparent;
    transition: .5s;
}
.navbar.bg-white{
    padding: 10px 20px;
}
.navbar .navbar-brand{
    width: 120px;
}
.navbar .navbar-brand img{
    width: 100%;
}
.navbar .navbar-brand img.first-logo{
    display: none;
}
.navbar .navbar-brand img.hidden{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.navbar .nav-link{
    color: var(--colorWhite);
    transition: .5s;
    font-weight: 500;
    font-size: 15px;
}
.navbar .nav-link:hover{
    color: var(--secondaryColor)!important;
}
.navbar .nav-link.active, .navbar.bg-white .nav-link.active{
    color: var(--secondaryColor);
}
.navbar.bg-white .nav-link{
    color: var(--colorTitle);
}
.navbar .btn{
    /* padding: 12px 35px!important; */
    color: var(--colorWhite);
    background: var(--secondaryColor);
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: .5s;
    position: relative;
    overflow: hidden;
    /* margin-left: 10px; */
    z-index: 1;
}
.navbar .btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--colorWhite);
    bottom: -100%;
    left: 0;
    z-index: -1;
    border-radius: 50%;
    transform: scale(1);
    z-index: -1;
    transition: .5s ease-in;
}
.navbar .btn:hover::before{
    bottom: auto;
    top: -50%;
    left: 0;
    transform: scale(5);
}
.navbar .btn:hover{
    background: transparent;
    color: var(--colorTitle);
}
.banner{
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0;
    background: var(--darkenBlue);
    overflow: hidden;
}
.banner .banner-bg{
    position: relative;
    width: 100%;
    height: inherit;
    overflow: hidden ;
    background: center / cover url(../images/bg.jpeg) ;
    /* background: linear-gradient(-145deg,var(--secondaryColor), var(--purpleColor)); */
}

.AxeptioButton__AxeptioButtonStyle-sc-1h6hacv-0.hMxmxV.hidden{
    opacity: 0;
    visibility: hidden;
}
.banner .banner-bg .img-float{
    position: absolute;
    z-index: 1;
    top: 0;
    width: 850px;
    right: 0;
    opacity: .5;
    display: none;
}
.banner .banner-bg::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #616161c7;
}
.banner .container{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%!important;
    transform: translate(-50%,-50%);
    z-index: 2;
}
.banner .container h1{
    color: var(--colorWhite);
    display: inline-block;
    font-size: 75px;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 75px;
    opacity: 0;
    animation: fadeBottom 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    animation-delay: .2s;
}
.banner .container h1 span{
    color: transparent;
    background-image: linear-gradient(35deg, var(--secondaryColorLight), var(--purpleColorLight));
    background-clip: text;
    -webkit-background-clip: text;
}
.banner .container h1 span .last-white{
    color: transparent;
    background-image: linear-gradient(35deg,var(--purpleColorLight), var(--secondaryColorLight));
    background-clip: text;
    -webkit-background-clip: text;
}
@keyframes fadeBottom {
    0%{
        opacity: 0;
        transform: translateY(150px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
.banner p{
    color: #fff;
    line-height: 27px;
    font-size: 20px;
    margin-top: 30px;
    font-weight: 300;
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
    opacity: .9;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeBottom 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    animation-delay: .5s;
}
.banner .btn{
    padding: 20px 35px;
    color: var(--colorWhite);
    border: 1px solid rgba(255, 255, 255, 0.466);
    transition: .5s;
    font-weight: 600;
    opacity: 0;
    animation: fadeBottom 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    animation-delay: .7s;
    font-size: 14px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.banner .btn:hover{
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
}
.banner .btn::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--secondaryColor);
    bottom: -100%;
    left: 0;
    z-index: -1;
    border-radius: 50%;
    transform: scale(1);
    transition: .5s ease-in;
}
.banner .btn:hover::before{
    transform: scale(5);
    top: -50%;
    bottom: auto;
}
.block-about{
    position: relative;
    padding: 70px 0;
    z-index: 1000;
    background: #fff;
}
.block-about .wave{
    position: absolute;
    top: -270px;
    width: 100%;
    height: 350px;
    background: url(../images/Vague-banner.png);
    background-size: cover;
    transform: scale(1.05);
    pointer-events: none;
}
.block-about .card{
    border: none;
    width: 420px;
    height: 470px;
    z-index: 1;
    margin-left: auto;
    position: relative;
    background: transparent;
    border-radius: 10px;
}
.block-about .card .card-img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.block-about .card .card-img img.img-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: .5s;
    object-position: 57%;
    will-change: transform;
    /* filter: grayscale(1); */
}
.block-about .card:hover img.img-cover{
    transform: scale(1.05);
    /* filter: grayscale(0); */
}
.block-about .card img.img-logo{
    position: absolute;
    z-index: -1;
    width: 250px;
    top: -120px;
    right: -130px;
}
.block-about h2 {
    margin-top: 10px;
    font-size: 30px;
    color: var(--colorTitle);
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}
.block-about h2 .line{
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(35deg,var(--purpleColor),var(--secondaryColor));;
    left: 0;
    bottom: -40px;
    border-radius: 10px;
}
.block-about p {
    line-height: 45px;
    font-size: 28px;
    color: var(--colorTitle);
    margin-top: 30px;
    font-weight: 300;
}
.block-about p span{
    font-weight: 600;
}
.first-parallax{
    position: relative;
    background: var(--darkenBlue);
    overflow: hidden;
    z-index: 1000;
}
.first-parallax .first-parallax-bg{
    position: relative;
    width: 100%;
    padding: 70px 0;
    z-index: 1;
    background: center / cover url(../images/img-banner.png) fixed;
}
.first-parallax .first-parallax-bg-new{
    position: relative;
    width: 100%;
    padding: 70px 0;
    z-index: 1;
    background: center / cover url(../images/img-banner.png) fixed;
}
.first-parallax .first-parallax-bg::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #198754;
    opacity: .9;
}
.first-parallax .first-parallax-bg-new::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #ffc107;
    opacity: .9;
}
.first-parallax #particles-js{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.first-parallax .text-star .container{
    position: relative;
    z-index: -1;
}
.first-parallax h2 .bold-text{
    font-size: 55px;
    font-weight: 800;
    color: var(--colorWhite);
}
.service{
    position: relative;
    padding: 100px 0;
    z-index: 1000;
    background: #fff;
}
.service h2 {
    /* margin-top: 100px; */
    font-size: 30px;
    color: var(--colorTitle);
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}
.service h2 .line{
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(35deg,var(--purpleColor),var(--secondaryColor));
    left: 0;
    bottom: -40px;
    border-radius: 10px;
}
/* .service h2 .line::before{
    content: '';
    position: absolute;
    width: 33%;
    height: 100%;
    background: var(--primaryColor);
    border-radius: 10px 0 0 10px;
    top: 0;
    left: 0;
}
.service h2 .line::after{
    content: '';
    position: absolute;
    width: 33%;
    height: 100%;
    background: var(--secondaryColor);
    top: 0;
    right: 0;
    border-radius: 0px 10px 10px 0px;
} */
.service .paragraph{
    line-height: 45px;
    font-size: 30px;
    color: var(--colorTitle);
    margin-top: 30px;
    font-weight: 300;
}
.service .btn{
    padding: 20px 35px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-weight: 600;
    margin-top: 100px;
    color: var(--colorTitle);
    transition: .5s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.service .btn::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--secondaryColor);
    bottom: -100%;
    left: 0;
    z-index: -1;
    border-radius: 50%;
    transform: scale(1);
    transition: .5s ease-in;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.service .btn:hover::before{
    transform: scale(5);
    top: -50%;
    bottom: auto;
}
.service .btn:hover{
    color: var(--colorWhite);
    border-color: transparent;
}
.service .card{
    border: none;
    transition: .5s;
    border-radius: 10px;
    position: relative;
    transition: .5s;
    padding: 20px;
    z-index: 1;
}
.service .card::before{
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
    transition: .3s;
    border-radius: 10px;
    z-index: -1;
}
.service .card-consulting:hover::before{
    background: #28337a;
    transform: scale(1.05);
}
.service .card-web:hover::before{
    background: #332958;
    transform: scale(1.05);
}
.service .card-app-mobile:hover::before{
    background: #0a64ca;
    transform: scale(1.05);
}
.service .card-archivage:hover::before{
    background: #fa7fc3;
    transform: scale(1.05);
}
.service .card-marketing:hover::before{
    background: var(--secondaryColor);
    transform: scale(1.05);
}
.service .card-branding:hover::before{
    background: var(--purpleColor);
    transform: scale(1.05);
}
.service .card h3{
    font-weight: 600;
    font-size: 25px;
    display: inline-block;
    background: var(--colorWhite);
    padding: 7px 25px;
    color: var(--colorTitle);
    border-radius: 10px;
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: .5s;
}
.service .card.card.card-service-1 h3{
    border-left: 7px solid var(--secondaryColor);
}
.service .card.card.card-service-2 h3{
    border-left: 7px solid var(--purpleColor);
}
.service .card .list-service{
    padding-left: 0;
    list-style: none;
}
.service .card .list-service .item{
    margin-bottom: 10px;
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer;
    transition: .5s;
}
.service .card .list-service .item:last-child:hover{
    margin-bottom: 86px;
}
.service .card .list-service .item:hover{
    margin-bottom: 30px;
}
.service .card .list-service .item img{
    position: absolute;
    width: 220px;
    height: 150px;
    opacity: 0;
    object-fit: cover;
    z-index: -1;
    right: -50px;
    top: 0px;
    transition: .3s cubic-bezier(0.23,1.83,0.42,1.19);
    border-radius: 10px;
    visibility: hidden;
}
.service .card .list-service .item:hover img{
    right: 0;
    visibility: visible;
    opacity: .2;
}
.service .card .list-service .item .content-service{
    transform-style: preserve-3d;
    transform: perspective(500px);
}
.service .card p{
    font-size: 18px;
    margin-bottom: 0;
    transition: .5s;
}
.service .card:hover p{
     color: var(--colorWhite);
}
.service .card h4{
    color: var(--colorTitle);
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 500;
    transition: .5s;
}
.service .card:hover h4{
    color: var(--colorWhite);
}
.service .card .icon{
    background: none!important;
    margin-bottom: 10px;
    font-size: 60px;
    color: var(--secondaryColor);
    transition: .3s;
    transform: scale(1);
    will-change: transform;
    display: inline-block;
}
.service .card:hover .icon{
    transform: scale(1.1);
    color: var(--colorWhite)!important;
}
.block-reason{
    padding: 150px 0;
    position: relative;
    background: #01a3de10;
    overflow: hidden;
}
.block-reason h2{
    color: var(--colorTitle);
    font-size: 30px;
    margin-bottom: 100px;
    position: relative;
    left: -70px;
}
.block-reason ul{
    padding-left: 0;
    list-style: none;
    position: relative;
}
.block-reason ul::before{
    content: '';
    position: absolute;
    width: 1px;
    height: 400%;
    left: -10px;
    border-left: 3px dotted #5ab9db4b;
    transform: scaleY(1.2);
}
.block-reason ul li{
    padding-left: 40px;
    position: relative;
    margin-bottom: 50px;
}
.block-reason ul li p{
    display: block;
    transition: .3s ease;
}
.block-reason ul li:hover p{
    transform: translateX(-10px);
}
.block-reason ul li::before{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: linear-gradient(35deg,var(--purpleColor),var(--secondaryColor));
    top: 17px;
    left: -18px;
}
.block-reason ul li::after{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: var(--colorWhite);
    top: 22px;
    left: -13px;
}
.block-reason h2 span{
    font-weight: 800;
    color: transparent;
    background-image: linear-gradient(35deg, var(--secondaryColorLight), var(--purpleColorLight));
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 75px;
}
.block-reason ul li p{
    padding-right: 60px;
}
.block-reason ul li p span{
    color: var(--darkenBlue);
    font-size: 35px;
    font-weight: 800;
}
.block-reason .overplay{
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   background: url('../images/carte-white.jpg');
   background-size: cover;
   background-attachment: fixed;
   background-repeat: no-repeat;

}
.block-reason .col-lg-6 .text-center{
    margin-top: 150px;
}
.block-contact-us{
    position: relative;
    padding: 100px 0;
    background: linear-gradient(-35deg, var(--secondaryColor),var(--purpleColor));
    overflow: hidden;
    z-index: 1;
}
.block-contact-us::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(35deg, var(--secondaryColor),var(--purpleColor));
    z-index: -1;
    opacity: 0;
    transition: 1s;
}
.block-contact-us:hover::before{
    opacity: 1;
}
.block-contact-us h2{
    font-size: 35px;
    font-weight: 800;
    color: var(--colorWhite);
    margin-bottom: 40px;
}
.block-contact-us .btn{
    padding: 20px 35px;
    border-radius: 10px;
    color: var(--colorTitle);
    border: 1px solid transparent;
    transition: .5s;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 1;
    margin-right: 20px;
}
.block-contact-us .btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--colorWhite);
    transform: scale(5);
    left: 0;
    top: -50%;
    bottom: auto;
    z-index: -1;
    border-radius: 50%;
    transition: .5s ease-in;
    z-index: -1;
}
.block-contact-us .btn:hover::before{
    bottom: -100%;
    left: 0;
    top: auto;
    transform: scale(1);
}
.block-contact-us .btn:hover{
    background: transparent;
    color: var(--colorWhite);
    border-color: var(--colorWhite);
}
.block-contact-us .btn:last-child{
    margin-right: 0;
}
.block-contact-us .col-lg-7 .bi{
    font-size: 50px;
    color: var(--colorWhite);
    margin-bottom: 15px;
    display: block;
}
.block-contact-us h3{
    color: var(--colorWhite);
    font-size: 16px;
    font-weight: 600;
}
.block-contact-us p{
    color: var(--colorWhite);
    font-size: 13px;
}
.block-contact-us .bi-gear{
    position: absolute;
    font-size: 300px;
    top: -20px;
    right: 0;
    transform: rotate(45deg);
    color: var(--colorWhite);
    opacity: .07;
    z-index: -1;
}
.block-newsletter{
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.block-newsletter .bi-envelope{
    position: absolute;
    font-size: 300px;
    z-index: -1;
    color: var(--colorTitle);
    opacity: .1;
    display: none;
}
.block-newsletter h2{
    color: var(--colorTitle);
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}
.block-newsletter p{
    color: var(--colorTitle);
    padding-right: 70px;
}
.block-newsletter .btn{
    width: 100%;
    height: 55px;
    background: var(--secondaryColor);
    color: var(--colorWhite);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: .5s;
}
.block-newsletter .btn:hover{
    color: var(--colorTitle);
    background: transparent;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}
.block-newsletter .btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--colorWhite);
    bottom: -100%;
    left: 0;
    z-index: -1;
    border-radius: 50%;
    transform: scale(1);
    transition: .5s ease;
    z-index: -1;
}
.block-newsletter .btn:hover::before {
    bottom: auto;
    top: -50%;
    left: 0;
    transform: scale(5);
}
.block-newsletter .form-control{
    height: 55px;
    border-radius: 10px;
}
.small-block-contact{
    position: relative;
    padding: 150px 0;
}
.small-block-contact .card{
    padding: 70px 0;
    border-radius: 10px;
    border: none;
    background: #5ab9dbab;
}
.small-block-contact .card h2{
    font-size: 26px;
    color: var(--colorWhite);
    margin-bottom: 30px;
}
.small-block-contact .card p{
    color: var(--colorWhite);
    width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
    margin-bottom: 50px;
}
.small-block-contact .card h2 span{
    font-size: 45px;
    font-weight: 700;
    display: block;
    margin-top: 20px;
    margin-bottom: 50px;
}
.small-block-contact .btn{
    padding: 15px 35px;
    border-radius: 10px;
    color: var(--colorTitle);
    border-color: var(--colorWhite);
    transition: .5s;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 1;
}
.small-block-contact .btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--colorWhite);
    transform: scale(5);
    left: 0;
    top: -50%;
    bottom: auto;
    z-index: -1;
    border-radius: 50%;
    transition: .5s ease-in;
    z-index: -1;
}
.small-block-contact .btn:hover::before{
    bottom: -100%;
    left: 0;
    top: auto;
    transform: scale(1);
}
.small-block-contact .btn:hover{
    background: transparent;
    color: var(--colorWhite);
}
footer{
    position: relative;
    padding: 100px 0px;
    overflow: hidden;
    background: var(--darkenBlue);
}
footer .logo img{
    width: 150px;
    margin-bottom: 24px;
}
footer p{
    color: var(--colorWhite);
    font-size: 14px;
}
footer h4{
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
    position: relative;
    display: inline-block;
    color: var(--colorWhite);
    position: relative;
    display: inline-block;
    font-weight: 600;
}
footer .links-network a{
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: var(--colorWhite);
    border-radius: 100%;
}
footer a:hover{
    opacity: 1;
}
footer .links-network{
    margin-top: 20px;
}
footer .links-network a{
    margin: 5px;
    transition: .5s;
}
footer .links-network a:first-child{
    margin-left: -10px;
}
footer .links-network a:hover{
    transform: rotate(360deg) scale(1.05);
    background: var(--colorWhite);
    color: var(--primaryColor)
}
footer .links-network a svg{
    width: 30px;
    height: 30px;
}
footer .content-info{
    line-height: 32px;
}
footer ul{
    list-style: none;
    padding-left: 0;
    line-height: 32px;
}
footer ul li{
    display: block;
}
footer ul li a{
    display: block;
    color: var(--colorWhite);
    transition: .5s;
    transform: translateX(0);
    font-size: 14px;
}
footer ul li a:hover{
    color: var(--secondaryColor);
    transform: translateX(5px);
}
.block-copyright{
    padding: 10px 0;
    background: #fff;
}
.block-copyright small{
    font-size: 12px;
    color: var(--colorTitle);
}
.modal-devis .modal-content{
    position: relative;
    padding: 50px 30px;
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.modal-devis .btn-close{
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background: #01a3de15;
    border-radius: 100%;
}
.modal-devis .modal-content h5{
    color: var(--colorTitle);
    font-weight: 400;
    font-size: 18px;
}

.modal-devis .modal-content .modal-header{
    border: none;
}
.modal-devis .modal-content label{
    margin-bottom: 15px;
    color: var(--colorTitle);
    opacity: .7;
}
.modal-devis .modal-content .form-control{
    border-radius: 10px;
    border-color: #d8dee0;
    font-size: 14px;
}
.modal-devis .modal-content .form-control::placeholder{
    font-size: 12px;
}
.modal-devis .modal-content input, .modal-devis .modal-content select{
    height: 55px!important;
}
.modal-devis .modal-content textarea{
    height: auto!important;
}
.modal-devis .modal-content label{
    font-size: 14px;
    background: transparent;
    z-index: 0;
    padding-top: 13px!important;
}
.modal-devis .modal-content input, .modal-devis .modal-content select{
    height: 46px!important;
}
.modal-devis .modal-body .btn {
    padding: 15px 35px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-weight: 600;
    color: var(--colorTitle);
    margin-top: 20px;
    transition: .5s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.modal-devis .modal-body .btn:hover{
    color: var(--colorWhite);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.modal-devis .modal-body .btn::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--secondaryColor);
    bottom: -100%;
    left: 0;
    z-index: -1;
    border-radius: 50%;
    transform: scale(1);
    transition: .5s ease-in;
}
.modal-devis .modal-body .btn:hover::before {
    transform: scale(5);
    top: -50%;
    bottom: auto;
}
footer p .fas{
    font-size: 18px;
    color: var(--primaryColor);
    margin-right: 7px;
}
footer p span{
    font-weight: 700;
}
.banner.banner-sm{
    height: 150px;
    background: center / cover url(../images/img-banner2.png) fixed;
    background: linear-gradient(35deg, var(--purpleColor), var(--secondaryColor));
}
.block-form-contact{
    padding: 70px 0;
    position: relative;
}
.block-form-contact ul{
    padding-left: 0;
    line-height: 35px;
    list-style: none;
    margin-top: 30px;
}
.block-form-contact ul li{
    color: var(--colorTitle);
}
.block-form-contact ul li .bi{
    color: var(--secondaryColor);
}
.block-form-contact .col-lg-6 .card.card-form{
    border: none;
    box-shadow: 0 6px 27px rgba(0,0,0,0.05);
    margin-left: auto;
    padding: 70px 70px;
    margin-top: -90px;
}
.block-form-contact .card.card-form input{
    height: 55px!important;
    border-radius: 10px;
    border-color: #d8dee0;
}
.block-form-contact .card.card-form textarea{
    border-radius: 10px;
    border-color: #d8dee0;
    height: auto!important;
}
.block-form-contact h1, .block-form-contact h4{
    color: var(--colorTitle);
}
.block-form-contact h1{
    margin-top: 10px;
    font-size: 28px;
    color: var(--colorTitle);
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}
.block-form-contact h1 .line {
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(35deg,var(--purpleColor),var(--secondaryColor));
    left: 0;
    bottom: -40px;
    border-radius: 10px;
}
.block-form-contact h4{
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 30px;
}
.block-form-contact p.paragraph{
    line-height: 45px;
    font-size: 30px;
    color: var(--colorTitle);
    margin-top: 30px;
    font-weight: 300;
}
.block-form-contact h4 span{
    font-weight: 700;
}
.block-form-contact .card .form-control::placeholder{
    opacity: .7;
}
.block-form-contact .btn{
    padding: 15px 35px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-weight: 600;
    color: var(--colorTitle);
    transition: .5s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.block-form-contact .btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--secondaryColor);
    bottom: -100%;
    left: 0;
    z-index: -1;
    border-radius: 50%;
    transform: scale(1);
    transition: .5s ease-in;
}
.block-form-contact .btn:hover::before {
    transform: scale(5);
    top: -50%;
    bottom: auto;
}
.block-form-contact .btn:hover{
    color: var(--colorWhite);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border-color: transparent;
}
.block-form-contact .col-lg-6 .card{
    border-radius: 10px;
    border: none;
    padding-left: 50px;
}
.block-form-contact .col-lg-6 .card .text-star{
    position: relative;
    padding-left: 10px;
}
.block-form-contact .col-lg-6 .card .icon{
    position: absolute;
    width: 50px;
    height: 50px;
    color: var(--colorWhite);
    text-align: center;
    font-size: 28px;
    line-height: 50px;
    border-radius: 100%;
    left: -50px;
}
.block-form-contact .hidden-2{
    display: none;
}
.block-form-contact .col-lg-6 .card h5{
    color: var(--colorTitle);
}
.block-form-contact .col-lg-6 .card h6{
    color: var(--colorTitle);
    font-weight: 400;
    font-size: 15px;
}
.menu-toggle{
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    top: 7px;
    right: 10px;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    z-index: 20000;
    transition: .3s;
}
.menu-toggle.active{
    background: #01a3de;
    top: 20px;
}
.menu-toggle.active:focus menu svg path{
    stroke: var(--secondaryColor);
}
.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    position: absolute;
}
.menu svg{
    width: 50px;
    height: 50px;
    transform: scale(.65);
}
.menu svg path.color-blue{
    stroke: var(--secondaryColor);
}
.menu-toggle.active svg path{
    stroke: var(--colorWhite)!important;
}
.line {
    fill: none;
    stroke: var(--colorWhite);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}
.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}
.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.menu-responsive{
    position: fixed;
    top: 0;
    right: 0;
    width: calc( 100% - 30px);
    height: 100%;
    background: var(--colorWhite);
    transition: .3s;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    visibility: hidden;
    transform: translateX(100%);
    z-index: 1002;
    padding: 20px 0 0 50px;
}
.menu-responsive.active{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.menu-responsive .items{
    width: 100%;
}
.menu-responsive .items .list-items{
    padding-left: 0;
    list-style: none;
    margin-top: 20px;

}
.menu-responsive .items .list-items .item{
font-size: 25px;
    line-height: 50px;
    font-weight: 400;
    line-height: 60px;
}
.menu-responsive .items .list-items .item a{
    color: var(--colorTitle);
    transition: .5s;
    display: block;
}
.menu-responsive .items .list-items .item a:hover{
    color: var(--secondaryColor);
}
.menu-responsive .close-menu{
    position: absolute;
    width: 40px;
    height: 40px;
    right: 30px;
    top: 40px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.menu-responsive .network a{
    margin-right: 20px;
    display: inline-block;
}
.menu-responsive .close-menu span{
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background: var(--secondaryColor);
}
.menu-responsive .close-menu span:first-child{
    transform: rotate(-45deg);
}
.menu-responsive .close-menu span:last-child{
    transform: rotate(45deg);
}
.menu-responsive .logo{
    display: flex;
    top: 30px;
    left: 30px;
    width: 40px;
    position: absolute;
}
.menu-responsive .logo img{
    width: 100%;
}
.overplay-lg{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
}
.overplay-lg.active{
    opacity: 1;
    visibility: visible;
}
.banner-sm .container{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
}
.banner-sm .container h1 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 90px;
    opacity: 0;
    animation: fadeBottom 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
        animation-delay: 0s;
    animation-delay: .2s;
}
.banner-service{
    position: relative;
    overflow: hidden;
    height: 520px;
    z-index: 1000;
    background: url(../images/carte-white.jpg);
    background-size: cover;
    background-position: center;
}
.banner-service::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}
.banner-service .container{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
}
.banner-service .container h1{
    color: var(--colorWhite);
    margin-bottom: 50px;
}
.banner-service h1{
    font-size: 45px;
    font-weight: 700;
    animation: fadeBottom 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    animation-delay: 0s;
    animation-delay: .2s;
}
.banner-service .btn {
    padding: 20px 35px;
    color: var(--colorWhite);
    border: 1px solid rgba(255, 255, 255, 0.466);
    transition: .5s;
    font-weight: 600;
    opacity: 0;
    animation: fadeBottom 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    animation-delay: .7s;
    font-size: 14px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.banner-service .btn:hover {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.banner-service .btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--secondaryColor);
    bottom: -100%;
    left: 0;
    z-index: -1;
    border-radius: 50%;
    transform: scale(1);
    transition: .5s ease-in;
}
.banner-service .btn:hover::before{
    transform: scale(5);
    top: -50%;
    bottom: auto;
}
.card{
    position: relative;
}
.card .prise{
    position: absolute;
    height: 95px;
    width: 100px;
    border-radius: 50%;
    background-color: red;
    top: 40%;
    left: 66%;
    color: white;

}
/* .all-services{
    position: relative;
    background: var(--colorWhite);
} */
/* .all-services .card{
    border: none;
    width: 420px;
    height: 550px;
    position: relative;
    background: transparent;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
} */
/* .all-services .card::before{
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: 50px;
    bottom: 50px;
    border-radius: 10px;
    background: linear-gradient(35deg, var(--purpleColor), var(--secondaryColor));
    z-index: -1;
    opacity: .2;
} */
.all-services .card .card-img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}
.all-services .card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: .5s;
}
.all-services .card:hover img{
    transform: scale(1.05);
}
.all-services h3{
    margin-top: 10px;
    font-size: 30px;
    color: var(--colorTitle);
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}
.all-services h3 .line {
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(35deg,var(--purpleColor),var(--secondaryColor));
    left: 0;
    bottom: -40px;
    border-radius: 10px;
}
.all-services .block-consulting{
    padding: 150px 0;
}
.all-services .block-consulting h3{
    margin-top: 100px;
}
.all-services .block-consulting p{
    padding-right: 120px;
}
.all-services .block-logiciel-dedie{
    padding: 150px 0;
    /* background: #eff9fd; */
}
.all-services .block-logiciel-dedie .text-star{
    padding-left: 100px;
}
.all-services .block-logiciel-dedie h3{
    margin-top: 150px;
}
.all-services .block-app-mobile{
    padding: 150px 0;
}
.all-services .block-app-mobile h3{
    margin-top: 60px;
}
.all-services .block-app-mobile p{
    padding-right: 100px;
}
.all-services .block-archivage{
    padding: 150px 0;
}
.all-services .block-archivage h3{
    margin-top: 70px;
}
.all-services .block-archivage  .text-star{
    padding-left: 100px;
}
.all-services .block-identite-marque{
    padding: 150px 0;
}
.all-services .block-identite-marque .text-star{
    padding-left: 100px;
}
.all-services .block-identite-marque ul li{
    position: relative;
    padding-left: 30px;
}
.all-services .block-identite-marque h3{
    margin-top: 100px;
}
.all-services .block-identite-marque ul li::before{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    left: 0px;
    top: 3px;
    background: linear-gradient(35deg, var(--purpleColor), var(--secondaryColor));
}
.all-services .block-identite-marque ul li::after{
    width: 7px;
    height: 7px;
    background: #fff;
    content: '';
    position: absolute;
    border-radius: 100%;
    top: 7px;
    left: 4px;
}
.all-services .block-marketing .card::before{
    display: none;
}
.all-services .block-marketing .text-star{
    padding-left: 100px;
}
.all-services .block-marketing h2{
    color: var(--colorWhite);
    font-size: 45px;
    font-weight: 700;
    padding-top: 100px;
    margin-bottom: 100px;
}
.all-services .block-marketing h3 .line{
    background: linear-gradient(-35deg, var(--pinkColor), var(--secondaryColor));
}
.all-services .block-marketing p, .all-services .block-marketing h3, .all-services .block-marketing ul li{
    color: var(--colorWhite);
}
.all-services .block-marketing{
    padding: 150px 0;
    padding-top: 0px;
    background: linear-gradient(35deg, var(--purpleColor), var(--secondaryColor));;
}
.all-services p {
    line-height: 35px;
    font-size: 18px;
    color: var(--colorTitle);
    margin-top: 30px;
}
.all-services ul{
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}
.all-services ul li{
    color: var(--colorTitle);
    font-size: 14px;
    margin-bottom: 30px;
    position: relative;
    padding-left: 10px;
}
.all-services ul li .bi{
    color: var(--secondaryColor);
    position: absolute;
    left: -5px;
}
.modal{
    z-index: 90000000000;
}
.block-content-privacy{
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
.block-content-privacy h2{
    margin-top: 10px;
    font-size: 28px;
    color: var(--colorTitle);
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}
.block-content-privacy h2 .line {
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(35deg,var(--purpleColor),var(--secondaryColor));
    left: 0;
    bottom: -20px;
    border-radius: 10px;
}
.block-content-privacy h3{
    font-size: 20px;
    color: var(--primaryColor);
    margin-top: 20px;
    margin-bottom: 10px;
}
.block-content-privacy p{
    color: var(--colorTitle);
    line-height: 30px;
}
.block-content-privacy p a{
    color: var(--secondaryColor);
}
.block-content-privacy p a:hover{
    color: var(--primaryColor);
}
.block-content-privacy ul li{
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 27px;
    color: var(--colorTitle);
}
.block-content-privacy ul li a{
    color: var(--secondaryColor);
}
.block-content-privacy ul li a:hover{
    color: var(--primaryColor);
}
.banner-christmas-overplay{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--colorTitle);
    transition: .5s;
    opacity: 0;
}
.banner-christmas-overplay.active{
    opacity: 1;
    z-index: 6000000;
}
.banner-christmas-overplay .btn-close-banner{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    border-radius: 100% 100% 100% 0;
    background: radial-gradient(#fff, rgb(104, 103, 103));
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    cursor: pointer;
    animation: floating2 2.5s ease infinite;
    animation-delay: -1s;
}
.banner-christmas-overplay .btn-close-banner::before{
    content: '';
    width: 2px;
    height: 70px;
    position: absolute;
    background: radial-gradient(#fff, rgb(104, 103, 103));
    transform: rotate(45deg) translateY(82px) translateX(0px);
    border-radius: 10px;
}
.banner-christmas-overplay .btn-close-banner i{
    transform: rotate(45deg);
    font-size: 40px;
}
.banner-christmas-content{
    width: 70%;
    height: 90vh;
    background: linear-gradient(60deg,var(--darkenBlue),var(--purpleColor));
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: .3s cubic-bezier(0.23,1.83,0.42,1.19);
    transform: scale(0);
}
.banner-christmas-overplay.active .banner-christmas-content{
    transform: scale(1);
}
.banner-christmas-content .bonet{
    width: 150px;
    position: absolute;
    bottom: 50px;
    animation: floating 2.5s ease infinite;
}
/* .banner-christmas-content .emoji{
    position: absolute;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 100%;
    top: 70px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.banner-christmas-content .emoji img{
    width: 70px;
    position: absolute;
    top: -10px;
    left: 60%;
    transform: translate(-50%,-50%) rotate(-3deg);
}
.banner-christmas-content .emoji .eyes{
    width: 15px;
    height: 15px;
    display: block;
    position: relative;
    background: rgb(168, 164, 164);
    margin-top: 20px;
    margin-right: 2px;
    border-radius: 100%;
}
.banner-christmas-content .emoji .eyes::before{
    content: '';
    top: 50%;
    left: 5px;
    position: absolute;
    transform: translate(-50%,-50%);
    width: 10px;
    height: 10px;
    background: #000;
    border: 2px solid #01a3de;
    border-radius: 100%;
}
.banner-christmas-content .emoji .smile{
    width: 70%;
    height: 10px;
    border-radius: 0 0 300px 300px;
    background: rgb(168, 164, 164);
} */
.banner-christmas-content i{
    position: absolute;
    background: radial-gradient(circle,#ce2324,#a2201f);
    border-radius: 50%;
    animation: mouveBubble linear infinite;
    filter: blur(2px);
}
.banner-christmas-content i:nth-child(even){
    background: radial-gradient(circle,#fcda57,#d4a03e);
}
@-webkit-keyframes mouveBubble{
    0%{
        transform: translateY(0);
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    90%{
        opacity: 1;
    }
    100%{
        transform: translateY(-2000%);
        opacity: 0;
    }
}
@keyframes mouveBubble{
    0%{
        transform: translateY(0);
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    90%{
        opacity: 1;
    }
    100%{
        transform: translateY(-2000%);
        opacity: 0;
    }
}
.banner-christmas-content .box{
    position: absolute;
    width: 450px;
    height: 450px;
}
/* .banner-christmas-content .box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 500%;
    height: 100%;
    background: linear-gradient(to right, #000, transparent);
    opacity: .03;
    transform: rotate(45deg);
    transform-origin: left;
} */
.banner-christmas-content .box .circle-img{
    position: relative;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #fff,#e4e3e8); */
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    animation: huebg 5s ease infinite;
}
@keyframes huebg {
    0%{
        filter: hue-rotate(0deg);
    }
    50%{
        filter: hue-rotate(360deg);
    }
}
/* .banner-christmas-content .box .circle-img::before{
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 5px;
    right: 5px;
    background: linear-gradient(315deg, #fff,#e4e3e8);
    border-radius: 100%;
} */
.banner-christmas-content .box .circle-img img{
    position: relative;
    z-index: 2;
    width: 950px;
    /* border-radius: 100%; */
}
@media (max-width: 576px){
    .banner-christmas-content{
        width: 90%;
        height: 60vh;
    }
    .banner-christmas-content .box .circle-img img{
        width: 450px;
    }
    .banner-christmas-content .bonet{
        width: 100px;
    }
    .banner-christmas-overplay .btn-close-banner{
        width: 50px;
        height: 50px;
    }
    .banner-christmas-overplay .btn-close-banner i{
        font-size: 25px;
    }
    .banner-christmas-overplay .btn-close-banner::before{
        height: 35px;
        transform: rotate(45deg) translateY(50px) translateX(0px);
    }
    .menu-toggle{
        display: flex;
    }
   .btn-devis.active{
       right: 10px;
   }
    #cursor{
        display: none;
    }
    header{
        position: absolute!important;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1030;
    }
    header .navbar{
        padding: 20px 10px!important;
    }
    header .navbar.navbar.bg-white{
        background: transparent!important;
    }
    header .navbar .navbar-brand{
        width: 100px;
    }
    .navbar.bg-white {
        padding: 10px 0;
    }
    .banner .container h1 {
        font-size: 44px;
        padding-right: 0px;
        margin-bottom: 24px;
        line-height: 55px;
        padding: 0px 13px;
    }
    .banner .container h1 span{
        font-size: 55px;
    }
    .banner{
        height: 600px;
    }
    .banner .container p{
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 40px;
        margin-top: 0;
    }
    .banner .container{
        top: 55%;
    }
    .banner .btn{
        padding: 16px 25px;
    }
    .banner-sm .container h1{
        font-size: 35px;
        line-height: 40px;
    }
    .banner-sm .container h2{
        margin-bottom: 0;
        font-size: 14px;
        letter-spacing: 5px;
    }
    .banner-service{
        height: 450px;
    }
    .banner-service .container h1 {
        font-size: 24px;
        padding-right: 0px;
        margin-bottom: 24px;
        line-height: 38px;
    }
    .banner-service .btn {
        padding: 16px 25px;
        font-size: 15px;
    }
    .block-about{
        padding: 6px 0;
    }
    .block-about .wave {
        position: absolute;
        top: -70px;
        width: 100%;
        height: 80px;
        background: url(../images/Vague-banner.png);
        background-size: contain;
        background-repeat: no-repeat;
        transform: scale(1.5);
    }
    .block-about .card {
        width: auto;
        height: 335px!important;
        margin-left: 0;
    }
    .block-about h2 {
        font-size: 25px;
        line-height: 32px;
        padding-right: 0px;
        margin-bottom: 20px;
        margin-top: 0;
    }
    .block-about .card img.img-logo {
        top: -476px;
        opacity: .4;
    }
    /* .block-about .container{
        padding: 0;
    }
    .block-about .text-star{
        padding: 0 8px;
    } */
    .block-about p {
        padding-right: 0;
        font-size: 18px;
        /* margin-top: 49px; */
        line-height: 30px;
        /* margin-bottom: 45px; */
    }
    .first-parallax .first-parallax-bg{
        padding: 50px 0;
    }
    .first-parallax .first-parallax-bg-new{
        padding: 50px 0;
    }
    .first-parallax h2 .bold-text {
        font-size: 34px;
    }
    .service{
        padding: 50px 0;
    }
    .service h2 {
        font-size: 25px;
        line-height: 32px;
        padding-right: 0px;
        margin-bottom: 20px;
        margin-top: 0;
    }

    .service .card .icon{
        font-size: 36px;
    }
    .service .col-lg-12.col-md-12{
        margin-bottom: 30px;
    }
    .service p.paragraph{
        padding-right: 0;
        font-size: 18px;
        margin-top: 49px;
        line-height: 30px;
        margin-bottom: 45px;
    }
    .service .card .list-service .item{
        margin-bottom: 20px!important;
    }
    .service .card {
        padding: 20px 20px;
    }
    .service .card h3{
        padding: 7px 16px;
    }
    .service .card p{
        font-size: 14px;
        opacity: 1;
        visibility: visible;
        height: auto!important;
        transform: none;
    }
    .service .btn {
        padding: 16px 25px;
        font-size: 15px;
        margin-top: 50px;
    }
    .service h2 .line{
        bottom: -20px;
    }
    .block-reason{
        padding: 50px 0;
    }
    .block-reason .col-lg-6 .text-center {
        margin-top: 0px;
    }
    .block-reason h2{
        margin-bottom: 30px;
        left: 0;
    }
    .block-reason ul::before{
        left: 10px;
        display: none;
    }
    .block-reason ul{
        text-align: center;
    }
    .block-reason ul li{
        margin-bottom: 20px;
        padding: 0;
    }
    .block-reason ul li span{
        font-size: 18px!important;
        padding: 0 5px;
    }
    .block-reason ul li::before {
        left: 1px;
        display: none;
    }
    .block-reason ul li::after {
        left: 6px;
        display: none;
    }
    .block-reason ul li p{
        padding-right: 0;
    }
    .block-reason h2 span{
        font-size: 72px;
    }
    .small-block-contact {
        padding: 50px 0;
    }
    .small-block-contact .card h2{
        font-size: 19px;
        padding: 0 20px;
    }
    .small-block-contact .card h2 span{
        font-size: 26px;
    }
    .small-block-contact .card p {
        color: var(--colorWhite);
        width: 100%;
        padding: 0 17px;
        font-size: 16px;
        margin-bottom: 50px;
    }
    .small-block-contact .container{
        padding: 0;
    }
    footer{
        padding: 50px 0;
    }
    /* footer .text-end, footer .text-star{
        text-align: center!important;
    } */
    footer h4, footer .text-end, footer .text-star{
        margin-bottom: 38px!important;
    }
    .menu-responsive{
        width: 100%;
    }
    .block-form-contact{
        padding: 50px 0;
    }
    .block-form-contact .col-lg-6 .card.card-form {
        border: none;
        box-shadow: 0 6px 27px rgba(0,0,0,0.05);
        margin-left: auto;
        padding: 50px 20px;
        margin-top: 0px;
    }
    .block-form-contact p.paragraph{
        font-size: 18px;
        margin-top: 49px;
        line-height: 30px;
        margin-bottom: 45px;
    }
    .block-form-contact h1{
        font-size: 25px;
        line-height: 32px;
        padding-right: 0px;
        margin-bottom: 20px;
        margin-top: 0;
    }
    .block-form-contact .col-lg-6 .card .icon{
        font-size: 20px;
    }
    .block-form-contact .col-lg-6 .card h5{
        font-size: 16px;
    }
    .block-form-contact .col-lg-6 .card h6{
        font-size: 13px;
    }
    .block-form-contact .hidden-1{
        display: none;
    }
    .block-form-contact .hidden-2{
        display: flex;
    }
    .all-services{
        padding: 50px 0;
    }
    .all-services .card{
        width: 100%;
        height: 335px !important;
        margin-bottom: 30px;
        margin-top: 30px;
    }
    /* .all-services .card::before {
        top: -50px;
        left: 20px;
        right: 20px;
        bottom: 20px;
    } */
    .all-services .text-star{
        padding: 0!important;
    }
    .all-services h3{
        font-size: 25px;
        line-height: 32px;
        padding-right: 0px;
        margin-bottom: 20px;
        margin-top: 0!important;
    }
    .all-services h3 .line{
        bottom: -20px;
    }
    .all-services  p {
        padding-right: 0!important;
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .all-services .row{
        margin-bottom: 0px;
    }
    .all-services ul{
        margin-top: 0;
        margin-bottom: 45px;
    }
    .all-services .block-consulting, .all-services .block-archivage, .all-services .block-identite-marque, .all-services .block-logiciel-dedie, .all-services .block-marketing, .all-services .block-app-mobile{
        padding: 30px 0;
    }
    .all-services .block-consulting h3 {
        margin-top: 0px;
    }
    .all-services .block-marketing{
        margin-bottom: 50px;
    }
    .all-services .block-marketing .text-center{
        text-align: left!important;
    }
    .all-services .block-marketing h2 {
        font-size: 26px;
        font-weight: 700;
        padding-top: 20px;
        margin-bottom: 50px;
    }
    .all-services .block-marketing ul li{
        margin-bottom: 8px;
    }
    .all-services .block-marketing ul{
        margin: 0;
    }
    .all-services .block-identite-marque ul{
        margin-top: 30px;
    }
    .all-services .block-identite-marque ul li{
        margin-bottom: 8px;
    }
    footer .logo img {
        width: 120px;
        margin-bottom: 24px;
    }
    .block-contact-us{
        padding: 50px 0;
    }
    .block-contact-us .text-star{
        text-align: center!important;
    }
    .block-contact-us h2 {
        font-size: 26px;
    }
    .block-contact-us .btn {
        padding: 10px 15px;
        font-size: 14px;
        margin-bottom: 30px;
    }
    .block-contact-us .col-lg-7 .bi {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .block-contact-us h3 {
        font-size: 16px;
        font-weight: 600;
    }
    .block-contact-us p{
        font-size: 12px;
    }
    .block-newsletter{
        padding: 50px 0;
    }
    .block-newsletter h2{
        font-size: 24px;
    }
    .block-newsletter .btn{
        height: 46px;
    }
    .block-newsletter p{
        margin-bottom: 30px;
        padding-right: 0;
        font-size: 14px;
    }
    .block-newsletter .form-control{
        height: 46px;
    }
    .block-newsletter label{
        padding-top: 13px;
    }
    .block-newsletter label{
        font-size: 14px;
    }
    .modal-dialog{
        margin: 0;
    }
    .modal-devis .modal-content{
        border-radius: 0;
        padding: 30px 5px;
    }
    .modal-devis .modal-content label{
        font-size: 12px;
        background: transparent;
        z-index: 0;
        padding-top: 13px!important;
    }
    .modal-devis .modal-content input, .modal-devis .modal-content select{
        height: 46px!important;
    }
    .modal-devis .modal-content h5 {
        color: var(--colorTitle);
        font-weight: 400;
        font-size: 14px;
    }
    
    .block-content-privacy{
        padding: 30px 0;
    }
    .block-content-privacy h2{
        font-size: 15px;
    }
    .block-content-privacy p{
        font-size: 14px;
    }
    .block-content-privacy p b{
        font-weight: 600;
    }
    .block-content-privacy h3{
        font-size: 15px;
    }
}
@media (min-width: 577px) and (max-width:768px){
    .banner-christmas-content{
        width: 90%;
        height: 60vh;
    }
    .menu-toggle{
        display: flex;
        right: 30px;
    }

    #cursor{
        display: none;
    }

    header{
        position: absolute!important;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1030;
    }
    header .navbar{
        padding: 20px 20px!important;
    }
    header .navbar.navbar.bg-white{
        background: transparent!important;
    }
    .banner{
        height: 620px;
    }
    .banner .container h1{
        font-size: 55px;
        line-height: 65px;
    }
    .banner .container p{
        font-size: 25px;
        max-width: 548px;
        line-height: 30px;
    }
    .block-about .wave {
        position: absolute;
        top: -120px;
        width: 100%;
        height: 250px;
        background: url(../images/Vague-banner.png);
        background-repeat: no-repeat;
        background-size: contain;
        transform: scale(1.05);
    }
    .banner-service h1{
        font-size: 36px;
    }
    .block-about h2 {
        font-size: 35px;

    }
    .block-about .card{
        width: 100%;
    }
    .block-about p {
        line-height: 29px;
        font-size: 17px;
    }
    .first-parallax h2 .bold-text{
        font-size: 45px;
    }
    .service h2 {
        font-size: 40px;
    }
    .service .card {
        padding: 20px 25px;
    }
    .service .card p{
        font-size: 14px;
    }
    .block-reason ul li p {
        padding-right: 0px;
    }
    .block-reason h2{
        left: 0;
    }
    .small-block-contact{
        padding: 100px 0;
        padding-top: 50px;
    }
    .small-block-contact .card h2 {
        font-size: 32px;
    }
    .small-block-contact .card h2 span{
        font-size: 50px;
    }
    footer h4{
        font-size: 18px;
    }
    footer a, footer p{
        font-size: 13px!important;
    }
    .block-form-contact .col-lg-6 .card.card-form{
        padding: 30px 30px;
    }
    .block-form-contact p.paragraph {
        line-height: 29px;
        font-size: 17px;
    }
    .block-form-contact .hidden-1{
        display: flex;
    }
    .block-form-contact .hidden-2{
        display: none;
    }
    .all-services{
        padding: 50px 0;
    }
    .all-services .block-consulting, .all-services .block-archivage, .all-services .block-identite-marque, .all-services .block-logiciel-dedie, .all-services .block-marketing, .all-services .block-app-mobile{
        padding: 100px 0;
    }
    .all-services p{
        line-height: 29px;
        font-size: 17px;
        padding: 0!important;
    }
    .all-services .card{
        width: 100%;
        height: 420px;

    }
    .all-services .text-star{
        padding: 0!important;
    }
    .all-services h3{
        margin-top: 0!important;
        font-size: 24px;
        margin-right: 50px;
    }
    .all-services .block-logiciel-dedie p{
        padding-right: 30px!important;
    }
    .all-services .block-marketing h2 {
        font-size: 34px;
        padding-top: 0px;
        margin-bottom: 80px;
    }
    .block-contact-us h2{
        font-size: 24px;
        margin-top: 100px;
    }
    .block-contact-us .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    .block-contact-us .col-lg-7 .bi {
        font-size: 38px;
        margin-bottom: 10px;
    }
    .block-form-contact h1{
        font-size: 24px;
    }
    .block-form-contact h4{
        font-size: 18px;
    }
    .block-form-contact ul li{
        font-size: 15px;
    }
    .block-form-contact .col-lg-6 .card h5 {
        font-size: 15px;
    }
    .block-form-contact .col-lg-6 .card h6 {
        font-weight: 400;
        font-size: 13px;
    }
    .block-form-contact .col-lg-6 .card .icon{
        font-size: 22px;
    }
    .block-form-contact label{
        font-size: 13px;
    }
    .block-form-contact .btn{
        font-size: 14px;
        padding: 10px 35px;
    }
    footer .logo img {
        width: 110px;
        margin-bottom: 24px;
    }
}
@media only screen and (min-width: 769px) and (max-width:992px){
    .banner-christmas-content{
        width: 90%;
        height: 60vh;
    }
    .menu-toggle{
        display: flex;
        right: 30px;
    }

    #cursor{
        display: none;
    }
    header{
        position: absolute!important;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1030;
    }
    header .navbar{
        padding: 20px 20px!important;
    }
    header .navbar.navbar.bg-white{
        background: transparent!important;
    }
    .banner{
        height: 620px;
    }
    .banner .container h1{
        font-size: 55px;
        line-height: 65px;
    }
    .banner .container p{
        font-size: 25px;
        max-width: 548px;
        line-height: 30px;
    }
    .banner-service h1{
        font-size: 36px;
    }

    .block-about .wave {
        position: absolute;
        top: -120px;
        width: 100%;
        height: 250px;
        background: url(../images/Vague-banner.png);
        background-repeat: no-repeat;
        background-size: contain;
        transform: scale(1.05);
    }
    .block-about h2 {
        font-size: 35px;

    }
    .block-about .card{
        width: 100%;
    }
    .block-about p {
        line-height: 29px;
        font-size: 17px;
    }
    .first-parallax h2 .bold-text{
        font-size: 45px;
    }
    .service h2 {
        font-size: 40px;
    }
    .service .card {
        padding: 20px 25px;
    }
    .service .card p{
        font-size: 14px;
    }
    .block-reason ul li p {
        padding-right: 0px;
    }
    .block-reason h2{
        left: 0;
    }
    .small-block-contact{
        padding: 100px 0;
        padding-top: 50px;
    }
    .small-block-contact .card h2 {
        font-size: 32px;
    }
    .small-block-contact .card h2 span{
        font-size: 50px;
    }
    footer h4{
        font-size: 18px;
    }
    footer a, footer p{
        font-size: 13px!important;
    }
    .block-form-contact .col-lg-6 .card.card-form{
        padding: 30px 30px;
    }
    .block-form-contact p.paragraph {
        line-height: 29px;
        font-size: 17px;
    }
    .block-form-contact .hidden-1{
        display: flex;
    }
    .block-form-contact .hidden-2{
        display: none;
    }
    .all-services{
        padding: 50px 0;
    }
    .all-services .block-consulting, .all-services .block-archivage, .all-services .block-identite-marque, .all-services .block-logiciel-dedie, .all-services .block-marketing, .all-services .block-app-mobile{
        padding: 100px 0;
    }
    .all-services p{
        line-height: 29px;
        font-size: 17px;
        padding: 0!important;
    }
    .all-services .card{
        width: 100%;
        height: 420px;

    }
    .all-services .text-star{
        padding: 0!important;
    }
    .all-services h3{
        margin-top: 0!important;
        font-size: 24px;
        margin-right: 50px;
    }
    .all-services .block-logiciel-dedie p{
        padding-right: 30px!important;
    }
    .all-services .block-marketing h2 {
        font-size: 34px;
        padding-top: 0px;
        margin-bottom: 80px;
    }
    .block-contact-us h2{
        font-size: 24px;
        margin-top: 100px;
    }
    .block-contact-us .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    .block-contact-us .col-lg-7 .bi {
        font-size: 38px;
        margin-bottom: 10px;
    }
    .block-form-contact h1{
        font-size: 24px;
    }
    .block-form-contact h4{
        font-size: 18px;
    }
    .block-form-contact ul li{
        font-size: 15px;
    }
    .block-form-contact .col-lg-6 .card h5 {
        font-size: 15px;
    }
    .block-form-contact .col-lg-6 .card h6 {
        font-weight: 400;
        font-size: 13px;
    }
    .block-form-contact .col-lg-6 .card .icon{
        font-size: 22px;
    }
    .block-form-contact label{
        font-size: 13px;
    }
    footer .logo img {
        width: 110px;
        margin-bottom: 24px;
    }
    .block-form-contact .btn{
        font-size: 14px;
        padding: 10px 35px;
    }
}

@media only screen and (min-width: 1222px) and (max-width:1280px){
    .block_7 .card img {
        width: 80%;
    }
    .banner .carousel-control-prev {
        left: 20px;
    }
    .banner .carousel-control-prev, .banner .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    .banner .carousel-control-next {
        right: 20px;
    }
    .block_2 .text-star {
        padding: 50px 70px 50px 90px;
    }
    .block_3 .card .text-center {
        padding: 20px 30px;
    }
    .block_2 .content {
        padding: 50px 60px 50px 70px;
    }
    .block_3 h1 {
        font-size: 40px;
    }
    .block_9 h1{
        font-size: 40px;
    }
    .block_10 .card-exp h4 {
        font-size: 15px;
    }
    .block_10 .card-exp {
        padding: 20px 30px;
    }
    .topbar .block-link a{
        font-size: 9px;
    }
    .block-form-contact .col-lg-6 .card h6{
        font-size: 13px;
    }
    .block-contact-us h2{
        font-size: 32px;
    }
}


.fa-2x {
	font-size: 2em;
}


.form-validate .validate {
    display: none;
    color: red;
    margin: 8px 0 0 0;
    font-weight: 400;
    font-size: 12px;
}

.form-validate .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 8px;
}

.form-validate .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 8px;
    font-weight: 600;
}

.sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 8px;
    font-weight: 600;
}
