body {
    margin:0;
    padding: 0;
    width: 100%;
}

:root {
    --color-primary: #ac3636;
    --color-primary-dark: #005472;
    --color-primary-dark-2: #004159;

    --color-white: #eee;
    --color-black: #0f0f0f;
}

.navbar{
    display: flex;
    padding: 20px 0%;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(rgb(0, 0, 0), rgb(37, 36, 36));
    position: relative;
}

.logo{
    color: rgb(255, 255, 255);
    font-size: 4vw;
    font-family: Jazz LET, fantasy;
    float: left;
    text-align: center;
    margin-left: 1%;
}

.toggle-button{
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.toggle-button .bar{
    width: 35px;
    height: 4px;
    border-radius: 5px;
    background-color: #fff;
    margin: 3px 0px;
}

.nav-links{
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 1vw 2.5vw;
}


.nav-links li a{
    padding: 0 0.52vw;
    text-decoration: none;
    color: #000000;
    font-size: 1.3vw;
}

.nav-links li a:hover{
    color: #000000;
    padding: 0 8px;
    border: 0.15vw solid gray;
    border-radius: 5px;
    background-color: #f1ecec;
}

.sous{
    display: none;
    position: absolute;
    padding-left: 3vw;
    background-color: white;
    border: 0.2vw solid black;
    z-index: 10;
    margin-top: 0.2%;
}

.sous.active{
    display: block;
}

.sous li{
    margin-top: 6%;
    text-align: left;
    padding-right: 0.8vw;
    padding-left: 0%;
    list-style: disc;
}

.sous li::marker{
    font-size: 1vw;
}


.sous a{
    padding-left: 0%;
}

.sous a:hover{
    background-color: RGBa(200,200,200,0.1);
}

.deroulant > a::after{
    content:"▼";
    padding: 0 3px;
    font-size: 0.9vw;
}

.image{
    position: relative;
    float: right;
    min-width: 5%;
    width: 7%;
    height: 6vw;
    margin-right: 5%;
}

.para1 p{
    text-align: center;
    font-size: 1.3vw;
}

.para1 .img1 {
    margin-left: 15%;
    margin-top: 2%;
    height: 30vw;
    width: 24vw;
    border: 0.2vw solid black;
    border-radius: 5%;
}

.para1 .img2 {
    margin-left: 15%;
    margin-bottom: 1.5%;
    height: 27vw;
    width: 33vw;
    border: 0.2vw solid black;
    border-radius: 5%;
}

footer{
    background: rgb(32, 32, 32);
    padding-top: 4%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2vw;
    color: white;
    margin-top: 5%;
}

.container{
    min-width: 58%;
    margin: auto;
    display: flex;
    justify-content: center;
}
.footer-content{
        width: 40.3%;
}

.imgI {
    width: 4vw;
    float: left;
}

h3{
    font-size: 1.6vw;
    margin-bottom: 4%;
    text-align: center;
}

.footer-content p{
    width: 73%;
    margin-left: 25%;
    padding: 3%;
}

.footer-content ul{
    text-align: center;
}

.footer-content a {
    text-decoration: none;
    color: white;
}

.footer-content a:hover {
    color: #ee2d2d;
}

.imgF {
    width: 13%;
    height: 39%;
    margin-left: 44%;
    border-radius: 4px;
    -webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.imgF:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.bottom-bar{
    background: black;
    color: #ffffff;
    text-align: center;
    padding: 1% 0;
    margin-top: 1%;
}

.bottom-bar p{
    color: #5a5858;
    margin: 0;
    font-size: 1.5vw;
    padding: 1%;
}

@media screen and (max-width : 1024px){
    .nav-links li a{
        padding: 0 0.52vw;
        text-decoration: none;
        color: #000000;
        font-size: 2vw;
    }
    footer{
        background: rgb(32, 32, 32);
        padding-top: 4%;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1.7vw;
        color: white;
        margin-top: 5%;
    }
    h3{
        font-size: 1.9vw;
        margin-bottom: 4%;
        text-align: center;
    }
    .imgF {
        width: 16%;
        height: 39%;
        margin-left: 44%;
        border-radius: 4px;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
}