            /* NAV */

*{
    padding: 0;
    margin: 0;
}
p{
    margin: 0;
    padding: 0;
}
    

:root {
    --black: #2A363B;
    --red: #F67280;
    --red-dark: #C06C84;
    --orange: #F8B195;
    --yellow: #FECEAB;
    --white: #FFF;
}



*,
*:before,
*:after {
    box-sizing: border-box;
}
    
a {
    text-decoration: none;
}


nav ul{
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 0px 20px;
}     
.elements-nav-start li a{
    font-size: 25px;
    color: black;
    font-weight: bold;
    text-decoration: none;
} 
.elements-nav-end{
    display: flex;
}
    
    
    .menu {
    background-color: rgba(191, 27, 51, 1.0);
    background-color: white;
    height: fit-content;
    position: relative;
    z-index: 100;
    }
    
    .menu ol {
    list-style-type: none;
    }
    
    .menu > ol {
    display: flex;
    }
    
    .menu > ol > .menu-item {
    flex: 1;
    padding: 10px 10px 0px 10px;
    position: relative;
    line-height: 5rem;
    text-align: center;
    }
    
    .menu > ol > .menu-item a {
    color: black;
    font-size: 21px;
    }
   .bg-logo{
    text-align: start !important;
   }

    .logo img{
        position: fixed;
        width: 90px;
        text-align: start !important;
    }
    
    .menu > ol > .menu-item:after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    bottom: 5px;
    left: calc(50% - 2px);
    background: var(--yellow);
    will-change: transform;
    transform: scale(0);
    transition: transform 0.2s ease;
    }
    
    .menu > ol > .menu-item:hover:after {
    transform: scale(1);
    }
    
    /* Sous-menu contextuel */
    .sub-menu .menu-item {
    padding: 0.75rem 0;
    background-color: white;
    opacity: 0;
    transform-origin: bottom;
    animation: enter 0.2s ease forwards;
    }
    .sub-menu .menu-item a{
    font-size: 20px;
    }
    .sub-menu .menu-item a:hover{
    color: white;
    }
    
    .sub-menu .menu-item:nth-child(1) {
    animation-duration: 0.2s;
    animation-delay: 0s;
    }
    
    .sub-menu .menu-item:nth-child(2) {
    animation-duration: 0.3s;
    animation-delay: 0.1s;
    }
    
    .sub-menu .menu-item:nth-child(3) {
    animation-duration: 0.4s;
    animation-delay: 0.2s;
    }
    
    .sub-menu .menu-item:hover {
    /*background-color: #f2f2f2d9;*/
    background-color: rgba(191, 27, 51, 1.0);
    }
    
    .sub-menu .menu-item a {
    padding: 0 0.75rem;
    }
    
    
    /* Sous-menu affichage au hover */
    .sub-menu {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    display: none;
    z-index: 1;
    }
    
    .menu-item:hover > .sub-menu {
    display: block;
    }
    
    /* Animations */
    @keyframes enter {
    from {
        opacity: 0;
        transform: scaleY(0.98) translateY(10px);
    }
    to {
        opacity: 1;
        transform: none;
    }
    }
    
    @keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
    }
    
            /* FIN NAV */
            
            
            
            
            /* SECTION - BUTTON CONTACT */

.card{
    border: none;
}
.bg-btn-contact{
    margin-top: 20px;
}

.bg-btn-contact > div{
   display: flex;
   justify-content: center;
}

.bg-btn-contact button{
    background-color: transparent;
    border: 2px solid rgba(191, 27, 51, 1.0);
    color: black;
    padding: 15px 35px 15px 35px;
    margin-top: 30px;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 4px;
    border-radius: 1px;
}
.bg-btn-contact button:hover{
    color: white;
    background-color: rgba(191, 27, 51, 1.0);
    border: none;
}

.contain-contact{
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: "contain-contact-p-1 contain-contact-p-2 contain-contact-p-3 contain-contact-p-4";
    text-align: center;
    margin-top: 40px;
    column-gap: 30px;
}

.contain-contact p svg{
    background-color: rgba(191, 27, 51, 1.0);
    border-radius: 50%;
    padding: 19px;
    margin-bottom: 10px;
}
.contain-contact p span{
    font-size: 18px;
    color: black;
}

.collapse{
    padding-top: 30px;
}
            /* FIN SECTION - BUTTON CONTACT */


            /* FOOTER */
footer{
    margin-top: 150px;
}
.p-footer{
    background-color: rgba(191, 27, 51, 1.0);
    text-align: center;
    color: white;
    padding: 10px 0px 10px 0px;
}
.p-footer a{
    text-decoration: none;
    color: white;
}
.p-footer a:hover{
    font-weight: bold;
}

            /* FIN FOOTER */




             /* MISE EN EVIDENCE SECTIONS CONTACT*/

.scale-highlight {
    animation: scaleBounce 3s ease-in-out;
  }
  
  @keyframes scaleBounce {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.07);
    }
    100% {
      transform: scale(1);
    }
  }             

        /* FIN MISE EN EVIDENCE SECTION CONTACT */