.video-banner {
  position: relative;
  padding-top: 75vh;
  background-color: #000;
}
.video-banner::after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.video-banner video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.modalListing {
  padding: 0 0 50px;
}
.modalListing .title {
  margin: 0;
  padding: 50px 5vw 0;
}
.modalListing .wrapper {
  padding: 0 5vw;
}
.modalListing .row {
  align-items: center;
}

.az-filter {
  padding: 0 10px;
  background-color: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
  position: sticky;
  bottom: -1px;
  left: 0;
  text-align: center;
  z-index: 1020;
  overflow-x: scroll;
  overflow-y: hidden;
}
.az-filter .d-inline-flex {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  justify-content: flex-start;
}
.az-filter::-webkit-scrollbar {
  height: 3px;
  background-color: transparent;
  position: absolute;
}
.az-filter::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background: #ffffff;
  border: none;
}
.az-filter::-webkit-scrollbar-track {
  background-color: transparent;
}
.az-filter a {
  color: #fff;
  text-transform: uppercase;
  font-size: 17px;
  padding: 12px 12px 10px;
  position: relative;
  display: inline-flex;
  font-weight: 500;
  top: 0;
  left: 0;
  transition: 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.az-filter a.active, .az-filter a:hover {
  color: #b3d300;
  text-shadow: 2px 2px 1px rgba(255, 230, 0, 0.4784313725);
  top: -2px;
  left: -2px;
}

.modelCard {
  position: relative;
  margin-bottom: 15px;
}
.modelCard a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modelCard a + a {
  padding: 10px 5px;
  transform: translateY(0);
  transition: 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modelCard a + a .name {
  color: #fff;
  font-size: 21px;
  font-family: "Glitten";
  position: relative;
  top: 0;
  left: 0;
  transition: 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modelCard a + a .name span {
  color: #b3d300;
}
.modelCard .img-holder {
  position: relative;
  overflow: hidden;
  z-index: 5;
  border-bottom: 1px solid transparent;
  border-radius: 8px;
}
.modelCard .img-holder::after {
  content: "";
  height: 100%;
  width: 100%;
  background: rgba(0, 58, 52, 0.5803921569);
  opacity: 0;
  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  backdrop-filter: blur(2px);
}
.modelCard .img-holder img {
  height: auto;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  pointer-events: none;
  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modelCard .info-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 10px 50px;
  gap: 12px;
  color: #fff;
  z-index: 10;
  opacity: 0;
  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modelCard .info-layer p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: 200px;
  font-size: 16px;
}
.modelCard .info-layer p span {
  color: #b3d300;
  font-weight: 600;
}
.modelCard:hover .img-holder {
  border-bottom: 1px solid #b3d300;
}
.modelCard:hover .img-holder::after {
  opacity: 1;
}
.modelCard:hover .img-holder + a .name {
  text-shadow: 0 3px 1px #006b47;
  top: -3px;
  left: 0;
}
.modelCard:hover .info-layer {
  opacity: 1;
  padding-bottom: 0;
}