.section-albums .albums-btn-wrapper {
    text-align: center;
}

.section-albums .album-item-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.section-albums .album-item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
}

.section-albums .album-item-wrap .album-item-title-per {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color2);
    transition: 0.3s;
    text-align: center;
}

.section-albums .album-item-wrap .album-item-title-en {
    font-size: clamp(1rem, 2vw, 22px);
    font-family: var(--english_font);
    color: var(--text);
    transition: 0.3s;
    text-align: center;
    text-transform: uppercase;
}

.section-albums a.album-item-wrap:hover .album-item-title-per,
.section-albums a.album-item-wrap:hover .album-item-title-en {
    color: var(--color1);
}
/* 
.section-albums .album-item-img::after {
    content: '';
    position: absolute;
    background-color: #F1F3F9;
    width: 75%;
    height: 93%;
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
} */

/* .section-albums .album-item-img {
    padding-top: 4.5rem;
} */

.section-albums .album-item-img img {
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (max-width: 767.99px) {
    .section-albums .album-item-content {
        gap: 0px;
    }

    .section-albums .album-item-wrap .album-item-title-per,
    .section-albums .album-item-wrap .album-item-title-en {
        line-height: 1.5;
    }
}