.skills ul{
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.skills ul li{
    margin: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.skills img{
    height: 10rem;
}
.skills p{
    font-size: 2rem;
    margin-top: 10px;
    color: #777;
    text-align: center;
}
.skills .skillrating .fa{
    font-size: 2rem;
}
.skills .checked {
    color: #07cb79;
}

.skills .skillimg {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
}




.card-deck {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    flex-flow: row wrap;
    justify-content: center;
}

.card-deck a{
    position: relative;
    cursor: pointer;
    margin: 10px;
}

.card-deck .card {
    position: relative;
    cursor: pointer;
    color: initial;
    display: flex;
    flex-direction: column;
    /* width: 27rem; */
    background-color: #f7f7f9;
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: .25rem;
    /* height: 100%; */
}

.card-deck .card img {
    width: auto;
    max-width: 27rem;
    min-height: 15rem;
    max-height: 35rem;
    margin: 0px;
    border-top-right-radius: calc(.25rem - 1px);
    border-top-left-radius: calc(.25rem - 1px);
}

.card-block {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-title {
    font-weight: 600;
    font-size: 2.5rem;
    margin-top: 0px;
    color: white;
    font-family: "PT Sans", Helvetica, Arial, sans-serif;
    padding: 2rem 1.5rem 1rem;
}

.card-text:last-child {
    margin-bottom: 0;
}
.card-text {
    font-size: 1.5rem;
    line-height: 2.3rem;
}
.card-footer:last-child {
    border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px);
}
.card-footer {
    position: absolute;
    top: 0;
    left: 0;
    font-size: .75rem;
    padding: 0;
    background-color: rgba(7,203,121,0.9);;
    width: 100%;
    height: 100%;
    display: none;
}
.card-deck a:hover .card-footer {
    display: block;
}
.text-muted {
    color: white !important;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 1.5rem 1rem;
}