/* #region: Global */
    .page-global {
        margin-top: 3%;
    }
    .page-title {
        font-size: 32px;
        font-weight: 600;
        text-align: center;
        color: var(--color-bg-dark);
        padding-bottom: 10px;
    }
    .page-description {
        font-size: 18px;
        text-align: center;
        color: var(--color-bg-dark-alt);
        width: 70%;
        margin: auto;
    }

    .section-1 {
        position: relative;
    }
    .section-1 .banner {
        width: 100%;
        height: 70vh;
        object-fit: cover;
        filter: brightness(0.40);
    }
    .section-title {
        font-size: 30px;
        font-weight: 700;
        color: var(--color-bg-dark);
    }
    .section-description {
        font-size: 18px;
        color: var(--color-gray);
        padding-bottom: 30px;
    }
    .section-margin {
        margin-bottom: 50px;
    }
    .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
        background-color: var(--color-primary);
    }
    .select2-results__option {
        font-size: 14px;
    }
    .line-clamp-1, .line-clamp-2, .line-clamp-3, .line-clamp-4, .line-clamp-5 {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }
    .line-clamp-1 {
        -webkit-line-clamp: 1;
    }
    .line-clamp-2 {
        -webkit-line-clamp: 2;
    }
    .line-clamp-3 {
        -webkit-line-clamp: 3;
    }
    .line-clamp-4 {
        -webkit-line-clamp: 4;
    }
    .line-clamp-5 {
        -webkit-line-clamp: 5;
    }
    .inner-page-section-title {
        font-size: 23px;
        font-weight: 700;
        color: var(--color-bg-dark);
        margin-bottom: 10px!important;
    }
    .inner-page-section-description {
        font-size: 16px;
        color: var(--color-bg-dark-alt);
        line-height: 30px;
    }
    .inner-page-section-description p {
        margin-bottom: 25px!important;
    }
    .inner-page-section-description p[data-f-id="pbf"] {
        display: none!important;
        margin: 0!important;
        padding: 0!important;
    }
    .inner-page-section-description p:has(+ p[data-f-id="pbf"]) {
        margin-bottom: 0!important;
    }
    .inner-page-section-description p:last-of-type {
        margin-bottom: 0!important;
    }
/* #endregion */


/* #region: Search bar */
    .overlay {
        width: 70%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .overlay .title {
        margin: auto;
        width: 80%;
        font-size: 65px;
        line-height: 80px;
        font-weight: 600;
        color: var(--color-white);
        padding-bottom: 20px;
        text-align: center;
    }
    .overlay .description {
        margin: auto;
        width: 80%;
        font-size: 25px;
        text-align: center;
        color: var(--color-white);
        padding-bottom: 60px;
    }
    .overlay .search-bar {
        position: relative;
        background-color: var(--color-white);
        border-radius: 16px;
        padding: 15px;
        width: 100%;
    }
    .overlay .search-inputs {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .overlay .search-inputs .search-item {
        padding: 0 20px;
        flex: 1;
        min-width: 0;
    }
    .overlay .search-inputs .search-item .search-label {
        font-size: 16px;
        font-weight: 600;
        color: var(--color-bg-dark);
        padding-bottom: 3px;
    }
    .overlay .search-inputs .search-item .search-input {
        font-size: 14px;
        color: var(--color-bg-dark-alt);
        padding: 0;
        border: none;
        outline: none;
        cursor: pointer;
    }
    .overlay .search-inputs .search-item .select2-container--default .select2-selection--single {
        border: none;
        border-radius: 0;
        font-size: 14px;
        outline: none;
        display: flex;
        align-items: center;
        width: 100%;
    }
    .overlay .search-inputs .search-item .select2-container--default {
        width: 100%!important;
    }
    .overlay .search-inputs .search-item .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: initial!important;
        display: none;
    }
    .overlay .search-inputs .search-item .select2-selection__rendered {
        padding: 0;
        color: var(--color-gray);
    }
    .overlay .search-inputs .divider {
        width: 1px;
        height: 40px;
        background-color: var(--color-gray-light);
    }
    .overlay .search-inputs .search-button {
        font-size: 15px;
        font-weight: 500;
        border: none;
        border-radius:8px;
        color: var(--color-white);
        background-color: var(--color-primary);
        padding: 12px 20px;
        margin-left: 20px;
        transition: all 0.3s;
        &:hover {
            background-color: var(--color-primary-dark);
            transition: all 0.3s;
        }
    }
    .overlay .search-inputs .search-button i {
        margin-right: 5px;
    }
    .overlay .search-inputs .search-item .filters {
        position: absolute;
        width: 100%;
        left: 0;
        top: 75px;
        background-color: var(--color-white);
        padding: 40px;
        border-radius: 32px;
        box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    }
    .overlay .search-inputs .search-item .filters .dropdown-title {
        font-size: 14px;
        font-weight: 600;
        color: var(--color-gray);
        padding-bottom: 10px;
    }
    .overlay .search-inputs .search-item .filters .label {
        font-size: 14px;
        color: var(--color-gray);
    }
    .overlay .search-inputs .search-item .filters .dropdown-divider {
        border-top: 1px solid var(--input_border);
        margin: 25px 0;
    }
    .overlay .search-inputs .search-item .filters .single-radio {
        margin-bottom: 15px;
    }
    .overlay .search-inputs .search-item .filters .single-radio:nth-last-child(-n+4) {
        margin-bottom: 0;
    }
    .overlay .search-inputs .search-item .date {
        font-size: 14px;
        color: var(--color-gray);
        border: none;
        border-radius: 0;
        padding: 0;
        cursor: pointer;
        width: 100%;
        &:focus-visible {
            outline: none;
        }
    }

    .overlay .mobile-filter {
        display: none;
    }
    .overlay .mobile-filter .dropdown-toggle::after {
        border-top: .4em solid;
        border-right: .4em solid transparent;
        border-left: .4em solid transparent;
        right: 20px;
        position: absolute;
        top: 22px;
    }
    .overlay .mobile-filter .btn {
        background-color: var(--color-white);
        font-size: 18px;
        font-weight: 600;
        width: 100%;
        height: 50px;
        border-radius: 16px;
    }
    .overlay .mobile-filter .dropdown-menu.show {
        width: 100%;
        padding: 30px;
        border-radius: 16px;
    }
    .overlay .mobile-filter .search-inputs .search-item {
        padding: 0;
        width: 100%;
    }
    .overlay .mobile-filter .search-inputs {
        flex-direction: column;
        align-items: start;
        gap: 15px;
    }
    .overlay .mobile-filter .search-inputs .divider {
        width: 100%;
        height: 1px;
        background-color: var(--color-gray-light);
    }
    .overlay .mobile-filter .search-inputs .search-button {
        width: 100%;
        padding: 18px;
        font-size: 18px;
    }
    .overlay .mobile-filter .search-inputs .search-item .search-input {
        width: 100%;
    }
/* #endregion */


/* #region: Explore */
    .explore {
        margin-bottom: 50px!important;
    }
    .explore:last-child {
        margin-bottom: 0px!important;
    }
    .explore .image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 10px;
    }
    .explore .details .title {
        font-size: 18px;
        font-weight: 700;
        line-height: 25px;
        color: var(--color-bg-dark);
    }
    .explore .details .address {
        margin-top: 5px;
        font-size: 15px;
        color: var(--color-bg-dark-alt);
        display: flex;
        gap: 5px;
    }
    .explore .bottom-box {
        margin-top: 10px;
        font-size: 16px;
    }
    .explore .bottom-box p {
        color: var(--color-gray);
    }
    .explore .bottom-box .dark {
        color: var(--color-bg-dark-alt);
        font-weight: 600;
    }
    .explore .bottom-box i {
        color: var(--color-gold);
    }
    .explore .single {
        margin-bottom: 40px;
    }
    .explore .single:nth-last-child(-n+3) {
        margin-bottom: 0;
    }
/* #endregion */


/* #region: Responsive */
    @media (width < 1681px) {
        .overlay {
            width: 85%;
        }
    }
    @media (width < 1441px) {
        .inner-page-section-description p {
            margin-bottom: 20px!important;
        }
    }
    @media (width < 1367px) {
        .section-margin {
            margin-bottom: 35px;
        }
        .section-1 .banner {
            height: 60vh;
        }
        .overlay .title {
            font-size: 60px;
            width: 90%;
        }
        .overlay .description {
            width: 90%;
            font-size: 25px;
            padding-bottom: 50px;
        }
    }
    @media (width < 1281px) {
        .page-description {
            width: 85%;
        }

        .section-title {
            font-size: 25px;
        }
        .section-description {
            font-size: 16px;
            padding-bottom: 20px;
        }

        .section-1 .banner {
            height: 50vh;
        }
        .overlay {
            width: 95%;
        }
        .overlay .title {
            font-size: 50px;
            width: 100%;
            padding-bottom: 10px;
        }
        .overlay .description {
            width: 100%;
        }

        .explore .single {
            margin-bottom: 25px;
        }
    }
    @media (width < 1076px) {
        .section-1 .banner {
            height: 45vh;
        }
        .overlay .title {
            font-size: 40px;
            line-height: 60px;
        }
        .overlay .description {
            font-size: 20px;
            padding-bottom: 40px;
            letter-spacing: 1px;
        }
        .overlay .search-bar {
            padding: 10px;
        }
        .overlay .search-bar .search-inputs .search-item {
            padding: 0 10px;
        }
        .overlay .search-bar .search-inputs .search-item .search-label {
            font-size: 15px;
            padding-bottom: 0px;
        }
        .overlay .search-bar .search-inputs .search-item .search-input {
            font-size: 13px;
        }
        .overlay .search-bar .search-inputs .search-item .select2-container--default .select2-selection--single {
            font-size: 13px;
        }
        .overlay .search-bar .search-inputs .search-item .date {
            font-size: 13px;
        }
        .overlay .search-bar .search-inputs .search-button {
            font-size: 14px;
            padding: 10px 15px;
            margin-left: 10px;
        }
    }
    @media (width < 991px) {
        .page-description {
            width: 100%;
        }

        .section-1 .banner {
            height: 35vh;
        }
        .overlay .title {
            font-size: 35px;
            padding-bottom: 5px;
        }
        .overlay .description {
            font-size: 18px;
            padding-bottom: 30px;
            letter-spacing: 0px;
        }

        .explore .single:nth-last-child(-n+3) {
            margin-bottom: 25px;
        }
        .explore .single:nth-last-child(-n+2) {
            margin-bottom: 0;
        }

        .inner-page-section-title {
            font-size: 21px;
            margin-bottom: 5px!important;
        }
        .inner-page-section-description {
            font-size: 15px;
        }
        .inner-page-section-description p {
            margin-bottom: 10px!important;
        }
    }
    @media (width < 901px) {
        .section-1 .banner {
            height: 40vh;
        }
        .overlay .search-bar {
            display: none;
        }
        .overlay .mobile-filter {
            display: block;
        }
    }
    @media (width < 768px) {
        .page-global {
            margin-top: 4%;
        }
        .page-title {
            font-size: 22px;
            padding-bottom: 5px;
        }
        .page-description {
            font-size: 15px;
        }

        .section-margin {
            margin-bottom: 25px;
        }
        .section-title {
            font-size: 20px;
        }
        .section-description {
            font-size: 15px;
        }

        .overlay .title {
            font-size: 30px;
            line-height: 40px;
        }
        .overlay .description {
            font-size: 17px;
            width: 80%;
        }
        .overlay .mobile-filter .btn {
            font-size: 16px;
        }
        .overlay .mobile-filter .dropdown-toggle::after {
            border-top: .35em solid;
            border-right: .35em solid transparent;
            border-left: .35em solid transparent;
            top: 23px;
        }
        .overlay .search-inputs .search-item .search-label {
            font-size: 15px;
        }
        .overlay .mobile-filter .search-inputs .search-button {
            padding: 15px;
            font-size: 17px;
        }

        .explore .single:nth-last-child(-n+2) {
            margin-bottom: 25px;
        }
        .explore .single:nth-last-child(-n+1) {
            margin-bottom: 0;
        }

        .inner-page-section-title {
            font-size: 18px;
        }
    }
    @media (width < 651px) {
        .section-1 .banner {
            height: 45vh;
        }
    }
    @media (width < 576px) {
        .overlay .title {
            font-size: 25px;
            padding-bottom: 5px;
        }
        .overlay .description {
            font-size: 15px;
            width: 100%;
        }
    }
    @media (width < 481px) {
        .section-description {
            font-size: 15px;
        }
    }
    @media (width < 396px) {}
/* #endregion */