
.subtitle {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    /* color: var(--bs-gray-600);*/
}

.bg-overlay {
    max-height: 200px;
    overflow: hidden;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-footer {
    margin-top: auto;
}


.linkHovered {
    color: grey
}

    .linkHovered:after {
        background: none repeat scroll 0 0 transparent;
        bottom: 0;
        content: "";
        display: block;
        height: 2px;
        left: 50%;
        position: absolute;
        transition: width 0.3s ease 0s, left 0.3s ease 0s;
        width: 0;
    }

.linkHoveredBlue:after {
    background: #009fe3;
}

.linkHoveredGreen:after {
    background: #88c764;
}

.linkHovered:hover:after {
    width: 100%;
    left: 0;
}

.linkHoveredGreen, .linkHoveredBlue {
    position: relative;
    text-decoration: none;
    color: #727a88;
}

    .linkHoveredGreen:hover {
        color: #88c764;
    }

.cardFixed {
    width: 300px; /* Fixed width */
    height: 300px; /* Fixed height */
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: space-between; /* Distribute space between items */
    margin: 15px; /* Margin between cards */
    overflow: hidden; /* Hide overflow */
}

.card-text {
    flex: 1; /* Allow text to grow */
    font-size: 1em; /* Base font size */
    margin: 0; /* Remove default margin */
    overflow: hidden; /* Hide overflow */
    text-overflow: ellipsis; /* Add ellipsis for overflowing text */
    display: -webkit-box; /* Use for multi-line text truncation */
    -webkit-line-clamp: 8; /* Limit to 3 lines */
    -webkit-box-orient: vertical; /* Set box orientation */
    text-align: start;
}

.fixed-size-image {
    height: auto; /* or any other fixed height */
    width: auto;
    max-width: 450px
}

@media(max-width: 768px) {
    .fixed-size-image {
        max-width: 320px;
    }
}

@media(max-width: 398px) {
    .fixed-size-image {
        max-width: 150px;
    }
}

.abp-card {
    background-color: white;
    border: 15px solid white;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Adjust map container styles */
#map-container {
    height: 400px; /* Adjust the height as needed */
    display: none;
}

#map {
    height: 100%;
}

#welcome-massage {
    display: none;
}
