.galleries__desc {
    font-family: var(--font-family);
    font-size: 24px;
    line-height: 171%;
    text-align: justify;
    margin-bottom: 100px;
}

.galleries__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 30px;
}

.galleries__card {
    width: 100%;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.galleries__card a {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card__name {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 55px;
    /* line-height: 202%; */
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 1440px) {
}

@media (max-width: 1024px) {
    .galleries__cards {
        grid-template-columns: 1fr;
        row-gap: 50px;
    }
}

@media (max-width: 768px) {
    .galleries__desc {
        font-size: 14px;
        margin-bottom: 50px;
    }

    .galleries__card {
        height: 168px;
    }

    .card__name {
        font-size: 32px;
    }
}
