/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #141A33;
  background-image: url("../img/footer-bg.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 18px;
  line-height: 32px;
}

a {
  color: #141A33;
  text-decoration: none;
}

a:hover {
  color: #7b94c9;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}
h3{
  font-family: "Roboto", sans-serif;
  font-weight: lighter;
  font-size: 28px;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #141A33;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #748ec6;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
}

#header .logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:25px;

.header-link , .header-link:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #141A33;
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 20px;
  border: 2px solid #141a3300;
}
.header-link:hover, .active{
  color: #141A33;
  border: 2px solid #141A33;
}
}

#header .logo img {
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  color: #141A33;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #f28789;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #5777ba;
  color: #fff;
  padding: 12px 25px;
  margin-left: 30px;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #748ec6;
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #5777ba;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.navbar .other-link {
  display: none !important;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #47536e;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #47536e;
  font-size: 33px;
}
@media (min-width: 768px) {
  .navbar-mobile .other-link {
    display: none !important;
    justify-content: space-around;
    margin: 40px 0;
  }
}
@media (max-width: 767px) {
  .navbar-mobile .other-link {
    display: flex !important;
    justify-content: space-around;
    margin: 40px 0;
  }
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 10px 30px;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    color: #141A33;
    white-space: nowrap;
    transition: 0.3s;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(51 60 79 / 0%);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 34px;
  right: 10px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 77px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 20px;
  color: #47536e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #f28789;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #5777ba;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


.navbar-mobile .other-link .header-link , .header-link:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #141A33;
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 20px;
  border: 2px solid #141a3300;
}
.navbar-mobile .other-link .header-link:hover, .navbar-mobile .other-link .active{
  color: #141A33;
  border: 2px solid #141A33;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.fixed-top {
  position: sticky !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
#hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0px 0 0 0;
  background-image: url("../img/bg-hero.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 62%;
  margin-top: 0;
}


#hero h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 40px;
  color: #141A33;
  font-family: "Roboto", sans-serif;
}

#hero h2 {
  color: #141A33;
  margin-bottom: 50px;
  font-size: 80px;
  font-weight: 600;
}
#hero h3 {
  color: #141A33;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
}
#hero .text-linear{
  background: linear-gradient(
          to right,
          hsl(221 97% 76%),
          hsl(287 54% 63%),
          hsl(359 80% 74%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
#hero .btn {
  flex: 1 1 auto;
  margin: 10px 0;
  padding: 26px 30px;
  text-align: center;
  transition: 0.5s;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 158%;
  width: auto;
}

.btn:hover {
  background-position: right center; /* change the direction of the change here */
  background-size: 200% auto;
}

.btn-1 {
  background-image: linear-gradient(to right, #87ACFD 0%, #BE6ED4 50%, #F28789 100%);
}
#hero .img-fluid{
  /* width: 348px; */
}
#hero .download-btn i {
  font-size: 20px;
  position: absolute;
  left: 18px;
  top: 8.5px;
}

#hero .download-btn+.download-btn {
  margin-left: 20px;
}

@media (max-width: 991px) {
  #hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 42px 0 14px 0;
    background-image: url("../img/bg-hero.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 63%;
  }
  #hero .download-btn+.download-btn {
    margin: 0 10px;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 100%;
  }
  #hero h2 {
    color: #141A33;
    margin-bottom: 50px;
    font-size: 70px;
    font-weight: 600;
  }
}

@media (max-width: 768px) {
  #hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 13px 0 14px 0;
    background-image: url("../img/bg-hero.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 58%;
  }
  #hero h1 {
    font-size: 20px;
    line-height: 36px;
  }

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

  #hero .hero-img img {
    width: 70%;
  }
  #hero .btn {
    flex: 1 1 auto;
    margin: 15px 0;
    padding: 15px 16px;
    text-align: center;
    transition: 0.5s;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 500;
    line-height: 158%;
    width: auto;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 70%;
  }
  #hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 2px 0 14px 0;
    background-image: url(../img/bg-hero.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 120%;
  }
  #hero .btn {
    flex: 1 1 auto;
    margin: 10px 0;
    padding: 14px 18px;
    text-align: center;
    transition: 0.5s;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 20px;
    font-size: 21px;
    font-weight: 500;
    line-height: 158%;
    width: auto;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 20px 0;
  overflow: hidden;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: left;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #141A33;
  font-family: "Roboto", sans-serif;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  margin-top: 75px;
  padding: 15px 0;
  background-color: #f6f8fb;
  min-height: 40px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# App Features
--------------------------------------------------------------*/
.features .content {
  padding: 30px 0;
}
.features h3{
  margin-bottom: 30px;
}
.features .content .icon-box {
  margin-top: 25px;
}

.features .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #5777ba;
}

.features .content .icon-box p {
  font-size: 15px;
  color: #979aa1;
  margin-left: 60px;
}

@media (max-width: 991px) {
  .features .image {
    text-align: center;
  }

  .features .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .features .image img {
    max-width: 100%;
  }
  .features h3 {
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details{
  background-image: url("../img/bg-bleu.svg");
  position: relative;
  padding: 229px 0 40px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  color: #fff;
  font-size: 36px;
  font-weight: lighter;
  text-align: center;
  line-height: 55px;
}
.details .content+.content {
  margin-top: 100px;
}
.details:before {
  /* content: ""; */
  background-color: #ffffff;
  position: absolute;
  bottom: 363px;
  top: -100px;
  left: 0;
  right: 0;
  transform: skewY(-6deg);
}
.details .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #47536e;
}
.details .btn-download{
  gap: 50px;
  display: flex;
  justify-content: center;
  margin: 30px;
}
.details .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 24px;
  padding-right: 2px;
  color: #5777ba;
  line-height: 0;
}

.details .content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 667px) {
  .details .btn-download {
    gap: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 50px auto 0;
  }
}
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}
.gallery .swiper-slide img {
  width: 57px;
}
.gallery .swiper-slide,.gallery .swiper-slide-active {
  transition: 0.3s;
  border: 1px solid #7869a529;
  padding: 40px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  justify-content: center;
  height: 504px;
}

.gallery .swiper-slide .detail-service,.gallery .swiper-slide-active  .detail-service{
  opacity: 0;
  height: 0;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #e8e9eb;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #141a33;
}

.gallery .swiper-slide-active {
  text-align: left;
}
.gallery .swiper-slide:hover .detail-service{
  opacity: 1;
  height: auto;
  font-size: 16px;
  line-height: 25px;
}


.gallery .swiper-slide:hover h3{
  background: linear-gradient(to right, hsl(221 97% 76%), hsl(287 54% 63%), hsl(359 80% 74%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide:hover {
    border: 0;
    padding: 40px;
    background: #fff;
    z-index: 1;
    margin-top: 10px;
    border-radius: 40px;
    box-shadow: 0px 0px 15px 0px #e3e3e3;
    text-align: left;
    background-image: url("../img/bg-service.png");
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .gallery .swiper-slide,.gallery .swiper-slide-active {
    transition: 0.3s;
    border: 1px solid #7869a529;
    padding: 40px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    justify-content: center;
    background-image: url(../img/bg-service.png);
    height: auto;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }
  .gallery .swiper-slide .detail-service,.gallery .swiper-slide-active  .detail-service{
    opacity: 1;
    height: 100%;
  }
  .details:before {
    content: "";
    background-color: #ffffff;
    position: absolute;
    bottom: 578px;
    top: -22px;
    left: 0;
    right: 0;
    transform: skewY(-3deg);
  }
  .details {
    background: #141A33;
    background-image: url("../img/vector.png");
    position: relative;
    padding: 160px 0 90px;
    background-repeat: no-repeat;
    background-position: -56px 573px;
    background-size: 148%;
    color: #fff;
    font-size: 36px;
    font-weight: lighter;
    text-align: center;
    line-height: 55px;
  }
}
@media (max-width: 430px){
  .details:before {
    content: "";
    background-color: #ffffff;
    position: absolute;
    bottom: 970px;
    top: -24px;
    left: 0;
    right: 0;
    transform: skewY(-3deg);
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 10px 30px 50px;
  min-height: 200px;
  position: relative;
  background: #fff;
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 200px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: relative;
  left: 0;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: normal;
  margin: 10px 0 5px 0;
  color: #111;
  font-family: "Open Sans", sans-serif;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #e8ecf5;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: 66px;
  position: absolute;
  width: 115px;
  top: 139px;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: 35px;
  position: absolute;
  bottom: -9px;
  width: 115px;
}

.testimonials .testimonial-item p {
  font-weight: normal;
  margin: 15px auto 15px auto;
  font-family: "Open Sans", sans-serif;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #e8e9eb;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #141a33;
}


@media (max-width: 768px) {
  .testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px 30px 30px 30px;
    margin: 30px 10px 30px 10px;
    min-height: 200px;
    position: relative;
    background: #fff;
    text-align: center;
  }
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -3px;
    position: absolute;
    width: 68px;
    top: 172px;
  }
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: 2px;
    position: absolute;
    bottom: 35px;
    width: 68px;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 0px;
}

.pricing .box {
  padding: 25px 63px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #141a33;
  text-align: center;
  background-image: url("../img/bg-price.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing h3 {
  font-weight: normal;
  margin-bottom: 15px;
  font-size: 38px;
  color: #fff;
}

.pricing h4 .number-color {
  font-size: 96px;
  color: #5777ba;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  margin-bottom: -10px;
  background: linear-gradient(to right, hsl(221 97% 76%), hsl(287 54% 63%), hsl(359 80% 74%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  line-height: 85px;
}
.pricing h4 .number-white {
  font-size: 96px;
  color: #fff;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  margin-bottom: -10px;
  line-height: 85px;
}

.pricing h4 span {
  color: #ffffff;
  font-size: 24px;
  display: block;
  font-weight: lighter;
}

.pricing ul {
  padding: 0;
  color: #fff;
  text-align: left;
  line-height: 20px;
  margin-top: 17px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  margin-bottom: 7px;
}

.pricing ul li {
  padding-bottom: 12px;
}


.btn-pricing {
  flex: 1 1 auto;
  margin: 16px 0;
  padding: 20px 26px;
  text-align: center;
  transition: 0.5s;
  background-size: auto;
  color: white;
  border-radius: 20px;
  font-size: 20px;
  font-weight: bold;
  line-height: 158%;
  font-family: "Roboto", sans-serif;
}
.btn-pricing img{
  margin-left: 4px;
}
.btn-pricing:hover {
  background-position: right center; /* change the direction of the change here */
  color: white;
  background-size: 200% auto;
}

.btn-pricing-1 {
  background-image: linear-gradient(to right, #87ACFD 0%, #BE6ED4 51%, #F28789 100%);
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .get-started-btn {
  background: #5777ba;
}

.pricing .featured .get-started-btn:hover {
  background: #748ec6;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
  .pricing h4 .number-color {
    font-size: 65px;
    color: #5777ba;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    margin-bottom: -10px;
    background: linear-gradient(to right, hsl(221 97% 76%), hsl(287 54% 63%), hsl(359 80% 74%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
  }
  .pricing h4 .number-white {
    font-size: 65px;
    color: #fff;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    margin-bottom: -10px;
  }
  .btn-pricing {
    flex: 1 1 auto;
    margin: 24px 0;
    padding: 20px 18px;
    text-align: center;
    transition: 0.5s;
    background-size: auto;
    color: white;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    line-height: 158%;
    font-family: "Roboto", sans-serif;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
    padding: 50px 30px;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .accordion-list {
  padding: 0;
}
.faq .section-title {
  text-align: left;
  padding-bottom: 30px;
  display: flex;
}
.faq .accordion-list ul {
  padding: 0;
  list-style: none;
}

.faq .accordion-list li+li {
  margin-top: 0;
}

.faq .accordion-list li {
  padding: 50px 0;
  background: #fff;
  border-radius: 0;
  position: relative;
  border-bottom: 1px solid #141A33;
}
.faq .accordion-list li:last-child {
  border-bottom: 0px ;
}
.faq .accordion-list a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  line-height: 24px;
  font-weight: normal;
  padding: 5px 51px;
  outline: none;
  cursor: pointer;
}

.faq .accordion-list .icon-help {
  font-size: 22px;
  position: absolute;
  right: 0;
  left: 0;
  color: #b1c0df;
  width: 37px;
}

.faq .accordion-list .icon-show,
.faq .accordion-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .accordion-list p {
  margin-bottom: 0;
  padding: 50px 0 0 0;
}

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

.faq .accordion-list a.collapsed {
  color: #343a40;
}

.faq .accordion-list a.collapsed:hover {
  color: #5777ba;
}

.faq .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .accordion-list {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .faq .section-title {
    text-align: left;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
  }
  .faq .accordion-list ul {
    padding: 20px;
    list-style: none;
  }
}
/*--------------------------------------------------------------
# download APP
--------------------------------------------------------------*/
.download{
  background: #F1F1F4;
  background-image: url("../img/vector-2.png");
  position: relative;
  padding: 83px 0;
  background-repeat: no-repeat;
  background-position: 142% 62%;
  background-size: 59%;
  color: #141a33;
  font-size: 36px;
  font-weight: normal;
  text-align: center;
  line-height: 55px;
  font-family: "Roboto", sans-serif;
}

.download h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 36px;
  padding-bottom: 30px;
  margin-bottom: 0;
}

.download .btn-download {
  gap: 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 667px) {
  .download .btn-download {
    gap: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 50px auto 0;
  }
}
/*--------------------------------------------------------------
# Partner
--------------------------------------------------------------*/

.partner .logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.w-135{
  width: 135px;
}
@media (max-width: 768px) {
  .partner .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
  }
}
@media (max-width: 575px) {
  .partner .logo .partenaire{
    width: 90px;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #141A33;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}

#footer .footer-newsletter {
  text-align: center;
}

#footer .footer-newsletter h4 {
  font-size: 18px !important;
  font-weight: normal !important;
  color: #47536e;
  position: relative;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  font-family: "Open Sans", sans-serif !important;
}

#footer .footer-newsletter form {
  margin-top: 0;
  background: transparent;
  padding: 6px 10px;
  position: relative;
  border-radius: 8px;
  border: 0;
  text-align: left;
  display: flex;
  align-items: center;
  flex-direction: column;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

::placeholder {
  color: #7869A5;
  opacity: 20%; /* Firefox */
}

#footer .footer-newsletter form input[type=submit] {
  border: 0;
  transition: 0.3s;
  background: url("../img/iconamoon_send.png");
  width: 27px;
  height: 24px;
}

#footer .footer-newsletter form input[type=submit]:hover {
}
#footer .newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
}
#footer .newsletter input {
  border: 0;
  width: 74%;
}
#footer .news-titre{
  font-family: "Open Sans", sans-serif;
  color: #141A33;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 17px;
}
#footer .newsletter button {
  border: 0;
  background: transparent;

}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background-image: url("../img/footer-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
  text-align: left;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #47536e;
}

#footer .footer-top .footer-contact p {
  margin-bottom: 0;
  font-family: "Open Sans", sans-serif;
  color: #141A33;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #47536e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
.icons-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
img{
  margin-top: 5px;
}
}
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #9fb2d8;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #8a8c95;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #5777ba;
}

#footer .footer-top .social-links a {
  font-size: 27px;
  display: inline-block;
  color: #141A33;
  line-height: 1;
  padding: 2px 0;
  margin-right: 1px;
  border-radius: 50%;
  text-align: center;
  width: 29px;
  height: 29px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  color: #f28789;
  text-decoration: none;
}
#footer .bas {
  border-top: 1px solid #F1F1F4;
}
#footer .copyright {
  text-align: center;
  float: left;
  color: #141A33;
  font-size: 12px;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #47536e;
  display: flex;
  gap: 25px;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 5px 0;
    display: flex;
    gap: 0;
    flex-direction: column;
    align-items: center;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
    text-align: center;
  }
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: transparent;
  border-radius: 5px;
  width: 50%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 7px;
  right: 10px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background: #000;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}
.popup .close:hover {
  color: #f28789;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .box{
    width: auto;
  }
  .popup{
    width: 96%;
  }
}
.backgroundBg {
  background: #ffffff !important;
}
@media only screen and (min-width: 480px) and (max-width: 768px) {
  .backgroundSecBg {
    padding: 0;
  }
}
.backgroundSecBg {
  padding: 0;
  margin: 0;
}


.modal {
  display: none; /* Masquer par défaut */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
}

.modal-content {
  background-color: white;
  margin: 10% auto; /* Centrer la boîte */
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
}
.iframe-dimensions {
  width: 90%; /* Ou spécifiez une largeur fixe comme 600px */
  height: 405px; /* Spécifiez la hauteur souhaitée */
  border: none; /* Optionnel : pour retirer les bordures */
}
@media screen and (max-width: 768px) {
  .modal-content {
    background-color: white;
    margin: 25% auto; /* Centrer la boîte */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
  }
  .iframe-dimensions {
    width: 98%;
    height: 475px;
    border: none;
  }
}
.close {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 1px;
  background: #0a0d19;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close:hover,
.close:focus {
  color: #f28789;
  text-decoration: none;
  cursor: pointer;
}

button.openPopup {
  margin: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
}
.fmFooter {
  margin: 0;
  padding: 0 25px !important;
}