.container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin-bottom: 50px;
    align-content: center;
}

.row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.block {
    float:none;
    flex: 1;
    min-width: 200px;
    background: transparent;
    border: none;
    border-radius: 6px;
    text-align: center;
    padding: 20px;
    box-shadow: none;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.block.show {
    opacity: 1;
    transform: translateY(0);
}

.block:hover {
    transform: translateY(-5px);
}

.block img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.block-title {
    margin: 10px 0;
    font-size: 18px;
}

.left-block {
    background-color: #333;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.left-block h4 {
    margin-bottom: 15px;
}

.left-block p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        align-items: center;
        gap: 10px; /* Уменьшаем расстояние */
    }
}


@media (max-width: 480px) {
    .block {
        width: 100%;
        max-width: 320px; /* Ограничиваем максимальную ширину */
        margin: 0 auto; /* Центрируем блок */
    }
}

