*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: century gothic;
    overflow-x: hidden;
}
.logo{
    width: 140px;
    height:50px;
    background-image: url(swiggy-logo.webp);
    background-size: contain;
    background-repeat: no-repeat;
    
}
.container{
    width: 100%;
    height: 17vh;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 5px rgba(114, 111, 111, 0.493);    
    column-gap: 230px;
    position: sticky;
    top: 0;
}
.container a{
    text-decoration: none;
    color: black;
    margin: 0 10px;
    font-size: 1.12em;
    font-weight: 600;
}
.main_con{
    width: 100%;
    height: 12.5vh;
    display: flex;
    flex-direction: column;
    justify-self: start;
    align-items: center;
    margin-top: 10px;
   
}
.btn{
    width: 100%;
    height: 5vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    column-gap: 20px;
}
.btn button{
    width: 30px;
    height: 100%;
    border: none;
    border-radius: 50%;
    background-color: rgba(114, 111, 111, 0.493);
    color: rgb(0, 0, 0);
    font-size: 1.12em;
    font-weight: 600;
    cursor: pointer;
   
}
.slide{ border: 2px solid red;
    width: 120%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
     /* position: relative; */

}
.slide1, .slide2, .slide3{border: 2px solid red;
    width: 40%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    position: relative;
    transform: translatex(-100px);
}
.slide1{
    opacity: 0.1;
}





