/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .hero_item {
    width: 440px;
    max-width: 100%;
    padding-top: 0px;
    left: 50px;
    height: auto !important;
}

.hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
}

.hero h2 span {
    color: var(--accent-color);
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 0 0;
    font-size: 24px;
}

.hero .cta-btn {
    color: var(--default-color);
    border: 2px solid var(--accent-color);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    transition: 0.3s;
    flex-shrink: 0;
}

.hero .cta-btn:first-child {
    margin-right: 10px;
}

.hero .cta-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.common_title {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.common_title_label {
    font-size: 30px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.85;
    margin-bottom: 16px;
    text-align: center;
    transition: opacity 0.25s ease-out;
}

.glow-text {
    position: relative;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.015em;
    color: #ffffff;
    filter: brightness(1.1);
    z-index: 1;
}

.glow-text::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #ffae00, #b4845e, #ff006e, #ff8800);
    filter: blur(20px) brightness(0.8);
    opacity: 0.7;
    border-radius: 100px;
    z-index: -1;
    pointer-events: none;
    background-size: 200% 200%;
    animation: gradientShift 12s ease-in-out infinite;
}

.glow-text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    letter-spacing: inherit;
    background: linear-gradient(90deg, #ffae00, #b4845e, #ff006e, #ff8800);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: color-burn;
    filter: blur(3px) brightness(1.3);
    z-index: 0;
    pointer-events: none;
    background-size: 200% 200%;
    animation: gradientShift 12s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 480px) {
    .hero .cta-btn {
        font-size: 12px;
    }
}

@media (min-width: 992px) {
    .hero h1 {
        padding-top: 50px;
    }
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 77px;
    overflow: clip;
}
.section.why-us {
    background-color: #2d2a22;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 60px;
    }
}

@media (max-width: 992px) {

    section,
    .section {
        padding: 20px 0;
    }
}

/*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    /* Permalink - use to edit and share this gradient. 固定鏈接 - 用於編輯和分享此漸變： https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100;White+to+Transparent */
    /* Permalink - use to edit and share this gradient. 固定鏈接 - 用於編輯和分享此漸變： https://colorzilla.com/gradient-editor/#e2ad56+0,ffffff+100&1+0,0+100 */
    background: linear-gradient(to right, rgba(226, 173, 86, 1) 0%, rgba(255, 255, 255, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    margin: 4px 10px;
}

.section-title p {
    color: #ffae00;
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
  # Why Us Section
  --------------------------------------------------------------*/
.why-us.section.other_type {
    background-color: rgba(255, 255, 255, 0);
    padding: 20px 0;
}
.why-us .card-item {
/*     background: color-mix(in srgb, var(--default-color), transparent 75%); */
    background-color: rgba(255, 255, 255, 1);
    padding: 50px 30px;
    transition: all ease-in-out 0.3s;
    height: 100%;
    position: relative;
    border-radius: 8px;
}

.why-us .card-item span {
    color: var(--accent-color);
    display: block;
    font-size: 28px;
    font-weight: 700;
}

.why-us .card-item h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
}

.why-us .card-item h4 a {
    color: var(--heading-color);
    color: #d89607;
}

.why-us .card-item p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    padding: 0;
}

.why-us .card-item:hover {
    background: var(--accent-color);
    padding: 30px 30px 70px 30px;
}

.why-us .card-item:hover span,
.why-us .card-item:hover h4 a,
.why-us .card-item:hover p {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
  # feature Sections
  --------------------------------------------------------------*/
.section.feature {
    background-color: #191815;
    background-image: -webkit-linear-gradient(bottom,transparent 24%,rgba(63,182,223,0.3) 25%,rgba(255,255,255,0.03) 26%,transparent 27%,transparent 74%,rgba(63,182,223,0.3) 75%,rgba(63,182,223,0.05) 76%,transparent 77%,transparent),-webkit-linear-gradient(left,transparent 24%,rgba(63,182,223,0.5) 25%,rgba(63,182,223,0.05) 26%,transparent 27%,transparent 74%,rgba(63,182,223,0.5) 75%,rgba(63,182,223,0.05) 76%,transparent 77%,transparent)!important;background-image: -o-linear-gradient(bottom,transparent 24%,rgba(63,182,223,0.3) 25%,rgba(255,255,255,0.03) 26%,transparent 27%,transparent 74%,rgba(63,182,223,0.3) 75%,rgba(63,182,223,0.05) 76%,transparent 77%,transparent),-o-linear-gradient(left,transparent 24%,rgba(63,182,223,0.5) 25%,rgba(63,182,223,0.05) 26%,transparent 27%,transparent 74%,rgba(63,182,223,0.5) 75%,rgba(63,182,223,0.05) 76%,transparent 77%,transparent)!important;/* background-image: linear-gradient(0deg,transparent 24%,rgba(63,182,223,0.3) 25%,rgba(255,255,255,0.03) 26%,transparent 27%,transparent 74%,rgba(63,182,223,0.3) 75%,rgba(63,182,223,0.05) 76%,transparent 77%,transparent),linear-gradient(90deg,transparent 24%,rgba(63,182,223,0.5) 25%,rgba(63,182,223,0.05) 26%,transparent 27%,transparent 74%,rgba(63,182,223,0.5) 75%,rgba(63,182,223,0.05) 76%,transparent 77%,transparent)!important; */background-size: 35px 35px!important;padding-top: 40px;padding-bottom:30px;
}

.featureTab_content {
    margin-top: 20px;
}

.featureTab_content ul {
    display: flex;
    border-bottom: 1px solid #555;
}

.featureTab_content ul li {
    display: inline-flex;
    width: 33.3%;
}

.featureTab_content ul li button.nav-link {
    width: 100%;
    padding: 30px 0;
    background: #555;
    border: #333 solid 1px;
    color: #e8ccab;
}

.featureTab_content ul li button.nav-link:hover {
    border: #333 solid 1px;
    background: #efefef;
    color: #333;
}

.featureTab_content ul li .nav-link.active {
    color: #333;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f6f6f6+13,ededed+28,d6d6d6+60,ffffff+100 */
    background: linear-gradient(135deg,  rgba(255,255,255,1) 0%,rgba(246,246,246,1) 13%,rgba(237,237,237,1) 28%,rgba(214,214,214,1) 60%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border: #a1a1a1 solid 1px;
}
.featureTab_content ul li .nav-link.active:hover {
    color: #333;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f6f6f6+13,ededed+28,d6d6d6+60,ffffff+100 */
    background: linear-gradient(135deg,  rgba(255,255,255,1) 0%,rgba(246,246,246,1) 13%,rgba(237,237,237,1) 28%,rgba(214,214,214,1) 60%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border: #a1a1a1 solid 1px;
}

.featureTab_content .tab-content {
    border: #555 solid 0px;
    border-top: 0px solid #fff;
    padding: 40px 0;
    
}

.featureTab_content .tab-pane img {
    max-width: 100%;
}

@media (max-width: 1199px) {}

@media (max-width: 992px) {
    .section.feature {
        padding: 40px 0;
    }
}

@media (max-width: 500px) {
    .featureTab_content ul li button.nav-link {
        font-size: 1.1rem;
    }
}

/*-- index_banner 段落開始 */
.new_banner_box {
    padding-top: 0;
}

.new_banner_box.owl-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.new_banner_box .owl-carousel .item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* 16:9比例 */
    max-height: 100vh;
    overflow: hidden;
}

.new_banner_box .carousel-image {
    object-fit: cover;
    width: 100%;
    height: 1080px;
    position: relative;
    top: 80px;
}

.new_banner_box .owl-carousel .item picture:before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    /* Permalink - use to edit and share this gradient. 固定鏈接 - 用於編輯和分享此漸變： https://colorzilla.com/gradient-editor/#000000+0,000000+45,000000+71,000000+100&0.65+0,0.35+41,0.26+74,0+100 */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 41%, rgba(0, 0, 0, 0.34) 45%, rgba(0, 0, 0, 0.27) 71%, rgba(0, 0, 0, 0.26) 74%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.wrap {
    padding-top: 0;
}

.new_banner_box_title {
    left: 50px;
    bottom: 140px;
    color: #fff;
    letter-spacing: 2px;
}

.new_banner_box_title h1 {
    font-size: 1.7rem;
    font-weight: 100;
}

.new_banner_box_title h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 100;
}

.header-top-share {
    right: 0;
    top: 14px;
    display: inline-block;
    width: 150px;
}

.share-icon.mail-type svg {
    max-width: 32px;
    margin-right: 5px;
    color: #333;
}

.share-icon.line-type svg {
    max-width: 22px;
}

/* recommend_type */
.section.recommend_type {
    padding: 140px 0 40px 0;
}

.section.recommend_type .container {
    max-width: 800px;
}

/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Source Sans Pro", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #1a1f24;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #485664;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #fc0;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #485664;
    /* The default color of the main navmenu links */
    --nav-hover-color: #6627b4;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #485664;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #6627b4;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


/*--------------------------------------------------------------
  # info Section
  --------------------------------------------------------------*/
section.info {
    padding: 70px 0 50px 0;
}

.info .info-content h2,
.info .info-content h3 {
    font-weight: 700;
}

.info ul {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
}

.info ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.info ul i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    line-height: 1.2;
    color: #cda45e;
}

.info .info-content ul h4 {
    font-size: 18px;
    font-weight: 600;
}

.info .info-content ul p {
    font-size: 15px;
}

.info .info-content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
section.services {
    padding: 50px 0 0px 0;
}

section.services .container {
    max-width: 450px;
}

.services .service-item {
    position: relative;
    padding-top: 20px;
}


.services .service-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-right: 50px;
    line-height: 0;
}

.services .service-item .icon i {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 56px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
}

.services .service-item .icon:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    background: color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 50px;
    z-index: 1;
    bottom: -15px;
    right: -15px;
    transition: 0.3s;
}

.services .service-item .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.services .service-item .title,
.services .service-item .title a {
    color: #111;
}

.services .about_contnet_ul {
    font-size: 1.2rem;
}

.services .about_contnet_ul li {
    margin-bottom: 10px;
}

.services .about_contnet_ul li:last-child {
    margin-bottom: 0;
}


.services .service-item .title a:hover {
    color: var(--accent-color);
}

.services .service-item .description {
    line-height: 24px;
    font-size: 14px;
}


/**
  * Template Name: Restaurantly
  * Template URL: https://bootstrapmade.com/restaurantly-restaurant-template/
  * Updated: Aug 07 2024 with Bootstrap v5.3.3
  * Author: BootstrapMade.com
  * License: https://bootstrapmade.com/license/
  */

/*--------------------------------------------------------------
  # Font & Color Variables
  # Help: https://bootstrapmade.com/color-system/
  --------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Playfair Display", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #0c0b09;
    /* Background color for the entire website, including individual sections */
    --default-color: rgba(255, 255, 255, 0.7);
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #ffffff;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #cda45e;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #29261f;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #0c0b09;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #ffffff;
    /* The default color of the main navmenu links */
    --nav-hover-color: #cda45e;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #29261f;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #29261f;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #ffffff;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #cda45e;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #29261f;
    --surface-color: #464135;
}

.dark-background {
    --background-color: #000000;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #1a1a1a;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
}


.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h1,
.hero h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.5;
}

.hero h1 span,
.hero h2 span {
    color: #cda45e;
}

.hero p,
.hero .sub_text {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 0 0;
    font-size: 24px;
}

.hero .cta-btn {
    color: var(--default-color);
    border: 2px solid #cda45e;
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    transition: 0.3s;
    flex-shrink: 0;
}

.hero .cta-btn:first-child {
    margin-right: 10px;
}

.hero .cta-btn:hover {
    background: color-mix(in srgb, #cda45e, transparent 20%);
}


@media (max-width: 480px) {
    .hero .cta-btn {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {

    .hero h1,
    .hero h2 {
        font-size: 2.2rem;
    }

    .hero p,
    .hero .sub_text {
        font-size: 1.3rem;
    }
    .hero {
        width: 100%;
        max-height: 100vh;
        position: relative;
        padding: 180px 0 80px 0;
    }
    .hero .cta-btn {
        padding: 8px 20px;
    }
}

@media (min-width: 992px) {
    .hero img {
        padding-top: 80px;
    }
}

/* 國際植體認證 */
.certification_content {
    background: #2d2a22;
}

/* 金框卡片 */
@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0turn;
    inherits: false;
}

.common_card_item {
    animation: 2s gradient-angle infinite linear;
    border: 2px solid transparent;
    background-image: linear-gradient(#584827, #2d230f),
        conic-gradient(from var(--gradient-angle),
            #584827 0%,
            #c7a03c 37%,
            #f9de90 30%,
            #c7a03c 33%,
            #584827 40%,
            #584827 50%,
            #c7a03c 77%,
            #f9de90 80%,
            #c7a03c 83%,
            #584827 90%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
}

@keyframes gradient-angle {
    to {
        --gradient-angle: 1turn;
    }
}

.common_card {}

.common_card_item {
    display: grid;
    max-width: 100%;
    height: 100%;
    padding: 20px;
    text-decoration: none;
    color: currentColor;
    border-radius: 20px;
    place-content: center;
    place-items: center;
    row-gap: 16px;
}

.common_card_item h2 {
    font-size: 1.4rem;
    font-weight: 700;
    font-style: normal;
    font-optical-sizing: auto;
    color: #fff;
}

.common_card_item h3 {
    color: #fff;
}

.common_card_item p {
    font-size: 1.1rem;
}

.member_btn {
    min-width: 200px;
    padding: 10px 0;
}

/*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
.about {
    background: #232527;
    position: relative;
    padding: 80px 0;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e8ccab;
    background: url("../images/index/about-bg.jpg") center center;
    background-size: cover;
}

.about:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 12%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.about .container {
    position: relative;
}

.about .content h3 {
    font-weight: 700;
    letter-spacing: 1px;
}

.about .content .fst-italic {
    color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 10px 0 0 0;
    display: flex;
}

.about .content ul i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    line-height: 1.8;
    font-size: 1.25rem;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .about-img {
    border: 2px solid #cda45e;
    transition: 0.3s;
}

.about .about-img:hover {
    transform: scale(1.03);
}

@media (max-width: 767px) {
    .about {
        padding: 40px 0;
    }
}

/*-- index_banner 段落開始 */
.index_banner {}

.index_banner .sec_item .swiper-slide img {
    max-width: 100%;
}

.index_banner .sec_item .item_detail {
    width: 100%;
}

.index_banner {
    height: 750px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    overflow: hidden;
    position: relative;
}

.index_banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    /* Permalink - use to edit and share this gradient. 固定鏈接 - 用於編輯和分享此漸變： https://colorzilla.com/gradient-editor/#b5bdc8+0,828c95+36,28343b+100;Grey+Black+3D */
    background: linear-gradient(135deg, rgba(181, 189, 200, 1) 0%, rgba(130, 140, 149, 1) 36%, rgba(40, 52, 59, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    transform: skewY(-55deg) scale(1.2, 1.4);
    /* 使遮色片傾斜 */
    transform-origin: top left;
}

.index_banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    /* Permalink - use to edit and share this gradient. 固定鏈接 - 用於編輯和分享此漸變： https://colorzilla.com/gradient-editor/#cedce7+0,596a72+100;Grey+3D+%231 */
    background: linear-gradient(135deg, rgba(206, 220, 231, 1) 0%, rgba(89, 106, 114, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    transform: skewY(-55deg) scale(1.2, 1.4);
    /* 使遮色片傾斜 */
    transform-origin: top right;
}

/* index_banner 段落結束 --*/
/* desc content */
.desc_contnet {
    padding: 80px 0 40px 0;
    /*     background: #fff; */
}

/* desc content */
/* rwd_introduction 段落開始 --*/
.rwd_introduction {
    background-color: rgba(229, 234, 236, 1);
    padding: 150px 0 250px 0;
    /* background-image: url(../images/index/rwd_bg.png); */
    background-repeat: no-repeat;
    background-position: right 100px;
    background-size: 45%;
}

.rwd_introduction .cont_title {
    font-size: 32px;
    color: #1b1b1b;
    margin-bottom: 20px;
}

.rwd_introduction .cont_txt {
    color: #52575c;
    font-size: 18px;
    margin-top: 10px;
    line-height: 27px;
    display: inline-block;
    font-weight: 100;
    letter-spacing: 1px;
}

.rwd_introduction .cont_txt span {
    color: #9a0000;
}

/* rwd_introduction 段落結束 --*/

/*-- pagespeed_subject 段落開始 */
.pagespeed_subject {
    padding: 90px 0 40px 0;
}

/* pagespeed_info 片段開始 */
.pagespeed_info {
    letter-spacing: 1px;
}

.pagespeed_info .cont_title {
    font-size: 25px;
    font-weight: bold;
}

.pagespeed_info .cont_title span {
    color: #9a0000;
}

.pagespeed_info .cont_en {
    margin-bottom: 15px;
    letter-spacing: 0px;
}

.pagespeed_info .cont_txt {
    margin-bottom: 15px;
}

/* pagespeed_info 片段結束 */
/* pagespeed_subject 段落結束 --*/

/*-- choice_subject 段落開始 */
.choice_subject {
    background-image: url(../images/index/choice_bg.jpg);
    background-repeat: repeat-x;
    padding: 90px 0 90px 0;
}

/* choice_title 片段開始 */
.choice_title {
    color: #e7e7e7;
    letter-spacing: 1px;
    margin-bottom: 100px;
}

.choice_title .cont_en {
    margin-bottom: 10px;
}

.choice_title .cont_title {
    font-size: 22px;
}

.choice_title .cont_line {
    width: 45px;
    height: 1px;
    background: #474851;
    margin: 25px auto 20px auto;
}

/* choice_title 片段結束 */
/* choice_info 片段開始 */
.choice_info {
    letter-spacing: 1px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 10px;
    padding: 180px 0 180px 0;
}

.choice_info .cont_en {
    margin-bottom: 10px;
}

.choice_info .cont_title {
    font-size: 22px;
    color: #1f1f1f;
}

.choice_info .cont_line {
    width: 45px;
    height: 1px;
    background: #474851;
    margin: 25px auto 20px auto;
}

.choice_info .cont_txt {
    color: #6c6c6c;
    margin-bottom: 10px;
}

.choice_info .cont_link {}

.choice_info .cont_link a {
    width: 180px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    background: #151620;
    display: inline-block;
}

.choice_info .cont_link a:hover {
    background: #161a4f;
}

/* choice_info 片段結束 */
/* maybe_title 片段開始 */
.maybe_content {
    margin-top: 100px;
    padding-top: 35px;
    border-top: 1px solid #ccc;
}

.maybe_content .col-md-4,
.maybe_content .col-md-8 {
    padding: 0;
}

/* maybe_title 片段結束 */
/* maybe_link 片段開始 */
.maybe_link {
    padding: 0 10px;
    text-align: right;
}

.maybe_link a {
    display: inline-block;
    letter-spacing: 0.5px;
    margin-left: 50px;
    color: #1f1f1f;
}

.maybe_link a:hover {
    -webkit-transform: scale(0.92);
    -o-transform: scale(0.92);
    transform: scale(0.92);
    transform-origin: center center;
}

.maybe_link a img {
    display: inline-block;
    margin-right: 20px;
}

.maybe_link a span {
    display: inline-block;
    line-height: 24px;
    vertical-align: middle;
    text-align: left;
}

.maybe_link a span abbr {
    color: #6c6c6c;
}

/* maybe_link 片段結束 */
/* choice_subject 段落結束 --*/

/* cinic_content */
.cinic_content {
    padding: 80px 0 0 0;
    z-index: 5;
}

.cinic_content img {
    max-width: 100%;
}

.cinic_content_bg {
    padding: 0 0 0 0;
}

.cinic_content_list {
    padding-left: 100px;
    padding-right: 100px;
    width: 100%;
}

.team_content .cinic_content_list {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 0;
}

.team_content .cinic_content_list.only_type {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 0;
}

.cinic_content_list .cont_title {
    font-size: 50px;
    line-height: 55px;
    letter-spacing: 2px;
    margin-top: 0;
}

.team_content .cinic_content_list .cont_title {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 2px;
    margin-top: 0;
    color: #da8a20;
}

.cinic_content_list .cont_title .cont_title_first {
    font-size: 75px;
}

.cinic_content_list .cont_title_ch {
    font-size: 22px;
    letter-spacing: 2px;
    margin-top: 45px;
}

.cinic_content_list .cont_txt {
    font-size: 17px;
    max-width: 100%;
    letter-spacing: 0.5px;
    margin-top: 25px;
}

.cinic_content_list .cont_txt u {
    font-weight: bold;
    color: #000000;
}

/* 蝴蝶 */
.butterfly.one_type {
    position: absolute;
    width: 180px;
    left: 0;
    right: -900px;
    margin: auto;
    top: 155px;
    transform: rotate(0deg);
    z-index: 11
}

.butterfly.second_type {
    position: absolute;
    width: 120px;
    margin: auto;
    left: -250px;
    right: 0;
    top: -70px;
    background-image: url(../images/index/new_butterfly_body.webp);
    background-position: right top;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.butterfly.second_type.info_content_type {
    width: 130px;
    margin: auto;
    left: 50px;
    right: 0;
    top: -90px;
    transform: rotate(-10deg);
}

/* sec3_content */
.sec3_content .container {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

/* banner owl 輪播 */
.owl-carousel.js-banner-carousel .item .item_bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 800px;
    /* 根據你的需求調整高度 */
    position: absolute;
    /* 絕對定位以疊加 */
    top: 0;
    left: 0;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    /* 設置過渡效果 */
    opacity: 0;
}

.owl-carousel.js-banner-carousel .active .item .item_bg {
    opacity: 1;
    transform: translate(0, 0);
}

.owl-carousel.js-banner-carousel .owl-stage-outer {
    position: relative;
    height: 800px;
    /* 根據你的需求調整高度 */
    overflow: hidden;
    /* 隱藏溢出的部分 */
}

.owl-carousel.js-banner-carousel .owl-stage {
    position: relative;
    height: 100%;
}

.owl-carousel .owl-item {
    position: relative;
    height: 100%;
}

/* banner content */
.banner_content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    width: 400px;
    /* 根據需要調整大小 */
    height: 300px;
    /* 根據需要調整大小 */
}

.banner_content .cont-title {
    font-size: 25px;
    letter-spacing: 2px;
}

.banner_content .cont-text {
    font-size: 18px;
    color: #999;
    letter-spacing: 1px;
}

.animated-border-quote {
    display: inline-block;
    margin: auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.animated-border-quote blockquote {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border: solid 1px #f9a85f;
    display: inline-block;
    margin: 0;
    padding: 2.5em 1em 1em 1em;
    position: relative;
}

.animated-border-quote blockquote:before {
    animation: clockwise 30s infinite linear;
    background-color: #fff;
    bottom: -10%;
    content: "";
    left: 0;
    opacity: 0.8;
    position: absolute;
    right: 0;
    top: -10%;
}

.animated-border-quote blockquote:after {
    animation: counter 30s infinite linear;
    background-color: #fff;
    bottom: -10%;
    content: "";
    left: 0;
    opacity: 0.6;
    position: absolute;
    right: 0;
    top: -10%;
}

.animated-border-quote blockquote cite {
    display: block;
    text-align: right;
}

.animated-border-quote blockquote cite:before {
    content: "- ";
}

.animated-border-quote blockquote>* {
    position: relative;
    z-index: 1;
}

@keyframes clockwise {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes counter {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes flipIn {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotateY(-10deg);
        opacity: 1;
    }

    70% {
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        transform: perspective(400px) rotateY(0deg);
    }
}

.flipIn {
    animation-name: flipIn;
}

/* js-marquee-carousel */
.owl-carousel.js-marquee-carousel {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.js-marquee-carousel .owl-stage {
    display: flex;
    align-items: center;
    animation: marquee 110s linear infinite;
}

.owl-carousel.js-marquee-carousel .owl-item {
    background: #4a90e2;
    padding: 0px;
    color: white;
    border-radius: 0px;
    border: 0px solid #fff;
    text-align: center;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* main_marquee_info */
.main_marquee {
    position: relative;
    padding-top: 110px;
    padding-bottom: 60px;
    padding-right: 0;
    padding-left: 0;
}

.main_marquee_info .main_marquee_info_border {
    width: 50%;
    height: 100%;
    position: absolute;
    background: #723e00;
    top: 0;
    right: 0;
}

.main_marquee_info .main_marquee_info_title {
    position: absolute;
    top: 15px;
    letter-spacing: 3px;
    left: 40px;
    z-index: 4;
    font-size: 70px;
    line-height: 90px;
    color: #fff;
    color: transparent;
    /* 文字顏色設定透明 */
    background-image: linear-gradient(0deg, #888, #fff 35%);
    /* 設定漸層角度及顏色 */
    -webkit-background-clip: text;
    /* 背景裁剪成文字的前景色 */
    background-clip: text;
}

.main_marquee_info .main_marquee_info_center {
    width: 220px;
    height: 100%;
    position: absolute;
    background: #723e00;
    top: 0;
    right: 0;
    left: 220px;
    margin: auto;
    z-index: 2;
}

.main_marquee_info .main_marquee_info_center:before {
    content: "";
    width: 95%;
    height: 99%;
    left: 0;
    right: 0;
    top: 4px;
    margin: auto;
    position: absolute;
    border: 1px solid #bfb6ab;
}

.main_marquee_info .main_marquee_info_center .main_marquee_info_center_img {
    position: absolute;
    left: 0px;
    right: 0;
    top: 300px;
    margin: auto;
}

/* secondary_content */
.secondary_content {
    padding: 50px 0 50px 0;
    background-image: url('../images/common/bg_wave_top.png');
    background-position: center top;
    /* 圖標在中間，背景圖也居中 */
    background-size: 100% auto;
    /* 圖標大小50px，背景圖覆蓋整個區域 */
    background-repeat: no-repeat;
    /* 圖標和背景圖都不重複 */
    /* Permalink - use to edit and share this gradient. 固定鏈接 - 用於編輯和分享此漸變： https://colorzilla.com/gradient-editor/#feffff+0,ffefef+51,e2ecff+100&1+0,0.77+41,1+100 */
    background: linear-gradient(135deg, rgba(254, 255, 255, 1) 0%, rgba(255, 242, 242, 0.77) 41%, rgba(255, 239, 239, 0.81) 51%, rgba(226, 236, 255, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.shadow-effect {
    background: rgba(255, 255, 255, 0);
    padding: 0;
    border-radius: 4px;
    text-align: center;
    border: 0px solid #ddd;
    min-height: 200px;
    /*     box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02); */

    /*     background: url('../images/index/icon_dots.png') center center / auto repeat; */
}

/* .shadow-effect .position-relative:before {
      content:"";
      display: inline-block;
      width: 100%;
      height: 100%;
      position: absolute;
      right: -5px;
      top: 5px;
      border-radius: 5px;
      z-index: -1;
      background: #ccc;
  } */
.shadow-effect .position-relative {
    height: 200px;
}

.shadow-effect img {
    border-radius: 4px;
    max-width: 250px;
    margin: auto;
    padding-top: 35px;
}


#customers-testimonials .shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
}

.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: #3190E7;
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}

#customers-testimonials .item {
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 0;
    opacity: 0.5;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .item:hover {
    opacity: 1;
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}

#customers-testimonials .owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 90px;
    margin: 0 auto 17px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: #a25647;
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-testimonials.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -5px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: #976859;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
    border-radius: 50px;
}

#customers-testimonials .owl-item>div {
    margin: 0 0;
    /*   transition: margin 0.4s ease; */
}

#customers-testimonials .owl-item.center>div {
    cursor: auto;
    margin: 0;
}

/* .content-item {
    display: none;
  }
  .content-item.active {
    display: block;
  } */
.content-item {
    display: none;
    opacity: 0.1;
    transition: opacity 0.5s ease-in-out;
}

.content-item.active {
    display: block;
    opacity: 1;
}

.content-container .content-item {}

.content-container .content-item .cont-en {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 1px;
}

.content-container .content-item .cont-title {
    font-size: 30px;
    letter-spacing: 4px;
}

.content-container .content-item .cont-text {
    max-width: 550px;
    height: 100px;
    color: #333;
    font-size: 1.2rem;
}

/* arrow */
.custom-nav {
    position: relative;
    z-index: 5;
}

.custom-nav .custom-prev {
    left: 0;
    top: -180px;
    background-color: rgba(55, 55, 55, 0);
    padding: 10px 10px 10px 10px;
}

.custom-nav .custom-next {
    right: 0;
    top: -180px;
    background-color: rgba(55, 55, 55, 0);
    padding: 10px 7px 10px 13px;
}

.custom-nav .custom-prev polyline,
.custom-nav .custom-next polyline {
    stroke-width: 2;
}

.secondary_content_list {}

.secondary_content_list .cont_en {
    font-size: 32px;
    color: #bd974e;
}

.secondary_content_list .cont_title {
    font-size: 36px;
    letter-spacing: 4px;
}

/* bhairer_content */
.bhairer_content {
    padding: 80px 0 150px 0;
    background: #fff;
}

/* touch */
.touch-indicator {
    position: absolute;
    width: 80px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 50px;
    z-index: 11;
    animation-name: viwe_watch;
    -webkit-animation-name: viwe_watch;
    animation-duration: 1.4s;
    -webkit-animation-duration: 1.4s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes viwe_watch {
    0% {
        transform: scale(0.90);
        opacity: 1;
    }

    50% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(0.90);
        opacity: 1;
    }
}

@-webkit-keyframes viwe_watch {
    0% {
        transform: scale(0.90);
        opacity: 1;
    }

    50% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(0.90);
        opacity: 1;
    }
}

.customers-testimonials_btn {
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(151, 104, 89);
    color: #fff;
    padding: 12px 0 12px 0;
    font-size: 17px;
    border-radius: 0 0 4px 4px;
    letter-spacing: 4px;
    max-width: 100%;
    font-weight: 100;
}

.customers-testimonials_btn:hover {
    color: #ffedd6;
}

.customers-testimonials_btn:before {
    content: "";
    width: 95%;
    height: 82%;
    left: 0;
    right: 0;
    top: 4px;
    margin: auto;
    position: absolute;
    border: 1px dotted #fff;
}

#customers-testimonials .owl-item .customers-testimonials_btn {
    display: none;
}

#customers-testimonials .owl-item.active.center .customers-testimonials_btn {
    display: block;
}

.team_content .cinic_content_list.only_type ul {
    padding-left: 20px;
}

.team_content .cinic_content_list.only_type li {
    list-style: disc;
}

.team_content .cinic_content_list.only_type img {
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(245, 246, 246, 1) 0%, rgba(219, 220, 226, 1) 55%, rgba(221, 223, 227, 1) 90%, rgba(221, 223, 227, 1) 90%, rgba(245, 246, 246, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

/* cinic_content */
.cinic_content img {
    max-width: 100%;
}

.cinic_content_list .cont_title .cont_title_first {
    font-size: 75px;
}

.cinic_content_list .cont_title_ch {
    font-size: 36px;
    letter-spacing: 2px;
    margin-top: 45px;
}

.cinic_content_list .cont_txt {
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-top: 25px;
}

.info_submit,
.info_submit:hover {
    width: 200px;
    min-width: 200px;
    color: #bab0af;
    background: none;
    border: 2px solid var(--accent-color);
    padding: 0 0;
    transition: 0.4s;
    border-radius: 50px;
}

.info_submit:hover {
    color: #fff;
    border: 2px solid #cda45e;
    background: var(--accent-color);
}

/* brand輪播 */
.tag-list img {
    border-radius: 10px;
    border: 1px solid #ccc;
    background: linear-gradient(135deg, rgba(200, 200, 200, 1) 0%, rgba(234, 234, 234, 0.47) 53%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 2px 2px 5px 0.5px rgba(80, 80, 80, 0.1);
    padding: 15px 10px;
}

/* sec3_content */
.sec3_content {
    padding: 0 0;
}

.sec3_content .c_theme_title {
    position: absolute;
    width: 100%;
    height: 140px;
    top: -15%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: right;
}

/* sec3_content end */
.desc_line {
    opacity: 0.5;
    right: 15px;
    ;
    top: 0;
}

/* about us */
.about_contnet {
    padding: 60px 0 80px 0;
    border-top: 0px solid #be9c6a;
    background-image: url('../images/common/bg_wave_top.png');
    background-position: center 50px;
    /* 圖標在中間，背景圖也居中 */
    background-size: 100% 300px;
    /* 圖標大小50px，背景圖覆蓋整個區域 */
    background-repeat: no-repeat;
    /* 圖標和背景圖都不重複 */
}

.about_contnet .container {
    max-width: 1050px;
}

.about_contnet_title {
    top: 0px;
    height: 150px;
    padding-top: 90px;
    padding-left: 0px;
    background-image: url(../images/index/index_icon_about.svg);
    background-repeat: no-repeat;
    background-size: 120px auto;
}

.about_contnet_title.theme_service {
    background-image: url(../images/index/index_icon_service.svg);
    background-position: center top;
    padding-top: 95px;
}

.about_contnet_title.theme_contact {
    background-image: url(../images/index/index_icon_contact.svg);
    background-position: center top;
    padding-top: 95px;
}

.about_contnet_title.theme_desc {
    background-image: url(../images/index/index_icon_desc.svg);
    background-position: center top;
    padding-top: 95px;
    height: 170px;
}

.about_contnet_title.theme_location {
    background-image: url(../images/index/index_icon_location.svg);
    background-position: center top;
    padding-top: 95px;
    height: 170px;
}

.about_contnet_title.theme_pp {
    background-image: url(../images/privacy_policy/icon_pp.svg);
    background-position: center top;
    padding-top: 95px;
    height: 170px;
}

.about_contnet_title h2 {
    color: #313131;
    font-size: 2rem;
    margin-bottom: 5px;
}

.about_contnet_title h3 {
    color: #8d6f4a;
}

/* about us end */
/* form */
.form_content {
    padding: 40px 0 20px 0;
}

/* info_content */
.info_content {
    padding: 140px 0 0px 0;
}

/* .info_content:before{
      content: "";
      display: inline-block;
      position: absolute;
      left: 0;
      right: 0;
      margin: 0;
      width: 100%;
      height: 100%;
      background-repeat: no-repeat;
      background-image: url(../images/common/info_bg.svg);
      background-position: center center;
      background-size: 600px auto;
      opacity: 0.08;
  } */
.about_contnet_h2 {
    min-width: 140px;
}

.about_contnet_list_title {
    letter-spacing: 5px;
    font-size: 2.1rem;
    font-weight: 100;
}

.about_contnet_list_title span {
    display: block;
    line-height: 1.4;
}

.about_contnet_list_title_en {
    position: relative;
    top: 10px;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: start;
    writing-mode: vertical-rl;
    /* 將文字模式改為垂直書寫 */
    text-orientation: mixed;
    /* 讓文字保持正常可讀性 */
    margin-left: 1rem;
    /* 增加與中文文字之間的距離 */
}

.about_contnet_text {
    margin-top: 40px;
    padding-left: 20px;
}

.about_contnet_list.theme_01 {}

.about_contnet_list.theme_02 {
    padding-top: 100px;
}

.about_contnet_list.theme_03 {
    padding-top: 120px;
}

.service_title {
    background-image: url(../images/index/about_item_desc01_rose.webp);
    background-repeat: no-repeat;
    background-position: right 35% top 15%;
    background-size: 100px auto;
}

/* 波浪效果 */
.index-waves {
    top: 480px;
    left: 0;
    right: 0;
    margin: auto;
    height: 300px !important;
    max-width: 1000px;
}

/* suitable_content */
.suitable_content {
    padding: 80px 0;
}

.suitable_content .container {
    max-width: 1050px;
}

.suitable_content .card {
    padding: 30px 15px;
}

.info_icon {
    position: absolute;
    right: 100px;
    top: 0;
    transform: scale(0.7);
}

.box-border_text1 {
    left: 10px;
    top: 30px;
}

.box-border_text2 {
    right: 10px;
    bottom: 30px;
}

.box-border_text1_subtext {
    top: 8px;
    opacity: 0.6;
}

.box-border_sub h1,
.box-border_sub h2 {
    font-size: 0.7rem;
    position: relative;
    top: 10px;
    line-height: 1.6;
}

.about_contnet_list_title_number {
    top: 5px;
    margin-right: 20px;
}

.about_contnet_ul {
    padding-left: 20px;
}

.about_contnet_ul li {
    position: relative;
}

.about_contnet_ul li:before {
    position: absolute;
    left: -17px;
    top: 11px;
    content: "";
    display: inline-block;
    width: 6px;
    height: 10px;
    background: #0077bc;
}

.accident_list p,
.accident_list:hover p {
    color: #4a4a4a;
}


/*--------------------------------------------------------------
  # Gallery Section
  --------------------------------------------------------------*/
.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid var(--background-color);
    border-bottom: 3px solid var(--background-color);
}

section.gallery {
    position: relative;
    z-index: 5;
    padding: 50px 0 20px 0;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
  # Recent Posts Section
  --------------------------------------------------------------*/
.recent-posts {
    margin: 100px 0 100px 0;
}

.recent-posts article {
    background: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.recent-posts .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.recent-posts .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 10px;
}

.recent-posts .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.recent-posts .title,
.recent-posts .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.recent-posts .title a:hover {
    color: #6627b4;
}

.recent-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.recent-posts .post-author {
    margin-bottom: 5px;
}

.recent-posts .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 0;
}

/* 響應式裝置========== */
@media only screen and (min-width : 992px) {
    .about_contnet:before {
        content: "";
        display: inline-block;
        width: 100%;
        height: 20px;
        /*         background-image: url(../images/common/border_line.png); */
        background-repeat: no-repeat;
        background-position: center top;
        background-size: auto 10px;
        position: absolute;
        top: -11px;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 10;
    }

    .index_banner {
        padding-top: 80px;
    }

    .index_banner .sec_item .swiper-slide img {
        max-width: 100%;
    }

    .choice_subject .container {
        width: 90%;
    }

    .pagespeed_info .cont_image {
        position: relative;
        left: -32px;
    }

    .owl-carousel.js-marquee-carousel .owl-item img {
        max-height: 750px;
    }

    .cinic_content_bg {
        max-width: 600px;
        margin: auto;
    }

    .customers-testimonials-content {
        max-width: 900px;
        margin-top: -30px;
    }

    #customers-testimonials {
        max-width: 1500px;
        margin: auto;
    }

    #customers-testimonials.owl-carousel .owl-dots {
        bottom: -255px;
    }

    .secondary_content.third-type {
        padding: 60px 0 50px 0;
    }

    .secondary_content.third-type .container {
        max-width: 900px;
    }

    .desc_contnet {
        padding: 40px 0 60px 0;
    }

    .about_contnet_list.theme_02 {
        padding-top: 50px;
        background-image: url(../images/index/about_item_desc03_rose.webp);
        background-repeat: no-repeat;
        background-position: right 30% top 5%;
        background-size: 70px auto;
    }

    .about_contnet_list.theme_02 .scroll-reveal {
        left: 90px;
        top: -60px;
        z-index: 0;
        position: absolute;
    }

    .about_contnet_list.theme_03 .scroll-reveal {
        left: 60px;
        top: -200px;
        z-index: 0;
        position: absolute;
    }

    .about_contnet_list.theme_03 {
        padding-top: 30px;
    }

    .about_contnet_list.theme_04 {
        padding-top: 30px;
    }

    .about_contnet_list.theme_05 {
        padding-top: 70px;
    }

    .about_contnet_list.theme_06 {
        padding-top: 70px;
    }

    .about_contnet_list.theme_03 {
        background-image: url(../images/index/about_item_desc02_rose.webp);
        background-repeat: no-repeat;
        background-position: left 35% top 5%;
        background-size: 100px auto;
    }

    .about_contnet_list.theme_05 {
        background-image: url(../images/index/about_item_desc01_rose.webp);
        background-repeat: no-repeat;
        background-position: right 45% top 5%;
        background-size: 80px auto;
    }

    .about_contnet_list.theme_04,
    .about_contnet_list.theme_05,
    .about_contnet_list.theme_06 {}
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .about_contnet_title {
        top: 0px;
    }

    .choice_subject {
        background-image: url(../images/index/choice_bg.jpg);
        background-repeat: repeat-x;
        background-size: 100% 300px;
        padding: 90px 0 30px 0;
    }

    .choice_info .cont_en img {
        width: 90%;
    }

    .choice_info {
        margin: 0 10px;
        padding: 80px 0 80px 0;
        background-size: auto auto;
        margin-bottom: 50px;
    }

    .maybe_content {
        margin-top: 30px;
        padding-top: 35px;
    }

    .maybe_title {
        margin-bottom: 30px;
    }

    .maybe_link a {
        width: 49%;
        margin-bottom: 30px;
        margin-left: 0;
    }

    .maybe_link a:hover {
        -webkit-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .maybe_content .col-md-4,
    .maybe_content .col-md-8 {
        width: 100%;
    }

    .maybe_link {
        padding: 0 0;
        text-align: left;
    }

    /* rwd_introduction 段落開始 --*/
    .rwd_introduction {
        padding: 50px 0 200px 0;
        background-position: right bottom;
        background-size: 48%;
    }

    /* rwd_introduction 段落結束 --*/
}

@media only screen and (max-width : 992px) {
    .main_marquee {
        padding-top: 110px;
    }

    .header-top-share {
        width: 80px;
    }

    .new_banner_box_title {
        left: 20px;
        bottom: 140px;
    }

    .marquee_content,
    .cinic_content {
        /*         overflow-x: hidden; */
        max-width: 100%;
        position: relative;
        z-index: 3;
    }

    .index_banner {
        height: 100%;
        padding-top: 70px;
    }

    .maybe_content {
        margin-top: 0px;
        padding-top: 35px;
        border-top: 0px solid #ccc;
    }

    .maybe_title {
        margin-bottom: 30px;
    }

    .maybe_link {
        padding: 0 0;
        text-align: left;
    }

    .maybe_link a {
        margin-left: 0;
        margin-bottom: 30px;
    }

    /*-- pagespeed_subject 段落開始 */
    .pagespeed_subject {
        padding: 50px 0 50px 0;
    }

    /* pagespeed_info 片段開始 */
    .pagespeed_info .cont_txt {
        text-align: left;
    }

    .pagespeed_info .cont_txt br {
        display: none;
    }

    .pagespeed_info .cont_image img {
        width: 100%;
    }

    /* pagespeed_info 片段結束 */
    /* pagespeed_subject 段落結束 --*/
    .cinic_content_bg {
        padding: 0 0 0 0;
    }

    .cinic_content_bg img {
        width: 100%;
    }

    .cinic_content_list {
        padding: 0 15px;
    }

    .cinic_content_list .cont_title {
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 2px;
        margin: 30px 0 20px 0;
        text-align: left;
    }

    .cinic_content_list .cont_title .cont_title_first {
        font-size: 50px;
    }

    .cinic_content_list .cont_title_ch {
        letter-spacing: 1px;
        margin-top: 20px;
    }

    .cinic_content_list .cont_txt {
        max-width: 100%;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    /*   main_marquee_info   */
    .main_marquee_info .main_marquee_info_border {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
    }

    .main_marquee_info .main_marquee_info_title {
        top: 15px;
        left: 15px;
        font-size: 35px;
        line-height: 40px;
    }

    .main_marquee {
        padding-top: 70px;
        padding-bottom: 50px;
    }

    .main_marquee_info .main_marquee_info_center:before {
        height: 98%;
        opacity: 0.5;
    }

    .main_marquee_info .main_marquee_info_center {
        width: 100px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 30px;
        left: auto;
        margin: auto;
        z-index: 2;
    }

    .main_marquee_info .main_marquee_info_center img {
        width: 70px;
    }

    .main_marquee_info .main_marquee_info_center .main_marquee_info_center_img {
        position: absolute;
        left: 0px;
        right: 0;
        top: 140px;
        margin: auto;
    }

    #customers-testimonials.owl-carousel .owl-dots {
        margin-top: 0;
        bottom: -300px;
    }

    .custom-nav .custom-prev {
        left: 20px;
        top: -220px;
        transform: scale(0.7);
        transform-origin: top left;
    }

    .custom-nav .custom-next {
        right: 20px;
        top: -220px;
        transform: scale(0.7);
        transform-origin: top right;
    }

    /* 蝴蝶 */
    .butterfly.second_type {
        position: absolute;
        width: 120px;
        margin: auto;
        left: 220px;
        right: auto;
        top: -90px;
    }

    .touch-indicator {
        position: absolute;
        width: 80px;
        left: -200px;
        right: 0;
        margin: auto;
        bottom: 0px;
        cursor: pointer;
        text-decoration: none !important;
        -moz-transition: all 0.1s ease-in;
        -o-transition: all 0.1s ease-in;
        -webkit-transition: all 0.1s ease-in;
        transition: all 0.1s ease-in;
    }

    .touch-indicator.focus_before {
        left: 0;
        right: -50px;
        bottom: 0px;
    }

    .touch-indicator.focus_after {
        left: -200px;
        right: 0;
    }

    .team_content .cinic_content_list.only_type img {
        max-width: 380px;
        width: 100%;
        margin: auto;
        border-radius: 8px;
    }

    .tag-list img {
        width: 100%;
        height: auto;
        /*         height: 130px; */
        max-height: 100%;
    }

    .about_contnet_title.theme_service {
        height: 150px;
    }

    .service_title {
        background-position: right 10% top 5%;
    }

    section.info {
        padding: 40px 0 40px 0;
    }

    .about .about-img {
        min-height: auto;
    }

    .about .about-img img {
        position: relative;
    }

    /* recommend_type */
    .section.recommend_type {
        padding: 100px 0 0px 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .choice_info {
        background-size: auto;
        margin: 0 0;
        padding: 130px 0 130px 0;
        margin-bottom: 50px;
    }

    .choice_subject {
        padding: 90px 0 80px 0;
    }

    .maybe_link a {
        width: 49%;
        margin-bottom: 30px;
    }

    /* rwd_introduction 段落開始 --*/
    .rwd_introduction {
        padding: 50px 0 420px 0;
        background-position: right bottom;
        background-size: 75%;
    }

    /* rwd_introduction 段落結束 --*/
    .butterfly.second_type {
        left: 250px;
        top: -60px;
    }

    /* sec3_content */
    .sec3_content .c_theme_title {
        top: -15%;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: left;
    }

    .sec3_content .c_theme_title .c_theme_title_text2 {}

    .butterfly.second_type {
        width: 150px;
        margin: auto;
        left: 0;
        right: 0;
        top: -120px;
    }

    /* sec3_content end */
    .about_contnet_title {
        height: 200px;
    }

    .about_contnet_list.theme_02 {
        padding-top: 130px;
    }

    .about_contnet_list.theme_03 {
        padding-top: 60px;
    }
}

@media only screen and (max-width : 1200px) {
    .bhairer_content {
        padding: 50px 0 100px 0;
    }

    .butterfly.one_type {
        width: 180px;
        left: 0;
        right: -200px;
        margin: auto;
        top: -95px;
        transform: rotate(0deg);
    }
}

@media only screen and (max-width : 767px) {
    .secondary_content_list .cont_title {
        font-size: 2rem;
    }

    .secondary_content_list .cont_en {
        font-size: 1.8rem;
    }

    .owl-carousel.js-marquee-carousel .owl-item img {
        width: 150%;
    }

    .owl-carousel.js-marquee-carousel .owl-item {
        width: 150%;
    }

    .owl-carousel.js-banner-carousel .owl-stage-outer {
        height: 450px;
        /* 根據你的需求調整高度 */
    }

    .owl-carousel.js-banner-carousel .item .item_bg {
        height: 450px;
        /* 根據你的需求調整高度 */
        background-position: center bottom;
        background-size: 100% 100%;
    }

    .choice_subject {
        background-image: url(../images/index/choice_bg.jpg);
        background-repeat: repeat-x;
        background-size: 100% 300px;
        padding: 90px 0 30px 0;
    }

    .choice_info .cont_en img {
        width: 90%;
    }

    .choice_info {
        margin: 0 10px;
        padding: 80px 0 80px 0;
        background-size: auto auto;
        margin-bottom: 50px;
    }

    .maybe_title img {
        width: 100%;
    }

    /* rwd_introduction 段落開始 --*/
    .rwd_introduction {
        padding: 50px 0 300px 0;
        background-position: right bottom;
        background-size: 100%;
    }

    /* rwd_introduction 段落結束 --*/
    .banner_content {
        width: 80%;
        /* 根據需要調整大小 */
        max-width: 330px;
        height: 250px;
        /* 根據需要調整大小 */
    }

    .animated-border-quote blockquote {
        padding: 1.2em 1em 1em 1em;
        position: relative;
    }

    .banner_content .cont-title {
        font-size: 22px;
    }

    .banner_content .cont-text {
        font-size: 17px;
        color: #9c9c9c;
    }

    .banner_content {
        top: 0;
        bottom: -80px;
        transform: scale(0.7);
        transform-origin: center center;
    }

    .animated-border-quote blockquote {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .animated-border-quote blockquote:before {
        background-color: rgba(255, 255, 255, 0.7);
    }

    .animated-border-quote blockquote:after {
        background-color: rgba(255, 255, 255, 0.7);
    }

    .content-container .content-item .cont-text {
        max-width: 90%;
        height: 120px;
        text-align: start;
    }

    .content-container .content-item .cont-en {
        font-size: 24px;
        line-height: 30px;
    }

    .content-container .content-item .cont-title {
        font-size: 26px;
        letter-spacing: 4px;
    }

    .bhairer_content {
        padding: 50px 0 50px 0;
        background: #fff;
    }

    main {
        position: relative;
        overflow: hidden;
        max-width: 100%;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .team_content .cinic_content_list {
        padding: 0 15px;
    }

    .team_content .cinic_content_list.only_type {
        padding: 0 15px;
    }

    .desc_contnet .cont_title_ch {
        font-size: 2rem;
    }

    /* sec3_content */
    .sec3_content .c_theme_title {
        top: auto;
        bottom: 20%;
        left: 0;
        right: 0;
        text-align: center;
    }

    .sec3_content .c_theme_title .c_theme_title_text1 img {
        max-width: 90%;
    }

    .butterfly.second_type {
        width: 110px;
        margin: auto;
        left: auto;
        right: 15px;
        top: -90px;
    }

    /* sec3_content end */
    /* about us */
    .about_contnet {
        padding: 50px 0 50px 0;
        background-position: center 0;
        /* 圖標在中間，背景圖也居中 */
        background-size: 100% 200px;
        /* 圖標大小50px，背景圖覆蓋整個區域 */
    }

    .about_contnet_title {
        top: 0px;
        height: 190px;
        padding-top: 90px;
        padding-left: 10px;
        background-image: url(../images/index/index_icon_about.svg);
        background-repeat: no-repeat;
        background-size: 120px auto;
    }

    /* about us end */
    .desc_contnet {
        padding: 40px 0 20px 0;
    }

    .info_content img {
        max-width: 250px;
    }

    .about_contnet_text {
        margin-top: 0;
        padding-left: 0px;
    }

    .about_contnet_img {
        max-width: 350px;
        margin: auto;
    }

    .about_contnet_list.theme_01,
    .about_contnet_list.theme_02 {
        padding-top: 30px;
    }

    .about_contnet_list.theme_03 {
        padding-top: 30px;
    }

    /*     .about_contnet_list.theme_01::before,
      .about_contnet_list.theme_02::before,
      .about_contnet_list.theme_03::before {
          content: '';
          display: block;
          width: 1px;
          height: 130px;
          background: #987d74;
          position: absolute;
          top: 0px;
          right: 0;
          margin: auto;
          left: 0;
      }
      .about_contnet_list.theme_01::after,
     .about_contnet_list.theme_02::after,
     .about_contnet_list.theme_03::after {
        content: '';
        display: block;
        position: absolute;
        border: 1px solid #987d74;
        width: 10px;
        height: 10px;
        border-radius: 50px;
          top: 140px;
          right: 0;
          margin: auto;
          left: 0;
      } */
    .index-waves {
        top: 170px;
    }

    .butterfly.second_type.info_content_type {
        width: 110px;
        left: 50px;
        right: 0;
        top: -90px;
    }
}

@media screen and (min-width: 600px) and (max-width: 1200px) {
    .owl-carousel.js-banner-carousel .owl-stage-outer {
        height: 500px;
        /* 根據你的需求調整高度 */
    }

    .owl-carousel.js-banner-carousel .item .item_bg {
        height: 500px;
        /* 根據你的需求調整高度 */
        background-position: center center;
        background-size: cover;
    }
}

@media only screen and (max-width : 330px) {
    .banner_content .cont-title {
        font-size: 20px;
    }

    .banner_content .cont-text {
        font-size: 16px;
        color: #9c9c9c;
    }
}

/* ==========響應式裝置 */

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.new_booking {}

.new_booking .display-6 {
    line-height: 1.2;
}

.new_booking .display-6 span {
    position: relative;
    color: var(--accent-color);
}

.new_booking .display-6 span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.new_booking .lead {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 1.125rem;
}

.new_booking .stat-box {
    display: flex;
    flex-direction: column;
    background-color: var(--surface-color);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 110px;
    border-bottom: 3px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.new_booking .stat-box:hover {
    transform: translateY(-5px);
}

.new_booking .stat-box .stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--heading-color);
}

.new_booking .stat-box .stat-label {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.new_booking .signature-block {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding-top: 1.5rem;
}

.new_booking .signature-block img {
    transition: transform 0.3s ease;
}

.new_booking .signature-block img:hover {
    transform: scale(1.05);
}

.new_booking .image-stack {
    position: relative;
    height: 450px;
}

@media (max-width: 992px) {
    .new_booking .image-stack {
        height: 400px;
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .new_booking .image-stack {
        height: 350px;
    }
}

.new_booking .image-stack .image-stack-item {
    position: absolute;
    width: 80%;
    height: auto;
    transition: transform 0.5s ease;
}

.new_booking .image-stack .image-stack-item:hover {
    transform: translateY(-10px);
}

.new_booking .image-stack .image-stack-item img {
    object-fit: cover;
    width: 100%;
}

.new_booking .image-stack .image-stack-item-top {
    z-index: 1;
    top: 0;
    left: 0;
}

.new_booking .image-stack .image-stack-item-bottom {
    z-index: 2;
    bottom: 0;
    right: 0;
}

.new_booking .mission-vision-row {
    margin-top: 0rem;
}

.new_booking .mission-vision-row .value-card {
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.new_booking .mission-vision-row .value-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    transition: height 0.5s ease;
    z-index: -1;
}

.new_booking .mission-vision-row .value-card:hover {
    transform: translateY(-10px);
}

.new_booking .mission-vision-row .value-card:hover:before {
    height: 100%;
}

.new_booking .mission-vision-row .value-card:hover .card-icon {
    background-color: var(--accent-color);
}

.new_booking .mission-vision-row .value-card:hover .card-icon i {
    color: var(--contrast-color);
}

.new_booking .mission-vision-row .value-card .card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.new_booking .mission-vision-row .value-card .card-icon i {
    font-size: 1.75rem;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.new_booking .mission-vision-row .value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
}

.new_booking .mission-vision-row .value-card p {
    margin-bottom: 0;
    color: #e8ccab;
}