.wma-parallax {
    position: relative;
    overflow: hidden;
    height: var(--wma-h, 100vh);
    width: var(--wma-w, 100%);
    margin: var(--wma-mt, 0) var(--wma-mr, 0) var(--wma-mb, 0) var(--wma-ml, 0);
    background-image: var(--wma-bg-img, none);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.wma-parallax-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: table;
    padding: var(--wma-pt, 0) var(--wma-pr, 0) var(--wma-pb, 0) var(--wma-pl, 0);
    background-color: var(--wma-bg-color, transparent);
}

.wma-parallax-content {
    display: table-cell;
    vertical-align: middle;
}

.wma-parallax-content-wrapper {
    width: var(--wma-content-w, 90%);
    margin: 0 auto;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.wma-parallax-logo {
    display: block;
    margin-bottom: 25px;
}

.wma-parallax-logo img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.wma-parallax-title {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: var(--wma-title-size, 36px);
    color: var(--wma-title-color, #fff);
}

.wma-parallax-text {
    font-weight: 400;
    font-size: var(--wma-sub-size, 22px);
    color: var(--wma-sub-color, #fff);
}

.wma-parallax-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.wma-parallax-video iframe,
.wma-parallax-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
