/* NAV */

.navbar {
    background-color: #34C5A8;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px solid white;
}

.navbar-nav {
    margin: 0 auto;
    text-align: center;
}
.nav-link {
    color: #172E48 !important;
    margin: 0 6px;
}
.nav-link.active, .nav-link:hover {
    background-color: #172E48;
    color: #ffffff !important;
}

.dropdown-menu{
    text-align: center;
    margin: 0 auto;
}

.dropdown-item {
        color: #172E48 !important;
        margin: 0 auto;
    }

.dropdown-item.active, .dropdown-item:hover {
        background-color: #172E48;
        color: #34C5A8 !important;
    }

/*GENERAL*/

body {
    margin: 0;
    padding: 0;
    font-family: 'Lato';
}

header {
    background-color: #172E48;
    color: #fff;
    padding: 10px;
    text-align: center;
}

h2{
    text-align: center;
    font-size: large ;
}

h3{
    font-size: medium;
    text-align: justify;
}

.main-content{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
 
}

h2 a {
    color: #34C5A8; /* Couleur du lien */
    text-decoration: underline; /* Soulignement du lien */
    transition: color 0.3s ease; /* Transition de la couleur lors du survol */
}

/* Changement de couleur au survol */
h2 a:hover {
    color: #172E48; /* Nouvelle couleur au survol */
}

.main-content{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
 
}

/* PRESTATIONS */
#Prestations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.prestation-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.prestation-description {
    background-color: #172E48;
    color: white;
    text-align: justify;
    width: 80%; /* Les deux éléments occupent 50% de la largeur chacun */
    box-sizing: border-box;
    border-radius: 5px;
    padding: 20px;
}

.prestation-description-reverse{
    background-color: #34C5A8;
    color:#172E48;
    text-align: justify;
    width: 80%; /* Les deux éléments occupent 50% de la largeur chacun */
    box-sizing: border-box;
    border-radius: 5px;
    padding: 20px;
}


.image-right {
    position:relative;
    float: right;
    top: 15px;
    margin: 30px;
    height: 25%;
    width: 25%;
  }
  
  .image-left {
    position:relative;
    float: left;
    top: 10px;
    margin: 30px;
    height: 25%;
    width: 25%;
  }

  @media (max-width: 767px) {
    .image-right {
        display: none;
    }

    .image-left {
        display: none;
    }
}

.prestation-description h2{
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.prestation-description h3{
    text-align: justify;
    
}

.prestation-description-reverse h5{
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
  
}

.prestation-description-reverse h6{
    text-align: justify;
}

/* RECOMMENDATIONS */
.divider {
    background-color: #172E48;
    width: 100px;
    height: 2px;
    margin: 20px auto 20px;
}

#recommendations .heading h2 {
   color: #172E48;
   font-size: x-large;
   font-weight: bold;
}
#myCarousel .carousel-item {
   padding: 30px 30px 90px;
}
#myCarousel .carousel-item h3 {
   color: #172E48;
   font-style: italic;
   text-align: center;
   font-size:large

}

/* FOOTER */

footer {
    width: 100%;
    background-color: #34C5A8;
    padding: 10px 0 20px;
}

footer span {
    color: #172E48;
    font-size: 25px;
    line-height: 35px;
}

footer span:hover {
    color: #172E48;
    font-size: 30px;
}

footer h5 {
    color: white;
    font-weight: normal;
}

#logo-container {
    margin-bottom: 20px;
}

#logo-container img{
    width: 6.25%;
    height: auto;
}