.breadCrumbles,.containerContact{
    width: 100%;
    max-width: 100rem;
}
.btnContact{
    background-color: #C0207B;
    border: none;
    border-radius: 12px;
    transition: all .5s ease-in-out;
}
.btnContact:hover{
    transform: scale(1.05);
}
.lowBarContact{
    height: 5px;
    width: 5rem;
    border-radius: 15px;
    background-color: #C0207B;
}

/*estilos para ventana de confirmacion*/
.message_alertContact{
    position: fixed;
    z-index: 45;
    top: 7rem;
    right: 2rem;
    color: rgb(97, 97, 97);
    text-align: center;
    transition: 2s;
    box-shadow: 2px 5px 5px rgba(80, 80, 80, 0.5);
    animation: slideIn 1s, slideOut 1s 2s;
    background-color: #97fface3;
}

.hideContact{
    display: none;
}
@keyframes slideIn {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}


