html{
    scroll-behavior:smooth;
}
body {
    background-color: #333;
    color: #fff;
}
.container {
    margin: auto;
    overflow: hidden;
}
header a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}
h1{
    font-weight: bold;
    font-size: 3em; 
    margin-bottom: 45px;
}
h2{
    font-weight: bold;
    font-size: 2em;  
}
h3{
    margin-top: 16px;
    margin-bottom: 0px;
    font-size: 1.6em; 
}
h4{
    font-weight: bold;
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 0px;
}
.content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px 0;
}
.content .text, .content .video-container{
    flex: 1;
    color: #fff;
    min-width: 300px;
    padding: 0px 10px;
    padding-bottom: 5px;
}
.content .video-container video {
    width: 100%;
    height: auto;
}
.fixed-image {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    z-index: -1000;
    width: 15vw;
}
.value{
    color: rgb(21, 220, 247);
    margin-bottom: 0px;
}
.card{
    border: none;
}
.card-body, .embed-responsive{
    background-color: rgb(82, 82, 82);
}
.card-body{
    padding: 5px;
}
.card-text{
    color: white;
    font-style: italic;
    font-size: 0.9em;
}
.anchor{
    display: block;
    position: relative;
    top: -90px;
    visibility: hidden;
}
.pannel{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.nav-item {
    padding: auto;
    margin-left: auto;
}
.nav-link{
    width: 11vw;
    text-align: center;
}
.nav-link:hover {
    color: rgb(196, 111, 1) !important; 
}

.nav-link.active {
    color: rgb(255, 162, 0) !important; 
}
.navbar-logo{
    height: 300px;
}
.navbar-logo-small {
    height: 240px; /* Adjust height as needed */
    position: absolute;
    top: 50px; /* Adjust top position as needed */
    right: 50px; /* Adjust right position as needed */
    z-index: 1;
}
.language-selector {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    background-color: #333;
    margin-right: 20px;
    background: none;
}
.language-selector a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}
.language-selector a.active {
    text-decoration: underline;
    color: rgb(196, 111, 1) !important;
}
.language-selector span {
    color: #fff;
    margin-left: 10px;
}

/* Media query pour un affichage inférieur à la taille moyenne */
@media (max-width: 992px) {
    .nav-item {
        margin-left: 25px;
    }
    .navbar-toggler{
        margin-left: 25px;
    }
    .navbar-image {
        display: none;
        position: absolute;
        top: 10px; /* Adjust to align with navbar */
        right: 10px; /* Adjust to align with navbar */
        z-index: 1;
    }
}
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}