.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-item {
    height: 100vh;
}

.hero-slider img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.7);
}

.hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

.hero-logo img {
    width: 350px;
}

/* SOCIAL ICONS */
.hero-contact-info {
    position: fixed;
    right: 30px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}


.hero-contact-info a {
    color: black;
    background: rgba(247, 240, 240, 0.861);
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.hero-contact-info a:hover {
    background-color: #000;
    color: #fff;
}

.hero-contact-info .divider {
    width: 1px;
    height: 40px;
    background: #ccc;
    margin: auto;
}


@media (max-width: 991.98px) {
    .hero-logo img {
        width: 250px;
    }

}

@media (max-width: 767.98px) {

    .hero-slider,
    .hero-slider .carousel-item {
        height: 60vh !important;
        filter: brightness(0.9);
        position: relative;
        overflow: hidden;
        object-fit: cover;

    }


    .hero-slider img {
        object-position: 40% 10%;
        /* Center horizontally, 10% from top */
    }

    .hero-slider::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
        pointer-events: none;
        z-index: 2;
    }

    .hero-logo {
        display: none;
    }

    .hero-contact-info {
        display: none;
    }

}

@media (max-width: 575.98px) {
    .hero-contact-info {
        right: 15px;
        bottom: 80px;
    }

}

@media (max-width: 400px) {
    /* .mobile-logo img {
        height: 40px;
    } */

    .hero-slider,
    .hero-slider .carousel-item {
        height: 50vh !important;
    }
}
