
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: black
  ; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1C5844
  ; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #428bca; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff ;  /* #ffffff The default color of the main navmenu links */
  --nav-hover-color: #007c8a ; /* #007c8a Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1d1c1c; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #1C5844
  ; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #428bca; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1C5844
  ;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1C5844
  ;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

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

.pulsating-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;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #1C5844
  ;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header-banner {
  display: flex;
  justify-content: center;  /* Center horizontally */
  align-items: center;  /* Center vertically */
  text-align: center;  /* Center text */
  height: 100px;  /* Adjust as needed */
  background: linear-gradient(90deg, #1C3037, #325962);
}
.header-text h3,
.header-text h2,
.header-text h4 {
  margin: 5px 0;
  color: white;
  font-weight: bold;
}

.header-banner img {
  height: 80px;
  margin-right: 20px;
}
/*-----*/
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #1C5844
  ;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
    
  }

 /* Start hidden */
.navmenu li {
  opacity: 0;
  animation: fadeInOneByOne 0.7s forwards;
}

/* Animation keyframes */
@keyframes fadeInOneByOne {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 13px;
    font-family: var(--nav-font);
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  
  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

   /* Navmenu - Responsive for screens smaller than 1200px */
@media (max-width: 1199px) {
  .navmenu {
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 80px);
    background-color: #ffffff;
    padding: 1rem;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    overflow-y: auto;
  }

  /* Show menu when active */
  .navmenu.active {
    transform: translateX(0);
  }

  .navmenu ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .navmenu li {
    opacity: 1;
    animation: none;
  }

  .navmenu a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #eee;
  }

  .mobile-nav-toggle {
    position: absolute;
    top: 25px;
    right: 20px;
    font-size: 28px;
    color: var(--nav-color, #333);
    cursor: pointer;
    z-index: 1000;
    background: none;
    border: none;
  }

  /* Prevent background scroll when menu is active */
  body.menu-open {
    overflow: hidden;
  }
}
/* Navmenu - Mobile 
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
*/


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

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

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 85px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 15px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 50px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
.home {
  padding: 0;
}

.home .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.home img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
/**/

/**/

.home .carousel-item {
  position: relative;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.home .carousel-item:before {
  content: "";
 /* background: color-mix(in srgb, var(--background-color), transparent 30%);*/
  position: absolute;
  inset: 0;
  z-index: 2;
}

.home .carousel-item::before {
  content: "";
 /* background-color: color-mix(in srgb, var(--background-color), transparent 30%);*/
  position: absolute;
  inset: 0;
}

.home .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}
.home .carousel-container .title {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: left;
  align-items: left;
  flex-direction: column;
  z-index: 3;
}


.home h2 {
  margin-bottom: 30px;
  font-size: 45px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .home h2 {
    font-size: 30px;
  }
}

.home p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .home h2,
  .home p {
    max-width: 60%;
  }
}
/*Mouna*/
.button-group {
  display: flex;
  gap: 1rem; /* space between buttons it was 1.5*/
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  justify-content: left; /* center them horizontally it was center*/
  margin: 20px 0;
  margin-top: 20px;
}
.btn-get-started {
  background-color: #1C5844;
  color: white;
  font-size: 1rem;          /* Bigger text it was 1.2*/
  padding: 16px 32px;         /* Bigger button size */
  border-radius: 40px;        /* Rounded corners */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(28, 88, 68, 0.4); /* custom green shadow */
}

.btn-get-started:hover {
  background-color: #007C8A;
  transform: scale(1.05);
  color: white;
}

.home .carousel-control-prev,
.home .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.home .carousel-control-prev:focus,
.home .carousel-control-next:focus {
  opacity: 0.5;
}

.home .carousel-control-prev:hover,
.home .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .home .carousel-control-prev,
  .home .carousel-control-next {
    width: 5%;
  }
}

.home .carousel-control-next-icon,
.home .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.home .carousel-indicators {
  list-style: none;
}

.home .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Agence Section
--------------------------------------------------------------*/
.agence .content h3 {
  font-size: 2.2rem;
  font-weight: 700;
}

.agence .content ul {
  list-style: none;
  padding: 0;
}

.agence .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.agence .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.agence .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.agence .content ul p {
  font-size: 15px;
}

.agence .content p:last-child {
  margin-bottom: 0;
}

.agence .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 44px;
  float: left;
  line-height: 0;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  margin-left: 60px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.services .service-item .icon {
  margin-right: 20px;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  line-height: 0;
  transition: 0.3s;
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

.services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.services .service-item .description {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.services .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.services .service-item .readmore i {
  margin-left: 8px;
}

.services .service-item:hover .title,
.services .service-item:hover .readmore,
.services .service-item:hover .icon i {
  color: var(--accent-color);
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 10px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.service-item .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #0d6efd;
}

.service-item .title {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-item .description {
  font-size: 14px;
  color: #555;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 150px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Direction  Section
--------------------------------------------------------------*/
.directions .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
html[dir="ar"] ol {
  list-style-type: arabic-indic;
}

.directions .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.directions .portfolio-filters li:hover,
.directions .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.directions .portfolio-filters li:first-child {
  margin-left: 0;
}

.directions .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .directions .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.directions .portfolio-content {
  position: relative;
  overflow: hidden;
}

.directions .portfolio-content img {
  transition: 0.3s;
}

.directions .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.directions .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.directions .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.directions .portfolio-content .portfolio-info .preview-link,
.directions .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.directions .portfolio-content .portfolio-info .preview-link:hover,
.directions .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.directions .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.directions .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.directions .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.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;
  transform: scale(-1, -1);
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# News Details Section
--------------------------------------------------------------*/
  
/* Container de la carte */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
 
}

/* Effet hover */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Image */
.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Contenu */
.card-content {
  padding: 30px;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.card-text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 12px;
}

/* Pied de carte */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-button {
  display: inline-block;
  font-size: 0.9rem;
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.card-button:hover {
  color: #0056b3;
}
/*--------------------------------------------------------------

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/


.header {
  position: fixed;
 
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}

.header.scrolled {
   top: 0;
  background-color: #1C5844; /* Dark green like the example */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: adds depth */
}
/* Set up the card */
.service-card {
  position: relative;
  height: 400px; /* Initial height */
  overflow: hidden;
  transition: height 1s ease; /* Slow transition for card expansion */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* On hover: expand the card */
.service-card:hover {
  height: auto; /* Allow the height to grow and show more content */
}

/* Service item inside the card */
.service-item {
  display: flex;
  flex-direction: column;
}

/* Description inside card */
.service-item .description {
  height: 150px; /* Start with a limited height */
  overflow: hidden;
  opacity: 0; /* Initially invisible */
  visibility: hidden; /* Hidden until hover */
  transition: opacity 1s ease, visibility 0s ease 1s; /* Fade in text slowly */
}

/* On hover: description expands fully */
.service-card:hover .description {
  height: auto; /* Allow text to fully expand */
  opacity: 1; /* Fade in the text */
  visibility: visible; /* Make sure it's visible */
  transition: opacity 1s ease, visibility 0s ease 0s; /* Smooth fade-in on hover */
}

.imgsameD{
  height: 150px;
  max-height: 150px;
}







/*Card missions*/
.service-card {
  position: relative;
  overflow: hidden;
  background-color: #f4f4f4;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 300px; /* Set fixed height */
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
}

.service-item {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left; /* ⬅️ Text align left */
  transition: all 0.3s ease;
}

.icon {
  font-size: 40px;
  color: #0d6efd;
  margin-bottom: 20px;
}

.title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;

}

.description {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  opacity: 0;
  visibility: hidden; /* Hide description by default */
  height: 0; /* Set height to 0 to avoid space allocation */
  transition: all 0.3s ease; /* Smooth transition */
  margin-top: 20px;
  text-align: left; /* ⬅️ Important: description text left */
}

/*Missions*/
#readMoreBtn {
    background-color: #1C5844;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  #readMoreBtn:hover {
    background-color: #1C5844;
    transform: translateY(-2px);
  }
  /*Second btn*/
  #readMoreBtn1 {
    background-color: #1C5844;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  #readMoreBtn1:hover {
    background-color: #1C5844;
    transform: translateY(-2px);
  }
  /*third btn*/
  #readMoreBtn2 {
    background-color: #1C5844;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  #readMoreBtn2:hover {
    background-color: #1C5844;
    transform: translateY(-2px);
  }
  /*4th btn*/
  #readMoreBtn3 {
    background-color: #1C5844;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  #readMoreBtn3:hover {
    background-color: #1C5844;
    transform: translateY(-2px);
  }


.angled-section {
  display: flex;
  flex-wrap: wrap;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  background: #f1f3f5;
  max-width: 1200px;
}

.angled-content {
  flex: 1 1 50%;
  padding: 40px 30px;
}

.angled-content h2 {
  font-weight: 500;
  margin-bottom: 20px;
}

.angled-content ul {
  padding-left: 20px;
  margin-top: 20px;
}

.angled-content li {
  margin-bottom: 10px;
  color: #1d3557;
}

.angled-image {
  flex: 1 1 30%;
   /* Replace this with your hosted image */
  background-size: cover;
  background-position: center;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  min-height: 300px;
}

@media (max-width: 768px) {
  .angled-section {
    flex-direction: column;
  }

  .angled-image {
    clip-path: none;
    min-height: 250px;
  }
}
/**/
.swiper-wrapper {
  direction: ltr;
}

.wrapper{
  max-width: 1000px;
  padding: 20px 10px;
  margin: 0 50px 30px;
  overflow: hidden;
}
.wrapper .card{
  /*width: 350px;*/
  height: auto;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 10px rgba(0 ,0,0,0.05);
  transition: transform 0.3s ease;
}
.wrapper .card:hover{
  transform: translateY(-10px);
}
.card .card-image {
  position: relative;
}
.card .card-image img{
  width: 100%;
  border-radius: 22px;
  padding: 10px;
  aspect-ratio: 16 /9;
  object-fit: cover;
}
.card .card-image .card-tag{
  position: absolute;
  left: 25px;
  top: 25px;
  /*color: #6366f1;*/
  font-size: 0.75rem;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 15px ;
  background: rgba(255,255,255, 0.5);
}
.card .card-profile img{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #ffff;
  box-shadow: 0 2px 5px rgba(0 ,0,0,0.1);
}
.card .card-profile .card-profile-info{
  display: flex;
  flex-direction: column;
}
.card .card-profile .card-profile-name{
  font-size: 0.875rem;
  font-weight: 600;
  color: #747474;
}

.card .card-content{
  flex :1;
  display: flex;
  flex-direction: column;
  padding: 10px 25px 25px;
}
.card .card-content .card-title{
  color: #435246;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}
.card .card-content .card-text{
  color: #747474;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
}
.card .card-content .card-footer{
  display: flex;
  align-items: center;
  padding-top: 15px;
  margin-top: auto;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);

}
.card .card-content .card-footer{
  display: flex;
  align-items: center;
}
.card .card-footer .card-button{
  color: #fff;
  padding :10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.81rem;
  text-decoration: none;
  background: linear-gradient(135deg, #1C5844 0%, rgba(28, 88, 68, 0.8) 100%);

  box-shadow: 0 8px 15px rgba(28, 88, 68, 0.8);
  transition: all 0.3s ease;
}
.card .card-footer .card-button:hover{
 transform: translateY(-3px); 
 box-shadow: 0 8px 15px rgba(28, 88, 68, 0.8);
}

.wrapper .swiper-pagination-bullet{
  height: 15px;
  width: 15px;
  overflow: hidden;
  opacity: 1;
  background: #949398;
}
/*.wrapper .swiper-pagination-bullet-active::before{
  content: "";
  position: absolute;
  left:0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #6366f1;
  transform: scaleX(0);
  transform-origin: left center;
  animation: autoplay-loading 4s linear forwards ;
}
@keyframes autoplay-loading {
  100%{
    transform: scaleX(1);
  }
    
}*/

/*Modele*/
.modal {
  display: none; /* show with JS */
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
  text-align: center; /* ✅ Center all text inside */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center; /* ✅ Center icon and button horizontally */
}

.modal-icon {
  width: 60px;
  height: 60px;
  border: 2px solid #6fd6f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #6fd6f4;
  margin-bottom: 10px;
}

.modal-title {
  color: #31b9f3;
  font-weight: bold;
  font-size: 24px;
  margin: 10px 0 20px;
}

.modal-content p {
  color: #444;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center; /* ✅ Just to ensure even long lines are centered */
}

.cta-button {
  background-color: #1f71b8;
  color: white;
  text-decoration: none;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 6px;
  transition: background 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #125a9e;
  color: white;
}
/**/
  .animated-heading {
  text-align: center;
  font-size: 2.5 rem;
  color: white;
  font-weight: bolder;
  animation: fadeInUp 2s ease forwards;
  opacity: 0;
}

.animated-heading span {
  color: #0e381e; /* Highlighted letters */
  
}

/* Fade-in and slide up effect */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

 
/*From index html*/

#logo img {
  height: 70px;  /* Adjust this value to your preferred height */
  width: auto;   /* Keeps the aspect ratio */
  display: block; /* Removes any inline spacing */
}
/*Creation de l'agence*/
.fade-in {
  animation: fadeIn 3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.carousel-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 1;
}
.animated-list li:hover {
  color: #1C5844;
  transform: scale(1.03);
  transition: transform 0.3s ease, color 0.3s ease;
}

/*direction*/

    .algeria-section {
      background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
      color: white;
      padding: 60px 20px;
    }

    .content {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      max-width: 1200px;
      margin: auto;
    }

    .map-container {
      position: relative;
      flex: 1 1 600px;
      text-align: center;
      margin: 20px auto;
    }

    .algeria-map {
      width: 100%;
      max-width: 600px;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .region {
      position: absolute;
      display: flex;
      flex-direction: column;
      align-items: center;
      transform: translate(-50%, -100%);
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .region:hover {
      transform: translate(-50%, -110%) scale(1.05);
    }

    .region-label {
      font-size: 0.85rem;
      font-weight: bold;
      color: #fff;
      margin-bottom: 4px;
      background-color: #1C5844;
      padding: 4px 10px;
      border-radius: 12px;
      white-space: nowrap;
    }

    .map-pin {
      width: 24px;
      height: auto;
    }

    /* Positioning of each region */
    .centre { top: 7%; left: 55%; }
    .est { top: 10%; left: 67%; }
    .ouest { top: 12%; left: 40%; }
    .sud-est { top: 40%; left: 68%; }
    .sud-ouest { top: 47%; left: 25%; }
    .grand-sud { top: 70%; left: 60%; }


    