@charset "UTF-8";

.scrollBar {
    font-size: 14px;
    display: flex;
    justify-content: center;
    width: 50px;
    padding-top: 125px;
    text-align: center;
    position: absolute;
    bottom: 10%;
    left: 7vw;
    z-index: 3;
}

.scrollBar:before {
    display: inline-block;
    width: 6px;
    height: 110px;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
    color: transparent;
    font-size: 0;
    background-image: url(../images/dots.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.bannerArea{
    overflow: hidden;
}
.bannerArea .bannerBox {
    padding: 0 18%;
    margin-top: 10%;
}

.bannerArea .bannerBox .Img {
    padding: 0;
    margin: 0;
    box-shadow: -1px -1px 10px rgba(0, 0, 0, 0.3);
}

.bannerArea .bannerBox .Img .innerImg {
    padding: 0;
    height: 75vh;
}

.bannerArea .bannerBox .Txt {
    color: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 5%;


}

svg#logo {
    max-width: 100%;
    width: 350px;

}

svg#logo .st0 {
    fill: #FFFFFF;
}

.bannerArea .bannerBox .Txt .title {
    font-family: 'Noto Serif TC', serif;
    padding-top: 2%;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);

}

.bannerArea .bannerBox .Txt .title span {
    display: block;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 12px;

}

.bannerArea .bannerBox .Txt .title b {
    line-height: 1.5;
    letter-spacing: 5px;
    font-size: 2.8rem;

}


/*漸層動態*/
.bannerArea .bannerBox .Img .innerImg .image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.7;
    filter: contrast(150%);
    background: linear-gradient(270deg, #2d3e48, #689392);
    background-size: 800% 800%;
    -webkit-animation: animate-background 50s ease infinite;
    -moz-animation: animate-background 50s ease infinite;
    animation: animate-background 50s ease infinite;
}

@-webkit-keyframes animate-background {
    0% {
        background-position: 0% 66%
    }

    50% {
        background-position: 100% 35%
    }

    100% {
        background-position: 0% 66%
    }
}

@-moz-keyframes animate-background {
    0% {
        background-position: 0% 66%
    }

    50% {
        background-position: 100% 35%
    }

    100% {
        background-position: 0% 66%
    }
}

@keyframes animate-background {
    0% {
        background-position: 0% 66%
    }

    50% {
        background-position: 100% 35%
    }

    100% {
        background-position: 0% 66%
    }
}


@media(max-width: 991px) {
    .bannerArea .bannerBox {
        padding: 0 5%;
        margin-top: 35%;
    }

    .bannerArea .bannerBox .Txt {
        text-align: center;
    }

    .bannerArea .bannerBox .Txt .title span {
        font-size: 18px;
    }

    .bannerArea .bannerBox .Txt .title b {
        font-size: 2rem;
    }

    .bannerArea .bannerBox .Txt {
        position: relative;
    }
}