@font-face {
  font-family: Product Sans;
  src: url(/font/ProductSans-Regular.ttf);
}
@font-face {
  font-family: Product B;
  src: url(/font/FontsFree-Net-ProductSans-Bold.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Product Sans;
}

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

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

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

nav a {
  font-size: 1vw;
  text-decoration: none;
  color: #fff;
}

nav i {
  font-size: 1.5vw;
  color: #fff;
}

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

.one {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: linear-gradient(150deg, rgb(255, 166, 0), rgb(255, 94, 0));
}

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

#orange-slice {
  position: absolute;
  top: 10%;
  left: 35%;
  width: 15%;
  z-index: 1;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

#orange {
  position: absolute;
  width: 20%;
  z-index: 3;
  top: 60%;
  right: 32%;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}
.one h1 {
  font-size: 27vw;
  color: #fff;
  font-family: Product B;
}
.two {
  display: flex;
  width: 100%;
  height: 100vh;
  background: #4d231c;
}
#leaf1 {
  top: 10%;
  left: 0%;
  transform: rotate(60deg);
  position: absolute;
  width: 15%;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}
#leaf {
  top: 70%;
  left: 80%;
  transform: rotate(-90deg);
  position: absolute;
  width: 12%;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}
#cocoleaf {
  width: 20%;
  position: absolute;
  top: 10%;
  right: 0%;
}
.left-two,
.right-two {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 5vh;
  width: 50%;
  height: 100%;
}
.left-two svg {
  margin-top: 50vh;
  width: 90%;
  transform: rotateX(50deg);
}
.right-two h1 {
  color: #fff;
  font-size: 5vw;
}
.right-two p {
  font-size: 1vw;
  color: #fff;
  width: 80%;
}
.three {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vw;
  width: 100%;
  height: 100vh;
  background: linear-gradient(150deg, rgb(255, 166, 0), rgb(255, 94, 0));
}
.card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2vh;
  margin-top: 10vh;
  width: 23vw;
  height: 67vh;
  border-radius: 20px;
  background-color: #fff;
}
.card h1 {
  margin-top: 45vh;
  font-size: 3vw;
}
.card button {
  /* background-color: #fff; */
  color: rgb(248, 162, 3);
  font-size: 1vw;
  border-radius: 50px;
  border: none;
  padding: 1vw 4vw;
}
#sprite {
  top: -10%;
  position: absolute;
  width: 55%;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}
#cocacola {
  top: -10%;
  position: absolute;
  width: 50%;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.lemon {
  top: -25%;
  position: absolute;
  width: 15vw;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}
.apple {
  top: -37%;
  position: absolute;
  width: 20vw;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}
.spri {
  background: linear-gradient(150deg, rgb(38, 191, 211), rgb(16, 211, 97));
}
.fant {
  background: linear-gradient(150deg, rgb(240, 220, 183), rgb(240, 122, 13));
}
.cok {
  background: linear-gradient(150deg, red, rgb(233, 180, 180));
}

.drop {
  animation: drop 1s ease 0.5s;
}

@keyframes drop {
  from {
    opacity: 0.5;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeup both;
  animation-timeline: view();
}

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.7);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
