.bi-whatsapp {
    color: #13cf23;
}

.container-phone {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

.phone-table {
    display: flex;
    align-items: center;

}

.container-carousel {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


.col {
    display: flex;
    flex-direction: column;
}

.a-phone {
    text-decoration: none;
    color: inherit;
}

span {
    font-size: 30px;
    margin-right: 2rem;
}

.bancoImagenes {
   mask-image: linear-gradient(black 90%, transparent);
}

.text-on-image {
    position: absolute;
    top: 38%;
    right: 10%;
    color: white;
    text-align: center;
    z-index: 1;
    transition: .5s, color .10s;
        -webkit-transition: .5s, color .10s;
        -moz-transition: .5s, color .10s;
    
}

     
.text-on-image:hover{
    transform: scale3d(1.2, 1.2, 0.3);
        -webkit-transform: scale3d(1.5, 1.5, 0.3);
        -moz-transform: scale3d(1.5, 1.5, 0.3);
}

.text-on-image h1, 
.text-on-image h4 {
    color: white;
   
}


/* From Uiverse.io by 0x-Sarthak */
.cta {
    position: relative;
    margin: auto;
    padding: 11.5px 18px;
    transition: all 0.2s ease;
    border: 3px solid #009bb7;
    border-radius: 50px;
    background: #009bb7;
    cursor: pointer;
}

.cta:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    border-radius: 50px;
    background: white;
    width: 45px;
    height: 45px;
    transition: all 0.8s ease;
}

.cta span {
    position: relative;
    font-family: Montserrat;
    font-size: 18px;
    color: white;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.cta svg {
    position: relative;
    top: 0;
    margin-top: 1px;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: white;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.5s ease;
}

.cta:hover:before {
    width: 100%;
    margin-top: 1px;
    background: #1c1c1c;
}

.cta:hover svg {
    transform: translateX(0);
    transition: all 2s ease;
}

.cta:active {
    transform: scale(0.95);
    transition: all 2s ease;
}

.carousel-item {
    position: relative;
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /* Ajusta la altura del gradiente según prefieras */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    /* Gradiente de negro a transparente */
    pointer-events: none;
    /* Asegura que el gradiente no bloquee la interacción */
}

.about-mf {
    border-radius: 10px;
    width: 80%;
}

.about-info {
    display: flex;
    justify-content: center;
}

/* Estilos para el contenedor del contenido */
.box-shadow-full {
    background: #ffffff;
    /* Fondo blanco, puedes cambiarlo según tu preferencia */
    border-radius: 10px;
    /* Bordes redondeados */
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    /* Sombra ligera */
}


.center_services {
    display: flex;
    /* justify-content: center; */
    justify-content: space-evenly;
}


/* From Uiverse.io by JohnnyCSilva */
.card {
    width: 252px;
    height: 265px;
    background: white;
    border-radius: 30px;
    box-shadow: 15px 15px 30px #bebebe,
        -15px -15px 30px #ffffff;
    transition: 0.2s ease-in-out;
}

.img {
    transition: 0.2s ease-in-out;
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
}

.img:hover {
    transform: scale(1.1) rotate(0deg);
}

.img2 {
    transition: 0.2s ease-in-out;
    object-fit: cover;
    /* width: 100%;
    height: 100%; */
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;

}

.img2:hover {
    /* width: 100%;
    height: 100%; */
    transform: scale(1.0) rotate(0deg);

}


.text {
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: space-around;
}

.text .h3 {
    font-family: 'Lucida Sans' sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: black;
}

.text .p {
    font-family: 'Lucida Sans' sans-serif;
    color: #999999;
    font-size: 13px;
}


.card:hover {
    cursor: pointer;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}