@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;500;600;700;900&display=swap');

/*lading page style*/

body {
    background-size: cover;
    overflow-x: hidden;
    font-family: "NSimSun", "SongTi TC";
}

#navbar {
    min-height: 85px;
}

.page {
    background-image: url("/layouts/homebg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

#landing-page .fp-tableCell {
    position: relative;
    height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

#landing-page .logo-img {
    height: 35%;
    max-height: 280px;
    margin-right: 50px;
    transform: translateX(100px);
    animation: slideImg 4s 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transition: 0.5s;
}

#landing-page .logo-img.hide {
    opacity: 0;
}

#landing-page #squirrelBike-img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 150px;
    animation: bikeMove 8s ease-in-out forwards;
}

#landing-page #scroll-hint {
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-animation: floating 0.75s ease-in-out infinite alternate;
    animation: floating 0.75s ease-in-out infinite alternate;
}

#landing-page #scroll-hint i {
    position: relative;
    visibility: hidden;
    transition: 0.5s;
    opacity: 0;
    font-size: 50px;
    z-index: 2;
}

#landing-page #scroll-hint.show i {
    visibility: visible;
    opacity: 1;
}

@keyframes slideImg {
    0% {
        transform: translateX(100px);
    }
    25% {
        transform: none;
    }
    50% {
        transform: translateX(-25px);
    }
    75% {
        transform: translateX(-45px);
    }
    100% {
        /* transform: none; */
        transform: translateX(-45px);
    }
}

@keyframes floating {
    from {
        -webkit-transform: translate(0, 5px);
        transform: translate(0, 5px);
    }
    to {
        -webkit-transform: translate(0, -5px);
        transform: translate(0, -5px);
    }
}

@keyframes bikeMove {
    0% {
        left: 0;
    }
    100% {
        left: 100%;
    }
}

#poem-wrapper {
    width: 200px;
    display: flex;
    flex-direction: row-reverse;
}

#poem-wrapper .poem {
    /* font-family: 'Noto Serif TC', serif; */
    writing-mode: vertical-rl;
    font-weight: 100;
    font-size: 40px;
    letter-spacing: 20px;
    margin: 0 15px;
}

#poem-wrapper #first-line {
    padding-bottom: 70px;
    animation-delay: 2s;
    opacity: 0;
    transform: translateX(-30px);
    animation: slidePoem 4s 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

#poem-wrapper #second-line {
    padding-top: 70px;
    animation-delay: 3s;
    /* animation: slideImg 4s 3s cubic-bezier(0.4, 0, 0.2, 1) forwards; */
}

@keyframes slidePoem {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }
    25% {
        transform: translateX(-30px);
        opacity: 0;
    }
    50% {
        transform: translateX(-30px);
        opacity: 1;
    }
    75% {
        transform: none;
        opacity: 1;
    }
    100% {
        transform: none;
        opacity: 1;
    }
}


/*news page style*/

#news-page .fp-tableCell {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-template-areas: 'motto motto news news news' 'uniform uniform news news news' 'uniform uniform news news news';
    grid-column-gap: 30px;
    grid-row-gap: 0px;
    width: 100%;
    padding: 0 8%;
    padding-left: 5%;
    padding-top: 85px;
    height: calc(var(--vh, 1vh) * 100);
}

#decoBranch {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
}

#fallenLeaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
}

#uniform-img {
    grid-area: uniform;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    margin-bottom: 10px;
    cursor: pointer;
}

#motto {
    grid-area: motto;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

#news-window {
    grid-area: news;
    display: flex;
    align-items: center;
    position: relative;
}


/* width */


/* width */

#news-wrapper::-webkit-scrollbar {
    width: 5px;
    opacity: 0;
    transition: 0.2s;
}

#news-wrapper:hover::-webkit-scrollbar {
    opacity: 1;
    width: 5px;
}


/* Track */

#news-wrapper:hover::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}


/* Handle */

#news-wrapper:hover::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}


/* Handle on hover */

#news-wrapper:hover::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#news-wrapper {
    position: relative;
    height: 70vh;
    max-height: 700px;
    width: 100%;
    padding: 10px;
    padding-left: 6%;
    right: 0;
    overflow-y: scroll;
}

.news-block {
    display: flex;
    align-items: center;
    width: 100%;
    height: 30%;
    padding: 0 30px;
    font-size: 20px;
    margin-bottom: 3.5vh;
    border-radius: 2vw;
    background-color: #E5E0DB;
    transition: 0.2s;
    cursor: pointer;
}

.news-block:last-child {
    margin: 0;
}

.news-block:hover {
    transform: scale(1.01);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.news-block img {
    width: 80px;
    margin-right: 20px;
}

#decoPlantTR {
    position: absolute;
    width: 150px;
    bottom: 75vh;
    right: 0;
}

#decoPlantBL {
    position: absolute;
    width: 60px;
    left: 15px;
    bottom: 20%;
}


/*schedule page style*/

a {
    text-decoration: none;
}

.calender h2 {
    font-size: 2em;
    line-height: 1.25em;
    margin: .25em 0;
}

.calender h3 {
    font-size: 1.5em;
    line-height: 1em;
    margin: .33em 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* ---------- CALENDAR ---------- */

#schedule-page .fp-tableCell {
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cal-table {
    display: none;
}

.cal-table.active {
    display: initial;
}

.calendar {
    text-align: center;
    display: flex;
    flex-direction: column;
    transform: translateX(350px);
    transition: 0.5s;
}

#schedule-page.show-event .calendar {
    transform: translateX(0px);
}

.calendar-header {
    position: relative;
    font-family: sans-serif;
}

.calendar h2 {
    text-transform: uppercase;
}

.calendar thead {
    font-weight: 600;
    text-transform: uppercase;
}

.calendar tbody {
    color: #7c8a95;
}

.calendar tbody td:hover {
    border: 2px solid #00addf;
}

.calendar td {
    border: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    font-family: sans-serif;
    height: 4.25em;
    line-height: 4.25em;
    text-align: center;
    width: 4.25em;
}

.calendar .prev-month,
.calendar .next-month {
    color: #cbd1d2;
}

.calendar .prev-month:hover,
.calendar .next-month:hover {
    border: 2px solid #cbd1d2;
}

.current-day {
    background: #00addf;
    color: #f9f9f9;
}

.event {
    cursor: pointer;
    position: relative;
}

.event:after {
    background: #00addf;
    border-radius: 50%;
    bottom: .5em;
    display: block;
    content: '';
    height: .5em;
    left: 50%;
    margin: -.25em 0 0 -.25em;
    position: absolute;
    width: .5em;
}

.tippy-popper ul {
    margin: 0;
    padding-left: 15px;
}

.btn-prev,
.btn-next {
    color: #333;
    font-size: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.btn-prev {
    left: 30px;
}

.btn-next {
    right: 30px;
}

#event-wrapper {
    position: relative;
    transform: translateX(350px);
    margin-left: 30px;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

#event-close-btn {
    position: absolute;
    z-index: 2;
    cursor: pointer;
    font-size: 30px;
    top: -10px;
    right: 0px;
}

#schedule-page.show-event #event-wrapper {
    transform: translateX(0px);
    visibility: visible;
    opacity: 1;
}

.swiper-container {
    width: 650px;
    height: 450px;
    padding: 20px 0;
}

.swiper-wrapper {
    overflow: visible;
}

.swiper-slide {
    padding: 30px;
    background-color: #fff;
    width: 550px;
    display: flex;
    flex-direction: column;
    /* font-family: 'Noto Serif TC', serif; */
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

.swiper-button-disabled {
    display: none;
}

.event-overview {
    display: flex;
    margin-top: 20px;
}

.event-title {
    flex: 4;
}

.event-title h3 {
    font-size: 1.55em;
    font-weight: 900;
    margin-bottom: 0;
}

.event-title a {
    font-size: 12px;
}

.event-info {
    flex: 3;
    margin-left: 15px;
}

.event-details {
    width: 100%;
    height: 75%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: solid .5px #555;
    padding: 5px 20px;
    overflow-y: auto;
}

.event-info p {
    margin-bottom: 5px;
}

#decoPlantP3A {
    width: 10%;
    position: absolute;
    top: 20%;
    right: 0;
}

#decoPlantP3B {
    width: 10%;
    position: absolute;
    top: 20%;
    left: 0;
}

#decoGuitar {
    width: 20%;
    position: absolute;
    bottom: 0;
    left: 0;
}

#decoNotebook {
    width: 20%;
    position: absolute;
    bottom: 0;
    right: 0;
}

#desktop-copyright-text {
    font-family: 微軟正黑體;
    font-size: 12px;
    font-weight: bold;
    padding-bottom: 10px;
    position: absolute;
    bottom: 0;
    opacity: 0.6;
}


/* 關掉手機版*/

#schedule-mb {
    display: none;
}


/* 預設樣式為電腦版 */


/* 大螢幕 (e.g.橫躺平板) 922~1200px */

@media (max-width: 1280px) {
    .calendar {
        transform: translateX(300px);
    }
    .calendar td {
        height: 3.75em;
        line-height: 3.75em;
        width: 3.5em;
    }
    #event-wrapper {
        transform: translateX(300px);
        transition: 0.5s;
        margin-left: 10px;
    }
    .event-title {
        flex: 1;
    }
    .event-info {
        flex: 1;
        margin-left: 15px;
    }
    .event-title h3 {
        font-size: 1.5em;
        font-weight: 900;
    }
    .event-title a {
        font-size: 12px;
    }
    .event-info {
        font-size: 15px;
    }
    .swiper-container {
        width: 550px;
        height: 400px;
        padding: 20px 0;
    }
    .swiper-slide {
        padding: 20px;
        background-color: #fff;
        width: 450px;
    }
}

#uniformLoader {
    display: none;
}


/* 中螢幕 (e.g.直立平板) 768~922px */

@media (max-width: 992px),
(min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) {
    #landing-page .fp-tableCell {
        flex-direction: column;
        height: calc(var(--vh, 1vh) * 100);
    }
    #landing-page .logo-img {
        height: 15%;
        max-height: 280px;
        margin-right: 0px;
        transform: none;
        animation: phone-imgslide 0.5s 0s linear forwards;
    }
    #landing-page #scroll-hint {
        animation: none;
        transform: translateX(-50%);
    }
    #poem-wrapper {
        width: 300px;
        display: flex;
        flex-direction: column;
        margin-left: 80px;
    }
    #poem-wrapper .poem {
        /* font-family: 'Noto Serif TC', serif; */
        writing-mode: horizontal-tb;
        font-weight: 100;
        font-size: 35px;
        letter-spacing: 10px;
        margin: 0 15px;
    }
    #poem-wrapper #first-line {
        padding-bottom: 0px;
        padding-right: 40px;
        opacity: 0;
        transform: none;
        animation: phone-poemshow 1s 0.5s forwards;
    }
    #poem-wrapper #second-line {
        padding-top: 0px;
        padding-left: 40px;
        opacity: 0;
        animation: phone-poemshow 1s 1.5s linear forwards;
        /* animation: slideImg 4s 3s cubic-bezier(0.4, 0, 0.2, 1) forwards; */
    }
    #landing-page #squirrelBike-img {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 120px;
        animation-duration: 4s;
    }
    @keyframes phone-imgslide {
        0% {
            transform: translateY(0px) scale(1);
        }
        100% {
            transform: translateY(-20px) scale(1.3);
        }
    }
    @keyframes phone-poemshow {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    /*-------NEWS PAGE-------*/
    #news-page .fp-tableCell {
        grid-template-columns: repeat(7, 1fr);
        grid-template-rows: repeat(7, 1fr);
        grid-template-areas: 'news news news news news news news' 'news news news news news news news' 'news news news news news news news' 'news news news news news news news' 'uniform uniform uniform motto motto motto motto' 'uniform uniform uniform motto motto motto motto' 'uniform uniform uniform motto motto motto motto';
        grid-column-gap: 0px;
        grid-row-gap: 10px;
        padding: 0 5%;
        padding-top: 100px;
        height: calc(var(--vh, 1vh) * 100);
    }
    #uniform-img {
        grid-area: uniform;
        position: relative;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom;
        margin-bottom: 10px;
    }
    #uniform-img,
    #motto {
        background-position: center;
        margin-bottom: 0px;
    }
    #news-window {
        align-items: flex-start;
        /* height: 300px; */
    }
    #news-wrapper {
        padding: 0px;
        height: 100%;
        overflow-x: hidden;
    }
    .news-block {
        padding: 15px 20px;
        margin-bottom: 2vh;
        font-size: 3vw;
        height: 30%;
    }
    .news-block img {
        width: 80px;
        margin-right: 10px;
    }
    #decoBranch {
        position: absolute;
        top: 0px;
        right: 0;
        width: 80%;
    }
    #fallenLeaves {
        position: absolute;
        top: 0;
        left: 0;
        width: 45%;
    }
    #decoPlantBL {
        width: 40px;
        left: -15px;
        bottom: 20%;
    }
    #decoPlantTR {
        width: 100px;
        bottom: initial;
        top: -30px;
        right: -20px;
    }
    #fallenLeaves {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
    .news-block:hover {
        transform: none;
        box-shadow: none;
    }
    /*-------SCHEDULE PAGE-------*/
    #schedule-page .fp-tableCell {
        height: calc(var(--vh, 1vh) * 100);
    }
    .calendar {
        display: none;
    }
    .page3Deco {
        display: none;
    }
    #schedule-mb {
        display: block;
        position: absolute;
        width: 100%;
        top: 10%;
        height: 90%;
    }
    #schedule-mb-wrap {
        position: relative;
        width: 100%;
        height: 100%;
    }
    #pen,
    #bottom-leaf,
    #bottom-twig,
    #top-leaf,
    #coffee,
    #top-twig,
    #glasses {
        position: absolute;
        pointer-events: none;
        z-index: 300;
    }
    #pen {
        width: 25%;
        bottom: 15%;
        left: 5%;
    }
    #bottom-leaf {
        width: 25%;
    }
    #bottom-twig {
        width: 35%;
        bottom: 15%;
        right: 1%;
    }
    #top-leaf {
        width: 25%;
        top: 15%
    }
    #coffee {
        width: 25%;
        right: 1%;
        top: -5%;
    }
    #top-twig {
        width: 40%;
        top: 1%;
    }
    #glasses {
        top: 3%;
        width: 15%;
        right: 25%;
    }
    #month-selector-wrap {
        display: flex;
        width: 40%;
        margin-left: 10%;
        justify-content: space-between;
        margin-top: 0%;
    }
    .month-selector {
        font-size: 30px;
        transition: 0.7;
    }
    .month-selector.selected {
        transform: scale(1.3);
        font-weight: bold;
    }
    .swiper-container-mb {
        margin-top: 20px;
        width: 100%;
        height: 70%;
    }
    #event-swiper-wrap-mb {
        height: 100%;
        width: 100%;
    }
    .swiper-slide.event-slide-mb {
        padding: 0px;
        background-position: center;
        background-size: cover;
        width: 75%;
        height: 100%;
        border-radius: 20px;
    }
    #event-wrapper {
        display: none;
    }
    .event-img {
        width: 100%;
        height: auto;
    }
    .mb-event-img-wrap {
        overflow: hidden;
        height: 97%;
    }
    .event-img-area {
        position: relative;
        height: 55%;
        width: 100%;
        padding: 30px;
        border: 1px solid gray;
        border-radius: 20px 20px 0px 0px;
    }
    .event-info-area {
        position: relative;
        height: 45%;
        background-color: pink;
        border: 1px solid gray;
        padding: 20px 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-radius: 0px 0px 20px 20px;
    }
    .event-title {
        font-size: 40px;
        flex: 1;
    }
    .event-time {
        font-size: 30px;
        margin-left: 40px;
        flex: 1;
    }
    .event-location {
        font-size: 30px;
        margin-left: 40px;
        flex: 1;
    }
    .event-link {
        align-self: flex-end;
        font-size: 20px;
        flex: 1;
    }
    #date-wrap {
        position: absolute;
        top: 80%;
        width: 50%;
        left: 25%;
        height: 10%;
        overflow: hidden;
    }
    .swiper-container-date-mb {
        width: 100%;
    }
    #date-swiper-wrap-mb {
        width: 100%;
        height: 100%;
    }
    .swiper-slide.date-slide-mb {
        background-color: transparent;
        font-size: 35px;
        display: flex;
        align-items: center;
        box-shadow: none;
    }
    .swiper-slide-active.date-slide-mb {
        transform: scale(1.5);
        font-weight: bold;
    }
    #desktop-copyright-text {
        display: none;
    }
    #mb-copyright {
        position: absolute;
        left: 5px;
        bottom: 5px;
        font-size: 15px;
        z-index: 300;
    }
}


/* 小螢幕 (e.g.橫躺手機) 577~767px */

@media (max-width: 767px)and (orientation: landscape) {}


/* 超小螢幕 (e.g.直立手機), 576px以下 */

@media (max-width: 576px) {
    #landing-page .fp-tableCell {
        flex-direction: column;
        height: calc(var(--vh, 1vh) * 100);
    }
    #landing-page .logo-img {
        height: 15%;
        max-height: 280px;
        margin-right: 0px;
        transform: none;
        animation: phone-imgslide 0.5s 0s linear forwards;
    }
    #landing-page #scroll-hint {
        animation: none;
        transform: translateX(-50%);
    }
    #poem-wrapper {
        width: 200px;
        display: flex;
        flex-direction: column;
        margin-left: 40px;
    }
    #poem-wrapper .poem {
        /* font-family: 'Noto Serif TC', serif; */
        writing-mode: horizontal-tb;
        font-weight: 100;
        font-size: 25px;
        letter-spacing: 5px;
        margin: 0 15px;
    }
    #poem-wrapper #first-line {
        padding-bottom: 0px;
        padding-right: 40px;
        opacity: 0;
        transform: none;
        animation: phone-poemshow 1s 0.5s forwards;
    }
    #poem-wrapper #second-line {
        padding-top: 0px;
        padding-left: 40px;
        opacity: 0;
        animation: phone-poemshow 1s 1.5s linear forwards;
        /* animation: slideImg 4s 3s cubic-bezier(0.4, 0, 0.2, 1) forwards; */
    }
    #landing-page #squirrelBike-img {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 120px;
        animation-duration: 4s;
    }
    @keyframes phone-imgslide {
        0% {
            transform: translateY(0px) scale(1);
        }
        100% {
            transform: translateY(-20px) scale(1.3);
        }
    }
    @keyframes phone-poemshow {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    /*-------NEWS PAGE-------*/
    #news-page .fp-tableCell {
        grid-template-columns: repeat(7, 1fr);
        grid-template-rows: repeat(7, 1fr);
        grid-template-areas: 'news news news news news news news' 'news news news news news news news' 'news news news news news news news' 'news news news news news news news' 'uniform uniform uniform motto motto motto motto' 'uniform uniform uniform motto motto motto motto' 'uniform uniform uniform motto motto motto motto';
        grid-column-gap: 0px;
        grid-row-gap: 10px;
        padding: 0 5%;
        padding-top: 100px;
        height: calc(var(--vh, 1vh) * 100);
    }
    #uniform-img {
        grid-area: uniform;
        position: relative;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom;
        margin-bottom: 10px;
    }
    #uniform-img,
    #motto {
        background-position: center;
        margin-bottom: 0px;
    }
    #news-window {
        align-items: flex-start;
        /* height: 300px; */
    }
    #news-wrapper {
        padding: 0px;
        height: 100%;
        overflow-x: hidden;
    }
    .news-block {
        padding: 15px 20px;
        margin-bottom: 2vh;
        font-size: 4.5vw;
        height: 30%;
        border-radius: 20px;
    }
    .news-block img {
        width: 50px;
        margin-right: 10px;
    }
    #decoBranch {
        position: absolute;
        top: 0px;
        right: 0;
        width: 80%;
    }
    #fallenLeaves {
        position: absolute;
        top: 0;
        left: 0;
        width: 45%;
    }
    #decoPlantBL {
        width: 40px;
        left: -15px;
        bottom: 20%;
    }
    #decoPlantTR {
        width: 100px;
        bottom: initial;
        top: -30px;
        right: -20px;
    }
    #fallenLeaves {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
    .news-block:hover {
        transform: none;
        box-shadow: none;
    }
    /*-------SCHEDULE PAGE-------*/
    #schedule-page .fp-tableCell {
        height: calc(var(--vh, 1vh) * 100);
    }
    .calendar {
        display: none;
    }
    .page3Deco {
        display: none;
    }
    #schedule-mb {
        display: block;
        position: absolute;
        width: 100%;
        top: 10%;
        height: 90%;
    }
    #schedule-mb-wrap {
        position: relative;
        width: 100%;
        height: 100%;
    }
    #pen,
    #bottom-leaf,
    #bottom-twig,
    #top-leaf,
    #coffee,
    #top-twig,
    #glasses {
        position: absolute;
        pointer-events: none;
        z-index: 300;
    }
    #pen {
        width: 25%;
        bottom: 17%;
        left: 5%;
    }
    #bottom-leaf {
        width: 25%;
    }
    #bottom-twig {
        width: 35%;
        bottom: 18%;
        right: 5%;
    }
    #top-leaf {
        width: 25%;
        top: 20%
    }
    #coffee {
        width: 25%;
        right: 1%;
        top: 5%;
    }
    #top-twig {
        width: 40%;
        top: 5%;
    }
    #glasses {
        top: 7%;
        width: 20%;
        right: 25%;
    }
    #month-selector-wrap {
        display: flex;
        width: 60%;
        margin-left: 10%;
        justify-content: space-between;
        margin-top: 7%;
    }
    .month-selector {
        font-size: 20px;
        transition: 0.7;
    }
    .month-selector.selected {
        transform: scale(1.3);
        font-weight: bold;
    }
    .swiper-container-mb {
        margin-top: 0px;
        width: 100%;
        height: 80%;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #event-swiper-wrap-mb {
        height: 100%;
        width: 100%;
    }
    .swiper-slide.event-slide-mb {
        padding: 0px;
        background-position: center;
        background-size: cover;
        border-radius: 20px;
        width: 80%;
        height: 100%;
    }
    .event-img {
        width: 100%;
    }
    .mb-event-img-wrap {
        overflow: hidden;
        height: 100%;
    }
    .event-img-area {
        position: relative;
        height: 55%;
        width: 100%;
        padding: 20px;
        border: 1px solid gray;
        border-radius: 20px 20px 0px 0px;
    }
    .event-info-area {
        position: relative;
        height: 45%;
        background-color: rgba(231, 219, 219, 1);
        border: 1px solid #808080;
        padding: 10px 15px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        border-radius: 0px 0px 20px 20px;
    }
    .event-title {
        font-size: 20px;
        flex: 1;
    }
    .event-time {
        font-size: 15px;
        margin-left: 20px;
        flex: 1;
    }
    .event-location {
        font-size: 15px;
        margin-left: 20px;
        flex: 1;
    }
    .event-link {
        align-self: flex-end;
        font-size: 20px;
        flex: 1;
    }
    #date-wrap {
        position: absolute;
        top: 80%;
        width: 50%;
        left: 25%;
        height: 10%;
        overflow: hidden;
    }
    .swiper-container-date-mb {
        width: 100%;
    }
    #date-swiper-wrap-mb {
        width: 100%;
        height: 100%;
    }
    .swiper-slide.date-slide-mb {
        background-color: transparent;
        font-size: 20px;
        display: flex;
        align-items: center;
        box-shadow: none;
    }
    .swiper-slide-active.date-slide-mb {
        transform: scale(1.5);
        font-weight: bold;
    }
    #desktop-copyright-text {
        display: none;
    }
    #mb-copyright {
        position: absolute;
        left: 5px;
        bottom: 30px;
        font-size: 10px;
        z-index: 300;
    }
}