{
    padding: 0px;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
body{
    background: #F2E9E4;
}
.barnav{
    background-color: #028391;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 50px;
    padding: 10px 20px;
    align-items: center;

}
.barnav .logo img{
    width: 30px;
    height: 30px;
    cursor: pointer
}
.barnav.menu a{
    margin-left: 10px;
    color: aliceblue;
    padding: 7px;
    background: #007BFF;
    border-radius: 5px;
    text-decoration: none;
}
.barnav.menu a:hover{
    background-color: #0056b3;
}
.contenair{
    background-color: #F2E9E4;
    padding: 30px;
}

section{
    margin-bottom: 50px;
}

section h1{
    margin-bottom: 20px;
}

.Ncarte {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

}
.carte {
    width: calc(33% - 20px);
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    gap: 10px;
}
.carte .image {
    height: 150px;
    width: 400px;
}
.carte h2 a {
    color: #007BFF;
    text-decoration: none;
}
.carte h2 a:hover {
    color: #0056b3;
}
.carte img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.carte .texte {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.contenu p {
    margin-top: 20px;
}
.video_section h1{
    padding-top: 80px;
}

footer {
    background-color: #373A40;
    padding: 20px;
}

footer .footer-items {
    color: #fff;
    display: flex;
    gap: 50%;
}

footer.footer-items h3 {
    margin-bottom: 10px;
}

footer .footer-items ul{
    list-style: none;
    margin: 0;
}

footer .footer-items ul li{
    font-weight: normal;
    line-height: 1.5;
}

footer .footer-items ul li a{
    color: #fff;
    text-decoration: none;
}




.copyright {
    margin-top: 20px;
    color: #fff;
    text-align: center;
}

#contact {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
form {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    width: 60%;
}
form h1 {
    text-align: center;
}
form .champ {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
form input {
    padding: 10px;
    border-radius: 3px;
    border: 1px solid black;
}
form textarea {
    padding: 10px;
    height: 100px;
    resize: none;
}
.envoyer {
    background-color: #808836;
    color:#fff;
    border-radius: 5px;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 10px;
}
.envoyer:hover {
    background-color: #365E32;
}
/* RESPONSIVE */
@media screen and (max-width: 991px) {
    .carte {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 768px) {
    .Ncarte {
        flex-direction: column;
    }
    .carte {
        width: 100%;
    }
}
.carte .image {
    display: none;
}
form {
    width: 100%;
}
footer .footer-items{  
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    }
}