/* Root Variables and Body Styles */
:root {
  --primary-color: #010cee;
  --secondary-color: rgba(217, 255, 0, 1);
  --white-color: #ffffff;
  --text-white: #fff;
  --text-black: rgba(24, 36, 80, 1);
  --font-stack: "Poppins", sans-serif;
}

body,
html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-stack);
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0 20px 20px 0;
}

.hide-mobile {
  display: block;
}

.hide-desktop {
  display: none;
}

.text-blue {
  font-family: var(--font-stack);
  color: var(--primary-color);
}

.navbar-landing {
  font-family: var(--font-stack);
  background-color: transparent;
  padding: 60px 0 0 0;
}

.nav-link {
  font-family: var(--font-stack);
  color: var(--text-white);
}

.navbar-landing .navbar-nav .nav-item .nav-link:hover,
.navbar-landing .navbar-nav .nav-item .nav-link.active {
  color: var(--secondary-color) !important;
}

.btn-auth .nav-link {
  font-weight: 400;
  line-height: 24px;
  color: var(--text-white);
}

.btn-auth .nav-link:hover {
  color: var(--secondary-color) !important;
}

.btn {
  margin-left: 10px;
}

.btn-outline-white {
  color: var(--text-black);
  background-color: var(--white-color);
  font-weight: 400;
}

.btn-outline-white:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.navbar-landing .navbar-nav .nav-item .nav-link {
  font-weight: 400;
  line-height: 24px;
  color: var(--text-white);
}

.search-box input {
  color: #354DA9 !important;
}

/* Pour les navigateurs modernes */
.search-box input::placeholder {
  color: #354DA9 !important;
}

.search-box input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #354DA9 !important;
}

.search-box input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #354DA9 !important;
}

.search-box input::-webkit-input-placeholder {
  /* Chrome, Safari, Opera */
  color: #354DA9 !important;
}

.search-box input::-moz-placeholder {
  /* Firefox 19+ */
  color: #354DA9 !important;
}


.layout-wrapper {
  position: relative;
  background-size: cover;
  color: var(--text-black);
  background: url("../images/bg-header.png") center center no-repeat;
  background-size: cover;
  padding: 0;
}

.banner-section {
  background-color: transparent;
  padding: 0;
}

.banner-section .container {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

.banner-section h1 {
  font-family: var(--font-stack);

  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
}

.banner-section .text-success {
  color: var(--secondary-color) !important;
}

.banner-section .search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 1.5rem;
  width: 100%;
  padding: 7px;
}

.banner-section .search-box {
  position: relative;
  flex-grow: 1;
}

.banner-section .search-box input {
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #ced4da;
  height: 100%;
  box-sizing: border-box;
  font-style: italic;
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
  padding-left: 32px;
}

.banner-section .btn-yellow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  box-sizing: border-box;
  gap: 10px;
}

.banner-section .btn-yellow img {
  width: 18px;
}

.banner-section .bi {
  color: rgba(255, 199, 0, 1);
  font-size: 16px;
}

.banner-section p {
  margin-top: 1.5rem;
  color: var(--text-white);
  font-weight: 600;
  font-size: 19px;
}

.banner-section p .stars {
  color: #ffd700;
  margin-right: 10px;
}

.bg-yellow {
  position: absolute;
  width: 100%;
  height: 200px;
  bottom: 0;
  background: var(--secondary-color);
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 11, 241);
  background: linear-gradient(45deg, rgba(0, 11, 241, 0.9) 0%, rgba(13, 17, 108, 0.9) 100%);
}

.display-6 {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
}

.features-section {
  background-color: rgba(20, 25, 181, 1);
  padding: 60px 0;
  color: #fff;
  text-align: center;
}

.feature-box {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  text-align: center;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.icon-box {
  width: 80px;
  height: 80px;
  margin: 23px auto -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-box img {
  width: 70%;
  height: auto;
}

.icon-hover {
  display: none;
}

.feature-box:hover .icon-hover {
  display: block;
}

.feature-box:hover .icon-default {
  display: none;
}

.feature-title {
  line-height: 30px;
  font-family: var(--font-stack);
  font-size: 20px;
  margin-bottom: 20px;
  color: #d1fb01;
  transition: color 0.3s ease-in-out;
}

.feature-description {
  font-family: var(--font-stack);
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  margin-bottom: 50px;
  transition: color 0.3s ease-in-out;
}

.features-section .col-lg-4:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 150px;
  background: url("../images/separator.png") center repeat-y;
}

/* Mobile Menu Styles */
/* Styles de base pour le menu mobile */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  font-weight: 400;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay .mobile-menu {
  background-color: #1419b5;
  width: 100%;
  padding: 30px;
  color: #fff;
  box-sizing: border-box;
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.mobile-menu-overlay .mobile-menu.show {
  transform: translateX(0);
}

.mobile-menu-overlay .mobile-menu-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mobile-menu-overlay .mobile-menu-brand {
  display: flex;
  align-items: center;
}

.mobile-menu-overlay .mobile-menu-brand i {
  font-size: 24px;
  color: #fff;
  margin-right: 10px;
}

.mobile-menu-overlay .mobile-menu-back {
  position: absolute;
  left: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
}

.mobile-menu-overlay .mobile-menu-nav {
  list-style: none;
  padding: 20px 0;
  text-align: center;
}

.mobile-menu-overlay .mobile-menu-nav li {
  margin: 15px 0;
}

.mobile-menu-overlay .mobile-menu-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.mobile-menu-overlay .mobile-menu-contact {
  margin-top: 20px;
  text-align: center;
}

.mobile-menu-overlay .contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.mobile-menu-overlay .contact-item i {
  font-size: 24px;
  color: var(--secondary-color);
  margin-right: 15px;
}

.mobile-menu-overlay .contact-item div {
  font-size: 14px;
}

.mobile-menu-overlay .contact-item span {
  display: block;
  font-weight: 400;
  padding: 10px 0;
  color: var(--secondary-color);
}

.mobile-menu-overlay .contact-item p {
  margin: 0;
  line-height: 1.5;
}

.mobile-menu-overlay.show {
  display: block;
}


/* Show mobile menu when overlay is visible */
/* .mobile-menu-overlay.show {
  display: flex;
} */

@media (max-width: 992px) {
  .features-section .col-lg-4:not(:last-child)::after {
    display: none;
  }
}

/* Highlight Span */
.highlight {
  border-radius: 25px;
  position: absolute;
  top: 130%;
  left: 105px;
  width: 136px;
  height: 6px;
  background-color: #D1FB01;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.feature-box:hover .highlight {
  opacity: 1;
}


/* Section Styles */
.user-experience-section {
  z-index: 1;
  background: linear-gradient(180deg, #C7F0FD 0%, rgba(255, 255, 255, .4) 100%);
  position: relative;
  text-align: center;
  color: #000;
  margin-bottom: 8%;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #010cee;
  margin-bottom: 1rem;
}

.user-experience .section-title {
  font-size: 49px;
}

.user-experience .section-subtitle {
  font-size: 19px;
}

.user-experience-section .section-subtitle {
  width: 75%;
  font-size: 1rem;
  color: #555;
  margin: auto auto 2rem auto;
}

.btn-primary {
  z-index: 3;
  margin-left: 0px;
  background-color: #010cee;
  border-color: #010cee;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-primary:hover span {

  color: var(--primary-color);
}


.arrow-icon {
  margin-left: 0.5rem;
  color: white;
}

.desk-image {
  background-size: contain;
  position: relative;
}

.bg-desk-yellow {
  padding: 177px 0;
  background-color: var(--secondary-color);
}

.border-dotted-around {
  width: 100%;
  height: 320px;
  background: url(../images/around-border.png) no-repeat top center;
  position: absolute;
  top: -30%;
  background-size: cover;
  z-index: 1;
}

.border-dotted-around-gp {
  transform: scale(1.3);
  width: 76%;
  height: 320px;
  background: url(../images/curve-contact.png) center top / contain no-repeat;
  position: absolute;
  top: -3%;
  z-index: 0;
  left: 5%;
}


.desk-image img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 74%;
  z-index: 2;
}

.img-precess {
  width: 100%;
  margin: auto;
}

/* process-section */
.bg-group365 {
  height: 500px;
  position: relative;
  background: url(../images/section-process.png) center top / contain no-repeat;
  margin-top: 100px;
}

.h-max-with {
  position: relative;
  top: -40px;
  max-width: 44%;
  margin: 10px auto;
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 41.61px;
  text-align: left;
  color: #0500FF;
}

.bg-group365::before {
  content: url(../images/Vector2.png);
  position: absolute;
  left: -146px;
  top: -130px;
}

.bg-group365::after {
  content: url(../images/Vector3.png);
  position: absolute;
  right: -118px;
  top: 42px;
}

.imgswith {
  width: 32px;
  margin: auto;
}

.spntitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18.17px;
  font-weight: 800;
  line-height: 41.61px;
  color: #0500FF;
}

.p-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.divpaiment,
.divLivraison,
.divExpedition,
.divRamassage {
  position: relative;
}

.divRamassage {
  left: 35px;
}

.divExpedition {
  top: 85px;
  left: 130px;
}

.divLivraison {
  top: 63px;
  left: 180px;
}

.divpaiment {
  top: 120px;
  left: 170px;
}

/* client success section  */
.client-success-section {
  padding-bottom: 250px;
  background: linear-gradient(360deg, #C7F0FD 0%, rgba(255, 255, 255, 0) 100%);
  position: relative;
  z-index: 1;
}

.client-success-section .client-success-title {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 41.61px;
  text-align: left;
  color: #0500FF;
}

.client-success-section .client-success-description {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 23.35px;
  text-align: left;
  color: #182450;
}

.client-success-section .swiper-container {
  width: 100%;
  height: 100%;
}

.client-success-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-success-section .testmondialrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85%;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
}

.client-success-section .testimonial-box {
  background-color: #1419b5;
  color: white;
  border-radius: 15px;
  padding: 60px;
  text-align: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.client-success-section .testimonial-content {
  width: 100%;
  position: relative;
  max-width: 740px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.client-success-section .curve-image {
  position: absolute;
  width: 100%;
  top: 15px;
  left: 0;
  z-index: 1;
  height: auto;
}

.client-success-section .quotation-marks-left,
.client-success-section .quotation-marks-right {
  position: absolute;
  width: 50px;
  z-index: 1;
}

.client-success-section .quotation-marks-left {
  left: 240px;
  top: 90px;
}

.client-success-section .quotation-marks-right {
  right: 170px;
  bottom: 30px;
}

.client-success-section .swiper-horizontal>.swiper-pagination-bullets,
.client-success-section .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 55px) !important;
}

.client-success-section .testimonial-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.client-success-section .testimonial-author {
  display: flex;
  align-items: center;
  z-index: 1;
}

.client-success-section .author-image {
  width: 69px;
  height: 69px;
  border-radius: 50%;
  margin-right: 10px;
}

.client-success-section .author-info {
  text-align: left;
}

.client-success-section .author-info h5 {
  font-family: var(--font-stack);
  color: white;
  margin: 0;
  font-weight: 600;
}

.client-success-section .author-info p {
  font-family: var(--font-stack);
  font-weight: 300;
  margin: 0;
}

.client-success-section .testimonial-text {
  font-family: var(--font-stack);
  font-weight: 300;
  line-height: 1.5;
  font-size: 17.5px;
  margin: 35px;
  z-index: 1;
  width: 82%;
}

.client-success-section .swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.client-success-section .swiper-pagination .swiper-pagination-bullet {
  background-color: #4B7BD1;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.client-success-section .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #D9FF00;
  width: 40px;
  border-radius: 5px;
}

/* Delivery section */
.delivery-section {
  background-color: #f9fafb;
  margin-top: 130px;
}

.delivery-desktop {
  display: block;
}

.delivery-mobile {
  display: none;
}

.delivery-section .container {
  margin-top: 75px;
  display: flex;
  align-items: center;
}

.delivery-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.delivery-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 41.61px;
  text-align: left;
  color: #0500FF;
}

.delivery-section p {
  width: 80%;
  margin-top: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: #4a4a4a;
}

.delivery-section .secondParagraph {
  color: #1044FC;
  ;
}

.delivery-section .img-fluid {
  margin-top: 30px;
  max-width: 100%;
  height: auto;
}

.delivery-section .col-lg-6 {
  flex: 1;
}

.custom-slide {
  opacity: 0.3;
  transition: opacity 0.3s;
}

.custom-slide.active {
  opacity: 1;
}

.custom-slide.next,
.custom-slide.prev {
  opacity: 0.5;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.delivery-section .swiper-slide.custom-slide.next {
  opacity: 1 !important;
}

.delivery-section .swiper-slide.swiper-slide-prev {
  opacity: 0.6 !important;
}

.delivery-section .swiper-slide.swiper-slide-next {
  opacity: 0.6 !important;
}

.delivery-section .swiper-wrapper .swiper-slide.custom-slide:nth-child(4) {
  opacity: 0.5 !important;
}

.delivery-section .swiper-slide.custom-slide {
  opacity: 0.3 !important;
}

.success-section {
  background-color: #f9f9f9;
}

.success-section .row {
  align-items: center;
}

.success-section .title-top {
  font-size: 1.5rem;
  font-weight: 600;
  color: #182450;
}

.success-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #010cee;
  margin-bottom: 1rem;
  margin-top: 0;
}

.success-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.success-features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.success-features li {
  font-weight: bold;
  font-size: 1rem;
  color: #010cee;
  margin-bottom: 0.5rem;
}

.success-features i {
  color: #d1fb01;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .success-section .row {
    text-align: center;
  }

  .success-section .col-lg-6 {
    margin-bottom: 2rem;
  }
}

.warehouse-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.warehouse-section .row {
  align-items: center;
}

.warehouse-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #010cee;
}

.warehouse-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}



@media (max-width: 768px) {
  .warehouse-section .row {
    text-align: center;
  }

  .warehouse-section .col-lg-6 {
    margin-bottom: 2rem;
  }

  .warehouse-section img {
    max-width: 100%;
    height: auto;
  }
}

.bg-expedition {
  background: url("images/bg_expedition.png") no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.bg-expedition::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.bg-expedition h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
}

.table {
  color: #000;
  background-color: #fff;
}

.pagination .page-link {
  color: #010cee;
}

.support-section {
  padding: 160px 0;
  background: linear-gradient(180deg, #C7F0FD 0%, rgba(255, 255, 255, 0) 35%);
}

.support-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.support-section img {
  max-width: 100%;
  height: auto;
}

.bloc-right {
  padding-left: 60px;
}

.support-section h2 {
  font-size: 2rem;
  color: #010cee;
  margin-bottom: 1rem;
  margin-top: 48%;
}

.support-section p {
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1.1rem;
  margin-top: 1rem;
  width: 90%;
}

.contact-section {
  padding: 0;
  position: relative;
}

.contact-section .section-title {
  color: var(--secondary-color);

}

.contact-section .blue-part .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact-section .mobile {
  display: none;
}

.contact-section .blue-part .contact-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.blue-part {
  background-color: #0a0fbf;
  color: var(--white-color);
  padding: 350px 0;
  padding-top: 40px !important;
}

.green-part {
  background-color: var(--secondary-color);
  height: 55vh;
}

.green-part .row {
  margin-left: -15px;
  margin-right: -15px;
  position: absolute;
  width: 80%;
  top: 45%;
  left: 12%;
}

.green-part .col-md-8,
.green-part .col-md-4 {
  padding-left: 0px;
  padding-right: 0px;
}

.green-part .col-md-8>.contact-form {
  margin-bottom: 0;
}

.green-part .col-md-4>iframe {
  margin-bottom: 0;
}

.section-title {
  font-size: 35px;
  margin-bottom: 20px;
  margin-top: 50px;
}

.custom-border-left {
  border-radius: 10px 0 0 10px;
}

.custom-border-right {
  border-radius: 0 10px 10px 0;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  width: 50%;
}


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

.contact-info .contact-info-title {
  font-weight: bold;
  margin-top: 10px;
}

.contact-info img {
  height: 50px;
  margin-bottom: 10px;
}

.contact-form {
  background-color: var(--white-color);
  padding: 5% 15% 3%;
  border-radius: 15px 0 0 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.contact-form .btn-primary {
  display: block;
  width: 100px;
  margin: 0 auto;
  background-color: var(--primary-color);
  border: none;
  color: var(--white-color);
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.contact-form .btn-primary:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.contact-form .form-row {
  display: flex;
  justify-content: space-between;
}

.contact-form .form-group {
  margin-bottom: 20px;
  width: 100%;
}

.contact-form .form-group.col-md-6 {
  width: 48%;
}

.contact-form .form-group textarea {
  resize: none;
  height: 150px;
}

.contact-form .form-group label {
  display: block;
  margin-bottom: 5px;
}

.contact-form .form-control {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.footer-section {
  background-color: #1419B5;
  padding: 20px 0;
  color: var(--white-color);
}

.footer-section .social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.footer-section .social-icons li {
  display: inline;
  margin: 15px;

}

.footer-section .social-icons a {
  display: inline-block;
  color: var(--secondary-color);
}

.footer-section p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--white-color);
  text-align: center;
}

.footer-section .text-end {
  text-align: center;
}

.footer-section .container .align-items-center {
  padding: 15px;
  align-items: center;
  text-align: center;
}

.mr-top {
  margin-top: 100px;
}

body {
  background-color: #f8f9fa;
  color: #343a40;
}

.custom-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
}

.custom-content {
  text-align: left;
}

.custom-heading {
  color: #010cee;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 120px;
}

.custom-text {
  font-size: 1.1rem;
  width: 85%;
  margin-top: 1rem;
}

.custom-btn {
  margin-top: 1.5rem;
  color: #fff;
  background-color: #001e80;
  border-color: #001e80;
  ;
}

.custom-image {
  top: 140px;
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-left: 2rem;
  z-index: 4;
}

.custom-image-rectongle {
  position: relative;
  width: 100%;
  top: 60px;
  max-width: 500px;
  margin-left: 2rem;
  z-index: 3;
}

.custom-image img {
  width: 100%;
  border-radius: 5px;
}

.second-section {
  background-color: #1419B5;
  color: white;
  padding: 50px 0;
  text-align: center;
  position: relative;
  min-height: 700px;
  margin-top: -70px;
}

.second-section .section-title-white {
  color: var(--text-white);
  padding: 62px;
  font-weight: 800;
  font-size: 38px;
  text-align: center;
  max-width: 75%;
  margin: auto;
}

.second-section .flag-background {
  background: url('../images/drapaux.png') no-repeat left center;
  background-size: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.second-section .img-drapeau {
  display: none;
}

.second-section .custom-content {
  display: none;
}

.second-section .text-table-container {
  position: absolute;
  right: 10%;
  bottom: -8%;
  height: 600px;
  z-index: 3;
  min-width: 35%;
}

.second-section .table-container {
  background-color: white;
  color: black;
  border-radius: 35px;
  padding: 20px;
  margin: 0 auto;
  max-width: 550px;
}

.second-section table {
  width: 100%;
  margin-top: 40px;
}

.field-search {
  max-width: 60%;
  margin: 10px auto 20px;
  display: flex;
  justify-content: center;
}

.input-group-text {
  background-color: transparent;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-color: #6699DE;
}

.form-control.search-input {
  border-radius: 0 0.375rem 0.375rem 0;
  border-left: none;
  box-shadow: none;
  padding: 10px 16px;
  border-color: #6699DE;
}

.form-control.search-input .bi-search {
  font-size: 16px;
}

.input-group-prepend {
  display: flex;
  align-items: center;
}

.table th {
  background-color: #f8f9fa;
  color: #0080FF;
  font-weight: bold;
  border-top: none;
}

.table .col-ville {
  width: 50%;
}


.table th,
.table td {
  text-align: left;
  vertical-align: middle;
  padding: 12px 15px;
  border: none;
  background: none;
}

.table tr {
  border-top: none;
}

.table td {
  font-weight: 600;
}

.pagination {
  display: flex;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  border-radius: 0.375rem;
}

.pagination .page-item {
  display: inline-block;
}

.pagination .page-link {
  color: #1419B5;
  background-color: #fff;
  border: 1px solid #dee2e6;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-item:first-child .page-link {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.pagination .page-item:last-child .page-link {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: not-allowed;
}

.pagination .page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #1419B5;
  border-color: #1419B5;
}

.input-group-text {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.form-control {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-left: none;
}

/* Cacher la scroll bar pour les navigateurs Webkit (Chrome, Safari, etc.) */
.custom-menu-slider::-webkit-scrollbar {
  display: none;
}

/* Cacher la scroll bar pour les navigateurs utilisant les préfixes spécifiques */
.custom-menu-slider {
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}

.custom-menu-slider .swiper-pagination {
  display: none;
}

.custom-menu-slider {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
  background-color: #f8f9fa;
}

.custom-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0.5;
}

.custom-slide img {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

.custom-slide span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #6c757d;
}

.active-slide {
  opacity: 1;
}

.active-slide span {
  font-weight: bold;
  color: #343a40;
}

.custom-pagination .swiper-pagination-bullet {
  background-color: #6c757d;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.custom-pagination .swiper-pagination-bullet-active {
  background-color: #343a40;
  width: 40px;
  border-radius: 5px;
}

/* cursor */
