.hexagonArea {
    display: flex;
    justify-content: center;

}

.hexagonArea.last {
    transform: translateY(-45px);
}

.hexagon {
    position: relative;
    width: 200px;
    height: 250px;
    margin: 0 10px;
    clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
    background: #004884;
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: .5s;

    & .card-body {
        flex: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 100px 10px 10px;
    }

    & span, i {
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        font-size: 5rem;

    }

    & p {
        color: white !important;
        font-weight: bold;
        font-size: 1.2rem;
        margin-bottom: 0 !important;
        word-wrap: break-word;
        white-space: normal;
        text-align: center;
    }


}

.hexagon::before {
    content: "";
    position: absolute;
    inset: 3px;
    clip-path: inherit;
    background: #FFFFFF;
    z-index: -2;
}

.hexagon::after {
    content: "";
    position: absolute;
    inset: 13px;
    clip-path: inherit;
    background: #0b457f;
    z-index: -1;
}

.hexagon:hover {
    background: #FFFFFF;
    transform: scale(0.8);

    & span, i {
        color: #004884 !important;
    }

    & p {
        color: #004884 !important;
    }


}

.hexagon:hover::before {
    background: #004884;
}

.hexagon:hover::after {
    background: #FFFFFF;
}