.article11 {
    background-color: #141414;
}

.a11-title {
    width: 100%;
    padding: 50px 0;
    border-radius: 10px;
    background-color: #1c1c1c;
    text-align: center;
}

.a11-title h1 {
    color: #dadada;
    font-size: 45px;
    font-weight: 400;
}

.a11-title p {
    color: #84684f;
    padding: 4px 7px;
    font-size: 45px;
    font-weight: 700;
}

.a11-box-wrapper {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    margin-top: 3rem;
}

.a11-box {
    flex: 1;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-radius: 10px 10px 0 0;
}

.a11-box:nth-child(1) {
    height: 300px;
    background-color: #6639e7;
}

.a11-box:nth-child(2) {
    height: 450px;
    background-color: var(--main-color);
}

.a11-box:nth-child(3) {
    height: 600px;
    background-color: #ba38e7;
}

.a11-box h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    padding: 6px 18px;
    border-radius: 5px;
}

.a11-box:nth-child(1) h1 {
    background-color: #4928ff;
}

.a11-box:nth-child(2) h1 {
    background-color: #c1282e;
}

.a11-box:nth-child(3) h1 {
    background-color: #9b2ec1;
}

.a11-box p {
    color: #fff;
    font-size: 30px;
    line-height: 1.5;
    text-align: center;
}


.a11-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.a11-bottom li {
    color: #dadada;
    font-size: 26px;
    display: flex;
    align-items: center;
}

.a11-bottom li span {
    color: #fff;
    width: 100px;
    padding: 7px 0;
    font-size: 24px;
    font-weight: 400;
    border-radius: 5px;
    text-align: center;
}

.a11-bottom li:nth-child(1) span {
    background-color: #4928ff;
}

.a11-bottom li:nth-child(2) span {
    background-color: #c1282e;
}

.a11-bottom li:nth-child(3) span {
    background-color: #9b2ec1;
}


.a11-bottom li b {
    font-weight: 700;
    margin-left: 20px;
}

.a11-bottom li:nth-child(1) b {
    color: #4928ff;
}

.a11-bottom li:nth-child(2) b {
    color: #c1282e;
}

.a11-bottom li:nth-child(3) b {
    color: #9b2ec1;
}


/*==================================================*/
@media (max-width: 1050px) {
    .a11-box h1 {
        font-size: 20px;
    }

    .a11-box p {
        font-size: 24px;
    }
}


@media (max-width: 900px) {
    .a11-bottom li {
        font-size: 20px;
    }

    .a11-bottom li span {
        width: 70px;
        padding: 5px 0;
        font-size: 16px;
    }
}


@media (max-width: 850px) {
    .article11 .article-wrapper {
        padding: 0;
    }
    
    .a11-title {
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        background-color: transparent;
        text-align: left;
    }

    .a11-title h1 {
        font-size: 24px;
    }

    .a11-title p {
        font-size: 40px;
        padding: 0;
    }

    .a11-box-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 2rem;
    }

    .a11-box {
        padding-left: 20px;
        flex: unset;
        justify-content: center;
        align-items: flex-start;
        gap: .3rem;
        padding-top: 0;
        border-radius: 0 10px 10px 0;
        transition: all .3s;
    }

    .a11-box:nth-child(1) {
        width: 250px;
        height: 140px;
    }
    
    .a11-box:nth-child(2) {
        width: 60%;
        height: 140px;
    }
    
    .a11-box:nth-child(3) {
        width: 97%;
        height: 140px;
    }

    .a11-box h1 {
        font-size: 14px;
        padding: 4px 8px;
    }

    .a11-box p {
        font-size: 20px;
        text-align: left;
    }

    .a11-box p span {
        display: none;
    }

    .a11-bottom {
        padding: 0 20px;
    }
}


@media (max-width: 768px) {
    .a11-bottom {
        width: 100%;
        gap: 1.5rem;
    }
    
    .a11-bottom li {
        display: flex;
        flex-direction: column;
        align-items: unset;
        gap: 8px;
    }

    .a11-bottom li b {
        margin-left: 0;
    }

    .a11-bottom li p {
        line-height: 1.5;
    }
}


@media (max-width: 500px) {
    .a11-box:nth-child(2) {
        width: 290px;
    }
    
    .a11-box:nth-child(3) {
        width: 330px;
    }
}


@media (max-width: 450px) {
    .a11-box {
        height: 120px !important;
    }
    
    .a11-box p {
        font-size: 16px;
    }
    
    .a11-bottom li span {
        width: 57px;
        font-size: 14px;
        padding: 4px 8px;
    }
    
    .a11-bottom li p {
        font-size: 16px;
    }
}


@media (max-width: 365px) {
    .a11-box:nth-child(1) {
        width: 200px;
    }
    
    .a11-box:nth-child(2) {
        width: 220px;
    }
    
    .a11-box:nth-child(3) {
        width: 240px;
    }
}