.landing_page {
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    padding: 50px;
    margin-top: 1rem;
    background-color: black;
}

.landing_video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
}

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

.content {
    position: relative;
    z-index: 1;
}

.landing_header {
    color: white;
    text-align: left;
    margin-left: 4rem;
    font-size: 52px;
    font-weight: 550;
    margin-top: 12rem;
    margin-bottom: 2rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
    animation: fadeIn 1.5s ease-out forwards;
}

.landing_text {
    color: white;
    text-align: left;
    margin-left: 4rem;
    width: 50vw;
    font-size: 18px;
    font-weight: 250;
    margin-top: -1rem;
    line-height: 1.4;
    animation: fadeIn 1.5s ease-out forwards;
}

.landing_button {
    padding: 10px 20px;
    font-size: 1.1em;
    margin-left: 4rem;
    color: white;
    background-color: var(--santco_color);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: color 0.3s ease;
    animation: fadeIn 1.5s ease-out forwards;
}

.landing_button:hover {
    background-color: #0056b3;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
