
.row-equal-height {
    display: flex;
    justify-content: center;
    align-items: center;
}

.p_column {
    background: #c81f56;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin: 5px 15px 0;
    padding: 30px 30px;
    border: solid 1px #d4d4d4;
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    position: relative;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    max-width: 16rem;
    cursor: pointer
}
/* Change color of your first-child */

.p_column:first-child {
    background: #c81f56;
    color: #fff;
    border: solid 1px #c81f56;
}
/*Code for arrow*/

.p_column:before,
.p_column:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 42%;
    bottom: 86px;
    border-style: solid;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
/* Stroke */

.p_column:before {
    right: -30px;
    border-left-color: #d4d4d4;
    border-width: 15px;
}
/* Fill */

.p_column:after {
    right: -29px;
    border-left-color: #fff;
    border-width: 15px;
}

.p_column p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    padding-top: 0.5rem
}

.p_column:first-child:before {
    border-left-color: #c81f56;
}

.p_column:first-child:after {
    border-left-color: #c81f56;
}

.p_column:last-child:before,
.p_column:last-child:after {
    display: none
}
/*color change hover*/

.p_column:hover {
    background: #b0b9c1;
    color: #fff;
    border: solid 1px #b0b9c1;
}

.p_column:hover:before {
    border-left-color: #b0b9c1;
}

.p_column:hover:after {
    border-left-color: #b0b9c1;
}

.circle {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white;
    text-align: center;
    line-height: 125px;
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.3);
}

.circle-icon {
    font-size: 48px;
    color: black;
    font-weight: 500;
}