/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Яндекс карта */
.yandex-map-wrapper {
    position: relative;
    padding-bottom: 30%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.yandex-map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==================== АДАПТИВНОСТЬ ==================== */

@media (max-width: 768px) {
    .yandex-map-wrapper {
        padding-bottom: 75%;
    }
}