.img{
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    object-fit: cover;
}

/* ws logo */
.link_ws{
    position: fixed;
    right: 5px;
    bottom: 40px;
    z-index: 39;
    width: 60px;
}

.ws_logo_color{
    fill:#40c351;
    transition: all .2s ease-in-out;
}

.ws_logo:hover .ws_logo_color{
    fill: #028449
}
.link_ws:hover::before {
    content: "Contactanos";
    position: absolute;
    top: 16px;
    left: -115px;
    padding: 2px 10px;
    background-color: #fff;
    color: #000;
    white-space: nowrap;
    border-radius: 8px;
    -webkit-box-shadow:  0px 0px 5px 1px rgba(0,0,0,0.2);
    -moz-box-shadow:  0px 0px 5px 1px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.2);
}

/* fin ws logo */

/* inicio loader */
.loader-section{
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    /* display: flex; flex para que salga */
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #00000041;
    z-index:999;
    transition: all 1s 1s ease-out;
    opacity:1;
}
.loaded{
    opacity:0;
    z-index:-1;
}
    
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #002f75;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

/* fin loader */

