.upa_titlebanner {
    max-width: 1670px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.upa_titlebanner:before {
    content: "";
    position: absolute;
    clip-path: polygon(70% 0, 100% 0, 100% 100%, 0% 100%);
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    background-color: var(--mg-primary-color-a-full);
    opacity: 0.7;
    z-index: 20;
}

.upa_titlebanner img {
    z-index: 10;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.upa_titlebanner h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 40;
    color: var(--mg-primary-color-b-full);
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 0;
    display: block;
    padding: 15px;
    font-size: 26px;
}

.upa_titlebanner h2:after {
    content: "";
    position: absolute;
    clip-path: polygon(0% 60%, 100% 0%, 100% 100%, 0% 100%);
    right: 0;
    top: -25px;
    width: 100%;
    height: 25px;
    background-color: #ffffff;
    opacity: 0.8;
    z-index: 30;
}

.upa_titlebanner h2 span {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

@media (min-width: 1200px) {
    .upa_titlebanner h2 {
        font-size: 40px;
        padding: 20px;
        z-index: 20;
    }

    .upa_titlebanner h2:after {
        height: 50px;
        top: -50px;
        clip-path: polygon(0% 80%, 100% 0%, 100% 100%, 0% 100%);
    }

    .upa_titlebanner:before {
        z-index: 40;
    }
}

