.videohalfgrid {
    display: grid;
}

.vid-on-half {
    display: flex;
    height: 100%;
}

.vid-on-half video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.turnbci .vid-on-half {
    order: 2;
}

.content-on-half {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-copy-wrapped {
    margin-top: 10px;
}

.content-on-half h2 {
    margin: 0;
    font-size: 50px;
    line-height: 1;
    font-weight: 800;
}


.content-on-half .btn {
    margin: 50px auto 0;
}

.content-on-half h2 yu {
    position: relative;
}

.content-on-half h2 yu::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 15px;
    background: var(--secondary);
    bottom: 5px;
    left: 0;
    z-index: -1;
    opacity: .3;
}

@media (max-width:1199px) {
    .turnbci .vid-on-half {
        order: initial !important;
    }

    .vid-on-half video {
        min-height: initial !important;
    }

    .videohalfgrid {
        grid-template-columns: 1fr !important;
        gap: 30px !important
    }


}

@media (max-width:767px) {
    .videohalfgrid {
        gap: 20px;
    }

    .content-on-half h2 {
        font-size: 30px;
    }
}