
.proj-wrapper {
    position: relative;
    margin-bottom: 100px;
}

.proj-col {
    height: 600px;
    overflow-y: scroll;
    margin-bottom: 50px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 5px 6px 24px -8px rgba(92,86,86,0.75);
    -webkit-box-shadow: 5px 6px 24px -8px rgba(92,86,86,0.75);
    -moz-box-shadow: 5px 6px 24px -8px rgba(92,86,86,0.75);
}
.proj-des {
    background: rgba(0,0,0,0.8);
    border-top: 5px solid rgb(245, 197, 6);
    position: absolute;
    bottom: 0;
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #FFFFFF;
}
.proj-des p {
    color: #FFFFFF;
    margin-bottom: 0;
}
.proj-des a {
    color: rgb(245, 197, 6);
}
.proj-des a:hover {
    background-color: #076de8;
    color: #fff;
}
/* crypto box */
.work-box-bg {
    background: url(/static/img/work-petern.png);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: ripple 5s infinite;
    transition: all 400ms ease;
}
.darkblue {
    background-color: #470fac;
    color: #fff;
}
ul.check-list {
    max-width: 500px;
}
ul.check-list li {
    padding-bottom: 12px;
    display: inline-block;
    width: 100%;
}
ul.check-list li span {
    background: #fff;
    color: #470fac;
}
ul.check-list li span {
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 100%;
    display: block;
    text-align: center;
    float: left;
    position: relative;
    top: 4px;
}
ul, li, label, span {
    list-style: none;
    padding: 0;
    margin: 0;
}
@keyframes rotation {from {-webkit-transform: rotate(0deg);} to {-webkit-transform: rotate(359deg);}}
@keyframes ripple{0%{transform: scale(0.8);}50%{transform: scale(1.2);}100%{transform: scale(0.8);}}
.rotation-img {
    animation: rotation 15s infinite linear;
}
