.iconFont {
    color: #0F9B00;
}

.contentCard {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.contentCardFront {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    height: 500px;
}

.card-flip {
    position: relative;
    width: 400px;
    height: 500px;
    margin: 20px;
}

.card-flip .face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden;
    transition: .5s;
}

.card-flip .front {
    transform: perspective(600px) rotateY(0deg);
    background: #EDEDED;

}

.card-flip .front h2 {
    margin-top: 25px;
    font-size: clamp(0.875rem, 0.4423rem + 2.3077vw, 2rem);
    font-weight: 400;
    color: black;
    line-height: 36px;
    width: 100%;
    text-align: center;
}

.contentCardBack {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    height: 500px;
    text-align: center;
}

.card-flip .back {
    transform: perspective(600px) rotateY(180deg);
    background: #0F9B00;
}

.card-flip .back h2 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
    color: rgb(234, 234, 234);
    line-height: 29px;
}

.card-flip .back span {
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
}

.card-flip:hover .front {
    transform: perspective(600px) rotateY(180deg);
}

.card-flip:hover .back {
    transform: perspective(600px) rotateY(360deg);
}