.article3 {
    height: 100vh;
    padding-bottom: 0;
    background-color: var(--main-color);
    overflow: hidden;
}

.a3-image {
    position: fixed;
    bottom: 0; right: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    filter: brightness(110%);
    z-index: 1;
}

.a3-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.a3-wrapper {
    position: relative;
    width: 100%;
}

.a3-title {
    color: #fff;
    display: flex;
    flex-direction: column;
}

.a3-title h5 {
    color: #000;
    font-size: 75rem;
    font-weight: 300;
    font-family: 'Tenor Sans';
}
.a3-title h5:nth-child(2) {
    font-size: 60rem;
}
.a3-title h5:last-child {
    color: var(--point-color);
    font-size: 50rem;
}

.a3-text {
    color: #444;
    font-size: 22rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 50rem;
}


/*==================================================*/
@media (max-width: 991px) {
    .a3-wrapper {
        padding-left: 5%;
    }
}


@media (max-width: 550px) {
    .a3-text {
        font-size: 26rem;
    }
}