@import url(reset.css);
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Roboto', 'Arial Narrow', Arial, sans-serif;
    background-color: #F9EFDC;
    padding-top: 80px;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #F9EFDC;
}

.footer {
    max-width: 1200px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

.cartTab {
    width: 400px;
    background-color: #F9EFDC;
    border: 1.5px solid #000000;
    border-radius: 16px;
    position: fixed;
    top: 80px;
    right: -403px;
    bottom: 0;
    z-index: 10000;
    display: grid;
    grid-template-rows: 60px 1fr 60px;
    transition: .5s;
}

body.showCart .cartTab {
    transform: translate(-403px);
}

.cart-container {
    display: none;
}

body.showCart .cart-container {
    display: block;
}


.cartTab h2 {
    font-family: 'Roboto';
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 24px 0 16px;
}

.cart-btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.cart-btn button,
.cart-btn button a {
    display: block;
    height: 60px;
    line-height: 60px;
    text-decoration: none;
    color: #000000;
    font-family: 'Roboto';
    font-size: 16px;
    background-color: #F9EFDC;
    border: none;
    border-radius: 0 0 0 16px;
}


.cart-btn button:last-child {
    border-radius: 0 0 16px 0;
}

.cart-btn button:hover,
.cart-btn button a:hover {
    color: #0077B6;
    cursor: pointer;
}

.cartTab .listCart .item img {
    width: 80%;
    border-radius: 50%;
}

.cartTab .listCart .item {
    padding: 0 12px 0 14px;
    display: grid;
    grid-template-columns: 60px 150px 50px 1fr;
    gap: 6px;
    align-items: center;
    text-align: center;
    margin: 12px 0;
}

.listCart .quantity span {
    text-align: center;
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 1.5;
    cursor: pointer;
}

.listCart .quantity span:hover {
    color: #0077B6;
}

.listCart .quantity span:nth-child(2) {
    border: 1px solid #000000;
}

/* .listCart .item:nth-child(even) {
    background-color: #55C6A9;
} */


.listCart {
    overflow: auto;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0.2;
    }

    40% {
        opacity: 0.4;
    }

    60% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 393px) {
    .sec-h1 {
        font-size: 24px;
    }

    .sec-p {
        font-size: 20px;
    }

    .cartTab {
        width: 90vw;
    }

    .cartTab .listCart .item {
        padding: 0 4px 0 16px;
        grid-template-columns: 60px 120px 40px 1fr;
    }

}

/* --------------------------- header/nav --------------------------- */

header {
    height: 80px;
    background-color: #F9EFDC;
}

nav {
    max-width: 1200px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F9EFDC;
    margin: 0 auto;
}

.nav-bar {
    width: auto;
    display: flex;
    align-items: center;
    gap: 24px;

    margin-left: auto;
    padding-right: 24px;
}

@media (max-width: 960px) {

    .nav-bar {
        display: none;
    }
}

.nav-pages {
    width: 612px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-pages a {
    line-height: 24px;
    font-size: 16px;
    text-decoration: none;
    color: #000000;
    height: 24px;

    position: relative;
    display: inline-block;
    padding-bottom: 3px;
}

.nav-pages a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #000000;
    transition: width 0.5s ease-in-out;
}

.nav-pages a:hover::after {
    width: 100%;
    left: 0;
}

.nav-pages a.active {
    color: #0077B6
}

.icon-user a,
.icon-cart {
    color: #000000;
    font-size: 20px;
    height: 24px;
    margin-right: 16px;
}

.icon-user a:hover,
.icon-cart:hover {
    color: #0077B6;
    cursor: pointer;
}

.icon-cart {
    position: relative;
}

.cart-count {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    text-decoration: none;
    background-color: #FFC857;
    padding: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    top: 7px;
    right: -10px;
}

/* --------------------------- hamburger --------------------------- */

.hamburger {
    display: none;
    width: auto;
    margin-left: auto;
}

@media (max-width: 960px) {
    .hamburger {
        display: block;
    }
}

.menu {
    cursor: pointer;
    padding: 10px;
}

.bar {
    width: 26px;
    height: 2.5px;
    background-color: #000;
    margin: 6px 12px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.menu.active .bar1 {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.menu.active .bar2 {
    opacity: 0;
}

.menu.active .bar3 {
    transform: rotate(45deg) translate(-6px, -6px);
}

.dropdown {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: auto;
    background-color: #F9EFDC;
    margin: 0;
}

.dropdown.active {
    display: block;
}

.dropdown li a {
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 20px;
    padding: 36px;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown li a:hover {
    background-color: #FFC857;
    color: #0077B6;
}


/* --------------------------- header/banner --------------------------- */

.banner {
    max-width: 1200px;
    height: 36vw;

    position: relative;
}

.banner-background {
    position: absolute;
    z-index: 1;
}

.banner-frame {
    position: absolute;
    z-index: 2;

    display: hidden;
    animation: fadeIn 2.3s ease-in;
}

.banner-s,
.banner-m,
.banner-l,
.banner-xl {
    max-width: 100vw;
}

/* --------------------------- the_festival_main/lineup --------------------------- */

.lineUp {
    padding: 60px;
    margin: 0 auto;
    box-sizing: border-box;

    /* border: 1px solid #000000; */
}

@media (max-width: 1240px) {
    .lineUp {
        margin-top: 80px;
        padding: 60px 36px;
    }
}

@media (max-width: 900px) {
    .lineUp {
        margin-top: 60px;
        padding: 60px 36px;
    }
}

@media (max-width: 820px) {
    .lineUp {
        margin-top: 100px;
        padding: 60px 28px;
    }
}

@media (max-width: 600px) {
    .lineUp {
        margin-top: 80px;
        padding: 60px 20px;
    }
}

@media (max-width: 430px) {
    .lineUp {
        margin-top: 140px;
        padding: 60px 12px;
    }
}

.lineUp-bar {
    max-width: 1200px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lineUp-h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-left: 8px;
}

@media (max-width: 820px) {
    .lineUp-h1 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .lineUp-h1 {
        font-size: 28px;
    }
}

@media (max-width: 430px) {
    .lineUp-h1 {
        font-size: 24px;
    }
}


.lineUp-bar a {
    color: #000000;
    display: block;
    height: 24px;
    line-height: 24px;
    text-decoration: none;
}

.lineUp-bar a:hover {
    color: #0077B6;
    border-bottom: 1.5px solid #0077B6;
}

@media (max-width: 430px) {
    .lineUp-bar a {
        font-size: 14px;
    }

    .lineUp-bar a:hover {
        border: none;
        text-decoration: underline;
    }

}

.lineUp-names {
    font-size: 24px;
    font-weight: 300;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 900px) {

    .lineUp-names {
        flex-direction: column;
    }
}

@media (max-width: 820px) {
    .lineUp-names {
        font-size: 20px;
    }
}


.lineUp-names a {
    text-decoration: none;
    color: #000000;
    border-right: 1.5px solid #000000;
    margin: 8px;
    padding-right: 16px;
}

@media (max-width: 900px) {

    .lineUp-names a {
        border-right: none;
    }
}

.lineUp-names a:hover {
    color: #757575;
}

/* --------------------------- the_festival_main/countdown --------------------------- */

.countdown {
    /* border: 1px solid #000000; */

    margin-top: 80px;
    padding: 40px;
    height: 100px;
    border-top: 1.5px solid #ababab;
    border-bottom: 1.5px solid #ababab;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1080px) {

    .countdown {
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 60px;
    }
}

@media screen and (max-width: 750px) {
    .countdown {
        padding: 80px;
    }
}

@media screen and (max-width: 390px) {
    .countdown {
        padding: 60px;
        gap: 12px;
    }

}

.countdown h1 {
    font-size: 32px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .countdown h1 {
        font-size: 28px;
    }
}

@media (max-width: 390px) {
    .countdown h1 {
        font-size: 24px;
    }
}

#timer {
    font-size: 24px;
    font-weight: 300;
    display: flex;
}

@media (max-width: 600px) {
    #timer {
        font-size: 20px;
    }
}

@media (max-width: 390px) {
    #timer {
        font-size: 16px;
    }
}

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

    .timer-unit {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 16px;
    }

}

#days,
#hours,
#minutes,
#seconds {
    padding: 16px;
    font-size: 40px;
    color: #0077B6;
    font-weight: 500;
}

@media (max-width: 820px) {

    #days,
    #hours,
    #minutes,
    #seconds {
        font-size: 32px;
    }
}

@media (max-width: 600px) {

    #days,
    #hours,
    #minutes,
    #seconds {
        font-size: 28px;
    }
}

@media (max-width: 390px) {

    #days,
    #hours,
    #minutes,
    #seconds {
        font-size: 24px;
    }
}

.countdown a {
    display: block;
    width: 200px;
    height: 48px;
    line-height: 48px;
    background-color: #FFC857;
    text-decoration: none;
    color: #000000;
    text-align: center;
    font-size: 16px;
    border-radius: 9999px;
}

@media screen and (max-width: 750px) {
    .countdown a {
        margin-top: 8px;
    }
}


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

    .countdown a {
        width: 160px;
        height: 36px;
        line-height: 36px;
        font-size: 14px;
    }
}

.countdown a:hover {
    background-color: #FFA67E;
    transform: scale(1.05);
}


/* --------------------------- the_festival_main/aboutUs --------------------------- */

.aboutUs {
    /* border: 1px solid #000000; */

    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 955px) {
    .aboutUs {
        flex-direction: column;
    }
}

.aboutUs img {
    width: 100%;
    /* border: 1px solid #000000; */
}

@media (max-width: 955px) {
    .aboutUs img {
        width: 76vw;
    }
}

.aboutUs-text {
    width: 600px;
    padding: 56px;
    padding-bottom: 28px;

    /* border: 1px solid #000000; */
}

@media (max-width: 955px) {
    .aboutUs-text {
        text-align: center;
        width: 76vw;
        padding: 28px 0 32px;
    }

    /* .aboutUs-text p {
        text-align:left;
    } */
}

.aboutUs-text h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 8px;
}

.aboutUs-text h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.aboutUs-text p {
    font-size: 16px;
    line-height: 20px;
}

@media (max-width: 1117px) {
    .aboutUs-text h1 {
        font-size: 36px;
    }

    .aboutUs-text h2 {
        font-size: 24px;
    }

}

@media (max-width: 1060px) {
    .aboutUs-text h1 {
        font-size: 32px;
    }

    .aboutUs-text h2 {
        font-size: 20px;
    }

}

@media (max-width: 820px) {
    .aboutUs-text h1 {
        font-size: 28px;
    }

    .aboutUs-text h2 {
        font-size: 20px;
    }

}

@media (max-width: 600px) {
    .aboutUs img {
        width: 90vw;
    }

    .aboutUs-text {
        width: 90vw;
    }

    .aboutUs-text h1 {
        font-size: 24px;
    }

    .aboutUs-text h2 {
        font-size: 20px;
    }

}

@media (max-width: 420px) {
    .aboutUs-text h1 {
        font-size: 20px;
    }

    .aboutUs-text h2 {
        font-size: 16px;
    }

    .aboutUs-text p {
        font-size: 14px;
    }
}

/* --------------------------- the_festival_main/pastEvents --------------------------- */

.pastEvents {
    /* border: 1px solid #000000; */

    margin: 180px 0;
    /* padding: 40px 0 180px; */
}

.pastEvents h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 60px;
}

@media screen and (max-width: 1200px) {
    .pastEvents h1 {
        padding-left: 36px;
    }
}

.event {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.event h3 {
    font-size: 36px;
    font-weight: bold;
}

.event img {
    display: block;
    width: 65%;
    border-radius: 16px;
    -webkit-filter: sepia(70%);
}

.event img:hover {
    -webkit-filter: sepia(0%);
}

@media (max-width: 1117px) {
    .pastEvents h1 {
        font-size: 36px;
    }

    .event h3 {
        font-size: 32px;
    }

    .event img {
        -webkit-filter: none;
    }

}

@media (max-width: 1060px) {
    .pastEvents h1 {
        font-size: 32px;
    }

    .event h3 {
        font-size: 28px;
    }

}

@media screen and (max-width: 955px) {
    .event {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .event h3 {
        order: 1;
    }

    .event img {
        width: 90%;
    }

}

@media (max-width: 820px) {
    .pastEvents h1 {
        font-size: 28px;
    }

    .event h3 {
        font-size: 24px;
    }

}

@media (max-width: 600px) {

    .pastEvents h1 {
        font-size: 24px;
    }

    .event h3 {
        font-size: 20px;
    }

}

@media (max-width: 397px) {
    .pastEvents {
        margin: 60px 0;
    }

    .pastEvents h1 {
        font-size: 20px;
    }

    .event h3 {
        font-size: 16px;
    }
}


/* --------------------------- footer/sponsors --------------------------- */

footer {
    margin-top: 30px;
}

.sponsors {
    width: 100%;
    overflow: hidden;
    position: relative;

    /* margin-top: 120px; */
}

.sponsors-logo {
    display: flex;
    width: calc(120px * 10);
    /* 圖片寬度 * 圖片數量 */
    animation: sponsors-logo 30s linear infinite;
}

@keyframes sponsors-logo {
    0% {
        transform: translateX(0);
    }

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

.sponsors-logo img {
    width: 80px;
    height: 80px;
    margin-right: 40px;
}


/* 滑鼠懸停時暫停動畫 */
.logo-carousel:hover .sponsors-logo {
    animation-play-state: paused;
}




/* --------------------------- footer/bar --------------------------- */

.footer-bar {
    /* border: 1px solid blue; */
    margin: 48px 0;
    display: flex;
    justify-content: center;
    gap: 200px;
    align-items: center;
}

@media screen and (max-width: 1138px) {
    .footer-bar {
        gap: 150px;
    }
}

@media screen and (max-width: 1010px) {
    .footer-bar {
        gap: 100px;
    }
}

@media screen and (max-width: 920px) {
    .footer-bar {
        gap: 60px;
    }
}

@media screen and (max-width: 850px) {
    .footer-bar {
        gap: 20px;
    }
}

@media screen and (max-width: 760px) {
    .footer-bar {
        flex-direction: column;
        padding: 16px 0;
        text-align: center;
    }

    .footer-icons {
        order: 3;
    }

    .footer-subscription {
        order: 1;
    }

    .footer-list {
        order: 2;
        width: 100%;
        padding: 8px 0;
    }
}


.footer-icons i {
    font-size: 20px;
    padding: 0 8px;
    margin-bottom: 8px;
    color: #000000;
}

.footer-icons i:hover {
    color: #FFC857;
}

.footer-copyright p {
    text-indent: 8px;
    line-height: 20px;
}


.footer-subscription input {
    width: 250px;
    height: 32px;
    border: 1.5px solid #757575;
    border-radius: 8px;
    background-color: #F9EFDC;

    font-family: 'Roboto';
    font-size: 16px;
    text-indent: 8px;
    box-sizing: border-box;
    margin-top: 8px;
}

.footer-subscription button {
    height: 32px;
    border: 1.5px solid #757575;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    box-sizing: border-box;
    background-color: #F9EFDC;
    margin-top: 8px;
    font-family: 'Roboto';
    cursor: pointer;
}

@media screen and (max-width: 760px) {
    .footer-subscription input {
        width: 200px;
    }
}


.footer-subscription button:hover {
    background-color: #FFA67E;
    border: 1.5px solid #FFA67E;
}

.footer-list a {
    text-decoration: none;
    line-height: 20px;
    color: #000000;
}

.footer-list a:hover {
    text-decoration: underline;
    color: #757575;
}

.footer-logo {
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .footer-logo img {
        display: none;
    }
}


.footer-bottom {
    position: relative;
    width: 100%;
}

/* --------------------------- Program_main/news --------------------------- */

.news {
    padding: 60px;
    animation: fadeIn 0.5s ease-in-out;
}

.news h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 32px;
}

.news-cards {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.news h2 {
    font-size: 20px;
    font-weight: 500;
}

.news p {
    font-size: 16px;
    line-height: 18px;
}

.news span {
    font-weight: bold;
}

.news-card {
    width: 350px;
    aspect-ratio: 1/0.6;
    border: 1.5px solid #757575;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-card:hover {
    background-color: #FFC857;
}

.news-up {
    display: flex;

    /* border: 1px solid #000000 */
}

.news-up img {
    width: 80px;
    border-radius: 50%;
    margin-right: 16px;
    border: 2px solid #757575;
}


.news-down {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;

    text-align: right;

    /* border: 1px solid #000000; */
}

.news-cards a {
    text-decoration: none;
    color: #0077B6;
    font-weight: bold;
}

.news-cards a:hover {
    text-decoration: underline;
}


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

    .news h2 {
        padding: 16px;
        display: none;
    }


    .news-up {
        flex-direction: column;
        text-align: center;
    }

    .news-down {
        margin-top: 16px;
    }

    .news-up img {
        margin: 0 auto;
        width: 40%;
    }

    .news-down p,
    .news-down a {
        text-align: left;
    }

}

@media screen and (max-width: 1000px) {
    .news-cards {
        flex-direction: column;
        align-items: center;
    }
}

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

    .news h1 {
        font-size: 28px;
    }

    .news-card {
        width: 60vw;
    }

}

@media screen and (max-width: 400px) {
    .news-up img {
        margin: 0 auto;
        width: 50%;
    }

}

/* --------------------------- Program_main/program --------------------------- */

.program {
    margin-bottom: 60px;
    animation: fadeIn 0.5s ease-in-out;
}


.program h1 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    padding: 60px 0 30px;
}

table {
    margin: 0 auto;
    font-size: 20px;
    line-height: 20px;
    font-weight: 300;
    text-align: center;
    border: 3px solid #000000;
}

tr {
    border: 3px solid #000000;
    transition: background-color 1.5s .05s ease;
}

tr:hover {
    background-color: #FFC857;
}

td {
    line-height: 54px;
    padding: 0 54px;
}

#table-title {
    font-weight: 500;
}

#table-time,
#table-day1,
#table-day2 {
    width: 280px;
    border: 3px solid #000000;
    padding: 16px;
    background-color: #FFA67E;
}

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

    table {
        width: 95vw;
    }

    #table-time,
    #table-day1,
    #table-day2 {
        width: 25vw;
        padding: 0 8px;
    }

    td {
        line-height: 36px;
        padding: 0 8px;
    }

    td:nth-child(1) {
        width: 25%;
    }

}

@media screen and (max-width: 680px) {
    table {
        font-size: 18px;
    }

    td {
        line-height: 24px;
        padding: 0 4px;
    }
}

@media screen and (max-width: 600px) {
    .program h1 {
        font-size: 28px;
    }

    table {
        font-size: 16px;
    }
}

@media screen and (max-width: 460px) {
    .program h1 {
        font-size: 24px;
    }

    table {
        font-size: 14px;
    }
}


/* --------------------------- Program_main/transportation --------------------------- */

.transport {
    padding-top: 60px;
    padding-bottom: 120px;
}

.transport h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 32px;
    padding-left: 24px;
}

.transport-bar {
    display: flex;
    justify-content: space-around;
}

.transport-text p {
    padding: 0 24px;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
}

.transport-ways {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    text-indent: 8px;
}

.transport-map iframe {
    width: 500px;
    height: 450px;
}

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

    .transport-bar {
        flex-direction: column;
        align-items: center;
    }

    .transport-text {
        margin-bottom: 24px;
        text-align: center;
    }


}

@media screen and (max-width: 600px) {
    .transport h1 {
        font-size: 28px;
    }


    .transport-ways {
        font-size: 16px;
    }

    .transport-map iframe {
        width: 80vw;
        height: 50vw;
    }

}

@media screen and (max-width: 445px) {
    .transport h1 {
        font-size: 24px;
    }

    .transport-text p {
        font-size: 16px;
    }

    .transport-ways {
        font-size: 14px;
    }

    .transport-text p {
        padding: 0 20px;
    }
}


/* --------------------------- artist/header --------------------------- */

.artist-header {
    position: relative;
    max-width: 1200px;
    height: 300px;

    display: hidden;
    animation: fadeIn 0.5s ease-in-out;
}

.artist-header h1 {
    font-size: 48px;
    font-weight: bold;
    border-bottom: 3px solid #000000;
    width: 80%;
    padding: 24px 0;

    position: absolute;
    top: 170px;
    left: 5.5%;
}

.artist-header h1:hover {
    color: #55C6A9;
    border-bottom: 3px solid #55C6A9;
}

.artist-logo {
    width: 280px;
    position: absolute;
    top: 0;
    right: 5%;
}



@media screen and (max-width: 828px) {
    .artist-header h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 650px) {
    .artist-header h1 {
        font-size: 36px;
    }

    .artist-logo {
        width: 250px;
        top: 15px;
    }
}

@media screen and (max-width: 555px) {
    .artist-header h1 {
        width: 70vw;
        font-size: 32px;
    }

    .artist-logo {
        width: 230px;
        top: 30px;
    }
}

@media screen and (max-width: 446px) {
    .artist-header {
        height: 200px;
    }

    .artist-header h1 {
        font-size: 28px;

        top: 100px;
        left: 7%;
    }

    .artist-logo {
        width: 180px;
        top: 5px;
    }
}


/* --------------------------- artist_main/artist-cards --------------------------- */

.artists-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 1104px;
    margin: 0 auto;
    padding-bottom: 120px;
}

.artists {
    perspective: 1000px;
    width: 260px;
    height: 300px;

    margin: 8px;
}

.artist-cards {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s;
}

.artist-cards.flip {
    transform: rotateY(180deg);
}

.artist-front,
.artist-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;

    cursor: pointer;
}

.artist-front {
    border-radius: 8px;
    background-color: #55C6A9;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.artist-front:hover {
    opacity: 0.7;
}

.artist-back {
    border-radius: 8px;
    background-color: #FFA67E;
    transform: rotateY(180deg);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.artist-front img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
}

.artist-front h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 8px;
}

.artist-back h3 {
    font-size: 20px;
    font-weight: 500;

}

.artist-back i {
    font-size: 24px;
    color: #000000;
}

.artist-back i:hover {
    color: #55C6A9;
}

#artist-caption {
    padding: 0 36px;
    font-size: 14px;
    line-height: 1.3;
}

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

    .artists-wall {
        justify-content: center;
    }

}

/* --------------------------- tickets/header --------------------------- */

.tickets-header {
    padding-top: 100px;

    display: hidden;
    animation: fadeIn 0.5s ease-in-out;
}

.tickets-header h1 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 3px solid #000000;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 36px;
}

.tickets-header h1:hover {
    color: #0077B6;
    border-bottom: 3px solid #0077B6;
}


@media screen and (max-width: 820px) {
    .tickets-header h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 600px) {
    .tickets-header h1 {
        font-size: 32px;
    }
}

@media screen and (max-width: 430px) {
    .tickets-header h1 {
        font-size: 28px;
    }

}


/* --------------------------- tickets_main/cards --------------------------- */

.ticket-cards {
    margin: 60px;
    display: flex;
    justify-content: center;
}

.ticket {
    width: 250px;
    border-radius: 16px;
    padding: 28px 36px;
    box-sizing: border-box;
    margin: 0 24px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 32px;

    background-image: linear-gradient(225deg, #0077B6 20%, #FFC857 50%, #55C6A9 80%);
    border: 3px solid #000000;

    animation: fadeIn 0.5s ease-in-out;
}

.ticket:hover {
    transform: translate(0, -10px);
}

.ticket h3,
.ticket-price {
    font-weight: 450;
    text-align: center;
    color: #fff;
}

.ticket h3 {
    font-size: 20px;
    line-height: 24px;
}

.ticket-price {

    width: 100px;
    height: 100px;
    font-size: 24px;
    line-height: 80px;
    background-color: #FFA67E;
    border: 3px solid #F9EFDC;
    border-radius: 50%;
    padding: 8px 16px;
    box-sizing: border-box;
}

/* #day1-square,
#day2-square,
#day3-square {
    width: 100%;
    border-radius: 50%;
    border: 3px solid #757575;

    font-size: 24px;
    font-weight: 500;
    text-align: center;
    padding: 40px 0;
    box-sizing: border-box;
} */

#day3-square {
    padding: 32px 20px;
    box-sizing: border-box;
}

#day3-square span {
    font-size: 14px;
    font-weight: 400;
}

.ticket-btn {
    border-radius: 9999px;
    font-size: 16px;
    padding: 8px 0;
}

#day1-square,
#day1-btn {
    background-color: #FFC857;
    border: 3px solid #F9EFDC;
}

#day2-square,
#day2-btn {
    background-color: #55C6A9;
    border: 3px solid #F9EFDC;
}

#day3-square,
#day3-btn {
    background-color: #FFA67E;
    border: 3px solid #F9EFDC;
}



#day1-btn,
#day2-btn,
#day3-btn {
    width: 80%;
}


#day1-btn:hover,
#day2-btn:hover,
#day3-btn:hover {
    cursor: pointer;
    transform: scale(1.05);
}

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

    .ticket-cards {
        flex-direction: column;
        align-items: center;
        gap: 36px;
    }

}

/* --------------------------- tickets_main/floating-logo --------------------------- */

.logo-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;

    margin-top: 120px;
}

.floating-logo {
    display: flex;
    width: calc(185px * 6);
    /* 圖片寬度 * 圖片數量 */
    animation: floating-logo 10s linear infinite;
}

@keyframes floating-logo {
    0% {
        transform: translateX(0);
    }

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

.floating-logo img {
    width: 185px;
    height: auto;
}

.floating-logo img:hover {
    transform: rotate(-15deg);
}

/* 滑鼠懸停時暫停動畫 */
.logo-carousel:hover .floating-logo {
    animation-play-state: paused;
}

.icon-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.floating-icon {
    display: flex;
    width: calc(80px * 5);
    /* 圖片寬度 * 圖片數量 */
    animation: floating-icon 10s linear infinite;
}

@keyframes floating-icon {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.floating-icon img {
    width: 80px;
    height: auto;
}

.floating-icon img:hover {
    transform: rotate(180deg);
}

/* 滑鼠懸停時暫停動畫 */
.icon-carousel:hover .floating-icon {
    animation-play-state: paused;
}


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

    .floating-logo {
        display: flex;
        width: calc(155px * 6);
        /* 圖片寬度 * 圖片數量 */
        animation: floating-logo 10s linear infinite;
    }

    .floating-logo img {
        width: 155px;
    }

    .floating-icon {
        display: flex;
        width: calc(70px * 5);
        /* 圖片寬度 * 圖片數量 */
        animation: floating-icon 10s linear infinite;
    }

    .floating-icon img {
        width: 70px;
    }

}

@media screen and (max-width: 600px) {
    .floating-logo {
        display: flex;
        width: calc(125px * 6);
        /* 圖片寬度 * 圖片數量 */
        animation: floating-logo 10s linear infinite;
    }

    .floating-logo img {
        width: 125px;
    }

    .floating-icon {
        display: flex;
        width: calc(60px * 5);
        /* 圖片寬度 * 圖片數量 */
        animation: floating-icon 10s linear infinite;
    }

    .floating-icon img {
        width: 60px;
    }
}

@media screen and (max-width: 430px) {
    .floating-logo {
        display: flex;
        width: calc(95px * 6);
        /* 圖片寬度 * 圖片數量 */
        animation: floating-logo 10s linear infinite;
    }

    .floating-logo img {
        width: 95px;
    }

    .floating-icon {
        display: flex;
        width: calc(50px * 5);
        /* 圖片寬度 * 圖片數量 */
        animation: floating-icon 10s linear infinite;
    }

    .floating-icon img {
        width: 50px;
    }

    .logo-carousel {
        margin-top: 80px;
    }

}

/* --------------------------- tickets_main/infos --------------------------- */

.ticket-infos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0 120px;
}

.ticket-text {
    width: 500px;
    padding: 30px;
}

.ticket-text h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 8px;
}

.ticket-text p {
    font-size: 16px;
    line-height: 20px;
    padding: 0 36px 0 16px;
    margin: 16px 0;

    border-left: 3px dotted #000000;
}

.ticket-text h3 {
    font-size: 24px;
    margin: 8px 0;
    font-weight: 450;
}

.ticket-text span {
    font-weight: bold;
    text-decoration: underline;
}

.ticket-infos img {
    width: 435px;
    border-radius: 9999px;
}

@media screen and (max-width: 1000px) {
    .ticket-infos {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 820px) {
    .ticket-text h1 {
        font-size: 36px;
    }
}

@media screen and (max-width: 600px) {
    .ticket-text h1 {
        font-size: 32px;
    }
}

@media screen and (max-width: 550px) {
    .ticket-text {
        width: 80vw;
    }

    .ticket-infos img {
        width: 80vw;
    }
}

@media screen and (max-width: 460px) {
    .ticket-text h1 {
        font-size: 28px;
    }

    .ticket-text p {
        font-size: 14px;
    }

    .ticket-text h3 {
        font-size: 20px;
    }

    .ticket-infos {
        margin: 30px 0 120px;
    }

}

/* --------------------------- shop/header --------------------------- */

.shop-title h1 {
    width: 75%;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    border-bottom: 3px solid #000000;
    padding-bottom: 24px;
    margin: 100px auto 0;
}

.shop-title h1:hover {
    color: #FFA67E;
    border-bottom: 3px solid #FFA67E;
}

@media screen and (max-width: 820px) {
    .shop-title h1 {
        font-size: 40px;
        margin: 80px auto 0;
    }
}

@media screen and (max-width: 600px) {
    .shop-title h1 {
        font-size: 32px;
        margin: 60px auto 0;
    }
}

@media screen and (max-width: 430px) {
    .shop-title h1 {
        font-size: 28px;
    }

}

/* --------------------------- shop_main/products --------------------------- */

.shop-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;

    width: 964px;

    padding: 0 60px;
    margin: 48px auto 200px;
}

.shop-items {
    width: 20%;
    padding: 16px;
    text-align: center;
    line-height: 18px;

    border: 1.5px solid #ababab;
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.shop-items img {
    width: 100%;
    border-radius: 8px;
}

.shop-items img:hover {
    opacity: 0.7;
}

.shop-items button {
    width: 50%;
    border-radius: 9999px;
    font-size: 14px;
    padding: 4px 0;
    box-sizing: border-box;

    background-color: #FFC857;
}

.shop-items button:hover {
    background-color: #FFA67E;
    cursor: pointer;
}

.shop-wrapper {
    display: flex;
    align-items: center;

    /* max-width: 100%; */
}

.slide-left,
.slide-right,
.slidePlus-left,
.slidePlus-right {
    display: none;
    font-size: 20px;
    line-height: 28px;
    border-radius: 50%;
    border: none;
    background-color: #FFC857;
    cursor: pointer;
    margin: 32px;

    z-index: 500;
}


.slide-left:hover,
.slide-right:hover {
    opacity: 0.5;
}


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

    .shop-products {
        margin-top: 24px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 16px;
        scroll-behavior: smooth;
        width: 80%;
    }

    .shop-products::-webkit-scrollbar {
        display: none;
    }

    .shop-items {
        flex: 0 0 auto;
        width: 20vw;
        height: auto;
        border-radius: 8px;
        scroll-snap-align: start;
        box-sizing: border-box;
    }

    .slide-left,
    .slide-right {
        display: block;
    }

}

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

    .shop-products {
        margin-bottom: 120px;
    }

    .slide-left,
    .slide-right {
        margin: 0 20px;
    }

    .shop-items {
        width: 35vw;
    }
}

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

    .shop-products {
        margin-bottom: 80px;
    }

    .slide-left,
    .slide-right {
        margin: 0 16px;
    }

    .shop-items {
        width: 50vw;
    }
}

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

    .shop-products {
        margin-bottom: 60px;
    }

    .shop-items {
        width: 60vw;
    }
}


/* --------------------------- product_info --------------------------- */

.back-to-shop {
    padding-top: 60px;
}

.back-to-shop a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
}

.back-to-shop a:hover {
    color: #0077B6;
    border-bottom: 1.5px solid #0077B6;
}

.product-info {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.product-text {
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.product-text h3 {
    font-size: 28px;
}

.product-price {
    font-size: 40px;
    font-weight: bold;
}

.product-caption {
    font-size: 20px;
    color: #757575;
    line-height: 24px;
}

.product-options {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.product-size {
    width: 50%;
}

.product-quantity {
    width: 50%;
}

.product-options p {
    font-size: 16px;
}

.product-options select {
    margin-top: 8px;
    font-family: 'Roboto';
    font-size: 16px;
    width: 100%;

    border: 1.5px solid #757575;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 8px;

    background-color: #F9EFDC;
}

.product-text button {
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    padding: 8px 0;
    box-sizing: border-box;

    background-color: #FFC857;
}

.product-text button:hover {
    background-color: #FFA67E;
    cursor: pointer;
}

@media screen and (max-width: 1200px) {
    .back-to-shop {
        padding-left: 24px;
    }

}

@media screen and (max-width: 1000px) {
    .product-info {
        padding: 0 24px;
    }

}

@media screen and (max-width: 850px) {
    .product-text h3 {
        font-size: 24px;
    }

    .product-price {
        font-size: 32px;
        font-weight: bold;
    }

    .product-caption {
        font-size: 18px;
        color: #757575;
        line-height: 24px;
    }
}

@media screen and (max-width: 795px) {
    .product-info {
        flex-direction: column;
        gap: 36px;
    }

    .product-info img {
        width: 70vw;
    }

    .product-text {
        width: 70vw;
    }
}

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

    .product-info img {
        width: 80vw;
    }

    .product-text {
        width: 80vw;
    }

}

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

    .product-info {
        gap: 24px;
        margin-top: 24px;
    }

    .product-info img {
        width: 90vw;
    }

    .product-text {
        width: 90vw;
    }
}


/* --------------------------- product_info/recommandation --------------------------- */

.product-plus {
    margin: 0 auto;
    width: 70%;
    padding-top: 120px;
}

.product-plus h3 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    border-bottom: 3px solid #000000;
    padding-bottom: 24px;
}

.plus-products {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 48px auto 100px;
}

.plus-items {
    padding: 16px;
    border: 1.5px solid #ababab;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.plus-items h3,
p {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    border: none;
    padding: 0;
}

.plus-items img {
    width: 100%;
    border-radius: 8px;
}

.plus-items img:hover {
    opacity: 0.7;

}

.slidePlus-left,
.slidePlus-right {
    margin: 8px;
}

.slidePlus-left:hover,
.slidePlus-right:hover {
    opacity: 0.5;
}


/* .plus-items button {
    width: 80%;
    border-radius: 9999px;
    font-size: 14px;
    padding: 4px 0;
    box-sizing: border-box;

    background-color: #FFC857;
} */

/* .plus-items button:hover {
    background-color: #FFA67E;
    cursor: pointer;
} */


.product-checkout a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #000000;
    background-color: #55C6A9;
    border: 1.5px solid #000000;
    width: 30%;
    margin: 0 auto 180px;
    font-size: 16px;
    padding: 8px;
    border-radius: 8px;
}

.product-checkout a:hover {
    opacity: 0.8;
}


@media screen and (max-width:1000px) {
    .product-plus {
        width: 90%
    }
}

@media screen and (max-width: 820px) {
    .product-plus {
        width: 95%
    }
}

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

    .plus-wrapper {
        display: flex;
        align-items: center;
        max-width: 100%;
    }

    .plus-products {
        margin-top: 24px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 16px;
        scroll-behavior: smooth;
        width: 80%;
        justify-content: flex-start;
        box-sizing: border-box;
    }


    .plus-products::-webkit-scrollbar {
        display: none;
    }

    .plus-items {
        flex: 0 0 auto;
        width: 180px;
        height: auto;
        border-radius: 8px;
        scroll-snap-align: start;
    }

    .slidePlus-left,
    .slidePlus-right {
        display: block;
    }

}

@media screen and (max-width: 430px) {
    .back-to-shop {
        padding-top: 36px;
    }

    .product-checkout a {
        margin-bottom: 100px;
        width: 40%;
    }

}

/* --------------------------- check_out/list --------------------------- */

.content {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.checkout-list {
    width: 40%;
    padding: 16px 0;

    border: 1px solid #000000;
    border-radius: 16px;
}

.checkout-items {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 24px;
}

.checkout-items img {
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 9999px;
    margin-right: 16px;
}

.items-left {
    display: flex;
    align-items: center;
    width: 65%;
}

.items-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35%;
    gap: 16px;
}

.items-right select {
    width: 50%;
    font-family: 'Roboto';
    font-size: 16px;

    border-radius: 8px;
    text-align: center;
    border: 1.5px solid #757575;
    background-color: #F9EFDC;
}

.checkout-calc {
    text-align: center;
    margin-top: 32px;
}

.checkout-calc input {
    width: 65%;
    height: 40px;
    border: 1.5px solid #757575;
    border-radius: 8px;
    background-color: #F9EFDC;

    font-family: 'Roboto';
    font-size: 16px;
    text-indent: 8px;
    box-sizing: border-box;

    margin-bottom: 16px;
    margin-right: 8px;
}

.checkout-calc button {
    width: 25%;
    height: 40px;
    border: 1.5px solid #757575;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    box-sizing: border-box;
    background-color: #F9EFDC;
    font-family: 'Roboto';
    cursor: pointer;
}

.checkout-calc button:hover {
    background-color: #0077B6;
    border: 1.5px solid #0077B6;
    color: #F9EFDC;
}

.subtotal,
.shipping,
.total {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    margin: 16px 0;
}

.total p {
    font-size: 24px;
    font-weight: bold;
}


@media screen and (max-width: 1084px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .checkout-list {
        width: 65%;
    }
}

@media screen and (max-width: 865px) {
    .checkout-list {
        width: 80%;
    }
}

@media screen and (max-width: 680px) {
    .checkout-list {
        width: 100%;
        border: none;
    }
}

@media screen and (max-width: 560px) {}

@media screen and (max-width: 430px) {}

/* --------------------------- check_out/payment --------------------------- */
.checkout-payment {
    text-align: center;
    width: 50%;
    padding: 24px;
    border: 1px solid #000000;
    border-radius: 16px;
    position: relative;
    box-sizing: border-box;
}

.express button {
    width: 40%;
    height: 40px;
    /* aspect-ratio: 6/1; */
    border: 1.5px solid #757575;
    border-radius: 8px;
    background-color: #F9EFDC;
    cursor: pointer;
    margin: 8px 0 16px;
}

.express img {
    display: block;
    margin: 0 auto;
    width: 40%;
}

.express button:hover {
    background-color: #fff;
}

#or::before {
    content: '';
    display: block;
    width: 40%;
    height: 1px;
    background-color: #757575;
    position: absolute;
    top: 112px;
    left: 35px;
}

#or::after {
    content: '';
    display: block;
    width: 40%;
    height: 1px;
    background-color: #757575;
    position: absolute;
    top: 112px;
    right: 35px;
}

.client-form {
    text-align: left;
    margin-bottom: 60px;
    padding: 0 16px;
}

.client-form p {
    margin: 8px 0;
}

.contact-bar {
    display: flex;
    justify-content: space-between;
    align-items: baseline;

}

.contact-bar a {
    color: #0077B6;
}

.contact-bar a:hover {
    color: #757575;
}

.client-form select {
    width: 100%;
    height: 40px;
    /* aspect-ratio: 10/1; */
    font-family: 'Roboto';
    font-size: 16px;
    color: #757575;

    border: 1.5px solid #757575;
    border-radius: 8px;
    background-color: #F9EFDC;
    margin-bottom: 4px;
    text-indent: 8px;
}


.name-bar,
.address-bar,
.credit-radio,
.credit-img,
.card-code {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.credit-select {
    display: flex;
    justify-content: space-between;
    height: 50px;
    margin-bottom: 4px;
}

.credit-img img {
    width: 38px;
}

.client-form input {
    width: 100%;
    height: 40px;
    border: 1.5px solid #757575;
    border-radius: 8px;
    background-color: #F9EFDC;

    font-family: 'Roboto';
    font-size: 16px;
    text-indent: 8px;
    box-sizing: border-box;

    margin: 4px 0;
}

.client-form button {
    width: 100%;
    height: 40px;
    /* aspect-ratio: 10/1; */
    border: 1.5px solid #757575;
    border-radius: 8px;
    color: #F9EFDC;
    background-color: #0077B6;
    font-size: 16px;
}

.client-form button:hover {
    cursor: pointer;
    background-color: #FFA67E;
    color: #000000
}


.client-title {
    font-size: 24px;
    padding: 8px 0;
}

#emailme,
#ccard,
#shipping,
#save {
    width: 16px;
    height: 16px;
}

.sign-txt {
    display: flex;
    align-items: center;
    gap: 8px;
}

.credit-section {
    border: 1.5px solid #757575;
    border-radius: 8px;
    padding: 16px;
    background-color: #FFC857;
    opacity: 0.7;
}

.remember-section {
    border: 1.5px solid #757575;
    border-radius: 8px;
    padding: 16px;
    background-color: #FFC857;
    opacity: 0.7;
}

#remember {
    margin-top: 16px;
}

#paynow {
    margin-top: 16px;
}

@media screen and (max-width: 1084px) {
    .checkout-payment {
        width: 65%;
    }

}

@media screen and (max-width: 865px) {
    .checkout-payment {
        width: 80%;
    }

}

@media screen and (max-width: 680px) {
    .client-form button {
        height: 48px;
    }

    .checkout-payment {
        width: 100%;
        border: none;
    }
}

@media screen and (max-width: 560px) {
    .checkout-payment {
        padding: 12px;
    }

    #or::before,
    #or::after {
        top: 100px;
        width: 36%;
    }

    .express button {
        width: 50%;
        height: 40px;
    }

    .card-code {
        flex-direction: column;
        gap: 1.5px;
    }

}

@media screen and (max-width: 430px) {
    .express img {
        width: 55%;
    }

    .express button {
        width: 50%;
        height: 36px;
    }
}


/* --------------------------- log_in --------------------------- */

.log-in-bar {
    margin: 120px 0 280px;
    display: flex;
    justify-content: center;
    gap: 100px;
}

.log-in-bar h2 {
    font-size: 28px;
    text-align: center;
    margin: 16px 0;
}

.log-in-bar input {
    width: 100%;
    height: auto;
    aspect-ratio: 10/1;
    border: 1.5px solid #757575;
    border-radius: 8px;
    background-color: #F9EFDC;
    margin-bottom: 8px;
    text-indent: 8px;
    font-size: 16px;
    padding: 8px 0;
    font-family: 'Roboto';
    box-sizing: border-box;
}

.log-in-bar button {
    width: 100%;
    height: auto;
    padding: 8px 0;
    /* aspect-ratio: 10/1; */
    border: 1.5px solid #757575;
    border-radius: 8px;
    background-color: #FFC857;
    margin-bottom: 8px;
    box-sizing: border-box;

    font-family: 'Roboto';
    font-size: 16px;
}

.log-in-bar button:hover {
    background-color: #FFA67E;
    cursor: pointer;
}

.log-in-bar a {
    color: #757575;
    font-size: 14px;
    font-weight: 450;
}

.log-in-bar a:hover {
    color: #0077B6
}

.log-in-form,
.create-account-form {
    border: 1.5px solid #757575;
    border-radius: 8px;
    padding: 8px 24px 100px;
    width: 320px;
    height: 100%;
}

@media screen and (max-width: 985px) {
    .log-in-bar {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        margin: 60px 0 200px;
    }
}

@media screen and (max-width: 460px) {
    .log-in-bar h2 {
        font-size: 24px;
    }

    .log-in-form,
    .create-account-form {
        width: 280px;
    }

    .log-in-bar input {
        height: 32px;
    }
}


/* --------------------------- FAQ/header --------------------------- */

.faq-header {
    position: relative;
    max-width: 1200px;
    height: 680px;

    display: hidden;
    animation: fadeIn 0.5s ease-in-out;
}

.faq-title {
    width: 32%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #FFC857;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 52px;
    left: 10%;
}

.faq-title h1 {
    font-size: 48px;
    font-weight: bold;
    text-align: left;
}

.faq-title:hover {
    background-color: #55C6A9;
}

.faq-img {
    width: 28%;
    border-radius: 50%;

    position: absolute;
    top: 220px;
    left: 39.5%;
}

.faq-logo {
    position: absolute;
    top: 110px;
    right: 10%;
}

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

    .faq-header {
        height: 600px;
    }

    .faq-title h1 {
        font-size: 40px;
    }

    .faq-logo {
        width: 180px;
    }

    .faq-img {
        left: 38.5%;
    }

}

@media screen and (max-width: 960px) {
    .faq-header {
        height: 520px;
    }

    .faq-title h1 {
        font-size: 36px;
    }

    .faq-logo {
        width: 150px;
    }

    .faq-img {
        top: 220px;
        left: 37%;
    }
}

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

    .faq-header {
        height: 480px;
    }

    .faq-title {
        padding: 6px;
    }

}

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

    .faq-header {
        height: 450px;
    }

    .faq-title h1 {
        font-size: 32px;
    }

    .faq-img {
        left: 35.5%;
    }
}

@media screen and (max-width: 600px) {
    .faq-header {
        height: 420px;
    }

    .faq-title h1 {
        font-size: 28px;
    }

    .faq-logo {
        width: 120px;
    }

    .faq-img {
        top: 180px;
        left: 36%;
    }
}

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

    .faq-header {
        height: 360px;
    }

    .faq-title {
        padding: 20px;
    }

    .faq-title h1 {
        font-size: 24px;
    }

    .faq-logo {
        top: 80px;
        width: 120px;
    }

    .faq-img {
        top: 160px;
        left: 45%;
    }

}

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

    .faq-header {
        height: 320px;
    }

    .faq-title {
        padding: 28px;
    }

    .faq-title h1 {
        font-size: 24px;
    }

    .faq-logo {
        top: 80px;
        width: 100px;
    }

    .faq-img {
        top: 160px;
        left: 50%;
    }

}


/* --------------------------- FAQ_main/accordion --------------------------- */

.faq-accordion {
    margin-bottom: 240px;
}

.accordion {
    max-width: 1000px;
    margin: 20px auto;
}

.accordion-item {
    margin: 24px;
}

.accordion-header {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #757575;
}

#first-q {
    border-top: none;
}

.accordion-header h3 {
    margin: 0;
    font-size: 24px;
    line-height: 28px;
    padding-left: 1em;
    text-indent: -1em;
}

.accordion-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.accordion-icon.active {
    transform: rotate(225deg);
}

.accordion-content {
    height: 0;
    overflow: hidden;
    font-size: 20px;
    padding: 0 40px;
    line-height: 28px;
    font-weight: 350;
}

#last-q {
    padding: 0 56px;
}

.accordion-content.active {
    height: 100px;
    transition: height 1.5s ease;
}

@media screen and (max-width: 820px) {
    .accordion-header h3 {
        font-size: 22px;
    }

    .accordion-icon {
        font-size: 22px;
    }

    .accordion-content {
        font-size: 20px;
    }
}

@media screen and (max-width: 700px) {
    .accordion-content.active {
        height: 150px;
    }

    .accordion-header h3 {
        font-size: 20px;
    }

    .accordion-icon {
        font-size: 20px;
    }

    .accordion-content {
        font-size: 18px;
    }

    .faq-accordion {
        margin-bottom: 180px;
    }

}

@media screen and (max-width: 470px) {
    .accordion-content.active {
        height: 200px;
    }

    .accordion-header h3 {
        font-size: 16px;
        font-weight: 500;
    }

    .accordion-icon {
        font-size: 16px;
        font-weight: 500;
    }

    .accordion-content {
        font-size: 14px;
    }

    .faq-accordion {
        margin-bottom: 120px;
    }

}


/* --------------------------- Contact_Us/header --------------------------- */

.contact-us-header {
    position: relative;
    max-width: 1200px;
    height: 680px;

    display: hidden;
    animation: fadeIn 0.5s ease-in-out;
}

.contact-title {
    width: 32%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #FFA67E;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 152px;
    left: 10%;
}

.contact-title h1 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.contact-title:hover {
    background-color: #FFC857;
}

.contact-us-img {
    width: 25%;
    border-radius: 50%;

    position: absolute;
    top: 100px;
    left: 40.5%;
}

.contact-us-logo {
    position: absolute;
    top: 300px;
    right: 10%;
}

@media screen and (max-width: 1000px) {
    .contact-us-header {
        height: 600px;
    }
}

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

    .contact-us-header {
        height: 540px;
    }

    .contact-title h1 {
        font-size: 40px;
    }

    .contact-us-logo {
        width: 180px;
        top: 250px;

    }
}

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

    .contact-us-header {
        height: 500px;
    }

    .contact-title {
        padding: 8px;
    }

    .contact-title h1 {
        font-size: 36px;
    }

    .contact-us-logo {
        width: 160px;
        top: 200px;

    }

}

@media screen and (max-width: 775px) {
    .contact-title h1 {
        font-size: 32px;
    }
}

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

    .contact-us-header {
        height: 450px;
    }

    .contact-title {
        padding: 16px;
    }

    .contact-title h1 {
        font-size: 28px;
    }

    .contact-us-logo {
        width: 150px;
        top: 180px;

    }
}

@media screen and (max-width: 430px) {
    .contact-us-header {
        height: 400px;
    }

    .contact-title h1 {
        font-size: 24px;
    }

    .contact-us-img {
        width: 35%;
        top: 65px;
        left: 41%;
    }

    .contact-us-logo {
        width: 130px;
        top: 186px;

    }

}


/* --------------------------- Contact_Us_main/form --------------------------- */

.contact-us-bar {
    margin-bottom: 240px;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.contact-us-form {
    width: 480px;
    height: 100%;
    border: 1.5px solid #757575;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 350;
    padding: 20px;

}

.contact-us-form legend {
    margin-bottom: 8px;
    text-indent: 4px;

}

.contact-us-form input {
    width: 100%;
    height: auto;
    border: 1.5px solid #757575;
    border-radius: 8px;
    background-color: #F9EFDC;
    margin-bottom: 24px;
    box-sizing: border-box;

    font-family: 'Roboto';
    font-size: 20px;
    font-weight: 300;
    padding: 8px;
    text-indent: 4px;
}

.contact-us-form textarea {
    width: 100%;
    height: 250px;
    border: 1.5px solid #757575;
    border-radius: 8px;
    background-color: #F9EFDC;
    margin-bottom: 16px;
    box-sizing: border-box;

    font-family: 'Roboto';
    font-size: 20px;
    font-weight: 300;
    padding: 8px;
    text-indent: 4px;
}

.contact-us-form input:hover,
.contact-us-form textarea:hover {
    background-color: #FFC857;
}

.contact-us-form button {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 8px;
    background-color: #FFA67E;
    border: 1.5px solid #757575;
    box-sizing: border-box;

    font-family: 'Roboto';
    font-size: 20px;
    font-weight: 400;

    cursor: pointer;
}

.contact-us-form button:hover {
    background-color: #FFC857;
}

@media screen and (max-width: 1000px) {
    .contact-us-bar {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 775px) {
    .contact-us-form {
        font-size: 16px;
        width: 60vw;
    }

    .contact-us-form input {
        font-size: 16px;
    }

    .contact-us-form textarea {
        font-size: 16px;
    }

}

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

    .contact-us-form {
        font-size: 16px;
        width: 65vw;
    }

    .contact-us-form textarea {
        height: 200px;
    }
}

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

    .contact-us-bar {
        margin-bottom: 200px;
    }

    .contact-us-form {
        width: 74vw;
    }

}

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

.contact-us-info {
    width: 320px;
    height: 320px;
    background-color: #FFA67E;
    border-radius: 8px;
    padding: 36px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-us-info p {
    font-size: 20px;
}

.contact-us-info:hover {
    background-color: #FFC857;
}

.contact-us-info a {
    color: #000000;
}

.contact-us-icons a {
    font-size: 56px;
    color: #000000;
    text-decoration: none;
    margin-right: 20px;
}

.contact-us-icons a:hover {
    color: #0077B6;
}

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

    .contact-us-info p {
        font-size: 16px;
        line-height: 20px;
    }

    .contact-us-icons a {
        font-size: 36px;
    }

    .contact-us-info {
        justify-content: center;
        gap: 36px;
    }

    .contact-us-info {
        width: 280px;
        height: 280px;

    }

    @media screen and (max-width: 600px) {}

    @media screen and (max-width: 430px) {
        .contact-us-info {
            justify-content: center;
            gap: 20px;
        }

        .contact-us-info {
            width: 240px;
            height: 240px;

        }
    }
}