:root {
    --color-Orange: 244 160 25;
    --color-Blue: 44 125 179;
    --color-Navy: 12 26 39;
    --color-White: 255 255 255;
}

html, body {
    height: 100% !important;
    margin: 0;
    position: relative !important;
    display: flex;
    flex-direction: column;
}

body {
    color: rgb(var(--color-White)) !important;
    background: url('/images/fond.png');
    height: 100% !important;
    background-size: cover;
    background-position: center;  
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Montserrat';
}

/*-------------------------------------- HEADER ---------------------------------------*/

.imgHeader img{
    object-fit: cover;
    object-position: center;
    height: 450px;
    width: 100%;
}

.navbar {
    padding: 5px 20px;
}

.navbar a {
    color: rgb(var(--color-White)) !important;
}
.navbar-nav {
    background-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav-item{
    padding : 5px 10px;
    background: transparent;
    border:none;
    gap:10px;
}

.nav-link {
    color:rgb(var(--color-White)) !important;
}

.navbar-toggler {
    color: rgb(var(--color-White));
    font-size: 1.5rem;
    border: none;
}

.dropdown-item, .dropdown-menu{
    color:rgb(var(--color-White)) !important;
    background-color: rgb(var(--color-Navy));
}

.dropdown-item {
    white-space: break-spaces !important;
}

.dropdown-item:hover {
    color: rgb(var(--color-Navy)) !important;
    background-color: rgb(var(--color-Blue)) !important;
    font-weight: 600;
}

.parent-call {
    background-color: rgb(var(--color-Orange));
    border-radius: 10px;
    margin: 0 10px;
    font-weight: 600;
    padding: 0 5px !important;
}

.call {
    width: 20px;
    margin-right: 20px;
}

/*------------------------------------ CONTENT --------------------------------------*/

.main-content {
    margin-top: -150px;
    flex: 1;
}

/*------------------------------------ FOOTER ------------------------------------*/
.footer {
    position: relative !important;
}
footer {
    width: 100%;
    background-color: rgb(var(--color-Navy) / 80%);
    height: 150px;
    display: grid;
    align-items: center;
}

@media (min-width: 360px) and (max-width: 991px) {
    .navbar-nav {
        flex-direction: column;
    }
    .nav-link {
        margin-bottom: 5px;
    }
}