.heros-title {
    font-weight: 700;
    font-size: 1.28651rem;
    color: #181E4B;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

@media (min-width: 1200px) {
    .heros-title {
        font-size: 2.42363rem;
    }
}

@media (min-width: 1400px) {
    .heros-title {
        font-size: 3.00158rem;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
}

#hero-image {
    height: 70px;
    mix-blend-mode: multiply!important; /* Adjust blend mode as needed */
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Adjust the opacity as needed */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.title, #hero-description, #hero-button {
    color: white;
}

.vh-100 {
    height: 80vh;
}

.short-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    height: 3em; /* Adjust based on line height and font size */
    line-height: 1.5em; /* Adjust based on your font size */
}

.scroll-down-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-decoration: none;
    animation: floating 1.5s infinite ease-in-out;
}

.btn-rounded {
    border-radius: 0.525rem; /* Adjust the value as needed for the desired roundness */
    padding-right: 20px;
    padding-left: 20px;
}

.arrow-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    transition: background 0.3s, box-shadow 0.3s;
}

.arrow-circle:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 1);
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #000;
}

@keyframes floating {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@media (max-width: 576px) {
    .text-and-image {
        flex-direction: column;
    }

    #hero-image {
        margin-top: 10px; /* Ensure space between the title and the image */
    }

    .vh-100 {
        height: 60vh; /* Adjust for smaller screens */
    }
}

