/*begin card mol si info*/
.card-div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-family: "Open Sans";
}

.column {
    float: left;
    width: 25%;
    padding: 10px;
    /* height: 300px; */
    /* Should be removed. Only for demonstration */
}

.column summary {
    width: 90%;
    margin: 0 5% 1rem 5%;
}

.column a:hover {
    color: #7f8285;
}

@media screen and (max-width: 1050px) {
    .column {

        width: 50%;

    }
}

@media screen and (max-width: 658px) {
    .column {

        width: 100%;

    }
}

.rosu-link p a {
    color: #D4292C;
    text-decoration: none;
}

.blue-link {
    color: blue;
}

.portocaliu a {
    color: #ff5100 !important;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.education {
    --bg-color: #b4b2af;
    --bg-color-light: #efefea;
    --text-color-hover: #919999;
    --box-shadow-color: rgba(218, 218, 217, 0.48);
}

.credentialing {
    --bg-color: #f9c8b8;
    --bg-color-light: #fce7e2;
    --text-color-hover: #4C5656;
    --box-shadow-color: rgba(249, 210, 184, 0.48);
}

.stema {
    --bg-color: #dfdddc;
    --bg-color-light: #e7e3e2;
    --text-color-hover: #4C5656;
    --box-shadow-color: rgba(177, 174, 172, 0.48);
}

.wallet {
    --bg-color: #CEB2FC;
    --bg-color-light: #F0E7FF;
    --text-color-hover: #4C5656;
    --box-shadow-color: rgba(206, 178, 252, 0.48);
}

.human-resources {

    --bg-color: #f7f9b8;
    --bg-color-light: #fcfce2;
    --text-color-hover: #4C5656;
    --box-shadow-color: rgba(246, 249, 184, 0.48);
}


.card {
    width: 220px;
    height: 221px;
    background: #F7F7F7;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease-out;
    text-decoration: none;
    margin: 2%;
}

.card:hover {
    transform: translateY(-5px) scale(1.005) translateZ(0);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11),
        0 24px 46px var(--box-shadow-color);
}

.card:hover .overlay {
    transform: scale(4) translateZ(0);
}

.card:hover .circle {
    border-color: var(--bg-color-light);
    background: var(--bg-color);
}

.card:hover .circle:after {
    background: var(--bg-color-light);
}

.card:hover p {
    color: var(--text-color-hover);
}

.card:active {
    transform: scale(1) translateZ(0);
    box-shadow: 0 15px 24px rgba(0, 0, 0, 0.11),
        0 15px 24px var(--box-shadow-color);
}

.card p {
    font-size: 17px;
    color: #4C5656;
    margin-top: 30px;
    z-index: 0;
    transition: color 0.3s ease-out;
}

.culoare-albastru-footer a {
    color: #97d2e1 !important;
}

.circle {
    width: 131px;
    height: 131px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    transition: all 0.3s ease-out;
}

.circle:after {
    content: "";
    width: 118px;
    height: 118px;
    display: block;
    position: absolute;
    background: var(--bg-color);
    border-radius: 50%;
    top: 4px;
    left: 5px;
    transition: opacity 0.3s ease-out;
}

.circle svg {
    z-index: 10000;
    transform: translateZ(0);
}

.overlay {
    width: 118px;
    position: absolute;
    height: 118px;
    border-radius: 50%;
    background: var(--bg-color);
    top: 20px;
    left: 50px;
    z-index: 0;
    transition: transform 0.3s ease-out;
}

/* TABLETA SI TELEFON */
@media (max-width:981px) {
    .card-div {
        padding-top: 100px;
    }
}


/*end card mol si info*/