*{
    margin: 0;
    padding:0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

.hide{
    display: none !important;
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

svg{
    width: 20px;
    height: 20px;
}

p{
    margin-bottom: 16px;

}

.text-slide-shadow{
    text-shadow: 1px 1px 10px #090a0b;
}

img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ima-slide-alerta-inmuno{
    object-position: 20%;
}

.cover{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: black;
    opacity: 0.3;
    z-index: 2;
}

.parallax{
    /* background-image: url(""); */
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.svg-fills-aqua svg{
    fill: var(--aqua);
    width: 14px;
    height: 14px;
}

.loader {
    border: 16px solid #fff; /* Light grey */
    border-top: 16px solid var(--aqua); /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }