
.b{
    position:relative;
    width:100%;
    height:100%;
    display: flex;
    flex-direction: row;
}

.info-cel{
    display: inline-block;
    padding: 20;
    border-radius: 5px;
    cursor:pointer;
}
.info-txt{
    background-color: yellow;
    padding: 10 20;
    font-weight: bold;
    border-radius: 5px;
}
.slider-container{
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    position:relative;
}
.slider{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    background-size: cover;
    background-repeat: none;
    transition: all 0.5s;
    background-position: center center;
}
    
.icn-tel{
    width: 235px;
    height: 170px;
    position: absolute;
    top: 30px;
    right: 10px;
    z-index: 1;
    display: flex;
    flex-direction:column;
    align-items:center;
    
    
}
.icn-arr{
    background-image:url("/proyectos/i/NUEVO.png");
    height:70px;
    width:120px;
    background-size:cover;
    background-position: center center;
    animation-duration: 2s;
    animation-name: desplazamiento;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
}

@keyframes desplazamiento{
    0%{
        transform: translateY(-40px);
    }
}
.icn-txt{
    background-color: yellow;
    color:black;
    border-radius: 5px;
}
.icn-txt p{
    font-size:20px;
    margin:8px;
}
.clr{
    font-weight: bold;
}
.dirs{
    padding:15;
}
a{
    color:black;
    text-decoration:none;
}

@media (max-width:480px) {
    .noOnPhone{
        display: block !important;
        font-size: 16;
    }
    .noOnPhone p{
        font-size: 13;
    }
}