.articlex {
    height: 650px;
    background-image: linear-gradient(120deg, var(--main-color) 0%, var(--sub-color) 100%);
}

.ax-wrapper {
    position: relative;
    color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ax-text {
    z-index: 2;
}

.ax-text p {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: .5rem;
}

.ax-text h1 {
    font-size: 50px;
    font-weight: 400;
}

.ax-text h1 span {
    font-weight: 800;
}

.ax-text h1 br {
    display: none;
}

.ax {
    width: 100px;
    margin-top: 2rem;
}

.ax-overlay {
    position: absolute;
    top: 0; left: 50%;
    transform: translate(-50%, 0);
    opacity: .3;
    z-index: 0;
}


/*==================================================*/
@media (max-width: 768px) {
    .articlex {
        height: auto;
        padding: 60px 0;
    }

    .ax-text h1 br {
        display: block;
    }
}


@media (max-width: 500px) {
    .ax-text p {
        font-size: 18px;
    }
    
    .ax-text h1 {
        font-size: 35px;
    }

    .ax {
        width: 70px;
        margin: 2rem 0;
    }

    .ax-overlay {
        opacity: .5;
    }
}