/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * BANNER
 * MAIN
 * ABOUT
 * PRODUCTS
 * NEWS
 **/
/*------------------------------------*\
    BANNER
\*------------------------------------*/
.banner {
  position: relative;
}
.banner .swiper-slide .banner-txt {
  -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}
.banner .swiper-slide-active .banner-txt {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
}
.banner .swiper-pagination {
  display: block;
}
@media (min-width: 768px) {
  .banner .swiper-pagination {
    display: none;
  }
}
.banner .swiper-pagination-bullet {
  background-color: #ffffff;
}
.banner .swiper-button-next,
.banner .swiper-button-prev {
  color: #ffffff;
  display: none;
}
@media (min-width: 768px) {
  .banner .swiper-button-next,
.banner .swiper-button-prev {
    display: block;
  }
}
.banner .scroll {
  bottom: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1000;
  display: none;
}
@media (min-width: 992px) {
  .banner .scroll {
    display: block;
  }
}
.banner-pic {
  height: 400px;
}
@media (min-width: 992px) {
  .banner-pic {
    height: 800px;
  }
}
.banner-txt {
  text-align: left;
  left: 50%;
}
@media (min-width: 768px) {
  .banner-txt {
    width: 80%;
  }
}
@media (min-width: 1400px) {
  .banner-txt {
    width: 1320px;
  }
}
@media (min-width: 1600px) {
  .banner-txt {
    width: 1440px;
    margin: 0 auto;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.banner-txt .title {
  font-size: 1.125rem;
  letter-spacing: 0.05rem;
}
.banner-txt .title span {
  color: #ffffff;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  margin-bottom: 0.25rem;
}
@media (min-width: 576px) {
  .banner-txt .title {
    font-size: 1.25rem;
  }
  .banner-txt .title span {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .banner-txt .title {
    font-size: 1.6875rem;
    letter-spacing: 0.125rem;
  }
  .banner-txt .title span {
    font-size: 3.75rem;
    letter-spacing: 0.3rem;
    margin-bottom: 0.75rem;
  }
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
main {
  padding: 0;
}

/* TITLE */
.page-title .title {
  color: #797979;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  margin-bottom: 1.5rem;
}
.page-title .title span {
  color: #959595;
  display: block;
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .page-title .title {
    font-size: 2.75rem;
    letter-spacing: 0.25rem;
  }
  .page-title .title span {
    font-size: 1.125rem;
  }
}

/* TEXT */
.page-text {
  font-size: 0.9375rem;
  letter-spacing: 0.05rem;
}
.page-text h3 {
  color: #c40000;
  font-size: 1.0625rem;
}
.page-text strong {
  color: #c40000;
}
@media (min-width: 576px) {
  .page-text {
    font-size: 1rem;
    line-height: 1.8;
  }
  .page-text h3 {
    font-size: 1.3125rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }
}

/* MORE */
.more {
  color: #c40000;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding-left: 60px;
  margin-top: 2rem;
  position: relative;
}
.more::before {
  content: "";
  background-color: #c40000;
  width: 45px;
  height: 1px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.more:hover {
  padding-left: 80px;
}

/*------------------------------------*\
    ABOUT
\*------------------------------------*/
.index-about {
  background-image: url(../images/index-about-bg.jpg);
}
.index-about .row > [class*=col]:last-child {
  position: relative;
  padding-right: 12px;
}
@media (min-width: 1600px) {
  .index-about .row > [class*=col]:first-child {
    width: 35%;
  }
  .index-about .row > [class*=col]:last-child {
    width: 60%;
    padding-left: 0rem;
  }
}
.index-about .page-title .title {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  position: relative;
}
.index-about .page-title .title::after {
  content: "";
  background-color: #c40000;
  width: 40px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (min-width: 576px) {
  .index-about .page-title .title {
    padding-bottom: 3.75rem;
    margin-bottom: 1.5rem;
  }
}
.index-about .more {
  margin-top: 3rem;
}

/*------------------------------------*\
    PRODUCTS
\*------------------------------------*/
.index-products {
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding: 3rem 0;
}

/*------------------------------------*\
    NEWS
\*------------------------------------*/
.index-news {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 3rem 0 0;
}
@media (min-width: 992px) {
  .index-news {
    padding-top: 4rem;
  }
}
.index-news .page-title {
  text-align: center;
  margin-bottom: 3rem;
}
.index-news .page-title .title span {
  color: #c40000;
}
