.packages-swiper-slide {
  flex: 0 0 calc((100% - 60px) / 4);
  display: block;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  border-radius: 16px; 
  overflow: hidden;
  max-height: 450px;
  min-height: 450px;
}
.packages-swiper-slide-top{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60%;
}
.packages-swiper-slide-middle{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 10%;
}
.packages-swiper-slide-bottom{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20%;
  width: 100%;
}
.pkg-card-image{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100%;
  overflow: hidden;
}
.pkg-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;      
}
.pkg-card-title{
  font-size: 24px;
  font-family: var(--font-main);
  align-self: center;
  text-align: center;
}
.pkg-card-description{
  font-size: 14px;
  font-family: var(--font-main);
  max-width: 200px;
  align-self: center;
  text-align: center;
}
.package-item-tag-price-wrapper{
  position: absolute;
  left: 40px;
  top: 40px;
  display: inline-block;
}
.package-item-tag-price-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-14deg);
  color: var(--background-color);
  font-size: 12px;
  font-weight: bold;
  font-family: var(--font-main);
  pointer-events: none;
}
.package-item-tag-price-img {
    display: block;
    width: 100%;
    height: auto;
}
.packages-hover-box  {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--black-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    color: white;
    font-family: var(--font-main);
    font-size: 16px;
  }
  .packages-swiper-slide:hover .packages-hover-box  {
    transform: translateY(0);
  }

