#mainf{
    width: 100%;
    background-color: #000;
    position: relative;
}
#mainf .mainf-wrap{
    display: flex;
    flex-direction: column;
}
#mainf .mainf-wrap .left{
    width: 100%;
    height: 100lvh;
    height: 100svh;
    position: relative;
}
#mainf .mainf-wrap .left img{
    background: #000;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#mainf .mainf-wrap .left .dark{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
}

#mainf .mainf-wrap .right{
    width: 100%;
    height: 100lvh;
    height: 100svh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}
#mainf .mainf-wrap .right img{
    opacity: 0;
    z-index: 1;
    object-fit: cover;
}

#mainf .mainf-wrap .right p{
    opacity: 0;
    color: #FFF;
    font-family: var(--font-sans);
    font-size: var(--font-size-24);
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.03125rem;
    z-index: 1;
    position: relative;
}
@media screen and (max-width: 767.9px) {
    #mainf .mainf-wrap .right{
        gap: 1.5rem;
    }
    #mainf .mainf-wrap .right img {
        /* width: 8rem; */
        height: 4.1875rem;
    }
    #mainf .mainf-wrap .right p{
        font-size: var(--font-size-14);
    }
}