*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    height: 100%;
    width: 100%;
}

#main{
    width: 100%;
    height: 100vh;
    background-color: orangered;
}

body::-webkit-scrollbar {
    display: none;
  }

nav{
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 5vh;
    padding: 0 10vw;
    z-index: 99;
}

nav a, i{
    text-decoration: none;
    color: #fff;
}

.cntr-nav{
    display: flex;
    gap: 3vw;
}

.one{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background:linear-gradient(150deg, rgb(250, 173, 31), rgba(255, 81, 0, 0.788));
}


#fanta{
    position: absolute;
    width: 40%;
    z-index: 2;
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.3s;
}

#orangeSlice{
    position: absolute;
    top: 10%;
    left: 33%;
    width: 15%;
    z-index: 1;
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.3s;
}

#orange{
    width: 20%;
    position: absolute;
    z-index: 3;
    top: 55%;
    right: 30%;
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.3s;
}

.one h1{
    font-size: 20vw;
    color: #fff;
}

#leaf{
    position: absolute;
    width: 18%;
    top: 60%;
    left: 80%;
    transform: rotate(-90deg);
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.3s;

}
#leaf1{
    position: absolute;
    width: 18%;
    top: 15%;
    left: 5%;
    transform: rotate(60deg);
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.3s;
}

.two{
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: #4d231c;
}

.lft-two, .rght-two{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4vh;
}


.lft-two svg{
    margin-top: 50vh;
    width: 80%;
    transform: rotateX(50deg);
}

.rght-two h1{
    color: #fff;
    font-size: 5vw;
}
.rght-two p{
    color: #fff;
    font-size: 1vw;
    width: 80%;
}


.three{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5vw;
    background:linear-gradient(150deg, rgb(250, 173, 31), rgba(255, 81, 0, 0.788));
}

.card{
    position: relative;
    width: 25vw;
    height: 70vh;
    gap: 2vh;
    border-radius: 24px;
    margin-top: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
}

.card h1{
    font-size: 3vw;
    margin-top: 40vh;
}

.card button{
    font-size: 1vw;
    padding: 1vw 2vw;
    border-radius: 50px;border: none;
    background-color:  rgb(250, 173, 31);
    color: #fff;
}

#Sprite{
    top: -12%;
    position: absolute;
    width: 56%;
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.3s;
}

#CocaCola{
    top: -20%;
    position: absolute;
    width: 100%;
    left: 30%;
    transform: translate(-30%, 0%);
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.3s;
}



#lemon{
    top: -35%;
    position: absolute;
    left: 30%;
    width: 33vw;
    transform: translate(-36%, 0%);
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.3s;
}

