html {
    scroll-behavior: smooth;
}

body {
    font-size: 18px;
    line-height: 1.8em;
    color: #333333;
    font-family: Arial,
        "Microsoft JhengHei",
        '新細明體',
        Helvetica,
        sans-serif;

}

section {
    padding: 2.5em 1.5em;
}


.jumbotron {
    height: 60vh;
    background: url(../img/kvbg.jpg) center no-repeat;
    background-size: cover;
    margin-bottom: 0;
}

.jumbotron h1 {
    font-size: 3em;
    font-weight: 600;
    text-align: center;
    color: #fff;
    text-shadow: rgba(0, 0, 0, 1) 0px 3px 8px;
    margin-top: 2.2em;
}

@media (max-width: 576px) {
    .jumbotron{
        height: 40vh;
    }

    .jumbotron h1{
        font-size: 1.6em;
        margin-top: 3.5em;
    }
}

.tp_50{
    background-color: rgba(0, 192, 238, 0.5);
    padding: 0px 10px;
}

nav {
    font-weight: 700;
    box-shadow: 0 0 3px rgb(0 0 0 / 25%);
}

.navbar {
    padding: 0px 5vw;
    margin: 0px;
}

.navbar-brand img {
    max-width: 75%;
}

.navbar-nav {
    width: 100%;
}
.nav-link {
    padding: 20px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
    transform: translate(2px, 1px);

}



.txt-highlight {
    color: #00c0ee;

}

a {
    color: #FF424E;
}

a:hover {
    color: #DB304A;
    text-decoration: none;
}

.btn-main {
    background-color: #00c0ee;
    border-color: #00c0ee;
    padding: 15px 20px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.btn-main:hover {
    background-color: #0095CC;
    border-color: #0095CC;
}


.section-foreword {
    color: #fff;
    background-color: #0d274d;
}

.foreword-title {
    color: #e04010;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
    font-size: 2.2em;
}


.foreword-info {
    background-color: #fff;
    color: #121212;
    font-size: 20px;
    line-height: 2.5;
}


.main-title {
    font-size: 2.8rem;
    color: #242629;
    text-align: center;
    font-weight: 700;
    margin-bottom: 2rem;
}

.section-agenda {
    background-color: #f1f1f1;
}

.section-agenda h3{
   font-weight: 600;
   margin: 20px 0;
   color: #0d274d;
}

.section-agenda p{
    text-align: justify;
    font-size: 16px;
}

.sp-info {
    border-left: 2px solid #00c0ee;
    padding-left: 10px;
    margin: 15px 0;
}

.sp-name {
    color: #16161a;
    font-size: 1.2rem;
}

.sp-desc {
    color: #94a1b2;
}

.sp-img{
    border-radius: 50%;
}



.section-gift {
    padding: 5em 0;
    background-size: cover;
    background: url(../img/background.jpg)center no-repeat;    

}



.gift-box {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px 40px;
    text-align: center;
    color: #121212;
    /* border: 3px solid #ff6a00; */
}


.gift-box h3 {
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1.5;
}

.gift-box p {
    margin: 20px 0 0;
    font-size: 20px;
}

.help-block{
    color: #00c0ee;
}



/*sidebar*/
#sidebarReg .register {
    background-color: #00C0EE;
    color: #fff;
    position: fixed;
    bottom: 15%;
    right: 0;
    border: none;
    display: block;
    font-weight: bold;
    font-size: 20px;
    writing-mode: vertical-lr;
    padding: 25px 10px;
    z-index: 10;
    border-radius: 10px 0 0 10px;
    box-shadow: 2px 3px 8px 0px rgba(58, 15, 228, 0.32);
}

#sidebarReg .register:hover {
    background-color: #C0E972;
}

#gotopBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 20px;
    /* Place the button at the bottom of the page */
    right: 30px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    background-color: rgba(0, 192, 238, 0.3);
    color: #fff;
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 18px;
    transition: 0.2s;
}

#gotopBtn:hover {
    background-color: rgba(0, 192, 238, 0.8);
}

:target:before {
    content: "";
    display: block;
    height: 72px;
    /* fixed header height*/
    margin: -72px 0 0;
    /* negative fixed header height */
}