/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fdfbf7;
  color: #111;
  font-family: "Open Sans", sans-serif;
  min-height: 100%;
}

.section-header {
  text-align: left;
  padding-bottom: 0;
  margin-bottom: 0;
}

.section-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  letter-spacing: 2px;
  margin-bottom: 5px;
  color: #111;
  font-weight: 600;
}

.section-header p {
  max-width: 640px;
  color: #2e2e2e;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0 !important;
}

/* Réduire l'espacement entre section-header et le contenu suivant */
.section-header + .row,
.section-header + div > .row,
header.section-header ~ .row,
.section-header ~ .row.about-container,
.container > header.section-header ~ .row.about-container,
.section-header ~ * .row.about-container {
  margin-top: 10px !important;
}

/* Pour les conteneurs qui suivent directement un section-header */
.container > .section-header ~ .row {
  margin-top: 10px !important;
}

@media (max-width: 768px) {
  .section-header {
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .section-header h3 {
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 5px;
  }

  .section-header p {
    max-width: 100%;
    font-size: 14px;
    padding: 0 15px;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 576px) {
  .section-header {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .section-header h3 {
    font-size: 22px;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
  }

  .section-header p {
    font-size: 13px;
    padding: 0 10px;
    margin-bottom: 0 !important;
  }
}

a {
  color: #111;
  transition: 0.5s;
  text-decoration: none !important;
}

/*h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px; // Longueur de la ligne de soulignement //
  height: 3px; /* Épaisseur de la ligne de soulignement //
  background: #0b6bd3; /* Couleur de la ligne de soulignement //
  bottom: -5px; /* Ajustement de la position pour que la ligne soit alignée avec le bas du texte //
  left: 50%; /* Centrage horizontal //
  transform: translateX(-50%); /* Centrage horizontal //
}

#why-us h3::after {
  background: #fff !important; /* Couleur de la ligne de soulignement blanc //
}
#about h3::after {
  background: #fff !important; /* Couleur de la ligne de soulignement blanc //
}

#faq h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px; /* Longueur de la ligne de soulignement //
  height: 3px; /* Épaisseur de la ligne de soulignement //
  background: #0b6bd3; /* Couleur de la ligne de soulignement //
  bottom: -5px; /* Ajustement de la position pour que la ligne soit alignée avec le bas du texte //
  left: 50%; /* Centrage horizontal //
  transform: translateX(-50%); /* Centrage horizontal //
}*/

a:hover,
a:active,
a:focus {
  color: #f0c24c;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #111;
  color: #fdfbf7;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 10%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fdfbf7;
}

/* Prelaoder */

#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 #f2f2f2;
  border-top: 6px solid #111;
  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% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

@media (max-width: 768px) {
  #header {
    height: 70px;
    padding: 15px 0;
  }

  .main-nav a {
    font-size: 13px;
    padding: 8px 10px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  #main {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  body {
    font-size: 14px;
  }
}

#header.header-scrolled,
#header.header-pages {
  height: 60px;
  padding: 10px 0;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 7px 0;
  max-height: 26px;
}

.main-pages {
  margin-top: 60px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  min-height: 100vh;
  position: relative;
  padding: 190px 0 110px;
  background: linear-gradient(180deg, #fefbf6 0%, #ffffff 55%, #f6f1eb 100%);
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

#intro::before {
  content: "“";
  position: absolute;
  top: 100px;
  left: 40px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(90px, 6vw, 120px);
  color: rgba(0, 0, 0, 0.08);
  z-index: 0;
}

#intro::after,
#intro.clearfix::after,
section#intro::after,
section#intro.clearfix::after {
  display: none !important;
  content: "" !important;
  visibility: hidden !important;
}

#intro .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

#intro .intro-img,
#intro .intro-info {
  width: 48%;
}

#intro .intro-img {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

#intro .intro-img img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

#intro .intro-info h2 {
  color: #0e0e0e;
  margin: 0 0 30px;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.25;
  font-family: "Montserrat", sans-serif;
}

#intro .intro-info h2 span a {
  display: inline-block;
  padding: 0.1em 0.35em;
  border-radius: 6px;
  background: #f0c24c;
  color: #151515 !important;
  transition: background 0.3s ease;
  font-weight: 600;
}

#intro .intro-info .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 999px;
  border: 1px solid #161616;
  background: transparent;
  color: #161616;
  transition: all 0.3s ease;
  margin-top: 20px;
}

#intro .intro-info .btn-get-started i {
  margin-left: 8px;
}

#intro .intro-info .btn-get-started:hover {
  background: #161616;
  color: #fff;
  box-shadow: 0 15px 30px rgba(22, 22, 22, 0.15);
}

@media (max-width: 992px) {
  #intro {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: auto;
  }

  #intro .container {
    flex-direction: column;
    gap: 2rem;
  }

  #intro .intro-img,
  #intro .intro-info {
    width: 100%;
    text-align: left;
  }

  #intro .intro-img {
    order: -1;
    justify-content: center;
    margin-bottom: 20px;
  }

  #intro::before {
    top: 60px;
    left: 20px;
    font-size: 80px;
  }

  #intro .intro-info h2 {
    font-size: clamp(28px, 5vw, 42px);
    text-align: left;
  }
}

@media (max-width: 768px) {
  #intro {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  #intro::before {
    top: 50px;
    left: 15px;
    font-size: 70px;
  }

  #intro .intro-img img {
    max-width: 90%;
  }

  #intro .intro-info h2 {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 20px;
  }

  #intro .intro-info .btn-get-started {
    padding: 10px 24px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  #intro {
    padding-top: 90px;
    padding-bottom: 50px;
  }

  #intro::before {
    top: 40px;
    left: 15px;
    font-size: 60px;
  }

  #intro .intro-img {
    margin-bottom: 15px;
  }

  #intro .intro-img img {
    max-width: 85%;
  }

  #intro .intro-info h2 {
    font-size: clamp(20px, 7vw, 28px);
    line-height: 1.3;
    margin-bottom: 15px;
  }

  #intro .intro-info h2 span a {
    padding: 0.08em 0.25em;
    font-size: 0.95em;
  }

  #intro .intro-info .btn-get-started {
    width: 100%;
    padding: 12px 0;
    font-size: 14px;
    margin-top: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav>ul>li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #111;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav li:hover>a {
  color: #f0c24c;
  text-decoration: none;
}

.main-nav .active>a {
  color: #f0c24c;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.main-nav .active>a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 3px;
  background: #f0c24c;
  border-radius: 2px 2px 0 0;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #111;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active>a,
.main-nav .drop-down ul li:hover>a {
  color: #f0c24c;
}

.main-nav .drop-down>a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down>a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down>a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 35px 60px rgba(15, 15, 15, 0.15);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #111;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav li:hover>a {
  color: #f0c24c;
  text-decoration: none;
}

.mobile-nav .active>a {
  color: #f0c24c;
  text-decoration: none;
  font-weight: 600;
  background: rgba(240, 194, 76, 0.1);
  border-left: 3px solid #f0c24c;
}

.mobile-nav .drop-down>a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\f077";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down > ul {
  display: none;
  background: #fff;
  position: relative;
  z-index: 1000;
}

.mobile-nav .drop-down.active > ul {
  display: block;
  background: #fff;
  padding: 10px;
  position: relative;
  z-index: 1000;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav .drop-down > ul a {
  color: #111;
}

.mobile-nav .drop-down > ul a:hover {
  color: #f0c24c;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #111;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #111;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

/* Section with background
--------------------------------*/

.section-bg {
  background: #fdfbf7;
}

/* About Us Section
--------------------------------*/

#about {
  background: #fff;
  padding: 60px 0;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #f0c24c;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #f0c24c;
  font-size: 24px;
}

#about .about-container .icon-box:hover .icon {
  background: #f0c24c;
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#about .about-extra {
  padding-top: 60px;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

/* Services Section
--------------------------------*/

#services {
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#services .row {
  margin-left: 0;
  margin-right: 0;
  display: flex;
  flex-wrap: wrap;
}

#services .row [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  margin-bottom: 20px;
}

#services .row .offset-lg-1 {
  margin-left: 0 !important;
}

#services .box {
  padding: 25px 20px;
  position: relative;
  overflow: visible;
  border-radius: 18px;
  margin: 0;
  background: #fff;
  box-shadow: 0 20px 45px rgba(15, 15, 15, 0.05);
  transition: all 0.3s ease-in-out;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
}

#services .box:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(15, 15, 15, 0.08);
}

#services .icon {
  position: relative;
  left: auto;
  top: auto;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#services .icon i {
  font-size: 36px;
  line-height: 1;
  transition: 0.5s;
  display: block;
}

#services .title {
  margin-left: 0;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #f0c24c;
}

#services .description {
  font-size: 14px;
  margin-left: 0;
  line-height: 1.5;
  margin-bottom: 0;
  text-align: center;
  color: #494949;
}

#why-us {
  padding: 90px 0;
  background: transparent;
}

#why-us .row.row-eq-height {
  gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#why-us .row.row-eq-height .col-lg-4,
#why-us .row.row-eq-height .col-md-4 {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: calc(33.333% - 1.5rem);
}

@media (max-width: 992px) {
  #why-us {
    padding: 60px 0;
  }

  #why-us .row.row-eq-height .col-lg-4,
  #why-us .row.row-eq-height .col-md-4 {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  #why-us .card {
    padding: 30px 20px;
  }

  #why-us .counters {
    padding-top: 20px;
  }

  #why-us .counters span {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  #why-us {
    padding: 40px 0;
  }

  #why-us .card {
    padding: 25px 15px;
  }

  #why-us .card h5 {
    font-size: 18px;
  }

  #why-us .card i {
    font-size: 40px;
  }

  #why-us .counters span {
    font-size: 32px;
  }
}

#why-us .card {
  background: #ffffff;
  border: none;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  color: #1e1e1e;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 20px 45px rgba(15, 15, 15, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}

#why-us .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(15, 15, 15, 0.08);
}

#why-us .card i {
  font-size: 46px;
  color: #f0c24c;
  margin-bottom: 10px;
}

#why-us .card h5 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#why-us .card p {
  font-size: 15px;
  color: #494949;
  margin: 0;
  line-height: 1.6;
}

#why-us .card .readmore {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #111;
}

#why-us .counters {
  padding-top: 30px;
  margin-top: 10px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

#why-us .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 42px;
  display: block;
  color: #1b1b1b;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 14px;
  color: #5c5c5c;
  letter-spacing: 0.5px;
}

/* Portfolio Section
--------------------------------*/

#portfolio {
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #111;
  border-radius: 50px;
  text-transform: uppercase;
  background: #f7f3ee;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #f0c24c;
  color: #111;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #f0c24c;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #111;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #f0c24c;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: #003166;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/* Team Section
--------------------------------*/

#team {
  background: #fff;
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

#team .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: 50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 62, 128, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #f0c24c;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Partners Section
--------------------------------*/

#partners {
  padding: 90px 0;
  background: transparent;
}

#partners .partners-wrap {
  margin-bottom: 30px;
}

#partners .partners-wrap .row {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

#partners .partners-wrap [class*="col-"] {
  padding: 0 15px;
  margin-bottom: 30px;
}

/* Force 3 colonnes par ligne sur desktop (lg) */
@media (min-width: 992px) {
  #partners .partners-wrap .col-lg-3 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

#partners .client-logo {
  padding: 36px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 15, 15, 0.08);
  width: 100%;
  height: 100%;
  min-height: 160px;
  transition: transform 0.4s ease;
}

@media (max-width: 991px) {
  #partners {
    padding: 60px 0;
  }

  #partners .partners-wrap [class*="col-"] {
    margin-bottom: 20px;
  }
  
  #partners .client-logo {
    min-height: 140px;
    padding: 28px 24px;
  }
}

@media (max-width: 767px) {
  #partners {
    padding: 40px 0;
  }

  #partners .partners-wrap .row {
    justify-content: center;
  }

  #partners .partners-wrap [class*="col-"] {
    margin-bottom: 15px;
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  #partners .client-logo {
    min-height: 120px;
    padding: 20px 15px;
  }
  
  #partners .client-logo img {
    max-width: 100px;
  }
}

@media (max-width: 576px) {
  #partners {
    padding: 30px 0;
  }

  #partners .partners-wrap [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 12px;
  }
  
  #partners .client-logo {
    min-height: 110px;
    padding: 18px 12px;
  }
  
  #partners .client-logo img {
    max-width: 90px;
  }
}

#partners .client-logo:hover {
  transform: translateY(-6px);
}

#partners .client-logo img {
  max-width: 150px;
  filter: grayscale(0.3);
  transition: filter 0.4s ease, transform 0.4s ease;
}

#partners .client-logo:hover img {
  filter: none;
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
#faq {
  padding: 90px 0;
  background: transparent;
}

.accordion {
  background: transparent;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.image-box {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.image-box img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(15, 15, 15, 0.08);
}

.accordion-text {
  flex: 1 1 420px;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 35px 60px rgba(15, 15, 15, 0.08);
}

.title h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

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

.faq-text li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.faq-text li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.question {
  font-weight: 600;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
}

.faq-text i {
  color: #161616;
}

.faq-text p {
  color: #4c4c4c;
  margin: 12px 0;
  line-height: 1.6;
}

.faq-text .line {
  display: block;
  height: 2px;
  width: 40px;
  background: #f0c24c;
  margin-top: 8px;
}

.accordion-text [class*="col-"] {
  padding: 0 !important;
  margin: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
}

.accordion-text .card {
  overflow: visible;
  margin-top: 20px;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.accordion-text .card-body {
  padding: 0 !important;
  overflow: visible;
}

.accordion-text .readmore {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 8px;
  padding: 12px 20px;
  overflow: visible;
}

.accordion-text .readmore i {
  display: inline-block;
  margin-left: 4px;
  flex-shrink: 0;
}

/* Retirer le background de la card avec le lien "Other questions?" dans la page FAQ */
#faq .card .readmore,
#faq .card-body .readmore {
  background: transparent !important;
  padding: 0 !important;
}

#faq .card {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

@media (max-width: 992px) {
  #faq {
    padding: 60px 0;
  }

  .accordion {
    flex-direction: column;
  }

  .accordion-text {
    padding: 30px;
  }

  .title h3 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  #faq {
    padding: 40px 0;
  }

  .accordion-text,
  .image-box {
    flex: 1 1 100%;
  }

  .accordion {
    gap: 20px;
  }

  .accordion-text {
    padding: 20px;
  }

  .title h3 {
    font-size: 1.75rem;
  }

  .faq-text li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .accordion-text .readmore {
    padding: 10px 16px;
    font-size: 14px;
  }
}


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

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
}

.pricing h4 {
  font-size: 48px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 15px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #f0c24c;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #f0c24c;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 20px;
  color: #111;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #111;
  background: #fff;
}

.pricing .buy-btn:hover {
  background: #111;
  color: #fff;
}

.pricing .featured {
  border-top-color: #f0c24c;
}

.pricing .featured .buy-btn {
  background: #f0c24c;
  color: #111;
}

.pricing .featured .buy-btn:hover {
  background: #d4972c;
  color: #111;
}

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

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


/* Contact Section
--------------------------------*/

#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #111;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #111;
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.08);
}

#contact .social-links a:hover {
  background: #111;
  color: #fff;
}

#contact .info {
  color: #283d50;
}

#contact .info i {
  font-size: 32px;
  color: #f0c24c;
  float: left;
  line-height: 1;
}

#contact .info p {
  padding: 0 0 10px 36px;
  line-height: 28px;
  font-size: 14px;
}

#contact .form #sendmessage {
  color: #111;
  border: 1px solid #f0c24c;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

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

#contact .form button[type="submit"] {
  background: #f0c24c;
  border: 1px solid #f0c24c;
  border-radius: 10px;
  padding: 8px 30px;
  color: #111;
  transition: 0.3s;
}

#contact .form button[type="submit"]:hover {
  background: #d4972c;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #111;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

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

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

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #d0d0d0;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#footer .footer-top .social-links a:hover {
  background: #f0c24c;
  color: #111;
  border-color: #f0c24c;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 1px;
}

#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 li {
  padding: 8px 0;
}

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

#footer .footer-top .footer-links ul a {
  color: #d0d0d0;
  transition: color 0.3s ease;
}

#footer .footer-top .footer-links ul a:hover {
  color: #f0c24c;
}

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

#footer .footer-top .footer-contact p {
  line-height: 26px;
  color: #d0d0d0;
}

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

#footer .footer-top .footer-newsletter form {
  display: flex;
  gap: 0;
}

#footer .footer-top .footer-newsletter input[type="email"],
#footer .footer-top .footer-newsletter input[type="email_address"],
#footer .footer-top .footer-newsletter input[name="email_address"] {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  flex: 1;
  border-radius: 4px 0 0 4px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  height: 38px;
  box-sizing: border-box;
  border-right: none;
}

#footer .footer-top .footer-newsletter input[type="email"]:focus,
#footer .footer-top .footer-newsletter input[type="email_address"]:focus,
#footer .footer-top .footer-newsletter input[name="email_address"]:focus {
  outline: none;
  border-color: #f0c24c;
  background: rgba(255, 255, 255, 0.1);
}

#footer .footer-top .footer-newsletter input[type="email"]::placeholder,
#footer .footer-top .footer-newsletter input[type="email_address"]::placeholder,
#footer .footer-top .footer-newsletter input[name="email_address"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #f0c24c;
  border: 1px solid #f0c24c;
  flex: 0 0 auto;
  min-width: 120px;
  padding: 0;
  text-align: center;
  color: #111;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  height: 38px;
  line-height: 38px;
  box-sizing: border-box;
  font-size: 14px;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #d4972c;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #d0d0d0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #999;
}

#footer .credits a {
  color: #f0c24c;
  transition: color 0.3s ease;
}

#footer .credits a:hover {
  color: #fff;
}

/* Button "Submit youy application" */
.btn-submit-rounded {
  border-radius: 10px;
}

/* Boutons pour la page Drivers - même style que "Send Message" */
.btn-primary,
.btn-submit-rounded {
  background: #f0c24c !important;
  border: 1px solid #f0c24c !important;
  border-radius: 10px !important;
  padding: 8px 30px !important;
  color: #111 !important;
  transition: 0.3s !important;
  font-weight: 500 !important;
}

.btn-primary:hover,
.btn-submit-rounded:hover {
  background: #d4972c !important;
  border-color: #d4972c !important;
  color: #111 !important;
  cursor: pointer !important;
}

.btn-primary:focus,
.btn-submit-rounded:focus {
  background: #f0c24c !important;
  border-color: #f0c24c !important;
  color: #111 !important;
  box-shadow: 0 0 0 0.2rem rgba(240, 194, 76, 0.25) !important;
}

/* Div for "Requirements and work schedule" */
.custom-box {
  background-color: #fff !important;
  /* Couleur de fond */
  border-radius: 10px !important;
  /* Bords arrondis */
  padding: 10px !important;
  /* Espace intérieur */
  margin-bottom: 10px !important;
  box-shadow: 0px 0px 10px #fff !important;
  border: 2px solid #ccc !important;
  display: flex !important;
  /* Utilisation de flexbox */
  align-items: center;
  /* Centrage vertical */
}

.order-text {
  text-align: justify;
}

/* Fixe la taille de la div contenant les images avec une hauteur augmentée */
.carousel-image-wrapper {
  width: 100%; /* Occupe toute la largeur du parent */
  height: 450px; /* Hauteur par défaut pour les grands écrans */
  overflow: hidden; /* Cache toute partie de l'image qui déborde */
}

/* Ajuste les images pour qu'elles couvrent toute la div */
.carousel-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* S'assure que l'image couvre toute la div tout en conservant son rapport d'aspect */
  border-radius: 10px;
}

/* Ajoute des ajustements pour les écrans plus petits */
@media (max-width: 768px) {
  .carousel-image-wrapper {
    height: 300px; /* Hauteur réduite pour les écrans plus petits */
  }
}

@media (max-width: 576px) {
  .carousel-image-wrapper {
    height: 200px; /* Hauteur encore réduite pour les écrans très petits, comme les téléphones */
  }
}

.custom-carousel-item {
  background-color: rgba(0, 0, 0, 0.5); /* Fond sombre avec transparence */
  backdrop-filter: blur(5px); /* Effet de flou sur l'arrière-plan */
  padding: 10px; /* Réduit le padding pour les petits écrans */
  border-radius: 10px;
  max-width: 80%; /* Limite la largeur du texte à 80% de la div parente */
  margin: auto;
  text-align: center;
}

.all-div-carousel {
  max-width: 80%; /* Réduit la largeur maximale à 80% du parent */
  margin: 0 auto; /* Centre horizontalement la div */
}

.require {
  color: rgb(214, 58, 58);
}

.card-container {
  border-radius: 15px;
  /* Ajustez selon vos préférences */
  overflow: hidden;
  /* Assure que le contenu ne dépasse pas les coins arrondis */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Optionnel : Ajoute une ombre pour un effet de profondeur */
}

.card {
  border: none;
  /* Enlève la bordure par défaut des cartes Bootstrap */
  border-radius: 15px;
  /* Ajustez selon vos préférences */
}

.rounded-img {
  border-radius: 15px 15px 0 0;
  /* Arrondit seulement les coins supérieurs de l'image */
}

.shadow-container {
  border-radius: 15px;
  /* Bords arrondis pour la div principale */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* Ombre autour de la div principale */
  padding: 20px;
  /* Optionnel : Ajoute un peu d'espace autour du contenu à l'intérieur */
  background-color: white;
  /* Optionnel : Assure que le fond de la div est blanc */
}

.shadow-container {
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  background-color: white;
}

.text-card {
  background-color: #f8f9fa;
  /* Light grey background for better contrast */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* Add shadow to each card */
  border: 1px solid #e0e0e0;
  /* Light border to define edges */
}

.text-card .card-body {
  padding: 20px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #343a40;
  /* Darker text for better readability */
}

.card-text {
  font-size: 1rem;
  color: #495057;
  /* Medium-dark text for good readability */
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (max-width: 768px) {
  .div-caroussel {
    width: 100%;
    /* Le carousel devient pleinement responsive pour les écrans plus petits que 768px */
  }
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 991px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

  #intro {
    padding: 140px 0 60px 0;
  }

  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }

  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }

  #why-us .card {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media (max-width: 767px) {
  #intro .intro-info {
    width: 100%;
  }

  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .section-header p {
    width: 100%;
  }

  #testimonials .testimonial-item {
    text-align: center;
  }

  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
}

@media (max-width: 574px) {
  #intro {
    padding: 100px 0 20px 0;
  }
}
