header {
    height: auto !important;
}

.pure {
    display: flex;
    height: 700px;
    gap: 0;
}

.pure-text {
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    padding-top: 0;
    gap: 2rem;
}

.pure-logo img {
    max-width: 250px;
    height: auto;
    display: block;
}

.pure-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.pure-content {
    width: 60vw;
    position: relative;
}

.pure-video {
    background-image: url('../img/video-thumbnails/pure_video.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 0 0 20px;
}

.pure-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px 0 0 20px;
}

.pure-cta {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.pure-cta h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgb(20 13 13 / 90%);
}

.pure-cta h2 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgb(20 13 13 / 80%);
}

@media (max-width: 1024px) {
    .pure {
        flex-direction: column;
        height: auto;
    }

    .pure-video {
        border-radius: 0;
    }

    .pure-video video {
        border-radius: 0;
    }

    .pure-text {
        width: 100%;
        padding: 30px;
        padding-top: 0;
    }

    .pure-text h2 {
        font-size: 2rem;
    }

    .pure-content {
        width: 100%;
        min-height: 400px;
    }

    .pure-cta h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pure {
        height: auto;
    }

    .pure-text {
        width: 100%;
        min-height: 250px;
        padding: 20px;
        padding-top: 0;
    }

    .pure-text h2 {
        font-size: 1.5rem;
    }

    .pure-content {
        width: 100%;
        min-height: 300px;
    }

    .pure-cta h5 {
        font-size: 0.8rem;
    }

    .pure-cta h2 {
        font-size: 1.2rem;
    }
}