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

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: unset;
}

p {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  font-family: Montserrat, sans-serif;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow-x: hidden;
}

.container {
  max-width: 1250px;
  width: 100%;
}

.copy {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.copy .cta {
  max-width: 517px;
  height: auto;
  width: 100%;
}
.copy .container {
  width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 100px;
}
.copy .container .text {
  text-align: center;
  font-weight: 400;
  font-size: 22px;
  padding: 0 14px 24px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background: url("images/top-bg.png") no-repeat;
  background-position-x: center;
  width: 100%;
  position: relative;
}
.top .logo img {
  width: 100%;
  max-width: 700px;
  height: auto;
}
.top .scooter {
  transform-origin: bottom ;
  animation: wave 3s infinite alternate ease-in-out;
}
.top::before, .top::after {
  content: "";
  position: absolute;
  width: 370px;
  height: 1520px;
  top: 0;
}
@media (max-width: 730px) {
  .top::before, .top::after {
    display: none;
  }
}
.top::before {
  left: 0;
  background: url("images/fruits-left.png");
}
.top::after {
  right: 0;
  background: url("images/fruits-right.png");
}
.top .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.top .travelkuj {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -100px;
  z-index: 10;
}
.top .travelkuj img {
  max-width: 630px;
  height: auto;
  width: 100%;
}

.info {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info::before {
  content: url("images/bg-2.png");
  position: absolute;
  left: -800px;
  top: -200px;
  z-index: -2;
}
.info .bg {
  position: absolute;
  z-index: -1;
}
.info .container {
  position: relative;
  display: flex;
  max-width: 1450px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 730px) {
  .info .container {
    flex-wrap: wrap;
  }
}
.info .products-packshot {
  position: relative;
  top: 30px;
}
.info .products-packshot img {
  width: 100%;
  height: auto;
  max-width: 1051px;
}
.info .text {
  position: absolute;
  transition: all 0.5s;
}
@media (max-width: 730px) {
  .info .text {
    position: static;
  }
  .info .text img {
    max-width: 180px;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1080px) and (min-width: 730px) {
  .info .text {
    scale: 0.7;
  }
}
.info .text:hover {
  scale: 1.05;
}
.info .text.text1 {
  left: 180px;
  top: 130px;
  animation: wave 3s infinite alternate ease-in-out;
}
@media (max-width: 1080px) {
  .info .text.text1 {
    left: 0;
  }
}
.info .text.text2 {
  left: 30px;
  top: 360px;
  animation: wave 4s 0.5s infinite alternate ease-in-out;
}
@media (max-width: 1080px) {
  .info .text.text2 {
    left: -60px;
    top: 270px;
  }
}
.info .text.text3 {
  right: 70px;
  top: 520px;
  animation: wave 3s infinite alternate ease-in-out;
}
@media (max-width: 1080px) {
  .info .text.text3 {
    right: 0;
  }
}
.info .text.text4 {
  right: 30px;
  top: 320px;
  animation: wave 4s 0.5s infinite alternate ease-in-out;
}
@media (max-width: 1080px) {
  .info .text.text4 {
    right: 0;
    top: 370px;
  }
}
.info .text.text5 {
  right: 30px;
  top: 150px;
  animation: wave 4s infinite alternate ease-in-out;
}
@media (max-width: 1080px) {
  .info .text.text5 {
    right: -80px;
    top: 200px;
  }
}

.products {
  width: 100%;
  background: #ea8b1f;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 350px;
}
.products::before {
  content: "";
  position: absolute;
  background: yellow;
  width: 600px;
  height: 600px;
  opacity: 0.5;
  filter: blur(200px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  top: 0;
}
.products .round {
  border-radius: 100%;
  background: #ea8b1f;
  width: 150%;
  height: 800px;
  transform: scaleY(0.7);
  position: absolute;
  top: -290px;
  left: -25%;
  z-index: -1;
}
.products .fruits {
  position: absolute;
  left: 50%;
  top: -350px;
  transform: translateX(-50%);
}
.products .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -300px;
}
@media (max-width: 1050px) {
  .products .container {
    flex-direction: column;
  }
}
.products .container .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 49%;
}
@media (max-width: 1050px) {
  .products .container .row {
    width: 80%;
  }
}
@media (max-width: 750px) {
  .products .container .row {
    flex-direction: column;
  }
}
.products .container .product {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  transition: all 0.5s;
}
.products .container .product:hover {
  scale: 1.05;
}
.products .container .product:hover .image {
  scale: 1.1;
  rotate: -3deg;
}
.products .container .product .image {
  animation: jump 4s infinite ease-in-out;
  transition: all 0.5s;
}
.products .container .product .image img {
  max-width: 350px;
  width: 100%;
  height: auto;
}
.products .container .product .image.p1 {
  animation-delay: 0.2s;
}
.products .container .product .image.p2 {
  animation-delay: 0.4s;
}
.products .container .product .image.p3 {
  animation-delay: 0.6s;
}
.products .container .product .image.p4 {
  animation-delay: 0.8s;
}
.products .container .product .title {
  position: relative;
  top: -50px;
}
.products .container .product .title img {
  max-height: 100px;
  height: 100%;
  width: auto;
}
.products .container .product .desc {
  color: #fff;
  position: relative;
  top: -50px;
  text-align: center;
  max-width: 200px;
  height: 40px;
  font-size: 16px;
}
.products .container .product .cta {
  position: relative;
  top: -20px;
}

.video {
  width: 100%;
  background: #ea8b1f;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video .bg {
  position: absolute;
  z-index: 0;
  top: -600px;
  left: 50%;
  transform: translateX(-50%);
}
.video .video-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
.video .video-bg-1 {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
}
@media (max-width: 940px) {
  .video .video-bg, .video .video-bg-1 {
    display: none;
  }
}
.video .video-container {
  margin-top: 250px;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  z-index: 2;
}
@media (max-width: 940px) {
  .video .video-container {
    margin-top: 150px;
  }
}
.video .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  top: -180px;
}
@media (max-width: 940px) {
  .video .logo {
    top: -90px;
  }
}
.video .logo img {
  max-width: 700px;
  width: 100%;
  height: auto;
}
.video .round {
  border-radius: 100%;
  background: #ea8b1f;
  width: 150%;
  height: 800px;
  position: absolute;
  bottom: -220px;
  left: -25%;
  z-index: -1;
}
.video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider {
  width: 100%;
  display: flex;
  margin-top: 80px;
  align-items: center;
  justify-content: center;
}
.slider .container {
  max-width: 1200px;
  position: relative;
  min-height: 600px;
}
@media (max-width: 940px) {
  .slider .container {
    min-height: 550px;
  }
}
@media (max-width: 740px) {
  .slider .container {
    min-height: 350px;
  }
}
.slider .left-arrow {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.5s;
  z-index: 2;
}
.slider .left-arrow:hover {
  transform: translateY(-50%) scale(1.2) rotate(7deg);
}
.slider .right-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: scaleX(-1) translateY(-50%);
  cursor: pointer;
  transition: all 0.5s;
  z-index: 2;
}
.slider .right-arrow:hover {
  transform: scaleX(-1) translateY(-50%) scale(1.2) rotate(7deg);
}
@media (max-width: 740px) {
  .slider .right-arrow, .slider .left-arrow {
    scale: 0.5;
  }
}
.slider .slider-container {
  align-items: center;
  justify-content: center;
  display: flex;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  scale: 1.4;
  width: 100%;
  transition: all 0.5s;
  padding: 0 110px;
}
@media (max-width: 740px) {
  .slider .slider-container {
    flex-direction: column;
    padding: 10px;
  }
}
.slider .slider-container.active {
  display: flex;
  opacity: 1;
  scale: 1;
  pointer-events: auto;
}
.slider .slider-container .product {
  width: 60%;
}
.slider .slider-container .product img {
  width: 100%;
  height: auto;
}
.slider .slider-container .text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 40%;
  font-size: 16px;
  text-align: center;
  padding: 24px 6px 24px;
}
@media (max-width: 650px) {
  .slider .slider-container .text {
    width: 100%;
  }
}
.slider .slider-container .text .desc {
  padding: 4px 0 16px;
}

.social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  background-color:  #ea8b1f;

}
.social .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.brown{
filter: invert(3%) sepia(94%) saturate(76%) hue-rotate(0deg) brightness(94%) contrast(85%);
}
.social .container a img {
  transition: all 0.2s;
  margin-right: 20px;
 
  width:36px;
}

.social .container a:hover img {
  scale: 1.1;
  opacity: 0.8;
}

.cta {
  transition: all 0.5s;
  cursor: pointer;
}
.cta:hover {
  transform: scale(1.1) rotate(3deg);
}

@keyframes wave {
  from {
    rotate: -4deg;
  }
  to {
    rotate: 2deg;
  }
  
}
@keyframes pulse {
  0% {
    scale: 1;
    rotate: 0;
  }
  10% {
    scale: 1.01;
  }
  20% {
    scale: 1;
    rotate: 0;
  }
  30% {
    scale: 1.01;
  }
  40% {
    scale: 1;
    rotate: 2deg;
  }
  100% {
    scale: 1;
    rotate: 0;
  }
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(-10px);
  }
  10% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes wave1 {
  from {
    rotate: -2deg;
    transform: translateX(5px);
  }
  to {
    rotate: 2deg;
    transform: translateX(-5px);
  }
}

/*# sourceMappingURL=styles.css.map */
