/*
 * Swiper 5.3.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 29, 2020
 */

/*-----------------------------------------------
   hero _ swiper-container
-----------------------------------------------*/
:root {
    /*--swiper-theme-color: #007aff;*/
    --swiper-theme-color: #ecc3eb;
}


.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.swiper-container-vertical>.swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-container-multirow-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}

.swiper-container-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
    perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory;
}

:root {
    --swiper-navigation-size: 44px;
    /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 70px;
    height: 70px;
    margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev {

}



.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 45px;
    right: auto;
    transition: all .3s ease;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    /*content: 'prev';*/
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 45px;
    left: auto;
    transition: all .3s ease;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
    /*content: 'next';*/
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
    --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
    --swiper-navigation-color: #000000;
}

.swiper-button-lock {
    display: none;
}

:root {
    /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    margin: 5px auto;
    text-align: center;
    left: 0;
    right: 0;
    /*! background: #555; */
    top: 0;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
    margin: 5px;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-container-vertical>.swiper-pagination-progressbar,
.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-white {
    --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
    --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
    display: none;
}

/* Scrollbar */
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container>img,
.swiper-zoom-container>svg,
.swiper-zoom-container>canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

/* Preloader */
:root {
    /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg);
    }
}

/* a11y */
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next+.swiper-slide {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

.swiper-container-flip {
    overflow: visible;
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}



/* ---------------------------------------------------------------------------------------------------------------------------------
 feature  _swiper-father    
---------------------------------------------------------------------------------------------------------------------------------*/

/*!按鈕箭頭顏色在swiper.css裡*/
.swiper-father {height: 700px;position: relative;top:25%;}
.swiper-father:before {content:'';position: absolute;width: 100%;height: 100%;pointer-events: none;
                      background: url(../images/frame.png) center top /60% no-repeat;z-index: 10;}

.feature .swiper-button-prev {background: url(../images/prev.png) center top /100% no-repeat;top:40%;left:13vw;}
.feature .swiper-button-next {background: url(../images/next.png) center top /100% no-repeat;top:4-0%;right: 13vw;}

.feature .swiper-button-prev:hover {left:12vw;}
.feature .swiper-button-next:hover {right: 12vw;}
.section.active .feature .swiper-button-prev {-webkit-animation: blur_entry_r  1s cubic-bezier(.250, .460, .450, .940) .8s both;}
.section.active .feature .swiper-button-next {-webkit-animation: blur_entry_l  1s cubic-bezier(.250, .460, .450, .940) .8s both;}

.swiper-slide {text-align: center;font-size: 18px;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;
}

/*dot*/
.swiper-pagination-bullet { width: 35px;height: 35px;display: inline-block;border-radius: 100%;
    background: url(../images/rhombus.png) center top /100% no-repeat;opacity: 1;top: 580px; padding: 7px;font-size: 0.8rem;color: #555;
}

.swiper-pagination-bullet-active {opacity: 1;color: #cfa84d;}
.swiper-button-prev:hover {left: 30px;transition: all .3s ease;}
.swiper-button-next:hover {right: 30px;transition: all .3s ease;}

.swiper-pagination-bullet {position: relative;}
.swiper-pagination-bullet:first-child:before {content: '';position: absolute;top: 49%;left: -82px;width: 70px;height: 1px;background: #484336;}
.swiper-pagination-bullet:last-child:after {content: '';position: absolute;top: 49%;right: -82px;width: 70px;height: 1px;background: #484336;}


@media screen and (max-width:1680px){
.swiper-father {transform: scale(.85);top: 20%;margin-left:30px}
.swiper-father:before {background: url(../images/frame.png) center top /64% no-repeat;}
.swiper-pagination-bullet{top:590px;}
.feature .swiper-button-prev {top:40%;left:150px;}
.feature .swiper-button-next {top:40%;right:150px;}
.feature .swiper-button-prev:hover {left: 130px; }
.feature .swiper-button-next:hover {right: 130px; }

}
@media screen and (max-width:1480px){
.swiper-father {transform: scale(.7);top:17%;margin-left:30px}
.swiper-father:before {background: url(../images/frame.png) center top /72% no-repeat;}
.swiper-pagination-bullet{top:570px;}
.feature .swiper-button-prev {top:40%;left:100px;}
.feature .swiper-button-next {top:40%;right:100px;}
.feature .swiper-button-prev:hover {left: 70px; }
.feature .swiper-button-next:hover {right: 70px; }
}


@media screen and (max-width:1280px){
.swiper-father {transform: scale(.7);}
.swiper-father:before {background: url(../images/frame.png) center top /85% no-repeat;}
.feature .swiper-button-prev {top:40%;left:-40px;}
.feature .swiper-button-next {top:40%;right:-40px;}
.feature .swiper-button-prev:hover {left: -60px; }
.feature .swiper-button-next:hover {right: -60px; }
}


@media screen and (max-width:768px){
.swiper-father{transform: scale(1.1);position: absolute;width: 340px;left: 0px;top:210px;  }
.swiper-father:before {background: url(../images/frame.png) center top /100% no-repeat;}
.swiper-pagination-bullet{top:200px;}
.feature .swiper-button-prev {top:180px;left:-52px;display: none;}
.feature .swiper-button-next {top:180px;right:-52px;display: none;}
}


/*-----------------------------------------------------------------------------------------------------------------------------------
    hero
-----------------------------------------------------------------------------------------------------------------------------------*/
.hero-father {height: 100%;position: relative;margin: 0% auto 0;padding: 0px;}

.hero-bg-all {background: url(../images/hero/hero-bg.jpg) center top repeat;}
.swiper-slide{overflow: hidden;}
.hero-container {margin-left: auto;margin-right: auto;position: absolute;overflow: hidden;list-style: none;padding: 0;z-index: 1;width: 100%;height: 100%;margin-top: 60px;}

.parallax-bg {position: absolute;left: 0;top: 0;width: 100%;height: 100%;-webkit-background-size: cover;background-size: cover;background-position: center;}

.swiper-slide .sl_ {position: absolute;left: 0;top: 0;width: 100%;height: 100%;font-size: 41px;font-weight: 300;}
.swiper-slide .text_ {position: absolute;left: 0;top: 0;width: 100%;height: 100%;font-size: 41px;font-weight: 300;}

/*bg*/
.hero-bg-1 {    background: url(../images/hero/001_01.png) 0 center /48%  no-repeat, url(../images/hero/001_02.jpg) 100% center /52% no-repeat;}
.hero-bg-2 {    background: url(../images/hero/002_01.png) 0 center /48%  no-repeat, url(../images/hero/002_02.jpg) 100% center /52%  no-repeat;}
.hero-bg-3 {    background: url(../images/hero/003_01.png) 0 center /48%  no-repeat, url(../images/hero/003_02.jpg) 100% center /52%  no-repeat;}
.hero-bg-4 {    background: url(../images/hero/004_01.png) 0 center /48%  no-repeat, url(../images/hero/004_02.jpg) 100% center /52%  no-repeat;}
.hero-bg-5 {    background: url(../images/hero/005_01.png) 0 center /48%  no-repeat, url(../images/hero/005_02.jpg) 100% center /52%  no-repeat;}
.hero-bg-6 {    background: url(../images/hero/006_01.png) 0 center /48%  no-repeat, url(../images/hero/006_02.jpg) 100% center /52%  no-repeat;}
.hero-bg-7 {    background: url(../images/hero/007_01.png) 0 center /48%  no-repeat, url(../images/hero/007_02.jpg) 100% center /52%  no-repeat;}
.hero-bg-8 {    background: url(../images/hero/008_01.png) 0 center /48%  no-repeat, url(../images/hero/008_02.jpg) 100% center /52%  no-repeat;}


/*sl_*/
.hero-bg-1>.sl_ {    background: url(../images/hero/001-sl.png) center /100% no-repeat;}
.hero-bg-2>.sl_ {    background: url(../images/hero/002-sl.png) center /100% no-repeat;}
.hero-bg-3>.sl_ {    background: url(../images/hero/003-sl.png) center /100% no-repeat;}
.hero-bg-4>.sl_ {    background: url(../images/hero/004-sl.png) center /100% no-repeat;}
.hero-bg-5>.sl_ {    background: url(../images/hero/005-sl.png) center /100% no-repeat;}
.hero-bg-6>.sl_ {    background: url(../images/hero/006-sl.png) center /100% no-repeat;}
.hero-bg-7>.sl_ {    background: url(../images/hero/007-sl.png) center /100% no-repeat;}
.hero-bg-8>.sl_ {    background: url(../images/hero/008-sl.png) center /100% no-repeat;}


/*text_*/
.hero-bg-1>.text_ {    background: url(../images/hero/001-text.png) center /100% no-repeat;}
.hero-bg-2>.text_ {    background: url(../images/hero/002-text.png) center /100% no-repeat;}
.hero-bg-3>.text_ {    background: url(../images/hero/003-text.png) center /100% no-repeat;}
.hero-bg-4>.text_ {    background: url(../images/hero/004-text.png) center /100% no-repeat;}
.hero-bg-5>.text_ {    background: url(../images/hero/005-text.png) center /100% no-repeat;}
.hero-bg-6>.text_ {    background: url(../images/hero/006-text.png) center /100% no-repeat;}
.hero-bg-7>.text_ {    background: url(../images/hero/007-text.png) center /100% no-repeat;}
.hero-bg-8>.text_ {    background: url(../images/hero/008-text.png) center /100% no-repeat;}


.gallery-thumbs  {position: absolute;text-align: center;z-index: 50;margin:0 0 0 0 ;text-align: center;left: 5%;bottom: 5%;max-width: 850px;height: 210px;}
.gallery-thumbs  .swiper-slide img{cursor: pointer;width: 100%;max-width: 95px;transition: all .3s ease;}
.gallery-thumbs  .swiper-slide img:hover{transform: scale(1.12) translate(0%,-2%);}

.hero-father .swiper-button-prev {z-index: 51;background: url(../images/hero_prev.png) center top /100% no-repeat;top:60%}
.hero-father .swiper-button-next {z-index: 51;background: url(../images/hero_next.png) center top /100% no-repeat;top:60%}
.section.active .hero-father .swiper-button-prev {-webkit-animation: blur_entry_r  1s cubic-bezier(.250, .460, .450, .940) .5s both;}
.section.active .hero-father .swiper-button-next {-webkit-animation: blur_entry_l  1s cubic-bezier(.250, .460, .450, .940) .5s both;}

@media screen and (min-width:1921px){
.hero-container {margin-top: 0px;}

}

@media screen and (max-width:1680px){
.hero-container {margin-top: 60px;}
.gallery-thumbs  {bottom: -1%;transform: scale(.8);left: 2%;}
.hero-father .swiper-button-prev{left: 1%;}
.hero-father .swiper-button-next {right: 1%;}
}

@media screen and (max-width:1480px){
.hero-container {margin-top:20px;}
.hero-container .swiper-slide {background-position: 100% 0 ;}
.hero-container .sl_ {background-size: 85%;background-position: 110% 0;}
.hero-container .text_{background-position: center 55%;}
.gallery-thumbs  {bottom: 0;}


}
@media screen and (max-width:1280px){
.hero .hero-bg-all{margin-top:20px;margin-left: 0px;transform: scale(1);}
.hero-father .swiper-button-prev {top:70%}
.hero-father .swiper-button-next {top:70%}
.gallery-thumbs{left: 1%;bottom: 1%; } 
.hero .title_r {margin-right: -40px;}
}

@media screen and (max-width:768px){ 
.hero .hero-bg-all{margin-top: 0px;margin-left:0px;transform: scale(1);}
.hero-father .swiper-button-prev {left:-2.5%;top:60%}
.hero-father .swiper-button-next {right:-2.5%;top:60%}

.hero-bg-1 {background: url(../images/hero/001_m.jpg) 0 center /100%  no-repeat}
.hero-bg-2 {background: url(../images/hero/002_m.jpg) 0 center /100%  no-repeat}
.hero-bg-3 {background: url(../images/hero/003_m.jpg) 0 center /100%  no-repeat}
.hero-bg-4 {background: url(../images/hero/004_m.jpg) 0 center /100%  no-repeat}
.hero-bg-5 {background: url(../images/hero/005_m.jpg) 0 center /100%  no-repeat}
.hero-bg-6 {background: url(../images/hero/006_m.jpg) 0 center /100%  no-repeat}
.hero-bg-7 {background: url(../images/hero/007_m.jpg) 0 center /100%  no-repeat}
.hero-bg-8 {background: url(../images/hero/008_m.jpg) 0 center /100%  no-repeat}
.sl_{display: none;}
.text_{display: none;}


}

/*-----------------------------------------------
    bounceInUp - 跳起來
-----------------------------------------------*/
@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(500px);
    }

    60% {
        opacity: 1;
        transform: translateY(-300px);
    }

    80% {
        opacity: 1;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bounceInUp {
    animation: bounceInUp .5s ease-out 0s 1 both;
}
