.page-hero {
    position: relative;
    height: 800px;
    background-color: #1e0c12;
    color: #fcf2e1;
}

.background-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 800px;
    -o-object-fit: cover;
    object-fit: cover;
    left: 0;
    opacity: 1;
    z-index: 1;
}

.page-hero:before{
    content: "";
    left: 0;
    bottom: 0;
    background-color: #1e0c12;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.45;
    z-index: 100;
}


.background-video-content {
    position: relative;
    z-index: 1000;
}

.background-video-content{
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 40px;
    gap: 30px;
}

.hero-sub-title {
    color: var(--color-sec-red);
    text-align: left;
    line-height: 23px;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 2px;
}


.hero-title{
    z-index: 6;
    text-transform: uppercase;
    color: rgb(251, 241, 224);
    text-decoration: none;
    white-space: nowrap;
    text-align: left;
    letter-spacing: 1px;
    font-size: 80px;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
    visibility: visible;
    line-height: 1.1;
    font-weight: 400;
    font-family: "TTFirsNeue", "TTFirsNeue", "MarkPro", "Arial", sans-serif;
    text-shadow: 1px 1px 3px #122e50;
    position: relative;
}

.hero-p {
    z-index: 6;
    color: rgb(251, 241, 224);
    line-height: 1.5;
    max-width: 700px;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 22px;
    text-shadow: 1px 1px 3px #122e50;
}

.hero-btn, .hero-btn:hover {
    z-index: 8;
    background-color: rgb(255, 38, 38);
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    text-decoration: none;
    letter-spacing: 2px;
    text-align: left;
    line-height: 37px;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 32px;
    backdrop-filter: none;
    filter: none;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
    visibility: visible;
}




@media (max-width: 767px) {
    .background-video {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 280px;
        -o-object-fit: cover;
        object-fit: cover;
        left: 0;
        opacity: 1;
        z-index: 1;
    }
     .page-hero{
        height: 280px;
    }
}

@media (max-width: 500px) {
    .background-video {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 262px;
        -o-object-fit: cover;
        object-fit: cover;
        left: 0;
        opacity: 1;
        z-index: 1;
    }

    .page-hero{
        height: 262px;
    }
}