@charset "utf-8";
@import url("fontawesome/css/all.min.css");
*{ box-sizing: border-box; outline: none;}

a,a:hover{ text-decoration: none;}
img{ max-width: 100%;}
h2.title_style{ 
    color:var(--lightBrown); 
    text-transform: uppercase; 
    font-weight:normal; 
    font-size: 48px; 
    line-height: 1em;
    text-align: center;
}
:root{    
    --Gray9:#999;
    --Gray6:#666;
    --Gray3:#333;
    --Gray2:#222;
    --linkFocus:#9B8C6C;
    --linkLine:#D3D3D3;
    --ground:#E8E6E3;
    --Red:#f00;
    /* font-size: 16px; */
}
main{
    clear: both;
}
/* form input,
form input.form-control,
form textarea.form-control{
    border-radius: 0;
    font-size: 1rem;
    font-family: arial,sans-serif;
} */

form input:focus,
form input.form-control:focus,
form textarea.form-control:focus{ 
    
}

::placeholder{
    color: var(--Gray9) !important;
    font-size: 1rem;
}

form .input_group{ 
    display: flex; 
    margin-bottom: 15px;
}
form .input_group>label{ 
    width: 100px; 
    text-align: left; 
    padding-top: 5px;
}
form .input_group>textarea{ 
    /* background-color: var(--footerGreen); 
    line-height: 2.5em; 
    border: 0; 
    resize: none; */
}
form .input_group>input, 
form .input_group>textarea, 
form .input_group .code_box{ 
    width: 100%; 
    text-align: left;
}

a{  
    /* color: var(--Gray6); */
}

a,a:focus, a:hover {
    text-decoration: none;
}

a:hover{
    /* color: var(--fontColor); */
    transition: 0.3s linear;
}

a:focus,
*:focus{
    outline: none !important;
    box-shadow: none !important;
}

ul,li{ 
    list-style: none;
    padding: 0;
    margin: 0;
}
.zindex-0{
    z-index: 0;
}
.zindex-1{
    z-index: -1;
}
.colorGray2{
    color: var(--Gray2);
}
.colorGray3{
    color: var(--Gray3);
}

.colorGray6{
    color: var(--Gray6);
}
.colorGray9{
    color: var(--Gray9);
}
.colorFocus{
    color:var(--linkFocus);
}
.colorRed{
    color:var(--Red);
}
.bg-lightGray{
    background-color: #EFEFEF;
}
.f11{
    font-size: 0.69rem;
}

.f12{
    font-size: 0.75rem;
}

.f13{
    font-size: 0.81rem;
}

.f14{
    font-size: 0.88rem;
}

.f15{
    font-size: 0.94rem;
}

.f16{
    font-size: 1rem;
}

.f17{
    font-size: 1.06rem;
}

.f18{
    font-size: 1.13rem;
}

.f19{
    font-size: 1.19rem;
}

.f20{
    font-size: 1.25rem;
}

.f21{
    font-size: 1.3125rem;
}

.f22{
    font-size: 1.38rem;
}

.f24{
    font-size: 1.5rem;
}

.f26{
    font-size: 1.63rem;
}

.f28{
    font-size: 1.75rem;
}

.f30{
    font-size: 1.88rem;
}

.f32{
    font-size: 2rem;
}
.f36{
    font-size: 2.26rem;
}
.f64{
    font-size: 4rem;
}
.f80{
    font-size: 5rem;
}

.fw100{
    font-weight: 100;
}
.fw300{
    font-weight: 300;
}
.fw400{
    font-weight: 400;
}

.fw500{
    font-weight: 500;
}

.fw600{
    font-weight: 600;
}

.fw700{
    font-weight: 700;
}

.fw800{
    font-weight: 800;
}

.fw900{
    font-weight: 900;
}

.swiper .img-fluid{
    width: 100%;
}
.text-shasow{
    text-shadow: 2px 2px 10px #222;
}

/* iframe video RWD */

.framewrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.framewrapper2 {
    position: relative;
    padding-bottom: 31.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.framewrapper iframe,
.framewrapper2 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*  圖片hover效果1 */

.hovimg-zoom {
    display: block;
    overflow: hidden;
}

.hovimg-zoom img {
    width: 100%;
    transition: all 0.6s;
    transform: scale(1.06);
}

.hovimg-zoom:hover img {
    transform: scale(1.16);
}

@keyframes zoomIn {
    0% {
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes picfadein {
    from {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@keyframes picfadein {
    from {
        opacity: 0;
        transform: scale(1.5);
    }
    to {
        opacity: 1;
        transform: scale(1.01);
    }
}

/*  圖片hover效果2*/
.zoom {
    width: 100%;
    -webkit-animation: picfadein 2s;
    animation: picfadein 2s;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -webkit-transform: scale3d(1.01, 1.01, 1);
    transform: scale3d(1.01, 1.01, 1);
}
.zoom:hover,
a:hover .zoom {
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
}


/*button*/
.btn_greenLight{
    background-color: #58d9ab;
    color: #fff;
    height: 53px;
    border-radius: 50px;
    padding:0 15px;
    font-weight: bold;
    border: 0;
    letter-spacing: 1px;
    font-size: 20px;
    cursor: pointer;
}

.btn_greenLight:hover{
    background-color: #f9d950;
    color:#333;
}

.btn_top{
    background-color: #58d9ab;
    color:#fff;
}

/*編輯器規格設定*/


/*page style*/


/*boostrap*/
.pagination{ 
    border-radius: 0;
    /* flex-wrap: wrap; */
}
.page-item.active .page-link{
    color: var(--linkFocus);
    border: none;
    background-color: transparent;
}
.page-item.page-prenex .page-link span,
.page-link[aria-label="Previous"] span,
.page-link[aria-label="Next"] span{
    display: none;
}
.page-item.page-prenex .page-link{
    position: relative;
}
.page-item.page-prenex:first-child .page-link::before,
.page-item .page-link[aria-label="Previous"]::before,
.page-link[aria-label="Previous"]::before{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-left' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}
.page-item.page-prenex:last-child .page-link::before,
.page-item .page-link[aria-label="Next"]::before,
.page-link[aria-label="Next"]::before{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.page-item{
    border-bottom: 1px solid #dee2e6;
}
.page-item.active{
    border-bottom: 2px solid var(--linkFocus);
}
.page-item:not(:first-child) .page-link{
    margin: 0 10px;
}
.page-link{ 
    /* border: 1px solid #ccc;  */
    border-radius: 0 !important; 
    margin: 0 10px; 
    width: 44px; 
    height: 44px;
    padding-bottom: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #666;
    border: none;
}
.page-link:hover{
    background-color: transparent;
    border: none;
    color: var(--linkFocus);
}
/* .page-prenex .page-link{
    width: 80px;
} */
.page-link-dot{
    margin: 0; 
    width: 44px; 
    height: 44px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
@media (max-width: 575px) {
    .pagination .page-item:first-child,
    /* .pagination .page-item:nth-child(2), */
    .pagination .page-item:last-child
    /* .pagination .page-item:nth-last-child(2) */
    {
        display: none;
    }
    .page-link{
        width: 32px;
        height: 32px;
        padding-top: 0;
    }
    .page-link-dot{
        width: 32px;
        height: 32px;
    }
}
/* select */
.select {
    position: relative;
    min-width: 100px;
  }
  .select svg {
    position: absolute;
    right: 12px;
    top: calc(50% - 3px);
    width: 10px;
    height: 6px;
    stroke-width: 2px;
    stroke: #9098a9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
  }
  .select select {
    -webkit-appearance: none;
    padding: 7px 40px 7px 12px;
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 1px 3px -2px #9098a9;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    transition: all 150ms ease;
  }
  .select select:required:invalid {
    color: #5a667f;
  }
  .select select option {
    color: #223254;
  }
  .select select option[value=""][disabled] {
    display: none;
  }
  .select select:focus {
    outline: none;
    border-color: #aaa;
    box-shadow: 0 0 0 2px rgba(0,119,255,0.2);
  }
  .select select:hover + svg {
    stroke: #aaa;
  }
  .sprites {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    user-select: none;
  }

  /* swiper gallery */
  .swiper-pagination,
  .swiper-button-prev,
  .swiper-button-next{
    display: none;
  }
  
  swiper-container {
    width: 100%;
    height: 100%;
  }
  
  swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  swiper-container {
    width: 100%;
    /* height: 300px; */
    margin-left: auto;
    margin-right: auto;
  }
  
  swiper-slide {
    background-size: cover;
    background-position: center;
  }
  
  .mySwiper {
    height: 80%;
    width: 100%;
  }
  
  .mySwiper2 {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
  }
  
  .mySwiper2 swiper-slide {
    /* width: 25%; */
    width: 20%;
    height: 100%;
    opacity: 0.4;
  }
  
  .mySwiper2 .swiper-slide-thumb-active {
    opacity: 1;
  }
  
  swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .swiper-button-prev:after{
      content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-left' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E") !important;
  }
  .swiper-button-next:after{
      content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
  }
  /* 隱藏按鈕無效 */
  .swiper-button-next:after, 
  .swiper-button-prev:after{
      content: ;
  }
  .swiper-button-next, .swiper-button-prev{
      display: none !important;
  }
  /* 隱藏按鈕無效 */

/*-----------------------------------------------
|   Pre-loader
-----------------------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    background-color: #fff;
    opacity: 1;
    -webkit-transition: opacity 0.8s cubic-bezier(0.77, 0, 0.18, 1);
    -o-transition: opacity 0.8s cubic-bezier(0.77, 0, 0.18, 1);
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.18, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .preloader.loaded {
    opacity: 0;
  }