:root {
    --bg-color: #f1f1f3;
    --block-color: #040000;
    --yellow-color: #e1c785;
    --yellow-color2: #cbbd7a;
    --green-color: #184240;
    --light-gray-color: #7d7d7d;
    --dark-gray-color: #4f4f4f;
    --font-family: "SweiSpringSugarCJKtc", "Microsoft JhengHei", sans-serif;
    --font-family-serif: "Noto Serif TC";
    --font-family-sans: "Noto Sans TC";
    --font-family-swei: 'SweiSpringSugarCJKtc';
    --font-family-timesNewRoman: 'Times New Roman';
}

html {
    font-size: 16px;
}

@media screen and (max-width: 640px) {
    html {
        font-size: 11px;
    }
}

body {
    position: relative;
    z-index: 0;
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--txt-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #888;
}

body::-webkit-scrollbar-thumb {
    background: #ccc;
}

body::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

h1,
h2,
h3 {
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a,
button {
    -webkit-transition: all 0.3s 0s ease-in;
    -o-transition: all 0.3s 0s ease-in;
    -moz-transition: all 0.3s 0s ease-in;
    transition: all 0.3s 0s ease-in;
    text-decoration: none;
}

.l-wrapper {
    overflow: hidden;
}

h2,
h2>p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.9rem;
    line-height: 1;
    color: #5b2a09;
}

h3,
h3>p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 3.3rem;
    line-height: 1;
}

h4,
h4>p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.9;
    color: #5b2a09;
}

p {
    font-family: var(--font-family);
    font-weight: 500;
    color: #4b4b4b;
}

figure {
    position: relative;
}

figcaption {
    font-size: .9rem;
    color: #fff;
    position: absolute;
    bottom: 8px;
    left: 1rem;
    z-index: 2;
}

figcaption.black {
    color: #6f6f6f;
}

.o-0 {
    opacity: 0;
}

.o-1 {
    opacity: 1;
}

.d-n {
    display: none;
}

.d-b {
    display: block;
}

.c-w {
    color: #fff !important;
}

.mt-1 {
    margin-top: 1.5rem;
}

.en {
    font-family: var(--font-family-timesNewRoman);
    font-size: .8rem;
    line-height: 1;
    color: #91704b;
}

.labtip {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    margin: 0 0 2rem auto;
    padding: 1.2rem 3rem 1.2rem 4.5rem;
}

@media screen and (max-width: 991px) {
    .labtip {
        padding: 1.2rem 2rem 1.2rem 3rem;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 640px) {
    .labtip {
        padding: 1rem 1.5rem 1rem 3.5rem;
        margin-bottom: 0;
    }
}

.labtip::before {
    width: 100%;
    content: "";
    padding: 0;
    text-align: center;
    -webkit-clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.22;
    background-color: #ae875d;
}

.labtip h2 {
    position: relative;
    z-index: 2;
    margin-bottom: .7rem;
    text-align: center;
    letter-spacing: 1px;
}

@media screen and (max-width: 640px) {
    .labtip h2 {
        font-size: 1.5rem;
        margin-bottom: .5rem;
    }
}

.labtip .en {
    position: relative;
    z-index: 2;
    text-align: center;
}

@media screen and (max-width: 640px) {
    .labtip .en {
        font-size: .7rem;
    }
}

.labtip.tr {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.labtip.tl {
    padding: 1.2rem 4.5rem 1.2rem 2.5rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .labtip.tl {
        padding: 1.2rem 3rem 1.2rem 2rem;
    }
}

.labtip.tl::before {
    -webkit-clip-path: polygon(0% 0, 93% 0%, 100% 100%, 0 100%);
    clip-path: polygon(0% 0, 93% 0%, 100% 100%, 0 100%);
}

.labtip.w::before {
    opacity: .7;
}

.labtip.w h2 {
    color: #fff;
}

.labtip.w .en {
    color: #ffd5a6;
}

.loader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: #fff;
}

.loader::after {
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #198BBF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: rotation 1s linear infinite;
    -moz-animation: rotation 1s linear infinite;
    -o-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
    position: absolute;
    top: 40vh;
    left: -webkit-calc(50% - 24px);
    left: -moz-calc(50% - 24px);
    left: calc(50% - 24px);
}

.swiper-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.swiper-buttons {
    width: 160px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: -70px;
    left: 0;
    right: 0;
    z-index: 3;
    margin: 0 auto;
}

@media screen and (max-width: 991px) {
    .swiper-buttons {
        bottom: 7rem;
    }
}

@media screen and (max-width: 640px) {
    .swiper-buttons {
        width: 96px;
        padding: 0;
        margin: 0 auto;
    }
}

.swiper-button-prev {
    width: 80px;
    height: 80px;
    background: url(../images/icon-swiper-prev.svg) no-repeat center;
    -moz-background-size: 80px;
    -o-background-size: 80px;
    background-size: 80px;
    left: 0;
}

@media screen and (max-width: 640px) {
    .swiper-button-prev {
        width: 50px;
        height: 50px;
        -moz-background-size: 46px;
        -o-background-size: 46px;
        background-size: 46px;
    }
}

.swiper-button-prev:after {
    display: none;
}

.swiper-button-next {
    width: 80px;
    height: 80px;
    background: url(../images/icon-swiper-next.svg) no-repeat center;
    -moz-background-size: 80px;
    -o-background-size: 80px;
    background-size: 80px;
    right: 0;
}

@media screen and (max-width: 640px) {
    .swiper-button-next {
        width: 50px;
        height: 50px;
        -moz-background-size: 46px;
        -o-background-size: 46px;
        background-size: 46px;
    }
}

.swiper-button-next:after {
    display: none;
}

.swiper-slide {
    position: relative;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: #ffcead;
    opacity: 1;
}

@media screen and (max-width: 640px) {
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 3px) !important;
    }
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ea5d11;
}

.swiper-3d .swiper-slide-shadow-left {
    background: none !important;
}

.swiper-3d .swiper-slide-shadow-right {
    background: none !important;
}

.container {
    position: relative;
    margin: 0 auto;
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotation {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes rotation {
    0% {
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#section-kv {
    height: 100vh;
    min-height: 800px;
    background: url(../images/kv-bg.jpg) no-repeat center bottom;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
}

@media screen and (max-width: 640px) {
    #section-kv {
        background-image: url(../images/kv-bg-m.jpg);
        min-height: initial;
    }
}

#section-kv .container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}

#section-kv h1 {
    display: none;
}

#section-kv .title {
    width: 60%;
    max-width: 920px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 3;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 991px) {
    #section-kv .title {
        width: 75%;
        max-width: 360px;
    }
}

#section-1 {
    position: relative;
    background: url(../images/s1-bg.jpg) repeat center top;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
}

#section-1 .container {
    width: 1400px;
    padding-bottom: 5rem;
}

@media screen and (max-width: 1400px) {
    #section-1 .container {
        width: 1200px;
    }
}

@media screen and (max-width: 1200px) {
    #section-1 .container {
        width: 1000px;
    }
}

@media screen and (max-width: 991px) {
    #section-1 .container {
        width: 100%;
        padding-bottom: 0;
    }
}

#section-1 .content-wrap {
    position: relative;
}

#section-1 .split-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 9rem;
    position: relative;
}

@media screen and (max-width: 991px) {
    #section-1 .split-content {
        display: block;
        margin-bottom: 5rem;
    }
}

#section-1 .split-content .pic {
    width: -webkit-calc(100% - 700px);
    width: -moz-calc(100% - 700px);
    width: calc(100% - 700px);
    margin-right: 50px;
    position: relative;
}

@media screen and (max-width: 991px) {
    #section-1 .split-content .pic {
        width: 100%;
        margin-bottom: 3rem;
    }
}

#section-1 .split-content .pic img {
    display: block;
    width: 100%;
}

#section-1 .split-content .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 650px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 991px) {
    #section-1 .split-content .info {
        width: 100%;
    }
}

#section-1 .split-content .info img {
    display: block;
    width: 100%;
    max-width: 500px;
}

#section-1 .split-content .info .title {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 2.5rem;
}

@media screen and (max-width: 991px) {
    #section-1 .split-content .info .title {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        text-align: center;
        margin: 0 auto 4rem;
        padding-left: 0;
    }
}

#section-1 .split-content .info .title::before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background-color: #5b2a09;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 991px) {
    #section-1 .split-content .info .title::before {
        display: none;
    }
}

#section-1 .split-content .info .title.line {
    padding-left: 0;
    margin-bottom: 5.5rem;
}

@media screen and (max-width: 1400px) {
    #section-1 .split-content .info .title.line {
        margin-bottom: 4.5rem;
    }
}

#section-1 .split-content .info .title.line::before {
    top: initial;
    left: 7px;
    bottom: -5rem;
    height: 4rem;
}

@media screen and (max-width: 1400px) {
    #section-1 .split-content .info .title.line::before {
        bottom: -4rem;
        height: 3rem;
    }
}

@media screen and (max-width: 991px) {
    #section-1 .split-content .info .title.line::before {
        display: block;
        width: 5rem;
        height: 2px;
        bottom: -2.5rem;
    }
}

@media screen and (max-width: 640px) {
    #section-1 .split-content .info .title.line::before {
        left: 2px;
    }
}

#section-1 .split-content.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

#section-1 .split-content .en {
    margin-bottom: .4rem;
}

@media screen and (max-width: 991px) {
    #section-1 .split-content .en {
        position: absolute;
        bottom: -1.5rem;
        left: 0;
        right: 0;
        margin-bottom: 0;
    }
    #section-1 .split-content .en::before {
        content: "";
        display: block;
        width: -webkit-calc(50% - 4rem);
        width: -moz-calc(50% - 4rem);
        width: calc(50% - 4rem);
        height: 1px;
        background-color: #5b2a0999;
        position: absolute;
        top: 6px;
        left: 0;
    }
    #section-1 .split-content .en::after {
        content: "";
        display: block;
        width: -webkit-calc(50% - 4rem);
        width: -moz-calc(50% - 4rem);
        width: calc(50% - 4rem);
        height: 1px;
        background-color: #5b2a0999;
        position: absolute;
        top: 6px;
        right: 0;
    }
}

#section-1 .split-content .desc p {
    font-size: 1.1rem;
    color: #4b4b4b;
}

@media screen and (max-width: 991px) {
    #section-1 .split-content .desc p {
        text-align: center;
    }
}

#section-1 .split-content .desc p span {
    display: block;
}

@media screen and (max-width: 1400px) {
    #section-1 .split-content .desc p span {
        display: inline;
    }
}

@media screen and (max-width: 991px) {
    #section-1 .split-content .desc p span {
        display: block;
    }
}

@media screen and (max-width: 1400px) {
    #section-1 .split-content.sc1 .pic {
        width: -webkit-calc(100% - 540px);
        width: -moz-calc(100% - 540px);
        width: calc(100% - 540px);
    }
    #section-1 .split-content.sc1 .info {
        width: 490px;
    }
}

@media screen and (max-width: 991px) {
    #section-1 .split-content.sc1 .pic {
        width: 100%;
    }
    #section-1 .split-content.sc1 .info {
        width: 100%;
    }
}

#section-1 .split-content.sc2 {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

#section-1 .split-content.sc2 .pic {
    width: -webkit-calc(100% - 600px);
    width: -moz-calc(100% - 600px);
    width: calc(100% - 600px);
    margin-right: 0;
    margin-left: 50px;
}

#section-1 .split-content.sc2 .info {
    width: 550px;
}

@media screen and (max-width: 1400px) {
    #section-1 .split-content.sc2 .pic {
        width: -webkit-calc(100% - 460px);
        width: -moz-calc(100% - 460px);
        width: calc(100% - 460px);
    }
    #section-1 .split-content.sc2 .info {
        width: 410px;
    }
}

@media screen and (max-width: 991px) {
    #section-1 .split-content.sc2 .swiper-wrap {
        width: 100%;
        margin: 0;
    }
    #section-1 .split-content.sc2 .pic {
        width: 100%;
        margin-left: 0;
    }
    #section-1 .split-content.sc2 .info {
        width: 100%;
    }
    #section-1 .split-content.sc2 .info img {
        display: none;
    }
    #section-1 .split-content.sc2 .info p {
        text-align: center;
    }
    #section-1 .split-content.sc2 .info p span {
        display: inline;
    }
}

#section-1 .split-content.sc2 .desc p {
    font-size: 1rem;
}

@media screen and (max-width: 1400px) {
    #section-1 .split-content.sc3 .pic {
        width: -webkit-calc(100% - 540px);
        width: -moz-calc(100% - 540px);
        width: calc(100% - 540px);
    }
    #section-1 .split-content.sc3 .info {
        width: 490px;
    }
}

@media screen and (max-width: 991px) {
    #section-1 .split-content.sc3 .pic {
        width: 100%;
    }
    #section-1 .split-content.sc3 .info {
        width: 100%;
    }
}

#section-1 .split-content.sw {
    margin-bottom: 4rem;
}

#section-1 .split-content.sw .swiper-wrap {
    width: -webkit-calc(100% - 570px);
    width: -moz-calc(100% - 570px);
    width: calc(100% - 570px);
    margin-left: 0;
    margin-right: 50px;
}

@media screen and (max-width: 991px) {
    #section-1 .split-content.sw .swiper-wrap {
        width: 100%;
    }
}

#section-1 .split-content.sw .info {
    width: 520px;
}

@media screen and (max-width: 991px) {
    #section-1 .split-content.sw .info {
        width: 92%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 991px) {
    #section-1 .split-content.sw .info .title {
        text-align: left;
        width: 100%;
    }
}

@media screen and (max-width: 991px) {
    #section-1 .split-content.sw .info .desc {
        text-align: justify;
    }
}

@media screen and (max-width: 991px) {
    #section-1 .split-content.sw .info .desc p {
        display: inline;
    }
    #section-1 .split-content.sw .info .desc p span {
        display: inline;
    }
}

@media screen and (max-width: 991px) {
    #section-1 .split-content.sw .info .en {
        position: relative;
        bottom: initial;
        left: initial;
        right: initial;
        margin-bottom: .4rem;
        padding-left: 4px;
    }
    #section-1 .split-content.sw .info .en::before,
    #section-1 .split-content.sw .info .en::after {
        display: none;
    }
}

#section-1 .en-title1 {
    width: 46%;
    position: absolute;
    top: -4.5rem;
    right: -1rem;
}

@media screen and (max-width: 991px) {
    #section-1 .en-title1 {
        display: none;
    }
}

#section-1 .en-title2 {
    width: 44%;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 991px) {
    #section-1 .en-title2 {
        display: none;
    }
}

#section-1 .swiper-wrap {
    width: -webkit-calc(100% - 750px);
    width: -moz-calc(100% - 750px);
    width: calc(100% - 750px);
    margin-left: 80px;
    margin-right: 70px;
    position: relative;
    padding-bottom: 2rem;
}

@media screen and (max-width: 991px) {
    #section-1 .swiper-wrap {
        margin-bottom: 1rem;
    }
}

#section-1 .swiper-slide img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 991px) {
    #section-1 .swiper-slide {
        display: block;
    }
}

#section-1 .swiper-pagination {
    text-align: left;
    left: 1px;
}

@media screen and (max-width: 991px) {
    #section-1 .swiper-pagination {
        text-align: right;
        left: 0;
        padding-right: 1rem;
    }
}

#section-2 {
    position: relative;
}

#section-2 .container {
    position: relative;
}

#section-2 .info {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
}

@media screen and (max-width: 991px) {
    #section-2 .info {
        margin: 0 auto;
        top: 7rem;
    }
}

#section-2 .info h2 {
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

@media screen and (max-width: 640px) {
    #section-2 .info h2 {
        margin-bottom: 1.5rem;
    }
}

#section-2 .info p {
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 991px) {
    #section-2 .info p span {
        display: block;
    }
}

#section-2 img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

#section-2 .content-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background: url(../images/s2-bg.png) no-repeat center bottom;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5rem 0;
}

@media screen and (max-width: 991px) {
    #section-2 .content-wrap {
        display: block;
        background-image: url(../images/s2-bg-m.png);
        padding: 3rem 0 5rem;
    }
}

#section-2 .title {
    padding-right: 2rem;
    position: relative;
    text-align: right;
}

@media screen and (max-width: 991px) {
    #section-2 .title {
        text-align: center;
        margin-bottom: 2rem;
    }
}

#section-2 .title::before {
    content: "";
    display: block;
    width: 2px;
    height: 70%;
    background-color: #5b2a09;
    position: absolute;
    top: 17%;
    right: 0;
}

@media screen and (max-width: 991px) {
    #section-2 .title::before {
        display: none;
    }
}

#section-2 .title p {
    line-height: 1.4;
}

#section-2 .desc {
    padding-left: 2rem;
}

@media screen and (max-width: 991px) {
    #section-2 .desc {
        width: 70%;
        padding-left: 0;
        margin: 0 auto;
        text-align: center;
    }
    #section-2 .desc p {
        display: inline;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    #section-2 .desc {
        width: 82%;
    }
}

#section-3 {
    position: relative;
}

#section-3 .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 1400px;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 4rem;
}

@media screen and (max-width: 1400px) {
    #section-3 .container {
        width: 1100px;
    }
}

@media screen and (max-width: 1200px) {
    #section-3 .container {
        width: 950px;
    }
}

@media screen and (max-width: 991px) {
    #section-3 .container {
        width: 95%;
        padding-bottom: 2rem;
    }
}

#section-3>img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

#section-3 .title {
    position: relative;
}

#section-3 .title h2 {
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 991px) {
    #section-3 .title h2 {
        margin-bottom: .5rem;
    }
}

#section-3 .title h2 p {
    line-height: 1.4;
    color: #ffe1cc;
}

@media screen and (max-width: 991px) {
    #section-3 .title h2 p:nth-of-type(1),
    #section-3 .title h2 p:nth-of-type(2) {
        display: inline;
    }
}

#section-3 .desc p {
    color: #fff;
}

@media screen and (max-width: 991px) {
    #section-3 .desc p {
        display: inline;
        text-align: justify;
    }
}

#section-4 {
    position: relative;
    background: url(../images/s4-bg.png) repeat center top;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
}

#section-4 .container {
    padding-top: 5rem;
    width: 1400px;
}

@media screen and (max-width: 1400px) {
    #section-4 .container {
        width: 1100px;
    }
}

@media screen and (max-width: 1200px) {
    #section-4 .container {
        width: 950px;
    }
}

@media screen and (max-width: 991px) {
    #section-4 .container {
        width: 100%;
        padding-top: 0;
    }
}

#section-4 .info {
    text-align: center;
    padding: 4rem 0 5rem;
}

@media screen and (max-width: 991px) {
    #section-4 .info {
        padding: 2rem 0 3rem;
        width: 90%;
        margin: 0 auto;
    }
}

#section-4 .info h2 {
    margin-bottom: 2rem;
}

@media screen and (max-width: 991px) {
    #section-4 .info h2 {
        margin-bottom: 1.5rem;
    }
}

#section-4 .info p {
    color: #4b4b4b;
}

#section-4 .content-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 5rem;
}

@media screen and (max-width: 991px) {
    #section-4 .content-wrap {
        width: 100%;
        max-width: 100%;
        padding-top: 1rem;
    }
}

#section-4 .swiper-wrap {
    width: 100%;
    margin: 0 auto;
}

#section-4 .swiper-wrapper {
    padding-top: 2rem;
}

#section-4 .swiper-slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    opacity: 0 !important;
}

#section-4 .swiper-slide .pic {
    position: relative;
}

#section-4 .swiper-slide .pic::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    mix-blend-mode: multiply;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
    opacity: 1;
}

#section-4 .swiper-slide img {
    display: block;
    width: 100%;
}

#section-4 .swiper-slide p {
    font-size: .9rem;
    color: #fff;
    opacity: 0;
    position: absolute;
    bottom: 8px;
    left: 10px;
}

@media screen and (max-width: 991px) {
    #section-4 .swiper-slide p {
        font-size: .6rem;
        bottom: 4px;
        left: 7px;
    }
}

#section-4 .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}

#section-4 .swiper-slide.swiper-slide-active .pic::before {
    opacity: 0;
}

#section-4 .swiper-slide.swiper-slide-active p {
    opacity: 1;
}

@media screen and (max-width: 991px) {
    #section-4 .swiper-slide {
        display: block;
    }
}

#section-4 .swiper-slide-prev {
    opacity: 0.5 !important;
}

#section-4 .swiper-slide-next {
    opacity: 0.5 !important;
}

#section-4 .pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 99999;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 1rem;
}

#section-4 .pagination .dot {
    width: 14px;
    height: 14px;
    background-color: #ffcead;
    opacity: 1;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0 6px;
    display: inline-block;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    #section-4 .pagination .dot {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

#section-4 .pagination .dot.active {
    background-color: #ea5d11;
}

#section-5 {
    position: relative;
}

#section-5 .container {
    position: relative;
}

#section-5 .container>p {
    color: #fff;
    font-size: .9rem;
    position: absolute;
    left: 12px;
    bottom: 8px;
    z-index: 2;
}

#section-5 img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

#section-5 .content-wrap {
    background: url(../images/s5-bg.png) repeat center;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    padding: 4rem 0 6rem;
}

@media screen and (max-width: 991px) {
    #section-5 .content-wrap {
        background-image: url(../images/s5-bg-m.png);
        padding: 1rem 0 2rem;
    }
}

#section-5 .desc {
    width: 1400px;
    margin: 0 auto;
}

@media screen and (max-width: 1400px) {
    #section-5 .desc {
        width: 1100px;
    }
}

@media screen and (max-width: 1200px) {
    #section-5 .desc {
        width: 950px;
    }
}

@media screen and (max-width: 991px) {
    #section-5 .desc {
        width: 92%;
    }
    #section-5 .desc h4 p {
        font-size: 1.1rem;
    }
    #section-5 .desc h4 p:nth-of-type(1) {
        text-align: center;
        font-size: 2rem;
    }
}

#section-form {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: url(../images/form-bg.png) no-repeat center top;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

@media screen and (max-width: 991px) {
    #section-form {
        padding-top: 2rem;
        padding-bottom: 4rem;
        background-image: url(../images/form-bg-m.png);
    }
}

#section-form .container {
    width: 1400px;
}

@media screen and (max-width: 1400px) {
    #section-form .container {
        width: 1200px;
    }
}

@media screen and (max-width: 1200px) {
    #section-form .container {
        width: 1000px;
    }
}

@media screen and (max-width: 991px) {
    #section-form .container {
        width: 100%;
    }
}

#section-form .logo {
    display: block;
    width: 410px;
    margin: 0 auto 5rem;
}

@media screen and (max-width: 991px) {
    #section-form .logo {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #section-form .logo {
        width: 220px;
    }
}

#section-form h5 {
    font-size: 2.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-align: center;
}

@media screen and (max-width: 991px) {
    #section-form h5 {
        margin-bottom: 0;
    }
}

#section-form .content-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media screen and (max-width: 991px) {
    #section-form .content-wrap {
        display: block;
    }
}

#section-form .info-wrap {
    width: -webkit-calc(50% - 3rem);
    width: -moz-calc(50% - 3rem);
    width: calc(50% - 3rem);
}

@media screen and (max-width: 1400px) {
    #section-form .info-wrap {
        width: -webkit-calc(50% - 2rem);
        width: -moz-calc(50% - 2rem);
        width: calc(50% - 2rem);
    }
}

@media screen and (max-width: 991px) {
    #section-form .info-wrap {
        width: 100%;
        margin-top: 4rem;
        margin-bottom: 6rem;
    }
    #section-form .info-wrap h5 {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    #section-form .desc {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 auto;
        width: 555px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    #section-form .desc>div {
        width: -webkit-calc(50% - .75rem);
        width: -moz-calc(50% - .75rem);
        width: calc(50% - .75rem);
    }
    #section-form .desc>div:first-of-type {
        margin-right: 1.5rem;
    }
}

@media screen and (max-width: 640px) {
    #section-form .desc {
        width: 95%;
        margin: 0 auto;
    }
    #section-form .desc>div:first-of-type {
        width: 51%;
        margin-right: .5rem;
    }
    #section-form .desc>div:last-of-type {
        width: -webkit-calc(49% - .5rem);
        width: -moz-calc(49% - .5rem);
        width: calc(49% - .5rem);
    }
}

#section-form .desc p {
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.7;
    letter-spacing: 1px;
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    #section-form .desc p {
        font-size: .9rem;
    }
}

@media screen and (max-width: 640px) {
    #section-form .desc p {
        font-size: 1rem;
        line-height: 2;
        letter-spacing: -.5px;
    }
}

#section-form .maps {
    width: 100%;
    margin-bottom: 1rem;
}

@media screen and (max-width: 991px) {
    #section-form .maps {
        margin-bottom: 2rem;
    }
}

#section-form .maps iframe {
    width: 100%;
    height: 300px;
}

@media screen and (max-width: 640px) {
    #section-form .maps iframe {
        height: 120px;
    }
}

#section-form .form-wrap {
    width: -webkit-calc(50% - 3rem);
    width: -moz-calc(50% - 3rem);
    width: calc(50% - 3rem);
}

@media screen and (max-width: 1400px) {
    #section-form .form-wrap {
        width: -webkit-calc(50% - 2rem);
        width: -moz-calc(50% - 2rem);
        width: calc(50% - 2rem);
    }
}

@media screen and (max-width: 991px) {
    #section-form .form-wrap {
        width: 85%;
        margin: 0 auto;
    }
}

#section-form .form-wrap .control {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0 auto .5rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition: 1s;
    -o-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}

@media screen and (max-width: 991px) {
    #section-form .form-wrap .control {
        margin-bottom: 0;
    }
}

#section-form .form-wrap .control>* {
    width: -webkit-calc(50% - 2rem);
    width: -moz-calc(50% - 2rem);
    width: calc(50% - 2rem);
    margin: 0 .5rem .5rem;
}

@media screen and (max-width: 991px) {
    #section-form .form-wrap .control>* {
        width: 100%;
    }
}

#section-form .form-wrap .control-col {
    width: -webkit-calc(50% - 8px);
    width: -moz-calc(50% - 8px);
    width: calc(50% - 8px);
    margin: 0;
}

@media screen and (max-width: 991px) {
    #section-form .form-wrap .control-col {
        width: 100%;
    }
}

#section-form .form-wrap h2 {
    font-family: var(--font-family-serif);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    margin-bottom: 1.5rem;
}

#section-form .form-wrap form {
    padding-top: 1rem;
}

#section-form .form-wrap input[type="text"],
#section-form .form-wrap input[type="tel"],
#section-form .form-wrap input[type="email"],
#section-form .form-wrap select {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 55px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 16px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    color: #e3510c;
    background-color: #ffae60;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1.1rem;
    border: 0;
}

#section-form .form-wrap input[type="text"]:focus,
#section-form .form-wrap input[type="tel"]:focus,
#section-form .form-wrap input[type="email"]:focus,
#section-form .form-wrap select:focus {
    outline: none;
}

@media screen and (max-width: 991px) {
    #section-form .form-wrap input[type="text"],
    #section-form .form-wrap input[type="tel"],
    #section-form .form-wrap input[type="email"],
    #section-form .form-wrap select {
        height: 42px;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 640px) {
    #section-form .form-wrap input[type="text"],
    #section-form .form-wrap input[type="tel"],
    #section-form .form-wrap input[type="email"],
    #section-form .form-wrap select {
        height: 32px;
        margin-bottom: 8px;
    }
}

#section-form .form-wrap input[type="text"]::-webkit-input-placeholder,
#section-form .form-wrap input[type="tel"]::-webkit-input-placeholder,
#section-form .form-wrap input[type="email"]::-webkit-input-placeholder,
#section-form .form-wrap select::-webkit-input-placeholder {
    color: #e3510c;
}

#section-form .form-wrap input[type="text"]:-moz-placeholder,
#section-form .form-wrap input[type="tel"]:-moz-placeholder,
#section-form .form-wrap input[type="email"]:-moz-placeholder,
#section-form .form-wrap select:-moz-placeholder {
    color: #e3510c;
}

#section-form .form-wrap input[type="text"]::-moz-placeholder,
#section-form .form-wrap input[type="tel"]::-moz-placeholder,
#section-form .form-wrap input[type="email"]::-moz-placeholder,
#section-form .form-wrap select::-moz-placeholder {
    color: #e3510c;
}

#section-form .form-wrap input[type="text"]:-ms-input-placeholder,
#section-form .form-wrap input[type="tel"]:-ms-input-placeholder,
#section-form .form-wrap input[type="email"]:-ms-input-placeholder,
#section-form .form-wrap select:-ms-input-placeholder {
    color: #e3510c;
}

#section-form .form-wrap input[type="text"]::-ms-input-placeholder,
#section-form .form-wrap input[type="tel"]::-ms-input-placeholder,
#section-form .form-wrap input[type="email"]::-ms-input-placeholder,
#section-form .form-wrap select::-ms-input-placeholder {
    color: #e3510c;
}

#section-form .form-wrap input[type="text"]::placeholder,
#section-form .form-wrap input[type="tel"]::placeholder,
#section-form .form-wrap input[type="email"]::placeholder,
#section-form .form-wrap select::placeholder {
    color: #e3510c;
}

#section-form .form-wrap input[type="text"].txt-code,
#section-form .form-wrap input[type="tel"].txt-code,
#section-form .form-wrap input[type="email"].txt-code {
    width: -webkit-calc(100% - 220px);
    width: -moz-calc(100% - 220px);
    width: calc(100% - 220px);
}

@media screen and (max-width: 640px) {
    #section-form .form-wrap input[type="text"].txt-code,
    #section-form .form-wrap input[type="tel"].txt-code,
    #section-form .form-wrap input[type="email"].txt-code {
        width: -webkit-calc(100% - 136px);
        width: -moz-calc(100% - 136px);
        width: calc(100% - 136px);
    }
}

#section-form .form-wrap input[type="button"] {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 55px;
    width: 260px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#f9a547), to(#ff7e35));
    background-image: -webkit-linear-gradient(bottom, #f9a547, #ff7e35);
    background-image: -moz-linear-gradient(bottom, #f9a547, #ff7e35);
    background-image: -o-linear-gradient(bottom, #f9a547, #ff7e35);
    background-image: linear-gradient(to top, #f9a547, #ff7e35);
    font-family: var(--font-family);
    font-size: 1.5rem;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 2px;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 991px) {
    #section-form .form-wrap input[type="button"] {
        height: 42px;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 640px) {
    #section-form .form-wrap input[type="button"] {
        height: 32px;
    }
}

#section-form .form-wrap input[type="button"]:hover {
    cursor: pointer;
}

#section-form .form-wrap input[type="button"].btn-code {
    width: 204px;
    margin: 0;
}

@media screen and (max-width: 640px) {
    #section-form .form-wrap input[type="button"].btn-code {
        width: 130px;
    }
}

#section-form .form-wrap .send {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-calc(100% - 1rem);
    width: -moz-calc(100% - 1rem);
    width: calc(100% - 1rem);
    height: 55px;
    font-family: var(--font-family);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #e3510c;
    background-color: #ffae60;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    margin: 0 .5rem;
    padding: 0;
    border: 0;
}

@media screen and (max-width: 991px) {
    #section-form .form-wrap .send {
        height: 42px;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 640px) {
    #section-form .form-wrap .send {
        height: 32px;
    }
}

#section-form .form-wrap .send:hover {
    cursor: pointer;
}

#section-form .form-wrap select option {
    background-color: #fff;
    color: #333;
}

#section-form .form-wrap select.active {
    color: #333;
}

#section-form .form-wrap select.active option {
    color: #333;
}

#section-form .form-wrap .slt-county {
    width: 100%;
}

#section-form .form-wrap .slt-district {
    width: 100%;
}

#section-form .form-wrap .txt-zipcode {
    display: none !important;
}

#section-form .form-wrap .control-group {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#section-form .form-wrap .control-group label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-calc(40% - 16px);
    width: -moz-calc(40% - 16px);
    width: calc(40% - 16px);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: .75rem;
    color: #000;
    line-height: 1.2;
    letter-spacing: 1px;
    background-color: #fff;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1.1rem;
    margin-right: 16px;
}

@media screen and (max-width: 640px) {
    #section-form .form-wrap .control-group label {
        width: -webkit-calc(45% - 12px);
        width: -moz-calc(45% - 12px);
        width: calc(45% - 12px);
        margin-right: 12px;
    }
}

#section-form .form-wrap .link-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 72px;
    background-color: #1EAF96;
    font-family: var(--font-family-sans);
    font-size: .75rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 640px) {
    #section-form .form-wrap .link-btn {
        height: 42px;
        font-size: .9rem;
    }
}

#section-form .form-wrap .privacy {
    margin: 0 0 2rem;
    padding: 0 1rem;
}

#section-form .form-wrap .privacy p {
    font-size: 1.2rem;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.7;
    letter-spacing: 0.3px;
    text-align: left;
    color: #fff;
}

@media screen and (max-width: 991px) {
    #section-form .form-wrap .privacy p {
        font-size: .95rem;
    }
}

#section-form .form-wrap .privacy a {
    display: inline-block;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.3px;
    color: #fff;
}

.jc-bs3-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.jc-bs3-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}


/*# sourceMappingURL=style.css.map */