/*Banner Carousel Styles*/
:root {
  --home-banner-height: 680px;
}

.banner-carousel,
.common-banner-img {
  height: var(--home-banner-height);
  overflow: hidden;
}

.common-banner-wrapper {
  position: relative;
  width: 100%;
}

.common-banner-content {
  position: absolute;
  padding: 30px;
  margin: 0 auto;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  /* justify-content: center;  */
  margin: 0 auto;
  right: 0;
  padding: 80px 0;
}

.common-banner-content-inner {
  z-index: 1;
  max-width: 800px;
  width: 100%;
  z-index: 1;
}

.banner-category {
  margin-bottom: 15px;
}

.banner-category {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.banner-title a {
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 2.4375rem;
  line-height: 1.256410256;
  color: var(--white);
  text-decoration: none;
}

.banner-title a:hover {
  color: var(--yellow-1);
}

.banner-title>*:last-child {
  margin: 0;
}

.common-banner-img img {
  display: block;
  height: var(--home-banner-height);
  object-fit: cover;
  object-position: center;
  width: 100%;
  position: relative;
  z-index: 0;
}

.common-banner-img {
  position: relative;
}

.common-banner-img:has(a) a:before,
.common-banner-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 39.5%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.common-banner-img:has(a):before {
  display: none;
}
