.z-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
  border-style: solid;
  opacity: 0;
  visibility: hidden;
}
.z-banner a {
  text-decoration: none;
}
.z-banner i.fa-solid,
.z-banner i.fa-regular,
.z-banner i.fa-brands {
  font-family: "Font Awesome 6 Free" !important;
  padding-left: 5px;
  padding-right: 5px;
}

.z-banner i.fa-solid {
  font-weight: 900 !important;
}

.z-banner i.fa-regular {
  font-weight: 400 !important;
}
.z-banner-background-img, 
.z-banner-background-video, 
.z-banner-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.z-banner-background-img {
  background-repeat: no-repeat;
  background-position: center center;
  transform: translateZ(0);
  opacity: 0;
  visibility: hidden;
}
.z-banner-background-video {
  background-position: center center;
  object-fit: cover;
}
.z-banner-title,
.z-banner-description,
.z-banner-button {
  overflow: visible;
  opacity: 0;
  visibility: hidden;
}
.z-banner-title, .z-banner-description {
	position: relative;
  width: 100%;
  z-index: 5;
}
.z-banner-button {
  position: absolute;
  display: block;
  align-items: center;
  justify-content: center;
  text-decoration: none;
	z-index: 6;
}
.z-banner-button-after, .z-banner-button-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-style: solid;
  z-index: 6;
  transition: opacity 0.3s ease;
}
.z-banner-button-before {
  opacity: 0;
}
.z-banner-button:hover .z-banner-button-after {
  opacity: 0;
}
.z-banner-button:hover .z-banner-button-before {
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  .z-banner {
    height: auto !important;
    min-height: 250px !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px !important;
  }
  .z-banner-backgroung-img {
    background-size: cover !important;
    background-position: center !important;
  }
  .z-banner-button {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 20px;
    width: 80% !important;
  }
}