/* #region: Global */
    .footer {
        margin-top: 0;
    }
    .mobile-only {
        display: none;
    }

/* #region: Section 1 */
    .homepage .section-1 {
        position: relative;
        margin-bottom: 50px;
        z-index: 1;
    }
    .homepage .section-1 .overlay .mobile-search-dropdown {
        display: none;
    }
    .homepage .section-1 .banner {
        width: 100%;
        height: 75vh;
        object-fit: cover;
        filter:opacity(0.6)
    }
    .homepage .section-1 .overlay {
        width: 65%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .homepage .section-1 .overlay .title {
        font-size: 65px;
        line-height: 80px;
        font-weight: 600;
        text-align: center;
        color: var(--light_black);
        padding-bottom: 30px;
    }
    .homepage .section-1 .overlay .description {
        margin: auto;
        width: 80%;
        font-size: 20px;
        text-align: center;
        color: var(--gray);
        padding-bottom: 30px;
    }
    .homepage .section-1 .overlay .search-bar {
        position: relative;
        background-color: var(--white);
        border-radius: 32px;
        padding: 15px;
        box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
        width: 100%;
    }
    .homepage .section-1 .overlay .search-bar .search-inputs {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-item {
        padding: 0 20px;
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-item.dropdown-search {
        width: 200px;
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-item .search-label {
        font-size: 14px;
        font-weight: 500;
        color: var(--light_black);
        padding-bottom: 3px;
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-item .search-input {
        font-size: 14px;
        color: var(--gray);
        padding: 0;
        border: none;
        outline: none;
        cursor: pointer;
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .divider {
        width: 1px;
        height: 40px;
        background-color: var(--input_border);
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-button {
        font-size: 14px;
        font-weight: 500;
        border: none;
        border-radius: 16px;
        color: var(--white);
        background-color: var(--light_black);
        padding: 12px 20px;
        transition: all 0.3s;
        &:hover {
            background-color: var(--red);
            transition: all 0.3s;
        }
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-button i {
        margin-right: 5px;
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-item .filters {
        position: absolute;
        width: 100%;
        left: 0;
        top: 75px;
        background-color: var(--white);
        padding: 40px;
        border-radius: 32px;
        box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-item .filters .dropdown-title {
        font-size: 14px;
        font-weight: 600;
        color: var(--gray);
        padding-bottom: 10px;
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-item .filters .label {
        font-size: 14px;
        color: var(--medium_gray);
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-item .filters .dropdown-divider {
        border-top: 1px solid var(--input_border);
        margin: 25px 0;
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-item .filters .single-radio {
        margin-bottom: 15px;
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-item .filters .single-radio:nth-last-child(-n+4) {
        margin-bottom: 0;
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-item .date {
        font-size: 14px;
        font-weight: 500;
        color: var(--gray);
        border: none;
        border-radius: 0;
        cursor: pointer;
        &:focus-visible {
            outline: none;
        }
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-item .select2-container--default .select2-selection--single {
        border: none;
        border-radius: 0;
        font-size: 14px;
        color: var(--gray);
        outline: none;
        display: flex;
        align-items: center;
        width: 100%;
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-item .select2-container--default {
        width: 100%!important;
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-item .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: initial!important;
    }
    .homepage .section-1 .overlay .search-bar .search-inputs .search-item .select2-selection__rendered {
        padding: 0;
    }
    .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
        background-color: var(--red);
    }
    .select2-results__option {
        font-size: 14px;
    }
/* #endregion */


/* #region: Section 2 */
    .homepage .section-2 .nav-pills {
        border-bottom: 1px solid var(--input_border);
        margin-bottom: 25px;
    }
    .homepage .section-2 .nav-pills .nav-item {
        margin-right: 40px;
    }
    .homepage .section-2 .nav-pills .nav-item .nav-link {
        font-size: 17px;
        padding: 0;
        padding-bottom: 10px;
        color: var(--gray);
        border-radius: 0;
    }
    .homepage .section-2 .nav-pills .nav-item .nav-link.active {
        background-color: transparent;
        font-weight: 500;
        color: var(--light_black);
        border-bottom: 2px solid var(--red);
    }
    .homepage .section-2 .tab-content .card {
        border-radius: 4px;
        padding: 15px;
        border: 1px solid var(--input_border);
    }
    .homepage .section-2 .tab-content .card .card-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 4px;
        margin-bottom: 12px;
    }
    .homepage .section-2 .tab-content .card .card-body {
        padding: 0;
    }
    .homepage .section-2 .tab-content .card .card-body .type {
        font-size: 14px;
        color: var(--medium_gray);
    }
    .homepage .section-2 .tab-content .card .card-body .title {
        font-size: 24px;
        color: var(--light_black);
    }
    .homepage .section-2 .tab-content .card .card-body .description {
        font-size: 14px;
        color: var(--gray);
        line-height: 22px;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;

        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
        max-height: calc(22px * 2);
    }
    .homepage .section-2 .tab-content .card .card-body .location {
        font-size: 14px;
        color: var(--medium_gray);
        padding-top: 20px;
    }
    .homepage .section-2 .tab-content .card .card-body .location i {
        margin-right: 5px;
    }
    .homepage .section-2 .tab-content .card .card-body .bottom-box {
        background-color: var(--medium_white);
        font-size: 13px;
        color: var(--gray);
        padding: 10px 15px;
        border-radius: 8px;
        margin-top: 15px;
    }
    .homepage .section-2 .tab-content .card .card-body .bottom-box .span-text {
        margin: 0 10px;
        cursor: pointer;
    }
    .homepage .section-2 .tab-content .card .card-body .bottom-box i {
        margin-right: 5px;
    }
    .homepage .section-2 .tab-content .card .card-body .bottom-box .dropdown-menu {
        border: none;
        font-size: 15px;
        color: black;
        left: -5%!important;
        top: 2%!important;
        border-radius: 0;
        padding: 0;
        margin: 0;
        background-color: #f3f3f3;
    }
    .homepage .section-2 .tab-content .card .card-body .bottom-box .dropdown-menu .dropdown-item {
        font-size: 13px;
        color: var(--light_black);
        padding: 10px;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        &:hover {
            background-color: #DC291E;
            color: var(--white);
            transition: all 0.3s;
        };
    }
    .homepage .section-2 .tab-content .card .card-body .bottom-box .dropdown-menu i {
        font-size: 16px;
        padding-right: 8px;
    }
/* #endregion */


/* #region: Section 3 */
    .homepage .section-3 .card {
        border-radius: 4px;
        padding: 15px;
        border: 1px solid var(--input_border);
        margin-bottom: 20px;
    }
    .homepage .section-3 .card .card-row {
        align-items: center;
    }
    .homepage .section-3 .card .image {
        width: 100%;
        height: 140px;
        object-fit: cover;
    }
    .homepage .section-3 .card .title {
        font-size: 16px;
        font-weight: 500;
        color: var(--light_black);
        padding-bottom: 10px;
    }
    .homepage .section-3 .card .description {
        font-size: 14px;
        color: var(--gray);
        line-height: 25px;
        padding-bottom: 10px;
    }
    .homepage .section-3 .card .checkout {
        font-size: 15px;
        color: var(--gray);
    }
/* #endregion */


/* #region: Section 4 */
    .homepage .section-4 {
        background-image: url('/storage/frontend/homepage-coming-soon.png');
        background-size: contain;
        padding-top: 60px;
    }
    .homepage .section-4 .section-4-row {
        align-items: center;
    }
    .homepage .section-4 .title {
        font-size: 32px;
        font-weight: 500;
        color: var(--white);
        padding-bottom: 15px;
    }
    .homepage .section-4 .description {
        font-size: 16px;
        color: var(--white);
        line-height: 30px;
        padding-bottom: 20px;
    }
    .homepage .section-4 .form {
        border: 1px solid #2D2D2D;
        padding: 10px 15px;
        border-radius: 8px;
    }
    .homepage .section-4 .form .form-row {
        align-items: center;
    }
    .homepage .section-4 .form .input {
        background-color: transparent;
        width: 100%;
        color: var(--white);
        border: none;
        outline: none;
    }
    .homepage .section-4 .form .submit-button {
        background-color: var(--red);
        border: none;
        width: 100%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        font-size: 14px;
        color: var(--white);
        font-weight: 600;
        transition: all 0.3s;
        &:hover {
            background-color: var(--light_black);
            transition: all 0.3s;
        }
    }
    .homepage .section-4 .form input::placeholder {
        color: var(--medium_gray);
    }
    .homepage .section-4 .image {
        width: 100%;
        object-fit: cover;
    }
/* #endregion */


/* #region: Section 5 */
    .homepage .section-5 .view-more-button {
        border: 1px solid var(--red);
        color: var(--red);
        font-size: 18px;
        font-weight: 500;
        width: 250px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        transition: all 0.3s;
        &:hover {
            background-color: var(--red);
            color: var(--white);
            transition: all 0.3s;
        }
    }
    .homepage .section-5 .left-image {
        width: 100%;
        height: 420px;
        object-fit: cover;
        padding-bottom: 20px;
    }
    .homepage .section-5 .left .date {
        font-size: 15px;
        color: var(--gray);
        padding-bottom: 5px;
    }
    .homepage .section-5 .left .title {
        font-size: 24px;
        font-weight: 500;
        color: var(--light_black);
        padding-bottom: 5px;
    }
    .homepage .section-5 .left .description {
        font-size: 16px;
        color: var(--medium_gray);
        line-height: 30px;
        padding-bottom: 10px;
    }
    .homepage .section-5 .read-more-button {
        font-size: 15px;
        color: var(--gray);
        font-weight: 500;
        &:hover {
            font-weight: 600;
        }
    }
    .homepage .section-5 .single-article {
        margin-bottom: 30px;
    }
    .homepage .section-5 .single-article:last-child {
        margin-bottom: 0;
    }
    .homepage .section-5 .right-image {
        width: 100%;
        height: 175px;
        object-fit: cover;
        padding-bottom: 10px;
    }
    .homepage .section-5 .right .title {
        font-size: 20px;
        font-weight: 500;
        color: var(--light_black);
        padding-bottom: 5px;
    }
    .homepage .section-5 .right .description {
        font-size: 15px;
        color: var(--medium_gray);
        line-height: 20px;
        padding-bottom: 10px;
    }
/* #endregion */
    

/* #region: Section 6 */
    .homepage .section-6 {
        background-color: var(--black);
        padding: 30px 0;
    }
    .homepage .section-6 .advertise {
        align-items: center;
    }
    .homepage .section-6 .advertise .text {
        font-size: 32px;
        color: var(--white);
    }
    .homepage .section-6 .advertise .text:last-child {
        padding-bottom: 0;
    }
    .homepage .section-6 .advertise .advertise-button {
        background-color: var(--red);
        color: var(--white);
        font-size: 18px;
        font-weight: 500;
        width: 200px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        border-radius: 4px;
        transition: all 0.3s;
        &:hover {
            background-color: var(--light_black);
            transition: all 0.3s;
        }
    }
/* #endregion */


/* #region: Responsive */
    @media (width <= 1921px) {}
    @media (width <= 1901px) {}
    @media (width <= 1851px) {}
    @media (width <= 1801px) {}
    @media (width <= 1751px) {}
    @media (width <= 1681px) {}
    @media (width <= 1601px) {}
    @media (width <= 1537px) {}
    @media (width <= 1441px) {}
    @media (width <= 1367px) {
        .homepage .section-1 .overlay {
            width: 85%;
        }
        .homepage .section-1 .overlay .description {
            width: 90%;
        }
    }
    @media (width <= 1301px) {}
    @media (width <= 1281px) {}
    @media (width <= 1201px) {
        .homepage .section-1 .overlay {
            width: 90%;
        }
    }
    @media (width <= 1151px) {}
    @media (width <= 1076px) {}
    @media (width <= 1025px) {
        .homepage .section-1 .banner {
            height: 60vh;
        }
        .homepage .section-1 .overlay .title {
            font-size: 50px;
            line-height: 60px;
            padding-bottom: 20px;
        }
        .homepage .section-1 .overlay .description {
            font-size: 17px;
            padding-bottom: 20px;
        }
        .homepage .section-1 .overlay .search-bar .search-inputs .search-item {
            padding: 0 5px;
        }
        .homepage .section-1 .overlay .search-bar .search-inputs .search-item .search-label {
            font-size: 13px;
            padding-bottom: 0px;
        }
    }
    @media (width <= 992px) {
        .homepage .section-1 .overlay .search-bar {
            padding: 10px;
        }
        .homepage .section-4 {
            padding-bottom: 30px;
            padding-top: 30px;
        }
        .homepage .section-5 .view-more-button {
            font-size: 16px;
            width: 200px;
            height: 48px;
        }
        .homepage .section-5 .left-image {
            height: 400px;
        }
        .homepage .section-5 .left .title {
            font-size: 20px;
        }
        .homepage .section-6 .advertise .text {
            font-size: 30px;
        }
        .homepage .section-6 .advertise .advertise-button {
            font-size: 16px;
        }
    }
    @media (width <= 845px) {

    }
    @media (width <= 768px) {
        .homepage .section-1 .overlay .search-bar {
            display: none;
        }
        .homepage .section-1 .overlay .title {
            font-size: 45px;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown {
            display: block;
            width: 100%;
            margin-top: 20px;
            position: relative;
        }
        .select2-container--default .select2-selection--single .select2-selection__arrow b {
            margin-left: -6px;
            margin-top: 8px;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-toggle {
            background-color: var(--white);
            border-radius: 32px;
            padding: 15px 20px;
            box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.3s;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-toggle:hover {
            box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.15);
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-toggle .toggle-text {
            font-size: 16px;
            font-weight: 500;
            color: var(--light_black);
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-toggle .toggle-icon {
            font-size: 18px;
            color: var(--gray);
            transition: transform 0.3s;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-toggle.active .toggle-icon {
            transform: rotate(180deg);
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content {
            background-color: var(--white);
            border-radius: 32px;
            padding: 20px;
            margin-top: 10px;
            box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 1000;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content.show {
            display: block;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .search-item {
            margin-bottom: 20px;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .search-item:last-child {
            margin-bottom: 0;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .search-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--light_black);
            padding-bottom: 8px;
            display: block;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .search-input {
            width: 100%;
            font-size: 14px;
            color: var(--gray);
            padding: 12px 15px;
            border: 1px solid var(--input_border);
            border-radius: 8px;
            outline: none;
            background-color: var(--white);
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .search-input:focus {
            border-color: var(--red);
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .date {
            width: 100%;
            font-size: 14px;
            color: var(--gray);
            padding: 12px 15px;
            border: 1px solid var(--input_border);
            border-radius: 8px;
            outline: none;
            background-color: var(--white);
            cursor: pointer;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .date:focus {
            border-color: var(--red);
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .select2-container--default {
            width: 100% !important;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .select2-container--default .select2-selection--single {
            border: 1px solid var(--input_border);
            border-radius: 8px;
            font-size: 14px;
            color: var(--gray);
            outline: none;
            display: flex;
            align-items: center;
            width: 100%;
            height: 45px;
            padding: 0 15px;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .select2-container--default .select2-selection--single:focus {
            border-color: var(--red);
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .filters {
            position: static;
            width: 100%;
            background-color: var(--white);
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
            margin-top: 15px;
            border: 1px solid var(--input_border);
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .filters .dropdown-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray);
            padding-bottom: 15px;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .filters .label {
            font-size: 14px;
            color: var(--medium_gray);
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .filters .dropdown-divider {
            border-top: 1px solid var(--input_border);
            margin: 20px 0;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .filters .single-radio {
            margin-bottom: 0px;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .filters .single-radio:nth-last-child(-n+4) {
            margin-bottom: 0;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .search-button {
            width: 100%;
            font-size: 16px;
            font-weight: 500;
            border: none;
            border-radius: 16px;
            color: var(--white);
            background-color: var(--light_black);
            padding: 15px 20px;
            margin-top: 20px;
            transition: all 0.3s;
            cursor: pointer;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .search-button:hover {
            background-color: var(--red);
            transition: all 0.3s;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .search-button i {
            margin-right: 8px;
        }
    
        .homepage .section-4 .title {
            text-align: center;
        }    
        .homepage .section-4 .description {
            text-align: center;
        }
        .homepage .section-4 .image {
            display: none;
        }
        .homepage .section-5 .view-more-button {
            font-size: 15px;
            width: 169px;
            height: 46px;
        }
        .homepage .section-5 .left-image {
            height: 300px;
        }
        .homepage .section-6 .advertise .text {
            font-size: 24px;
        }
        .homepage .section-6 .advertise .advertise-button {
            font-size: 15px;
        }
        .homepage .section-6 .advertise .advertise-button {
            width: 150px;
            height: 48px;
        }
    

    
}
    @media (width <= 721px) {}
    @media (width <= 651px) {}
    @media (width <= 576px) {
        .homepage .section-1 .overlay .title {
            font-size: 35px;
        }
        .homepage .section-1 .overlay .description {
            font-size: 16px;
            padding-bottom: 15px;
        }
        .homepage .section-1 {
            margin-bottom: 25px;
        }
        .homepage .section-2 .nav-pills .nav-item .nav-link {
            font-size: 16px;
        }
        .homepage .section-2 .tab-content .card .card-body .title {
            font-size: 22px;
        }
        .homepage .section-4 .title {
            font-size: 30px;
        }
        .homepage .section-6 .advertise .text {
            font-size: 22px;
        }
        .homepage .section-6 .advertise .advertise-button {
            width: 100px;
            height: 40px;
        }
        .homepage .section-6 .advertise .advertise-button {
            font-size: 14px;
        }
    }
    @media (width <= 481px) {
        .mobile-only {
            display: block;
        }
        .homepage .section-1 {
            margin-bottom: 30px;
        }
        .homepage .section-1 .banner {
            height: 55vh;
        }
        .homepage .section-1 .overlay {
            width: 95%;
        }
        .homepage .section-1 .overlay .title {
            font-size: 32px;
            line-height: 40px;
            padding-bottom: 20px;
        }
        .homepage .section-1 .overlay .description {
            font-size: 15px;
            padding-bottom: 20px;
            width: 100%;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .select2-container--default .select2-selection--single {
            font-size: 13px;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-toggle {
            padding: 10px 18px;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-toggle .toggle-text {
            font-size: 13px;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content {
            padding: 16px;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .search-input,
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .date {
            padding: 10px 12px;
            font-size: 13px;
        }
        .homepage .section-1 .overlay .mobile-search-dropdown .mobile-search-content .search-button {
            font-size: 14px;
            padding: 12px 16px;
        }
        .homepage .section-2 .nav-pills {
            margin-bottom: 15px;
        }
        .homepage .section-2 .nav-pills .nav-item {
            margin-right: 25px;
        }
        .homepage .section-2 .nav-pills .nav-item .nav-link {
            font-size: 15px;
            padding-bottom: 8px;
        }
        .homepage .section-2 .tab-content .card {
            padding: 12px;
            margin-bottom: 15px;
        }
        .homepage .section-2 .tab-content .card .card-image {
            height: 180px;
            margin-bottom: 10px;
        }
        .homepage .section-2 .tab-content .card .card-body .type {
            font-size: 12px;
        }
        .homepage .section-2 .tab-content .card .card-body .title {
            font-size: 18px;
            margin-bottom: 8px;
        }
        .homepage .section-2 .tab-content .card .card-body .description {
            font-size: 13px;
            line-height: 18px;
            margin-bottom: 10px;
        }
        .homepage .section-2 .tab-content .card .card-body .location {
            font-size: 12px;
            padding-top: 15px;
        }
        .homepage .section-2 .tab-content .card .card-body .bottom-box {
            font-size: 12px;
            padding: 8px 12px;
            margin-top: 12px;
        }
        .homepage .section-3 .card {
            margin-bottom: 15px;
            padding: 12px;
        }
        .homepage .section-3 .card .image {
            width: 100%;
            height: 120px;
        }
        .homepage .section-3 .card .title {
            font-size: 16px;
            padding-bottom: 8px;
        }
        .homepage .section-3 .card .description {
            font-size: 14px;
            line-height: 20px;
            padding-bottom: 8px;
        }
        .homepage .section-3 .card .checkout {
            font-size: 13px;
        }
        
        .homepage .section-4 {
            padding: 30px 0;
        }
        .homepage .section-4 .title {
            font-size: 24px;
            text-align: center;
            padding-bottom: 12px;
        }
        .homepage .section-4 .description {
            font-size: 14px;
            text-align: center;
            padding-bottom: 20px;
        }
        .homepage .section-4 .form {
            padding: 8px 12px;
        }
        .homepage .section-4 .form .input {
            font-size: 13px;
            padding: 10px 12px;
        }
        .homepage .section-4 .form .submit-button {
            font-size: 13px;
            padding: 10px 12px;
            height: 45px;
        }
        .homepage .section-5 {
            margin-bottom: 30px;
        }
        .homepage .section-5 .row .col-8 {
            width: 100%;
            flex: 0 0 100%;
            max-width: 100%;
        }
        .homepage .section-5 .row .col-4 {
            display: none;
        }
        .homepage .section-6 .advertise .col-9 {
            width: 100%;
            flex: 0 0 100%;
            max-width: 100%;
        }
        .homepage .section-6 .advertise .col-3 {
            display: none;
        }
        .homepage .section-5 .left-image {
            height: 250px;
            padding-bottom: 15px;
        }
        .homepage .section-5 .left .date {
            font-size: 13px;
            padding-bottom: 5px;
        }
        .homepage .section-5 .left .title {
            font-size: 20px;
            padding-bottom: 8px;
        }
        .homepage .section-5 .left .description {
            font-size: 14px;
            line-height: 22px;
            padding-bottom: 12px;
        }
        .homepage .section-5 .read-more-button {
            font-size: 13px;
        }
        .homepage .section-5 .right-image {
            height: 140px;
            padding-bottom: 8px;
        }
        .homepage .section-5 .right .title {
            font-size: 16px;
            padding-bottom: 5px;
        }
        .homepage .section-5 .right .description {
            font-size: 13px;
            line-height: 18px;
            padding-bottom: 8px;
        }
        
        .homepage .section-5 .view-more-button {
            display: none;
        }
        
        .homepage .section-5 .mobile-only .read-more-button {
            border: 1px solid var(--red);
            color: var(--red);
            font-size: 13px;
            font-weight: 500;
            padding: 10px 22px;
            border-radius: 4px;
            transition: all 0.3s;
            margin-top: 20px;
        }
        
        .homepage .section-5 .mobile-only .read-more-button:hover {
            background-color: var(--red);
            color: var(--white);
            font-weight: 600;
        }
        
        .homepage .section-6 {
            padding: 25px 0;
        }
        .homepage .section-6 .advertise .text {
            font-size: 22px;
            text-align: center;
            margin-bottom: 5px;
        }
        .homepage .section-6 .advertise .text:last-child {
            margin-bottom: 0;
        }
        
        .homepage .section-6 .advertise .advertise-button {
            display: none;
        }
        
        .homepage .section-6 .mobile-only .advertise-button-mobile {
            display: block;
            background-color: var(--red);
            color: var(--white);
            font-size: 13px;
            font-weight: 500;
            width: 140px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px auto 0;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .homepage .section-6 .mobile-only .advertise-button-mobile:hover {
            background-color: var(--light_black);
            transition: all 0.3s;
        }
        
        /* Global Section Styles */
        /* .section-title {
            text-align: center;
            font-size: 18px;
            margin-bottom: 8px;
        }
        .section-description {
            font-size: 14px;
            text-align: center;
            margin-bottom: 20px;
        } */
        
        .container {
            padding-left: 15px;
            padding-right: 15px;
        }
        .row {
            margin-left: -7.5px;
            margin-right: -7.5px;
        }
        .row > [class*="col-"] {
            padding-left: 7.5px;
            padding-right: 7.5px;
        }
    }
    @media (width <= 429px) {
        .homepage .section-1 .banner {
            height: 60vh;
        }
        .homepage .section-5 .view-more-button {
            font-size: 12px;
            width: 110px;
            height: 36px;
            margin: 0 auto;
        }
        
        .homepage .section-6 .advertise .advertise-button {
            font-size: 12px;
            width: 90px;
            height: 36px;
            margin: 0 auto;
        }
    }
    @media (width <= 415px) {}
    @media (width <= 396px) {
        .homepage .section-1 {
            margin-bottom: 25px;
        }
        .homepage .section-1 .banner {
            height: 50vh;
        }
        .homepage .section-1 .overlay {
            width: 95%;
        }
        .homepage .section-1 .overlay .title {
            font-size: 28px;
            line-height: 35px;
            padding-bottom: 10px;
        }
        .homepage .section-1 .overlay .description {
            font-size: 14px;
            padding-bottom: 5px;
            width: 100%;
        }
        .homepage .section-1 .overlay .search-bar {
            padding: 8px;
        }
        .homepage .section-1 .overlay .search-bar .search-inputs .search-item {
            padding: 0 3px;
        }
        .homepage .section-1 .overlay .search-bar .search-inputs .search-item .search-label {
            font-size: 11px;
        }
        .homepage .section-1 .overlay .search-bar .search-inputs .search-item .search-input {
            font-size: 12px;
        }
        .homepage .section-1 .overlay .search-bar .search-inputs .search-button {
            font-size: 12px;
            padding: 8px 12px;
        }
        .homepage .section-2 .nav-pills {
            margin-bottom: 8px;
        }
        .homepage .section-2 .nav-pills .nav-item {
            margin-right: 20px;
        }
        .homepage .section-2 .nav-pills .nav-item .nav-link {
            font-size: 14px;
            padding-bottom: 8px;
        }
        .homepage .section-2 .tab-content .card {
            padding: 10px;
        }
        .homepage .section-2 .tab-content .card .card-image {
            height: 120px;
        }
        .homepage .section-2 .tab-content .card .type {
            font-size: 12px;
        }
        .homepage .section-2 .tab-content .card .title {
            font-size: 14px;
        }
        .homepage .section-2 .tab-content .card .description {
            font-size: 12px;
        }
        .homepage .section-2 .tab-content .card .location {
            font-size: 11px;
        }
        
        .homepage .section-3 .card {
            margin-bottom: 15px;
        }
        .homepage .section-3 .card .image {
            width: 100%;
            height: 80px;
        }
        .homepage .section-3 .card .title {
            font-size: 13px;
            padding-bottom: 3px;
        }
        .homepage .section-3 .card .description {
            font-size: 11px;
            padding-bottom: 3px;
        }
        .homepage .section-3 .card .checkout {
            font-size: 11px;
        }
        .homepage .section-4 {
            padding: 20px 0;
        }
        .homepage .section-4 .title {
            font-size: 20px;
            text-align: center;
        }
        .homepage .section-4 .description {
            font-size: 12px;
            text-align: center;
        }
        .homepage .section-4 .form .form-row {
            flex-direction: column;
        }
        .homepage .section-4 .form .col-8,
        .homepage .section-4 .form .col-4 {
            width: 100%;
            margin-bottom: 10px;
        }
        .homepage .section-4 .form .input {
            font-size: 12px;
            padding: 8px 12px;
            margin-bottom: 15px;
            text-align: center;
        }
        .homepage .section-4 .form .submit-button {
            font-size: 11px;
            padding: 6px 16px;
            width: auto;
            min-width: 120px;
            height: 32px;
            margin: 0 auto;
        }
        .homepage .section-5 .view-more-button {
            font-size: 11px;
            width: 100px;
            height: 32px;
            margin: 0 auto;
        }
        .homepage .section-5 .left-image {
            height: 200px;
        }
        .homepage .section-5 .left .date {
            font-size: 12px;
        }
        .homepage .section-5 .left .title {
            font-size: 16px;
        }
        .homepage .section-5 .left .description {
            font-size: 13px;
            line-height: 20px;
        }
        .homepage .section-5 .read-more-button {
            font-size: 12px;
        }
        .homepage .section-5 .right-image {
            height: 120px;
        }
        .homepage .section-5 .right .title {
            font-size: 14px;
        }
        .homepage .section-5 .right .description {
            font-size: 12px;
            line-height: 16px;
        }
        .homepage .section-6 {
            padding: 20px 0;
        }
        .homepage .section-6 .advertise .text {
            font-size: 18px;
        }
        .homepage .section-6 .advertise .advertise-button {
            font-size: 11px;
            width: 80px;
            height: 32px;
            margin: 0 auto;
        }
        
        /* Global Section Styles */
        .section-title {
            text-align: center;
            font-size: 14px;
        }
        .section-description {
            font-size: 12px;
            text-align: center;
        }
    }
    @media (width <= 377px) {}
    @media (width <= 361px) {}
    @media (width <= 331px) {
        .homepage .section-1 .overlay .title {
            font-size: 22px;
        }
        .homepage .section-2 .tab-content .card .card-image {
            height: 200px;
        }
        .homepage .section-5 .mobile-only .read-more-button {
            font-size: 12px;
            padding: 10px 10px;
        }
        .homepage .section-6 .mobile-only .advertise-button-mobile {
            font-size: 12px;
            width: 100px;
            height: 32px;
        }
    }
/* #endregion */