/**     
* Template Name: Eterna
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/eterna-free-multipurpose-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

a {
  color: #304F51;
  text-decoration: none;
}

a:hover {
  color: #304F51;
  text-decoration: none;
  cursor: cell;
}

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


/*--------------------------------------------------------------
# Bouton de retour en haut de la page
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #444444;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #1d3031;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Bande du menu de navigation
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #e9f2f0;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

/* Petite bande verticale*/
#header .logo h1 {
  padding-left: 8px;
  border-left: 8px solid #304F51;
}


/* Logo */
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 70px;
  color:  #304F51;
}

.scrolled-offset {
  margin-top: 70px;
}

section {
  padding: 0 0 80px 0;
}

.section-bg {
  background-color: #fafcfc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  text-shadow:  0px 2px 15px rgba(0, 0, 0, 0.15);
}

.section-title h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: "Poppins", sans-serif;
  text-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
}

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

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Menu de navigation 
--------------------------------------------------------------*/
/* Navigation sur ordinateur */


.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #545454;
  white-space: nowrap;
  transition: 0.1s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #18362f;
  font-weight: bold;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fafcfc;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.5s;
  border: 1px solid #BAC2C0;
  border-radius: 10px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #545454;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #18362f;
}

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




/* Mobile Navigation */


.mobile-nav-toggle {
  color: #545454;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

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

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

  .navbar ul {
    display: none;
  }
}

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

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

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fafcfc;
  overflow-y: auto;
  transition: 1s;
  max-height: 300;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #BAC2C0;
  border-radius: 10px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #545454;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fafcfc;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #18362f;
}

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



/*==============================================================
# Page d'accueil
==============================================================*/

/*--------------------------------------------------------------
# Présentation
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh;
  background-color: rgba(59, 59, 59, 0.8);
  overflow: hidden;
  padding: 0;
  margin-bottom: -120px;
  position: relative;
  z-index: 1;
}

#hero .carousel-item {
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position: center center;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding-bottom: 120px;
}

#hero .carousel-content {
  text-align: center;
}

#hero h2 {
  color: #18362f;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  animation-delay: 0.4s;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #304F51;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active .carousel-item-start,
#hero .carousel-inner .active .carousel-item-end {
  opacity: 1;
  transition: 1.5s;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next .carousel-item-start,
#hero .carousel-inner .carousel-item-prev .carousel-item-end {
  opacity: 1;
  transition: 1.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
  color: #304F51;
}

/* Bullets */
#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #304F51;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  margin-bottom: 210px;
  opacity: 0.2;
}

#hero .carousel-indicators li.active {
  opacity: 1;
}

/* Lien contact */
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #304F51;
  background: #304F51;
}

#hero .btn-get-started:hover {
  background: #fafcfc;
  color: #304F51;
}

@media (max-height: 768px),
(max-width: 1200px) {
  #hero {
    margin-bottom: 60px;
  }

  #hero .carousel-container {
    padding-bottom: 0;
  }

  #hero .carousel-indicators li {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 90vh;
  }

  #hero .carousel-item {
    height: 90vh;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 50%;
  }

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


/*--------------------------------------------------------------
# Menu
--------------------------------------------------------------*/
.menu {
  position: relative;
  z-index: 2;
  }

.menu .icon-box {
  padding: 40px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #BAC2C0;
  border-radius: 10px;
  background: #fff;
  transition: all ease-in-out 0.5s;
  height: 100%;
  max-height: 250px;
  color: #304F51;
  overflow: scroll;
}

.menu .icon-box h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  transition: 0.3s;
}

.menu .icon-box p {
  color: #304F51;
  transition: 0.3s;
  font-size: 15px;
  margin-bottom: 15px;
}

.menu .icon-box:hover {
  background: #304F51;
  border: #BAC2C0;
}

.menu .icon-box:hover i,
.menu .icon-box:hover h3,
.menu .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Compétences
--------------------------------------------------------------*/
.competences h2 {
  color: #304F51;
}

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

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

.competences .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1d3031;
}

/* Texte des slides */
.competences .swiper-slide p {
  color: #304F51;
  opacity: 0.6;
  transition: 0.3s;
}

.competences .swiper-slide p:hover {
  color: #1d3031;
  opacity: 1;
}


/*==============================================================
# Expériences professionnelles
==============================================================*/

.experiences {
  width: 100%;
  position: relative;
  margin-top: 150px;
}

.experiences .icon-box {
  padding: 40px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #BAC2C0;
  border-radius: 10px;
  background: #fff;
  transition: all ease-in-out 0.5s;
  height: 100%;
  max-height: 300px;
  color: #304F51;
  overflow: scroll;
}

.experiences .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  color: #304F51;
  transition: 0.3s;
}

.experiences .icon-box h5 {
  color: #304F51;
  transition: 0.3s;
  font-size: 12px;
  margin-bottom: 15px;
}

.experiences .icon-box p {
  color: #304F51;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0px;
  transition: 0.3s;
}

.experiences .icon-box ul {
  color: #304F51;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0px;
  transition: 0.3s;
}

.experiences .icon-box:hover {
  background: #304F51;
  border: #BAC2C0;
}

.experiences .icon-box:hover h4,
.experiences .icon-box:hover h5,
.experiences .icon-box:hover p,
.experiences .icon-box:hover ul {
  color: #fff;
}


/*==============================================================
# Formations
==============================================================*/

.formations {
  width: 100%;
  position: relative;
  margin-top: 150px;
}

.formations .icon-box {
  padding: 40px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #BAC2C0;
  border-radius: 10px;
  background: #fff;
  transition: all ease-in-out 0.5s;
  height: 100%;
  max-height: 300px;
  color: #304F51;
  overflow: scroll;
}

.formations .icon-box h4 {
  color: #304F51;
  transition: 0.3s;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.formations .icon-box h5 {
  color: #304F51;
  transition: 0.3s;
  font-size: 12px;
  margin-bottom: 15px;
}

.formations .icon-box p {
  color: #304F51;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0px;
}

.formations .icon-box ul {
  color: #304F51;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0px;
}

.formations .icon-box:hover {
  background: #304F51;
  border: #BAC2C0;
}

.formations .icon-box:hover h4,
.formations .icon-box:hover h5,
.formations .icon-box:hover ul,
.formations .icon-box:hover p {
  color: #fff;
}


/*==============================================================
# Engagements
==============================================================*/

.engagements {
  width: 100%;
  position: relative;
  margin-top: 150px;
}

.engagements .icon-box {
  padding: 40px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #BAC2C0;
  border-radius: 10px;
  background: #fff;
  transition: all ease-in-out 0.5s;
  height: 100%;
  max-height: 300px;
  color: #304F51;
  overflow: scroll;
}

.engagements .icon-box h4 {
  color: #304F51;
  transition: 0.3s;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.engagements .icon-box h5 {
  color: #304F51;
  transition: 0.3s;
  font-size: 12px;
  margin-bottom: 15px;
}

.engagements .icon-box p {
  color: #304F51;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0px;
}

.engagements .icon-box ul {
  color: #304F51;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0px;
}

.engagements .icon-box:hover {
  background: #304F51;
  border: #BAC2C0;
}

.engagements .icon-box:hover h4,
.engagements .icon-box:hover h5,
.engagements .icon-box:hover ul,
.engagements .icon-box:hover p {
  color: #fff;
}

/*==============================================================
# Contact
==============================================================*/
.contact {
  width: 100%;
  margin-top: 150px;
}

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  border: 1px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
}

.contact h3 {
  font-size: 20px;
  color: #1d3031;
  font-weight: 700;
}

.contact .info-box p {
  line-height: 24px;
  font-size: 14px;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 10px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

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

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

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

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

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

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

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #1d3031;
}

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

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

.contact .php-email-form button[type=submit] {
  background: #1d3031;
  border: 1;
  border-color: 1d3031;
  border-radius: 50px;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #fafcfc;
  color: #304F51;
}

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

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


/*==============================================================
# Footer
==============================================================*/
#footer {
  background: #1d3031;
  padding: 30px 0 30px 0;
  color: #fff;
  font-size: 14px;
  text-align: center;
}


#footer .credits {
  z-index: 0;
  padding-top: 10px;
  font-size: 13px;
}

#footer a {
  color: #c8ded9;
  opacity: 75%;
}

#footer .dropdown ul {
  display: block;
  text-align: center;
  padding: 10px 0;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  background: #fafcfc;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 1s;
  border: 1px solid #BAC2C0;
  border-radius: 10px;
}

#footer .dropdown ul li {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  list-style-type: none;
}

#footer .dropdown ul a {
  font-size: 14px;
  color: #545454;
  height: 0.5%;
}

#footer .dropdown ul a:hover {
  font-weight: bold;
  color: #18362f;
}

#footer .dropdown:hover>a {
  font-weight: bold;
  color: #fff;
}

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