.video-banner {
  position: relative;
  padding-top: 80vh;
  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;
}
.video-banner .text {
  padding: 0 5vw 5vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 100;
  position: absolute;
  top: 100%;
  transform: translateY(-100%);
}
.video-banner .text h1 {
  color: #fff;
  font-size: calc(0.8vw + 0.5em);
  text-transform: uppercase;
  font-family: "standard";
}
.video-banner .text p {
  font-size: 20px;
  font-family: light;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

.modalListing {
  padding: 0px 0 50px 0;
}
.modalListing .title {
  margin: 0px;
  padding: 50px 5vw 0;
}
.modalListing .wrapper {
  padding: 0 5vw;
}
.modalListing .grid {
  display: grid;
  grid-template: auto/repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 15px;
}
@media (max-width: 1800px) {
  .modalListing .grid {
    grid-template: auto/repeat(auto-fit, minmax(280px, 1fr));
  }
}
@media (max-width: 1366px) {
  .modalListing .grid {
    grid-template: auto/repeat(auto-fit, minmax(260px, 1fr));
  }
}
@media (max-width: 991px) {
  .modalListing .grid {
    grid-template: auto/repeat(auto-fit, minmax(230px, 1fr));
  }
}
@media (max-width: 767px) {
  .modalListing .grid {
    grid-template: auto/repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media (max-width: 576px) {
  .modalListing .grid {
    grid-template: auto/repeat(auto-fit, minmax(180px, 1fr));
  }
}
.modalListing .text {
  text-align: center;
}
.modalListing .text .title {
  margin: 0 0 10px;
}
.modalListing .text p {
  padding: 0 15px;
  margin: 0 0 0px;
  font-size: 20px;
  font-family: regular;
}
@media (max-width: 1199px) {
  .modalListing .text p {
    font-size: 16px;
    margin: 0 0 30px;
  }
}
.modalListing .row {
  align-items: center;
}
.modalListing .modalCard {
  position: relative;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .modalListing .modalCard {
    margin-bottom: 2px;
  }
}
.modalListing .modalCard .imgHolder {
  position: relative;
  padding-top: 120%;
  overflow: hidden;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.modalListing .modalCard .imgHolder::after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0;
  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: absolute;
  top: 0;
  left: 0;
}
.modalListing .modalCard img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1);
}
.modalListing .modalCard h3 {
  width: 100%;
  text-align: center;
  font-size: 20px;
  line-height: 1.4px;
  font-family: "bold";
  color: #000;
  margin-top: 15px;
}
@media (max-width: 1199px) {
  .modalListing .modalCard h3 {
    font-size: 16px;
    line-height: 24px;
  }
}
.modalListing .modalCard h3 span {
  font-family: light;
}
.modalListing .modalCard .pullOver {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  height: auto;
  padding: 0 15px 25px;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  opacity: 0;
  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 1199px) {
  .modalListing .modalCard .pullOver {
    padding: 0 7px 10px;
  }
}
.modalListing .modalCard .pullOver ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  gap: 15px;
}
@media (max-width: 1199px) {
  .modalListing .modalCard .pullOver ul {
    flex-wrap: wrap;
  }
}
.modalListing .modalCard .pullOver ul li {
  font-size: 13px;
  color: #fff;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) {
  .modalListing .modalCard .pullOver ul li {
    font-size: 10px;
    padding: 2px 2px;
  }
}
.modalListing .modalCard .pullOver ul li strong {
  color: #989898;
  display: block;
}
.modalListing .modalCard:hover .imgHolder::after {
  opacity: 0.3;
}
.modalListing .modalCard:hover .pullOver {
  background-color: rgba(0, 0, 0, 0.8549019608);
  opacity: 1;
}
.modalListing .modalCard:hover img {
  transform: scale(1.1);
}
.modalListing .golink {
  color: transparent;
  width: 100%;
  padding: 40px 15px;
  font-size: 28px;
  text-align: center;
  font-family: bold;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  color: #000;
}
.modalListing .golink:hover {
  color: #580c33;
}

.az-filter {
  padding: 0 10px;
  background-color: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
  position: sticky;
  bottom: 0px;
  left: 0px;
  text-align: center;
  z-index: 1020;
  overflow-x: scroll;
}
.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 {
  font-size: 14px;
  font-family: bold;
  color: rgb(191, 191, 191);
  padding: 5px 5px;
  position: relative;
  display: flex;
  height: 45px;
  align-items: center;
  justify-content: center;
  min-width: 30px;
}
@media (max-width: 991px) {
  .az-filter a {
    font-size: 11px;
    min-width: 25px;
  }
}
.az-filter a.active {
  font-size: 17px;
  color: #fff;
}
.az-filter a.active, .az-filter a:hover {
  font-size: 17px;
  color: #fff;
}