.hero-video-container {
    height: 100vh !important;
    width: 100% !important;
    position: relative;
}

.hero-video-container video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, .9) !important;
}

.hero-logo {
    width: 250px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 40px;
}

.hero-statement {
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 6px;
    font-weight: 300;
}

.cta-container {
    position: absolute;
    bottom: 5rem;
}

.cta-btn {
    border: 1px solid white;
    color: white;
    border-radius: 0;
    padding: 15px 40px;
}

.cta-btn:hover {
    background-color: white;
    color: black;
}

.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 300;
}

.cta span{
    margin-bottom: .8rem;
}

.cta:hover, .chevron {
    color: #d9d9d9;
}

.chevron {
    display: inline-block;
    border-left: 2px solid rgb(255, 255, 255);
    border-top: 2px solid rgb(255, 255, 255);
    width: 15px;
    height: 15px;
    transform: rotate(-135deg);
}