html {
    scroll-behavior: smooth !important;
}


.bigger-breadcrumb .container .breadcumb-content {
    padding: calc(var(--space) + 150px) 0 calc(var(--space) + 50px)
}

.lh-1 {
    line-height: 1;
}

#about_whoWeAre_carousel .carousel-inner .carousel-item img {
    transition: width 1s ease-in-out;
}

.h-100 {
    height: 100% !important;
}

.card-image-custom {
    aspect-ratio: 16/9;
    max-width: 300px !important;
    object-fit: cover;
}

@media screen and (max-width: 450px) {
    .card-image-custom {
        max-width: 100% !important;
    }
}

.custom-card-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Blurred background */
.custom-card-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg) no-repeat center center/cover;
    filter: blur(3px) brightness(0.8);
    z-index: -1;
}

/* Foreground Image */
.foreground {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
