@charset "utf-8";
/* CSS Document */

body {
  margin: 0px;
  font-family: "noto serif tc";
}

body,
html {
  width: 100%;
  height: 100%;
  background-color: #224e79;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

.wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 53px;
}

.h1 {
    font-size: 50px;
    text-align: center;
    color: #fff;
    margin: 5% 0% 2.5% 0%;
}

.nav_wrapper {
    width: 100%;
    background-color: rgba(225, 225, 225, 0.2);
    align-items: flex-end;
    max-width: initial;
    margin-top: 0;
    display: inline-block;
    flex-direction: row;
    justify-content: start;
    text-decoration: none;
    list-style: none;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav {
    text-align: center;
    padding: 16px 0;
    align-items: center;
}

.nav li {
    position: relative;
    min-width: 4em;
    display: inline-block;
    font-size: 20px;
    margin: 0 0.5em;
}

.nav li:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: #fff;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    -moz-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.nav li:hover::after {
    width: 100%;
}

.nav .active:after {
    width: 100%;
}

.nav li a {
    color: #fff;
}

.h2 {
    font-size: 40px;
    text-align: center;
    color: #fff;
    margin: 0.6% 0% 2.5% 0%;
}

.h3 {
    font-size: 20px;
    font-weight: lighter;
    color: #d8bd9c;
    text-align: center;
    margin-top: 3.6%;
}

.content {
    position: relative;
    width: 44%;
    background-color: #022d47;
    border-radius: 20px;
    padding: 4% 5.5% 1% 5.5%;
    margin: 0 auto;
}

.sightseeing_h1 {
    font-size: 30px;
    font-weight: bold;
    color: #d8bd9c;
    margin-bottom: 0.5em;
}

.sightseeing_h1 span {
    font-size: 22px;
    margin-left: 0.5em;
}

.sightseeing_power {
    font-size: 19px;
    color: #fff;
    margin-bottom: 0.8em;
}

.sightseeing_power span {
    position: relative;
    font-size: 13px;
    margin: 1.4em;
    top: -0.2em;
}

.sightseeing_power img {
    position: relative;
    height: 1.9em;
    top: 0.5em;
    margin: 0 0.2em 0 0.6em;
}

.sightseeing_time {
    font-size: 19px;
    color: #fff;
    margin-bottom: 0.8em;
}

.sightseeing_attractions {
    font-size: 19px;
    font-weight: bold;
    color: #fff;
}

.sightseeing_price {
    margin: 1.6em 0;
}

.sightseeing_price li {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 0.9em 2em;
    margin: 0 0.35em;
}

.sightseeing_itinerary {
    font-size: 17px;
    color: #fff;
    line-height: 2em;
    text-align: justify;
    border-radius: 0 30px;
    background: linear-gradient(90deg, #5FD1E7 0%, #52A9E4 48.36%, #4072DF 100%);
    padding: 3% 4.5% 3.6% 4.5%;
    margin-bottom: 9%;
}

.sightseeing_itinerary span {
    font-size: 15px;
}

.ps {
    font-size: 15px;
    color: #dabd9f;
    margin-bottom: 7%;
    text-align: justify;
}

.ps li {
    margin-left: 2em;
}

.signup_btn {
    font-family: "noto serif tc";
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 4px;
    background-color: #d8bd9c;
    border-radius: 50px;
    display: block;
    padding: 0.25em 0;
    margin: 3.5% auto;
    filter: drop-shadow(5px 4px 5px rgba(0, 0, 0, 0.8));
}

.signup_btn a {
    position: relative;
    color: #022d47;
    padding: 0.25em 1.7em;
}


/************************rwd**************************/
@media all and (max-width: 1670px) {
.content {
    width: 60%;
}
}

@media all and (max-width: 1250px) {
.content {
    width: 70%;
}
}

@media all and (max-width: 1065px) {
.nav_wrapper {
    cursor: grab;
}
.nav {
    display: flex;

}
}

@media all and (max-width: 920px) {
.sightseeing_price li {
    padding: 0.5em 1em;
}
.signup_btn {
    margin: 5.5% auto;
}
}

@media all and (max-width: 768px) {
.content {
    width: 80%;
}
.signup_btn {
        margin: 7.5% auto;
    }
}

@media all and (max-width: 665px) {
.sightseeing_price li {
    margin: 0.35em 0.35em;
}
}

@media all and (max-width: 550px) {
.h1 {
    font-size: 40px;
}
.nav li {
    font-size: 18px;
}
.h2 {
    font-size: 35px;
}
.h3 {
    font-size: 18px;
}
.sightseeing_h1 {
    font-size: 25px;
}
.sightseeing_h1 span {
    font-size: 18px;
}
.sightseeing_power, .sightseeing_time, .sightseeing_attractions {
    font-size: 17px;
}
.sightseeing_price li, .sightseeing_itinerary {
    font-size: 16px;
}
.sightseeing_itinerary span, .ps {
    font-size: 14px;
}
.signup_btn {
    font-size: 30px;
    margin: 10% auto;
}
}

@media all and (max-width: 390px) {
.h1 {
    font-size: 34px;
}
.nav li, .h3 {
    font-size: 16px;
}
.h2 {
    font-size: 33px;
}
.sightseeing_h1 {
    font-size: 23px;
}
.sightseeing_h1 span {
    font-size: 16px;
}
.sightseeing_power, .sightseeing_time, .sightseeing_attractions {
    font-size: 15px;
}
.sightseeing_price li, .sightseeing_itinerary {
    font-size: 14px;
}
.sightseeing_price {
    margin: 1em 0;
}
.sightseeing_itinerary {
    line-height: 1.8em;
}
.sightseeing_itinerary span, .ps {
    font-size: 13px;
}
.signup_btn {
    font-size: 28px;
}
}


