.article1 {
    background-color: #222222;
}

.a1-wrapper {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.a1-bgtext {
    position: absolute;
    top: 50%; right: 0;
    transform: translate(0, -50%);
    color: rgba(255, 255, 255, .07);
    font-size: 250px;
    z-index: 1;
}

.a1-wrapper p {
    color: #fff;
    font-size: 45px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.a1-wrapper p span {
    color: var(--main-color);
    font-weight: 700;
}



/*==================================================*/
@media (max-width: 768px) {
    .article1 {
        padding: 100px 0;
    }
    
    .a1-bgtext {
        font-size: 180px;
    }

    .a1-wrapper p {
        font-size: 35px;
    }
}


@media (max-width: 500px) {
    .article1 {
        padding: 40px 0 80px 0;
    }
    
    .a1-bgtext {
        top: unset;
        bottom: -115px; right: -40px;
        transform: unset;
        font-size: 130px;
    }

    .a1-wrapper p {
        font-size: 26px;
    }
}