.boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.box {
    margin: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    width: 250px;
    height: 430px;
    border: solid 2px #CABFA9;
    border-radius: 10px;
    box-shadow: 4px 4px rgba(202, 191, 169, 0.3);
}

.box p {
    margin: 0;
    font-size: 0.7em;
}

p.right {
    text-align: right;
}

.box .img-wrapper {
    border: #CABFA9 1px solid;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.box .img-wrapper img {
    width: 100%;
    height: auto;
}

.box h3.title {
    margin-bottom: 0;
    line-height: 1;
}

.box .progressgroup {
    margin-top: auto;
}

.box .progress {
    height: 0.6cm;
    margin-bottom: 0;
}

.box p {
    line-height: 1;
    padding-top: 0.25rem;
}
.box .progress .progress-bar {
    font-weight: bold;
    color: #000000;
    text-shadow: 2px 1px 0px rgba(202, 191, 169, 0.8);
    background-color: #FC8D00;
    padding: 0.05cm 0.2cm;
    font-size: 0.4cm;
}

.box .progressgroup button {
    margin-top: 1rem;
    display: block;
    height: 1cm;
    width: 100%;
    border-radius: 10px;
    background-color: #1DAEA7;
    color: #FFFFFF;
    font-size: 0.4cm;
    font-weight: bold;
    border-color: #00726b;
}

.box .progressgroup button:hover {
    background-color: #00726b;
}

button.btn.btn-primary.addProject {
    display: block;
    height: 1cm;
    border-radius: 10px;
    background-color: #1DAEA7;
    color: #FFFFFF;
    font-size: 0.4cm;
    font-weight: bold;
    margin: 1rem;
    border-color: #00726b;
}

button.btn.btn-primary.addProject:hover {
    background-color: #00726b;
}