#welcome {
    height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.welcome_content {
    display: flex;
    align-items: center;
}

.welcome-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
    font-size: 16px;
    font-style: italic;
}

.welcome-image {
    flex: 1;
    min-width: 300px;
}

.welcome-image img {
    width: 100%;
    height: auto;
}

.arrow {
    text-align: center;
}

.video_arrow {
    transform: rotate(90deg);
    margin-bottom: 3vh;
}

.arrow-text {
    text-transform: lowercase;
    font-style: italic;
    text-align: center;
}

@media (max-width: 768px) {
    .welcome_content {
        flex-direction: column;
    }

    .welcome-text {
        flex: 0;
        min-width: 300px;
        text-align: left;
        font-size: 14px;
    }

    .welcome-image {
        flex-grow: 1;
        width: 100%;
        height: 30vh;
    }

    .welcome-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video_arrow {
        height: 30px;
    }

    .arrow-text {
        margin: 0 0 10px 0;
        font-size: 12px;
    }
}