@charset "UTF-8";


body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #292929 url(../../accueil/img/body_bg.png) no-repeat 100% 80% fixed;
    color: #515053;
    font-size: 14px;
	
}

header {
	background: #292929 url(../../accueil/img/bandeau.jpg) no-repeat right top;
	height: 115px;
	padding: 0px 0;
	color: #FFFFFF;
}

.banner-image {
    max-height: 200px;
    object-fit: auto;
}

main {
    background: #fff url("../../accueil/img/content_bg.png") no-repeat 100% 40%;
    padding: 30px 15px;
}

nav {
    background: linear-gradient(to top, #B9B9B9, #EEEEEE);
    height: 40px;
}

.navbar-light .navbar-nav .nav-link {
    color: #515053;
    margin-left: auto;
    height: 40px;
    
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #f18e00;
    background: linear-gradient(to top, #101010, #7D7D7D);
}

.nav-link.no-hover:hover{
	background: linear-gradient(to top, #B9B9B9, #EEEEEE) !important;
  	color: inherit !important;
  	cursor: default !important;
  	text-decoration: none !important;
}


.nav-item-separator {
    position: relative;
    padding: 0px; /* Ajustez selon vos besoins */
}

.nav-item-separator::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%; /* Ajustez la hauteur de la barre selon vos préférences */
    width: 1px;
    background-color: #515053; /* Couleur de la barre de séparation */
}

.navbar-toggler-icon {
  width: 25px;
  height: 18px;
}

.fixed-width-nav-link {
    min-width: 120px; /* Ajustez cette valeur selon vos besoins */
    text-align: center; /* Pour centrer le texte */
}

main p   {
	font-size: 14px;
    color:#515053;
}

footer {
    border-top: 1px solid #D0D0D0;
    padding: 20px 0;
    text-align: left;
    height:auto;
    background: #292929 ;
    font-size: 0.9rem;
}

footer ul {
	font-size: 13px;
	padding: 0;
	list-style: none;
	color: #A0A0A0;
}

footer h5 {
    color: #D0D0D0;
    font-weight: bold;
    margin-bottom: 1rem;
}

footer p {
    font-size: 14px;
    color: #A0A0A0;
}


.btn-custom:visited {
    color: #6d6d6d;
    background: linear-gradient(to top, #B9B9B9, #EEEEEE);
    border: 1px solid #6d6d6d;
}

.btn-custom:hover {
    background: linear-gradient(to top, #101010, #7D7D7D);
    color: #f18e00;
}

.btn-custom {
    color: #6d6d6d;
    background: linear-gradient(to top, #B9B9B9, #EEEEEE);
    border: 1px solid #6d6d6d;
}


.btn-primary{
	margin-left: auto;
}

.dropdown-item:visited {
  color: #6d6d6d; /* changer la couleur du texte */
  background: linear-gradient(to top, #B9B9B9, #EEEEEE); /* changer le fond */
}

.dropdown-item:hover {
  background: linear-gradient(to top, #101010, #7D7D7D); /* fond au survol */
  color:#f18e00; /* texte au survol */
}

.dropdown-item {
  color: #6d6d6d; /* changer la couleur du texte */
  background: linear-gradient(to top, #B9B9B9, #EEEEEE); /* changer le fond */
}

.dropdown-toggle:visited {
  color: #6d6d6d; /* changer la couleur du texte */
  background: linear-gradient(to top, #B9B9B9, #EEEEEE); /* changer le fond */
}

.dropdown-toggle:hover {
  background-image: none;
  background: linear-gradient(to top, #101010, #7D7D7D); /* fond au survol */
  color:#f18e00; /* texte au survol */
  text-decoration: none; /* enlève le soulignage au survol */
}

.dropdown-toggle {
  color: #6d6d6d; /* changer la couleur du texte */
  background: linear-gradient(to top, #B9B9B9, #EEEEEE); /* changer le fond */
}

.dropdown-menu {
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0rem;
  --bs-dropdown-spacer: 0rem;
  --bs-dropdown-border-radius:none;
}


h1, h2, h3, h4 {
	color:#515053;
}

h1	{
	font-size: 28px;
	text-align: center;
	}

h2	{
	font-size: 24px;
	padding-bottom:10px;
	}

h3	{
	font-size: 16px;
	padding:0 0 5px 0;
	font-weight: bold;
	}

h4	{
	font-size: 15px;
	padding:0 0 5px 0;
	}

h5	{
	font-size: 12px;
	padding:0;
	clear:both;
	}

a, a:visited 
	{
	color: #A0A0A0;
	text-decoration: none;
	}



 a:hover  
 	{
	color: #f18e00;
	text-decoration: underline;
	}

@media (max-width: 1010px) {
    body {
        padding-top: 0;
    }

    .navbar-expand-lg .navbar-collapse {
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #f8f9fa; /* Fond clair pour le menu déroulant */
        padding: 10px;
        border: 1px solid #dee2e6;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .navbar-expand-lg .nav-item {
        width: 100%;
        margin-bottom: 5px;
    }

    .navbar-expand-lg .nav-link {
        padding: 8px 15px;
        text-align: left;
    }

    .navbar-toggler {
        position: absolute;
        left: 15px;
        top: 5px;
        z-index: 1030;
    }

    .logo-large {
        display: none;
    }

    .banner-image {
        max-width: 100%;
        height: auto;
    }

    /* Pour éviter que le contenu soit caché sous la navbar ouverte */
    body.navbar-expanded main {
        padding-top: 200px;
    }
    
    .footer-container {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 20px;
    }
    
    .logo-large {
        display: none;
    }
}

.paracheck-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Ajustez cette valeur pour contrôler l'espacement entre le bouton et le logo */
}

.paracheck-logo {
    height: 80px;
    width: auto;
}
