.index .banner {
  z-index: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
}

.index .banner .swiper-slide {
  position: relative;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #ffffff;
}

.index .banner .swiper-slide:before {
  content: "";
  display: block;
  padding-bottom: 40.625%;
}

@media (max-width: 767px) {
  .index .banner .swiper-slide:before {
    padding-bottom: 130.91%;
  }
}

.index .banner .swiper-slide.swiper-slide-active .text-area .text-animate img {
  -webkit-animation: cus-fadeIn 2.5s;
          animation: cus-fadeIn 2.5s;
}

.index .banner .swiper-slide.swiper-slide-active .text-area .text-animate span {
  display: block;
  -webkit-animation: cus-fadeInUp 0.6s 1s;
          animation: cus-fadeInUp 0.6s 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  margin-top: 1rem;
  opacity: 1;
}

.index .banner .swiper-slide.no-mobile {
  overflow: hidden;
}

.index .banner .swiper-slide.no-mobile:before {
  visibility: hidden;
}

.index .banner .swiper-slide.no-mobile img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.index .banner .text-area {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 3px 6px #1c1e1a;
  width: 100%;
  pointer-events: none;
}

@media (max-width: 991px) {
  .index .banner .text-area {
    bottom: 12%;
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .index .banner .text-area {
    font-size: 20px;
  }
}

.index .banner .text-area img {
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.6));
}

.index .banner .text-area span {
  opacity: 0;
}

.index .banner .text-area .sub-title {
  font-size: 16px;
  font-weight: normal;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .index .banner .text-area .sub-title {
    margin-top: 0.5rem;
  }
}

.index .banner .swiper-wrapper {
  height: auto;
}

.index .banner.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 12px;
  width: 10px;
  height: 10px;
  background-color: #5dab9c;
}

.index .banner.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #94e6d7;
}

.index .more-btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}

.index .more-btn-area .more-btn {
  position: relative;
  color: #2f4843;
  display: block;
  width: 250px;
  text-align: center;
  line-height: 58px;
  padding: 0 36px;
  border: 3px dotted #8ddbcc;
  border-radius: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.index .more-btn-area .more-btn:hover {
  background-color: #8ddbcc;
}

@media (max-width: 767px) {
  .index .more-btn-area .more-btn {
    background-color: #8ddbcc;
  }
}

.index .team-area, .index .news-area {
  padding: 3.5rem 0;
}

@media (max-width: 991px) {
  .index .team-area, .index .news-area {
    padding: 2rem 0;
  }
}

.index .content-text {
  color: #2f4843;
}

.index .about-area {
  position: relative;
  background-image: url("/assets/images/about-bg.jpg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 7rem 0 3.5rem 0;
}

@media (max-width: 767px) {
  .index .about-area {
    background-image: url("/assets/images/mobile-about-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0;
    overflow: hidden;
  }
  .index .about-area:after {
    content: "";
    position: absolute;
    top: 3rem;
    left: -6rem;
    width: 215px;
    height: 191px;
    background-image: url("/assets/images/mobile-dress-icon.svg");
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: dress-floating 5s ease-in-out infinite;
            animation: dress-floating 5s ease-in-out infinite;
  }
}

.index .about-area .about-block {
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

.index .about-area .about-block .about-box {
  width: 33.33%;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .index .about-area .about-block .about-box {
    width: 80%;
    margin-right: 0.5rem;
  }
}

.index .about-area .about-block .about-box .box-bg {
  padding: 30px;
  color: #2f4843;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 0 0 20px #e1f6e5;
          box-shadow: 0 0 20px #e1f6e5;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .index .about-area .about-block .about-box .box-bg {
    padding: 15px;
    min-height: 331px;
  }
}

@media (max-width: 767px) {
  .index .about-area .about-block .about-box .box-bg {
    min-height: 301px;
  }
}

.index .about-area .about-block .about-box .box-bg .photo img {
  height: 70px;
}

.index .about-area .about-block .about-box .box-bg .title {
  text-align: center;
  font-size: 20px;
  margin: 1.5rem 0;
}

.index .about-area .about-block .swiper-pagination {
  bottom: 0;
}

.index .about-area .about-block .swiper-pagination .swiper-pagination-bullet {
  margin: 0 12px;
  width: 10px;
  height: 10px;
  background-color: #5dab9c;
}

.index .about-area .about-block .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #94e6d7;
}

.index .team-area {
  position: relative;
  z-index: 0;
}

.index .team-area:after {
  content: "";
  position: absolute;
  top: -10rem;
  right: 0;
  width: 409px;
  height: 364px;
  background-image: url("/assets/images/dress-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: dress-floating 5s ease-in-out infinite;
          animation: dress-floating 5s ease-in-out infinite;
  z-index: -1;
}

@media (max-width: 1400px) {
  .index .team-area:after {
    opacity: 0.5;
  }
}

@media (max-width: 767px) {
  .index .team-area:after {
    display: none;
  }
}

@media (max-width: 767px) {
  .index .team-area .photo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (max-width: 767px) {
  .index .team-area .text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.index .team-area .more-btn-area {
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .index .team-area .more-btn-area {
    position: relative;
    margin-bottom: 3rem;
    z-index: 1;
  }
  .index .team-area .more-btn-area:after {
    content: "";
    position: absolute;
    top: -5rem;
    right: 0;
    width: 215px;
    height: 191px;
    background-image: url("/assets/images/mobile-dress-icon.svg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    -webkit-animation: dress-floating 5s ease-in-out infinite;
            animation: dress-floating 5s ease-in-out infinite;
  }
}

.index .news-area {
  position: relative;
  background-image: url("/assets/images/news-bg.jpg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.index .news-area:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 409px;
  height: 364px;
  background-image: url("/assets/images/dress-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: rotateY(-13deg);
          transform: rotateY(-13deg);
  -webkit-animation: dress-floating 8s ease-in-out infinite;
          animation: dress-floating 8s ease-in-out infinite;
  z-index: -1;
}

@media (max-width: 767px) {
  .index .news-area:after {
    display: none;
  }
}

.index .news-area .septal-line {
  width: 100%;
  height: 3px;
  background-color: #dbd38d;
}

.index .news-area .news-list-area {
  margin-bottom: 3rem;
}

@media (max-width: 1600px) {
  .index .news-area .news-list-area {
    background-color: rgba(255, 255, 255, 0.8);
  }
}

@media (max-width: 767px) {
  .index .news-area .news-list-area {
    background-color: transparent;
  }
}

.index .news-area .news-list-area .news-item {
  position: relative;
  border-bottom: 3px dotted #dbd38d;
  margin: 1rem 0;
  padding-bottom: 1rem;
}

.index .news-area .news-list-area .news-item:nth-child(even) {
  border-bottom: 3px dotted #8dd0db;
}

.index .news-area .news-list-area .news-item .date {
  font-size: 15px;
  color: #2f7e8b;
  margin-bottom: 0.5rem;
}

.index .news-area .news-list-area .news-item .title {
  padding-right: 2rem;
}

.index .news-area .news-list-area .news-item .title a {
  font-size: 18px;
  color: #2f4843;
}

.index .news-area .news-list-area .news-item:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 22px;
  height: 26px;
  background-image: url("/assets/images/news-list-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.index .news-area .news-list-area .news-item:hover:after {
  opacity: 1;
}

@media (min-width: 992px) {
  .index .news-area .more-btn-area {
    position: absolute;
    width: calc(100% - 30px);
    bottom: 0;
  }
}

.index .news-area .news-photo {
  border-radius: 15px;
}

@-webkit-keyframes dress-floating {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-10px);
            transform: translatey(-10px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}

@keyframes dress-floating {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-10px);
            transform: translatey(-10px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}
