.m-hero {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    background-color: #fff;
}

.m-hero .m-hero-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    background-color: #2d2d2d;
}

.m-hero .m-hero-inner .m-hero-text {
    position: absolute;
    display: block;
    width: fit-content;
    max-width: 48.19vw; /*694px*/
    height: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
}

.m-hero .m-hero-inner .lg,
.m-hero .m-hero-inner .sm {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    opacity: .75;
}

.m-hero .m-hero-inner .sm {
    display: none;
}

.m-hero .m-hero-inner picture {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.m-hero .m-hero-inner picture img,
.m-hero .m-hero-inner video {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


.m-hero .m-hero-inner .m-hero-container {
    position: absolute;
    display: block;
    width: fit-content;
    height: fit-content;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 3;
}


@media screen and (max-width: 1440px) {
    .m-hero .m-hero-inner .m-hero-text {
        max-width: 694px;
    }
}


@media only screen and (max-width: 740px) {
    .m-hero .m-hero-inner .lg {
        display: none;
    }

    .m-hero .m-hero-inner .sm {
        display: block;
    }
    
    .m-hero .m-hero-inner .m-hero-text {
        width: 100%;
        max-width: 320px;
    }
}