.feature-box-l2 {
    border: 1px solid transparent;
    padding: 15px 15px 15px 15px;
}
.feature-box-l2 h6 {
    font-weight: 600;
}
.feature-box-l2:hover {
    border-radius: 10px;
    cursor: pointer;
}
.business-1,
.business-1 a {
    color: #E40E20;
}
.business-1:hover {
    border: 1px solid #E40E20;
}
.business-2,
.business-2 a {
    color: #E48000;
}
.business-2:hover {
    border: 1px solid #E48000;
}
.business-3,
.business-3 a {
    color: #EEAD00;
}
.business-3:hover {
    border: 1px solid #EEAD00;
}
.business-4,
.business-4 a {
    color: #98BA15;
}
.business-4:hover {
    border: 1px solid #98BA15;
}
.business-5,
.business-5 a {
    color: #00A5B0;
}
.business-5:hover {
    border: 1px solid #00A5B0;
}
.business-6,
.business-6 a {
    color: #0092D6;
}
.business-6:hover {
    border: 1px solid #0092D6;
}
.business-7,
.business-7 a {
    color: #004C8F;
}
.business-7:hover {
    border: 1px solid #004C8F;
}
.business-8,
.business-8 a {
    color: #881B80;
}
.business-8:hover {
    border: 1px solid #881B80;
}
.location img {
    height: auto;
    width: 80%;
}
@media (min-width: 768px) {
    .location img {
        width: 70%;
    }
}
@media (min-width: 992px) {
    .location img {
        width: 60%;
    }
}
.location-container {
    padding-top: 80px;
    padding-bottom: 80px;
}
.location-btn {
    border: 1px transparent;
    width: 100px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}
.location-btn p {
    margin-bottom: 0 !important;
}
.location-btn i {
    color: var(--red);
    transition: transform 0.3s ease;
}
.location-btn:hover i {
    transform: translateX(5px);
}
/* Estilo para la animación de parpadeo */
@keyframes blink {
    0%, 100% { 
        border-color: transparent; 
        background-color: transparent; 
        color: inherit; 
    }
    25%, 75% { 
        border-color: red; 
        background-color: red; 
        color: #fff !important; 
    }
}
.blink-btn {
    border: 1px solid transparent;
    animation: blink 1.5s linear infinite;
}
.blink-btn p {
    color: #fff !important; 
}

/* Hover screen */
.hover-screen {
    position: fixed; /* Positioning relative to the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e40e20; /* Red background color */
    display: flex;
    align-items: center; /* Center the content vertically */
    justify-content: center; /* Center the content horizontally */
    flex-direction: column; /* Stack logo and text vertically */
    text-align: center; /* Center text */
    color: white; /* Text color */
    z-index: 10; /* Ensure it's above other content */
}
.hover-screen h1 {
    margin: 0.5em 0; /* Spacing for heading */
    font-size: 2em; /* Larger font size for the main heading */
}
.hover-screen p {
    margin: 0.5em 0; /* Spacing for paragraph */
}

.hover-screen img {
    width: 100px;
}
@media (min-width: 768px) {
    .hover-screen img {
        width: 150px;
    }
}
@media (min-width: 992px) {
    .hover-screen img {
        width: 200px;
    }
}

/* Loading */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading div {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 5px;
    animation: loading 1.5s infinite ease-in-out;
}

@keyframes loading {
    0%, 80%, 100% { opacity: 0; }
    40% { opacity: 1; }
}

.loading div:nth-child(1) { animation-delay: -0.32s; }
.loading div:nth-child(2) { animation-delay: -0.16s; }