/* #location {
    background-image: url('https://api.mapbox.com/styles/v1/mapbox/light-v10/static/pin-l+ff0000(55.3773,25.1206)/55.3773,25.1206,15/1280x720?access_token=pk.eyJ1IjoibW8zNCIsImEiOiJjamt3cnl5eTcwMTA4M2ttbTJ1M3V1bGJmIn0.0424Gy6T0wlr-8LOQORmAg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(10px);
   
} */


#location {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Blurred background image as pseudo-layer */
#location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://api.mapbox.com/styles/v1/mapbox/light-v10/static/pin-l+ff0000(55.3773,25.1206)/55.3773,25.1206,15/1280x720?access_token=pk.eyJ1IjoibW8zNCIsImEiOiJjamt3cnl5eTcwMTA4M2ttbTJ1M3V1bGJmIn0.0424Gy6T0wlr-8LOQORmAg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(10px);

    z-index: 0;
}

/* Content container */
#location .row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
  
}

.location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 1px 1px 11px rgb(0 0 0 / 23%);
}

.location-card {
    background: white;
    padding: clamp(20px, 1.04vw, 1.04vw);
    border-radius: clamp(10px, 0.52vw, 0.52vw);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow:1px 1px 11px rgb(0 0 0 / 23%);
    width: 100%;
    height: 100%;

}

.company-name {
    font-weight: bold;
}



/* @media screen and (max-width:768px) {
    .location-img {
        width: 100%;
        height: 35vh;
    }
} */