* {
  padding: 0;
  margin: 0;
  font-family: 'Myriad Pro', sans-serif;
}
li{
  list-style: none;
}
body {
  overflow: hidden;
}

.wrapper {
  height: 100vh;
  overflow-x: hidden;
  perspective: 300px;
}

.parallax-cointainer {
  position: relative;
  width: auto;
  transform-style: preserve-3d;
}

.para-adjust1 {
  height: 400px;
}

.parallax-image {
  background: url('../images/mojitos1.jpg') no-repeat center;
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: cover;
  transform: translateZ(-300px) scale(2);
  z-index: -1;
  width: 110%;
  height: 110vh;
}

.para-content-info {
  max-width: 800px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.para-text {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  padding: 20px;
}

.know-more-button {
  padding: 10px 20px;
  border: 2px solid #ffffff;
  background-color: transparent;
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.know-more-button:hover {
  background-color: rgb(243, 240, 240, .4);

}

.info-container {
  z-index: 1;
}




.popupadd {
  border-radius: 15px;
  position: fixed;
  top: 40%;
  right: -500px; /* Initial position, off-screen */
  transform: translateY(-40%);
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 20px 10px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: right 0.5s ease-in-out;
}
.sliderclosebutton{
  display: flex;
  justify-content: end;
  padding: 10px 0px;
}
.popipslider img{
  width: 300px;
  cursor: pointer;
}
#closeBtnn{
  cursor: pointer;
  width: 20px;
  font-size: 20px;
  background-color: transparent;
  border: none;
  color: #ffffff;
  font-size: 28px;
}
.popupadd.active {
  right: 0; /* Slide in from the right */
}
.minies-offer{
  box-shadow: 0 4px 8px rgb(85, 82, 82);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.minies-offer p{
  /* padding: 0px 0px 0px 5px ; */
  color: #ffffff;
  font-size: 15px;
}
@media (max-width: 550px) {
  .para-adjust1 {
    height: 600px;
  }

  .para-content-info {
    width: 70%;
  }

  .parallax-image {
    background: url('../images/mojitos.jpg') no-repeat center;
    height: 100%;
  }

  .parallax-image {
    transform: translateZ(-600px) scale(4);
    height: 100%;
  }
  .popipslider img{
    width: 300px;
  }
  .popupadd {
  transform: translateY(-10%);
  }

}