body {
    font-family: "Montserrat", "Noto Sans TC", "PingFang TC", "Helvetica", "Arial", sans-serif;
    font-style: normal;
    word-break: break-all;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    word-break: break-word;
    color: var(--color-black);
    margin: 0px;
    display: flex;
    flex-direction: column;
}

section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    min-width: 300px;
    width: 100%;
    margin: 0 20px;
}


@media(min-width:768px) {
    .container {
        max-width: 840px;
    }
}

@media(min-width:992px) {
    .container {
        max-width: 960px;
    }
}

@media(min-width:1200px) {
    .container {
        max-width: 1140px;
    }
}

@media(min-width:1400px) {
    .container {
        max-width: 1140px;
    }
}

/*Font_start*/

h1 {
    font-size: 1.5rem;
    line-height: 125%;
    margin-top: 0;
}

h2 {
    font-size: 1.5rem;
    line-height: 140%;
    margin-top: 0;
}

h3 {
    font-size: 1.75rem;
    line-height: 140%;
    margin-top: 0;
}

h4 {
    font-size: 1.5rem;
    line-height: 140%;
    margin-top: 0;
}

h5 {
    font-size: 1.25rem;
    line-height: 140%;
    margin-top: 0;
}

h6 {
    font-size: 1.125rem;
    line-height: 140%;
    margin-top: 0;
}

@media(min-width:992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    h5 {
        font-size: 1.25rem;
    }

    h6 {
        font-size: 1.125rem;
    }
}

/*Font_end*/

/*Button_start*/

button.btn,
a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    padding: 0 20px;
    height: 44px;
    border-radius: 4px;
    min-width: 140px;
    font-size: inherit;
    transition: all .3s ease;
}

.btn-primary {
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    outline-offset: -1px;
    color: var(--color-white);
}

    .btn-primary:hover {
        background-color: var(--color-secondary-600);
        border: 1px solid var(--color-secondary-600);
    }

    .btn-primary:active {
        background-color: var(--color-secondary);
        border: 1px solid var(--color-secondary);
    }

    .btn-primary:disabled,
    .btn-primary[disabled] {
        color: var(--color-white);
        background-color: var(--color-gray-300);
        border: 1px solid var(--color-gray-300);
        cursor: initial;
        cursor: not-allowed;
    }

.btn-secondary {
    background-color: var(--color-white);
    border: 1px solid var(--color-secondary);
    outline-offset: -1px;
    color: var(--color-secondary);
}

    .btn-secondary:hover {
        background-color: var(--color-white);
        border: 1px solid var(--color-secondary-400);
        color: var(--color-secondary-400);
    }

    .btn-secondary:active {
        background-color: var(--color-primary);
        border: 1px solid var(--color-primary);
    }

    .btn-secondary:disabled,
    .btn-secondary[disabled] {
        color: var(--color-gray-600);
        background-color: var(--color-gray-light);
        border: 1px solid var(--color-gray-300);
        cursor: initial;
        cursor: not-allowed;
    }

.btn-third {
    background-color: var(--color-white);
    border: 1px solid var(--color-white);
    outline-offset: -1px;
    color: var(--color-secondary);
}

    .btn-third:hover {
        background-color: var(--color-white);
        border: 1px solid var(--color-white);
        color: var(--color-secondary-400);
    }

    .btn-third:active {
        background-color: var(--color-white);
        border: 1px solid var(--color-white);
    }

    .btn-third:disabled,
    .btn-third[disabled] {
        color: var(--color-gray-600);
        background-color: var(--color-gray-light);
        border: 1px solid var(--color-gray-light);
        cursor: initial;
        cursor: not-allowed;
    }

/*Button_end*/

/*form_start*/

select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    background-image: url(https://cdn.gobooking.com.tw/GobookingWeb/img/icon_arrow_down.svg) !important;
    background-repeat: no-repeat;
    background-size: 12px auto;
    background-position: bottom 48% right 8px;
}

.form-frame {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
}

.form-label {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--color-gray-900);
}

    .form-label::after,
    .form-label::after,
    .form-label::after,
    .form-label::after {
        content: '*';
        color: var(--color-primary);
        font-weight: 800;
        margin-left: 2px;
    }

.form-control {
    font-size: 1rem;
    padding: 12px 12px;
    width: 100%;
    height: 44px;
    border-radius: 4px;
    box-sizing: border-box;
    border: 1px solid var(--color-gray-200);
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .form-control:focus {
        box-shadow: none;
        outline: none;
        border: 1px solid var(--color-black);
    }

    .form-control:disabled,
    .form-control[readonly] {
        background-color: var(--color-gray-light);
        border-color: var(--color-gray-200);
    }

        .form-control[readonly]:focus {
            border: 1px solid var(--color-gray-400);
        }

    .form-control::-moz-placeholder,
    .form-control::-webkit-input-placeholder {
        color: var(--color-gray-200);
        font-size: 1rem;
    }

.form-remind {
    font-size: 0.875rem;
    margin-top: 12px;
    color: var(--color-gray-700);
    text-align: initial;
}

/* Alert */
.form-frame.alert .form-control {
    border-color: var(--color-danger);
    background-color: var(--color-danger-light);
}

.form-frame.alert .form-remind {
    color: var(--color-danger);
}

/*form_end*/

/*checkbox & radio_start*/
.form-check {
    display: block;
    position: relative;
    margin-top: 8px;
}

.custom-check-label,
.custom-radio-label {
    display: block;
    position: relative;
    padding: 0px 2px 0px 28px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .custom-check-label.active,
    .custom-radio-label.active {
        background-color: var(--color-primary-light);
    }

    .custom-check-label.disabled,
    .custom-radio-label.disabled {
        color: var(--color-gray-600);
        background-color: var(--color-gray-200);
        pointer-events: none;
        opacity: 0.75;
        cursor: initial;
    }

.custom-select-label {
    display: block;
    position: relative;
    padding: 8px 24px 8px 24px;
    width: fit-content;
    height: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .custom-select-label input {
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .custom-select-label .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 14px;
        width: 14px;
        margin: 1px 0px 0px 1px;
    }

    .custom-select-label:hover input ~ .checkmark {
        background-color: transparent;
        border: 1px solid transparent;
    }

    /* When the checkbox is checked, add a blue background */
    .custom-select-label input:checked ~ .checkmark {
        background-color: var(--color-primary);
        border: 1px solid var(--color-primary);
    }

        /* Show the checkmark when checked */
        .custom-select-label input:checked ~ .checkmark:after {
            display: flex;
        }

    .custom-select-label input:checked + .form-select {
        border: 1px solid var(--color-primary);
        background-color: var(--color-primary-light);
        color: var(--color-primary);
    }

    /* Style the checkmark/indicator */
    .custom-select-label .checkmark:after {
        left: 5px;
        top: 1px;
        width: 3px;
        height: 8px;
        border: solid white;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

/* Hide the browser's default checkbox */
.form-check input,
.custom-radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/*checkbox*/
/* Create a custom checkbox & radio */
.checkmark,
.radiomark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 2px;
    margin-top: 1px;
}

.radiomark {
    border-radius: 50px;
    border: 1px solid var(--color-gray-600);
    /* margin-left: 8px; */
}

/* On mouse-over, add a grey background color */
.form-check:hover input ~ .checkmark {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-400);
}

/* When the checkbox is checked, add a blue background */
.form-check input:checked ~ .checkmark {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.form-check input:checked ~ .checkmark-border {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.form-check input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.form-check .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.form-check :active,
.custom-radio-label .active {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-400);
}

/*radio*/
/* On mouse-over, add a grey background color */
.custom-radio-label:hover input ~ .radiomark {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-400);
}

/* When the checkbox is checked, add a blue background */
.custom-radio-label input:checked ~ .radiomark {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

/* Create the checkmark/indicator (hidden when not checked) */
.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-radio-label input:checked ~ .radiomark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-radio-label .radiomark:after {
    left: 5px;
    top: 5px;
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background-color: var(--color-white);
}

input[type="checkbox"]:disabled ~ .checkmark,
input[type="checkbox"][disabled] ~ .checkmark,
input[type="radio"]:disabled ~ .radiomark,
input[type="radio"][disabled] ~ .radiomark {
    border-color: var(--color-gray-600);
    background-color: var(--color-gray-300);
    cursor: initial;
}

/* 點選後背景無底色_start */
.form-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: fit-content;
    border: solid 1px var(--color-gray-400);
    background-color: transparent;
    cursor: pointer;
}

    .form-select:hover {
        border: 1px solid var(--color-primary);
        background-color: var(--color-primary-light);
        color: var(--color-primary);
    }

.custom-select-img-wrapper {
    display: flex;
    width: auto;
    height: 1.5rem;
}

.custom-select-label {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 8px 24px 8px 24px;
    width: inherit;
    height: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

    .custom-select-label input {
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .custom-select-label .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 14px;
        width: 14px;
        margin: 1px 0px 0px 1px;
        border: none;
    }

    .custom-select-label:hover input ~ .checkmark {
        background-color: transparent;
        border: 1px solid transparent;
    }

    .custom-select-label input:checked ~ .checkmark {
        background-color: var(--color-primary);
        border: 1px solid var(--color-primary);
    }

        .custom-select-label input:checked ~ .checkmark:after {
            display: flex;
        }

/* checkbox 複選無圖 ver-2 */
.custom-select-label-2 {
    display: block;
    position: relative;
    width: fit-content;
    height: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.checkbox-input {
    /* Code to hide the input */
    clip: rect(0 0 0 0);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

    .checkbox-input:checked + .checkbox-tile {
        border-color: var(--color-primary);
        color: var(--color-gray--500);
    }

        .checkbox-input:checked + .checkbox-tile:before {
            transform: scale(1);
            opacity: 1;
            background-color: var(--color-primary);
            border-color: var(--color-primary);
        }

    .checkbox-input:focus + .checkbox-tile {
        border-color: var(--color-primary);
        background-color: var(--color-primary-light);
    }

    .checkbox-input:checked + .checkbox-tile .checkbox-icon,
    .checkbox-input:checked + .checkbox-tile .checkbox-label {
        color: var(--color-primary);
    }

.checkbox-tile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 4px 28px;
    border: solid 1px var(--color-gray-400);
    background-color: transparent;
    transition: 0.15s ease;
    cursor: pointer;
    position: relative;
}

.checkbox-input:checked + .checkbox-tile:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 3px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox-tile:hover {
    background-color: var(--color-primary-light);
    border: 1px solid var(--color-primary);
}

.checkbox-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border: 1px solid var(--color-primary);
    background-color: var(--color-white);
    top: 0px;
    left: 0px;
    opacity: 0;
    transition: 0.25s ease;
}

/* 點選後背景無底色_end */

/*collapse_start*/
.collapse {
    background-color: var(--color-white);
    box-shadow: var(--color-shadow-secondary);
    cursor: pointer;
    padding: 20px 16px;
}

    .collapse.active {
        background-color: var(--color-gray-200);
    }

.collapse-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

    .collapse-btn .collapse-btn-name {
        margin: 0;
    }

    .collapse-btn .collapse-btn-icon {
        transition: transform .25s ease-in-out;
        width: 16px;
    }

        .collapse-btn .collapse-btn-icon.active {
            transform: rotate(-180deg);
        }

.collapse-content {
    display: none;
}

    .collapse-content p {
        margin: 0;
    }

/* collapse-info */
.collapse.collapse-info {
    background-color: var(--color-info-light);
    color: var(--color-info);
    box-shadow: none;
    border: 1px solid var(--color-info);
}

    .collapse.collapse-info .collapse-btn-icon {
        filter: invert(50%) sepia(81%) saturate(728%) hue-rotate(184deg) brightness(100%) contrast(91%);
    }

    .collapse.collapse-info .collapse-content p {
        margin-top: 20px;
    }

    .collapse.collapse-info .collapse-content img {
        margin-top: 8px;
        max-width: 600px;
    }

/*collapse_end*/

img {
    width: 100%;
}

/*Badge_start*/

.badge {
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 4px;
}

    .badge.primary {
        background-color: var(--color-primary);
        color: var(--color-white);
    }

/*Badge_end*/

/*Header_start*/

.header {
    width: 100%;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    left: 0;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-gray-light);
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-logo {
    height: 28px;
}

.header-item-wrapper {
    display: none;
}

    .header-item-wrapper .header-item {
        position: relative;
        padding: 16px 0;
        display: flex;
        align-items: center;
    }

        .header-item-wrapper .header-item .item-name {
            color: var(--color-gray-800);
            text-decoration: none;
        }

            .header-item-wrapper .header-item .item-name:hover {
                color: var(--color-black);
                text-decoration: none;
            }

        .header-item-wrapper .header-item .btn {
            min-width: inherit;
        }

        .header-item-wrapper .header-item.droplist {
            display: flex;
            align-items: center;
            color: var(--color-gray-800);
        }

            .header-item-wrapper .header-item.droplist:hover {
                color: var(--color-black);
                cursor: pointer;
            }

    .header-item-wrapper .droplist-name .icon {
        width: 14px;
        vertical-align: middle;
    }

/* droplist_start */
.droplist .droplist-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 52px;
    left: 0px;
    list-style-type: none;
    padding: 0px;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 16px 0 rgba(43, 43, 43, 0.1);
}

.droplist:hover .droplist-menu,
.droplist:active .droplist-menu {
    display: flex;
}

.droplist .droplist-item {
    word-break: keep-all;
    padding: 16px 20px;
}

    .droplist .droplist-item:first-child {
        padding-top: 20px;
    }

    .droplist .droplist-item:last-child {
        padding-bottom: 20px;
    }

    .droplist .droplist-item > a {
        color: var(--color-gray-800);
        text-decoration: none;
    }

        .droplist .droplist-item > a:hover {
            color: var(--color-black);
        }

/* droplist_end */

.header-menu-wrapper {
    display: block;
    padding: 12px 0;
}

    .header-menu-wrapper .icon {
        width: 28px;
        padding: 6px;
        border: 1px solid var(--color-gray-200);
        border-radius: 4px;
    }

.mobile-menu {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.90);
    overflow-y: hidden;
    transition: 0.4s;
}

.mobile-menu-wrapper {
    padding: 12px 20px;
}

.close-btn-wrapper {
    display: flex;
    justify-content: end;
}

    .close-btn-wrapper .icon {
        width: 28px;
        padding: 6px;
        border: 1px solid var(--color-gray-600);
        border-radius: 4px;
        filter: invert(100%) sepia(0%) saturate(7461%) hue-rotate(39deg) brightness(94%) contrast(112%);
    }

.mobile-menu-content {
    padding: 60px 0 0 0;
    overflow-y: scroll;
    text-align: center;
    font-size: 1.5rem;
}

    .mobile-menu-content .content-item {
        padding: 40px 0;
    }

        .mobile-menu-content .content-item .item-name {
            color: var(--color-white);
            text-decoration: none;
        }

    .mobile-menu-content .collapse {
        background-color: #ffffff00;
        color: var(--color-white);
        padding: 0;
    }

        .mobile-menu-content .collapse .collapse-btn {
            justify-content: center;
        }

            .mobile-menu-content .collapse .collapse-btn .collapse-btn-icon {
                width: 20px;
                filter: invert(100%) sepia(0%) saturate(7461%) hue-rotate(39deg) brightness(94%) contrast(112%);
            }

        .mobile-menu-content .collapse .collapse-content-item {
            padding: 32px 0;
        }

            .mobile-menu-content .collapse .collapse-content-item:first-child {
                padding-top: 64px;
            }

            .mobile-menu-content .collapse .collapse-content-item:last-child {
                padding-bottom: 0;
            }

        .mobile-menu-content .collapse .collapse-item-name {
            color: var(--color-white);
            text-decoration: none;
        }

    .mobile-menu-content .content-item > .btn {
        display: inline-flex;
        padding: 16px 42px;
        height: 56px;
    }

@media(min-width:992px) {
    .header-logo {
        height: 40px;
    }

    .header-item-wrapper {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        list-style-type: none;
        gap: 32px;
        margin: 0;
        padding: 0;
    }

    .header-menu-wrapper {
        display: none;
    }
}

/*Header_end*/

/*Footer_start*/

.footer {
    display: flex;
    justify-content: center;
    background-color: var(--color-secondary);
}

.footer-logo {
    width: 200px;
}

.footer-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
}

    .footer-content-wrapper .footer-info-wrapper {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding-top: 40px;
    }

        .footer-content-wrapper .footer-info-wrapper .footer-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

        .footer-content-wrapper .footer-info-wrapper .info-name {
            display: flex;
            color: var(--color-white);
            text-decoration: none;
        }

            .footer-content-wrapper .footer-info-wrapper .info-name .icon {
                width: 22px;
                margin-right: 6px;
            }

.footer-bottom-wrapper {
    border-top: 1px solid var(--color-secondary-600);
    text-align: center;
    padding: 28px 0;
    color: var(--color-white);
    font-size: 0.875rem;
    word-break: keep-all;
}

    .footer-bottom-wrapper .footer-bootom-link {
        color: var(--color-white);
        text-decoration: none;
        padding: 0 4px;
    }

@media(min-width:992px) {
    .footer-content-wrapper {
        flex-direction: row;
        justify-content: space-between;
        padding: 72px 0;
    }

        .footer-content-wrapper .footer-info-wrapper {
            flex-direction: row;
            gap: 80px;
            padding-top: 0;
        }

            .footer-content-wrapper .footer-info-wrapper .footer-info {
                align-items: start;
            }
}

@media(min-width:1200px) {
    .footer-content-wrapper .footer-info-wrapper {
        gap: 120px;
    }
}

/*Footer_end*/

/*Contact us_start*/

.contact-us-section {
    background-color: var(--color-primary);
    background-image: url("https://cdn.gobooking.com.tw/GobookingWeb/img/img_footer_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

    .contact-us-section .section-title {
        color: var(--color-white);
        margin: 0 0 20px 0;
    }

.form-frame.captcha {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-end;
}

    .form-frame.captcha .label-wrapper {
        display: flex;
        flex-direction: column;
        flex: 1;
        margin-bottom: 28px;
    }

    .form-frame.captcha .captcha-wrapper {
        flex: 1;
    }

        .form-frame.captcha .captcha-wrapper .img-captcha {
            cursor: pointer;
            border-radius: 4px;
            transition: 0.3s;
        }

            .form-frame.captcha .captcha-wrapper .img-captcha:hover {
                opacity: 0.85;
                transition: 0.3s;
            }

        .form-frame.captcha .captcha-wrapper .description {
            margin-top: 6px;
            margin-bottom: 0;
            font-size: 0.75rem;
            text-align: center;
        }

            .form-frame.captcha .captcha-wrapper .description .icon {
                width: 12px;
                margin-right: 2px;
            }

.contact-us-section .cta-wrapper {
    display: flex;
    justify-content: center;
}

    .contact-us-section .cta-wrapper .btn-third {
        color: var(--color-primary);
    }

@media(min-width:992px) {
    .form-frame.captcha {
        flex-direction: row;
        gap: 20px;
    }

        .form-frame.captcha .label-wrapper {
            flex: 7;
        }

        .form-frame.captcha .captcha-wrapper {
            flex: 2;
        }
}

/*Contact us_end*/

/*hero-img-section_start*/

/*共用_start*/
.hero-img-section .content-wrapper .title {
    margin: 0 0 12px 0;
}

.hero-img-section .content-wrapper .subtitle {
    font-size: 1rem;
    line-height: 140%;
    font-weight: 400;
    margin: 0;
    color: var(--color-gray-600);
}

.hero-img-section .content-wrapper .cta-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 28px;
    gap: 12px;
}

@media(min-width:768px) {
    .hero-img-section .content-wrapper .cta-wrapper {
        flex-direction: row;
        gap: 20px;
    }
}

@media(min-width:992px) {
    .hero-img-section .content-wrapper .subtitle {
        font-size: 1.125rem;
    }

    .hero-img-section .content-wrapper .cta-wrapper {
        justify-content: flex-start;
    }
}

.hero-img-section .content-wrapper .cta-wrapper .icon {
    width: 18px;
    margin-left: 4px;
}

/*共用_end*/

/*hero-img-section_end*/

/*控制所有 section padding*/
.function-icon-section,
.contact-us-section,
.hero-img-section,
.solution-section,
.function-description-section,
.partner-section,
.customer-img-section,
.introduce-section,
.philosophy-section,
.function-usethsr-section,
.function-systemconnect-section,
.policy-section,
.contact-form-section.thankful {
    padding: 40px 0;
}

.partner-section,
.customer-img-section,
.contact-form-section {
    padding: 0 0 40px 0;
}

.customer-section {
    padding: 60px 0 0 0;
}

/* .customer-section:has(.slider) {
  padding: 96px 0 64px 0;
}

.function-description-section:has(.slider) {
  padding-bottom: 60px;
} */

.contact-us-section.home {
    padding-top: 120px;
}

/* 所有標題的 title */
.section-title {
    margin-bottom: 32px;
    text-align: center;
}

@media(min-width:992px) {

    .function-icon-section,
    .contact-us-section,
    .hero-img-section,
    .solution-section,
    .function-description-section,
    .introduce-section,
    .philosophy-section,
    .function-usethsr-section,
    .function-systemconnect-section,
    .policy-section {
        padding: 100px 0;
    }

    .customer-section {
        padding: 140px 0 60px 0;
    }

    /* .function-description-section:has(.slider) {
  padding-bottom: 140px;
} */

    .partner-section,
    .customer-img-section,
    .contact-form-section {
        padding: 0 0 100px 0;
    }

        .contact-form-section.thankful {
            padding: 160px 0;
        }

    .section-title {
        margin-bottom: 48px;
    }

    .contact-us-section.home {
        padding-top: 160px;
    }
}

/*Home page_start*/
.hero-img-section.home {
    background-image: url("https://cdn.gobooking.com.tw/GobookingWeb/img/img_heroimg_home_desktop.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

    .hero-img-section.home .hero-img-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

        .hero-img-section.home .hero-img-wrapper .content-wrapper {
            text-align: center;
        }

            .hero-img-section.home .hero-img-wrapper .content-wrapper .title {
                margin: 0 0 16px 0;
                color: var(--color-black);
            }

        .hero-img-section.home .hero-img-wrapper .cta-wrapper {
            display: flex;
            justify-content: center;
        }

        .hero-img-section.home .hero-img-wrapper .img-wrapper {
            display: flex;
            justify-content: center;
        }

            .hero-img-section.home .hero-img-wrapper .img-wrapper .img-mobile {
                margin-top: 28px;
                width: 90%;
            }

            .hero-img-section.home .hero-img-wrapper .img-wrapper .img-left,
            .hero-img-section.home .hero-img-wrapper .img-wrapper .img-right {
                display: none;
            }

@media(min-width:768px) {
    .hero-img-section.home .hero-img-wrapper .img-wrapper {
        position: absolute;
    }

        .hero-img-section.home .hero-img-wrapper .img-wrapper .img-left {
            display: block;
            position: absolute;
            bottom: -210px;
            right: 30px;
            width: 340px;
        }

        .hero-img-section.home .hero-img-wrapper .img-wrapper .img-right {
            display: block;
            position: absolute;
            bottom: -210px;
            left: 30px;
            width: 340px;
        }

        .hero-img-section.home .hero-img-wrapper .img-wrapper .img-mobile {
            display: none;
        }
}

@media(min-width:992px) {
    .hero-img-section.home {
        min-height: 500px;
    }

        .hero-img-section.home .hero-img-wrapper .content-wrapper .title {
            margin: 0 0 28px 0;
        }

    .hero-img-section .content-wrapper .cta-wrapper {
        margin-top: 36px;
    }

    .hero-img-section.home .hero-img-wrapper .img-wrapper .img-left {
        bottom: -260px;
        right: 80px;
        width: 400px;
    }

    .hero-img-section.home .hero-img-wrapper .img-wrapper .img-right {
        bottom: -260px;
        left: 80px;
        width: 400px;
    }
}

@media(min-width:1200px) {
    .hero-img-section.home .hero-img-wrapper .img-wrapper .img-left {
        bottom: -260px;
        right: 140px;
        width: 500px;
    }

    .hero-img-section.home .hero-img-wrapper .img-wrapper .img-right {
        bottom: -260px;
        left: 140px;
        width: 500px;
    }
}

.solution-section {
    background: linear-gradient(#ffffff, #ebf7ffea);
}

    .solution-section .solution-item-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .solution-section .card-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* padding: 32px; */
        text-align: center;
        background-color: var(--color-white);
        box-shadow: var(--color-shadow-secondary);
        border-radius: 6px;
    }

    .solution-section .card-head .img {
        border-radius: 6px 6px 0 0;
        aspect-ratio: 2/1;
        object-fit: cover;
    }

    .solution-section .card-wrapper .card-body {
        padding: 32px 32px 0 32px;
    }

    .solution-section .card-wrapper .card-title {
        font-size: 1.375rem;
        margin: 0 0 12px 0;
    }

    .solution-section .card-wrapper .card-description {
        color: var(--color-gray-600);
        font-weight: 400;
        font-size: 1rem;
        margin: 0;
    }

    .solution-section .card-wrapper .card-cta-wrapper {
        display: flex;
        ;
        justify-content: center;
        height: 100%;
        align-items: flex-end;
        margin-top: 28px;
        padding: 0 32px 32px 32px;
    }

@media(min-width:992px) {
    .solution-section .container {
        max-width: 900px;
    }

    .solution-section .solution-item-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.customer-section .customer-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.customer-section .cta-wrapper {
    display: flex;
    justify-content: center;
}

@media(min-width:992px) {
    .customer-section .customer-wrapper {
        grid-template-columns: repeat(8, 1fr);
        gap: 24px;
    }
}

.connection-section {
    z-index: 100;
    position: relative;
    top: 80px;
}

    .connection-section .connection-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        background-color: var(--color-white);
        padding: 40px;
        gap: 16px;
        border-radius: 6px;
        box-shadow: 0 8px 30px 0 rgba(1, 32, 68, 0.16);
    }

        .connection-section .connection-wrapper .title.mobile {
            text-align: center;
            margin: 0;
        }

    .connection-section .info-wrapper .title.desktop {
        display: none;
    }

    .connection-section .partner-img-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .connection-section .info-wrapper {
        text-align: center;
    }

        .connection-section .info-wrapper .description {
            font-size: 1rem;
            font-weight: 400;
            color: var(--color-gray-600);
            margin: 0;
        }

    .connection-section .cta-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 28px;
    }

@media(min-width:992px) {
    .connection-section .connection-wrapper {
        grid-template-columns: 4fr 3fr;
        align-items: center;
        padding: 52px 44px;
        gap: 40px;
    }

        .connection-section .connection-wrapper .title.mobile {
            display: none;
        }

    .connection-section .info-wrapper .title.desktop {
        display: block;
        font-size: 1.75rem;
        margin: 0 0 12px 0;
    }

    .connection-section .partner-img-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .connection-section .info-wrapper {
        text-align: start;
    }

    .connection-section .cta-wrapper {
        justify-content: flex-start;
        margin-top: 32px;
    }
}

/*Home page_end*/

/*共用的 heroimg section*/
.hero-img-section.product {
    background: linear-gradient(rgba(237, 244, 249, 0.500), #e2f3fe);
}

    .hero-img-section.product .hero-img-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
    }

        .hero-img-section.product .hero-img-wrapper .content-wrapper {
            text-align: center;
        }

@media(min-width:992px) {
    .hero-img-section.product .hero-img-wrapper {
        grid-template-columns: 6fr 7fr;
        gap: 40px;
        align-items: center;
    }

        .hero-img-section.product .hero-img-wrapper .content-wrapper {
            text-align: start;
        }
}

/*Booking Engine page_start*/

.function-icon-section.main {
    background-image: url("https://cdn.gobooking.com.tw/GobookingWeb/img/img_function_main_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.function-icon-section .title-wrapper {
    text-align: center;
}

    .function-icon-section .title-wrapper .subtitle {
        margin: 0 0 12px 0;
    }

    .function-icon-section .title-wrapper .logo {
        width: 140px;
    }

    .function-icon-section .title-wrapper .text {
        font-size: 1.25rem;
        color: var(--color-primary);
        font-weight: 500;
        margin-left: 6px;
        vertical-align: super;
    }

.function-icon-section .icon-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 48px 0 0 0;
}

    .function-icon-section .icon-content-wrapper .content-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

.function-icon-section.promo .icon-content-wrapper .content-item:first-child .badge.primary {
    vertical-align: bottom;
}

.function-icon-section .icon-content-wrapper .icon {
    width: 50px;
}

.function-icon-section .icon-content-wrapper .item-info .name {
    font-size: 1.125rem;
    margin: 0 0 8px 0;
}

.function-icon-section .icon-content-wrapper .item-info .description {
    font-size: 1rem;
    color: var(--color-gray-600);
    margin: 0;
}

.function-icon-section .cta-wrapper {
    display: flex;
    justify-content: center;
}

@media(min-width:992px) {
    .function-icon-section.promo .icon-content-wrapper .content-item:first-child {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 2;
    }

    .function-icon-section .icon-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

        .function-icon-section .icon-content-wrapper .icon {
            width: 70px;
        }
}

.function-description-section.design {
    background-color: var(--color-primary-light);
}

/*功能輪播*/
/*電腦版*/
.function-description-section.upsale {
    background-color: #e0effa;
    background-image: url(https://cdn.gobooking.com.tw/GobookingWeb/img/img_function_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/* .function-description-dk-wrapper {
display: none;
}

.function-description-dk-wrapper.defult {
flex-direction: row;
}

.function-description-dk-wrapper.reverse {
flex-direction: row-reverse;
} */

.function-description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

    .function-description-wrapper .function-img-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .function-description-wrapper .img-item {
        display: none;
    }

        .function-description-wrapper .img-item.active {
            display: block;
        }

        .function-description-wrapper .img-item .item-description {
            color: var(--color-gray-600);
            margin-bottom: 0;
        }

    .function-description-wrapper .btn-wrapper {
        display: none;
    }

        .function-description-wrapper .btn-wrapper .icon-prevbtn,
        .function-description-wrapper .btn-wrapper .icon-nextbtn {
            width: 30px;
            opacity: 0.8;
        }

            .function-description-wrapper .btn-wrapper .icon-prevbtn:hover,
            .function-description-wrapper .btn-wrapper .icon-nextbtn:hover {
                opacity: 1;
            }

    .function-description-wrapper .function-tab-wrapper-mb {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        border-bottom: 1px solid var(--color-gray-200);
        scrollbar-width: none;
    }

        .function-description-wrapper .function-tab-wrapper-mb .tab-item {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            /* min-width: 40%; */
            padding: 12px 28px;
            color: var(--color-gray-600);
            font-weight: 500;
            cursor: pointer;
            word-break: keep-all;
        }

            .function-description-wrapper .function-tab-wrapper-mb .tab-item.active {
                color: var(--color-black);
                border-bottom: 2px solid var(--color-black);
            }

            .function-description-wrapper .function-tab-wrapper-mb .tab-item .item-name {
                margin: 0;
            }

    .function-description-wrapper .function-tab-wrapper-dk {
        display: none;
    }

@media(min-width:992px) {
    .function-description-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

        .function-description-wrapper.reverse {
            flex-direction: row-reverse;
        }

        .function-description-wrapper .function-img-wrapper,
        .function-description-wrapper .function-tab-wrapper-dk {
            flex: 1;
        }

        .function-description-wrapper .btn-wrapper {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 40px;
            margin-top: 16px;
        }

        .function-description-wrapper .img-item .item-description {
            display: none;
        }

        .function-description-wrapper .function-tab-wrapper-mb {
            display: none;
        }

        .function-description-wrapper .function-tab-wrapper-dk {
            display: block;
        }

            .function-description-wrapper .function-tab-wrapper-dk .tab-item {
                margin-bottom: 20px;
                padding-left: 20px;
                border-left: 3px solid var(--color-gray-100);
                cursor: pointer;
            }

                .function-description-wrapper .function-tab-wrapper-dk .tab-item.active,
                .function-description-wrapper .function-tab-wrapper-dk .tab-item:hover {
                    border-left: 3px solid var(--color-black);
                }

            .function-description-wrapper .function-tab-wrapper-dk .item-name {
                font-size: 1.125rem;
                font-weight: 500;
                margin: 0 0 6px 0;
            }

            .function-description-wrapper .function-tab-wrapper-dk .item-description {
                font-size: 1rem;
                margin: 0;
                color: var(--color-gray-600);
            }
}


/*Booking Engine page_end*/

/*THSR page_strat*/
.function-icon-section.thsr-description {
    background-image: url(https://cdn.gobooking.com.tw/GobookingWeb/img/img_function_main_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

    .function-icon-section.thsr-description .section-title {
        margin-bottom: 12px;
    }

    .function-icon-section.thsr-description .subtitle {
        text-align: center;
        font-size: 1.125rem;
        font-weight: 400;
        margin: 0;
    }

    .function-icon-section.thsr-description .icon-content-wrapper {
        grid-template-columns: minmax(100px, 700px);
        justify-content: center;
    }

        .function-icon-section.thsr-description .icon-content-wrapper .icon {
            width: 44px;
        }

.function-usethsr-section .card-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

    .function-usethsr-section .card-wrapper .card .img {
        border-radius: 6px;
        margin-bottom: 16px;
    }

    .function-usethsr-section .card-wrapper .card .description {
        text-align: center;
        color: var(--color-gray-600);
        margin: 0;
    }

@media(min-width:992px) {
    .function-usethsr-section .card-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }
}

.function-icon-section.THSRadvantages {
    background-color: var(--color-primary-light);
}

.function-systemconnect-section {
    background-image: url(https://cdn.gobooking.com.tw/GobookingWeb/img/img_function_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

    .function-systemconnect-section .card-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .function-systemconnect-section .card-system {
        display: flex;
        flex-direction: column;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 6px;
    }

        .function-systemconnect-section .card-system.Gobooking {
            background-image: url(https://cdn.gobooking.com.tw/GobookingWeb/img/img_connection_Gobooking.png);
        }

        .function-systemconnect-section .card-system.SiteMinder {
            background-image: url(https://cdn.gobooking.com.tw/GobookingWeb/img/img_connection_SiteMinder.png);
        }

        .function-systemconnect-section .card-system .card-head {
            padding: 80px 32px 0 32px;
        }

        .function-systemconnect-section .card-system .logo {
            width: 180px;
            margin-bottom: 32px;
        }

        .function-systemconnect-section .card-system .card-title {
            font-size: 1.125rem;
            margin-bottom: 8px;
        }

        .function-systemconnect-section .card-system .card-description {
            color: var(--color-gray-600);
            margin: 0;
        }

        .function-systemconnect-section .card-system .card-cta-wrapper {
            display: flex;
            height: 100%;
            align-items: flex-end;
            margin-top: 28px;
            padding: 0 32px 80px 32px;
        }

@media(min-width:992px) {
    .function-systemconnect-section .container {
        max-width: 900px;
    }

    .function-systemconnect-section .card-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}


/*THSR page_end*/

/*Partner_start*/

.hero-img-section.secondary {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 160px;
}

    .hero-img-section.secondary.partner {
        background-image: url("https://cdn.gobooking.com.tw/GobookingWeb/img/img_heroimg_partner.jpg");
    }

    .hero-img-section.secondary .container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-img-section.secondary .content-wrapper {
        text-align: center;
    }

@media(min-width:992px) {
    .hero-img-section.secondary {
        min-height: 280px;
    }

        .hero-img-section.secondary .container {
            justify-content: start;
        }

        .hero-img-section.secondary .content-wrapper {
            text-align: start;
        }
}

/* 合作夥伴 */
.partner-section {
    background-color: var(--color-primary-light);
}

.partner-wrapper .wrapper-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.partner-wrapper .card-wrapper {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 24px;
}

/* 系統 */
.partner-wrapper.system .partner-card-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.partner-wrapper.system a {
    text-decoration: none;
    display: contents
}

.partner-wrapper.system .card-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    align-items: center;
    transition: 0.4s;
}

    .partner-wrapper.system .card-wrapper:hover {
        box-shadow: var(--color-shadow-secondary);
        transition: 0.5s;
    }

.partner-wrapper.system .card-head {
    display: flex;
    align-items: center;
}

.partner-wrapper.system .card-title {
    font-size: 1.125rem;
    text-decoration: none;
    color: var(--color-black);
    margin-bottom: 8px;
}

.partner-wrapper.system .card-description {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    color: var(--color-gray-600);
}

/* 金流 */
.partner-section .partner-wrapper.finance {
    margin-top: 76px;
}

.partner-wrapper.finance .card-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 12px;
    justify-content: space-around
}

    .partner-wrapper.finance .card-wrapper .img {
        max-width: 140px;
        transition: 0.4s;
    }

        .partner-wrapper.finance .card-wrapper .img:hover {
            transform: scale(1.07);
            transition: 0.5s;
        }

@media(min-width:992px) {
    .partner-wrapper .wrapper-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }

    /* 系統 */
    .partner-wrapper.system .partner-card-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    /* 金流 */
    .partner-wrapper.finance .card-wrapper {
        gap: 20px;
    }

        .partner-wrapper.finance .card-wrapper .img {
            max-width: 156px;
        }
}

/*Partner_end*/

/*Customer_start*/

.hero-img-section.secondary.customer {
    background-image: url("https://cdn.gobooking.com.tw/GobookingWeb/img/img_heroimg_customer.jpg");
}

.customer-img-section .customer-img-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

    .customer-img-section .customer-img-wrapper .img {
        max-width: 128px;
        transition: 0.4s;
    }

        .customer-img-section .customer-img-wrapper .img:hover {
            transform: scale(1.07);
            transition: 0.5s;
        }

@media (min-width: 992px) {
    .customer-img-section .customer-img-wrapper {
        gap: 60px;
    }

        .customer-img-section .customer-img-wrapper .img {
            max-width: 140px;
        }
}

/*Customer_end*/

/*Contact_start*/

/*Contact & Policy 共用_start*/

.contact-form-section .contact-form-wrapper,
.policy-section .policy-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: var(--color-white);
    padding: 28px;
    border-radius: 10px;
}

@media (min-width: 992px) {

    .contact-form-section .container,
    .policy-section .container {
        display: flex;
        justify-content: center;
    }

    .contact-form-section .contact-form-wrapper,
    .policy-section .policy-wrapper {
        padding: 40px;
        min-width: 700px;
        max-width: 800px;
    }
}

/*Contact & Policy 共用_end*/

.hero-img-section.secondary.contact {
    background-color: var(--color-primary-light);
    background-image: url("https://cdn.gobooking.com.tw/GobookingWeb/img/img_heroimg_conactus.jpg");
}

.contact-form-section {
    background-color: var(--color-primary-light);
}

    .contact-form-section .form-check-wrapper {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contact-form-section .cta-wrapper {
        display: flex;
        justify-content: center;
    }

    .contact-form-section.thankful .contact-form-wrapper {
        align-items: center;
    }

        .contact-form-section.thankful .contact-form-wrapper .logo {
            width: 160px;
        }

        .contact-form-section.thankful .contact-form-wrapper .text-wrapper {
            text-align: center;
        }

        .contact-form-section.thankful .contact-form-wrapper .title {
            margin-bottom: 12px;
        }

        .contact-form-section.thankful .contact-form-wrapper .description {
            margin: 0;
            color: var(--color-gray-600);
        }

@media (min-width: 992px) {
    .contact-form-section .form-check-wrapper {
        flex-direction: row;
        gap: 32px;
    }
}

/*Contact_end*/

/*Policy_start*/

.policy-section {
    background-color: var(--color-primary-light);
}

.policy-wrapper .section-title {
    margin-bottom: 4px;
    font-size: 1.75rem;
}

.policy-wrapper .foreword {
    margin: 0;
}

.policy-wrapper .part .part-title {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.policy-wrapper .part .part-description {
    margin-top: 0;
}

.policy-wrapper .part a {
    color: var(--color-primary);
}

/*Policy_end*/

/*About_start*/

.hero-img-section.secondary.aboutus {
    background-image: url("https://cdn.gobooking.com.tw/GobookingWeb/img/img_heroimg_aboutus.jpg");
}

.introduce-title-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

    .introduce-title-wrapper .icon {
        width: 32px;
    }

    .introduce-title-wrapper .introduce-title {
        text-align: center;
        font-size: 1.375rem;
        margin: 24px 0;
    }

    .introduce-title-wrapper .icon-comm-end {
        display: flex;
        justify-content: end;
    }

.introduce-section .introduce-description {
    font-size: 1rem;
    text-align: center;
    font-weight: 400;
    margin: 0;
}

.philosophy-section {
    background-color: var(--color-primary-light);
}

    .philosophy-section .section-title {
        font-size: 1.75rem;
    }

.philosophy-icon-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

    .philosophy-icon-wrapper .icon-content {
        text-align: center;
    }

        .philosophy-icon-wrapper .icon-content .icon {
            width: 70px;
            margin-bottom: 20px;
        }

        .philosophy-icon-wrapper .icon-content .content-title {
            font-size: 1.25rem;
            margin-bottom: 8px;
        }

        .philosophy-icon-wrapper .icon-content .content-description {
            font-size: 1rem;
            margin: 0;
            color: var(--color-gray-600);
        }

@media (min-width: 992px) {
    .introduce-title-wrapper {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }

        .introduce-title-wrapper .icon {
            width: 52px;
        }

        .introduce-title-wrapper .introduce-title {
            font-size: 1.75rem;
            margin: 36px 0;
        }

        .introduce-title-wrapper .icon-comm-end {
            display: flex;
            align-items: flex-end;
        }

    .philosophy-icon-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }
}

/*About_end*/
