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%;
}

.imgIndex img{
    margin-left: 11.4%;
    margin-top: 2%;
    height: 28vw;
    width: 33vw;
    border: 0.2vw solid black;
    border-radius: 5%;
}

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

#toggleContainer label { 
    text-align: center;
    width: 70px;
  }
  
  #container1 {
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
  }
  
  #toggleContainer {
    height: 10vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 95vw;
    position: absolute;
  }
  
  #tilesContainer {
    min-height: 90vh;
    width: 100vw;
    margin-top: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-content: center;
    
  }
  
  .tileItem {
    width: 250px;
    height: 250px;
    margin: 5px;
    border-radius: 5px;
    
    transition: all 0.5s ease;
  }
  
  .tileItem:hover {
     transform: scale(1.05);
    transition: all 0.5s ease;
  }
  
  #galleryContainer { 
    height: 500px;
    width: 800px;
    background: transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
  }
  
  #toggle {
    height: 10vh;
    width: 200px;
    display: flex;
    align-items: center;
    margin: 10px;
  }
  
  #tilesView {
    min-height: 100vh;
    width: 100vw;
    background: rgb(246,210,106);
    background: linear-gradient(111deg, rgba(246,210,106,1) 0%, rgba(255,159,0,1) 52%, rgba(251,197,100,1) 100%);
    display: none;
    justify-content: center;
    align-items: center;
    
  }
  
  #galleryView {
    height: 100vh;
    width: 100vw;
    background: rgb(246,210,106);
    background: linear-gradient(111deg, rgba(246,210,106,1) 0%, rgba(255,159,0,1) 52%, rgba(251,197,100,1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #outer3 {
    width: 100px;
    height: 40px;
    background-color: white;
    margin: 10px auto;
    border-radius: 3px;
    border: 2px solid white;
    transition: all 0.5s;
  }
  
  #slider3 {
    height: 36px;
    width: 46px;
    background-color: orange;
    border-radius: 3px;  
    transition: all 0.5s;
  }
  
  #slider3.active {
    -webkit-transform: translatex(50px);
    -ms-transform: translatex(50px);
    -o-transform: translatex(50px);
    transform: translatex(50px);
    transition: all 0.5s;
    background-color: orange;
  }
  
  #outer3.outerActive {
    background-color: white;
    border: 2px solid white;
    transition: all 0.5s;
  }
  
  #mainView {
    height: 450px;
    width: 450px;  
    border-radius: 5px;
    background-color: #eb9100;
    margin-left: 10px;
    margin-right: 10px;
    z-index: 1;
    transition: all 1s;  
  }
  
  #mainView:hover {
    transform: scale(1.2);
    transition: all 1s;   
  }
  
  #leftView {
    height: 400px;
    width: 150px;
    opacity: 0.5;
    border-radius: 5px;
    transform: skewy(5deg);
    transform-origin: top right;
    background-color: #eb9100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s;  
  }
  
  #leftView:hover {
    opacity: 1;
    transition: all 1s;
  }
  
  #rightView {
    height: 400px;
    width: 150px;
    opacity: 0.5;
    border-radius: 5px;
    transform: skewy(-5deg);
    transform-origin: top left;
    background-color: #eb9100;
    display: flex;
    justify-content: center;
    align-items: center;
   transition: all 1s;
  }
  
  #rightView:hover {
    opacity: 1;
    transition: all 1s;
  }
  
  .navBtns {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    position: absolute;
    opacity: 0.8;
    background-color: transparent;
    cursor: pointer;
    color: white;
  }
  
  .navBtns:hover {
    opacity: 1;
    transition: all 1s;
    background-color: #eb9100;
  }
  
  #navLeft {
    left: 50px;
  }
  
  #navRight {
    right: 50px;
  }
  
  #linkTag { 
    cursor: pointer;
    z-index: 1;
    box-sizing: border-box;
  }

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;
    }
    .para1 p{
        text-align: center;
        font-size: 2vw;
    }
    .imgIndex img{
        position: relative;
        display: list-item;
        margin-left: 30%;
        margin-top: 6%;
        height: 36vw;
        width: 41vw;
        border: 0.1vw solid black;
        border-radius: 5%;
    }
    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;
    }
}