.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}

.content-title {
  margin-bottom: 150px;
}

.content-title.white * {
  color: #fff;
}

.content-title.center * {
  text-align: center;
}

.content-title p {
  margin-top: 50px;
}

/* 슬라이드 */
.slider .slider-contents {
  position: relative;
  width: 100%;
}

.slider .slider-contents .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: -1;
}

.slider .slick-prev:before,
.slider .slick-next:before {
  --arrow-size: clamp(55px, 4.427083333vw, 85px);
  width: var(--arrow-size);
  height: var(--arrow-size);
  background-size: contain;
}

.go-top a .item .arrow img {
  display: block;
}

.point-text {
  margin-bottom: 20px;
  letter-spacing: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-primary);
  color: transparent;
  -webkit-background-clip: text;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {}

/* Laptop ( 1024px ~ 1360px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  .content-title {
    margin-bottom: 100px;
  }
}

/* Moble ( ~ 767px)*/
@media all and (max-width: 767px) {
  .content-title {
    margin-bottom: 60px;
  }

  .point-text {
    font-size: 9px;
    margin-bottom: 15px;
  }
}

/* ----- effect custom ----- */

.scroll-event[data-scroll="fade-in-up"] {
  animation: fade-in-up 0.5s ease-in forwards;
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.scroll-event[data-scroll="fade-in-down"] {
  animation: fade-in-down 0.5s ease-in forwards;
}

@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.scroll-event[data-scroll="fade-in-left"] {
  animation: fade-in-left 0.5s ease-in;
}

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.scroll-event[data-scroll="fade-in-right"] {
  animation: fade-in-right 0.5s ease-in;
}

@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

@media all and (max-width: 1023px) {
  @keyframes fade-in-down {
    0% {
      opacity: 0;
      transform: translate3d(0, 30px, 0);
    }

    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
}

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
