/* Carousel */
#heroCarousel {
    height: 665px;
    overflow: hidden;
    /* top: 94px; */
}

.carousel-item {
    height: 665px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 45, 87, 0.3) 0%, rgba(188, 152, 105, 0.4) 50%, rgba(46, 111, 109, 0.3) 100%);
}

.carousel-text {
    font-size: 24px;
    color: white;
    font-weight: bold;
    z-index: 1;
}

/* Make arrows not clip with text */
.carousel-control-next,
.carousel-control-prev {
    width: 5%;
}

/* About us */
.about-us-section {
    position: relative;
    padding: 0;
}

.about-us-section p {
    white-space: pre-line;
    color: var(--main-color);
}

.about-us-section h1 {
    color: var(--secondary-color);
}

.about-us-card img {
    object-fit: cover;
    height: 372px;
    width: 100%;
    transition: transform 0.3s ease;
}

.about-us-card img:hover {
    transform: scale(1.05);
}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
