/* style modify */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600&family=Noto+Sans+TC&display=swap');

body, .copy, p {
    font-family: 'Mulish', 'Noto Sans TC', sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, input, button, select, textarea {
    font-family: 'Mulish', 'Noto Sans TC', sans-serif;
}

hr {
    border: 0;
}

.copy h1 {
    color: rgba(255, 255, 255, .3);
    margin-top: 20px;
    font-weight: 300;
}

.copy h2 {
    color: #FFFFFF;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 400;
}

.copy footer p {
    font-size: 12px;
    color: #DDDDDD;
}

p {
    margin-bottom: 1em;
}

.btn {
    border-radius: 2px;
    border-color: transparent;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open>.dropdown-toggle.btn-primary {
    border-color: transparent;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
*:focus {
    outline: none;
}

.navbar-toggle {
    border: 0;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: transparent;
}

.navbar-default .navbar-toggle:hover .icon-bar, .navbar-default .navbar-toggle:focus .icon-bar {
    background-color: #FFFFFF;
}

.form-control {
    color: #000000;
    border-radius: 2px;
    box-shadow: none;
}

.tabs .nav-tabs>li {
    margin-left: 2px;
}

.tabs .nav-tabs li a:hover {
    color: #FFFFFF;
    border-color: transparent transparent #534536 transparent;
    background-color: transparent;
}

.tabs .nav-tabs>li>a {
    color: #DDDDDD;
    border-radius: 2px 2px 0 0;
}

.tabs .nav-tabs>li.active>a,
.tabs .nav-tabs>li.active>a:hover,
.tabs .nav-tabs>li.active>a:focus {
    font-weight: 500;
}

a.carousel-control {
    color: inherit;
}



/* navbar fix */
.navbar-custom a.logo {
    display: block;
    width: 184px;
    height: 110px;
    background: url(../_images/logo.svg) no-repeat center 16px;
}

.navbar-custom .navbar-nav>li.clear {
    clear: both;
    /* social links shift */
}

.navbar-custom .navbar-nav>li.clear~li {
    float: right;
}

.navbar-custom .navbar-nav>li>a {
    font-family: 'Mulish', sans-serif;
    transition: color 0.2s ease-in-out, background-image 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out, background-image 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out, background-image 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out, background-image 0.2s ease-in-out;
}


/* social links */
.youtube,
.spotify,
.amazon,
.ig,
.fb {
    width: 24px;
    height: 24px;
    margin: 8px 12px 32px;
}

.youtube {
    background: url(../_images/icon-youtube.svg) no-repeat center center;
}

.youtube:hover {
    background: url(../_images/icon-youtube-hover.svg) no-repeat center center;
}

.spotify {
    background: url(../_images/icon-spotify.svg) no-repeat center center;
}

.spotify:hover {
    background: url(../_images/icon-spotify-hover.svg) no-repeat center center;
}

.amazon {
    background: url(../_images/icon-amazon.svg) no-repeat center center;
}

.amazon:hover {
    background: url(../_images/icon-amazon-hover.svg) no-repeat center center;
}

.ig {
    background: url(../_images/icon-ig.svg) no-repeat center center;
}

.ig:hover {
    background: url(../_images/icon-ig-hover.svg) no-repeat center center;
}

.fb {
    background: url(../_images/icon-fb.svg) no-repeat center center;
}

.fb:hover {
    background: url(../_images/icon-fb-hover.svg) no-repeat center center;
}

.chacha {
    width: 56px;
    height: 24px;
    background: url(../_images/icon-chacha.svg) no-repeat center center;
    margin: 8px 12px 32px;
}

.chacha:hover {
    background: url(../_images/icon-chacha-hover.svg) no-repeat center center;
}


/* hearnow */
.cover {
    position: relative;
    overflow: auto;
}

.cover-img {
    margin: auto;
    max-width: 50%;
}

#hearnow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 300px;
    height: 120px;
    border-radius: 4px;
    background: url(../_images/icon-hearnow.svg) no-repeat center 24px;
    background-size: 207px 36px;
    background-color: rgba(255, 255, 255, .1);
    transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
}

#hearnow:hover {
    background-color: rgba(255, 255, 255, .3);
}

#hearnow p {
    margin-top: 72px;
    color: #FFFFFF;
    text-align: center;
}


/* RWD */
@media (max-width: 991px) {
    #hearnow {
        right: 10px;
        width: 240px;
        top: calc(50% - 120px);
    }
}

@media (max-width: 767px) {
    .navbar-custom .navbar-nav>li.clear {
        clear: none;
        /* social links shift */
        margin: 20px;
    }

    .navbar-custom .navbar-nav>li.clear~li {
        display: block;
        float: none;
    }

    .cover-img {
        max-width: 100%;
    }
}