*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'montserrat';
    color: #fff;
}

*::selection{
    background-color: wheat;
    color: tomato;
}


html,body{
    height: 100%;
    width: 100%;
}

body::-webkit-scrollbar{
    display: block;
    width: 8px;
    background-color: black;
}
body::-webkit-scrollbar-thumb{
    background-color: tomato;
    border-radius: 50px;
}

#cursor{
    height: 20px;
    width: 20px;
    background-color: tomato;
    border-radius: 50%;
    position: fixed;
    z-index: 99;

}

#cursor-blur{
    height: 500px;
    width: 500px;
    background-color: rgba(115, 63, 54, 0.271);
    border-radius: 50%;
    position: fixed;
    filter: blur(40px);
    z-index: 9;

}

#nav{
    height: 145x;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 150px;
    gap: 50px;
    position: fixed;
    z-index: 99;

}
#nav i{
    display: none;
}

#nav img{
    height: 75px;
    

}

#nav h4{
    text-transform: uppercase;
    font-weight: 500;
    color: wheat;
}

video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: fixed;
    z-index: -1;
}

#main{
    position: relative;
    background-color: rgba(0, 0, 0, 0.37);
     
}

#page1{
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 10;
}

#page1 #arrow{
    height: 250px;
    width: 250px;
    background-color: transparent;
    border: 2px solid tomato;
    position: absolute;
    display: flex;
    left: -2%;
    bottom: -2%;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all ease 0.5s;
}
#page1 #arrow a{
    text-decoration: none;
}
#page1 #arrow:hover{
    scale: 3vh;
    background-color: tomato;
}

#page1 #arrow i{
    font-size: 3vw;
    font-weight: 200;
}

#page1 h1{
    font-size: 9vmax;
    font-weight: 900;
    position: relative;
    color: wheat;
}
#page1 h1::before{
    content: "Savor.Taste.Relish.";
    position: absolute;
    color: black;
    top: -6px;
    left: -6px;
    -webkit-text-stroke: 1px tomato;
    z-index: -1;
}

#page1 h2{
    font-size: 30px;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 20px;
}
#page1 p{
    font-size: 22px;
    font-weight: 500;
    width: 40%;
}

#page2{
    min-height: 100vh;
    width: 100%;
    z-index: 10;

}

#scroller {
    /* background-color: red; */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    z-index: 10;

}
#scroller-in {
    display: inline-block;
    white-space: nowrap;
    animation-name: scroll;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#scroller::-webkit-scrollbar{
    display: none;
}

#scroller h4{
    display: inline-block;
    font-size: 120px;
    font-weight: 900;
    font-family: gilroy;
    margin-right: 10px;
    transition: all linear 0.5s;
    color: transparent;
    -webkit-text-stroke: 2px tomato;
}
#scroller h4:hover{
    color: tomato;
}

@keyframes scroll{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

#about-us{
    height: 40vh;
    width: 100%;
    display: flex;
    padding: 0 50px;
    align-items: center;
    position: relative;
    z-index: 10;
    justify-content: space-around;
}
#about-us img{
    height: 300px;
    width: 220px;
    border-radius: 20px;
    object-fit: cover;
}
#about-us-in{
    width: 40%;
    text-align: center;
}

#about-us-in h3{
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 40px;

}

#about-us-in p{
    font-size: 20px;
    line-height: 26px;
}

#cards-container {
    /* background-color: red; */
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    position: relative;
    z-index: 10;
}

.card{
    height: 80%;
    width: 24%;
    /* background-color: blue; */
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: all ease 0.6s;
}
#card1{
    background-image: url(icecream.jpg);
}
#card2{
    background-image: url(sandwich.jpg);
}
#card3{
    background-image: url(pizza.jpg);
}
.overlay{
    height: 100%;
    width: 100%;
    background-color: tomato;
    pad: 30px;
    padding-top: 160px;
    opacity: 0;
    transition: all ease 0.6s;
}
.overlay h4{
    color: #000;
    font-size: 40px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 20px;
    font-weight: 800;
}

.overlay p{
    color: #000;
    font-size: 18px;
}

.card:hover .overlay{
    opacity: 1;
}

.card:hover{
    transform: rotate3d(-1,1,0,20deg);
}
#red-div{
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: red; */
    background: linear-gradient(to left bottom,tomato,rgb(197, 52, 26));
}
#red-div h4{
    width: 35%;
    line-height: 50px;
    color: wheat;
    text-align: center;
    font-weight: 800;
    font-size: 27px;
    text-transform: uppercase;
}
#red-div img{
    height: 100%;
    object-fit: cover;
    width: 15%;
}
#page3{
    height: 100vh;
    width: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
#page3>p{
    font-size: 35px;
    font-weight: 700;
    width: 60%;
    line-height: 45px;
    text-align: center;
}

#page3 img{
    position: absolute;
    height: 100px;
}

#page3 #colon1{
    left: 15%;
    top: 25%;
}
#page3 #colon2{
    bottom: 30%;
    right: 15%;
}
#page3 h4{
    font-size: 26px;
    font-weight: 100;
}

#page4{
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    position: relative;
}

.elem{
    height:70%;
    width:20%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    
}
.elem h2{
    height:100%;
    width:100%;
    background-color: tomato;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.5s;
    font-size: 40px;
    position: absolute;
    z-index: 10;
}
.elem img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all ease 0.5s;
    scale: 1.1;
}
.elem:hover h2{
    color:#fff;
    background-color: transparent;
}
.elem:hover img{
    scale: 1;
}

#page4 h1{
    font-size: 130px;
    position: absolute;
    top: -12;
    font-weight: 900;
    font-family: gilroy;
    color: #000;
    -webkit-text-stroke: 2px #fff;
}

#footer {
    height: 40vh;
    width: 100%;
    background: linear-gradient(to left bottom, tomato 0%, firebrick 80%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6.5vw;
    padding: 0 100px;
 }


 #footer > img {
    position: absolute;
    left: 0;
    height: 100%;
    z-index: 0;
  }
  #f1 img {
    height: 180px;
  }

  #f1,#f2,#f3,#f4 {
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    z-index: 99;
    /* background-color: red; */
  }
  #f2 h3 {
    font-size: 1.6vw;
    white-space: nowrap;
    text-transform: uppercase;
    color: #f5deb3;
    font-weight: 900;
    margin-bottom: 8px;
  }
  
  #f3 h3 {
    font-size: 1.6vw;
    white-space: nowrap;
    text-transform: uppercase;
    color: wheat;
    font-weight: 800;
    margin-bottom: 8px;
  }
  #f4 h4 {
    font-size: 1vw;
    white-space: nowrap;
    text-transform: uppercase;
    color: wheat;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 8px;
  }
  
@media (max-width:600px) {
    *{
        box-sizing: border-box!important;
        -webkit-box-sizing:border-box ;
        /* overflow-x: hidden;*/
        height: auto;
        width: auto;
        max-height: unset; 
        min-height:unset;
        position: relative;
    }
    

    #nav {
        width: auto;
        padding-left: 2%;
        padding-top: 2%;
        padding-right: 100%;
        gap: 65vw;
    }
    #nav h4{
        display: none;
    }
    #nav i{
        font-size: 4.5vw;
        display: block;
        /* padding-right: 0%; */
    }
    #page1{
        flex-wrap: wrap;
    }
    #page2{
        flex-wrap: wrap;

    }
    #page3{
        flex-wrap: wrap;
    }
    #page4{
        flex-wrap: wrap;
    }

    #page1 h1{
        font-size: 8vw;

    }
    video{
        height: auto;
        width: auto;

    }
    #footer{
        flex-wrap: wrap;
    }
    #page1 h1::before{
        content: "Savor.Taste.Relish.";
        position: absolute;
        color: black;
        top: -1.5px;
        left: -3px;
        -webkit-text-stroke: 1px tomato;
        z-index: -1;
    }
    #about-us-in h3 {
        font-size: 3vh;
        font-weight: 800;
        margin-bottom: 40px;
        padding-top: 10px;
        margin-top: 40px;
    }
    #about-us img{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    #scroller {
        
        /* background-color: red; */
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        position: relative;
        z-index: 10;
        padding-bottom: 10px;
    }
    
}