/*

DIGITAL TREND

https://templatemo.com/tm-538-digital-trend

*/
  
  @font-face {
      font-family: 'Plain-Regular';
      src: url('../fonts/Plain-Regular.woff2') format('woff2'),
          url('../fonts/Plain-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
  }

  @font-face {
      font-family: 'Plain-Light';
      src: url('../fonts/Plain-Light.woff2') format('woff2'),
          url('../fonts/Plain-Light.woff') format('woff');
      font-weight: bold;
      font-style: normal;
  }

  @font-face {
      font-family: 'Plain-Bold';
      src: url('../fonts/Plain-Bold.woff2') format('woff2'),
          url('../fonts/Plain-Bold.woff') format('woff');
      font-weight: bold;
      font-style: normal;
  }

  @font-face {
    font-family: 'ylee MHIM';
    src: url('../fonts/ylee\ Mortal\ Heart\,\ Immortal\ Memory\ v.1.01.ttf') format('truetype');
}

  :root {
    --primary-color:        #39627B;
    --secondary-blue:       #5f97b1;
    --secondary-color:      #EAB76E;
    --white-color:          #ffffff;
    --dark-color:           #171819;
    --project-bg:           #f0f8ff;
    --menu-bg:              #39627B;

    --title-color:          #39627B;
    --gray-color:           #909090;
    --link-color:           #EAB76E;
    --p-color:              #514f4f;

    --base-font-family:     'Plain-Regular', sans-serif;
    --title-font-family:    'Plain-Regular', sans-serif;
    --font-bold-family:     'Plain-Bold', sans-serif;
    --font-weight-bold:     bold;

    --h1-font-size:         50px;
    --h2-font-size:         30px;
    --h3-font-size:         24px;
    --p-font-size:          16px;
    --base-font-size:       16px;
    --menu-font-size:       16px;

    --border-radius-large:  100px;
    --border-radius-small:  5px;
  }

  body {
    background: var(--white-color);
    font-family: var(--base-font-family);
  }


  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h2,h3,h4,h5,h6 {
    font-family: var(--title-font-family);
    line-height: inherit;
  }

  h1 {
    color: var(--title-color);
    font-size: var(--h1-font-size);
    font-family: 'ylee MHIM', sans-serif;
    font-weight: 800;
  }

  /*--marge sous le trait--*/
  div.col-lg-9.mx-auto.col-md-10.col-12.mt-lg-5.text-center.aos-init.aos-animate > img{
    margin-bottom: 2em;
  }

  h2 {
    font-size: var(--h2-font-size);
    color: var(--title-color);
    font-weight: 100;
  }

  h3 {
    font-size: var(--h3-font-size);
    font-weight: 100;
    margin-bottom: 0;
  }

  h4 {
    color: var(--gray-color);
    font-family: var(--base-font-family);
    font-size: var(--p-font-size);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    line-height: 1.5em;
  }

  b, 
  strong {
    letter-spacing: 0;
    color: #39627B;
  }

  .site-footer b, .site-footer strong {
    color: var(--secondary-color);
  }
.shadow{
  border-bottom: none;
    box-shadow: 0px 1px 2px #ccc;
    padding: 1em;
}

  /*  BLOCKQUOTES */
  .quote {
    position: relative;
    margin: 0;
  }

  .quote::after {
    content: "“";
    position: absolute;
    bottom: -80px;
    left: 20px;
    font-family: times;
    color: var(--gray-color);
    font-weight: var(--font-weight-bold);
    font-size: 14em;
    line-height: 0;
    opacity: 0.10;
  }

  blockquote {
    border-left: 5px solid rgba(0,0,0,0.05);
    display: block;
    margin: 42px 0;
    padding: 14px 22px;
    color: rgba(0,0,0,0.5);
  }


  /* BUTTON */
  .custom-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-large);
    padding: 12px 26px 14px 26px;
    color: var(--primary-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    white-space: nowrap;
  }

  .custom-btn.btn-bg {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: transparent;
	transition: all .3s ease;
  }
  
  .custom-btn:hover,
  .custom-btn:focus {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: transparent;
  }

  .secondary-custom-btn {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-large);
    padding: 12px 26px 14px 26px;
    color: var(--white-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    white-space: nowrap;
  }

  .secondary-custom-btn.btn-bg {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: transparent;
	transition: all .3s ease;
  }
  
  .secondary-custom-btn:hover,
  .secondary-custom-btn:focus {
    background: var(--secondary-blue);
    color: var(--white-color);
    border-color: transparent;
  }

  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  a {
    color: var(--link-color);
    font-weight: normal;
    text-decoration: none;
  }

  a:hover, 
  a:active, 
  a:focus {
    color: var(--secondary-blue);
    outline: none;
    text-decoration: none;
  }

  ::selection {
    background: var(--secondary-color);
    color: var(--white-color);
  }

  .section-padding {
    padding: 2em 1em;
  }
  .section-padding-half {
    padding: 4em 1em;
  }

  .google-map iframe {
    display: block;
    width: 100%;
  }



  /*---------------------------------------
    MENU             
  -----------------------------------------*/

 
  /* Style principal du menu */
.navbar {
  background: var(--menu-bg);
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding: 1.5em;
}

.navbar-brand {
  color: var(--white-color);
  font-size: var(--h2-font-size);
}

.nav-link {
  color: var(--white-color);
  font-size: var(--menu-font-size);
  letter-spacing: 0.4px;
  margin: 0 1.6em;
  padding: 0.6em;
}

.nav-link.active,
.nav-link:hover {
  color: var(--secondary-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand-lg .navbar-nav .nav-link.contact {
  border: 2px solid var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--secondary-color);
  font-family: var(--font-bold-family);
  padding: 0.6em 2em 0.8em 2em;
}

.navbar-expand-lg .navbar-nav .nav-link.contact:hover,
.navbar-expand-lg .navbar-nav .nav-link.contact.active {
  background: var(--secondary-color);
  color: var(--white-color);
}

.navbar-nav .navbar-toggler-icon {
  background: none;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0 10px 0 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.logo-harpan {
  width: 40%;
}

/* Structure du menu déroulant */
.deroulant .sous {
  display: none; /* Masque le sous-menu par défaut */
  position: absolute;
  background: #5f97b1B3;
  min-width: 250px;
  z-index: 10;
}

/* Le sous-menu s'affiche lorsque le parent .deroulant est survolé (desktop) */
.deroulant:hover .sous {
  display: block;
}

/* Style des éléments du sous-menu */
.deroulant .sous li {
  float: none;
  width: 100%;
  text-align: left;
  list-style: none;
}

.sous a {
  border-bottom: none;
}

.sous a:hover {
  border-bottom: none;
  background-color: #ffffff;
  box-shadow: 0px 1px 2px #ccc;
  padding: 1px 2px 1px 2px;
}

/* Ajout d'une flèche vers le bas sur le lien parent */
.deroulant > a::after {
  content: "▼";
  font-size: 12px;
}

/* Structure de la navigation */
nav ul li {
  float: left;
  text-align: center;
  position: relative;
}

#navbarNav > ul > li.deroulant > a {
  color: #ffffff;
}

#navbarNav > ul > li.deroulant.nav-item > ul > li > a {
  color: #ffffff;
  font-size: 15px;
}

#navbarNav > ul > li.deroulant.nav-item > ul > li > a:hover {
  color: var(--primary-color);
}

body > nav.navbar.navbar-expand-lg.position-relative > div {
  max-width: 100%;
}

/* ----------- Mobile ----------- */

/* Suppression de l'affichage :hover sur mobile */
@media (max-width: 991px) {
  .deroulant .sous {
    position: static;
    background: transparent;
    padding-left: 1em;
  }

  /* Affichage du sous-menu mobile au clic */
  .deroulant.open .sous {
    display: block;
  }

  /* Empêche l'affichage en :hover sur mobile */
  .deroulant:hover .sous {
    display: none;
  }
}

/*---------------------------------------
    Fil Ariane             
  -----------------------------------------*/
  .breadcrumb {
    padding: 0 .5rem;
  }
  
  .breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 .25rem;
    content: "/";
  }
  /*---------------------------------------
     HERO              
  -----------------------------------------*/

  .hero {
    position: relative;
    padding: 5em 0;
    overflow: hidden;
  }

  .hero-bg {
    background: linear-gradient(170deg, var(--secondary-blue) 64%, var(--white-color) 30%);
  }

  .hero-image {
    position: relative;
    top: 2em;
  }



  /*---------------------------------------
     PROJECT              
  -----------------------------------------*/

  .project {
    background: var(--project-bg);
  }

  .project-wrapper {
    position: relative;
  }

  .project-wrapper img {
    border-radius: var(--border-radius-small);
  }

  .project-info {
    background: var(--white-color);
    border-radius: var(--border-radius-small);
    position: absolute;
    bottom: 32px;
    right: 32px;
    left: 32px;
    width: 90%;
    padding: 32px;
  }

  .project-info small {
    font-family: Plain-Bold;
    color: var(--gray-color);
    position: relative;
    top: 2px;
  }

  .project-info a {
    color: var(--primary-color);
  }

  .project-info .project-icon {
    background: var(--primary-color);
  }

  .project-icon {
    position: absolute;
    right: 30px;
    top: 40px;
    background: var(--dark-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--h2-font-size);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding-left: 5px;
  }

  .owl-theme .owl-dots .owl-dot {
    outline: none;
  }

  .owl-theme .owl-dots .owl-dot span {
    background: var(--gray-color);
    width: 50px;
    height: 3px;
    margin:  35px 5px;
  }

  .owl-theme .owl-dots .owl-dot.active span, 
  .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color);
  }

  .list-detail {
    margin-left: 1em;
    padding-left: 1em;
    position: relative;
  }

  .list-detail li {
    display: block;
    list-style: none;
    margin: 0.6em 0 0 0.8em;
  }

  .list-detail li::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 0 16px 16px 0;
    border-color: transparent var(--secondary-blue) transparent transparent;
    border-style: solid;
    position: absolute;
    left: 0;
  }

  .list-detail span {
    position: relative;
    bottom: 5px;
  }

  .client-info img {
    width: 100px;
    margin-right: 1em;
  }

 /*---------------------------------------
      Accompagnement           
  -----------------------------------------*/
  .accompagnement-entreprise {
    display: flex;
    flex-wrap: wrap;
  }
  .accompagnement {
    display: flex;
    border: solid #39627B 2px;
    box-shadow: 6px 5px 5px #514f4f;
    background-color: #f0f8ff;
    align-items: center;
    justify-content: center;
  }

  /*---------------------------------------
      ABOUT            
  -----------------------------------------*/

  .about {
    position: relative;
    overflow: hidden;
  }

  .about-image img {
    display: block;
    margin: 0 auto;
  }
  .about-info h2{
    text-align: center;
  }
  
/*---------------------------------------
      Accueil            
  -----------------------------------------*/

  #details-missions{
    display: flex;
    gap: 10px;
  }
  .missions{
    background: var(--primary-color);
  }
  .missions h2{
    color: var(--white-color);
    text-align: center;
    font-size: 25px;
  }
  .missions p{
    color: var(--white-color);
  }
  .missions li{
    color: var(--white-color);
  }
 
  .about-info{
    text-align: center !important;
  }
  .box{
    padding: 15px;
    margin-bottom: 10px;
  }

  section.expertise > h2{
    text-align: center;
  }

  section.expertise.section-padding > div > div.content{
    background-color: #EAB76E;
    width: 50%;
    padding: 15px;
  }
  @media (max-width: 991px) {
   section.expertise.section-padding > div > div.content{
    width: 100%;
   }
  }
    @media (min-width: 991px) {
   #img-expertises{
    max-width: 500px;
   }
  }
  section.expertise.section-padding > div > div:nth-child(2){
    max-height: auto;
  }
  section.expertise.section-padding > div > div.content > div{
    text-align: center;
  }

  .flex-content{
    display: flex;
    flex-wrap: wrap;
  }
  section.expertise.section-padding{
    padding-top: 1em;
  }
  section.expertise.section-padding > h2{
    margin-bottom: 1em;
  }
  @media (max-width: 991px) {
   #logo-graph{
    max-width: 50%;
   }
  }
  /*---------------------------------------
      CLIENTS           
  -----------------------------------------*/
  .clients {
    background: var(--secondary-blue);
  }
  #clients > div > div > div > h2{
    color: #ffffff;
  }
  #clients > div > div > div > p{
    color: #ffffff;
    margin: 0em 2em;
  }

  #clients > div.container-fluid{
    padding-bottom: 1em;
  }

  #clients > div.justify-content-center.text-center.clients-images > div{
    background-color: #ffffff;
    padding: 10px 0px 10px 0px;
  }
  #clients > div.justify-content-center.text-center.clients-images{
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
  }

  /*---------------------------------------
      Collecter des données           
  -----------------------------------------*/
  .encart {
    background: var(--secondary-blue);
  }
  .encart > div.container-fluid > div > h2{
    color: #ffffff;
  }
  .encart > div.container-fluid > div > p{
    color: #ffffff;
    margin: 0 2em 0 2em;
  }
  .encart > div.justify-content-center.text-center > div > h3 {
    font-size: 19px;
    margin-bottom: 1em;
  }
  .encart > div.justify-content-center.text-center.clients-images > div{
    background-color: #ffffff;
    margin: 1em;
    padding: 10px 10px;
    border-radius: 20px;
  }
  .encart > div.justify-content-center.text-center.clients-images{
    display: flex;
    flex-wrap: wrap;
  }
  .picto.section-padding > div.justify-content-center.text-center.clients-images{
    display: flex;
    flex-wrap: wrap;
  }
  .picto.section-padding > div.justify-content-center.text-center.clients-images > div > h3{
    font-size: 19px;
    padding-top: 1em;
  }
  .picto.section-padding > div.container > p{
    padding-bottom: 2em;
  }

  /*---------------------------------------
      Prestations         
  -----------------------------------------*/
  .sinademploi{
    display: flex;
    flex-wrap: wrap;
  }
  #sinademploi{
    background: var(--secondary-blue);
    padding-right:100px ;
  }
  #img-sinademploi{
    width: 500px;
    max-width: 100rem;
    height: auto;
    border: solid #909090 2px;
    box-shadow: 12px 12px 2px 1px #909090;
    margin: 40% 0 0 -50px;
  }
  #sinademploi > h2{
    color: #ffffff;
  }
  #sinademploi > p{
    color: #ffffff;
  }

   @media (max-width: 991px) {
   #img-sinademploi{
    width: 300px;
    margin: auto;
   }
  }

  
  /*---------------------------------------
      BLOG            
  -----------------------------------------*/

  .blog-header {
    border-radius: var(--border-radius-small);
    position: relative;
    overflow: hidden;
  }

  .blog-header img {
    border-radius: var(--border-radius-small);
    display: block;
  }

  .blog-header-info {
    background: linear-gradient(transparent,rgba(0,0,0,0.95));
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 2em;
  }

  .blog-header-info h3 {
    max-width: 80%;
  }

  .blog-header-info a {
    color: var(--white-color);
  }

  .blog-header-info a:hover {
    color: var(--secondary-color);
  }

  .blog-sidebar img {
    border-radius: var(--border-radius-small);
    width: 159px;
    margin-right: 22px;
  }

  .blog-sidebar h3 {
    font-size: 18px;
  }

    /*---------------------------------------
     A propos            
  -----------------------------------------*/
   
  /*---------------------------------------
     CONTACT              
  -----------------------------------------*/

  .newsletter-form .form-control,
  .contact-form .form-control {
    box-shadow: none;
    background: var(--project-bg);
    border: 0;
    padding: 1.7em 1.3em;
    margin: 14px 0;
  }

  .newsletter-form button,
  .contact-form #submit-button {
    background: var(--primary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    cursor: pointer;
    font-size: var(--p-font-size);
    line-height: 0px;
    padding: 1.5em 1.3em;
  }

  .newsletter-form button {
    background: var(--secondary-color);
  }

  .contact-2{
    background: var(--primary-color);
    margin-bottom: 2em;
  }
  section.contact-2 > h2{
    color: var(--white-color);
    text-align: center;
    margin-bottom: 1em;
  }

  section.contact-2.section-padding > div > div.content > p{
    color: var(--white-color);
  }
  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  .site-footer {
    background: var(--primary-color);
    padding: 5em 0 5em 0;
  }
  body > footer > div{
    max-width: 1400px !important;
  }
  .site-footer p {
    color: var(--secondary-color);
  }

  .site-footer h4 {
    color: var(--secondary-color);
  }

  .site-footer a {
    color: var(--white-color);
  }

  .site-footer a:hover,
  .footer-icon {
    color: var(--secondary-color);
  }

  .footer-link li {
    display: inline-block;
    list-style: none;
    margin: 0 10px;
  }

  .copyright-text,
  .footer-link,
  .site-footer .social-icon {
    margin-top: 6em;
  }

  .copyright-text {
    margin-top: 5.3em;
  }



  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 4em 0 0 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    text-decoration: none;
    display: inline-block;
    font-size: var(--base-font-size);
    margin: 10px;
    text-align: center;
  }



  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media screen and (min-width: 1200px) {

    .about-info h2 {
      max-width: 100%;
    }
  }

  @media screen and (min-width: 991px) {

    .project h2 {
      max-width: 32%;
      margin: 0 auto;
    }
  }

  @media screen and (max-width: 991px) {

    .hero {
      padding-top: 1em;
    }

    .hero-text {
      bottom: 2em;
    }

    .navbar {
      padding: 1em;
    }

    .navbar-collapse {
      text-align: center;
      padding: 2.5em 0;
    }

    .nav-link {
      display: inline-block;
    }

    .navbar-expand-lg .navbar-nav .nav-link.contact {
      margin: 1em 0;
    }

    .copyright-text, 
    .footer-link, 
    .site-footer .social-icon {
      margin-top: 3em;
      padding: 0;
      text-align: left;
    }
  }

  @media screen and (max-width: 767px) {

    h1 {
      font-size: 36px;
    }

    h2 {
      font-size: 22px;
    }

    h3 {
      font-size: 18px;
    }

    .project-info {
      right: 0;
      left: 0;
      margin: 0 auto;
    }

    .footer-link, 
    .site-footer .social-icon {
      margin-top: 1em;
    }

    .copyright-text {
      margin: 2.5em 0 1em 0;
    }

    .footer-link li {
      margin-left: 0;
    }
  }


