/* ------------------------------------
HOMEPAGE
------------------------------------ */
.homebanner {
  position: relative;
  overflow: hidden;
}

.homebanner .slide {
  position: relative;
  height: calc(100vh - 100px);
  min-height: 600px;
  padding: 90px;
  color: white;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.homebanner .slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}

.homebanner .slide_inner {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.homebanner .slide_content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
  text-align: center;
}

.homebanner .slide_content.align_right {
  text-align: right;
  margin-left: auto;
}

.homebanner .slide_content.align_center {
  text-align: center;
  margin: 0 auto;
}

.homebanner .slide_content.align_left {
    text-align: left;
  }

.homebanner .slide_content h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.homebanner .slide_content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.homebanner .slide_content .button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.homebanner .slide.tint:after {
  content: "";
  position: absolute;
  inset: 0;
  background: black;
  opacity: 0.25;
}

/* Slider Navigation */
.homebanner .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.homebanner .slick-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.homebanner .slick-prev {
  left: 20px;
}
.homebanner .slick-next {
  right: 20px;
}

.homebanner .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.homebanner .slick-dots li {
  display: inline;
  margin: 0;
  padding: 0;
}

.homebanner .slick-dots button {
  font-size: 0;
  width: 30px;
  height: 30px;
  padding: 0;
  background: none;
  position: relative;
}

.homebanner .slick-dots button:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}

.homebanner .slick-dots button:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 16px;
  height: 16px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.homebanner .slick-dots .slick-active button:after {
  width: 10px;
  height: 10px;
  top: 10px;
  left: 10px;
}

.homebanner .slick-dots .slick-active button:before {
  opacity: 1;
}

/* Responsive */
@media screen and (max-width: 1200px) {
  .homebanner .slide {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .homebanner,
  .homebanner .slide {
    height: calc(100vh - 80px);
  }

  .homebanner .slide {
    min-height: 400px;
    padding: 30px;
  }

  .homebanner .slide_content h2 {
    font-size: 2.5rem;
  }

  .homebanner .slide_content p {
    font-size: 1rem;
  }

  .homebanner .slick-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .homebanner .slick-dots {
    bottom: 0;
  }
}
