html {
    scroll-behavior: smooth;
}

/* Animaciones */
* {
    animation: appear 0.3s ease-in-out;
}

.header {
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.instalaciones__images {
    position: relative;
}

.instalaciones__images img:nth-child(1) {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    width: 50%;
}

.instalaciones__images img:nth-child(2) {
    position: absolute;
    top: 10%;
    width: 50%;
    right: 0;
    z-index: -1;
}

.border-bottom--blue {
    border-bottom: 24px solid var(--dark-blue);
}

.floating-buttons {
    position: relative;
}

.floating-buttons a {
    position: fixed;
    bottom: 24px;
}

.floating-buttons a:nth-child(1) {
    left: 24px;
}

.floating-buttons a:nth-child(2) {
    right: 24px;
}

@media (max-width: 990px) {
    .instalaciones__images {
        position: static;
        display: flex;
    }

    .instalaciones__images img:nth-child(1) {
        position: static;
        top: 0;
        left: 0;
        transform: none;
    }

    .instalaciones__images img:nth-child(2) {
        position: static;
        top: 0;
        right: 0;
        transform: none;
    }
}


@keyframes appear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}