﻿.hexagon-wrapper {
    margin: auto;
    display: flex;
    text-align: initial;
    width: 125px;
    height: 125px;
}

.hexagon {
    position: relative;
    width: 46%;
    height: 80%;
    margin: 0 auto 25px auto;
    color: white;
    display: flex;
    align-content: center;
    justify-content: center;
    transition: 0.5s;
}

    .hexagon i {
        z-index: 1;
        margin: auto;
        font-size: 34px;
    }

    .hexagon:before,
    .hexagon:after {
        position: absolute;
        content: "";
        background: inherit;
        height: 100%;
        width: 100%;
        border-radius: 0;
        transition: 0.5s;
        transform-origin: center;
    }

    .hexagon:before {
        transform: rotateZ(60deg);
    }

    .hexagon:after {
        transform: rotateZ(-60deg);
    }


.icon-box {
    margin-bottom: 1rem;
    padding: 20px 10px 10px 10px;
    position: relative;
}

    .icon-box h1, .icon-box h2, .icon-box h3 {
        font-size: 19.5px;
    }

    .icon-box p {
        margin-bottom: 0;
    }

.circle {
    display: inline-flex;
    width: 70px;
    height: 70px;
    font-size: 24px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 2rem;
    color: #fff;
}

.icon-box-link {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
}

        .icon-box-link a:hover {
            text-decoration: underline;
        }

        .icon-box-link a:after {
            position: relative;
            content: "\e803";
            font-family: "gcicons";
            position: absolute;
            bottom: 0;
            right: -25px;
        }