@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

html,
body {
  height: 100%;
  background-color: #0D1F3C;
  font-family: 'Titillium Web', sans-serif;
}

section {
  width: 100%;
}

input {
  border-radius: 50px 0 0 20px;
}

section#payments {
  color: #fff;
  position: relative;
}

section#payments canvas {
  position: absolute;
  top: 0;
}

section#payments .container {
  position: relative;
  text-align: center;
  z-index: 10;
}

a,
a:hover {
  color: white;
  text-decoration: none;
}

form select {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #ced4da;
  background-color: #D6E4FC;
}

form input {
  background-color: #D6E4FC;

}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 60%;

}

.input-group-btn .btn {
  min-height: 50px;
  border-radius: 0 50px 50px 0;
  background: #347AF0;
  color: #fff;
}

.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
}

.logo {
  display: flex;
  margin-bottom: 3rem;
}

.logo h5 {
  margin: 0.3rem;
}
.text-gray{
  color: #a19f9f !important;
  font-size:  14px !important;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  color: white;
  margin-top: 1.5rem;
}

@keyframes animatedBackground {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 50% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.image-hero {
  background-image: url('../images/imagePrincip.svg');
  background-position: left 0.4rem top 1rem;
  background-repeat: no-repeat;
  background-size: 127%;

}

#hero .container-fluid {
  padding-left: 6rem;
  padding-right: 6rem;
}

#hero h1 {
  margin: 0;
  font-size: 67px;
  font-weight: 900;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;

}

#hero .img-fluid {
  max-width: 100%;
  /* height: 100%; */
}

#hero h2 {
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero ul {
  margin-top: 15px;
  list-style: none;
  padding: 0;
}

#hero ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

#hero ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #5a5af3;
}

#hero .btn-get-started,
#hero .btn-get-quote {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 30px 9px 30px;
  margin-bottom: 15px;
  border-radius: 3px;
  transition: 0.5s;
  border-radius: 50px;
}

#hero .btn-get-started {
  background: #5a5af3;
  color: #fff;
  border: 2px solid #5a5af3;
  margin-right: 10px;
}

#hero .btn-get-started:hover {
  background: #7272f5;
  border-color: #7272f5;
}

#hero .btn-get-quote {
  color: #5a5af3;
  border: 2px solid #5a5af3;
}

#hero .btn-get-quote:hover {
  background: #5a5af3;
  color: #fff;
}

#hero form select {
  padding: 9px;
  background-color: #D6E4FC;
}

#hero form input {
  background-color: #D6E4FC;

}

@media (min-width: 1024px) {
  #hero {
    /* background-attachment: fixed; */
  }
}

@media (max-width: 991px) {
  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero {
    text-align: center;
  }

  #hero ul {
    text-align: left;
    font-size: 14px;
  }

  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started,
  #hero .btn-get-quote {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 30px 0 40px;
  background: #F8F8F8;
  align-items: center;
}

.counts .col-md-2 {
  height: 180px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #5a5af3;
  color: #fff;
  border-radius: 50px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #0c0ca8;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

.titre {
  margin-bottom: 3rem;
  font-style: normal;
  font-weight: 700;
  font-size: 49px;
  line-height: 120%;
  background: linear-gradient(112.33deg, #347AF0 6.16%, rgba(242, 0, 116, 0.81) 110.77%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}



.download {
  background-color: #0D1F3C;
  color: white;
  padding-bottom: 7rem;
  padding-top: 7rem;
}

h5, .logo-name {
  font-weight: 600;
  font-size: 31px;
  line-height: 120%;
}

.download p {
  font-weight: 400;
  font-size: 17px;
  line-height: 120%;
}

@font-face {
  font-family: "fontfutura";
  src: url("https://fonts.googleapis.com/css?family=Open+Sans") format("ttf");
  font-weight: normal;
  font-style: normal;
}

a.btn-google {
  color: #fff
}

.download .btn {
  font-size: 18px;
  line-height: 1.3333333;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  font-weight: 500;
  text-decoration: none;
  display: inline-block
}

.download .btn:active:focus,
.btn:focus {
  outline: 0
}

.download .btn:focus,
.btn:hover {
  color: #333;
  text-decoration: none;
  outline: 0
}

.download .btn:active {
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn-google {
  color: #fff;
  background-color: #111;
  border-color: #000;
  padding: 15px 16px 5px 40px;
  position: relative;
  font-family: fontfutura;
  font-weight: 600
}

.btn-google:focus {
  color: #fff;
  background-color: #555;
  border-color: #000
}

.btn-google:active,
.btn-google:hover {
  color: #fff;
  background-color: #555;
  border-color: #000;
}

.btn-google:before {
  content: "";
  background-image: url(https://4.bp.blogspot.com/-52U3eP2JDM4/WSkIT1vbUxI/AAAAAAAArQA/iF1BeARv2To-2FGQU7V6UbNPivuv_lccACLcB/s30/nexus2cee_ic_launcher_play_store_new-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 6px;
  top: 50%;
  margin-top: -15px
}

.btn-google:after {
  content: "GET IT ON";
  position: absolute;
  top: 5px;
  left: 40px;
  font-size: 10px;
  font-weight: 400;
}

a.btn-apple {
  color: #fff
}

.btn-apple {
  color: #fff;
  background-color: #111;
  border-color: #000;
  padding: 15px 16px 5px 40px;
  position: relative;
  font-family: fontfutura;
  font-weight: 600
}

.btn-apple:focus {
  color: #fff;
  background-color: #555;
  border-color: #000
}

.btn-apple:active,
.btn-apple:hover {
  color: #fff;
  border-color: #000;
}

.btn-apple:before {
  content: "";
  background-image: url('cib_apple2.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 6px;
  top: 50%;
  margin-top: -15px
}

.btn-apple:after {
  content: "DOWNLOAD ON THE";
  position: absolute;
  top: 5px;
  left: 40px;
  font-size: 10px;
  font-weight: 400;
}



/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding-top: 0;
  /* background-image: linear-gradient(to top, #0d1f3c, #0d1f3c 60%, #F8F8F8 40%); */
  background-image: linear-gradient(to top, #f8f8f8 0, #f8f8f8 20%, #0d1f3c 0%, #0d1f3c 66.666%, #f8f8f8 15%, #f8f8f8 0%);
}

.circle {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  padding: 5px;
  margin-bottom: 1rem;
  background: transparent;
  color: #000;
  text-align: center;
  border: 1px solid #347AF0;
}

.circle.active {
  background: linear-gradient(112.33deg, #347AF0 6.16%, rgba(242, 0, 116, 0.81) 110.77%);
  border-width: 0;
  padding: 6px;
}

.rotate {
  animation: rotation 8s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(-180deg);
  }

  to {
    transform: rotate(180deg);
  }
}
.animated-screens img {
  display: none;
}
.animated-screens img.active {
  display: flex;
  animation-timing-function: ease-in-out;

  transition: 3.5s;
  animation: headShake 3.5s infinite;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}
.why-us .animated-num .col-md-4 {
  padding: 0 !important;
}

.titre-section {
  margin-bottom: 1rem;
  font-style: normal;
  font-weight: 700;
  font-size: 49px;
  line-height: 120%;
  background: linear-gradient(112.33deg, #347AF0 6.16%, rgba(242, 0, 116, 0.81) 110.77%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4rem;
  color: transparent;
  display: inline-block;
}

.why-us .animated-screens {
  background-image: url('mockups/sphere.png');
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
  background-position: right 96% bottom 35%;
}

.why-us .animated-screens .anim {
  max-width: 85%;
}

.why-us .box {
  padding: 25px 15px;
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
  /* transition: all ease-in-out 0.3s; */
}

.why-us .box span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #b9b9fa;
}

.why-us .box h4 {
  font-weight: 600;
  font-size: 25px;
  line-height: 120%;
  color: white;
}

.why-us .box p {
  color: #EBF2FE;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}


.icon-feature {
  font-size: 4rem;
}

.features-device-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.features-device-mockup .circle {
  position: absolute;
  left: 0;
  fill: url(#circleGradient);
  width: 70%;
  display: none;
}

.features-device-mockup .circle .gradient-start-color {
  stop-color: #2937f0;
}

.features-device-mockup .circle .gradient-end-color {
  stop-color: #9f1ae2;
}

.features-device-mockup .shape-1 {
  position: absolute;
  height: 1rem;
  width: 1rem;
  transform: rotate(10deg);
  fill: #2937f0;
  top: 15%;
  right: 10%;
}

.features-device-mockup .shape-2 {
  position: absolute;
  height: 0.75rem;
  width: 0.75rem;
  fill: #2937f0;
  bottom: 15%;
  left: 10%;
}

.features-device-mockup .device-wrapper {
  max-width: 10rem;
}

@media (min-width: 576px) {
  .features-device-mockup .circle {
    width: 70%;
    display: block;
    left: auto;
  }

  .features-device-mockup .device-wrapper {
    max-width: 12.5rem;
  }
}

@media (min-width: 768px) {
  .features-device-mockup .circle {
    width: 60%;
    left: auto;
  }

  .features-device-mockup .device-wrapper {
    max-width: 15rem;
  }
}

@media (min-width: 992px) {
  .features-device-mockup .circle {
    width: 90%;
    left: -25%;
  }

  .features-device-mockup .shape-1 {
    top: 5%;
    right: -15%;
  }

  .features-device-mockup .shape-2 {
    bottom: 10%;
    left: -10%;
  }

  .features-device-mockup .device-wrapper {
    max-width: 15rem;
    margin-left: auto;
  }
}

@media (min-width: 1200px) {
  .features-device-mockup .circle {
    width: 75%;
    left: 0;
  }

  .features-device-mockup .shape-2 {
    bottom: 15%;
    left: 10%;
  }

  .features-device-mockup .device-wrapper {
    max-width: 15rem;
  }
}

@media (min-width: 1400px) {
  .features-device-mockup .circle {
    width: 80%;
    left: 0;
  }

  .features-device-mockup .device-wrapper {
    max-width: 17rem;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background-color: #F8F8F8;
  padding-top: 3.8rem;
}

.services h2 {
  background: linear-gradient(112.33deg, #347AF0 6.16%, rgba(242, 0, 116, 0.81) 110.77%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  font-weight: 700;
  font-size: 49px;
  line-height: 120%;
  display: inline-block;
}

.services .img-fluid {
  height: auto;
}

.services .rect {
  width: 40px;
  height: 40px;
}

.image-3 {
  position: absolute;
  left: -9%;
  top: -7%;
  right: auto;
  bottom: auto;
  width: 250px;
  text-align: center;
  /* -o-object-fit: cover; */
  object-fit: cover;
}

.services .icon-box {
  /* text-align: center; */
  /* padding: 70px 20px 80px 20px; */
  transition: all ease-in-out 0.3s;
  background: none;
  /* box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08); */
}

.services .card {
  border: none;
  background: transparent;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #434175;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Fonctions
--------------------------------------------------------------*/
#fonctions {
  background: #F8F8F8;
  padding-top: 4rem;
}

.fonctions .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.fonctions h2 {
  background: linear-gradient(112.33deg, #347AF0 6.16%, rgba(242, 0, 116, 0.81) 110.77%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 49px;
  line-height: 120%;
  display: inline-block;
}

.fonctions .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.fonctions .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.fonctions .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.fonctions .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.fonctions .card {
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border-width: 0;
}

.fonctions .card-body {
  padding-bottom: 0;
}

.fonctions .card-body h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  color: #1A3D78;
}

.fonctions .card-footer {
  background: none;
  border-width: 0;
  padding-bottom: 1rem;
}

.fonctions .card-footer img {
  margin-right: 0.5rem;
}

.fonctions .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.fonctions .icon-box h4 a {
  color: #434175;
  transition: ease-in-out 0.3s;
}

.fonctions .card-body p {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
}

.fonctions .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.fonctions .iconbox-blue i {
  color: #47aeff;
}

.fonctions .iconbox-blue:hover .icon i {
  color: #fff;
}

.fonctions .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.fonctions .iconbox-orange i {
  color: #ffa76e;
}

.fonctions .iconbox-orange:hover .icon i {
  color: #fff;
}

.fonctions .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.fonctions .iconbox-pink i {
  color: #e80368;
}

.fonctions .iconbox-pink:hover .icon i {
  color: #fff;
}

.fonctions .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.fonctions .iconbox-teal i {
  color: #11dbcf;
}

.fonctions .iconbox-teal:hover .icon i {
  color: #fff;
}

.fonctions .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  background: #F8F8F8;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.section-title .titre-section {
  background: linear-gradient(112.33deg, #347AF0 6.16%, rgba(242, 0, 116, 0.81) 110.77%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.accordion-button {
  font-weight: 600;
  font-size: 25px;
  color: #1A3D78;
}

.faq #accordionFlushExample {
  filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.1));
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq img {
  transform: rotate(-13.23deg);
}

.faq .faq-list li {
  border-bottom: 1px solid #f2f2fe;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #5a5af3;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #2a2af0;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #5a5af3;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}


/*******************Footer***********/
footer.nb-footer {
  background: #050C18 !important;
  color: white;
  padding-bottom: 5rem
}

footer.nb-footer .about {
  font-size: 70%;
  text-align: justify;
}

footer.nb-footer .about p {
  font-weight: 400;
  /* font-size: 15px; */
  line-height: 120%;
}

footer.nb-footer .about .social-media {
  margin-top: 15px;
}

footer.nb-footer .about .social-media ul li a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  font-size: 16px;
  color: #b78c33;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

footer.nb-footer .footer-info-single {
  margin-top: 30px;
}

footer.nb-footer .footer-info-single .title {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  /* border-left: 4px solid #b78c33; */
  padding-left: 5px;
}

footer.nb-footer .footer-info-single p {
  font-size: 13px;
  line-height: 20px;
  color: #aaa;
}

footer.nb-footer .copyright {
  margin-top: 15px;
  background: #111;
  padding: 7px 0;
  color: #999;
}

footer.nb-footer .copyright p {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 258px) and (max-width: 520px) {
  .logo {
    align-self: center;
  }

  #hero {
    background-image: none !important;
  }

  #hero h1 {
    font-weight: 900;
    font-size: 37px;
    line-height: 115%;
    flex: none;
    text-align: center;
  }

  #hero .container-fluid {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  #hero p {
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    margin-left: 2rem;
    margin-right: 2rem;
    text-align: center;
  }

  #hero .bouton {
    width: 50%;
  }

  .services {
    align-content: center;
  }

  #services .content img {
    display: none;
  }

  .services .icon-boxes .card {
    background: #FFFFFF;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
    border-radius: 8px;
    align-items: center;
    padding: 16px 8px;
    margin-right: 2rem;
    margin-left: 2rem;
  }

  .services .icon-boxes .row .col-md-6 {
    justify-content: center;
  }

  .services .icon-box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    align-self: stretch;
  }

  .align-items-stretch {
    align-items: inherit;
  }

  .services .icon-box h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    text-align: center;

  }

  .services .row {
    margin-bottom: 3rem;
  }

  footer.nb-footer .footer-info-single {
    text-align: justify !important;
  }

  .why-us {
    margin-top: -4rem;
  }

  .why-us .animated-num,
  .fonctions .icon-boxes .row {
    background-color: #0d1f3c;
  }

  .why-us .animated-screens .anim {
    max-width: 95%;
    margin: auto;
  }

  .why-us .animated-screens {
    background-image: url('mockups/sphere.png');
    background-repeat: no-repeat;
    background-position: center;
  }

  .fonctions .icon-boxes .row {
    padding-bottom: 2rem;
  }

  .fonctions .content img {
    display: none;
  }

  .counts .h-screen {
    display: none !important;
  }

  .counts .mobile-partners {
    display: flex !important;
  }

  .counts .mobile-partners .col-md-6 {
    width: 50%;
    padding: 2rem;
  }

  .counts .mobile-partners .col-md-12 img {
    width: 40%;
  }

  .counts .mobile-partners img {
    max-width: 60% !important;
  }

  #payments .col-md-2 {
    width: 50%;
  }

  .faq img {
    display: none;
  }

  .why-us .animated-num .col-md-4 {
    margin-top: 0.3rem !important;
  }
}

@media screen and (min-width: 530px) and (max-width: 990px) {
  #hero {
    background-image: none !important;
  }

  #hero .bouton {
    width: 50%;
  }

  #hero .lign-bouton {
    align-items: center;
  }

  #hero h1 {
    font-weight: 900;
    font-size: 49px;
    line-height: 100%;
    flex: none;
    text-align: center;
  }

  #hero .container-fluid {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .why-us .animated-num {
    background-color: #0d1f3c;

  }

  .why-us .animated-num .col-md-4 {
    margin-top: 0.2rem !important;
  }

  .why-us .animated-screens {
    display: none;
  }

  .why-us .col-md-8 {
    width: 100%;
  }

  .counts .mobile-partners {
    display: none;
  }

  .fonctions .content img {
    display: none;
  }

  .fonctions .content .col-md-6 {
    width: 50%;
  }

  .fonctions .col-md-7 {
    width: 100%;
    margin: auto;
  }


}

@media screen and (min-width: 720px) and (max-width: 767px) {
  .why-us {
    padding-top: 0;
    background-image: linear-gradient(to top, #0d1f3c, #0d1f3c 76%, #F8F8F8 40%);
  }
}

@media screen and (min-width: 768px) and (max-width: 990px) {
  .why-us {
    padding-top: 0;
    background-image: linear-gradient(to top, #0d1f3c, #0d1f3c 60%, #F8F8F8 40%);
  }
}

@media screen and (min-width: 750px) and (max-width: 1030px) {
  #hero .bouton {
    width: 30%;
  }

}

@media screen and (min-width: 991px) {
  .why-us .animated-screens {
    padding-top: 7rem;
  }

  .counts .mobile-partners {
    display: none !important;
  }
}

@media screen and (min-width: 991px) and (max-width: 1250px) {
  .why-us {
    background-image: linear-gradient(to top, #f8f8f8 0, #f8f8f8 4%, #0d1f3c 0%, #0d1f3c 60.666%, #f8f8f8 15%, #f8f8f8 0%);
  }

  .titre-section {
    margin-bottom: 5rem;
  }
}

@media screen and (min-width: 1251px) and (max-width: 1379px) {
  .why-us {
    background-image: linear-gradient(to top, #f8f8f8 0, #f8f8f8 20%, #0d1f3c 0%, #0d1f3c 66.666%, #f8f8f8 15%, #f8f8f8 0%);
  }

  .titre-section {
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 1380px) {
  .why-us {
    background-image: linear-gradient(to top, #f8f8f8 0, #f8f8f8 20%, #0d1f3c 20%, #0d1f3c 70.666%, #f8f8f8 70%, #f8f8f8 0%);
  }

  .titre-section {
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 1400px) {
  .titre-section {
    margin-bottom: 7rem;
  }
}


