@charset "utf-8";

/* Firefox */
@-moz-document url-prefix() {
  html,
  body {
    scrollbar-width: thin;
    scrollbar-color: #e5e5e5 transparent;
  }
}

::-webkit-scrollbar {
   width: 5px;
   border-radius: 5px;
   -moz-border-radius: 5px;
   -webkit-border-radius: 5px;
 }

::-webkit-scrollbar-thumb {
  background: #e5e5e5;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    max-width: 1300px;
    font-size: 16px;
    color: #545454;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
    background-color: #fbfbfb;
    scroll-behavior: smooth;
    font-family: 微軟正黑體, "Microsoft JhengHei", sans-serif;
    background-image: url(../img/winter/winter-bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top;
    background-size: cover;
}

img {
    border: 0;
    height: auto;
    max-width: 100%;
}

ul {
    list-style-type: none;
}

a:focus {
    outline: 0;
}

a:link,
a:visited,
a:active,
a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

.img-fluid {
    display: block;
    margin: 0 auto;
    max-width: 100%;
} 

/**************************************************************************************************************************************
    winter Travel Itinerary
***************************************************************************************************************************************/

.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
}

@keyframes fall {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
        transform: translateY(100vh);
    }
}

@keyframes diagonal-fall {
    0% {
        opacity: 0;
        transform: translate(0, 0);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
        transform: translate(10vw, 100vh);
    }
}

.winter-header {
    text-align: center;
}

.winter-heade-img {
    width: 100%;
}

.winter-header .small {
    display: none;
}

.winter-heade-img-mb {
    display: none;
}

.itinerary-winter {
    width: 100%;
    padding: 0 30px;
    margin-bottom: 50px;
}

.itinerary-winter-container {
    max-width: 1300px;
    margin: 0 auto;
    z-index: 99999;
}

.itinerary-winter-info {
    padding: 0 15px;
}

.itinerary-winter-info .horizontal-itinerary {
    overflow: hidden;
    margin-bottom: 25px;
}

.itinerary-winter-info .horizontal-itinerary img {
    float: left;
    max-width: 90px;
    height: auto;
    margin-right: 20px;
}

.winter_2025_logo {
    width: 30%;
    margin-bottom: 30px;
}

.itinerary-winter-info h1 {
    width: 100%;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 550;
    color: #bba26a;
    margin-top: 15px;
}

.itinerary-winter-info h2 {
    width: 100%;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 550;
    line-height: 2.5rem;
    margin-bottom: 1rem;
}

.itinerary-winter-info .content {
    font-size: 1rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: justify;
    line-height: 30px;
    margin-bottom: 15px;
}

.itinerary-winter-info .attractions {
    display: table;
    font-size: 0.96rem;
    width: 155px;
    color: #ffffff;
    text-align: center;
    border-radius: 30px;
    background-color: #bba26a;
    margin-bottom: 0.5rem;
}

.attractions-img {
    float: right;
    margin-bottom: 20px;
    margin-top: -10px;
}

.device-1 {
    display: block;
}

.device-2 {
    display: none;
}

/**************************************************************************************************************************************
    sign up
***************************************************************************************************************************************/

.signupmb {
    display: none;
}

.modal {
  background: rgba(255,247,230,0.95);
  display: none;
  overflow: auto;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-content {
  position: relative;
  width: 60%;
  margin: 0 auto;
  background-color: transparent;
  border:none;
  box-shadow: none;
  border: 2px dashed #bba26a;
  border-radius: 15px;
  padding: 30px;
}

.modal-animated-in {
  animation: totop-in .3s ease;
}

.modal-animated-out {
  animation: totop-out .3s ease forwards;
}

.modal-header {
  width: 100%;
  line-height: 60px;
  box-sizing: border-box;
  border-bottom: none;
  display:inline;
  text-align: center;
  margin-top: 25px;
  display: inline-block;
}

@font-face {
 font-family: JiaoKeShuTi-R;
 src: url('../font/JiaoKeShuTi-ICA-Pror-R-2_0.otf');
}

.modal-header h5 {
    font-family: JiaoKeShuTi-R;
    font-weight: 600;
    font-size: 1.6rem;
    color: #bba26a;
    margin-bottom: 15px;
}

.modal-header h5 br {
    display: none;
}

.modal-header h5 span {
    font-family: Castoro, sans-serif;
}

.modal-header p {
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 0;
}

.modal-header p span {
    font-family: Castoro, sans-serif;
    font-size: 1.2rem;
}

.modal-content .close {
  position: absolute;
  cursor: pointer;
  transition: all .3s;
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  background-color: #bba26a;
  width: 40px;
  height: 40px;
  border-radius: 99999px;
  line-height: 40px;
  opacity: 1;
  font-weight: normal;
  right: 5%;
  top: 3%;
}

.modal-content .close:hover {
  background-color: #bba26a;
  color: #ffffff;
}

.modal-body {
  padding: 0 20px;
}

.modal-body iframe {
    width:100%;
    height:100vh;
    margin-left: -3%;
}

@keyframes totop-in {
  0% {
    top: 600px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }  
}

@keyframes totop-out {
  0% {
    top: 0px;
    opacity: 1;
  }
  100% {
    top: -100%;
    opacity: 0;
  }  
}

/**************************************************************************************************************************************
    Hotel
***************************************************************************************************************************************/

.hotel {
    width: 100%;
    padding: 0 30px;
}

.hotel .container {
    width: 100%;
    max-width: 1300px;
}

.hotel h1 {
    width: 200px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 550;
    color: #bba26a;
    border-bottom: 2px solid #bba26a;
    display: inline-block;
    padding: 10px 0;
    margin-bottom: 30px;
}

.hotel h1 .en {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 550;
    letter-spacing: 1px;
}

.hotel-info {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    padding: 10px 15px;
/*    background-color: rgba(255, 138, 0, 0.85);*/
}

.hotel-info h2 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #bba26a;
    text-align: center;
}

.hotel-info p {
    text-align: justify;
    margin-bottom: 0;
    line-height: 28px;
}

.hotel-info span {
    color: #545454;
}

/**************************************************************************************************************************************
    Date
***************************************************************************************************************************************/

.winter_sign_up {
    background-color: #bba26a;
    padding: 6px 8px;
    border-radius: 5px;
    color: #ffffff;
}

.winter_sign_up:link, .winter_sign_up:visited, .winter_sign_up:active, .winter_sign_up:hover {
    color: #ffffff;
}

.w-35 {
    width: 35%;
}

/**************************************************************************************************************************************
    Food
***************************************************************************************************************************************/

.food-info {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    padding: 10px 15px;
}

.food-info h2 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #bba26a;
    text-align: center;
    line-height: 28px;
}

.food-info p {
    text-align: justify;
    line-height: 28px;
    margin-bottom: 30px;
}

.food-info p span {
    color: transparent;
}

.food img {
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

/**************************************************************************************************************************************
    Flight
***************************************************************************************************************************************/

.flight, .departure, .food {
    width: 100%;
    padding: 0 30px;
}

.flight .container, .departure .container, .food .container  {
    width: 100%;
    max-width: 1300px;
    margin-bottom: 60px;
}

.flight h1, .departure h1, .food h1 {
    width: 200px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 550;
    color: #bba26a;
    border-bottom: 2px solid #bba26a;
    display: inline-block;
    padding: 10px 0;
    margin-bottom: 30px;
}

.flight h1 .en, .departure h1 .en, .food h1 .en {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 550;
    letter-spacing: 1px;
}

.flight .airport, .departure .airport {
    display: table;
    margin-bottom: 10px;
}

.flight .table-row, .departure .table-row {
    display: table-row;
}

.flight .table-cell, .departure .table-cell {
    display: table-cell;
}

.flight .table-layer, .departure .table-layer {
    width: 100%;
    table-layout: fixed;
}

.flight .table-all, .departure .table-all {
    width:100%;
    border: none;
}

.flight .table-content, .departure .table-content {
    width: 100%; 
    overflow-x: auto;
    scrollbar-width:none;
}

.flight .table, .departure .table {
    white-space:nowrap;
    text-align: center;
    vertical-align: middle;
}
.flight .table td, .departure .table td{
    padding: 15px 8px;
    border-top: none;
    border-bottom: 1px solid #464646;
}


.flight .table thead th, .departure .table thead th {
     border-bottom: 1px solid #464646; 
     color: initial;
     border-top: none;
     text-align: center;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: initial;
    color: initial;
}

.flight .table-striped tbody tr, .departure .table-striped tbody tr {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: initial;
    background-color: #e4d8be;
}

.flight p, .departure p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-align: left;
    padding-left: 10px;
    line-height: 28px;
}

.red {
    color: #ff0000;
}

/**************************************************************************************************************************************
    company
***************************************************************************************************************************************/

#company {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    /*padding-top: 100px;
    background-image: url(../img/winter/footer.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;*/
}

.company-info {
    background-color: #f6fcff;
}

.company-info .container {
    padding-top: 10px;
    padding-bottom: 70px;
}

.company-info .en {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 550;
    letter-spacing: 1px;
}

.single-info {
    margin-bottom: 30px;
}

.single-info .title {
    position: relative;
    color: #bba26a;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 30px;
    padding-bottom: 23px;   
    word-wrap: break-word;
}
.single-info .title::after {
    content: "";
    background-color: #bba26a;
    height: 3px;
    width: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.single-info .title span {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #bba26a;
}

.single-info .contact-info {
    color: #bba26a;
    line-height: 28px;
    font-size: 15px;
    margin-bottom: 10px;
}

.single-info .contact-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #bba26a;
    margin-bottom: 5px;
}

.single-info .contact-info span {
    display: block;
    color: #bba26a;
    font-weight: 600;
}

.single-info .contact-info .tel-space {
    display: inline-block;
    padding-left: 2px;
}

.company-info .about p{
    color: #bba26a;
    font-size: 15px;
    font-weight: 600;
    line-height: 25px;
    padding-top: 6px;
}

.company-info .about .gts-logo{
    width: auto;
    max-height: 27px;
    margin-bottom: 10px;
}

.company-info .about ul {
    padding-left: 0;
    margin-bottom: 0;
}
.company-info .about ul li {
    display: block;
}

.company-info .about .office {
    margin-top:40px;
}
    
.company-info .link {
    padding-left: 25px;
}

.company-info .link a {
    color: #bba26a;
    font-weight: 600;
    line-height: 38px;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 15px;
    transition: all 1s ease 0s;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;  
    display: block;
    word-wrap: break-word;
}

.company-info .link a:hover {
    color: #bba26a;
    margin-left: 3px;
}
.company-info .premium ul {
    padding-left: 0;
    margin-bottom: 0;
}
.company-info .premium ul li {
    display: inline-block;
    width:80px;
    height:auto;
    margin-bottom: 5px;
    margin-right: 4.5px;
    position: relative;
    transition: all 1s ease 0s;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    position: relative;
}

.company-info .premium ul li:hover {
    opacity: 0.7;
}

.company-info .premium ul li img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.copyright img {
    display: inline-block;
    margin-right: 30px;
}
.copyright p {
    color: #bba26a;
    font-size:14px;
    font-weight: 600;
    display: inline-block;
}

#company .logos {
    float: right;
    /*background-color: #ffffff;*/
    display: inline-block;
    padding: 0 15px;
    /*border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;*/
}

#company .logos li {
    display: inline-block;
    margin: 8px 5px;
    line-height: 24px;
    vertical-align: middle;
}
#company .logos li img {
    max-height: 24px;
}

.footer-img {
    width: 100%;
}

/**************************************************************************************************************************************
    Device
***************************************************************************************************************************************/

@media (max-width: 1440px){
    .winter-header .large {
        display: none;
    }
    .winter-header .small {
        display: block;
    }
    .modal-content {
      width: 85%;
    }
}

@media (min-width: 1281px){
    .company-info .container {
        width: 1250px;
    }
}

@media only screen and (max-width: 1280px) {
    .modal-content {
      width: 90%;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1280px){ 
    .company-info .about {
        width: 25%;
    }
    .company-info .link {
        width: 25%;
    }
    .company-info .premium {
        width: 50%;
    }
}

@media (max-width: 1024px){
    .itinerary-winter-info .content {
        font-size: 0.97rem;
    }
    .winter_2025_logo {
        width: 35%;
    }
    .company-info .link {
        padding-left: 15px;
    }
    #company .logos {
        float: left;
    }
}

@media (max-width: 768px){
    .winter-heade-img-mb {
        display: block;
        width: 100%;
    }
    .winter-header .small {
        display: none;
    }
    .itinerary-winter-info {
        padding: 0;
        margin-bottom: 1rem;
        overflow: hidden;
    }
    .winter_2025_logo {
        width: 45%;
    }
    #company {
        background-image: none;
    }
    .signupmb {
        display: table;
        margin: 0 auto;
        font-size: 1.1rem;
        color: #bba26a;
        background-color: #ff0000;
        border-radius: 30px;
        padding: 10px 30px;
        font-weight: bold;
        margin-top: 50px;
    }
    .signupmb:link, .signupmb:visited, .signupmb:active, .signupmb:hover {
        color: #bba26a;
    }

    .modal-body iframe {
        margin-left: auto;
    }

    .modal-content {
      width: 95%;
      padding: 30px 0;
    }

    .modal-dialog {
        top: initial;
    } 
}

@media (max-width: 639px){
    .itinerary-winter, .flight, .departure, .hotel, .food {
        padding: 0 15px;
    }
    .itinerary-winter-info .attractions {
        font-size: 0.9rem;
        width: 150px;
    }
    .flight .container {
        padding: 0;
    }
    .departure .container {
        padding: 0;
    }
    .hotel .container {
        padding: 0;
    }
    .food .container {
        padding: 0;
    }
    .modal-header h5 br {
        display: block;
    }
    .modal-content .close {
        right: 3%;
        top: 1%;
    }
}

@media (max-width: 425px){
    .itinerary-winter-info .horizontal-itinerary img {
        float: none;
        margin: 0 auto;
    }
    .itinerary-winter-info h1 {
        font-size: 1.1rem;
        line-height: 1.5rem;
        margin-bottom: 0;
    }
    .itinerary-winter-info h2 {
        line-height: 1.5rem;
        margin-bottom: 0;
    }
    .device-1 {
        display: none;
    }
    .device-2 {
        display: block;
        max-width: 200%;
    }
    .attractions-img {
        margin-right: -50px;
    }
    .winter_2025_logo {
        width: 80%;
    }
    .company-info .link a {
        width: 45%;
        display: inline-block;
    }
    #company .logos {
        border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    }
    .signupmb {
        font-size: 1rem;
        padding: 8px 25px;
    }
    .modal-body {
        padding: 0 10px;
    }
    .modal-header h5 {
        font-size: 1.45rem;
    }
    .modal-header p {
        font-size: 16px;
    }
}