/* Banner styles  */

#banner {
  overflow: hidden;
}

.bannerContainer {
  width: 100vw;
  height: 100vh;
}

.bannerContainer .contentContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.bannerContainer .bannerLayer {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0b1a32 0%, rgba(11, 26, 50, 0) 114.57%);
  backdrop-filter: blur(64px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

.bannerContainer .contents {
  width: 80%;
  z-index: 900;
}

.bannerContainer .sub {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 100%;
  color: var(--wl-primary-color);
}

.bannerContainer h1 {
  font-weight: 300;
  font-size: 4rem;
  line-height: 100%;
  color: var(--wl-white-color);
  margin: 1.5rem 0;
}

.bannerContainer .bannerShape {
  position: absolute;
  right: -12rem;
  top: 1rem;
  z-index: 99;
  transform: scale(1.1);

}

.bannerContainer .bannerShape svg {
  width: 64.5rem;
  height: 64.5rem;
}

.bannerContainer .bannerVideo {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.bannerContainer .bannerVideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bannerContainer .learnMoreContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bannerContainer .learnMore {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  background-color: var(--wl-white-color);
  padding: 0.625rem 1rem;
  width: fit-content;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.125rem;
  letter-spacing: 0.02em;
  color: var(--wl-secondary-color);
}

.bannerContainer .learnMore svg {
  width: 0.875rem;
  height: 1.25rem;
}
.bannerContainer .bannerLayer{
  background-image: url('../../../images/rectangle_bg_02.webp');
      background-repeat: no-repeat;
    background-size: cover;

}

@media screen and (max-height: 900px) {
  .bannerContainer .bannerShape svg {
    width: 55rem;
    height: 55rem;
  }

  .bannerContainer .bannerShape {
    transform: scale(0.8);
    top: -5rem;
  }
}

@media screen and (max-width: 1300px) {
  .bannerContainer .bannerShape svg {
    width: 55rem;
    height: 55rem;
  }

  .bannerContainer .bannerShape {
    transform: scale(0.8);
    top: -5rem;
  }
}

@media screen and (max-width: 1080px) {
  .bannerContainer .sub {
    font-size: 1.125rem;
  }

  .bannerContainer h1 {
    font-size: 2.25rem;
    margin: 1rem 0 2rem 0;
  }

  .bannerContainer .contents {
    width: 100%;
    padding: 0 1rem;
  }

  .bannerContainer .bannerShape svg {
    width: 30rem;
    height: 30rem;
    transform: rotate(51deg) scale(1.5);
    position: relative;
    right: -15rem;
    top: -15rem;
  }

  .bannerContainer .bannerShape {
    top: 0;
    transform: scale(1);
    right: 0;
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-height: 1150px) and (max-width: 1080px) {
  .bannerContainer .bannerShape svg {
    right: -23rem;
    width: 40rem;
    height: 40rem;
  }
}

@media screen and (max-width: 600px) {
  .bannerContainer .bannerShape svg {
    width: 25rem;
    height: 25rem;
    right: -11rem;
    top: -13rem;
  }
}

/* Banner styles ends */