
@keyframes moving-vertical-2 {
    0% {
        -webkit-transform: translateY(0)
    }

    50% {
        transform: translateY(-15%)
    }

    100% {
        transform: translateY(0)
    }
}
@keyframes rotate-center {
    0% {
      -webkit-transform: rotate(0);
              transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  @-webkit-keyframes vibrate-1 {
    0% {
      -webkit-transform: translate(0);
              transform: translate(0);
    }
    20% {
      -webkit-transform: translate(-2px, 2px);
              transform: translate(-2px, 2px);
    }
    40% {
      -webkit-transform: translate(-2px, -2px);
              transform: translate(-2px, -2px);
    }
    60% {
      -webkit-transform: translate(2px, 2px);
              transform: translate(2px, 2px);
    }
    80% {
      -webkit-transform: translate(2px, -2px);
              transform: translate(2px, -2px);
    }
    100% {
      -webkit-transform: translate(0);
              transform: translate(0);
    }
  }
  @keyframes vibrate-1 {
    0% {
      -webkit-transform: translate(0);
              transform: translate(0);
    }
    20% {
      -webkit-transform: translate(-2px, 2px);
              transform: translate(-2px, 2px);
    }
    40% {
      -webkit-transform: translate(-2px, -2px);
              transform: translate(-2px, -2px);
    }
    60% {
      -webkit-transform: translate(2px, 2px);
              transform: translate(2px, 2px);
    }
    80% {
      -webkit-transform: translate(2px, -2px);
              transform: translate(2px, -2px);
    }
    100% {
      -webkit-transform: translate(0);
              transform: translate(0);
    }
  }
.rotate-center {
	-webkit-animation: rotate-center 10s linear infinite both;
	        animation: rotate-center 10s linear infinite both;
}
.vibrate-1 {
	-webkit-animation: vibrate-1 0.3s linear infinite both;
	        animation: vibrate-1 0.3s linear infinite both;
}
.moving-vertical-2 {
    animation: 4s ease-in-out infinite both moving-vertical-2;
}
.main-banner {
    background-image:url('../assets/image/home/ppzbg.jpg') ;
    background-size: 100% 100%;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.main-banner .container {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}
.ppz-events {
    display: flex;
    gap:1rem;
    align-items: flex-end;
}
.ppz-events > * {
    width: calc((100% / 3) - 1rem);
    flex:0 0 calc((100% / 3) - 1rem);
    
}
.ppz-event .bg {
    position: relative;
}
.ppz-event .image {
    z-index: 1;
    position: relative;
    transition: all 500ms cubic-bezier(0.55, 0.06, 0.68, 0.19)
}
.ppz-event .image img {
    width: 100%;
    height: 37vw;
    object-fit: contain;
}
.ppz-event .image:hover {
    transform: scale(1.09);

}
.ppz-event .image:hover img {
	/*-webkit-animation: vibrate-1 0.5s linear infinite both;*/
	/*        animation: vibrate-1 0.5s linear infinite both;*/
}
.ppz-event:last-child .image img {
    width: 118%;
    max-width: 122%;
    height: 38vw;
    margin-left: -8%;
}
.main-banner .title {
    transform: skewX(-20deg);
    background-color: #000;
    color:#F4C006;
    max-width: 80%;
    margin: 0 auto;
    margin-top: -10%;
    z-index: 2;
    position: absolute;
    bottom: -2%;
    width:90%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.main-banner .title span {
    transform: skewX(20deg);
    font-size: 2rem;
    display: block;
    text-align: center;
    padding: 2%;
}
.coming-soon {
    text-align: center;
    background-image: url('../assets/image/home/pop-text.png');
    background-size: 102% 102%;
    padding: 14%;
    background-position: -.5vw -0.5vw;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1em;
    font-size: 2rem;
    z-index: 1;
    position: absolute;
    bottom: -3%;
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto
}
.sun {
    position: absolute;
    top: 2%;
    left: 5%;
    width:9%;
}
.hotballoon {
    position: absolute;
    top:5%;
    right:5%;
    width:9%;
}
.sun {
    position: absolute;
    top: 2%;
    left: 5%;
}
.hotballoon {
    position: absolute;
    top:5%;
    right:5%;
}
.element-left {
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 15%;
}
.element-right {
    position: absolute;
    bottom:0%;
    right:0%;
    width: 15%;
}
.bg-image {
    position: absolute;
    bottom:0;
    width: 97%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

@media screen and (max-width: 991px){
        .coming-soon, .main-banner .title span {
        font-size:1.5rem;
    }
    .hotballoon, .sun {
        width:15%;
    }

}
@media screen and (max-width: 767px){
    .title p{
      margin:0;  
    }
    .ppz-events > * {
        width:100%;  
        flex:0 0 100%;
        height:100%;
    }
    .ppz-events {
        flex-wrap:wrap;
    }
    .ppz-event .image {
            padding: 7% 0;
    }
    .ppz-event:first-child {
        margin-bottom:-10%;
    }
    .ppz-event:first-child .bg-image{
       transform: skewX(-14deg) rotate(-194deg);
    }
    .bg-image {
        height:100%;

    }
}