#fvContainer {
  width: 100%;
  height: calc(100vh - 95px);
  position: relative;
}

.fvImg {
  width: 100%;
  height: 100%;
}

.fvImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fvText {
  width: 19.635%;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.fvText img {
  width: 100%;
  vertical-align: bottom;
}

#slideContainer {
  width: 100%;
  padding: 60px 0 60px;
  box-sizing: border-box;
  background: #000;
  overflow: hidden;
	border-bottom: 11px solid #47FF00;
}

.fvSlide li.slick-slide {
  width: 90vw;
  max-width: 874px;
  margin: 0 15px 0;
}

.fvSlide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

#slideContainer .slick-dots {
  height: 60px;
  bottom: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#slideContainer .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  /* position: relative; */
  overflow: hidden;
}

#slideContainer .slick-dots li:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

#slideContainer .slick-dots li.slick-active:before {
  width: 11px;
  height: 11px;
}

.slick-dots li button:before {
  display: none;
}