.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #333;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 17, 39, 0.4);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
    width: 100%;
    padding: 0 1rem;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
}

.hero .logo {
    width: 100%;
}

.hero p {
    margin-top: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
    text-align: left;

    max-width: max-content;
}

.hero-txt-container {
    display: flex;
    justify-content: center;
    width: 100%;
    position: absolute;
    bottom: 5%;
    left: 1rem;
    transform: translate(-0%, -20%);
    z-index: 2;
}

.hero-txt {
    width: 100%;
    max-width: 1200px;
}

.hero-txt-img{
    width: 310px;
    height: 80px;
}




#myVideo {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {

    .hero-content {
        max-width: 100%;
    }

    .hero .logo {
        width: 100%;
    }

}

@media (min-width: 992px) {

    .hero-content {
        max-width: 600px;
    }

    .hero .logo {
        width: 537px;
    }

}