/* ==========================================================================
1. IMPORT GOOGLE FONTS
========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Red+Hat+Text:wght@400;700&display=swap');

@font-face {
  font-family: Arial, Helvetica, sans-serif;
  src: local("Helvetica"),
        local("Arial");
}
@font-face {
  font-family: Arial, Helvetica, sans-serif;
  src: local("Helvetica Bold"),
        local("Arial Bold");
  font-weight: 700;
}
/* ==========================================================================
2. GENERAL
========================================================================== */
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #546E7A;
  font-size: 16px;
  font-weight: 400;
  background: #fff;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

p {
  font-size: 16px;
  color: #546E7A;
  line-height: 26px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 0;
}

a:hover,
a:focus {
  color: #3A7BFF;
}

a {
  color: #3A7BFF;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Red Hat Text', Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #263238;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

a:not([href]):not([tabindex]) {
  color: #fff;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: #fff;
}

.bg-transparent {
  background: transparent !important;
}

.bg-defult {
  background: #3A7BFF !important;
}

.font-bold {
  font-weight: 700;
}


.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

.lni-rocket {
  transform: scaleX(-1);
}

/* ==========================================================================
2.1 Section Title
========================================================================== */
.section {
  padding: 80px 0;
}

.section-header {
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.section-header .section-title {
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: 'Red Hat Text', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #263238;
  position: relative;
}

.section-header .section-title:after {
  content: '';
  width: 80px;
  height: 2px;
  background: #3A7BFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: flex;
  margin: auto;
}

/* .section-header span {
  font-size: 60px;
  color: rgba(0, 0, 0, 0.07);
  z-index: 2;
  font-family: 'Red Hat Text', Arial, Helvetica, sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
} */

/* ==========================================================================
2.2 Buttons
========================================================================== */
.btn {
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 3px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.btn:focus,
.btn:active {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  color: #fff;
}

.btn-common {
  background-color: #3A7BFF;
  position: relative;
  z-index: 1;
  padding: 12px 32px;
  border-radius: 3px;
}

.btn-common:hover {
  color: #fff;
}

.btn-effect {
  overflow: hidden;
}

.btn-effect:after {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-effect:hover:after {
  width: 100%;
}

.btn-border {
  border-style: solid;
  border-width: 2px;
  cursor: pointer;
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-border:hover {
  color: #ffffff;
  border-color: #3A7BFF;
  background-color: #3A7BFF;
}

.btn-lg {
  padding: 14px 33px;
  text-transform: uppercase;
  font-size: 16px;
}

.btn-rm {
  color: #6d8ba3;
  padding: 10px 0;
  text-transform: none;
  font-size: 16px;
}

.btn-rm:hover {
  color:#3a7afe;
  padding: 10px 0;
  text-transform: none;
  font-size: 16px;
}

button:focus {
  outline: none !important;
}

.clear {
  clear: both;
}


/* ==========================================================================
2.4  Pre Loader
========================================================================== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #263238;
  z-index: 9999999999;
}

.spinner {
  width: 40px;
  height: 40px;
  top: 45%;
  position: relative;
  margin: 0px auto;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #3A7BFF;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* ========================================================================== 
-2.5 Scroll To Up 
========================================================================== */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 15px;
}

.back-to-top i {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 30px;
  background-color: #3A7BFF;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #091A3A;
  opacity: 0.5;
  filter: alpha(opacity=80);
}

/* ==========================================================================
Navbar Style
========================================================================== */
.navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navigation.navigation-two {
  background-color: #fff;
}

.navigation.sticky {
  position: fixed;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
}

.navbar {
  padding: 15px 0;
}

.navbar-toggler {
  padding: 0;
}

.navbar-brand img {
  max-width: 150px;
  width: 100%;
}

.navbar-brand-light {
  display: inline-block;
}

.navbar-brand-dark {
  display: none;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 6px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 8;
    padding: 5px 16px;
    -webkit-box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 8;
    padding: 5px 16px;
    -webkit-box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
  }
}

.navbar-nav .nav-item a {
  color: #fff;
  font-size: 14px;
  padding: 5px 0px;
  margin-left: 30px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a {
    color: #212121;
    display: block;
    padding: 4px 0;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a {
    color: #212121;
    display: block;
    padding: 4px 0;
    margin-left: 0;
  }
}

.navbar-nav .nav-item a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #3A7BFF;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a::before {
    display: none;
  }
}

.navbar-nav .nav-item:hover a, .navbar-nav .nav-item.active a {
  color: #3A7BFF;
}

.navbar-nav .nav-item:hover a::before, .navbar-nav .nav-item.active a::before {
  width: 50%;
}

.navigation-two .navbar-toggler .toggler-icon {
  background-color: #212121;
}

.navigation-two .navbar-nav .nav-item a {
  color: #212121;
}

.sticky .navbar-toggler .toggler-icon {
  background-color: #212121;
}

.sticky .navbar-nav .nav-item a {
  color: #212121;
}

/* ==========================================================================
Hero Area
========================================================================== */
.hero-area {
  background: url(../img/bg/bg.png) no-repeat;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hero-area .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #091A3A;
  opacity: 0.7;
}

.hero-area .contents {
  padding: 160px 0 140px;
  text-align: left;
}

.hero-area-2 .form-wrapper {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin-top: 20%;
  margin-bottom: 10%;
}

.form-wrapper h3 {
  font-size: 26px;
}

.form-group {
  margin-bottom: 0em;
}

.form-group-name {
  display:flex;
  flex-direction: row;
  justify-content: space-between;
}

.form-group-name input {
  width: 47%;
}

.form-wrapper .form-group-rgpd input {
  width: 30px;
  margin: 5px;
}

.form-wrapper .form-group-rgpd {
  display: flex;
  flex-direction: row;
  color: black;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .contents {
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .hero-area .contents {
    padding-bottom: 30px;
  }
}

.hero-area .contents h2 {
  color: #fff;
  font-size: 52px;
  font-weight: 300;
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .contents h2 {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .hero-area .contents h2 {
    font-size: 36px;
  }
}

.hero-area .contents h4 {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 20px;
}

.hero-area .contents p {
  color: #fff;
  font-size: 15px;
  line-height: 26px;
}

.hero-area .contents .btn {
  margin-top: 40px;
  text-transform: uppercase;
}

.hero-area .banner_bottom_btn {
  margin-top: 40px;
}

.hero-area .banner_bottom_btn i {
  color: #fff;
  font-size: 48px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.hero-area .banner_bottom_btn i:hover {
  color: #3A7BFF;
}

.intro-img {
  padding: 148px 0 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .intro-img {
    padding: 30px 0 50px;
  }
}

@media (max-width: 767px) {
  .intro-img {
    padding: 30px 0 50px;
  }
}

.intro-img img {
  display: block;
  height: auto;
  max-width: 100%;
}

/* ==========================================================================
Hero Production version
========================================================================== */
.hero-area-2 {
  background: url(../img/bg/bg.png) no-repeat;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hero-area-2 .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #091A3A;
  opacity: 0.8;
}

.hero-area-2 .contents {
  padding: 160px 0 140px;
  width: 100%;
}

.hero-area-2 .contents h3 {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
}

.hero-area-2 .contents h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 700;
}

.hero-area-2 .contents h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-area-2 .contents p {
  font-size: 16px;
  color: #fff;
  line-height: 26px;
}

.hero-area-2 .contents .header-button {
  margin-top: 30px;
}

.hero-area-2 .contents .btn {
  margin: 10px 0 10px 0;
  text-transform: uppercase;
}

.hero-area-2 .contents .tag-type ul {
  position: relative;
}

.hero-area-2 .contents .tag-type ul li {
  display: inline-block;
  padding: 10px;
  position: relative;
}

.hero-area-2 .contents .tag-type ul li a {
  color: #fff;
  text-transform: uppercase;
}

.hero-area-2 .contents .tag-type ul li:before {
  content: '';
  width: 4px;
  height: 4px;
  background: #fff;
  position: absolute;
  top: 19px;
  right: -5px;
  border-radius: 50%;
}

.hero-area-2 .contents .tag-type ul li:before:last-child {
  display: none;
}

.hero-area-2 .contents .tag-type ul li:last-child:before {
  background: transparent;
}

.hero-area-2 .contents .tag-type ul:before {
  content: '';
  width: 40px;
  height: 1px;
  background: #f1f1f1;
  position: absolute;
  top: 20px;
  margin-left: -45px;
}

.hero-area-2 .contents .tag-type ul:after {
  content: '';
  width: 40px;
  height: 1px;
  background: #f1f1f1;
  position: absolute;
  top: 20px;
  margin-left: 6px;
}

.hero-area-2 .contents .arrow-down-icon {
  border: 2px solid #fff;
  width: 42px;
  height: 42px;
  line-height: 42px;
  margin: 30px auto;
  border-radius: 50%;
  font-size: 18px;
}

.hero-area-2 .contents .arrow-down-icon a {
  color: #fff;
}

/* ==========================================================================
About Section Style
  ========================================================================== */
#expertise {
  position: relative;
  background: #EDF3F9;
}

#expertise .box-item {
  padding: 25px 0;
}

#expertise .box-item .icon {
  float: left;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#expertise .box-item .icon i {
  color: #3A7BFF;
  display: inline-block;
  font-size: 36px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#expertise .box-item .text {
  margin-left: 64px;
}

#expertise .box-item .text h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #3a7afe;
}

#expertise .box-item .text p {
  font-size: 16px;
  line-height: 26px;
}
#expertise .show-box-about {
  text-align: center;
}

#expertise .show-box img {
  width: 50%;
}

/* ==========================================================================
About Area
========================================================================== */
#about-area .about-thumb {
  position: relative;
  z-index: 1;
  margin-left: 80px;
  margin-top: 60px;
}

#about-area .about-thumb img {
  width: 100%;
  height: auto;
}

#about-area .about-thumb-2 {
  position: absolute;
  z-index: 5;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* ==========================================================================
Offre Section Style
  ========================================================================== */
#offre {
  padding-bottom: 20px;
}

#offre .section-subtitle {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #3a7afe;
}

#offre .offre-subtitle .icon {
  color: #3A7BFF;
  display: inline-block;
  font-size: 36px;
  margin-right: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#offre .offre-subtitle {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

#offre .offre-subtitle p {
  align-self: center;
}
/* ==========================================================================
Risque Section Style
  ========================================================================== */
  #risque, #offre-2 {
    position: relative;
    background: #fff;
    padding-top: 40px;
  }
  
  #risque .box-item, #offre-2 .box-item {
    padding: 15px 0;
  }
  
  #risque .box-item .icon, #offre-2 .box-item .icon {
    float: left;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  #risque .box-item .icon i, #offre-2 .box-item .icon i {
    color: #3A7BFF;
    display: inline-block;
    font-size: 36px;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  #risque .box-item .text, #offre-2 .box-item .text {
    margin-left: 64px;
  }
  
  #risque .box-item .text h4, #offre-2 .box-item .text h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #3a7afe;
  }
  
  #risque .box-item .text p, #offre-2 .box-item .text p  {
    font-size: 16px;
    line-height: 26px;
  }
  
  #risque .show-box img, #offre-2 .show-box img {
    width: 100%;
  }
  
  /* ==========================================================================
  risque Area
  ========================================================================== */
  #risque-area .risque-thumb {
    position: relative;
    z-index: 1;
    margin-left: 80px;
    margin-top: 60px;
  }
  
  #risque-area .risque-thumb img {
    width: 100%;
    height: auto;
  }
  
  #risque-area .risque-thumb-2 {
    position: absolute;
    z-index: 5;
    left: 5%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

/* ==========================================================================
Clients 
========================================================================== */
#clients {
  background: #fff;
  padding: 40px 0px;
}

.clients-subtitle {
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  color: #546E7A;
}

#clients .client-item-wrapper {
  text-align: center;
  margin: 0 5px;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#clients .client-item-wrapper img {
  max-width: 100%;
  width: 200px;
}

#clients #clients-scroller img:hover {
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  opacity: 1.0;
}

#clients #clients-scroller .owl-pagination {
  display: none;
}

/* ==========================================================================
call to action
========================================================================== */
#cta {
  background: url(../img/bg/bg-cta.jpg) fixed;
  background-size: cover;
  position: relative;
}

#cta h5 {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #cta h5 {
    font-size: 28px;
    line-height: 38px;
  }
}

@media (max-width: 767px) {
  #cta h5 {
    font-size: 26px;
    line-height: 34px;
  }
}

#cta .btn {
  margin: 30px 10px;
}

.call-action {
  background: #EDF3F9;
}

.call-action .cta-trial h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.call-action .cta-trial p {
  margin-bottom: 30px;
}

/* ==========================================================================
Service Style
========================================================================== */

/* Services Item */
.item-boxes {
  padding: 30px;
  border-radius: 4px;
  border: 1px solid #eaeaea;
  margin: 15px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 335px;
}

.item-boxes .icon i {
  font-size: 30px;
  line-height: 60px;
  color: #3A7BFF;
}

.item-boxes h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3a7afe;
}

.item-boxes p {
  margin: 0;
}

.item-boxes:hover {
  background: transparent;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(84, 110, 122, 0.35);
          box-shadow: 0px 10px 50px 0px rgba(84, 110, 122, 0.35);
}

.services-item {
  padding: 30px 15px;
  background: #fff;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.services-item .icon {
  margin-bottom: 20px;
}

.services-item .icon i {
  width: 60px;
  height: 60px;
  background: #EDF3F9;
  display: inline-block;
  line-height: 60px;
  font-size: 24px;
  text-align: center;
  border-radius: 50%;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.services-item .color-1 i {
  background: #FAE3E3;
  color: #D82928 !important;
}

.services-item .color-2 i {
  background: #E6F8ED;
  color: #57D283 !important;
}

.services-item .color-3 i {
  background: #E3EAFA;
  color: #457BF4 !important;
}

.services-item .color-4 i {
  background: #F3EAD6;
  color: #f1a90a !important;
}

.services-item .color-5 i {
  background: #E7E6FF;
  color: #7271FF !important;
}

.services-item .color-6 i {
  background: #DEDEDE;
  color: #35393D !important;
}

.services-item .services-content {
  padding-left: 65px;
}

.services-item .services-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}

.services-item .services-content h3 a {
  color: #272727;
}

.services-item .services-content h3 a:hover {
  color: #3A7BFF;
}

.services-item:hover {
  -webkit-box-shadow: 0px 10px 50px 0px rgba(84, 110, 122, 0.35);
          box-shadow: 0px 10px 50px 0px rgba(84, 110, 122, 0.35);
}

.services-item:hover .icon i {
  background: transparent;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.featured-bg {
  background: #fafafa;
}

.featured-bg .intro-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.featured-bg .title-sub {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 36px;
}

.featured-bg .intro-desc {
  margin-bottom: 20px;
}

.featured-bg .featured-item {
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.featured-bg .featured-item .icon {
  float: left;
  padding-right: 15px;
}

.featured-bg .featured-item .icon i {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  color: #3A7BFF;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.featured-bg .featured-item h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
}

.featured-bg .featured-item h3 a {
  color: #272727;
}

.featured-bg .featured-item h3 a:hover {
  color: #3A7BFF;
}

/* ==========================================================================
Featured Section Start
========================================================================== */
.featured-box {
  margin-top: 15px;
  margin-bottom: 15px;
}

.featured-box .featured-icon {
  float: left;
}

.featured-box .featured-icon i {
  font-size: 30px;
  color: #3A7BFF;
  text-align: center;
  float: left;
  margin-right: 25px;
  margin-bottom: 85px;
  display: block;
}

.featured-box .featured-content {
  padding-left: 40px;
  position: relative;
}

.featured-box .featured-content .icon-o {
  font-size: 86px;
  color: rgba(0, 0, 0, 0.07);
  z-index: 2;
  font-weight: 400;
  text-transform: capitalize;
  position: absolute;
  top: 0px;
  left: 50px;
  width: 100%;
}

.featured-box .featured-content h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.featured-box .featured-content p {
  font-size: 16px;
}

/* ==========================================================================
Features two section
========================================================================== */
@media (min-width:1024px) {
  #dispositif .col-lg-6.col-md-5.col-sm-12, #dispositif .col-lg-6.col-md-7.col-sm-12 {
    margin-bottom: 60px;
  }
}

#dispositif .col-lg-6.col-md-7.col-sm-12 {
  display: flex;
  align-items: center;
}

#dispositif h3 {
  font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #3a7afe;
}

#dispositif .img-fluid {
  width: 80%;
}

#dispositif .dispositif_img-left div{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#dispositif .dispositif_img-leftMobile {
  display:none;
}

#dispositif .section-header {
  margin-bottom: 70px;
}

/* ==========================================================================
Testimony Section
========================================================================== */


/* .testimonial {
  background: #EDF3F9;
}

#testimony .container .row {
  position: relative;
  overflow: hidden;
}

#testimonials {
  display: flex;
  transition: 1s linear;
}

.testimony-subtitle {
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  color: #546E7A;
  padding-left: 15px;
}

.item {
  flex: 1 0 100%;
  position: relative;
}

.testimonial-item {
  min-height: 280px;
  padding: 30px;
  margin: 15px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-item .author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.testimonial-item .author .author-info {
  float: left;
  padding: 3px 0;
}

.testimonial-item .author .author-info h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 0;
}


.testimonial-item .content-inner {
  overflow: hidden;
}

.testimonial-item .content-inner .description {
  width: 100%;
  margin-bottom: 10px;
}

.testimonial-item .content-inner span {
  color: #F97794;
} */
.testimonials {
  background: #EDF3F9;
}
.testimony-subtitle {
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  color: #546E7A;
  padding-left: 15px;
  padding-top: 50px;
}

#customers-testimonials .item {
	text-align: left;
	padding: 20px;
	margin-bottom: 50px;
	opacity: .2;
	-webkit-transform: scale3d(0.8, 0.8, 1);
	transform: scale3d(0.8, 0.8, 1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  
}
#customers-testimonials .owl-item.active.center .item {
	opacity: 1;
	-webkit-transform: scale3d(1.0, 1.0, 1);
	transform: scale3d(1.0, 1.0, 1);
}

.author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.author .author-info {
  float: left;
  padding: 3px 0;
}

.author .author-info h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 0;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span, #customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
	background: #4280bd;
	transform: translate3d(0px, -50%, 0px) scale(0.6);
}
#customers-testimonials.owl-carousel .owl-dots {
	display: inline-block;
	width: 100%;
	text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot {
	display: inline-block;
	outline: none;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
	background: #fff;
	display: inline-block;
	height: 20px;
	margin: 0 2px 5px;
	transform: translate3d(0px, -50%, 0px) scale(0.3);
	transform-origin: 50% 50% 0;
	transition: all 250ms ease-out 0s;
	width: 20px;
	border-radius: 100%;
}
.item .content-inner span {
  color: #F97794;
}

.owl-item.cloned {
  width: 450px;
}


/* ==========================================================================
Projet
========================================================================== */
#projet {
  padding-top: 0px;
}

#projet h3 { 
  font-weight: 700;
  font-size: 24px;
  line-height: 22px;
  color: #546E7A;
  text-align: center;
}

/* ==========================================================================
Contact Us
========================================================================== */
.form-control {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  padding: 12px 30px;
  font-size: 15px;
  border-radius: 3px;
  border: 1px solid transparent;
  background: #f5f5f5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.form-control:focus {
  border: 1px solid #3A7BFF;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn.disabled,
.btn:disabled {
  opacity: 1;
}

textarea {
  border-radius: 4px !important;
}

.contact-info {
  margin-bottom: 15px;
}

.contact-info i {
  font-size: 20px;
  color: #3A7BFF;
}

.contact-info h5 {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 500;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 0;
}

#contact {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

#contact .contact-block {
  overflow: hidden;
}

@media (max-width: 767px) {
  #contact .contact-block {
    margin-bottom: 40px;
  }
}

.text-danger {
  font-size: 14px;
  margin-top: 10px;
}

.list-unstyled li {
  color: #d9534f;
}


/* ==========================================================================
Footer Style
========================================================================== */
.block-title {
  font-size: 14px;
  font-weight: 500;
  color: #263238;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
}

footer .footer-Content {
  background-color: #ffffff;
  padding: 60px 0 20px;
  color: #546E7A;
}

.textwidget {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}

.textwidget p {
  color: #546E7A;
}

footer .menu {
  padding-left: 0;
}

footer .menu li {
  padding-bottom: 12px;
}

footer .menu li a {
  color: #546E7A;
}

footer .menu li a:hover {
  color: #3A7BFF;
}

.contact-footer {
  margin: 0;
  padding: 0;
  display: inline-block;
}

.contact-footer li {
  padding: 3px 0;
  margin-bottom: 15px;
}

.contact-footer li strong {
  float: left;
}

.contact-footer li span {
  margin-left: 73px;
  display: block;
}

.contact-footer li span a {
  color: #546E7A;
}

.contact-footer li span a:hover {
  color: #3A7BFF;
}

.instagram-footer {
  padding: 0;
}

.instagram-footer li {
  display: block;
  width: 33%;
  float: left;
  padding: 0 5px 5px 0;
  margin: 0;
}

.instagram-footer li a img {
  width: 100%;
}

.footer-social li {
  display: inline-block;
  margin-right: 12px;
}

.footer-social li a {
  background-color: #3A7BFF;
  border-radius: 50%;
  color: #fff;
  height: 32px;
  line-height: 32px;
  text-align: center;
  width: 32px;
  display: inline-block;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.footer-social li .facebook:hover {
  background-color: #3b5998;
}

.footer-social li .twitter:hover {
  background-color: #55acee;
}

.footer-social li .linkedin:hover {
  background-color: #007bb5;
}

.footer-social li .google-plus:hover {
  background-color: #dd4b39;
}

#copyright {
  background-color: #ffffff;
  padding: 20px 0 10px;
  border-top: 1px solid #eaeaea;
  color: #546E7A;
}

#copyright p {
  margin-bottom: 0;
  line-height: 40px;
}

#copyright p a {
  color: #546E7A;
}

#copyright p a:hover {
  color: #3A7BFF;
}

#copyright .nav-inline .nav-link {
  color: #546E7A;
  padding: 10px 0;
  margin-left: 10px;
}

#copyright .nav-inline .nav-link:hover {
  color: #3A7BFF;
}
/* ==========================================================================
Cookie bar Style
========================================================================== */
.notification-bar {
  padding: 10px 15px;
  position: fixed;
  bottom: 4.4vh;
  background-color: #f9f9f9;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  max-width: 700px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
}
.notification-bar.active {
  opacity: 1;
  visibility: visible;
}
.notification-bar .notification-text {
  font-size: 0.94rem;
  padding-right: 30px;
  color: inherit;
}
.notification-bar .notification-link {
  display: inline-block;
  font-weight: 600;
}
.notification-bar .clb-close {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 30px;
  text-align: center;
}
.notification-bar .clb-close::before {
  height: 46px;
  width: 46px;
}
.btn-round .ion, .btn-round i {
  width: 56px;
  height: 56px;
  text-align: center;
  font-size: 20px;
  position: relative;
  z-index: 1;
  font-style: inherit;
  -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  color: #3a7afe;
  cursor: pointer;
}

.notification-agreed {
  padding-top: 3px;
  width: 50%;
  background-color: #3a7afe;
  height: 30px;
  margin: 10px auto;
  cursor: pointer;
}

/* ==========================================================================
Counter Section Style
========================================================================== */
.counters {
  background: url(../img/bg/bg-counter.jpg) fixed;
  position: relative;
  padding: 50px 0;
}

.counters .facts-item {
  text-align: center;
  color: #fff;
  border: 1px dotted #fff;
  border-radius: 4px;
  padding: 30px;
}

.counter-subtitle {
  color:#fff;
}

.counters .facts-item:nth-child(2n+1) {
  margin-top: 26px;
}

.counters .facts-item .icon {
  margin-bottom: 15px;
}

.counters .facts-item .icon i {
  font-size: 40px;
  color: #fff;
}

.counters .facts-item .fact-count h3 {
  font-size: 32px;
  color: #fff;
  font-weight: 400;
  line-height: 40px;
}

.counters .facts-item .fact-count h4 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
}

.counter-item {
  text-align: center;
  padding: 30px;
  background: #EDF3F9;
  border: 1px solid #eaeaea;
  margin: 15px 0;
}

.counter-item .icon {
  margin-bottom: 20px;
}

.counter-item .icon i {
  font-size: 40px;
  color: #3A7BFF;
}

.counter-item .fact-count h3 {
  font-size: 50px;
  font-weight: 500;
  line-height: 60px;
}

.counter-item .fact-count h4 {
  font-size: 18px;
  margin-bottom: 0;
}

.legals {
  margin-top: 40px;
}

.legals h2 {
  margin-top: 20px;
  margin-bottom: 20px;
}