.au_ma_container {
    width: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}
.au_ma_tabs_wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
}
.au_ma_tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.au_ma_tab {
    padding: 10px 15px;
    background-color: #25bfa0;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}
.au_ma_tab:hover {
    background-color: #f54747;
    transform: scale(1.05);
}
.au_ma_tab.au_ma_active {
    background-color: #f54747;
    font-weight: bold;
}
.au_ma_more_tabs {
    background-color: rgba(51, 53, 49, .6);
}
.au_ma_hidden_tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.au_ma_content {
    position: relative;
    margin-bottom: 40px; /* Отступ от нижней части блока с карточками */
}
.au_ma_cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (max-width: 1024px) {
    .au_ma_cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .au_ma_cards {
        grid-template-columns: 1fr;
    }
    .au_ma_card_phone,
    .au_ma_card_hours {
        display: none; /* Скрываем телефон и режим работы на мобильных устройствах */
    }
}
@media (min-width: 1440px) {
    .au_ma_cards {
        grid-template-columns: repeat(6, 1fr);
    }
}
.au_ma_cards.au_ma_visible {
    opacity: 1;
    transform: translateY(0);
}
.au_ma_card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.au_ma_card_title a {
    font-size: 18px;
    font-weight: bold;
    color: #25bfa0;
    text-decoration: none;
}
.au_ma_card_title a:hover {
    color: #f54747;
}
.au_ma_card_address,
.au_ma_card_phone,
.au_ma_card_hours {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(51, 53, 49, .6);
}