/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #03273d;
  text-decoration: none;
}

a:hover {
  color: #6c7afa;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Krub", sans-serif;
}

.colorppm {
  color: #03273d;
}
.hoverFloat:hover {
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}

.hover1:hover {
  background-color: #03273d5c !important;
  color: black !important;
}

.backcolorblue {
  background-color: #03273d;
}

.colorppm {
  color: #03273d;
}

.fontlato {
  font-family: lato;
}
.pageTarif {
  font-family: Krub;
}
.pagetarif {
  font-family: Krub;
}
.star-color {
  color: #f0ad4e;
}
.hover-moving:hover, .hover-moving:focus,.hover-moving:active {
  /*font-size: 25px;
  background-color: #61a5e7;
  border-radius: 0px 0px 0px 0px;
  padding: 65px 65px 65px 65px;*/
  box-shadow: 0px 20px 16px 0px #2579ce;
  transform: translateY(8px);
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #03273d;
  border-top-color: #e2e5fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }

  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px);
  }

  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #03273d;
  border-bottom: 2px solid #eceefe;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #000000;
}

#header .logo img {
  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: "Krub", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  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: white;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: white;
  padding: 9px 25px;
  margin-left: 30px;
  border-radius: 5px;
  font-weight: 600;
  color: #fff;
  color: #03273d;
  border: 1px solid #0000007a;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ffcc00;/*#1a4b6d;*/
  
}

.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: #03273de0;
  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;
  text-transform: none;
  font-weight: 500;
}

.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: black;
  background-color: white;
}

.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;
}

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

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

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

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed !important;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(29, 41, 60, 0.9);
  transition: 0.3s;
  z-index: 999;
}

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

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  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: 15px;
  color: #000000;
}

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

.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: #03273d;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /* height: 100vh; */
  /*background: url("../img/hero-bg.jpg") top center;*/
  background-size: cover;
  position: relative;
  margin-top: 88px;
}

#hero video {

  z-index: 0;

  width: 100%;
  height: auto;
}

#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 3s;
  animation: pulsate-btn 3s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(72, 181, 224, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid #27affded;
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about {
  margin-top: 50px;
}

#about .free-audit {
  display: flex;
  justify-content: space-between;
}

#about .free-audit-1 {
  background-image: url(/assets/img/work-office-ppm-small.jpg);
  background-color: #cccccc;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 19%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  width: 39%;
  position: relative;
  /*max-height: 59vh;*/
}

#about .free-audit-1:hover {
  -webkit-filter: revert;
}

#about .withppm01 {
  font-weight: 700;
  font-size: 34px;
  color: black;
  margin-bottom: 30px;

}

#about .beneficiary-audit {
  padding: 70px;
  text-align: center;
  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;*/
}

#about .btn-audit {
  display: inline-block;
  background: rgb(43 169 241);
  padding: 6px 30px 8px 30px;
  color: white;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  text-align: center;
}

#about .btn-audit:hover {
  background-color: #03273d;
}

#about .btn-video {
  background: rgb(43 169 241);
}

#about .btn-video:hover {
  background-color: #03273d;
}



#about .free-audit-2 {
  width: 59%;
}

#about .expertise {
  display: flex;
  text-align: center;
}

#about .expertise-1 {
  padding: 0 20px;
  width:50em;
}

#about .expertise-2 {
  padding: 0 20px;
  width:50em;
}

#about .dedicated-advisor {
  display: flex;
  text-align: center;
}

#about .title-audit {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

#about .icon-audit {
  font-size: 40px;
  color: #2ba9f1;
  margin-bottom: 10px;
}

#about .description-audit {
  font-size: 15px;
  margin-top: 1.5rem;
  /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; */
}

#about .dedicated-advisor-2 {
  width: 50%;
  padding: 0 20px;
  width:50em;
}

#about .dedicated-advisor-1 {
  width: 50%;
  padding: 0 20px;
  width:50em;
}

@media (max-width: 991px) {
  #about .free-audit {
    flex-direction: column;
  }

  #about .beneficiary-audit {
    position: inherit;
    /*margin-top: 200px;*/

  }

  #about .free-audit-1 {
    width: 100%;
    margin: 0 auto;
  }

  #about .free-audit-2 {
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  #about .expertise {
    flex-direction: column;
  }

  #about .expertise {
    flex-direction: column;
  }

  #about .expertise-1 {
    width: 100%;
  }

  #about .expertise-2 {
    width: 100%;
  }

  #about .dedicated-advisor {
    flex-direction: column;
  }

  #about .dedicated-advisor-1 {
    width: 100%;
  }

  #about .dedicated-advisor-2 {
    width: 100%;
  }

  #about .withppm01 {
    background-color: #ffffffba;
  }

  #about .free-audit-1 {
    -webkit-filter: inherit;
  }

}
/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) {
  #about .withppm01 {
    font-size: 18px;
  }

  #about .btn-audit {
    padding: 5px 15px 5px 15px;
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Client Section
--------------------------------------------------------------*/
.clients {
  background: #03273d;
  padding: 15px 0;
  text-align: center;
  margin-top: 50px;
}

#clients .img-company {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

#clients .img-company:hover {
  transform: scale(1.15);
}

#clients .all-clients {
  border-radius: 30px;
  display: flex;
  /* margin-top: 40px; */
  align-items: center;
  flex-wrap: wrap;

}

#clients .company {
  width: 16.66666666666667%;
}

@media(max-width : 991px) {
  #clients .all-clients {
    justify-content: space-around;
  }

  #clients .company {
    width: 30%;
  }
}

@media(max-width :768px) {
  #clients .all-clients {
    width: 60%;
    margin: 0 auto;
  }

  #clients .company {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  margin-top: 50px;
}

#features .seo {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

#features .seo h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #000000;
}

#features .seo h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #aabbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

#features .service {
  margin-top: 40px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#features .image-service {
  width: 40%;
}

#features .img-of-service {
  width: 100%;
}

#features .resume-service {
  width: 50%;
  padding: 35px 35px 5px 35px;
  border-radius: 30px;
}

#features .resume-service h3 {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 10px;
}

#features .resume-service p:nth-child(2) {
  margin-bottom: 50px;
}

#features .resume-service ul li {
  padding-bottom: 12px;
  list-style: none;

}

@media(max-width :768px) {
  #features .service {
    flex-direction: column;
  }

  #features .image-service {
    width: 100%;
    order: 1;
    margin-top: 28px;
  }

  #features .resume-service {
    width: 100%;
    padding: 35px 35px 5px 20px;
  }

  #features .service-with-order {
    display: flex;
    flex-direction: column;
  }

  #features .details {
    margin-left: -36px;
  }

  #features .seo h2 {
    font-size: 25px;
  }
}




/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
#testimonials .star-color {
  color: #f0ad4e;
  font-size: 28px;
}

.section-bg {
  background-color: #f6f8fb;
  margin-top: 50px;
  padding-bottom: 45px;
}

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

#testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 30px;

}

#testimonials .testimonial-item .testimonial-img {
  width: 90px;
  /*border-radius: 50%;*/
  border: 4px solid #fff;
  margin: 0 auto;
}

#testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

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

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

#testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

#testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

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

#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #03273d;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #03273d;
}

#testimonials .section-title {
  text-align: center;
  /* padding-bottom: 30px; */
  padding-top: 50px;
}

#testimonials .section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #000000;
}

#testimonials .section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #aabbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

/* #testimonials .customer {
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
} */

/* #testimonials .comment-customer {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
} */

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0px 0px 0px;
}

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

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

#faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #03273d;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0a22f6;
  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: #03273d;
}

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

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

#faq .section-title {
  text-align: center;
  padding-bottom: 30px;
}

#faq .section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #000000;
}

#faq .section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #aabbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

/*--------------------------------------------------------------
# Steps
--------------------------------------------------------------*/
.steps {
  padding-top: 20px;
}

#steps .row {
  overflow: hidden;
}

#steps .content-item {
  padding: 40px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: -1px;
}

#steps .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #03273d;
}

#steps .content-item h4 {
  font-size: 28px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
  color: #000000;
}

#steps .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding-right: 10px;
  padding-left: 10px;
}

@media (max-width: 768px) {
  #steps .content-item {
    padding: 40px 0;
  }

  #steps .steps-styles {
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background: #f6f8fb;
  padding-bottom: 80px;
  padding-top: 60px;
  margin-top: 50px;
}

#services .section-title h2,
.services .section-title p {
  color: black;
}

#services .section-title {
  text-align: center;
  margin-bottom: 50px;

}

#services .section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #000000;
}

#services .section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #aabbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

#services .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s;
  border-radius: 5px;
  text-align: center;
  border-radius: 30px;
}

#services .icon-box:hover {
  transform: scale(1.08);
}

#services .icon {
  margin-bottom: 15px;
}

#services .icon i {
  font-size: 32px;
  line-height: 1;
  color: #03273d;
  background: #eff2f8;
  padding: 20px;
  border-radius: 50px;
  transition: all 0.3s;
}

#services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #000000;
  transition: 0.3s;
  /* text-decoration: none; */
}

#services .title a:hover {
  color: #4e6fa4;
}

#services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f1f3ff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

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

#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: #000000;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Krub", sans-serif;
  color: #4e6fa4;
}

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

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #6c7afa;
  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: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;

}

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

#footer .footer-newsletter {
  font-size: 15px;
}

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

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #9da7fc;
}

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

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #03273d;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #0a22f6;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #e7eafe;
  color: #03273d;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #03273d;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #03273d;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #6272f9;
  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;
  }
}

/*--------------------------------------------------------------
# Styles page 404
--------------------------------------------------------------*/
#not-found {
  margin-top: 130px;
  margin-bottom: 50px;
}

#not-found .page-not-found {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

#not-found .image-not-found {
  width: 40%;
}

#not-found .content-not-found {
  width: 40%;
}

#not-found .image-error {
  width: 63%;
}

#not-found .go-home {
  margin-top: 20px;
  width: 30%;
}

#not-found .btn-home {
  display: flex;
  justify-content: center;
  background-color: #03273D;
  border-radius: 10px;
  padding: 12px 15px;
  color: #ffff;
  text-decoration: none;
}

@media (max-width: 1200px) {
  #not-found {
    margin-top: 180px;
  }

}

@media (max-width:991px) {
  #not-found .page-not-found {
    flex-direction: column;
  }

  #not-found .image-not-found {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  #not-found .content-not-found {
    width: 100%;
    text-align: center;
  }

  #not-found .image-error {
    width: 55%;
  }

  #not-found .go-home {
    margin: 0 auto;
  }
}

@media (max-width:350px) {
  #not-found .go-home {
    width: 40%;
  }
}

/*--------------------------------------------------------------
# Section how to use
--------------------------------------------------------------*/
#how-to-use {
  margin-top: 140px;
}

#how-to-use .google-display {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

#how-to-use .use-description {
  width: 48%;
}

#how-to-use .image-use {
  width: 40%;
}

#how-to-use .btn-contact {
  display: inline-block;
  padding: 8px 14px;
  background-color: #ffc107;
  text-decoration: none;
  border-radius: 5px;
  color: #000 !important;
  margin: 0;
}

#how-to-use .btn-contact:hover {
  background-color: #ffca2c;
}

#how-to-use .advice {
  margin: 0;
}

#how-to-use .devices {
  width: 100%;
}

@media (max-width:991px) {
  #how-to-use .google-display {
    flex-direction: column;
  }

  #how-to-use .use-description {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  #how-to-use .image-use {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Section advertising
--------------------------------------------------------------*/
#advertising {
  margin-top: 50px;
}

#advertising .steps-ads {
  display: flex;
  gap: 12px;
  justify-content: center;

}

#advertising .step-1,
.step-2,
.step-3,
.step-4 p {

  font-family: Krub, sans-serif;
  color: #fff;
  font-weight: 600;

}

#advertising .step-1 {
  background-color: #bc4e4f;
  min-height: 90px;
  width: 19%;
  border-radius: 12px;
  position: relative;

}

#advertising .step-2 {
  background-color: #f29619;
  min-height: 90px;
  width: 19%;
  border-radius: 12px;
}

#advertising .step-3 {
  background-color: #76d561;
  min-height: 90px;
  width: 19%;
  border-radius: 12px;
}

#advertising .step-4 {
  background-color: #2cabe2;
  min-height: 90px;
  width: 19%;
  border-radius: 12px;
}

#advertising .content-step {
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

#advertising .name-step {
  margin: 0;
}

#advertising .title-ads {
  text-align: center;
  margin-bottom: 30px;
}

#advertising .image-steps-ads {
  margin-top: 50px;
  text-align: center;
}

#advertising .image-ads {
  width: 78%;
}

#advertising .description-ads {
  margin-top: 50px;
  font-family: Krub;
}

#advertising .resume-google-display {
  margin-left: -12px;
}

@media (max-width:991px) {
  #advertising .steps-ads {
    flex-direction: column;
  }

  #advertising .step-1 {
    width: 100%;
  }

  #advertising .step-2 {
    width: 100%;
  }

  #advertising .step-3 {
    width: 100%;
  }

  #advertising .step-4 {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Styles go more
--------------------------------------------------------------*/
.free-audit-ads {
  display: flex;
  justify-content: space-evenly;
}

.icon-free-audit {
  display: flex;
  width: 40%;
  border-radius: 30px;
}

.create-ads {
  display: flex;
  width: 40%;
  border-radius: 30px;
}

.icon-ads {
  font-size: calc(1.375rem + 1.5vw) !important;
  color: #03273d;

}

.description-of-audit {
  background-color: #ffc107;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.description-create-ads {
  background-color: #03273d;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.ads-in-progress-1 {
  background-color: #ffff;
  padding: 10px 20px;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.ads-in-progress-2 {
  background-color: #ffff;
  padding: 10px 20px;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

/* .ask-audit-1 a {
  text-decoration: none;
}

.ask-audit-2 a {
  text-decoration: none;
} */

.ask-audit-1 {
  padding-top: 15px;
  padding-bottom: 15px;
  width: 80%;
  margin: 0 auto;
}

.ask-audit-2 {
  padding-top: 15px;
  padding-bottom: 15px;
  width: 80%;
  margin: 0 auto;
}

.description-of-audit:hover {
  background-color: #03273d5c !important;
  color: black !important;
}

.description-create-ads:hover {
  background-color: #03273d5c !important;

}

@media (max-width:991px) {
  .free-audit-ads {
    flex-direction: column;

  }

  .icon-free-audit {
    width: 100%;
    margin-bottom: 30px;
  }

  .create-ads {
    width: 100%;
  }

  .ads-in-progress-1 {
    width: 15%;
  }

  .description-of-audit {
    width: 85%;
  }

  .ads-in-progress-2 {
    width: 15%;
  }

  .description-create-ads {
    width: 85%;
  }
}

@media (max-width:768px) {
  .ads-in-progress-2 {
    width: 100%;
    padding: 0 20px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .ads-in-progress-1 {
    width: 100%;
    padding: 0 20px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .description-of-audit {
    width: 100%;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .description-create-ads {
    width: 100%;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .icon-free-audit {
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
  }

  .create-ads {
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  margin-top: 90px;
  padding-top: 30px;

}

.contact .info-box {
  color: #000000;
  text-align: start;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 30px 30px 30px;
  background: #fff;
  border-radius: 15px;
}

.contact .info-box i {
  font-size: 32px;
  color: #03273d;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 1.5rem;
  font-size: 17px;
  margin-bottom: 0;
}

.contact .audit-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
  border-radius: 15px;
}

.contact .audit-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .audit-email-form .error-message br+br {
  margin-top: 25px;
}

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

.contact .audit-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .audit-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .audit-email-form input,
.contact .audit-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
}

.contact .audit-email-form input:focus,
.contact .audit-email-form textarea:focus {
  border-color: #8ea5ca;
}

.contact .audit-email-form input {
  padding: 10px 15px;
}

.contact .audit-email-form textarea {
  padding: 12px 15px;
}

.contact .audit-email-form button[type=submit] {
  background: #03273d;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .audit-email-form button[type=submit]:hover {
  background: #0a22f6;
}

.contact .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.contact .image-style {
  margin-top: 15px;
}

.background-img01 {
  left: 0;
  right: 0;
  z-index: 0;
}

.contact .image-appointment {
  position: relative;
}

.contact .background-img01::before {
  background-image: URL(/assets/img/take-appointment.jpg);
  background-size: cover;
  background-position-y: -7rem;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  /*height: 280px;*/
  height: 113%;
  opacity: 0.2;
  background-repeat: no-repeat;
}

@media (max-width:991px) {
  #contact {
    margin-top: 75px;
  }

  .contact .new-functionality {
    margin-top: 25px;
  }
}

@media(max-width:768px) {
  .contact .new-functionality {
    flex-direction: column;
    text-align: center;
  }

  .contact .new-functionality-1 {
    margin-top: 14px;
  }

  .contact .background-img01:before {
    background-image: none;

  }
}

/*--------------------------------------------------------------
# Section create-ads-google
--------------------------------------------------------------*/
#create-ads-google {
  margin-top: 140px;
}

#create-ads-google .ads-google {
  display: flex;
  align-items: center;
  justify-content: space-between
}

#create-ads-google .how-create-ads {
  width: 50%;
}

#create-ads-google .image-search-google {
  width: 40%;
}

#create-ads-google .image-from-search {
  width: 100%;
}

.rules {
  margin-top: 50px;
}

@media(max-width:991px) {
  #create-ads-google .ads-google {
    flex-direction: column;
  }

  #create-ads-google .how-create-ads {
    width: 100%;
    margin-bottom: 40px;
  }

  #create-ads-google .image-search-google {
    width: 100%;
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Section marketing
--------------------------------------------------------------*/
#marketing {
  margin-top: 120px;
}

#marketing .service-marketing {
  display: flex;
  align-items: center;
  padding-bottom: 150px;
  justify-content: space-between;
}

#marketing .advisor-marketing {
  width: 50%;
  text-align: center;
}

#marketing .image-advisor {
  width: 45%;
}

#marketing .image-meeting {
  width: 100%;
}

.experience-ppm {
  margin-top: 60px;
}

@media(max-width:991px) {

  #marketing .service-marketing {
    flex-direction: column;
    padding-bottom: 50px;
  }

  #marketing .advisor-marketing {
    width: 100%;
    padding-bottom: 50px;
  }

  #marketing .image-advisor {
    width: 100%;
  }

  .resume {
    flex-direction: column;
    margin-left: -50px !important;
  }

}

/*--------------------------------------------------------------
# Page contact
--------------------------------------------------------------*/

.contact-company {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #000000;
}

.contact-company::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #aabbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

@media(max-width : 991px) {
  .email-contact {
    margin-top: 26px;
  }
}

@media(max-width : 768px) {
  .email-contact {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Section construction web
--------------------------------------------------------------*/
#construction-web {
  margin-top: 140px;
}

#construction-web .create-web-site {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#construction-web .description-create {
  width: 40%;
  text-align: center;
}

#construction-web .construction {
  width: 50%;
}

#construction-web .image-construction {
  width: 100%;
}

@media(max-width : 991px) {
  #construction-web .create-web-site {
    flex-direction: column;
  }

  #construction-web .description-create {
    width: 100%;
    margin-bottom: 30px;
  }

  #construction-web .construction {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Section solution-web
--------------------------------------------------------------*/
#solution-web {
  margin-bottom: 46px;
}

#solution-web .resume-web {
  font-size: 1.25rem;
  padding: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

#solution-web .data-web {
  display: flex;
  justify-content: space-between;
}

#solution-web .img-create-web-site {
  width: 8rem;
  margin-bottom: 20px;
}

#solution-web .create,
.visibility,
.performance,
.accompagnement {
  text-align: center;
  width: 21%;
}

#solution-web .obtain-estimation {

  margin-top: 45px;
  padding-bottom: 45px;
  display: flex;
  justify-content: center;
  gap: 45px;
}

@media(max-width : 991px) {
  #solution-web .data-web {
    flex-direction: column;
  }

  #solution-web .create,
  .visibility,
  .performance,
  .accompagnement {
    width: 100%;
  }

  #solution-web .obtain-estimation {
    flex-direction: column;
  }

  #solution-web .btn-1 {
    margin-bottom: 25px;
  }

  #solution-web .btn-1,
  .btn-2 {
    text-align: center;
  }

  #solution-web .obtain-estimation {
    gap: 0;
  }
}

/*--------------------------------------------------------------
# Section carte qrcode
--------------------------------------------------------------*/
#carte-qrcode {
  margin-top: 140px;

}

#carte-qrcode .create-qrcode {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#carte-qrcode .only-qrcode {
  width: 44%;
  text-align: center;
}

#carte-qrcode .image-qrcode {
  width: 50%;
  text-align: center;
}

#carte-qrcode .picture-qrcode {
  width: 63%;
}

#carte-qrcode .digital-card {
  text-align: center;
}

#carte-qrcode .advantage-qrcode {
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
}

#carte-qrcode .img-advantage {
  width: 8rem;
  margin-bottom: 20px;
}

#carte-qrcode .advantage-qrcode-1,
.advantage-qrcode-2,
.advantage-qrcode-3,
.advantage-qrcode-4 {
  text-align: center;
  width: 21%;

}

#carte-qrcode .digital {
  margin-top: 25px;
  text-align: center;
  margin-left: 40px;
}

#carte-qrcode .btn-qrcode {
  display: flex;
  justify-content: center;
  gap: 55px;
  padding-top: 25px;
  padding-bottom: 60px;

}

@media(max-width : 991px) {
  #carte-qrcode .create-qrcode {
    flex-direction: column;
  }

  #carte-qrcode .only-qrcode {
    width: 100%;
  }

  #carte-qrcode .image-qrcode {
    width: 100%;
  }

  #carte-qrcode .advantage-qrcode-1,
  .advantage-qrcode-2,
  .advantage-qrcode-3,
  .advantage-qrcode-4 {
    text-align: center;
    width: 100%;

  }

  #carte-qrcode .advantage-qrcode {
    flex-direction: column;
  }

  #carte-qrcode .btn-qrcode {
    flex-direction: column;
    gap: 0;
    padding-bottom: 30px;
  }

  #carte-qrcode .btn-contact {
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Style page demande destimation sea
--------------------------------------------------------------*/
.request-pricing {
  margin-top: 140px;
}

/*--------------------------------------------------------------
# Section first campaign
--------------------------------------------------------------*/
#first-campaign {
  margin-top: 140px;
  margin-bottom: 50px;
}

#first-campaign .google-ads-campaign {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#first-campaign .create-campaign {
  width: 49%;
}

#first-campaign .image-campaign {
  width: 40%;
}

#first-campaign .img-of-compaign {
  width: 58%;
}

@media (max-width : 991px) {
  #first-campaign .google-ads-campaign {
    flex-direction: column;
  }

  #first-campaign .create-campaign {
    width: 100%;
    margin-bottom: 20px;
  }

  #first-campaign .image-campaign {
    width: 100%;
    text-align: center;

  }

  #first-campaign .img-of-compaign {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Section organization-ads
--------------------------------------------------------------*/
#organization-ads .image-interface-google {
  width: 64%;
  margin-top: 20px;
  margin-bottom: 20px;
}

#organization-ads .organization-ads-google {
  width: 47%;
  margin-top: 20px;
  margin-bottom: 20px;
}

#organization-ads .youtube-video {
  margin-top: 50px;
  margin-bottom: 50px;
}

/*--------------------------------------------------------------
# Style page demande-destimation-sea
--------------------------------------------------------------*/
.send-style {
  margin-bottom: 25px;
}

/*--------------------------------------------------------------
# Section sponsored links
--------------------------------------------------------------*/
#sponsored-links {
  margin-top: 140px;
}

#sponsored-links .links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 70px;
}

#sponsored-links .natural-reference {
  width: 49%;
}

#sponsored-links .image-seo {
  width: 46%;
}

#sponsored-links .img-of-seo {
  width: 100%;
}

#sponsored-links .image-seo-sea {
  width: 47%;
  margin-bottom: 30px;
  margin-top: 30px;
}

#sponsored-links .picture-seo-sea {
  width: 24%;
  margin-bottom: 30px;
  margin-top: 30px;
}

@media(max-width:991px) {
  #sponsored-links .links {
    flex-direction: column;
  }

  #sponsored-links .links {

    margin-bottom: 40px;
  }

  #sponsored-links .natural-reference {
    width: 100%;
    margin-bottom: 30px;
  }

  #sponsored-links .image-seo {
    width: 100%;
    text-align: center;
  }

  #sponsored-links .image-seo-sea {
    width: 60%;
  }

  #sponsored-links .picture-seo-sea {
    width: 40%;
  }
}

@media(max-width:991px) {
  #sponsored-links .image-seo-sea {
    width: 80%;
  }

  #sponsored-links .picture-seo-sea {
    width: 55%;
  }
}

/*--------------------------------------------------------------
# Section free training
--------------------------------------------------------------*/
#free-training {
  margin-top: 140px;
}

#free-training .card-training {
  text-align: center;
  width: 26%;
  padding-bottom: 15px;
  border: 1px solid #dee2e6;
  border-radius: 5px
}

#free-training .image-training {
  width: 100%;
  border-radius: 5px
}

#free-training .image-training {
  margin-bottom: 18px;
}

#free-training .all-training {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  justify-content: center;
}

@media(max-width : 991px) {
  #free-training .all-training {
    gap: 26px;


  }

  #free-training .card-training {
    width: 42%;
  }
}

@media(max-width:768px) {
  #free-training .all-training {
    flex-direction: column;
  }

  #free-training .card-training {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Section how-it-works
--------------------------------------------------------------*/
#how-it-works {
  margin-top: 140px;
}

#how-it-works .ads-works {
  display: flex;
  justify-content: space-around;

}

#how-it-works .ads-google {
  width: 49%;
}

#how-it-works .image-ads-google {
  width: 46%;
}

#how-it-works .img-ads {
  width: 100%;
}

#how-it-works .google-ads-work {
  margin-top: 50px;
}

#how-it-works .image-ads-1 {
  margin-top: 25px;
  margin-bottom: 25px;
  width: 78%;
}

#how-it-works .image-ads-2 {
  margin-top: 25px;
  margin-bottom: 25px;
  width: 37%;
}

@media(max-width:991px) {
  #how-it-works .ads-works {
    flex-direction: column;

  }

  #how-it-works .ads-google {
    width: 100%;
  }

  #how-it-works .image-ads-google {
    width: 100%;
    margin-top: 25px;
  }

  #how-it-works .image-ads-1 {
    width: 100%
  }

  #how-it-works .image-ads-2 {
    width: 80%
  }
}

/*--------------------------------------------------------------
# Section seo-steps
--------------------------------------------------------------*/
#seo-steps {
  margin-top: 140px;
}

#seo-steps .what-is-seo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#seo-steps .resume-of-seo {
  width: 49%;
}

#seo-steps .picture-seo-1 {
  width: 46%;
  text-align: center;

}

#seo-steps .image-of-seo-1 {
  width: 61%;
}

#seo-steps .seo-sea {
  margin-top: 40px;
  text-align: center;
  margin-bottom: 20px;
}

#seo-steps .image-maps {
  width: 31%;
  margin-top: 30px;
}

@media(max-width:991px) {
  #seo-steps .what-is-seo {
    flex-direction: column;
  }

  #seo-steps .resume-of-seo {
    width: 100%;
  }

  #seo-steps .picture-seo-1 {
    width: 100%;
    margin-top: 50px;
  }

  #seo-steps .image-maps {
    width: 70%;
  }
}

/*--------------------------------------------------------------
# Section optimize ads google
--------------------------------------------------------------*/
#optimize-ads-google {
  margin-top: 140px;
}

#optimize-ads-google .optimize-ads {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

#optimize-ads-google .how-optimize-ads {
  width: 49%;
}

#optimize-ads-google .image-optimize-ads {
  width: 46%;
  text-align: center;
}

#optimize-ads-google .picture-tools-ads {
  width: 74%;
}

#optimize-ads-google .ads-description-1 {
  padding-left: 30px;
  margin: 0;
}

#optimize-ads-google .ads-description-2 {
  padding-left: 30px;

}

@media(max-width:991px) {
  #optimize-ads-google .optimize-ads {
    flex-direction: column;
  }

  #optimize-ads-google .how-optimize-ads {
    width: 100%;
    margin-bottom: 40px;
  }

  #optimize-ads-google .image-optimize-ads {
    width: 100%;
    text-align: center;
  }

  #optimize-ads-google .picture-tools-ads {
    width: 80%;
  }

  #optimize-ads-google .ads-description-1 {
    padding-left: 10px;

  }

  #optimize-ads-google .ads-description-2 {
    padding-left: 10px;

  }
}

/*--------------------------------------------------------------
# Section ppm
--------------------------------------------------------------*/
#ppm {
  margin-top: 140px;
}

#ppm .digital-marketing {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

#ppm .image-web-scam {
  width: 53%;
  border-radius: 6px;
}

#ppm .web-scam {
  width: 49%;
  text-align: center;
}

#ppm .description-web-scam {
  width: 46%;
  text-align: center;
}

#ppm .actors-marketing {
  padding-top: 50px;
}

#ppm .actors-marketing li span {
  font-weight: 400;
  list-style-type: none;
}

#ppm .actors-marketing li::marker {
  display: none;
}

#ppm .technical-level {
  margin-top: 30px;
  padding-bottom: 50px;
}

#ppm .technical-level p {
  padding: 0;
  margin: 0;
}

#ppm .adwords {
  margin-top: 30px;
}

#ppm .adwords p li span {
  font-weight: 400;
}

@media(max-width : 991px) {
  #ppm .digital-marketing {
    flex-direction: column;
  }

  #ppm .web-scam {
    width: 100%;
    order: 1;
  }

  #ppm .description-web-scam {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Section sea-google
--------------------------------------------------------------*/
#sea-google {
  margin-top: 140px;
}

#sea-google .what-is-sea {
  display: flex;
}

#sea-google .resume-of-sea {
  width: 50%;
}

#sea-google .image-of-sea {
  width: 48%;
}

#sea-google .picture-sea-google {
  width: 100%;
}

.description-sea-google {
  margin-top: 35px;
}

.image-sea-google {
  width: 78.5%;
  margin-bottom: 30px;
  margin-top: 30px;
}

@media(max-width : 991px) {
  #sea-google .what-is-sea {
    flex-direction: column;
  }

  #sea-google .resume-of-sea {
    width: 100%;
  }

  #sea-google .image-of-sea {
    width: 100%;
    margin-top: 50px;
  }

  .image-sea-google {
    width: 100%;

  }

}

@media (max-width : 768px) {
  .strengths-seo {
    margin-left: -26px !important;
  }
}

/*--------------------------------------------------------------
# Section web marketing
--------------------------------------------------------------*/
#web-marketing {
  margin-top: 140px;
}

#web-marketing .ppm-marketing {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

#web-marketing .description-marketing {
  width: 49%;
}

#web-marketing .picture-marketing {
  width: 50%;
}

#web-marketing .type-marketing-1 {
  margin-bottom: 20px;
}

#web-marketing .type-marketing-2 {
  color: #000000;
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  font-weight: var(--e-global-typography-text-font-weight);
  background-color: #f5fafd;

}

#web-marketing .btn-marketing {
  margin-top: 40px;
}

#web-marketing .image-stat {
  width: 100%;
}

@media(max-width : 991px) {
  #web-marketing .ppm-marketing {
    flex-direction: column;
  }

  #web-marketing .description-marketing {
    width: 100%;
    margin-bottom: 30px;
  }

  #web-marketing .picture-marketing {
    width: 100%;
    text-align: center;
  }
}

@media(max-width : 768px) {
  .marketing-strategy {
    margin-left: -26px !important;
  }
}

/*--------------------------------------------------------------
# Section What is ppm
--------------------------------------------------------------*/
#what-is-ppm {
  margin-top: 92px;
}

#what-is-ppm .btn-ppm {
  margin-top: 20px;
  margin-bottom: 20px;
}

#what-is-ppm .description-ppm {

  padding-top: 20px;
}

#what-is-ppm .background-img02::before {
  background-image: URL(/assets/img/work-office-pole-positionmarket.jpg);
  background-size: cover;
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: 0.5;
  background-position-y: 43rem;
}

#what-is-ppm .title-ppm {
  padding-top: 22px;
}

#what-is-ppm .choose-ppm {
  text-align: center;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
}

#what-is-ppm .style-image-choice {
  width: 110%;
}

#what-is-ppm .choice-ppm {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
}



#what-is-ppm .style-choice {
  padding-bottom: 40px;
}

#what-is-ppm .choice-1,
.choice-2,
.choice-3,
.choice-4,
.choice-5 {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 30%;
}

#what-is-ppm .image-choice-1,
.image-choice-2,
.image-choice-3,
.image-choice-4,
.image-choice-5 {
  width: 20%;
}

#what-is-ppm .partner-google {
  text-align: center;
}

#what-is-ppm .contact-info {
  padding-bottom: 25px;
}

#what-is-ppm .method {
  padding-top: 30px;
  padding-bottom: 30px;
}

#what-is-ppm .method-ppm {
  text-align: center;
}

#what-is-ppm .our-method {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

}

#what-is-ppm .details-method {
  width: 14%;
  text-align: center;
}

#what-is-ppm .picture-method {
  width: 69%;
}

#what-is-ppm .video-ppm {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 20px;
}

#what-is-ppm .confidence {
  padding-left: 15px;
}

@media(max-width : 991px) {
  #what-is-ppm .description-ppm {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 35px;
    position: relative;
  }
  #what-is-ppm .style-collapse{
  width: 100%;
  }
  #what-is-ppm .background-img02:before {
    /* background-position-y: 49rem */
    background-image: none;
    background-color: #ebebe9;
  }

  #what-is-ppm .choose-ppm {
    padding-bottom: 15px;
  }

  #what-is-ppm .choice-ppm {
    flex-direction: column;
    margin-top: -55px;
    margin-left: 15px;
  }

  #what-is-ppm .choice-1{
    width: 100%;
    animation: none ;
  }
  #what-is-ppm .choice-2{
    width: 100%;
    animation: none ;
  }
  #what-is-ppm .choice-3{
    width: 100%;
    animation: none ;
  }
  #what-is-ppm .choice-4{
    width: 100%;
    animation: none ;
  }
  #what-is-ppm .choice-5{
    width: 100%;
    animation: none ;
  }

  #what-is-ppm .image-choice-1,
  .image-choice-2,
  .image-choice-3,
  .image-choice-4,
  .image-choice-5 {
    width: 10%;
  }

  #what-is-ppm .btn-info-ppm {
    display: flex;
    flex-direction: column;

  }

  #what-is-ppm .btn-info-ppm a:nth-child(1) {
    margin-bottom: 20px;
  }

  #what-is-ppm .btn-audit-ppm {
    margin-left: 0 !important;
  }

  #what-is-ppm .contact-ppm {
    margin-right: 0 !important;
  }

  #what-is-ppm .our-method {
    flex-direction: column;
  }

  #what-is-ppm .details-method {
    width: 100%;
  }

  #what-is-ppm .picture-method {
    width: 30%;
  }

  #what-is-ppm .title-method {
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (max-width :768px) {

  #what-is-ppm .choice-1,
  .choice-2,
  .choice-3,
  .choice-4,
  .choice-5 {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }

  #what-is-ppm .description-choice-1,
  .description-choice-2,
  .description-choice-3,
  .description-choice-4,
  .description-choice-5 {
    text-align: center;
  }

  #what-is-ppm .video-ppm video {
    width: 96%;
  }
}

@media(max-width:500px) {

  #what-is-ppm .image-choice-1,
  .image-choice-2,
  .image-choice-3,
  .image-choice-4,
  .image-choice-5 {
    width: 15%;
  }
}

/*--------------------------------------------------------------
# Section Recruitment ppm
--------------------------------------------------------------*/
#recruitment-ppm {
  margin-top: 140px;
}

#recruitment-ppm .recruitment-agency {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#recruitment-ppm .recruitment-in-ppm {
  text-align: center;
  width: 40%;
}

#recruitment-ppm .picture-recruitment {
  width: 100%;
}

#recruitment-ppm .picture-of-job {
  width: 89%;
  height: 20vh;
}

#recruitment-ppm .description-recruitment {
  text-align: center;
  padding-left: 55px;
  padding-right: 55px;
  padding-top: 50px;
}

#recruitment-ppm .all-card-job {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 45px;
}

#recruitment-ppm .details-job {
  background-color: #ffff;
  padding: 20px 10px 20px 15px;

}

/* #recruitment-ppm .title-style-job {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
} */
#recruitment-ppm .card-job {
  width: 18rem;
  word-wrap: break-word;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.175);
  border-radius: 0.375rem;
  height: 100%;

}

#recruitment-ppm .picture-of-job {
  width: 100%;
  object-fit: cover;
}

#recruitment-ppm .details-jobs {
margin-top: 60px;
margin-bottom: 60px;
}

@media(max-width : 991px) {
  #recruitment-ppm .recruitment-agency {
    flex-direction: column;
  }

  #recruitment-ppm .recruitment-in-ppm {
    width: 100%;
    margin-bottom: 30px;
  }

  #recruitment-ppm .all-card-job {
    flex-direction: column;
    justify-content: center;
  }

  #recruitment-ppm .card-job {
    width: 60%;
    margin: 0 auto;
  }
}

@media(max-width:768px) {
  #recruitment-ppm .card-job {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Section Audit Seo
--------------------------------------------------------------*/
#audit-seo {
  margin-top: 140px;
}

#audit-seo .description-of-seo {
  display: flex;
  justify-content: space-between;
}

#audit-seo .details-seo {
  width: 45%;
  text-align: center;
}

#audit-seo .image-explain {
  width: 50%;
}

#audit-seo .picture-explain {
  width: 100%;
  object-fit: cover;
}

#audit-seo .title-seo,
.resume-seo {
  margin-bottom: 25px;
}

#audit-seo .steps-seo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px 255px;
  padding-top: 50px;
}

#audit-seo .step-seo-1,
.step-seo-2,
.step-seo-3,
.step-seo-4,
.step-seo-5 {
  width: 15%;
  text-align: center;
}

#audit-seo .picture-steps-seo {
  width: 73%;
}

#audit-seo .description-step-seo {
  margin-top: 10px;
  text-align: center;
}

#audit-seo .contact-client {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

@media(max-width:991px) {
  #audit-seo .description-of-seo {
    flex-direction: column;
  }

  #audit-seo .image-explain {
    width: 100%;
    text-align: center;
  }

  #audit-seo .details-seo {
    margin-bottom: 30px;
    width: 100%;
  }

  #audit-seo .make-seo {
    margin: 10px 0 0 0 !important;
  }

  #audit-seo .step-seo-1,
  .step-seo-2,
  .step-seo-3,
  .step-seo-4,
  .step-seo-5 {
    width: 100%;

  }

  #audit-seo .steps-seo {
    flex-direction: column;
  }

  #audit-seo .picture-steps-seo {
    width: 18%;
  }

  #audit-seo .description-step-seo {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*--------------------------------------------------------------
# Section paid Referencing
--------------------------------------------------------------*/
#paid-referencing {
  margin-top: 140px;
}

#paid-referencing .paid-sea {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#paid-referencing .picture-of-sea {
  width: 100%;
}

#paid-referencing .sea-description {
  text-align: center;
}

#paid-referencing .picture-sea {
  width: 100%;
}

#paid-referencing .ppm-solution {
  padding-top: 40px;
}

#paid-referencing .ppm-solution-step {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  padding-bottom: 50px;
}

#paid-referencing .solution-step-1,
.solution-step-2,
.solution-step-3,
.solution-step-4,
.solution-step-5 {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 30%;

}

#paid-referencing .icon-solution {
  width: 7.2rem;
  object-fit: cover;
}

#paid-referencing .contact-us {
  padding-bottom: 65px;
}

@media (max-width :991px) {
  #paid-referencing .paid-sea {
    flex-direction: column;
  }

  #paid-referencing .sea-description {
    margin-bottom: 30px;
  }

  #paid-referencing .ppm-solution-step {
    flex-direction: column;
  }

  #paid-referencing .solution-step-1,
  .solution-step-2,
  .solution-step-3,
  .solution-step-4,
  .solution-step-5 {
    width: 100%;
    animation: none !important;
    padding-left: 15px;
  }

  #paid-referencing .offers {
    padding-left: 15px;
    padding-right: 15px;
  }

  #paid-referencing .offers-ppm {
    padding-bottom: 0 !important;
  }

  .btn-info-ppm {
    display: flex;
    flex-direction: column;
  }

  #paid-referencing .btn-info-ppm a:nth-child(1) {
    margin-bottom: 20px;
    margin-right: 0 !important;
  }

  #paid-referencing .btn-audit-ppm {
    margin-left: 0 !important;
  }
}

@media (max-width :768px) {

  #paid-referencing .solution-step-1,
  .solution-step-2,
  .solution-step-3,
  .solution-step-4,
  .solution-step-5 {
    flex-direction: column;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*--------------------------------------------------------------
# Section Remarketing google
--------------------------------------------------------------*/
#remarketing-google {
  margin-top: 140px;
}

#remarketing-google .remarketing {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#remarketing-google .resume-remarketing {
  width: 49%;
  text-align: center;
}

#remarketing-google .image-google {
  width: 49%;
  text-align: center;
}

#remarketing-google .picture-google {
  width: 65%;
}

@media(max-width :991px) {
  #remarketing-google .remarketing {
    flex-direction: column;
  }

  #remarketing-google .resume-remarketing {
    width: 100%;
    margin-bottom: 20px;
  }

  #remarketing-google .image-google {
    width: 100%;
  }

  #remarketing-google .picture-google {
    width: 55%;
  }
}

/*--------------------------------------------------------------
# Section Ads banners
--------------------------------------------------------------*/
#ads-banners .text-ads {
  padding-top: 40px;
}

#ads-banners .description-ads-marketing {
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}


#ads-banners .steps-ads {
  display: flex;
  gap: 12px;
  justify-content: center;

}

#ads-banners .step-1,
.step-2,
.step-3,
.step-4 p {

  font-family: Krub, sans-serif;
  color: #fff;
  font-weight: 600;

}

#ads-banners .step-1 {
  background-color: #bc4e4f;
  min-height: 90px;
  width: 19%;
  border-radius: 12px;
  position: relative;

}

#ads-banners .step-2 {
  background-color: #f29619;
  min-height: 90px;
  width: 19%;
  border-radius: 12px;
}

#ads-banners .step-3 {
  background-color: #76d561;
  min-height: 90px;
  width: 19%;
  border-radius: 12px;
}

#ads-banners .step-4 {
  background-color: #2cabe2;
  min-height: 90px;
  width: 19%;
  border-radius: 12px;
}

#ads-banners .content-step {
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

#ads-banners .name-step {
  margin: 0;
}

#ads-banners .title-ads {
  text-align: center;
  margin-bottom: 30px;
}

#ads-banners .image-steps-ads {
  margin-top: 50px;
  text-align: center;
}

#ads-banners .description-ads {
  margin-top: 50px;
  font-family: Krub;
}

#ads-banners.resume-google-display {
  margin-left: -12px;
}

#ads-banners .image-steps-ads {
  margin-top: 50px;
  text-align: center;
}

#ads-banners .image-ads {
  width: 53%;
}

#ads-banners .plan-remarketing {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#ads-banners .card-marketing {
  width: 20%;
  text-align: center;
}

#ads-banners .title-card-marekting {
  margin-top: 10px;
}

#ads-banners .picture-remarketing {
  width: 49%;
}

#ads-banners .obtain-estimation {
  margin-top: 45px;
  padding-bottom: 45px;
  display: flex;
  justify-content: center;
  gap: 45px;
}

@media(max-width:1400px) {
  #ads-banners .image-ads {
    width: 60%;
  }
}

@media (max-width:991px) {
  #ads-banners .steps-ads {
    flex-direction: column;
  }

  #ads-banners .step-1 {
    width: 100%;
  }

  #ads-banners .step-2 {
    width: 100%;
  }

  #ads-banners .step-3 {
    width: 100%;
  }

  #ads-banners .step-4 {
    width: 100%;
  }

  #ads-banners .image-ads {
    width: 72%;
  }

  #ads-banners .plan-remarketing {
    flex-direction: column;
  }

  #ads-banners .card-marketing {
    width: 100%;
  }

  #ads-banners .picture-remarketing {
    width: 23%;
  }

  #ads-banners .obtain-estimation {
    gap: 0;
    flex-direction: column;
  }

  #ads-banners .btn-1 {
    margin-bottom: 25px;
  }

  #ads-banners .btn-1,
  .btn-2 {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Section price seo
--------------------------------------------------------------*/
#price-seo {
  margin-top: 140px;
}

#price-seo .price-seo-google {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#price-seo .resume-price {
  width: 50%;
  text-align: center;
}

#price-seo .price-image {
  width: 49%;
}

#price-seo .picture-price {
  width: 100%;
}

#price-seo .all-card-price {
  display: flex;
  justify-content: space-around;
  padding-bottom: 40px;
  padding-top: 40px;
  margin-top: 110px;
}

#price-seo .card-price {
  width: 11.8rem;
  background-color: #fff;
  border-radius: 0.375rem;
  border: 1px solid rgba(0, 0, 0, 0.175)
}

#price-seo .picture-card {
  width: 11.6rem;
}

#price-seo .style-picture-seo {
  height: 21vh;
  width: 11.6rem;
}
#price-seo .description-functionality {
  margin-top: 60px;
  padding-left: 15px;
  padding-right: 15px;
}


@media(max-width :991px) {
  #price-seo .price-seo-google {
    flex-direction: column;
  }

  #price-seo .resume-price {
    width: 100%;
  }

  #price-seo .price-image {
    width: 100%;
    margin-top: 30px;
  }
  #price-seo .card-price {
 
    margin: 0 auto;
    margin-bottom: 25px;
  }
}
  @media(max-width : 768px) {
  #price-seo .all-card-price {
    flex-direction: column;
    justify-content: center;
  }
}
