@import "footer.css";






/*================================================
             1. DEMO SECTION
==================================================*/


@font-face {
  font-family: "Myriad Variable Concept";
  src: url("fonts/3a86b8ec8855002aad8b288eaba8915d.eot");
  src: url("fonts/3a86b8ec8855002aad8b288eaba8915d.eot?#iefix")format("embedded-opentype"),
    /* url("fonts/3a86b8ec8855002aad8b288eaba8915d.woff")format("woff"), */
    url("fonts/3a86b8ec8855002aad8b288eaba8915d.woff2")format("woff2"),
    url("fonts/3a86b8ec8855002aad8b288eaba8915d.ttf")format("truetype"),
    url("fonts/3a86b8ec8855002aad8b288eaba8915d.svg#Myriad Variable Concept")format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.text-white {
  color: white;
}

.text-blue {
  color: #008bff;
}

.demo-section {
  background: #f4f7f9;
  padding-top: 80px;
  padding-bottom: 60px;
}

.demo-heading h1 {
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 36px;
  text-align: center;
  font-weight: 700;
}

.demo-heading h2 {
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 36px;
  text-align: center;
  font-weight: 700;
  padding-top: 50px;
  padding-bottom: 40px;
}

.demo-heading p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  padding-bottom: 40px;
}

.demo-wrap {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  margin-bottom: 50px;
  transition: all 0.3s ease 0s;
}

.demo-wrap:hover {
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.2);
}

.demo-wrap-img {}

.demo-wrap-img a {
  display: block;
  position: relative;
}

.demo-wrap-img a::before {
  background: #448aff none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.demo-wrap:hover .demo-wrap-img a::before {
  opacity: 0.8;
}

.demo-wrap-img a::after {
  color: #fff;
  content: "Live Preview ➞";
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: capitalize;
  top: 20%;
  transition: all 0.3s ease 0s;
}

.demo-wrap:hover .demo-wrap-img a::after {
  top: 44%;
  opacity: 1;
}

.demo-wrap .demo-wrap-img a img {
  width: 100%;
}

.demo-wrap-title {
  background: #fff none repeat scroll 0 0;
  padding: 30px 0;
}

.demo-wrap-title {}

.demo-wrap-title h2 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 17px;
  font-weight: 300;
}

.demo-wrap-title span {
  display: block;
  line-height: 16px;
  margin-top: 5px;
  text-transform: capitalize;
}

/*================================================
             2. PRELOADER
==================================================*/

.preloader-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 9999999;
}

.spinner-loader {
  margin-top: -20px;
  margin-left: -25px;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.spinner-loader>div {
  background-color: #008bff;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner-loader .load2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner-loader .load3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner-loader .load4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner-loader .load5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }

  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

/*================================================
             3. BACK TO TOP
==================================================*/

.scrollup {
  background: #448aff none repeat scroll 0 0;
  bottom: 38px;
  color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
  font-size: 16px;
  height: 40px;
  line-height: 35px;
  position: fixed;
  right: 30px;
  text-align: center;
  width: 40px;
  z-index: 99999;
}

.scrollup:hover {
  background: #fff;
  color: #444;
  border: 1px solid #448aff;
  transition: 1s;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

.back-to-top span {
  padding-bottom: 10px;
}

.back-to-top--active {
  visibility: visible;
  -webkit-animation: back-to-top .3s ease-in;
  animation: back-to-top .3s ease-in;
  transition: width 2s;
}
/*================================================
             4. HEADER SECTION
==================================================*/

body {
  overflow-x: hidden;
}

#particles-js {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1 !important;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #007bff, #00d4ff);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header h1 {
  font-size: 2.5rem;
  margin: 0;
}

.header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}

.header-logo {
  padding-left: 0px;
  padding-right: 0px;
}

.img-logo {
  margin-top: 4px;
}


ul#navigation {
  margin-top: revert;
}

.home-header {
  background-color: #fff;
  box-shadow: 0 0 10px #333;
  background-color: #fff;
  box-shadow: 0 0 10px #333;
  left: 0;
  position: static; /* fixed */
  right: 0;
  top: 0;
  z-index: 99999;
  padding-bottom: 4px;
}

.home-header .container-fluid {
  padding: 0;
}

.market-menu-area {
  text-align: right;
}

.header-nav li ul {
  background-color: #fff;
  border: 1px solid #ddd;
  left: 0;
  right: auto;
  margin: 0;
  opacity: 0;
  padding: 15px;
  position: absolute;
  text-align: left;
  top: 70px;
  transition: all 0.5s ease 0s;
  visibility: hidden;
  width: 250px;
  z-index: -1;
}

.market-menu-area ul li {
  display: inline-block;
  position: relative;
  padding-left: 25px;
}

.header-nav li a {
  color: #424242;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.header-nav li a.active {
  color: #448aff;
}


.link-nav-devis:hover {
  color: white;
}

.header-nav li a:hover {
  color: #448aff;
}



.header-nav li a i {
  padding-left: 5px;
}

.header-nav li:hover ul {
  opacity: 1;
  top: 65px;
  visibility: visible;
  z-index: 99;
}

.header-nav li ul li {
  display: block;
  padding-left: 0px;
  border-bottom: 1px solid #ddd;
}

.header-nav li ul li:last-child {
  border-bottom: 0px solid;
}

.header-nav li ul li>a {
  color: #424242;
  display: block;
  font-size: 13px;
  padding: 10px 15px;
  transition: 0.3s;
}

a:focus,
a:hover {
  color: #fff;
  text-decoration: none;
}

a:focus {
  outline: 0 solid;
}


.dropdown.lang-switch {
  position: absolute;
  right: 7px;
  top: 9px;
}


.lang-switch button#dropdownMenuButton {
  background: transparent;
  color: white;
  border-color: #028bff;
}

.dropdown-menu {
  min-width: 4rem;
  left: 27px;
}
/*================================================
             5. BANNER SECTION
==================================================*/

.banner-section {
  background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .6)), url(../images/header-banner/header-banner-bg.png);
  height: 900px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner-text {
  margin-top: 280px;
}

.banner-text h1 {
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  padding-top: 15px;
  padding-bottom: 15px;
}

.banner-text p {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  padding-bottom: 18%;
}

.banner-btn,
.banner-btn2 {
  z-index: 999;
  position: relative;
  color: #FFF;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  user-select: none;
}

.banner-btn {
  background: #448aff;
  border: 2px solid #448aff;
  padding: 16px 32px;
  margin-right: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner-btn:hover {
  color: #444;
  box-shadow: inset 0 100px 0 0 #fff, 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.banner-btn:active {
  transform: translateY(0);
  box-shadow: inset 0 100px 0 0 #fff, 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-btn2 {
  background: transparent;
  border: 2px solid #448aff;
  padding: 15px 34px;
  margin-right: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner-btn2:hover {
  background: #448aff;
  box-shadow: 0 6px 12px rgba(68, 138, 255, 0.3);
  transform: translateY(-2px);
}

.banner-btn2:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(68, 138, 255, 0.2);
}

/* Effet de ripple (optionnel) */
.banner-btn::after,
.banner-btn2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.banner-btn:focus:not(:active)::after,
.banner-btn2:focus:not(:active)::after {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* Accessibilité */
.banner-btn:focus-visible,
.banner-btn2:focus-visible {
  outline: 2px solid rgba(68, 138, 255, 0.7);
  outline-offset: 2px;
}


.animated-header-text {
  margin-top: 350px;
}

.animated-header-text h1.cd-headline {
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 55px !important;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  padding-top: 15px;
  padding-bottom: 25px;
}

.cd-headline .cd-words-wrapper-2::after {
  background-color: #fff;
}

/*================================================
             partenaires SECTION
==================================================*/
.customer-logos img {
  height: 104px;
}

/*================================================
             6. SLIDER SECTION
==================================================*/
.single-slider {
  background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .6)), url(../images/sliders/slider4.jpg) center;
  height: 900px;
  background-size: cover;
}

.single-slider-1 {
  background-image: url(../images/sliders/slide1.jpg);
  height: 100vh;
  background-size: cover;
  object-fit: cover;
  width: auto !important;
}
.single-slider-2 {
  background-image: url(../images/sliders/slide2.jpg);
  height: 100vh;
  background-size: cover;
  object-fit: cover;
  width: auto !important;
}
.single-slider-3 {
  background-image: url(../images/sliders/slide3.jpg);
  height: 100vh;
  background-size: cover;
  object-fit: cover;
  width: auto !important;
}

.carousel-single-item .owl-nav div {
  background-color: #fff;
  color: #212121;
  border-radius: 50%;
  font-size: 28px;
  height: 50px;
  left: 35px;
  line-height: 48px;
  margin-top: -25px;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  visibility: hidden;
  width: 50px;
  transition: 0.3s;
}

.carousel-single-item .owl-nav div:hover {
  background-color: #448aff;
  color: #fff;
}

.carousel-single-item .owl-nav div.owl-next {
  left: auto;
  right: 35px;
}

.carousel-single-item.owl-nav:hover {
  opacity: 0.6;
  visibility: visible;
}

.carousel-single-item:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
}

/*================================================
             7. VIDEO BACKGROUND SECTION
==================================================*/

.youtube-bg {
  height: 140vh;
  z-index: 10;
}

.youtube-bg .buttonBar {
  display: none;
}

.youtube-video-overlay {
  position: relative;
}

.youtube-video-overlay:before {
  background: #000;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
  opacity: 0.5;
}

/*================================================
             8. ABOUT SECTION
==================================================*/

.about-section {
  background: #14213b;
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-heading h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  font-family: "Myriad Variable Concept", sans-serif;
  padding-bottom: 15px;
}

.about-heading p {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  font-family: "Myriad Variable Concept", "Poppins", sans-serif;
  line-height: 28px;
  padding-bottom: 25px;
}

.about-btn {
  color: #FFF;
  background: #448aff;
  border: 2px solid #448aff;
  padding: 14px 20px;
  margin-right: 15px;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #448aff;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.about-btn:hover {
  box-shadow: inset 0 100px 0 0 #fff;
  color: #444;
}

.about-text img {
  display: block;
  margin: 0px auto;
  margin-bottom: 25px;
}

.about-text h3 {
  font-family: "Myriad Variable Concept", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 15px;
  text-align: center;
  font-weight: bold;
}

.about-text p {
  font-family: "Myriad Variable Concept";
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
  text-align: center;
}

/*================================================
             9. SERVICES SECTION
==================================================*/



.services-show-box {
  margin-top: 10%;
  padding-left: 5%;
  padding-right: 5%;
}

.describe-technology {
  text-align: center;
  color: white;
  font-family: "Myriad Variable Concept";
  font-weight: bold;
}

.services-show-box  .flip-card{
  width: 250px;
  height: 250px;

}

.icon-box-services {
  display: block;
  font-size: 6em;
}

.icon-laravel {
  color: #f03d2f;
}

.icon-symfony {
  color: white;
}

.icon-python {
  color: #ffd744;
}

.icon-php {
  color: #4f5b93;
}

.icon-java {
  color: #da4838;
}

.icon-wordpress {
  color: #1b769c;
}

.technology-maitraise {
  color: white;
}

.icon-html5 {
  color: #dd4b25;
}

.icon-css3 {
  color: #0172b6;
}

.icon-vuejs {
  color: #3fb27f;
}

.icon-angular {
  color: #d6002f;
}

.title-technology {
  color: white;
  text-align: center;
  margin-bottom: 50px;
}

.icon-bootstrap {
  color: #8712fb;
}

.hover-div:hover {
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  /* box-shadow: 0 22px 43px rgba(0, 0, 0, 0.32); */
  cursor: pointer;
  border-radius: 5px;
}

.hover-div {
  /* border-top: 1px solid #f8f8f8;
  background: #f8f8f8;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2); */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.services-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.services-heading span {
  color: #000;
  text-align: center;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 6px;
  display: block;
}

.services-heading hr {
  border-top: 5px solid #448aff;
  margin: 0 auto 25px;
  width: 4%;
}

.services-heading h2 {
  color: #000;
  text-align: center;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 70px;
  line-height: 38px;
}

.services-content {
  background: #14213b;
  padding: 36px 25px 15px;
  margin-bottom: 30px;
  transition: 1s;
  height: 425px;
}

.services-content:hover {
  box-shadow: 0 5px 7px 4px rgba(0, 0, 0, 0.3);
}

.services-content img {
  display: block;
  margin: 0px auto;
}

.services-content h3 {
  color: #fff;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 20px;
  text-align: center;
}

.services-content p {

  color: #fff;
  font-family: "Myriad Variable Concept";
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
  text-align: center;
  margin-top: 25px;
}

/*================================================
            10. WORK SECTION
==================================================*/

.work-section {
  background: #fff;
  padding-top: 100px;
  padding-bottom: 90px;
}

.work-heading span {
  color: #857285;
  text-align: center;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  text-align: left;
}

.work-heading hr {
  border-top: 5px solid #448aff;
  display: block;
  margin: 0 0 30px;
  width: 8%;
}

.work-heading h2 {
  color: #000;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 38px;
  padding-bottom: 15px;
}

.work-heading p {
  color: #444;
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  line-height: 28px;
  padding-bottom: 35px;
}

.work-btn {
  color: #FFF;
  background: #448aff;
  border: 2px solid #448aff;
  padding: 14px 30px;
  margin-right: 15px;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #448aff;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.work-btn:hover {
  box-shadow: inset 0 100px 0 0 #fff;
  color: #444;
}

.work-img img {
  float: right;
  border: 10px solid #448aff;
  padding: 15px;
}

/*================================================
             11. TESTIMONIALS SECTION
==================================================*/

.reviews-section {
  background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .6)), url(../images/reviews/reviews-bg.jpg) center;
  background-size: cover;
  height: 577px;
  padding-top: 90px;
  padding-bottom: 100px;
}

.single-reviews {
  position: relative;
  padding-bottom: 20px;
}

.reviews-image {
  padding-top: 10px;
}

.reviews-image {
  height: 125px;
  left: 20px;
  right: 0;
  width: 125px;
  margin: 0px auto;
  margin-bottom: 20px;
}

.reviews-image img {
  border-radius: 50%;
  width: 100%;
}

.reviews-name {
  padding: 13px 0;
}

.reviews-name h4 {
  color: #fff;
  font-size: 18px;
  font-family: "Myriad Variable Concept", sans-serif;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.reviews-name span {
  color: #fff;
  font-size: 18px;
  font-family: "Myriad Variable Concept", sans-serif;
  font-weight: 300;
  text-align: center;
  padding-bottom: 20px;
}

.reviews-content {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  text-align: center;
  padding-top: 15px;
}

.reviews-content hr {
  border-top: 5px solid #448aff;
  margin: 0 auto 25px;
  width: 6%;
}

.reviews-list .owl-dots div.active {
  background: #fff;
  border: 2px solid #fff;
}

.reviews-list .owl-dots {
  margin-top: 0px;
  text-align: center;
}

.reviews-list .owl-dots div {
  background: none;
  display: inline-block;
  height: 10px;
  margin-left: 10px;
  width: 10px;
  transform: rotate(45deg);
  border: 2px solid #448aff;
}

/*================================================
             12. TEAM SECTION
==================================================*/
.team-section {
  background-color: #eefafb;
  padding-top: 48px;
  padding-bottom: 48px;
}

.team-heading span {
  color: #000;
  text-align: center;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 6px;
  font-weight: bold;
  display: block;
  text-transform: uppercase;
}

.team-heading hr {
  border-top: 5px solid #448aff;
  margin: 0 auto 25px;
  width: 4%;
}

.team-heading h2 {
  color: #000;
  text-align: center;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 70px;
  line-height: 38px;
}

.work-table {
  display: table;
  height: 100%;
  text-align: center;
  width: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

.team-item {
  position: relative;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.team-item,
.team-item * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.team-item a {
  color: #333;
}

.team-item a:hover {
  text-decoration: none;
}

.team-item img {
  width: 100%;
  height: 100%;
}

.team-item.circle {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: block;
  margin: 0px auto;
}

.team-item.circle .img {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
}

.team-item.circle .img:before {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: inset 0 0 0 16px rgba(68, 138, 255, 0.6), 0 1px 2px rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.team-item.circle .img img {
  border-radius: 50%;
}

.team-item.circle .info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.team-item.square {
  position: relative;
  width: 316px;
  height: 216px;
  border: 8px solid #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.team-item.square .info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.team-item.circle.team-effect .img {
  z-index: 11;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.team-item.circle.team-effect.colored .info {
  background: #448aff;
}

.team-item.circle.team-effect .info {
  background: #448aff;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.team-item.circle.team-effect .info h3 {
  color: #fff;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 22px;
  font-weight: 600;
  position: relative;
  margin-bottom: 0px;
}

.team-item.circle.team-effect .info p {
  color: #fff;
  margin: 0 30px 24px;
  font-size: 17px;
  font-family: "Myriad Variable Concept", sans-serif;
  font-weight: 500;
  margin-bottom: 2px 5px;
}

/* .team-item.circle.team-effect .info a {
	background:#ffffff;
  color: #448aff;
  font-size: 21px;
  margin-left: 5px;
  margin-right: 5px;
  padding:2px 9px;
  border-radius:50%;
}
.team-item.circle.team-effect .info a:hover{
	background:#448aff;
	transition:1s;
	color:#fff;
} */


.team-item.circle.team-effect .info i {
  background: #ffffff;
  color: #448aff;
  font-size: 21px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 7px 9px;
  border-radius: 50%;
}

.team-item.circle.team-effect .info i:hover {
  background: #448aff;
  transition: 1s;
  color: #fff;
}


.team-item.circle.team-effect.left_to_right .img {
  -webkit-transform: scale(1) translateX(0);
  -moz-transform: scale(1) translateX(0);
  -ms-transform: scale(1) translateX(0);
  -o-transform: scale(1) translateX(0);
  transform: scale(1) translateX(0);
}

.team-item.circle.team-effect.left_to_right .info {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}

.team-item.circle.team-effect.left_to_right:hover .img {
  -webkit-transform: scale(0.7) translateX(100%);
  -moz-transform: scale(0.7) translateX(100%);
  -ms-transform: scale(0.7) translateX(100%);
  -o-transform: scale(0.7) translateX(100%);
  transform: scale(0.7) translateX(100%);
}

.team-item.circle.team-effect.left_to_right:hover .info {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.team-item.circle.team-effect.bottom-to-top .img {
  -webkit-transform: scale(1) translateY(0);
  -moz-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  -o-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.team-item.circle.team-effect.bottom-to-top .info {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}

.team-item.circle.team-effect.bottom-to-top:hover .img {
  -webkit-transform: scale(0.7) translateY(-100%);
  -moz-transform: scale(0.7) translateY(-100%);
  -ms-transform: scale(0.7) translateY(-100%);
  -o-transform: scale(0.7) translateY(-100%);
  transform: scale(0.7) translateY(-100%);
}

.team-item.circle.team-effect.bottom-to-top:hover .info {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

/*================================================
             13. COUNTER SECTION
==================================================*/

.counter-section {
  background: url(../images/counter/counter-bg.jpg) center;
  background-size: cover;
  height: 366px;
  padding-bottom: 55px;
  padding-top: 95px;
}

.counter-wrapper {
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
  padding-top: 30px;
  padding-bottom: 30px;
}

.counter-column i {
  font-size: 30px;
  display: block;
  text-align: center;
}

.counter-column span {
  font-size: 25px;
  font-family: "Myriad Variable Concept", sans-serif;
  color: #212121;
  font-weight: 500;
  display: block;
  text-align: center;
  padding-top: 10px;
}

.counter-column h3 {
  font-size: 15px;
  font-family: "Myriad Variable Concept", sans-serif;
  color: #212121;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  padding-top: 10px;
}

/*================================================
             14. GALLERY SECTION
==================================================*/

.gallery-section {
  padding-top: 100px;
  padding-bottom: 80px;
}

.gallery-heading span {
  color: #857285;
  text-align: center;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
}

.gallery-heading hr {
  border-top: 5px solid #448aff;
  margin: 0 auto 25px;
  width: 4%;
}

.gallery-heading h2 {
  color: #000;
  text-align: center;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 70px;
  line-height: 38px;
}

.gallery-wrapper .mix {
  display: none;
  margin-bottom: 25px;
}

.filter-button-group ul {
  text-align: center;
  margin-bottom: 70px;
  padding-left: 0px;
}

.filter-button-group ul li {
  background: none;
  display: inline-block;
  color: #444;
  font-size: 17px;
  font-family: "Myriad Variable Concept", sans-serif;
  font-weight: 400;
  padding: 10px 25px 10px 25px;
  transition: 1s;
}

.filter-button-group ul li:hover {
  color: #fff;
  background: #448aff;
  border-radius: 0px;
  cursor: pointer;
}

.filter-button-group li.active {
  background: #448aff;
  color: #fff;
  font-size: 17px;
  font-family: "Myriad Variable Concept", sans-serif;
  font-weight: 400;
}

.gallery-items {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.gallery-items img {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
}

.gallery-items .ovrly {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  top: -100%;
  width: 100%;
  position: absolute;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.gallery-items .buttons {
  position: absolute;
  top: -100%;
  left: 50%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.gallery-items .buttons .fa {
  margin: 0 1px;
  background: rgb(256, 256, 256);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: rgba(50, 50, 50, 0.9);
  display: inline-block;
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  width: 40px;
  height: 40px;
}

.gallery-items:hover .buttons {
  top: 50%;
}

.gallery-items:hover .ovrly {
  top: 0;
}

.single-project {
  padding-top: 100px;
  padding-bottom: 100px;
}

.project-img img {
  max-width: 100%;
}

.project-author {
  background: #f7f7f7;
  padding: 30px;
  margin-bottom: 30px;
}

.project-author ul {
  padding-left: 0px;
  margin-bottom: 0px;
}

.project-author ul li {
  font-family: "Myriad Variable Concepté";
  line-height: 1.9;
  font-size: 14px;
}

.project-author span {
  display: inline-block;
  font-weight: 600;
  margin-right: 5px;
  color: #444;
}

.project-author p {
  color: #444;
  font-family: "Myriad Variable Concepté";
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
}

.project-content p {
  color: #444;
  font-family: "Myriad Variable Concepté";
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
}

.project-btn {
  color: #FFF;
  background: #448aff;
  border: 2px solid #448aff;
  padding: 17px 30px;
  margin-top: 20px;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #448aff;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.project-btn:hover {
  box-shadow: inset 0 100px 0 0 #fff;
  color: #444;
}

.related-projects-wrapper {
  padding-top: 120px;
}

.related-projects-heading h2 {
  font-family: "Myriad Variable Concept", sans-serif;
  font-family: 40px;
  color: #000000;
  text-align: center;
  padding-bottom: 70px;
}

/*================================================
             15. BLOG SECTION
==================================================*/

.blog-section {
  background: #eefafb;
  padding-top: 100px;
  padding-bottom: 60px;
}

.blog-heading span {
  color: #857285;
  text-align: center;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
}

.blog-heading hr {
  border-top: 5px solid #448aff;
  margin: 0 auto 25px;
  width: 4%;
}

.blog-heading h2 {
  color: #000;
  text-align: center;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 70px;
  line-height: 38px;
}

.blog-details {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.blog-details img {
  max-width: 100%;
  height: auto;
}

.blog-content {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
}

.blog-details p.tag {
  font-size: 12px;
  color: #212121;
  font-family: "Poppins", sans-serif;
  padding-top: 20px;
}

.blog-details p.tag i {
  font-size: 12px;
  color: #212121;
  padding-right: 5px;
}

.blog-details p.tag a {
  font-size: 12px;
  color: #212121;
}

.blog-details p.tag span {
  padding-left: 15px;
}

.blog-details h4 {
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 17px;
  color: #212121;
  font-weight: 500;
  padding-bottom: 10px;
}

.blog-details p {
  color: #444;
  font-family: "Myriad Variable Concepté";
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
}

.blog-details blockquote {
  color: #444;
  font-family: "Myriad Variable Concepté";
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
  font-style: italic;
  border-left: 3px solid #448aff;
  margin-left: 15px;
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.blog-details a.read-more {
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 14px;
  color: #212121;
  font-weight: 400;
  padding-top: 20px;
}

.blog-details a.read-more:hover {
  color: #448aff;
  transition: 1s;
}

.blog-banner {
  background-image: url(../images/blog/cwt.png);
  height: 407px;
  background-size: cover;
}

.blog-banner-heading {
  margin-top: 200px;
}

.title-banner h2 {
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 30px;
  color: #028bff;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: center;
}

.title-banner hr {
  border-top: 5px solid #448aff;
  margin: 0 auto 10px;
  width: 4%;
}

.bradcaump-wrapper {
  text-align: center;
}

.bradcaump-wrapper a {
  color: #fff;
  font-family: "Myriad Variable Concepté";
  font-size: 14px;
  font-weight: 300;
  transition: 0.3s;
}

.bradcaump-wrapper a:hover {
  color: #448aff;
}

.bradcaump-wrapper span {
  color: #fff;
  font-family: "Myriad Variable Concepté";
  font-size: 14px;
  font-weight: 300;
}

.bradcaump-wrapper span.breadcrumb-single-item.active {
  color: #448aff;
  text-transform: uppercase;
}

.aside-blog {
  background: #fff;
}

.form-search {
  position: relative;
}

.aside-form .form-search input[type="text"] {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #9e9e9e;
  color: #989494;
  font-size: 18px;
  width: 100%;
  height: 47px;
  line-height: 24px;
  font-family: "Myriad Variable Concepté";
  padding: 0 30px 0 10px;
}

.aside-form .form-search .search-btn {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: #757575;
  font-size: 12px;
  height: 30px;
  padding: 13px 13px;
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 0;
}

.sidebar-widget {
  margin-top: 30px;
}

.sidebar-widget h5 {
  background: #448aff;
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  padding: 15px;
}

.blog-small-item {
  overflow: hidden;
  border-bottom: 1px solid #757575;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.blog-small-item:last-child {
  border-bottom: 0px solid #757575;
  padding-bottom: 5px;
}

.blog-small-img {
  float: left;
  margin-right: 15px;
  margin-left: 15px;
}

.blog-small-img img {
  width: 80px;
}

.blog-small-info {
  float: left;
  margin-top: 15px;
}

.blog-small-info h6.blog-small-title a {
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 14px;
  color: #212121;
  font-weight: 500;
}

.blog-small-info p {
  color: #444;
  font-family: "Myriad Variable Concepté";
  font-size: 13px;
  font-weight: 400;
}

.sidebar-widget ul.category {
  padding-left: 34px;
}

.sidebar-widget ul.category li:before {
  position: absolute;
  left: -15px;
  top: 0;
  font-family: fontawesome;
  content: "\f0da";
  color: #3b99d5;
  font-size: 18px;
  line-height: 2.2;
}

.sidebar-widget ul.category li {
  position: relative;
  list-style: none;
}

.sidebar-widget ul.category li a {
  color: #444;
  font-family: "Myriad Variable Concepté";
  font-size: 16px;
  font-weight: 400;
  line-height: 2.3;
}

.sidebar-widget ul.category li a:hover {
  color: #3b99d5;
  transition: 0.5s;
}

.sidebar-widget ul.sidebar-social {
  padding-left: 17px;
  padding-top: 20px;
  padding-bottom: 30px;
}

.sidebar-widget ul.sidebar-social li {
  float: left;
  list-style: none;
  margin-right: 10px;
}

.sidebar-widget ul.sidebar-social li a {
  background: #448aff;
  border: 1px solid #448aff;
  color: #fff;
  font-size: 21px;
  margin-right: 5px;
  padding: 2px 9px;
  border-radius: 50%;
}

.sidebar-widget ul.sidebar-social li a:hover {
  background: #fff;
  border: 1px solid #448aff;
  transition: 1s;
  color: #448aff;
}

.sidebar-widget ul.tag {
  padding-top: 15px;
  padding-left: 17px;
}

.sidebar-widget ul.tag li {
  display: inline-block;
}

.sidebar-widget ul.tag li a {
  border: 1px solid #cccccc;
  color: #565656;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  font-family: "Myriad Variable Concepté";
  margin-bottom: 15px;
  margin-right: 5px;
  padding: 7px 10px;
  text-transform: capitalize;
  transition: all 0.3s ease 0s;
}

.sidebar-widget ul.tag li a:hover {
  background: #448aff;
  color: #fff;
}

ul.blog-pagination {
  margin-bottom: 30px;
  padding-left: 0px;
}

ul.blog-pagination li {
  display: inline-block;
}

ul.blog-pagination li a {
  background-color: #fff;
  border: 1px solid #00aeef;
  color: #555555;
  display: block;
  font-size: 16px;
  font-family: "Myriad Variable Concepté";
  font-weight: 500;
  height: 30px;
  line-height: 27px;
  margin: 0 5px;
  text-align: center;
  text-transform: uppercase;
  width: 30px;
  transition: all 0.3s ease 0s;
}

ul.blog-pagination li a:hover {
  background: #448aff;
  color: #fff;
}

.blog-comment {
  padding-top: 40px;
}

.blog-commnet-title h2 {
  border-bottom: 1px solid #448aff;
  color: #212121;
  font-family: "Myriad Variable Concepté";
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 32px;
  padding-bottom: 9px;
}

.blog-author {
  margin-bottom: 50px;
}

.author-2 {
  margin-left: 60px;
}

.blog-author-img {
  float: left;
  padding-right: 25px;
}

.blog-author-img img {
  border-radius: 50%;
}

.blog-author-text p.author-time {
  color: #212121;
  font-family: "Myriad Variable Concepté";
  font-weight: 500;
  font-size: 14px;
}

.blog-author-text p.author-time i {
  color: #212121;
  font-size: 12px;
  padding-right: 5px;
}

.blog-author-text p.author-time a {
  color: #212121;
  font-size: 14px;
  font-weight: 500;
}

.blog-author-text p.author-time span {
  padding-left: 15px;
}

.blog-author-text .comment-reply {
  text-align: right;
  display: block;
}

.blog-author-text .comment-reply i {
  color: #448aff;
  font-size: 14px;
  padding-right: 10px;
}

.blog-author-text .comment-reply span {
  color: #448aff;
  font-family: "Myriad Variable Concepté";
  font-weight: 500;
  font-size: 14px;
}

.comment-form-heading {
  padding-left: 0px;
}

.comment-form-heading h3 {
  color: #212121;
  font-family: "Myriad Variable Concepté";
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  padding-top: 20px;
}

.comment-form {
  padding-bottom: 40px;
}

.comment-form input {
  margin-bottom: 25px;
  color: #444;
  font-family: "Myriad Variable Concepté";
  font-size: 16px;
  font-weight: 400;
  height: 50px;
}

.comment-form textarea {
  height: 200px;
}

.comment-form button {
  background: #448aff;
  border: 1px solid #448aff;
  font-family: "Myriad Variable Concepté";
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  margin-top: 25px;
  cursor: pointer;
  text-transform: uppercase;
  padding: 8px 30px;
  transition: 0.3s;
}

.comment-form button:hover {
  background: #fff;
  color: #444;
  border: 1px solid #448aff;
}


/*================================================
             16. Qui Sommes-nous
==================================================*/
.who-we-are-section {
  background-color: #14213b;
  padding-top: 50px;
  padding-bottom: 50px;
}

.our-values-list {
  margin-left: 63px;
}


.liste-whoWeAre {
  margin-top: 25px;
  font-size: 18px;
}

.who-we-are-section {
  color: white;
  font-family: "Myriad Variable Concept";
}

ul.liste-whoWeAre li {
  padding-bottom: 15px;
}

.liste-our-principes-list {
  margin-left: 32px;
}

.who-we-are-section h2 {

  font-size: 36px;
  color: white;
  font-family: "Myriad Variable Concept";
}

.who-we-are-section p {

  margin-top: 25px;
  text-align: justify;
  font-size: 18px;
}

.who-we-are-section hr {
  border-top: 5px solid #448aff;
  margin: 0 auto 10px;
  width: 15%;
}


/*================================================
             Pages services
==================================================*/

.flip-card {
  background-color: transparent;
  width: 300px;
  height: 300px;
  perspective: 1000px;
  }

  .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  }

  .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
  }

  .flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  }

  .flip-card-front {
  background-color: #bbb;
  color: black;
  }

  .flip-card-back {
  background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100%) ;
  color: white;
  transform: rotateY(180deg);
  }
  

  .verticaly-center-flip{
     margin: 0;
     position: absolute;
     top: 50%;
     -ms-transform: translateY(-50%);
     transform: translateY(-50%);
     left: 0;
     right: 0;
  }


  
.align-items-center {
  align-items: center !important;
}

.justify-content-center {
  justify-content: center !important;
}

.vh-100 {
  height: 100vh !important;
}

.d-flex {
  display: flex !important;
}


.p-etape {
  font-size: 20px;
}

.header-not-fixed header {
  position: relative;
}

.text-web-page {
  font-weight: bold;
  /* text-align: center; */
}

.page-devloppement-logiciel-application {
  padding-top: 105px;
  padding-bottom: 105px;
  background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .7)), url(../images/services/dev-web-banner.png) center;
  background-size: cover;
}

.section-banner {
  margin-top: auto;
}

.demande-de-devis-btn-page {
  text-align: center;
}


.creation-site-web-banner{
	background:url(../images/services/creation-site-web-service.jpg);
  width: 100%;
  height: 450px;
  background-size: cover;
  background-repeat: no-repeat;
}



section.page-website-create {
  margin-top: 5%;
  margin-bottom: 5%;
}

.title-banner {
  position: relative;
  text-align: center;
}

.liste-check-icon {
  list-style: none;
}

.liste-check-icon li:before {
  content: '✓';
  color: #008bff;
  font-size: 30px;
}








/*blockquote p::before {
    content: "\f095"; 
    font-family: FontAwesome;
   display: inline-block;
   padding-right: 6px;
   vertical-align: middle;
  font-size: 180px;
 }*/


/*================================================
             service digital marketing
==================================================*/
.page-marketing-digital {
  padding-top: 70px;
  padding-bottom: 70px;
  background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .7)), url(../images/services/digital-marketing-banner.png) center;
  background-size: cover;
}

/*================================================
             16. CONTACT US SECTION
==================================================*/
.form-control.select {
  margin-top: 25px;
}


.contact-section {
  background-color: #14213b;
  padding-top: 50px;
  padding-bottom: 50px;
}

section.contact-section h2 {

  font-size: 36px;
}

section.contact-section p {
  margin-top: 25px;
  text-align: justify;
  font-size: 18px;
}

section.contact-section h2,
section.contact-section p {
  color: white;
  font-family: "Myriad Variable Concept";
}

.contact-form input {
  color: #444;
  font-family: "Myriad Variable Concepté";
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  margin-top: 25px;
}

.contact-form textarea {
  height: 200px;
  margin-top: 25px;
}

.contact-btn {
  text-align: center;
}

.contact-form button {
  background: #448aff;
  border: 1px solid #448aff;
  font-family: "Myriad Variable Concepté";
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  margin-top: 25px;
  cursor: pointer;
  text-transform: uppercase;
  padding: 12px 40px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #fff;
  color: #444;
  border: 1px solid #448aff;
}

.contact-form input.error {
  border: 1px solid #F00;
}

.contact-form textarea.error {
  border: 1px solid #F00;
}

.contact-form .error {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #F00;
}

.google-map-wrapper {
  padding-left: 0px;
  padding-right: 0px;
}

.text-section-top {
  font-family: "Myriad Variable Concept";
  font-size: 17px;
}

.control {
  box-sizing: border-box;
  clear: both;
  font-size: 1rem;
  position: relative;
  text-align: inherit;
}

.control.has-icons-left .icon.is-left {
  left: 0;
}

.icon-of-select {
  top: -2px !important;
}

.control.has-icons-left .icon,
.control.has-icons-right .icon {
  color: #008bff;
  height: 2.5em;
  pointer-events: none;
  position: absolute;
  top: 4px;
  width: 2.5em;
  z-index: 4;
}



.icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  height: 1.5rem;
  width: 1.5rem;
}

.control.has-icons-left .input,
.control.has-icons-left .select {
  padding-left: 2.5em;
}

/*================================================
             17. FOOTER SECTION
==================================================*/

.footer-demo-section {
  padding-top: 50px;
  padding-bottom: 30px;
}

.footer-demo-text p {
  font-size: 16px;
  font-family: "Myriad Variable Concepté";
  text-align: center;
  font-weight: 400;
  color: #333;
}

.footer-demo-text p a {
  color: #448aff;
}

.footer-section {
  background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .6)), url(../images/footer/footer-bg.jpg);
  padding-bottom: 60px;
  padding-top: 100px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  /* or any other position like top, bottom, left, right */
  background-size: cover;
}

.footer-text img {
  padding-bottom: 15px;
}

.footer-text p {
  /* color: #fff; */
  font-family: "Myriad Variable Concepté";
  font-size: 15px;
  font-weight: 300;
  line-height: 28px;
  /* padding-bottom: 10px; */
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.footer-text h5 {
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 20px;
  /* color: #fff; */
  font-weight: 500;
  margin-bottom: 15px;
}

.footer-text a {
  background: none;
  border: 1px solid #fff;
  /* color: #000; */
  font-size: 21px;
  margin-right: 5px;
  padding: 2px 9px;
  border-radius: 50%;
}

.footer-text a:hover {
  background: #448aff;
  border: 1px solid #448aff;
  transition: 1s;
  color: #fff;
}

.footer-list h5 {
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 20px;
}

.footer-list ul {
  padding-left: 15px;
  list-style: none;
}

.footer-list ul li:before {
  content: "•";
  color: #fff;
  display: inline-block;
  width: 12px;
  margin-left: -1em
}

.footer-list ul li a {
  color: #fff;
  font-family: "Myriad Variable Concepté";
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
  padding-bottom: 10px;
}

.footer-list a p {
  font-size: 12px;
}

.footer-item {
  padding-top: 20px;
}

.footer-item h5 {
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 20px;
  /* color: #000; */
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 20px;
}

.footer-item ul {
  list-style: none;
  padding-left: 15px;
}

.footer-item ul li {
  padding-bottom: 16px;
  font-family: "Myriad Variable Concepté";
}

.footer-item ul li:before {
  content: "•";
  color: #fff;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.footer-item ul li a {
  color: #fff;
  font-family: "Myriad Variable Concepté";
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
}

.footer-address h5 {
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 24px;
  color: #000000;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
}

.footer-icon i {
  float: left;
  font-size: 25px;
  padding-top: 3px;
}

.footer-details {
  padding-left: 45px;
}

.footer-details p {
  font-family: "Myriad Variable Concepté";
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  padding-bottom: 10px;
}

.position-relative {
  position: relative !important;
}



i.fa-facebook.fb-icon,
i.fa-facebook-f.fb-icon {
  background: #3B5998;
  padding: 10px;
  border-radius: 6px;
  margin-left: 3px;
}

i.fa-linkedin-in.linkedin-icon {
  background: #0077B5;
  padding: 10px;
  border-radius: 6px;
  margin-left: 3px;
}

a.header-linkedin-link {
  margin-left: 4px;
}

.site-social-icons {
  display: flex;
}


.header-top-info .site-social-icons a svg {
  max-width: 18px;
  width: 18px;
  height: 18px;
}

.header-top-info .site-social-icons a {
  font-size: 13px;
  display: flex;
  align-items: center;
  margin-left: unset;
  margin-right: 15px;
}

.span-a svg {
  width: 17px;
  color: #019efc;
  margin-right: 8px;
}






.header-top-info.text-right-info {
  text-align: right;
}

.header-top-info.text-right-info a {
  font-size: 17px;
  background: #008bff;
  color: #fff;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 3px;
}

.header-top-info.text-right-info a span {
  font-family: "Myriad Variable Concept", sans-serif;
  font-size: 13px;
  color: #fff;
}

.header-top-info a .fa-phone-alt {
  font-family: "Myriad Variable Concept", sans-serif;
  color: white !important;
  font-size: 13px !important;
}

.span-aa svg {
  width: 14px;
  margin-right: 4px;
  max-width: 14px;
}

svg:not(:root) {
  overflow: hidden;
}

.two {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff !important;
  a {
    color: #fff !important;
  }
}

.header-top-info a {
  font-family: "Myriad Variable Concept";
  color: #fff;
  font-weight: bold;
}

.header-icone {
  display: flex;
  align-items: center;
  height: 100%;
}

li.nav-item-devis {
  background: #008bff;
  padding-left: 0 !important;
  width: 8%;
  text-align: center;
  margin-left: 15px;
}

a.link-nav-devis {
  color: white !important;
  font-weight: bold !important;
  /* padding-left: 0 !important; */
}


.header-top-info .span-a {
  font-family: "Myriad Variable Concept";
  font-size: 13px;
  color: #fff;
  font-weight: bold;
  margin-right: 20px;
  display: flex;
}

.header-bar-section {
  background: #14213b;
  border-bottom: 1px solid #f6f7f8;
  padding: 10px 0;
  display: block;
  padding-top: 10px;
}





.whatsapp-icon-footer-link {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  transition: bottom 0.8s, right 0.3s;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.whatsapp-icon-footer-link.hidden {
  bottom: 100px;
  /* Adjust as needed */
  right: 24px;
  /* Adjust as needed */
}

.whatsapp-icon-footer {
  margin-top: 16px;
}




.no-padding-left {
  padding-left: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.map-section {
  margin-top: 50px !important;
  background-color: #f9f9f9;
  padding: 0;
}
.map-section h2 {
  text-align: center;
  color: #333;
}

.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-container {
  position: relative;
  padding-bottom: 56.25%; /* Aspect ratio 16:9 */
  overflow: hidden;
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-address{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 5px 0px 30px;
}



/************
  footer custom
************/
@import url("https://fonts.googleapis.com/css?family=Lato:400,400i,700");

body {
  --col-deepblue: #4478e3;
}
footer a {
  color:#fff;
  text-decoration:none;
}
footer {
  width:100vw;
  position:relative;
  bottom:0px;
  padding-top: 50px;
  background: #14213b;
  color : #fff !important;
}
footer div {
  /* background-color: var(--col-deepblue); */
  margin: -5px 0px 0px 0px;
  padding:0px;
  /* color: #000; */
  text-align:center;
}
svg {
  width:100%;
  overflow:visible;
}

.wave {
  animation: wave 3s linear;
  animation-iteration-count:infinite;
  fill: #4478e3;
}
.drop {
  fill: var(--col-deepblue);
  xfill: #99000055;
  animation: drop 3.2s linear infinite normal;
  stroke: var(--col-deepblue);
  stroke-width:0.5;
  transform: translateY(25px) ;
  transform-box: fill-box;
  transform-origin: 50% 100%;
}
.drop1 {
  
}
.drop2 {
  animation-delay: 3s;
  animation-duration:3s;
}
.drop3 {
  animation-delay: -2s;
  animation-duration:3.4s;
}
.drop4 {
  animation-delay: 1.7s;
}
.drop5 {
  animation-delay: 2.7s;
  animation-duration:3.1s;
}
.drop6 {
  animation-delay: -2.1s;
  animation-duration:3.2s;
}
.gooeff {
  	filter: url(#goo);
}
#wave2 {
  animation-duration:5s;
  animation-direction: reverse;
  opacity: .6
}
#wave3 {
  animation-duration: 7s;
  opacity:.3;
}
@keyframes drop {
  0% {
    transform: translateY(25px); 
  }
  30% {
    transform: translateY(-10px) scale(.1);
  }
  30.001% {
    transform: translateY(25px) scale(1); 
  }
  70% {
    transform: translateY(25px); 
  }
  100% { 
    transform: translateY(-10px) scale(.1);  
  }
}
@keyframes wave {
  to {transform: translateX(-100%);}
}





/************
  Responsive
************/




@media (max-width: 575.98px) {}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {

  .container-nav-tablet {
    width: 800px;
  }

  .img-logo {
    margin-top: 10px;
  }

  .no-padding-right-tablet {
    padding-right: 0 !important;
  }

  .header-bar-section {
    background: #14213b;
    border-bottom: 1px solid #f6f7f8;
    padding: 3px 0;
    display: block;
    padding-top: 12px;
  }

  .header-icone .two {
    display: inline-block;
  }

  .header-top-info .span-a {
    margin-bottom: 1px;
  }

  span.span-a.social-media {
    text-align: right;
    float: right;
  }

  .header-icone {
    display: block;
  }
}


@media (min-width: 818px) and (max-width: 833px) {
  .container-nav-tablet {
    width: 742px;
  }

  .img-logo {
    margin-top: 13px;
  }

  .market-menu-area ul li {
    display: inline-block;
    padding-left: 12px;
    position: relative;
  }

  .header-nav li a {
    font-size: 14px;
  }

}

@media (min-width: 776px) and (max-width: 819px) {
  .container-nav-tablet {
    width: 671px;
  }

  .market-menu-area ul li {
    padding-left: 8px !important;
  }

  .header-nav li a {
    font-size: 14px;
  }

}

@media (min-width: 768px) and (max-width: 775px) {
  .container-nav-tablet {
    width: 751px;
  }

  .market-menu-area ul li {
    padding-left: 7px !important;
  }

  .header-nav li a {
    font-size: 15px;
  }
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {}


/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}



/**************************************************/
.structure-wave {
  background-color: #eefafb;
  padding-top: 40px;
  padding-bottom: 90px;
}
.card-flipped{
  border: none;
}
.flip-card {
  background-color: transparent;
  width: 300px;
  height: 300px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  /* box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); */
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

  a {
    color: #fff !important
  }
  a:hover {
    color: #017781 !important;
    text-decoration-line: underline;
  }
}

.flip-card-front {
  background-color: #bbb;
  color: black;
}


section.section.intro {
    color: #007bff;
}

.flip-card-back {
  background-color: #14213b;
  color: white;
  transform: rotateY(180deg);

  ul {
    text-align: start;
    line-height: 3.5;
    font-size: 14px;
  }
}