.img-bg-container {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.logo-entreprise-sarr {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 872px;
    height: auto;
    opacity: 0.2;
    filter: drop-shadow(5px 5px 10px #000000);
    pointer-events: none;
}

.title-page {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Lilita One", cursive;
    font-size: 4.2rem;
    text-align: center;
    text-shadow: 0.02em 0.02em 0 #cdb693, 0 0 0.5em #cdb693;
}

.mentions-content {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 5px;
    text-align: left;
    padding: 15px 10%;
    background-color: #cdb693;
}

.mentions-title,
.mentions-sous-title {
    font-family: "Lilita One", cursive;
}

.mentions-title {
    font-size: 40px;
}

.mentions-sous-title {
    font-size: 30px;
}

.mentions-content a {
    font-weight: bold;
    color: white;
}

.mentions-content a:hover {
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .img-bg-container {
        height: 40vh;
    }

    .logo-entreprise-sarr {
        width: 90%;
    }

    .title-page {
        font-size: 3rem;
    }

    .mentions-content {
        padding: 15px 25px;
    }

    .mentions-title,
    .mentions-sous-title {
        text-align: center;
    }

    .mentions-title {
        font-size: 30px;
    }

    .mentions-sous-title {
        font-size: 25px;
    }
}