.article5 {
    background: url(../images/a5-bg.png) no-repeat;
    overflow: hidden;
}

.a5-title {
    font-size: 48px;
    margin-bottom: 3rem;
}

.a5-title span {
    color: var(--main-color);
}

.a5-box-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
}

.a5-box {
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, .1);
    transition: all .2s;
}

.a5-box:hover {
    backdrop-filter: blur(0);
    background-color: rgba(255, 255, 255, .15);
}

.a5-box-icon img {
    height: 80px;
    transition: all .2s;
}

.a5-box:hover img {
    transform: scale(1.1);
}

.a5-box-text h5 {
    color: #fff;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    text-align: center;
}

.a5-box-text p {
    color: rgba(255, 255, 255, .5);
    font-size: 17px;
    line-height: 1.5;
    text-align: center;
    margin-top: 7px;
}


/*==================================================*/
@media (max-width: 1450px) {
    .article5 {
        padding-bottom: 0;
        background-position: top !important;
    }
    
    .article5 .article-wrapper {
        padding: 0;
    }
    
    .a5-box-wrapper {
        width: 100%;
        gap: 2px;
    }
    
    .a5-box {
        padding: 40px 10px;
        backdrop-filter: blur(0);
    }
}


@media (max-width: 768px) {
    .a5-box-icon img {
        height: 64px;
    }
    
    .a5-box-text h5 {
        font-size: 20px;
    }

    .a5-box-text p {
        font-size: 15px;
    }
}


@media (max-width: 550px) {
    .article5 {
        padding-top: 0;
    }
    
    .a5-title {
        font-size: 36px;
    }
    
    .a5-box {
        padding: 30px 10px;
    }
    
    .a5-box-icon img {
        height: 44px;
    }
    
    .a5-box-text h5 {
        font-size: 17px;
    }

    .a5-box-text p {
        font-size: 12px;
    }
}


@media (max-width: 450px) {
    .a5-title {
        font-size: 32px;
    }
    
    .a5-box-icon img {
        height: 38px;
    }
    
    .a5-box-text h5 {
        font-size: 15px;
    }
}