



/* sc-main */
.sc-main{
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
}
.sc-main .main-slide{
  height: 100%;
  width: 100%;
}
.sc-main .swiper-slide{
  position: relative;
}
.sc-main .swiper-slide .bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sc-main .swiper-slide .bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-main .swiper-slide .tit-wrap{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  color: var(--white);
}
.sc-main .swiper-slide .tit-wrap strong{
  color: #FFF;
  font-size: 44px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -2.72px;
  text-transform: capitalize;
}
.sc-main .swiper-slide .tit-wrap p{
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%; 
  letter-spacing: -0.8px;
  text-transform: capitalize;
}
.control-box {
  width: 100%;
  position: absolute;
 bottom: 25%;
  z-index: 10;
  margin-top: 50px;
}
.swiper-controls{
  display: flex;
  align-items: center;
  gap: 8px;
}
.swiper-controls .swiper-button-disabled{
  opacity: 0.3 !important;
}
.swiper-controls button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #fff; 
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  padding: 0;
}

.btn-prev, .btn-next {
  width: 56px;
  height: 56px;
  border-radius: 50% !important;
}

.btn-pause, .btn-play {
  width: 30px;
  height: 30px;
  border: none !important;
}

@media all and (max-width:880px) {
  .main-slide strong br{
    display: none;
  }
  .control-box {
   bottom: 20%;
  }
}
@media all and (max-width:768px) {
  .sc-main .swiper-slide .tit-wrap strong {
    font-size: 37px !important;
  }
}


@media all and (max-width:500px) {
  .sc-main .swiper-slide .tit-wrap strong {
    font-size: 32px !important;
  }
}


 .mv-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 9999999;
}
 .mv-scroll .scroll_icon {
  position: relative;
  width: 4px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
 .mv-scroll .scroll_icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 10px;
  background: var(--white);
  top: 0.3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: mvScrollIcon-ani 2s ease-in-out infinite;
          animation: mvScrollIcon-ani 2s ease-in-out infinite;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
 .mv-scroll .scroll_txt {
  color: var(--white);
  font-family: var(--monserrat);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
 .mv-scroll .scroll_txt .char {
  display: inline-block;
  -webkit-animation: mvScrollDown-ani 2s ease-in-out 0s infinite;
          animation: mvScrollDown-ani 2s ease-in-out 0s infinite;
}
 .mv-scroll .scroll_txt .char:nth-child(1) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
 .mv-scroll .scroll_txt .char:nth-child(2) {
  -webkit-animation-delay: 1.04s;
          animation-delay: 1.04s;
}
 .mv-scroll .scroll_txt .char:nth-child(3) {
  -webkit-animation-delay: 1.08s;
          animation-delay: 1.08s;
}
 .mv-scroll .scroll_txt .char:nth-child(4) {
  -webkit-animation-delay: 1.12s;
          animation-delay: 1.12s;
}
 .mv-scroll .scroll_txt .char:nth-child(5) {
  -webkit-animation-delay: 1.16s;
          animation-delay: 1.16s;
}
 .mv-scroll .scroll_txt .char:nth-child(6) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  margin-right: 5px;
}
 .mv-scroll .scroll_txt .char:nth-child(7) {
  -webkit-animation-delay: 1.24s;
          animation-delay: 1.24s;
}
 .mv-scroll .scroll_txt .char:nth-child(8) {
  -webkit-animation-delay: 1.28s;
          animation-delay: 1.28s;
}
 .mv-scroll .scroll_txt .char:nth-child(9) {
  -webkit-animation-delay: 1.32s;
          animation-delay: 1.32s;
}
 .mv-scroll .scroll_txt .char:nth-child(10) {
  -webkit-animation-delay: 1.36s;
          animation-delay: 1.36s;
}

@-webkit-keyframes mvScrollIcon-ani {
  0% {
    top: -1rem;
    opacity: 0;
  }
  10% {
    top: -1rem;
    opacity: 1;
  }
  32% {
    top: -1rem;
    opacity: 1;
  }
  80% {
    top: 4.3rem;
    opacity: 1;
  }
  100% {
    top: 4.3rem;
    opacity: 0;
  }
}
@keyframes mvScrollIcon-ani {
  0% {
    top: -1rem;
    opacity: 0;
  }
  10% {
    top: -1rem;
    opacity: 1;
  }
  32% {
    top: -1rem;
    opacity: 1;
  }
  80% {
    top: 4.3rem;
    opacity: 1;
  }
  100% {
    top: 4.3rem;
    opacity: 0;
  }
}
@-webkit-keyframes mvScrollDown-ani {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%) rotateX(90deg);
            transform: translateY(-50%) rotateX(90deg);
  }
  20%, 80% {
    opacity: 1;
    -webkit-transform: translateY(0) rotateX(0);
            transform: translateY(0) rotateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(50%) rotateX(-90deg);
            transform: translateY(50%) rotateX(-90deg);
  }
}
@keyframes mvScrollDown-ani {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%) rotateX(90deg);
            transform: translateY(-50%) rotateX(90deg);
  }
  20%, 80% {
    opacity: 1;
    -webkit-transform: translateY(0) rotateX(0);
            transform: translateY(0) rotateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(50%) rotateX(-90deg);
            transform: translateY(50%) rotateX(-90deg);
  }
}

@media all and (max-width:768px) {
  .mv-scroll {
   bottom: 40px;
  }
  .mv-scroll .scroll_icon {
    height: 50px;
}
}




.sc-overview{
  position: relative;
  background: #fff;
  overflow: hidden;
}
.sc-overview .bg{
  position: absolute;
  right: 0;
  top: 0;
}
.main-card-list{
  padding: 160px 0 215px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.main-card-list li{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.main-card-list span{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%; 
  letter-spacing: -0.4px;
  width: 100%;
  display: block;
  padding-inline: 20px;
}

.main-card-list li img{
  transition: all 3.5s;
}


@media all and (min-width:768px) {
  .main-card-list li:hover img{
    transform: scale(1.3);
    

  }
}
@media all and (max-width:1024px) {
  .main-card-list{
    grid-template-columns: repeat(2,1fr);
  }
  .sc-overview .bg img {
    width: 60% !important;
}
.sc-overview .bg {
  right: -240px !important;
}
  }
@media all and (max-width:768px) {
  .main-card-list{
    grid-template-columns: repeat(2,1fr);
  }
  .sc-overview .bg img {
    width: 40% !important;
}
.sc-overview .bg {
  right: -360px !important;
}
.main-card-list span{
  font-size: 15px;
}




  }



