/*Reset*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500&display=swap');

html,body{ height: 100%; }

body{ 
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 300;
}

a,a:hover,a:link{ color: #528d98; }
a{ text-decoration: underline; }

ul.list-style{ list-style: none; }
h1,h2,h3,h4,h5,h6{ color: #1cab9d; font-weight: 500; }

 


/*Article, Title, Intro*/
article{ 
    line-height: 1.7; 
    font-size: 1rem; 
}
    

    .intro{ 
        margin-bottom: 1em;
        color: #2c2c2c;
        line-height: 1.6em;
        position: relative;
    }
    .intro.intro-lg{ font-size: 1.6rem;  }

/*Hero Class*/
.hero-title{
    font-family: 'Mansalva', 微軟正黑體, serif;
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
}

    .hero-banner{
        background: linear-gradient(180deg, #ffe246, #ffa500);
        }

        .hero-banner > img{ width: 100%; }


/*Paragraph Title width Underline */
.paragraph-title-underline{
    background: transparent;
    position: relative;
    margin-bottom: 1em;
    overflow: hidden;
}

    /* .paragraph-title-underline:after{
        bottom: 0;
        content: "";
        position: absolute;
        height: 1px;
        width: 100%;
        background: #528d9840;
    } */

    .paragraph-title-underline strong{
        position: relative;
        display: inline-block;
        color: #528d98;
        font-weight: bold;
        margin-right: 4px;
    }



/*Go to Top button*/
.gotoTop{
    position: fixed;
    padding: 16px;
    right: 3%;
    bottom: 3%;
    width: 50px; height: 50px;
    background: #528d98;
    border-radius: 10px;
    transition: .3s;
    cursor: pointer;
}

    .gotoTop:hover{
        filter: brightness(1.3);
    }


/*Label*/
a .label{
    font-size: 1rem;
    font-weight: 800;
    color: #f93939;
    margin: 0;
    cursor: pointer;
    border-bottom: 1px dashed black;
}

    a .label:hover{filter: brightness(1.1)}


/*First Letter*/
.first-letter{
    font-size: 2rem;
    font-weight: bolder;
}




/*Button Style*/
.btn{
    font-size: .8rem;
    color: #3e3e3e;
    font-weight: bold;
    background: #ffe822;
    padding: 16px 10px;
    letter-spacing: .85px;
    border-radius: 10px;
    text-transform: uppercase;
}

.btn a,a.navbar-brand{ text-decoration: none;}
.btn>a:hover{ color: inherit; }

.btn:hover{
    filter: brightness(1.2);
}

.btn-circle{ border-radius: 30px }

a.btn-lang{
    font-size: 1.6rem;
    padding: 5px;
    color: #007bff;
    border: 1px solid #007bff;
    text-decoration: none;
 }


/*Table*/
.table .thead-dark th{
    color: #ffffff;
    background-color: #528d98;
    border-color: #528d98;
}

.table-hover tbody tr{
    box-shadow: 0px 0 0px 1px transparent;
    border-radius: 8px;
}

.table thead th {
    vertical-align: top;
    font-weight: 400;
    background: #23ada0;
    }


.prepend-title{
    display: flex;
    position: relative;
}

.prepend-title .title{

}

.prepend-title .prepend-icon{
    position: relative;
}


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .hero-banner>img{
        width: auto;
        max-height: 650px;
    }
}

.speech-bubble {
    position: relative;
    background: #4c5aff;
     color: white;
    border-radius: .4em;
}

.speech-bubble:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top-color: #4c5aff;
    border-bottom: 0;
    border-right: 0;
    margin-left: -10px;
    margin-bottom: -20px;
}


