/******** whatsapp float button *********/
.pop-up {
    width: 150px;
    height: 66px;
    position: fixed;
    bottom: 20px;
    left: 82px;
    background-color: #fffffffa;
    color: rgb(0, 0, 0);
    padding: 5px;
    padding-top: 16px;
    padding-bottom: 5px;
    text-align: start;
    font-size: 12px;
    line-height: 12px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.text-popup {
    font-weight: bold;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 20px;
    background-color: #08d452fa;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}

.float:hover>.pop-up {
    visibility: visible !important;
    opacity: 1;
}

.my-float {
    margin-top: 16px;
}

/******** whatsapp float button *********/

@keyframes action {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

/* Definir la animación con prefijos para compatibilidad */
@-webkit-keyframes action {
    0% {
        -webkit-transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-10px);
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 130px;
    z-index: 11;
    -webkit-animation: action 1s infinite alternate;
    animation: action 1s infinite alternate;
}


.box:hover {
    transition: 1s;
    /* box-shadow: 0 0 1px 2px #ffc107; */
}

.box:hover .img-box>svg {
    background-color: #ffc107;
    padding: 10px;
    border-radius: 50%;
    transition: 0.5s;


}

.card-body>.card-title {
    font-weight: bolder;
}


@media (max-width: 992px) {
    .contact_link3 {
        display: none !important;
        /* Mostrar el div */
    }

    .img-box>img {
        object-position: center;
        object-fit: cover;
    }
}

.truncate {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}



.client-img {
    align-items: center;
    object-fit: contain;
    margin-top: 0;
    margin-bottom: 0;
    width: 200px;
    height: 200px;
}


.img-box2 {
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.img-box2 img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.img-box2:hover img {
    transform: scale(0.95);
}
