.g-row-6 {
  margin-top: 35px;
}

.g-row-6 .ml-tit {
  margin-bottom: 30px;
}

.g-row-6 .ml-tit h2 {
  display: inline-block;
  margin-right: 35px;
  font-weight: bold;
  line-height: 1;
  color: #2f6ea4;
  font-size: 30px;
  float: left;
}

.g-row-6 .swiper-container {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.g-row-6 .swiper-slide {
  text-align: center;
  font-size: 18px;
  height: 200px;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}


.effect-pic {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 230px;
  height: 200px;
  text-align: left;
  cursor: pointer;
  margin: 0;
}

.effect-pic .player-img {
  transition: opacity 0.35s;
  display: block;
  position: relative;
  /* border-radius: 3px; */
  height: 100%;
  margin: 0 auto;
  opacity: 1;
}

.effect-pic .player-bg {
  transition: opacity 0.35s;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  opacity: 1;

  filter: blur(25px);
}

.effect-pic figcaption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* height: 100%; */
  padding: 40px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: baseline;
  background-color: rgba(0,0,0,0.6);
  opacity: 0;
}

.effect-pic:hover figcaption {
  opacity: 1;
}

.effect-pic:hover figcaption p {
  
  transform: scale3d(1,1,1);
  opacity: 1;
}

.effect-pic figcaption p {
  font: 16px/1.5 "Microsoft YaHei", "\5FAE\8F6F\96C5\9ED1", tahoma, Arial;
  padding: 0;
  color: #fff;
  max-height: 60px;
  overflow: hidden;
  line-height: 20px;
  transition: opacity 0.35s, transform 0.35s;
  opacity: 0;
  transform: scale(1.4);
  word-break: break-all;
  text-overflow: ellipsis;
}

.effect-pic figcaption .title-big {
  font-size: 16px;
}

.effect-pic figcaption .title-small {
  font-size: 12px;
  color: #999 !important;
  margin-top: 3px !important;
}

:root {
  --color : #42fff6
}

.title-container {
  position: relative;
  height: 760px;
}

.title-container .title-info {

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.title-info p {
  font-size: 22px;
  font-weight: bold;
  color: #0097A7;
}

.text-font-style {
  /* transform: translateX(20%); */
  white-space: nowrap;
  background: none;
  color: #999;
  font-family: 'Dancing Script', 'Warnes', cursive;
  font-size: 70px;
  letter-spacing: -30px;
  cursor: pointer;
}

.text-font-style h1 span {
  animation: flicker 1s linear forwards;
}

.text-font-style h1 #font2 {
  animation-delay: .2s;
}

.text-font-style h1 #font3 {
  animation-delay: .5s;
}

.text-font-style h1 #font4 {
  animation-delay: .6s;
}
.text-font-style h1 #font5 {
  animation-delay: .8s;
}
@keyframes flicker {
  0% {
    color: #333;
  }
  5%, 15%, 25%, 30%, 100% {
    color: #fff;
    text-shadow: 
      0px 0px 5px var(--color),
      0px 0px 10px var(--color),
      0px 0px 20px var(--color),
      0px 0px 50px var(--color);
      
  }
  10%, 20% {
    color: #333;
    text-shadow: none;
  }
}
