.article3 {
    background-color: #6c82ff;
}

.a3-title {
    color: #fff;
    font-size: 36px;
    font-weight: unset;
    font-family: 'SBAggro';
    margin-bottom: 3rem;
}

.a3-box-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.a3-box {
    position: relative;
    padding: 40px 40px 40px 100px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 20px;
    background-color: #8098ff;
}

.a3-box-num {
    position: absolute;
    top: 40px; left: 50px;
    color: #fff;
    padding-top: 3px;
    font-size: 22px;
    font-weight: lighter;
    font-family: 'SBAggro';
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #ff75ff;
}

.a3-box h1 {
    color: #ffff00;
    font-size: 34px;
    font-weight: unset;
    font-family: 'SBAggro';
    margin-bottom: -10px;
}

.a3-box p {
    color: #fff;
    font-size: 19px;
    line-height: 1.65;
}

.a3-script {
    width: 300px;
}


/*==================================================*/
@media (max-width: 450px) {
    .a3-title {
        font-size: 28px;
        margin-bottom: 2rem;
    }

    .a3-box {
        padding: 30px 30px 30px 55px;
    }
    
    .a3-box-num {
        top: 30px; left: 22px;
        width: 20px;
        height: 20px;
        font-size: 13px;
    }

    .a3-box h1 {
        font-size: 22px;
    }

    .a3-box p {
        font-size: 15px;
    }

    .a3-script {
        width: 95%;
    }
}


@media (max-width: 356px) {
    .a3-box p br {
        display: none;
    }
}