html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: "Noto Sans TC", sans-serif;
    box-sizing: border-box;
    font-size: 16px;
    color: #9E9F9F;
    width: 100vw;
    margin: 0 auto;
    overflow-x: hidden;
    background: #fff
}

h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media only screen and (max-width: 450px) {
    h1 {
        font-size: calc(1.375rem + 1vw)
    }
}

h2 {
    font-size: calc(1.325rem + .9vw)
}

@media only screen and (max-width: 450px) {
    h2 {
        font-size: calc(1.325rem + .6vw)
    }
}

h3 {
    font-size: calc(1.3rem + .6vw)
}

@media only screen and (max-width: 450px) {
    h3 {
        font-size: calc(1.3rem + .3vw)
    }
}

h4 {
    font-size: calc(1.275rem + .3vw)
}

@media only screen and (max-width: 450px) {
    h4 {
        font-size: calc(1.275rem + .2vw)
    }
}

h5 {
    font-size: 1.25rem
}

@media only screen and (max-width: 450px) {
    h5 {
        font-size: 1.125rem
    }
}

.text-highlight {
    font-weight: bold;
    color: #BA3E4A
}

.title {
    margin-bottom: 32px;
    margin-top: 20px;
    display: flex;
    align-items: center
}

@media only screen and (max-width: 450px) {
    .title {
        margin-bottom: 24px
    }
}

.title h2 {
    font-weight: bold;
    font-family: "Noto Serif TC", serif;
    color: #555;
    letter-spacing: 1px;
    margin: 0 16px 0 0;
    display: flex
}

@media only screen and (max-width: 350px) {
    .title h2 {
        margin: 0 8px 0 0
    }
}

.title .line::before {
    content: "";
    width: 100px;
    height: 1.25px;
    background: #9E9F9F;
    display: block
}

@media only screen and (max-width: 500px) {
    .title .line::before {
        width: 60px
    }
}

@media only screen and (max-width: 350px) {
    .title .line::before {
        width: 30px
    }
}

.title h4 {
    color: #555;
    font-family: "Marcellus", serif;
    font-weight: 500;
    margin: 1px 0 0 16px
}

@media only screen and (max-width: 350px) {
    .title h4 {
        margin: 1px 0 0 8px
    }
}

.title.focusline h6 {
    margin-top: 20px
}

a {
    text-decoration: none;
    cursor: pointer
}

a:hover {
    filter: brightness(1.05);
    text-decoration: none
}

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

button:focus {
    outline: 0 !important;
    box-shadow: none !important
}

button:hover {
    filter: brightness(1.05)
}

.btn {
    padding: 8px 36px;
    margin: 24px auto 0 auto;
    font-weight: bold;
    background: #F6F6F6;
    border: none;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25), -4px -4px 4px #fff;
    color: #9E9F9F;
    display: flex;
    align-items: center
}

.btn:hover,
.btn:active,
.btn:focus {
    background: #9E9F9F;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25), -4px -4px 4px #fff !important;
    color: #fff;
    padding: 8px 32px
}

.btn:hover .arrow,
.btn:active .arrow,
.btn:focus .arrow {
    display: none
}

.btn:hover .arrow-hover,
.btn:active .arrow-hover,
.btn:focus .arrow-hover {
    display: block
}

@media only screen and (max-width: 767.98px) {
    .btn {
        margin: 18px auto 0 auto
    }
}

.btn .arrow {
    display: block;
    margin-left: 8px
}

.btn .arrow-hover {
    display: none;
    margin-left: 16px
}

.xl-show {
    display: none
}

@media only screen and (max-width: 1200px) {
    .xl-show {
        display: block
    }
}

.xl-hide {
    display: block
}

@media only screen and (max-width: 1200px) {
    .xl-hide {
        display: none
    }
}

.lg-show {
    display: none
}

@media only screen and (max-width: 991px) {
    .lg-show {
        display: block
    }
}

.lg-hide {
    display: block
}

@media only screen and (max-width: 991px) {
    .lg-hide {
        display: none
    }
}

.md-show {
    display: none
}

@media only screen and (max-width: 767.98px) {
    .md-show {
        display: block
    }
}

.md-hide {
    display: block
}

@media only screen and (max-width: 767.98px) {
    .md-hide {
        display: none
    }
}

.mob-show {
    display: none
}

@media only screen and (max-width: 450px) {
    .mob-show {
        display: block
    }
}

.mob-hide {
    display: block
}

@media only screen and (max-width: 450px) {
    .mob-hide {
        display: none
    }
}

.mob2-show {
    display: none
}

@media only screen and (max-width: 400px) {
    .mob2-show {
        display: block
    }
}

.mob2-hide {
    display: block
}

@media only screen and (max-width: 400px) {
    .mob2-hide {
        display: none
    }
}

.mob3-show {
    display: none
}

@media only screen and (max-width: 350px) {
    .mob3-show {
        display: block
    }
}

.mob3-hide {
    display: block
}

@media only screen and (max-width: 350px) {
    .mob3-hide {
        display: none
    }
}

.row>* {
    padding-right: 20px;
    padding-left: 20px
}

.float-icon {
    right: 20px;
    bottom: 85px;
    position: fixed;
    z-index: 99;
    cursor: pointer
}

@media only screen and (max-width: 450px) {
    .float-icon {
        right: 8px;
        /* bottom: 12px */
    }
}

.float-icon #back {
    display: none;
    border: none;
    width: 45px;
    padding: 0;
    margin-top: 12px;
    border-radius: 50px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25), -4px -4px 4px #fff
}

.float-icon #back:focus {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25), -4px -4px 4px #fff !important
}

.float-icon #back:hover {
    filter: brightness(1.05)
}

@media only screen and (max-width: 450px) {
    .float-icon #back {
        width: 34px
    }
}

.float-icon #back img {
    width: 100%
}

.modal {
    color: #9E9F9F
}

.modal .modal-dialog {
    max-width: 70%;
    min-height: 100%;
    margin: 40px auto
}

@media only screen and (max-width: 991px) {
    .modal .modal-dialog {
        max-width: 80%;
        margin: 30px auto
    }
}

@media only screen and (max-width: 500px) {
    .modal .modal-dialog {
        max-width: 90%;
        margin: 20px auto
    }
}

@media only screen and (max-width: 450px) {
    .modal .modal-dialog {
        max-width: 100%;
        margin: 0 auto
    }
}

.modal .modal-dialog .modal-content {
    background-image: url("../images/bg.jpg");
    background-repeat: repeat;
    background-position: center;
    background-size: 12%;
    border: none
}

@media only screen and (max-width: 991px) {
    .modal .modal-dialog .modal-content {
        background-size: 18%
    }
}

@media only screen and (max-width: 576px) {
    .modal .modal-dialog .modal-content {
        background-size: 32%
    }
}

@media only screen and (max-width: 450px) {
    .modal .modal-dialog .modal-content {
        background-size: 40%
    }
}

.modal .modal-dialog .modal-content .modal-header {
    text-align: center;
    display: block;
    position: relative;
    letter-spacing: 1px;
    background: #555;
    border: none
}

.modal .modal-dialog .modal-content .modal-header .modal-title {
    color: #fff;
    font-weight: bold;
    font-family: "Noto Serif TC", serif
}

@media only screen and (max-width: 576px) {
    .modal .modal-dialog .modal-content .modal-header .modal-title {
        width: 90%;
        margin: 0 auto
    }
}

.modal .modal-dialog .modal-content .modal-header .btn-close {
    background: none;
    color: #9E9F9F;
    opacity: 1;
    position: absolute;
    right: 20px;
    top: 20px
}

.modal .modal-dialog .modal-content .modal-header .btn-close:hover {
    color: #9E9F9F
}

.modal .modal-dialog .modal-content .modal-header .btn-close span.material-symbols-outlined {
    line-height: 0
}

.modal .modal-dialog .modal-content .modal-body {
    padding: 20px 32px 40px 32px
}

@media only screen and (max-width: 576px) {
    .modal .modal-dialog .modal-content .modal-body {
        padding: 20px 20px 40px 20px
    }
}

.modal .modal-dialog .modal-content .modal-body h6 {
    color: #555;
    font-weight: bold
}

.modal .modal-dialog .modal-content .modal-footer {
    justify-content: center
}

.modal .modal-dialog .modal-content .modal-footer .btn {
    margin: .25rem auto
}

.modal .modal-dialog .modal-content .modal-footer .btn:hover {
    padding: 8px 36px
}

form label {
    color: #555
}

form label sup {
    color: #BA3E4A
}

form input,
form textarea {
    border: none !important;
    color: #9E9F9F;
    background-color: #F6F6F6 !important
}

form input:focus,
form textarea:focus {
    outline: 0 !important;
    box-shadow: none !important
}

form .form-check {
    display: flex;
    margin: 0 auto;
    width: fit-content;
    align-items: center
}

form .form-check .form-check-label {
    display: flex;
    align-items: center
}

form .form-check .form-check-label a,
form .form-check .form-check-label a:hover {
    color: #BA3E4A
}

form .form-check .form-check-input:checked {
    background-color: #555 !important
}

.section {
    margin: 0 auto;
    padding: 96px 0 0 0
}

@media only screen and (max-width: 1200px) {
    .section {
        margin: 0 auto;
        padding: 88px 0 0 0
    }
}

@media only screen and (max-width: 767.98px) {
    .section {
        margin: 0 auto;
        padding: 80px 0 0 0
    }
}

@media only screen and (max-width: 576px) {
    .section {
        margin: 0 auto;
        padding: 60px 0 0 0
    }
}

@media only screen and (max-width: 450px) {
    .section {
        margin: 0 auto;
        padding: 32px 0 0 0
    }
}

.section .seccond-section {
    margin: 52px auto;
    padding: 0
}

@media only screen and (max-width: 767.98px) {
    .section .seccond-section {
        margin: 28px auto
    }
}

@media only screen and (max-width: 576px) {
    .section .seccond-section {
        margin: 20px auto
    }
}

@media only screen and (max-width: 450px) {
    .section .seccond-section {
        margin: 8px auto
    }
}

header {
    z-index: 100;
    width: 100%;
    background: none;
    position: relative
}

header nav.navbar {
    margin: 20px;
    padding: 0
}

@media only screen and (max-width: 991px) {
    header nav.navbar {
        margin: 12px
    }
}

header nav.navbar .container-fluid {
    align-items: flex-start
}

header nav.navbar .container-fluid .navbar-brand {
    margin: 0;
    padding: 0
}

header nav.navbar .container-fluid .navbar-brand img {
    width: 100%
}

@media only screen and (max-width: 450px) {
    header nav.navbar .container-fluid .navbar-brand img {
        width: 80%
    }
}

@media only screen and (max-width: 350px) {
    header nav.navbar .container-fluid .navbar-brand img {
        width: 70%
    }
}

header nav.navbar .container-fluid .navbar-toggler {
    border: none;
    padding: .25rem 0
}

header nav.navbar .container-fluid .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

@media only screen and (max-width: 500px) {
    header nav.navbar .container-fluid .offcanvas.offcanvas-end {
        width: 100%
    }
}

header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-header {
    display: none;
    background: #555
}

@media only screen and (max-width: 991px) {
    header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-header {
        display: flex
    }
}

header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-header h5 {
    font-weight: bold;
    color: #fff;
    font-family: "Noto Serif TC", serif
}

header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-header .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat
}

header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-body {
    justify-content: right
}

@media only screen and (max-width: 991px) {
    header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-body {
        justify-content: unset;
        background-image: url("../images/bg.jpg");
        background-repeat: repeat;
        background-position: center;
        background-size: 40%
    }
}

header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-body .nav-item {
    text-align: center
}

header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-body .nav-item .nav-link {
    color: #fff;
    letter-spacing: .25px
}

header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-body .nav-item .nav-link:hover {
    color: #555
}

@media only screen and (max-width: 991px) {
    header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-body .nav-item .nav-link {
        color: #9E9F9F
    }

    header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-body .nav-item .nav-link:hover {
        color: #555
    }
}

header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-body .deco {
    position: absolute;
    left: 0;
    bottom: 10px;
    justify-content: center;
    display: none
}

@media only screen and (max-width: 991px) {
    header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-body .deco {
        display: flex
    }
}

@media only screen and (max-width: 991px) {
    header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-body .deco img {
        width: 50%
    }
}

@media only screen and (max-width: 576px) {
    header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-body .deco img {
        width: 40%
    }
}

@media only screen and (max-width: 450px) {
    header nav.navbar .container-fluid .offcanvas.offcanvas-end .offcanvas-body .deco img {
        width: 35%
    }
}

.content {
    z-index: 1;
    position: relative;
    margin-top: -128px
}

#banner .carousel-control-next,
#banner .carousel-control-prev {
    width: 5%;
    height: fit-content;
    top: 50%;
    transform: translateY(-50%)
}

@media only screen and (max-width: 576px) {

    #banner .carousel-control-next,
    #banner .carousel-control-prev {
        width: 8%
    }
}

#banner .scroll {
    width: 8em;
    height: 60px;
    position: absolute;
    bottom: -50px;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    z-index: 10
}

@media only screen and (max-width: 500px) {
    #banner .scroll {
        height: 45px;
        bottom: -30px
    }
}

#banner .scroll .scroll-label {
    cursor: pointer;
    opacity: .5;
    text-align: center;
    -webkit-transform: scale(1, 1) rotate(0.001deg);
    transform: scale(1, 1) rotate(0.001deg);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    position: absolute;
    top: -2.5em;
    right: 0;
    left: 0;
    font-size: 10px;
    color: #555;
    letter-spacing: 0.2em
}

#banner .scroll .scroll-bar {
    opacity: .4;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    width: 1px;
    height: 100%;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    background-color: #C8C8C8
}

#banner .scroll .scroll-bar::before {
    animation: loopScrollBar 1.5s;
    -webkit-animation: loopScrollBar 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    content: '';
    display: block;
    height: 100%;
    background-color: #555
}

@keyframes loopScrollBar {
    0% {
        -webkit-transform: translateY(-100.5%);
        transform: translateY(-100.5%)
    }

    100% {
        -webkit-transform: translateY(100.5%);
        transform: translateY(100.5%)
    }
}

#intro {
    text-align: center
}

#intro h6 {
    background: #F6F6F6;
    padding: 28px 52px;
    font-weight: 400;
    line-height: 24px
}

@media only screen and (max-width: 767.98px) {
    #intro h6 {
        margin: 0 20px;
        padding: 28px 40px
    }
}

@media only screen and (max-width: 500px) {
    #intro h6 {
        padding: 20px
    }
}

@media only screen and (max-width: 350px) {
    #intro h6 {
        padding: 20px 16px
    }
}

@media only screen and (max-width: 767.98px) {
    #about .wrap {
        padding: 0 20px
    }
}

@media only screen and (max-width: 767.98px) {
    #about .wrap .title {
        justify-content: center
    }
}

#about .wrap .right-section {
    width: 80%;
    margin: 0 0 0 auto
}

@media only screen and (max-width: 767.98px) {
    #about .wrap .right-section {
        width: 100%
    }
}

@media only screen and (max-width: 767.98px) {
    #facility .wrap {
        padding: 0 20px
    }
}

#facility .wrap .title {
    justify-content: center
}

#facility .wrap .list .item {
    padding: 12px;
    text-align: center;
    border-right: 1px solid #c8c8c8
}

#facility .wrap .list .item:last-of-type {
    border-right: none
}

@media only screen and (max-width: 767.98px) {
    #facility .wrap .list .item {
        border-right: none;
        padding: 12px 0;
        border-bottom: 1px solid #c8c8c8
    }
}

#facility .wrap .list .item span {
    color: #9E9F9F;
    font-family: "Marcellus", serif;
    font-weight: 500;
    font-size: 16px
}

#facility .wrap .list .item h5 {
    font-weight: bold;
    color: #555;
    margin: 16px auto
}

#facility .wrap .list .item p {
    margin-bottom: 4px
}

#facility .wrap .seccond-section {
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    padding: 20px;
    text-align: center
}

@media only screen and (max-width: 767.98px) {
    #facility .wrap .seccond-section {
        border: none;
        padding: 20px 0
    }
}

#facility .wrap .seccond-section p {
    margin-bottom: 0
}

#facility .wrap .product .nav-pills {
    justify-content: center
}

#facility .wrap .product .nav-pills .nav-link {
    color: #555;
    background: #F6F6F6;
    margin: 0 8px;
    border-radius: 50px;
    padding: 6px 20px 8px 20px
}

#facility .wrap .product .nav-pills .nav-link:hover {
    filter: brightness(1.02)
}

#facility .wrap .product .nav-pills .nav-link.active {
    background-color: #C8C8C8
}

#facility .wrap .product .color-palette {
    justify-content: center
}

#facility .wrap .product .color-palette .colors {
    text-align: center;
    width: 6%;
    padding: 4px 12px
}

@media only screen and (max-width: 1765px) {
    #facility .wrap .product .color-palette .colors {
        width: 7%
    }
}

@media only screen and (max-width: 1510px) {
    #facility .wrap .product .color-palette .colors {
        padding: 4px 8px
    }
}

@media only screen and (max-width: 1375px) {
    #facility .wrap .product .color-palette .colors {
        width: 8%
    }
}

@media only screen and (max-width: 1205px) {
    #facility .wrap .product .color-palette .colors {
        width: 9%
    }
}

@media only screen and (max-width: 1070px) {
    #facility .wrap .product .color-palette .colors {
        width: 10%
    }
}

@media only screen and (max-width: 875px) {
    #facility .wrap .product .color-palette .colors {
        width: 11%
    }
}

@media only screen and (max-width: 800px) {
    #facility .wrap .product .color-palette .colors {
        width: 12%
    }
}

@media only screen and (max-width: 720px) {
    #facility .wrap .product .color-palette .colors {
        width: 13%
    }
}

@media only screen and (max-width: 675px) {
    #facility .wrap .product .color-palette .colors {
        width: 14%
    }
}

@media only screen and (max-width: 630px) {
    #facility .wrap .product .color-palette .colors {
        width: 15%
    }
}

@media only screen and (max-width: 595px) {
    #facility .wrap .product .color-palette .colors {
        width: 16%
    }
}

@media only screen and (max-width: 560px) {
    #facility .wrap .product .color-palette .colors {
        width: 17%
    }
}

@media only screen and (max-width: 530px) {
    #facility .wrap .product .color-palette .colors {
        width: 18%
    }
}

@media only screen and (max-width: 505px) {
    #facility .wrap .product .color-palette .colors {
        width: 19%
    }
}

@media only screen and (max-width: 450px) {
    #facility .wrap .product .color-palette .colors {
        padding: 4px
    }
}

@media only screen and (max-width: 400px) {
    #facility .wrap .product .color-palette .colors {
        width: 20%
    }
}

@media only screen and (max-width: 350px) {
    #facility .wrap .product .color-palette .colors {
        width: 24%
    }
}

#facility .wrap .product .color-palette .colors img {
    border-radius: 50%
}

@media only screen and (max-width: 450px) {
    #facility .wrap .product .color-palette .colors small {
        font-size: .8em
    }
}

#facility .wrap .product #pills-wash .color-text {
    margin: 12px auto 4px auto
}

#facility .wrap .product .color-text {
    margin: 12px auto
}

#facility .wrap .product .color-text span {
    color: #555;
    font-weight: bold
}

#facility .wrap .product .card {
    padding: 12px;
    border: none;
    background: none;
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center
}

#facility .wrap .product .card:hover {
    transform: translate(0, -4px)
}

@media only screen and (max-width: 576px) {
    #facility .wrap .product .card {
        padding: 8px
    }
}

@media only screen and (max-width: 450px) {
    #facility .wrap .product .card:nth-child(odd) {
        padding: 4px 8px 4px 0
    }

    #facility .wrap .product .card:nth-child(even) {
        padding: 4px 0 4px 8px
    }
}

@media only screen and (max-width: 400px) {
    #facility .wrap .product .card {
        width: 100%
    }

    #facility .wrap .product .card:nth-child(odd),
    #facility .wrap .product .card:nth-child(even) {
        padding: 4px 0
    }
}

#facility .wrap .product .card .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C8C8C8'%3e%3cpath 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")
}

#facility .wrap .product .card .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C8C8C8'%3e%3cpath 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")
}

#facility .wrap .product .card h5 {
    color: #555
}

#facility .wrap .product .card .video {
    height: 100%;
    width: 100%
}

#facility .wrap .product .card .video #player {
    height: 100%
}

@media only screen and (max-width: 400px) {
    #facility .wrap .product .card .video #player {
        height: 335px
    }
}

@media only screen and (max-width: 390px) {
    #facility .wrap .product .card .video #player {
        height: 350px
    }
}

@media only screen and (max-width: 375px) {
    #facility .wrap .product .card .video #player {
        height: 335px
    }
}

@media only screen and (max-width: 350px) {
    #facility .wrap .product .card .video #player {
        height: 280px
    }
}

#facility .wrap .product .card p span {
    display: none;
    color: #fff
}

@media only screen and (max-width: 767.98px) {
    #facility .wrap .product .card p span {
        display: block
    }
}

@media only screen and (max-width: 659px) {
    #facility .wrap .product .card p span {
        display: none
    }
}

#identify .wrap {
    background-image: url("../images/identify-img.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 100px 0
}

@media only screen and (max-width: 991px) {
    #identify .wrap {
        padding: 80px 0
    }
}

@media only screen and (max-width: 767.98px) {
    #identify .wrap {
        padding: 60px 20px
    }
}

#identify .wrap .card {
    text-align: center;
    background: #fff;
    padding: 32px 20px;
    border: none;
    border-radius: 0
}

@media only screen and (max-width: 450px) {
    #identify .wrap .card {
        padding: 20px 16px
    }
}

#identify .wrap .card .title {
    justify-content: center
}

@media only screen and (max-width: 767.98px) {
    #contact .wrap {
        padding: 0 20px
    }
}

@media only screen and (max-width: 767.98px) {
    #contact .wrap .title {
        justify-content: center
    }
}

#contact .wrap .content {
    padding-top: 20px
}

#contact .wrap .content .left-section {
    padding: 0 20px 0 0
}

#contact .wrap .content .left-section h5 {
    font-weight: 500;
    color: #555;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #c8c8c8
}

@media only screen and (max-width: 450px) {
    #contact .wrap .content .left-section h5 {
        font-size: 1.05rem
    }
}

#contact .wrap .content .left-section p {
    margin-bottom: 12px
}

#contact .wrap .content .left-section p a {
    color: #9E9F9F
}

@media only screen and (max-width: 767.98px) {
    #contact .wrap .content .left-section {
        padding: 0
    }
}

#contact .wrap .content .right-section {
    padding: 0 0 0 20px
}

@media only screen and (max-width: 767.98px) {
    #contact .wrap .content .right-section {
        padding: 20px 0 0 0
    }
}

footer {
    background: #C8C8C8;
    margin: 96px 0 0 0;
    position: relative
}

@media only screen and (max-width: 1200px) {
    footer {
        margin: 88px 0 0 0
    }
}

@media only screen and (max-width: 767.98px) {
    footer {
        margin: 80px 0 0 0
    }
}

@media only screen and (max-width: 576px) {
    footer {
        margin: 60px 0 0 0
    }
}

@media only screen and (max-width: 450px) {
    footer {
        margin: 32px 0 0 0
    }
}

footer .deco {
    position: absolute;
    left: 20px;
    top: -140px
}

@media only screen and (max-width: 991px) {
    footer .deco {
        left: 15px;
        top: -105px
    }
}

@media only screen and (max-width: 767.98px) {
    footer .deco {
        top: -70px
    }
}

@media only screen and (max-width: 576px) {
    footer .deco {
        left: 10px;
        top: -45px
    }
}

@media only screen and (max-width: 450px) {
    footer .deco {
        display: none
    }
}

footer .deco img {
    width: 25%
}

footer .top-section {
    padding: 24px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3)
}

footer .top-section a:hover {
    opacity: .8
}

footer .bottom-section {
    padding: 24px 28px 32px 28px;
    display: flex;
    justify-content: space-between
}

@media only screen and (max-width: 767.98px) {
    footer .bottom-section {
        display: block;
        padding: 24px 20px 32px 20px
    }
}

footer .bottom-section .left {
    display: flex;
    align-items: center
}

@media only screen and (max-width: 767.98px) {
    footer .bottom-section .left {
        margin: 0 auto 16px 0;
        justify-content: center;
        text-align: center
    }
}

footer .bottom-section .left small {
    color: #fff;
    letter-spacing: .5px
}

footer .bottom-section .left a {
    color: #9E9F9F;
    text-decoration: underline
}

footer .bottom-section .left a:hover {
    color: #555
}

footer .bottom-section .right {
    display: flex;
    margin-top: 6px
}

@media only screen and (max-width: 767.98px) {
    footer .bottom-section .right {
        margin: 0 auto;
        justify-content: center
    }
}

footer .bottom-section .right a {
    margin-right: 12px
}

@media only screen and (max-width: 767.98px) {
    footer .bottom-section .right a {
        margin-right: 16px
    }
}

footer .bottom-section .right a:hover {
    opacity: .8
}

footer .bottom-section .right a img {
    width: 33px
}

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