footer{
    width: 100%;
    position: relative;
    background-color: #CBCCCC;
    padding: 1% 0% 2% 0%;
}

.scrollTop{
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: #2D2523;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.scrollTop.show{
    opacity: .5;
}

.footerContent{
    width: 100%;
    max-width: 45%;
    margin: 0 auto;
}

.footerContent .Title{
    text-align: center;
}

.footerContent .Title h1{
    font-size: 4rem;
    color: #2D2523;
    font-family: 'Noto Serif TC', serif;
}

.footerContent .Title p{
    font-size: 2rem;
    margin: 0;

}

.footerContent .Title::after{
    content: '';
    display: block;
    width: 1px;
    margin: 1% auto;
    text-align: center;
    height: 60px;
    background-color: #C1996B;
}

.SubTitle{
    font-size: 1.5rem;
    text-align: center;
    padding-bottom: 2%;
}

.Info{
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #4D4C4C;
    padding-top: 2%;
}


.Info a{
    color: #2D2523;
}

.Info .Map{
    font-size: 1.2rem;
    color: #2D2523;
}
.Info p{
    font-size: 1rem;
    color: #2D2523;
    margin: 0;
    padding-bottom: 3%;
}

.copyright{
    text-align: center;
    font-size: 0.8rem;
    color: #fff;
}

@media screen and (max-width:991px){
    .Info{
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .content{
        text-align: center;
    }
    .footerContent .Title h1 {
        font-size: 2rem;
    }
    .footerContent .Title p{
        font-size: 1rem;
    }
    .footerContent{
        max-width: 80%;
    }
    .SubTitle{
        font-size: 1.2rem;
    }
    .Info .Map {
        font-size: 0.8rem;
    }
    .Info p{
        font-size: 0.8rem;
        text-align: center;
    }
    .copyright{
        padding-top: 2%;
    }
    .scrollTop{
        font-size: 0.8rem;
        bottom: 5%;
    }
}