#main {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#main .title-box {
  width: 60%;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

#main .title-box-inner {
}

#main .title-box h1 {
  color: #202020;
  font-size: 54px;
  line-height: 50px;
}

#main .title-1 {
  font-weight: 200;
  margin-bottom: 20px;
}

#main .title-2 {
  font-weight: 500;
}

#main .title-box a {
  background: #202020;
  color: #fff;
  margin-top: 40px;
  font-size: 18px;
  display: inline-block;
  width: 200px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#main .img-box {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

#main .img-box img {
  display: none;
  width: 100%;
  min-height: 500px;
}

.swiper {
  width: 100%;
  height: calc(100% - 65px);
}

.swiper-slide {
  background-size: cover;
}

.swiper-slide.blur::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1250px) {
  #main {
    flex-direction: column;
  }

  #main .title-box {
    width: 100%;
    height: 45%;
    justify-content: flex-end;
    align-items: center;
  }

  #main .title-box-inner {
    text-align: center;
  }

  #main .title-box h1 {
    font-size: 20px;
    line-height: 11px;
  }

  #main .title-box a {
    margin: 0 auto;
    margin-top: 25px;
    font-size: 16px;
  }

  #main .title-box {
    height: 45%;
  }

  #main .img-box {
    width: 100%;
    height: 55%;
    align-items: start; 
    margin-top: 30px;
  }

  .swiper {
    height: 100%;
  }

  .swiper-slide.blur::before {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
  }

  /* #main .img-box img {
    display: block;
    width: 100%;
    border-radius: 20px;
  } */
}