.desktop-content {
    flex-direction: column;
    gap: 3rem;
}

.footer {
    margin-bottom: -5rem;
}

.mobile-content {
    flex-direction: column;
    gap: 2rem;
}

body.modal-open {
    overflow: hidden; /* Prevent background scrolling */
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 47, 52, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow-y: auto;
    letter-spacing: 0.02em;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal.active {
    display: block;
    opacity: 1;
}

.modal-content {
    font-size: 1.125rem;
    font-weight: 400;
    font-family: Niramit Light;
    color: #fff;
    position: relative;
    margin: 0;
    /* padding: 20px; */
    height: auto;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    border: none;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.8s ease;
}
.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

/* Close Button */
.close {
    padding-top: 2rem;
    color: #fff;
    text-align: center;
    font-size: 5rem;
    font-weight: bold;
    z-index: 10;
}

.close:hover,
.close:focus {
    color: #f0c000;
    text-decoration: none;
    cursor: pointer;
}

.content-container-modal {
    position: relative;
}

.capacity-notes {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.banner-content-modal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.banner-content-modal .title {
    position: relative;
    width: fit-content;
    font-family: Magistic;
    font-feature-settings: "clig" 1, "liga" 1;
    font-size: 3.375rem;
    font-weight: 400;
    line-height: 5.768125rem;
    letter-spacing: -0.035em;
    color: #fff;
    white-space: nowrap;
    /* margin-bottom: 2rem; */
}

.banner-content-modal img {
    position: absolute;
    transform: translate(-128%, -114%);
    top: 115%;
    left: 100%;
    width: 67%;
}

.banner-content-modal span {
    z-index: 1;
    position: relative;
}

.text-content-modal {
    font-family: Niramit Light;
    font-weight: 400;
    line-height: 25.2px;
    letter-spacing: 0.02em;
    text-align: left;
    padding: 0% 20% 0% 20%;
    text-align: center;
    text-align: -webkit-center;
    z-index: 10;
}

.text-content-modal h1 {
    color: #fbc400;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1rem;
    /* justify-self: center;
    -webkit-justify-self: center; */
    font-family: Niramit Light;
}

.itinerarybutton {
    padding: 14px 24px 16px 24px;
    border: 1px solid #fbc400;
    background-color: transparent;
    width: 20%;
    font-size: 1rem;
    font-weight: 700;
    line-height: 2rem;
    color: #fbc400;
    text-align: center;
    align-self: center;
    border-bottom-right-radius: 12px;
    letter-spacing: 0.15em;
    cursor: pointer;
}

.booktour {
    padding: 14px 24px 16px 24px;
    border: 1px solid #fbc400;
    background-color: #fbc400;
    font-size: 16px;
    font-weight: 700;
    line-height: 2rem;
    color: black;
    text-align: center;
    align-self: center;
    border-bottom-right-radius: 12px;
    width: 10%;
    cursor: pointer;
}

.space-content {
    display: flex;
    justify-content: space-between;
    background-color: #333e46;
    padding: 8px 0 8px 0;
    margin-left: 20%;
    margin-right: 20%;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.space-content .column {
    padding: 1.5rem 0rem 1.5rem 0rem;
    /* padding: 10px; */
    flex: 1;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
}

.space-content .column:not(:last-child) {
    border-right: 2px solid #52616d;
}

.body-content {
    background-color: #282f34;
    box-shadow: 0 4px 20px rgba(22, 26, 28, 0.4); /* 40% opacity */
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.schedule-content {
    font-size: 1rem;
    background-color: #282f34;
    box-shadow: 0 4px 4rem rgba(22, 26, 28, 1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 3rem;
}

.capacitycontent,
.content-2,
.content-4 {
    flex-grow: 1;
}

.capacitycontent {
    background-color: #21272b;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 12px;
}

.capacitycontent .title {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: -0.5rem;
    /* font-size: 1rem; */
    font-size: 0.875rem;
    font-weight: 700;
    align-items: anchor-center;
}

.capacitycontent img {
    width: 20px;
    height: 20px;
}

.capacitycontent .content {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.capacitycontent .row {
    display: contents;
}

.capacitycontent .content .row span:first-child {
    font-weight: 700;
}

.content-1,
.content-2,
.content-3,
.content-4 {
    padding: 12px;
    border-radius: 12px;
}

.content-2 .title img,
.content-4 .title img {
    width: 20px;
    height: 20px;
}

.show-more-container-1 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 20% 0 20%;
    line-height: 1.575rem;
}

.show-more-container-1 .content-1 {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.show-more-container-1 .column {
    width: 48%;
}

.show-more-container-1 .content-1 .column .bullets {
    text-indent: -0.8em;
    padding-left: 1em;
    margin-bottom: 0;
}

.show-more-container-1 .content-1 .column p:first-of-type {
    font-size: 1rem;
    font-weight: 700;
    border-bottom: 1px solid #424242;
    line-height: 28.8px;
}

.show-more-container-1 .content-1 .column p {
    margin-bottom: 0.2rem;
}

.show-more-container-1 .content-1 {
    background-color: #282f34;
}

.show-more-container-1 .content-2 {
    background-color: #21272b;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: -0.5rem;
    letter-spacing: 0.05em;
}

.show-more-container-1 .content-3 .column-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
}

.show-more-container-1 .content-3 .column {
    display: flex;
    flex-direction: column;
    /* gap: 1rem; */
    width: unset !important;
}

.show-more-container-1 .content-2 .title,
.show-more-container-1 .content-3 .title,
.show-more-container-1 .content-4 .title {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    font-weight: 700;
    /* font-size: 1rem; */
    font-size: 0.875rem;
    align-items: anchor-center;
    margin-bottom: -0.5rem;
    letter-spacing: 0.05em;
}

.show-more-container-1 .content-4 {
    background-color: #21272b;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.show-more-container-1 .content-3 {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.line-grey {
    border: 1px solid #424242;
    border-radius: 12px;
}

.row-left-col-6 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    line-height: 25.2px;
}

.row-right-col-6 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.validity-content {
    display: flex;
    flex-direction: row;
    /* gap: 2rem; */
    justify-content: center;
    align-self: flex-start;
    gap: 1rem;
}

.validity-content .upper-half,
.validity-content .lower-half {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-left: solid;
    border-color: #fbc400;
    column-gap: 3rem;
    font-weight: 700;
    row-gap: 0.3rem;
    align-items: center;
    /* font-size: 12px; */
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.validity-content .row {
    display: contents;
}

.validity-content .row span:first-child {
    color: #fbc400; /* Change this color as needed */
    font-weight: bold; /* Optional: make the text bold */
    margin-left: 1.5rem;
}

.day-1-schedule,
.day-2-schedule,
.day-3-schedule {
    width: 85%;
    align-self: center;
}

.day-1-schedule h2,
.day-2-schedule h2,
.day-3-schedule h2 {
    font-family: Magistic;
}

.day-1-schedule .schedule-box,
.day-2-schedule .schedule-box,
.day-3-schedule .schedule-box {
    /* background-color: transparent; */
    /* padding: 12px; */
    border-radius: 12px;
    border: 1px solid #ffffff;
}

.day-1-schedule .two-column-layout,
.day-2-schedule .two-column-layout,
.day-3-schedule .two-column-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    /* gap: 20px;  */
    line-height: 16.8px;
    letter-spacing: 0.05rem;
    align-items: stretch;
}

.day-1-schedule .two-column-layout .row,
.day-2-schedule .two-column-layout .row,
.day-3-schedule .two-column-layout .row {
    display: contents;
}

.day-1-schedule .two-column-layout .title,
.day-2-schedule .two-column-layout .title,
.day-3-schedule .two-column-layout .title {
    font-weight: 700;
    background-color: #2d383f;
    padding: 10px;
}

.day-1-schedule .two-column-layout .content,
.day-2-schedule .two-column-layout .content,
.day-3-schedule .two-column-layout .content {
    text-align: left;
    font-weight: 400;
    padding: 13px;
}

.schedule-box .two-column-layout .row:first-child .title {
    border-top-left-radius: 15px;
}

.schedule-box .two-column-layout .row:last-child .title {
    border-bottom-left-radius: 15px;
}

.schedule-box .two-column-layout .row:not(:last-child) .title,
.schedule-box .two-column-layout .row:not(:last-child) .content {
    border-bottom: 2px solid #374148;
}

.schedule-content-container1 {
    justify-content: space-around;
}

.schedule-content-container2 {
    justify-content: center;
}

.schedule-content h1 {
    font-family: Magistic;
    font-size: 3rem;
    font-weight: 400;
    line-height: 92.29px;
    margin-bottom: 3rem;
}

.grass1 {
    position: absolute;
}

.grass2 {
    width: 20%;
    position: absolute;
    right: 0;
    bottom: 0;
}

/* Modal 2 Content */

.modal-2 .modal-content {
    gap: 4rem;
}

.modal-2 .body-content {
    gap: 0;
}

.modal-2 .modal-title h2 {
    font-family: Magistic;
    font-size: 3.375rem;
}

.modal-2 .money-title h1 {
    font-family: Niramit;
    font-size: 3.375rem;
    font-weight: 700;
}

.modal-2 .money-title span {
    font-family: Niramit;
    font-size: 3.375rem;
    font-weight: 400;
}

.modal-2 .grass1 {
    width: 33%;
    z-index: 1;
}

.modal-2 .left,
.modal-2 .right {
    padding-left: unset;
    padding-right: unset;
}

.modal-2 .right {
    background-color: white;
}

.modal-2 .money-title {
    color: black;
}

.modal-2 .space-content {
    margin-left: unset;
    margin-right: unset;
}

.modal-2 .right-content {
    padding-left: 5%;
    padding-right: 5%;
    gap: 2rem;
}

.modal-2 .content-1 {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: black;
    padding: 12px 12px 25px 12px;
}

.modal-2 .content-1 .column {
    width: 48%;
}

.modal-2 .content-1 .column .bullets {
    text-indent: -0.8em;
    padding-left: 1em;
}

.modal-2 .content-1 .column p:first-of-type {
    font-size: 1rem;
    font-weight: 700;
    border-bottom: 1px solid #e8e8e8;
    line-height: 28.8px;
    margin-bottom: 0.8rem;
}

.modal-2 .content-1 .column p {
    margin-bottom: 0.2rem;
}

.modal-2 .validity-content .row span:not(:first-child) {
    color: black;
}

.modal-2 .validity-content {
    justify-content: unset;

    margin-left: 3rem;
}

.modal-2 .validity-content .upper-half {
    row-gap: 0;
}

.modal-2 .booktour {
    margin-top: 3rem;
    margin-bottom: 3rem;
    margin: 3rem auto;
}

/* .modal-2 .space-content .column:first-child,
.modal-2 .space-content .column:last-child {
    color:grey;
} */

.modal-2 .space-content .column:not(:last-child) {
    color: grey;
}

.lower-title {
    font-family: Magistic;
    font-feature-settings: "clig" 1, "liga" 1;
    align-self: center;
    margin-bottom: -2rem;
    padding: 0.5rem 1rem;
}

@media (max-width: 1024px) {
    .banner-container {
        min-height: 27vh;
        background-color: #282f34;
    }
}

@media (max-width: 767.9px) {
    .validity-content .upper-half,
    .validity-content .lower-half {
        font-size: 12px;
    }

    .modal-content {
        font-size: 1rem;
    }

    .banner-content-modal img {
        position: absolute;
        transform: translate(-124%, -120%);
        top: 100%;
        left: 100%;
        width: 67%;
    }

    .banner-container .banner {
        transform: scale(1.15);
    }

    .body-content {
        background-color: unset;
    }

    .banner-content-modal .title {
        font-size: 24px;
    }

    .banner-container .banner {
        transform: none;
    }

    .banner-container {
        padding-top: 6.5rem;
    }

    .banner-content .content {
        /* font-family: Niramit-Light; */
        letter-spacing: 0.2em;
        line-height: 19px;
    }

    .booktour {
        font-size: 12px;
    }

    .text-content-modal {
        line-height: 16.8px;
        padding: 0% 5% 0% 5%;
    }

    .text-content-modal h1 {
        color: #fbc400;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 1rem;
        width: 20rem;
    }

    .text-content-modal p {
        font-family: Niramit Light;
        font-size: 12px;
        line-height: 18.8px;
        letter-spacing: 0.05em;
    }

    .itinerarybutton {
        font-size: 0.75rem;
        width: 60%;
    }

    .booktour {
        width: 35%;
    }

    .space-content {
        display: flex;
        justify-content: space-between;
        background-color: #333e46;
        padding: 1rem 0rem 1rem 0rem;
        margin-left: unset;
        margin-right: unset;
        border-bottom-left-radius: unset;
        border-bottom-right-radius: unset;
        /* align-items: center;; */
    }

    .space-content .column {
        font-size: 10px;
        line-height: 12px;
        padding: 1.5rem 0rem 1.5rem 0rem;
        /* padding: 10px; */
        flex: 1;
        text-align: center;
    }

    .space-content .column:not(:last-child) {
        border-right: 1px solid #52616d;
    }

    .validity-content {
        display: flex; /* Enables Flexbox on the container */
        flex-direction: column; /* Stacks rows vertically */
        gap: 2rem;
    }

    .validity-content .upper-half,
    .validity-content .lower-half {
        display: grid;
        grid-template-columns: 1fr 2fr;
        border-left: solid;
        border-color: #fbc400;
    }

    .validity-content .row {
        display: contents;
    }

    .validity-content .row span:first-child {
        color: #fbc400; /* Change this color as needed */
        font-weight: bold; /* Optional: make the text bold */
        margin-left: 1.5rem;
    }

    .capacitycontent {
        background-color: #21272b;
        padding: 12px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        border-radius: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .capacitycontent .title {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        font-weight: 700;
        font-size: 12px;
    }

    .capacitycontent img {
        width: 12px;
        height: 17px;
    }

    .capacitycontent .content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 4px;
        font-size: 12px;
    }

    .capacitycontent .row {
        display: contents;
    }

    .capacitycontent .content .row span:first-child {
        font-weight: 700;
    }

    .capacity-notes {
        font-size: 12px;
    }

    .show-more-container-1-mobile {
        overflow: hidden;
        height: 20rem;
        display: flex;
        flex-direction: column;
        /* gap: 2rem; */
        transition: height 0.5s ease;
        /* border-radius: 12px; */
    }

    .show-more-container-1-mobile.expanded {
        height: auto;
    }

    .show-more-container-3-mobile {
        overflow: hidden;
        height: 20rem;
        display: flex;
        flex-direction: column;
        /* gap: 2rem; */
        transition: height 0.5s ease;
        /* border-radius: 12px; */
    }

    .show-more-container-3-mobile.expanded {
        height: auto;
    }

    .gradient-overlay {
        position: sticky;
        height: unset;
        /* top: 0; */
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("/images/charter/show-more-overlay2.svg"); /* Try new custom image */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 1;
    }

    .gradient-overlay img {
        width: 100%;
        position: relative;
        /* bottom: 10rem; Temporary remove */
        height: 100%;
        object-fit: fill;
    }

    .show-more-container-1-mobile.expanded .gradient-overlay {
        display: none;
    }

    .show-more-container-3-mobile.expanded .gradient-overlay {
        display: none;
    }

    .show-more-btn {
        position: sticky;
        bottom: 10px;
        left: 50%;
        /* transform: translateX(-50%); */
        background-color: transparent;
        border: none;
        color: #fbc400;
        cursor: pointer;
        font-weight: 700;
        z-index: 1;
        line-height: 15.6px;
        font-size: 12px;
    }

    .show-more-btn-3 {
        position: sticky;
        bottom: 10px;
        left: 50%;
        /* transform: translateX(-50%); */
        background-color: transparent;
        border: none;
        color: #fbc400;
        cursor: pointer;
        font-weight: 700;
        z-index: 1;
        line-height: 15.6px;
        font-size: 12px;
    }

    .arrow-icon {
        transition: transform 0.3s ease;
    }

    .expanded .arrow-icon {
        transform: rotate(180deg);
    }

    .content-1,
    .content-2,
    .content-3,
    .content-4 {
        padding: 12px;
        border-radius: unset;
    }

    .content-4 {
        margin-bottom: 2rem;
    }

    .show-more-container-1-mobile .content-1 {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        box-shadow: unset;
        background-color: #282f34;
        font-size: 12px;
    }

    .show-more-container-1-mobile .column {
        width: 48%;
    }

    .show-more-container-1-mobile .content-1 .column .bullets {
        text-indent: -1em;
        padding-left: 1em;
        font-size: 12px;
    }

    .show-more-container-1-mobile .content-1 .column p:first-of-type {
        font-size: 1rem;
        font-weight: 700;
        border-bottom: 1px solid #424242;
        line-height: 28.8px;
        font-size: 12px;
    }

    .show-more-container-1-mobile .content-2,
    .show-more-container-1-mobile .content-4 {
        background-color: #21272b;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        font-size: 12px;
    }

    .show-more-container-1-mobile .content-2 .title,
    .show-more-container-1-mobile .content-3 .title,
    .show-more-container-1-mobile .content-4 .title {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        font-weight: 700;
        font-size: 12px;
        align-items: center;
    }

    .show-more-container-1-mobile .content-3 .title {
        font-size: 14px;
    }

    .show-more-container-1-mobile .content-3 {
        background-color: #282f34;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .show-more-container-1-mobile .content-3 .column-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0px;
        white-space: nowrap;
    }

    .show-more-container-1-mobile .content-3 .column {
        display: flex;
        flex-direction: column;
        /* gap: 1rem; */
    }

    .show-more-container-3-mobile .content-1 {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        box-shadow: unset;
        background-color: #282f34;
        font-size: 12px;
    }

    .show-more-container-3-mobile .column {
        width: 48%;
    }

    .show-more-container-3-mobile .content-1 .column .bullets {
        text-indent: -1em;
        padding-left: 1em;
    }

    .show-more-container-3-mobile .content-1 .column p:first-of-type {
        font-size: 1rem;
        font-weight: 700;
        border-bottom: 1px solid #424242;
        line-height: 28.8px;
        font-size: 12px;
    }

    .show-more-container-3-mobile .content-2,
    .show-more-container-3-mobile .content-4 {
        background-color: #21272b;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        font-size: 12px;
        /* align-items: center; */
    }

    .show-more-container-3-mobile .content-2 .title,
    .show-more-container-3-mobile .content-3 .title,
    .show-more-container-3-mobile .content-4 .title {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        font-weight: 700;
    }

    .show-more-container-3-mobile .content-3 .title {
        font-size: 14px;
    }

    .show-more-container-3-mobile .content-3 {
        background-color: #282f34;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .show-more-container-3-mobile .content-3 .column-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0px;
        white-space: nowrap;
    }

    .show-more-container-3-mobile .content-3 .column {
        display: flex;
        flex-direction: column;
        /* gap: 1rem; */
    }

    .line-grey {
        border: 1px solid #424242;
        border-radius: 12px;
    }

    .schedule-content {
        font-size: 12px;
        /* padding: 0% 5% 0% 5%; */
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .day-1-schedule,
    .day-2-schedule,
    .day-3-schedule {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .day-1-schedule h1,
    .day-2-schedule h1,
    .day-3-schedule h1 {
        font-family: Magistic;
        font-feature-settings: "clig" 1, "liga" 1;
        font-size: 2rem;
        font-weight: 400;
        text-align: center;
        padding: 2rem 3rem 1rem 3rem;
        line-height: 28.8px;
    }

    .day-1-schedule h2,
    .day-2-schedule h2,
    .day-3-schedule h2 {
        font-size: 1.5rem;
        font-weight: 400;
        font-family: Magistic;
        font-feature-settings: "clig" 1, "liga" 1;
    }

    .day-1-schedule .schedule-box,
    .day-2-schedule .schedule-box,
    .day-3-schedule .schedule-box {
        /* background-color: transparent; */
        /* padding: 12px; */
        border-radius: 12px;
        border: 1px solid #ffffff;
    }

    .day-1-schedule .two-column-layout,
    .day-2-schedule .two-column-layout,
    .day-3-schedule .two-column-layout {
        display: grid;
        grid-template-columns: 1fr 2fr;
        /* gap: 20px;  */
        line-height: 16.8px;
        letter-spacing: 0.05rem;
        align-items: stretch;
    }

    .day-1-schedule .two-column-layout .row,
    .day-2-schedule .two-column-layout .row,
    .day-3-schedule .two-column-layout .row {
        display: contents;
    }

    .day-1-schedule .two-column-layout .title,
    .day-2-schedule .two-column-layout .title,
    .day-3-schedule .two-column-layout .title {
        font-weight: 700;
        background-color: #2d383f;
        padding: 13px;
    }

    .day-1-schedule .two-column-layout .content,
    .day-2-schedule .two-column-layout .content,
    .day-3-schedule .two-column-layout .content {
        text-align: left;
        font-weight: 400;
        padding: 13px;
    }

    .schedule-box .two-column-layout .row:first-child .title {
        border-top-left-radius: 15px;
    }

    .day-1-schedule .two-column-layout .row:last-child .title {
        border-bottom-left-radius: 15px;
    }

    .schedule-box .two-column-layout .row:not(:last-child) .title,
    .schedule-box .two-column-layout .row:not(:last-child) .content {
        border-bottom: 2px solid #374148;
    }

    .arrowup {
        position: sticky;
        bottom: 3%;
        right: 2%;
        float: right;
        width: 45px;
        display: none !important;
        cursor: pointer;
        align-self: flex-end;
        z-index: 10;
    }

    /* .day-1-schedule .note-container{
        display: flex;
        justify-content: space-between;
        gap: 2rem;
        letter-spacing: 0.15rem;
    }

    .day-1-schedule .note-container .note-title{
        font-weight: 700;
    }

    .day-1-schedule .note-container .note-content{
        flex-grow: 1;
    } */
    .modal-2 .main-content {
        gap: 2rem;
        background-color: white;
    }

    .modal-2 .body-content-mobile .money-title {
        padding-left: 5%;
        padding-right: 5%;
    }

    .modal-2 .body-content-mobile .money-title h1,
    .modal-2 .body-content-mobile .money-title span {
        font-size: 1.5rem;
    }

    .modal-2 .body-content-mobile .content-1 {
        padding-left: 5%;
        padding-right: 5%;
    }

    .modal-2 .body-content-mobile .booktour {
        margin-top: unset;
        margin-bottom: 5rem;
    }

    .modal-2 .modal-title h2 {
        font-size: 2rem;
        width: 70%;
        text-align: center;
    }
}
