html,
body {
    overflow-x: hidden !important;
}


body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.logo-container .navbar-brand {
    display: block;
    background: url('/assets/hotels/blewi_ch_new_logo.png') center/cover no-repeat;
    width: 200px;
    height: 38px;
}

.first-span {
    margin-left: 100px !important;
}

.top-bar {
    background-color: #000;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.top-bar span {
    margin: 0 10px;
}

.log-btn {
    border-radius: 100px !important;
    border: none !important;
    padding: 10px 20px !important;
    background-color: #0082DF !important;
    color: white !important;
}



.call-box {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.call-icon {
    width: 40px;
    height: 40px;
    background-color: #eaf3fb;
    color: #1469b7;
    /* Bootstrap primary */
    font-size: 16px;
}

.call-text .text-primary {
    font-size: 1.1rem;
}

.hero-section {
    position: relative;
    background:
        linear-gradient(135deg, #0082DF, #005C9E),
        url('/assets/hotels/blewi_ch_new_logo.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-position: bottom left;
    height: 85vh;
    color: white;
}

.hero-right-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


.hero-girl-img {
    position: absolute;
    right: 18%;
    bottom: 0;
    max-height: 90%;
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}



.search-form-container {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    width: 85%;
    max-width: 1200px;
    z-index: 4;
}

.form-label {
    font-weight: 500;
    font-size: 14px;
    color: black;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 768px) {
    .how-it-works {
        margin-top: 340px;
    }
}


.how-it-works .icon-box {
    background-color: #007bff;
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    padding: 20px;


}

.how-it-works .icon-box img {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
}

.how-it-works p {
    font-size: 14px;
    color: #666;
}

.work-arrow {
    z-index: 1;
}


.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.top-title {
    font-weight: normal;
    font-size: 2.2rem;
    margin-bottom: 15px;
}



.card-body h6 {
    font-weight: 600;
    margin: 10px 0 5px;
}

.card-body p {
    font-size: 14px;
    color: #777;
}

.carousel-controls {
    text-align: center;
    margin-top: 1rem;
}

.carousel-controls button {
    border: 1px solid black;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 40px;
    margin: 0 4px;
    font-weight: bold;
    font-size: 18px;
}

.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    width: 250px;
    transition: transform 0.3s;
    box-shadow: inset;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.destination-card:hover {
    transform: translateY(-5px);
}



.destination-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
    /* opacity: 100%; */
}

.destination-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    z-index: 2;
}


.destination-info h6 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.destination-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

.destination-card:hover {
    transform: scale(1.02);
}

.feature-card {
    background: white;
    border-radius: 12px;
    height: 100%;
    position: relative;
}

.image-wrapper {
    height: 200px;
    position: relative;
    border-radius: 10px;
    /* ✅ Apply radius to wrapper */
    overflow: hidden;
    /* ✅ Ensure corners are clipped */
}

.image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* ✅ Fill area and keep radius effect */
    display: block;
}

.icon-circle {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding: 8px;
}

.icon-circle img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}


/* feature section responsiveness */
@media (max-width: 576px) {
    .image-wrapper {
        width: 250px;
        /* square size */
        height: 250px;
        /* square size */
        margin: 0 auto 1rem;
        /* center horizontally + space below */
    }
}

.changed-bg {
    background-color: #FFFCF2 !important;
    width: 100%;
}

.section-title {
    color: #6ED300;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: left;
}


.main-heading {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    text-align: left;
}

.main-heading strong {

    font-weight: 700;
    color: #000;
}

.main-heading span {
    font-weight: 400;
    color: #333;
}

.content-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.btn-custom {
    background-color: #007bff;
    color: #fff;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    border: none;
}

.rounded-img {
    border-radius: 40px;
    width: 400px;
    height: 200px;
    object-fit: cover;
    display: block;
}

.rounded-travel {
    border-radius: 40px;
}

.plan {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.travel {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.travel-img {
    width: 200px;
    height: 150px;
    margin-left: 50px;
}

.couple {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.object-fit-cover {
    object-fit: cover;
}



.arrow-img {
    width: 150px;
    margin-top: 30px;
}



.testimonial-section {
    padding-bottom: 50px;
    position: relative;
}

.testimonial-heading {
    color: #6ED300;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-heading {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.4;
    color: #111;
}

.left-side {
    background-color: #F8F8F8;
    padding-top: 100px;
    padding-left: 150px;
    margin-top: 50px;
}


.testimonial-wrapper {
    position: relative;
    display: flex;
    gap: 20px;
    min-height: 220px;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    width: 325px;
    height: 200px;
    position: relative;
    z-index: 2;
    margin-left: 90px !important;

}

.overlap-card {
    position: absolute;
    right: -140px;
    top: 0;
    z-index: 5;
}

.testimonial-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h6 {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

.client-info small {
    font-size: 13px;
    color: #777;
}

.stars {
    color: #FFC700 !important;
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
}

.image-box {
    position: relative;
    height: 430px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.arrow-btns {
    position: absolute;
    top: 160px;
    left: 730px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.arrow-btns button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.arrow-left {
    background: white;
    color: black;
}

.blue-arrow {
    background: white !important;
    color: #0082DF !important;
    border: 2px solid #0082DF !important;
}

.arrow-right {
    background-color: #0082DF;
    color: white;

}

/* Responsive */
/* Mobile adjustments */
@media (max-width: 768px) {
    .left-side {
        padding: 30px 20px;
        margin-top: 0;
    }

    .testimonial-wrapper {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
    }

    .testimonial-card {
        flex: 0 0 85%;
        /* show 1 card at a time */
        scroll-snap-align: center;
        height: auto;
    }

    .overlap-card {
        position: static;
    }

    .image-box {
        height: auto;
    }

    /* Move arrows to center under the card */
    .arrow-btns {
        position: static;
        margin-top: 15px;
        justify-content: center;
    }
}


.footer {
    position: relative;
    background-color: rgba(13, 14, 17, 0.96) !important;
    /* background-image: url('assets/hotels/footerbg.png'); */
    background: url('/assets/hotels/footer_bg.png');

    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}
#hotel-suggestions:empty {
    display: none;
}


.list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list ul li {
    display: inline;
}

.list ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 0 12px;
    transition: 0.3s;
}

.list ul li a:hover {
    color: #00b14f;

}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    /* Set fixed width */
    height: 40px;

    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #6ED300;
    color: white;
    transform: scale(1.1);
}










/* Your original styles remain unchanged — above this point */

/* === Responsive Enhancements === */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 80px 0 30px;
        background-size: cover;
        background-position: center center;
    }

    .hero-content {
        position: static;
        transform: none;
        padding: 0 20px;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .search-form-container {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 10px;
        padding: 15px;
        box-shadow: none;
        border-radius: 0;
    }

    .destination-card {
        width: 100%;
        height: 200px;
    }

    .rounded-img {
        width: 100%;
        height: auto;
    }

    .testimonial-section {
        padding: 60px 15px 80px;
    }
}

/* gUEST CARDS */
.guest-dropdown {
    position: relative;
}

.guest-card {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    z-index: 1000;
    padding: 15px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.counter-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.counter-group span {
    min-width: 70px;
    color: black;
}

.counter-btn {
    padding: 4px 10px;
    font-size: 18px;
}

.child-age-select {
    width: 50px;
    padding: 5px;
    font-size: 14px;
}


/* Mobile responsive */

/* ✅ Media Query: only height change on mobile */
@media (max-width: 768px) {
    .hero-section {
        height: 30vh;
        /* Adjust this as needed */
        background-size: 250% 150%;
    }

    .hero-girl-img {
        position: absolute;
        right: 0;
        /* changed from right: 18% to right: 0 */
        bottom: 0;
        max-height: 90%;
        z-index: 2;
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 8%;
        transform: translateY(-50%);
        z-index: 3;
    }

    .hero-content h1 {
        font-size: 2rem;
        font-weight: 500;
        padding-right: 150px;
        margin-left: -80px;
        margin-bottom: 10px;
        padding-top: 50px;
    }

    .hero-content p {
        text-align: left;
        font-size: 1rem;
        margin-bottom: 1rem;
        padding-right: 175px;
        margin-left: -41px;
        padding-bottom: 90px;
    }

    .hero-right-img {
        position: absolute;
        right: 0;
        bottom: 0;
        height: 100%;
        width: 50%;
        object-fit: cover;
        z-index: 1;
    }

    .btn-discoverr {
        margin-bottom: 100px;
        margin-top: -90px;
        margin-right: 200px;
        margin-left: -100px;
        border-radius: 30px;
        padding: 4px;
        padding-left: 10px;
        padding-right: 10px;

    }



}

@media (max-width: 768px) {
    .search-form-container {
        position: absolute;
        bottom: -190px;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        width: 85%;
        max-width: 1200px;
        z-index: 4;
        margin-bottom: -200px;
    }

    .form-label {
        font-weight: 500;
        font-size: 14px;
        color: black;

    }
}

@media (max-width: 768px) {

    .destination-wrapper {
        display: flex;
        overflow: hidden;
        scroll-behavior: smooth;
    }



}


/* testimonial cards*/
/* Mobile only */
@media (max-width: 576px) {
    .testimonial-wrapper {
        display: flex;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
    }

    .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
        scroll-snap-align: start;
        box-sizing: border-box;
        margin-right: 0;
        /* Remove gaps between cards */
    }
}

/* destination-resonsivness */


@media (max-width: 767.98px) {

    /* Small travel image on mobile */
    .small-travel-img {
        max-height: 120px;
        object-fit: cover;
    }

    /* Center arrow & limit size on mobile */
    .arrow-img {
        display: block;
        margin: 10px auto 0;
        max-width: 60px;
    }

    /* Make travel + couple on same row */
    .row.align-items-stretch.g-4 {
        display: flex;
        flex-wrap: wrap;
    }

    .row.align-items-stretch.g-4>div:nth-child(1) {
        flex: 0 0 35%;
    }

    .row.align-items-stretch.g-4>div:nth-child(2) {
        flex: 0 0 65%;
    }
}


/* For hotel details styling  */

.show-more {
    border-radius: 100px !important;
    padding: 10px 20px !important;
    color: #0082DF !important;
    border: 2px solid #0082DF !important;
    margin-bottom: 20px;
}

.show-more:hover {
    color: white !important;
    background-color: #0082DF;
}

.more-accomodation {
    color: #0082DF;
}

.call-box {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.call-icon {
    width: 40px;
    height: 40px;
    background-color: #eaf3fb;
    color: #1469b7;
    font-size: 16px;
}

.call-text .text-primary {
    font-size: 1.1rem;
}



.footer {
    position: relative;
    background-color: rgba(13, 14, 17, 0.96);
    background-image: url('media/footer bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
    width: auto;
}

.list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list ul li {
    display: inline;
}

.list ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 0 12px;
    transition: 0.3s;
}

.list ul li a:hover {
    color: #00b14f;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #6ED300;
    color: white;
    transform: scale(1.1);
}

.hotel-name {
    font-size: 1.5rem;
    font-weight: 600;
}

.rating-stars {
    color: #FFD700;
    font-size: 1rem;
}

.hotel-meta {
    font-size: 0.9rem;
    color: gray;
}

.badge-rating {
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
    padding: 2px 8px;
    font-size: 0.8rem;
}

.tabs-custom .nav-link.active {
    font-weight: 600;
    border-bottom: 2px solid #007bff;
}

.main-image {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

.gallery-image {
    border-radius: 10px;
    height: 135px;
    object-fit: cover;
}

.price-box {
    font-size: 1.5rem;
    font-weight: bold;
}

.small-text {
    font-size: 0.8rem;
    color: gray;
}

.badge-rating {
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
    padding: 2px 8px;
    font-size: 0.8rem;
}

.main-image,
.gallery-image {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

.room-card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.room-card img {
    border-radius: 8px;
    width: 220px;
    height: 150px;
    object-fit: cover;
}

.room-title {
    font-weight: 600;
}

.price-old {
    text-decoration: line-through;
    color: #999;
}

.badge-green {
    background-color: #28a745;
    color: #fff;
    font-size: 0.75rem;
}

.badge-red {
    background-color: #f8d7da;
    color: #d9534f;
    font-size: 0.75rem;
}

.form-control,
.form-select {
    border-radius: 8px;
}

.check-form .form-control,
.check-form .form-select {
    height: 50px;
}

.room-price {
    font-weight: bold;
    font-size: 1.25rem;
}

.small-muted {
    font-size: 0.85rem;
    color: #666;
}

.room-details-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.room-info {
    flex: 1;
    min-width: 200px;
}

.room-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    min-width: 220px;
}

.guest-dropdown {
    position: relative;
}

.guest-card {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    z-index: 1000;
    padding: 15px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.counter-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.counter-group span {
    min-width: 70px;
    color: black;
}

.counter-btn {
    padding: 4px 10px;
    font-size: 18px;
}

.icon-blue {
    color: #007bff;
}

.price-tag {
    background-color: #6ED300;
    padding: 0px 10px;
    border-radius: 10px;
}

.guest-reviews-section {
    max-width: 1000px;
    margin: auto;
}

.rating-box {
    display: inline-block;
    background-color: #6ED300;
    color: white;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.review-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    background-color: #fff;
    height: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.03);
}

.review-score {
    display: inline-block;
    background-color: #6ED300;
    color: white;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.review-meta {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.review-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.review-text {
    font-size: 14px;
    color: #444;
    margin-top: 10px;
    line-height: 1.5;
}

.read-full-link {
    color: #0071eb;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
}

.read-full-link:hover {
    text-decoration: underline;
}

.section-heading1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-left: 13px;
}

.subheading {
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
}

.section-paragraph {
    color: #555;
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.6;
}

.inline-links a {
    color: #0071eb;
    font-size: 14px;
    margin-right: 15px;
    text-decoration: none;
}

.inline-links a:hover {
    text-decoration: underline;
}

.facility-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    background-color: #fafafa;
    transition: all 0.2s ease-in-out;
    height: 100%;
    width: 250px;
    margin: 5px;
    align-items: center;

}

.facility-card:hover {
    background-color: #f0f8ff;
    border-color: #007bff;
}

.facility-card i {
    font-size: 24px;
    color: #6ED300;
    margin-bottom: 10px;
}

.facility-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.accomodation {
    background-color: #FFFCF2;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #6ED300;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    z-index: 10;
}

.rating-badge {
    background-color: #6ED300;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.card {
    border-radius: 0.75rem;
}

.card-body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-content {
    flex-grow: 1;
}

.card-footer-btn {
    text-align: end;
}

.icon-circle {
    background-color: #E6E6E6;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #7E828E;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.icon-circle:hover {
    background-color: #e2e6ea;
}

.share-heart {
    background-color: #E6E6E6;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #7E828E;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.see-offer-btn {
    background-color: #0082DF;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
}

.see-offer-btn:hover {
    color: #0082DF;
    background-color: white;
    border: 2px solid #0082DF;
}

.facility-card.hidden {
    display: none;
}