:root {
    /*主色輔色 改色*/
    --main-color: #FFF800;
    --sub-color: #161573;
    --sub2-color: #F5F5F5;

    --meet-color: #FF1676;


    /*勿動*/
    --white-color: #fff;
    --black-color: #1e1e1e;
}

* {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 'Noto Sans TC', "微軟正黑體", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
p {
    line-height: 1.5;
    word-break: break-word;
    word-wrap: break-word;
}

.h1,
h1 {
    font-size: 2.125rem;
}

.h2,
h2 {
    font-size: 1.75rem;
}

.h3,
h3 {
    font-size: 1.4rem;
    padding-bottom: 10px;
}

.h4,
h4 {
    font-size: 1.375rem;
}

.h5,
h5 {
    font-size: 1.15rem;
    padding: 10px;
}

.h6,
h6 {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 300;
}

p {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 300;
}

.display-1 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.5;
}

.display-2 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
}

.display-3 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
}

.display-4 {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
}

.display-5 {
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
}


@media (max-width: 768px) {
    .display-1 {
        font-size: 1.6rem;
    }

    .display-2 {
        font-size: 1.4rem;
    }

    .display-3 {
        font-size: 1.2rem;
    }

    .h1,
    h1 {
        font-size: 1.75rem;
    }

    .h2,
    h2 {
        font-size: 1.4rem;
    }

    .h3,
    h3 {
        font-size: 1.375rem;
    }

    .h4,
    h4 {
        font-size: 1.15rem;
    }

    .h5,
    h5 {
        font-size: 1rem;
    }

    .h6,
    h6 {
        font-size: 0.9rem;
    }

    p {
        font-size: 0.9rem;
    }

}


body {
    background-color: #F5F5F5;
    overflow-x: hidden;
}

p {
    font-weight: 300;
}

.unit-title {
    margin-bottom: 3rem;
}

.unit-title h2 {
    font-family: "Poppins", "Belanosima", "Segoe UI", Roboto, 'Noto Sans TC', "微軟正黑體", sans-serif;
    font-weight: 500;
}

.mbr-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

a {
    color: var(--black-color);
    text-decoration: none;
}

.forpc {
    display: block;
}

.forphone {
    display: none;
}

@media (max-width: 768px) {
    .unit-title {
        margin-bottom: 2rem;
    }

    .forpc {
        display: none;
    }

    .forphone {
        display: block;
    }
}


/* nav ---------- */
.navbar {
    background-color: var(--sub2-color);
    border-bottom: 2px solid #dedede;
}

.nav-item a {
    color: var(--black-color);
    font-size: 1rem;
    line-height: 1rem;
    letter-spacing: 1px;
    margin-left: 1rem;
}

.nav-item a.borderEN {
    border-left: 1px solid #d3d3d3;
}

.nav-item a:hover {
    color: var(--meet-color);
}

.navbar-brand .mainlogo {
    max-height: 45px;
}

.nav-ticket-btn {
    background-color: var(--main-color);
    font-weight: 700;
    padding: .5rem .75rem !important;
    transition-duration: .5s;
}

.nav-item a:hover.nav-ticket-btn {
    color: var(--black-color);
}

.nav-ticket-btn:hover {
    background-color: #7ECEF4;
}

@media (max-width: 768px) {

    .nav-BN-menu li a {
        font-size: 1rem;
        text-decoration: none;
    }

    .nav-item a {
        font-size: 1rem;
        line-height: 1rem;
        padding: 0.75rem 0;
    }

    .nav-item a.borderEN {
        border-left: 0px;
    }

    .nav-item a .sm-txt,
    .nav-item p .sm-txt {
        font-size: 13px;
    }

    .navbar-toggler,
    .navbar-toggler:focus,
    .navbar-toggler:active {
        padding: 2px;
        border: 0px;
    }

    .navbar img {
        width: 130px;
    }
}

/* nav toggle animation 勿刪 ---------- */
.navbar-toggler-icon {
    background-image: none !important;
    background-color: var(--bs-gray-800);
    height: 3px;
    width: 25px;
    margin: 10px 0;
    position: relative;
    transition: all 0.35s ease-out;
    transform-origin: center;
}

.navbar-toggler-icon::before {
    display: block;
    background-color: var(--bs-gray-800);
    height: 3px;
    content: "";
    position: relative;
    top: -7px;
    transition: all 0.15s ease-out;
    /*taken down to hide quicker*/
    transform-origin: center;
}

.navbar-toggler-icon::after {
    display: block;
    background-color: var(--bs-gray-800);
    height: 3px;
    content: "";
    position: relative;
    top: 4px;
    transition: all 0.35s ease-out;
    transform-origin: center;
}

.navbar-dark .navbar-toggler-icon,
.navbar-dark .navbar-toggler-icon::before,
.navbar-dark .navbar-toggler-icon::after {
    background-color: var(--bs-gray-100);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    transform: rotate(-90deg) translateX(7px);
}


/* main ---------- */
#main {
    overflow: hidden;
    max-height: 800px;
}

#main .main-tri {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

#main .main-p {
    position: absolute;
    width: 50%;
    top: 20%;
    left: 25%;
}

#main .main-date {
    position: absolute;
    width: 7.5%;
    left: 11%;
    top: 10%;
}

#main .main-title {
    position: absolute;
    width: 10%;
    left: 55%;
    top: 10%;
}

#main .Item-Meet {
    position: absolute;
    width: 33%;
    left: 55%;
    top: 30%;
}

#main .Item-Pacific {
    position: absolute;
    width: 28%;
    left: 60%;
    top: 50%;
}

#main .logo-bg {
    position: absolute;
    bottom: 0;
    left: 0;
}

@media (max-width: 1600px) {

    #main .main-date {
        width: 8%;
        left: 12%;
        top: 10%;
    }
}

@media (max-width: 1440px) {
    #main .main-p {
        width: 50%;
        top: 20%;
        left: 25%;
    }

    #main .main-date {
        width: 9%;
        left: 11.5%;
        top: 12%;
    }
}

@media (max-width: 768px) {
    #main {
        overflow: hidden;
        max-height: 680px;
    }

    #main .main-p {
        width: 90%;
        top: 5%;
        left: 5%;
    }

    #main .main-tri {
        position: absolute;
        width: 100%;
        top: 5%;
        left: 0%;
    }

    #main .main-date {
        width: 15%;
        left: 5%;
        top: 5%;
    }

    #main .Item-Meet {
        width: 45%;
        left: 5%;
        top: 70%;
    }

    #main .Item-Pacific {
        width: 40%;
        left: 55%;
        top: 73%;
    }

    #main .main-title {
        width: 25%;
        left: 70%;
        top: 5%;
    }
}


/* info ---------- */

#info {
    background-image: url(../../images/item_bg2.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
}

#info .container {
    padding: 0 50px;
}

#info .info-title h2 {
    font-family: 'Termina Test', 'Noto Sans TC', sans-serif;
    font-size: 60px;
    line-height: 60px;
}

#info .infoimg {
    object-fit: cover;
    overflow: hidden;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    max-width: 120px;
    max-height: 120px;
}

#info .infoimg01 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
    top: 0%;
    left: 0%;
    z-index: 5;
    transform: scale(1.2);
}

#info .infoimg02 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
    top: 0%;
    left: 0%;
    z-index: 3;
    transform: scale(1.2);
}

#info .infoimg03 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
    top: 0%;
    left: 0%;
    z-index: 1;
    transform: scale(1.2);
}

#InfoImgBox:hover .infoimg01 {
    left: -5%;
    top: 5%;
    transition: .15s all linear;
}

#InfoImgBox:hover .infoimg02 {
    left: 1%;
    top: -5%;
    transition: .15s all linear;
}

#InfoImgBox:hover .infoimg03 {
    left: 5%;
    top: -3%;
    transition: .15s all linear;
}

@media (max-width: 768px) {
    #info {
        padding: 3rem 0 0;
        background-image: url(../../images/item_bg2.jpg);
        background-position: bottom right;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #info .info-title h2 {
        font-size: 36px;
        line-height: 36px;
    }

    #info .unit-title h2 {
        font-size: 18px;
    }

    #info .unit-title h3 {
        font-size: 16px;
    }

    #info .infoimg {
        border-radius: unset;
        max-width: 120px;
        max-height: 120px;
        margin-right: 6px;
    }

    #info #InfoImgBox {
        height: 150px;
    }

    /* #info .infoimg01 {
        width: 85px;
        height: 85px;
        top: 0%;
        left: 4%;
    }

    #info .infoimg02 {
        width: 120px;
        height: 120px;
        left: 23%;
        top: 40%;
    }

    #info .infoimg03 {
        width: 95px;
        height: 95px;
        top: 0%;
        left: 54%;
    }

    #info .infoimg04 {
        width: 65px;
        height: 65px;
        bottom: 0%;
        right: 4%;
    } */

    #info .container {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        width: 100%;
        padding-right: calc(var(--bs-gutter-x)* .5);
        padding-left: calc(var(--bs-gutter-x)* .5);
        margin-right: auto;
        margin-left: auto;
    }
}

/* benefits ---------- */
#benefits {
    background: url(../../images/benefit-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}


#benefits .line.line-1 {
    top: 0;
    left: calc(50vw + 260px);
    width: 100%;
    height: 2px;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#benefits .line.line-2 {
    top: 9.75rem;
    left: 0;
    width: 100%;
    height: 2px;
}

#benefits .line.line-3 {
    top: 0;
    right: 7%;
    width: 2px;
    height: 100%;
}

@media (max-width: 1440px) {
    #benefits .line.line-1 {
        display: none;
    }

    #benefits .line.line-2 {
        top: 14%;
    }

    #benefits .line.line-3 {
        top: 0;
        right: 2%;
    }
}

#benefits .container-fluid span,
#benefits .container-xs span,
#benefits .container-sm span,
#benefits .container-md span,
#benefits .container-lg span,
#benefits .container-xl span {
    display: block;
    position: absolute;
}

#benefits .line {
    background-color: #ffffff;
}

#benefits {
    color: var(--white-color);
}

/* #benefits .card h2,
#benefits .card h4 {
    text-shadow: 0px 0px 6px #494949;
} */

#benefits .card h4 {
    font-weight: 400;
}

#benefits .benefit-subtitle {
    background-color: #1e1e1e;
    padding: 6px 12px;
    color: #31FFF4;
    font-weight: 400;
}

#benefits .benefit-subtitle.text-yellow {
    color: #FFF800;
}

#benefits .sub-t h4 {
    margin: 2rem auto;
}

#benefits .card {
    padding: 3.5rem 0;
    border: 0;
    box-shadow: 0 0 6px #49494944;
    background-position: center;
    background-size: cover;
    transform: scale(0.97);
}

#benefits .card01 {
    background-image: linear-gradient(to bottom right, #3e7effd2, #5890ffbd), url(../../images/event01.jpg);
    margin-bottom: 6px;
}

#benefits .card02 {
    background-image: linear-gradient(to bottom right, #3e7effd2, #5890ffbd), url(../../images/event02.jpg);
    margin-bottom: 6px;
}

#benefits .card03 {
    background-image: linear-gradient(to bottom right, #3e7effd2, #5890ffbd), url(../../images/event03.jpg);
    margin-bottom: 6px;
}

#benefits .card04 {
    background-image: linear-gradient(to bottom right, #3e7effd2, #5890ffbd), url(../../images/event04.jpg);
    margin-bottom: 6px;
}

#benefits .card05 {
    background-image: linear-gradient(to bottom right, #3e7effd2, #5890ffbd), url(../../images/event05.jpg);
    margin-bottom: 6px;
}

#benefits .card06 {
    background-image: linear-gradient(to bottom right, #ffdd00ba, #fffb7ccd), url(../../images/event06.jpg);
}

#benefits .card07 {
    background-image: linear-gradient(to bottom right, #ffdd00ba, #fffb7ccd), url(../../images/event07.jpg);
}

#benefits .card08 {
    background-image: linear-gradient(to bottom right, #ffdd00ba, #fffb7ccd), url(../../images/event08.jpg);
}

/* theme */

#theme {
    background: url(../../images/meetpacific-bg.png), url(../../images/theme-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%, 100%;
}

.theme-card h3,
.theme-card h5 {
    padding: 0;
    margin: 0;
}

.theme-card h5 {
    font-weight: 300;
}

.theme-card .txt-en {
    font-family: 'Termina Test', 'Noto Sans TC', sans-serif;
}

.theme01,
.theme02,
.theme03,
.theme04 {
    position: relative;
}


.theme01 img,
.theme02 img,
.theme03 img,
.theme04 img {
    position: absolute;
    top: 0;
    right: 0;
}

.theme01-info {
    color: #E4007F;
}

.theme02-info {
    color: #81D464;
}

.theme03-info {
    color: #161573;
}

.theme04-info {
    color: #F8B62D;
}

.txt-black {
    color: var(--black-color);
}

@media (max-width: 768px) {
    #theme {
        background-position: center, right;
        background-repeat: no-repeat, repeat;
        background-size: 75%, 200%;
    }

    .theme01,
    .theme02,
    .theme03,
    .theme04 {
        height: 100px;
    }


    .theme01::before,
    .theme02::before,
    .theme03::before,
    .theme04::before {
        border-radius: unset;
        width: 100%;
        height: 30px;
        bottom: 0;
    }
}

/* plans ---------- */
#plans {
    background-color: var(--white-color);
    position: relative;
}

#plans .container {
    position: relative;
}

#plans::before {
    background: url(../../images/item_bg3.png);
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 80px;
    height: 721px;
}

#plans .item-head {
    background-color: #F2F2F2;
}

#plans .item-head h2 {
    color: var(--black-color);
}

#plans .tagBlack {
    background-color: var(--black-color);
    color: var(--white-color);
    border-radius: 5rem;
    font-size: 1rem;
    padding: .5rem .75rem;
}

#plans img {
    height: 35%;
    object-fit: cover;
}

#plans .label {
    display: flex;
    flex-direction: column;
    gap: .3125rem;
    background-image: linear-gradient(to bottom, #F2F2F2, var(--white-color));
}

#plans .label .hlight01 {
    background-image: linear-gradient(to right, var(--meet-color), var(--white-color));
    font-weight: 400;
}

#plans .label .hlight02 {
    background-image: linear-gradient(to left, #31FFF4, var(--white-color));
    color: var(--black-color);
    font-weight: 400;
}

#plans .label .hlight03 {
    background-color: #31FFF4;
    color: var(--black-color);
    font-weight: 400;
}

#plans .hlight03-mob {
    background-color: #31FFF4;
    font-weight: 400;
}

#plans .col-span-2 {
    width: calc(200% + 10px);
    transform: translateX(calc(50%));
}

#plans .col-span-3 {
    width: calc(300% + 1rem);
}

#plans .plan01 {
    z-index: 10;
}

#plans .label2 h5 {
    opacity: 0;
}

#plans .price {
    position: relative;
    text-align: center;
}

#plans .price h2 {
    font-family: "Poppins", "Belanosima", "Segoe UI", Roboto, 'Noto Sans TC', "微軟正黑體", sans-serif;
    letter-spacing: 1px;
    position: relative;
    z-index: 5;
}

#plans .price::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 20px;
    bottom: 0;
    left: calc(20%);
    background-color: #31FFF4;
    z-index: 1;
}

@media (max-width: 768px) {
    #plans .label {
        display: none;
    }

    #plans img {
        height: 45%;
    }

    #plans::before {
        display: none;
    }
}



/* btn-link ---------- */
#btn-link {
    background-color: #EAEAEA;
    padding: 2rem 0;
}

#btn-link a {
    text-align: center;
    align-content: center;
    border-radius: 3rem;
    padding: .5rem;
    border: 6px solid #EAEAEA;
    font-size: 18px;
    letter-spacing: 1px;
}

#btn-link a:hover {
    background-color: var(--sub-color);
    border: 6px solid #EAEAEA;
    font-size: 18px;
    letter-spacing: 1px;
}


/* Registration ---------- */
#Registration {
    background-color: var(--white-color);
}

#Registration .accordion-item {
    border: unset;
}

#Registration .accordion-body h5.step {
    color: #717171;
    font-weight: 300;
    padding: 0;
}

#Registration .accordion-body h4 {
    color: var(--meet-color);
}

#Registration .accordion-body .plan-img a {
    overflow: hidden;
}

#Registration .accordion-body .plan-img a img {
    filter: brightness(0.7);
}

#Registration .accordion-body .plan-img a:hover img {
    transform: scale(1.05);
    filter: brightness(1);
    transition: .25s all linear;
}


/* Notice ---------- */
#Notice {
    background-color: var(--white-color);
    position: relative;
}

#Notice .container {
    position: relative;
}

#Notice::before {
    background: url(../../images/item_bg3.png);
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 80px;
    height: 721px;
    transform: rotate(180deg);
}

#Notice .accordion-item {
    border: unset;
    background: transparent;
}

#Notice ul {
    list-style: decimal-leading-zero;
}

#Notice ul li p {
    font-size: 1rem;
}

#Notice ul li p a {
    background-color: #727272;
    color: var(--white-color);
    padding: 6px 12px;
}

#Notice ul li p a:hover {
    background-color: var(--sub-color);
    transition: .25s all linear;
}

@media (max-width: 768px) {
    #Notice::before {
        display: none;
    }
}

/* CTA ---------- */
#CTA a {
    background-color: var(--main-color);
    margin: auto;
    justify-content: center;
    max-width: 270px;
    padding: 0.9rem !important;
    border-radius: 0.75rem;
    font-size: 21px;
    box-shadow: 0 0 0.5rem #00000020;
}

#CTA a:hover {
    background-color: #7ECEF4;
    box-shadow: 0 0 0rem var(--white-color);
    transition: .25s all linear;
}

/* footer ---------- */
footer {
    background-color: #727272;
}

footer ul {
    list-style: none;
    color: #F5F5F5;
    font-size: 14px;
    font-weight: 100;
    padding: 1.5rem 0;
    margin: 0;
    letter-spacing: 1px;
    font-family: 'Roboto Flex', sans-serif;
}

footer ul a {
    color: #F5F5F5;
    text-decoration: underline;
}


/* BG-forest ---------- */

#BG-forest {
    background-image: url(../../images/bg2.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

/* copyright ---------- */
#copyright {
    font-size: 14px;
    font-weight: 100;
    color: #F5F5F5;
    background-color: #494949;
    padding-bottom: 2rem;
}

#copyright>div {
    font-family: 'Roboto Flex', sans-serif;
}

@media (max-width: 768px) {
    #copyright {
        padding-bottom: 3rem;
    }

}

/* adbtn1---------- */

@media (max-width: 768px) {
    .adbtn1 {
        padding: 0px;
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 99;
        width: 100%;
    }

    .adbtn1 .nav-ticket-btn {
        background-color: var(--meet-color);
        color: var(--white-color);
        font-weight: 700;
        padding: 1rem .75rem !important;
        transition-duration: .5s;
        justify-content: center;
        border-radius: 1rem 1rem 0 0;
    }

}