.et_pb_jt_bucket {
  position: relative;
  overflow: hidden;
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
}

.jt_divi_bucket_text_container {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.jt_divi_bucket_text_container div {
  top: 50%;
  transform: translateY(-50%);
}

.jt_divi_bucket_image_container {
  width: 100%;
  height: 100%;
}

.jt_divi_bucket_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.et_pb_jt_bucket:hover .jt_divi_bucket_image {
 transform: scale(1.1);
}

.jt_divi_bucket_text_container {
  position: absolute;
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.jt_divi_bucket_text_container>div {
  position: absolute;
  text-align: center;
  width: 100%;
}

.jt_divi_bucket_text_container .jt_divi_bucket_title h2 {
  opacity: 1;
  margin: 0px;
  padding: 0px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.et_pb_jt_bucket:hover .jt_divi_bucket_text_container .jt_divi_bucket_title h2 {
  opacity: 0;
  -webkit-transform: translate3d(0,-20px,0);
  transform: translate3d(0,-20px,0);
}

.jt_divi_bucket_text_container .jt_divi_bucket_content div {
  margin: 0px;
  padding: 0px;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate3d(0,20px,0);
  transform: translate3d(0,20px,0);
}

.et_pb_jt_bucket:hover .jt_divi_bucket_text_container .jt_divi_bucket_content div {
  opacity: 1;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
