.text-personel {
    position: relative;
    height: 70px;
    text-align: center;
    margin: 10% 5% 5% 5%;
    padding: 10px 0;
    border-left: 10px solid #375977;
    border-right: 10px solid #375977;
    border-top: 1px solid #375977;
    border-bottom: 1px solid #375977;
    border-radius: 10px;
    background-color: white;
    color: rgb(55, 89, 119);
    /* animation: slide 1s; */
}

.card {
    text-align: center;
    margin-bottom: 10%;
    border-radius: 20px;
    transition: 0.4s;
}

.card:hover {
    box-shadow: 0 5px 10px rgb(55, 89, 119, 1);
    cursor: pointer;
}

.card-text {
    margin-top: 20px;
}

.card-img-top {
    border-radius: 20px 20px 0 0;
}

.modal-header {
    border: none;
}

.modal-content {
    padding: 0 10%;
}

h4 {
    font-size: 1.3rem;
    color: #375977;
}

.skill {
    margin-left: 1.3rem;
    line-height: 2rem;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-lightbox {
    width: 50%;
    border-radius: 20px;
}






.animation-slide {
    animation: slide 1s;
}

@keyframes slide {
    0% {width: 0; background-color: rgb(55, 89, 119); color: white; font-size: 0px; height: 70px; padding: 10px 0;}
    5% {width: 15%; background-color: rgb(55, 89, 119); color: white; font-size: 0px;}
    10% {width: 15%; background-color: rgb(55, 89, 119); color: white; font-size: 0px;}
    15% {width: 15%; background-color: rgb(55, 89, 119); color: white; font-size: 0px;}
    20% {width: 20%; background-color: rgb(55, 89, 119); color: white; font-size: 0px;}
    25% {width: 25%; background-color: rgb(55, 89, 119); color: white; font-size: 0px;}
    30% {width: 30%; background-color: rgb(55, 89, 119); color: white; font-size: 0px;}
    35% {width: 35%; background-color: rgb(55, 89, 119); color: white; font-size: 0px;}
    40% {width: 40%; background-color: rgb(55, 89, 119); color: white; font-size: 0px;}
    45% {width: 45%; background-color: rgb(55, 89, 119); color: white; font-size: 0px;}
    50% {width: 50%; background-color: rgb(55, 89, 119, 0.9); color: white; font-size: 0px;}
    55% {width: 55%; background-color: rgb(55, 89, 119, 0.8); color: white; font-size: 0px;}
    60% {width: 60%; background-color: rgb(55, 89, 119, 0.7); color: white; font-size: 0px;}
    65% {width: 65%; background-color: rgb(55, 89, 119, 0.6); color: white; font-size: 0px;}
    70% {width: 70%; background-color: rgb(55, 89, 119, 0.5); color: white; font-size: 0px;}
    75% {width: 75%; background-color: rgb(55, 89, 119, 0.4); color: rgb(55, 89, 119, 0.6); font-size: 0px;}
    80% {width: 80%; background-color: rgb(55, 89, 119, 0.3); color: rgb(55, 89, 119, 0.7);}
    85% {width: 85%; background-color: rgb(55, 89, 119, 0.2); color: rgb(55, 89, 119, 0.8);}
    100% {width: 90%; background-color: rgb(55, 89, 119, 0.1); color: rgb(55, 89, 119, 0.9);}
}