.article10 {
    padding-bottom: 100px;
    background: url(../images/a10-bg.jpg);
}

.a10-wrapper {
    color: #111;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.a10-wrapper h1 {
    font-size: 45px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.a10-wrapper h1 span {
    color: var(--main-color);
    font-weight: 800;
}

.a10-wrapper h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    padding: 5px 30px;
    border-radius: 10px;
    background-color: var(--main-color);
    margin-top: 2rem;
}

.a10-wrapper h2 b {
    font-weight: 700;
}

.a10-wrapper h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.02em;
    margin-top: 3rem;
}

.a10-box-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.a10-box {
    width: 250px;
    padding: 50px 10px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .2);
    box-shadow: 0 15px 15px 0 rgba(0, 0, 0, .1);
}

.a10-box:hover {
    background-color: rgba(255, 255, 255, .1);
}

.a10-b-image {
    height: 125px;
}

.a10-box p {
    color: #222;
    font-size: 22px;
    line-height: 1.4;
    margin-top: 1rem;
}


/*==================================================*/
@media (max-width: 850px) {
    .a10-wrapper h1 {
        font-size: 35px;
    }

    .a10-wrapper h2 {
        font-size: 22px;
    }

    .a10-wrapper h3 {
        font-size: 18px;
    }

    .a10-box {
        width: 33%;
        padding: 40px 10px;
    }

    .a10-b-image {
        height: 80px;
    }

    .a10-box p {
        font-size: 18px;
    }
}


@media (max-width: 550px) {
    .a10-wrapper h1 {
        font-size: 28px;
    }

    .a10-wrapper h2 {
        font-size: 18px;
    }

    .a10-wrapper h3 {
        font-size: 16px;
    }

    .a10-wrapper h3 br {
        display: none;
    }

    .a10-box-wrapper {
        gap: 10px;
    }

    .a10-box {
        padding: 25px 10px;
    }

    .a10-b-image {
        height: 50px;
    }

    .a10-box p {
        font-size: 14px;
        margin-top: .5rem;
    }
}


@media (max-width: 450px) {
    .a10-wrapper h1 {
        font-size: 22px;
    }

    .a10-wrapper h2 {
        font-size: 16px;
    }

    .a10-wrapper h3 {
        font-size: 14px;
    }

    .a10-b-image {
        height: 35px;
    }

    .a10-box p {
        font-size: 12px;
    }
}