.hexagons {
    overflow: hidden;
}
    .hexagons-intro {
        max-width: 35rem;
        margin: 0 auto 1.5rem;
    }

.hexagon {
    position: relative;
    width: 4.39904762em;
    height: 7.61904762em;
    background-color: rgba(17, 0, 135, .46);
    margin: 0 1.23809524em;
    color: #fff;
    text-shadow: 0 2px 0 rgba(0,0,0,0.3), 0 2px 28px rgba(21,14,103,0.4);

    transition: all .3s;
}
    .hexagon-content {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
        font-size: .875em;
        line-height: 1.25;
        font-weight: 600;
        margin: 0 -.75em;
        z-index: 2;
        position: relative;
        transition: all .1s;
    }
    .hexagon:before,
    .hexagon:after {
        content: "";
        position: absolute;
        width: 0;
        border-top: 3.80952381em solid transparent;
        border-bottom: 3.80952381em solid transparent;
        top: 0;
        bottom: 0;
    }
    .hexagon:before {
        right: 100%;
        border-right: 2.19952381em solid rgba(17, 0, 135, .46);
        transition: all .3s;
    }
    .hexagon:after {
        left: 100%;
        width: 0;
        border-left: 2.19952381em solid rgba(17, 0, 135, .46);
        transition: all .3s;
    }
    .hexagon:hover {
        background-color: #FFCC00;
        transition: all .3s;
    }
        .hexagon:hover:before, .hexagon:hover:after {
            transition: all .3s;
            border-right-color: #FFCC00;
            border-left-color: #FFCC00;
        }
        .hexagon:hover .hexagon-content {
            transform: scale(1.125);
            transition: all .1s;
            text-shadow: none;
            color: #464177;
        }

.hexagonMenu {}
    .hexagonMenu-list {
        margin: 0 auto;
        padding: 1rem 0;
        display: flex;
        justify-content: center;
    }
    .hexagonMenu-item {
        position: relative;
        vertical-align: middle;
        flex-shrink: 0;
        flex-grow: 0;
    }
    .hexagonMenu-item:nth-child(even) {
        margin-top: 3.9524em;
    }
    @media (max-width: 1250px) {
        .hexagonMenu {
            font-size: .9em;
        }
    }
    @media (max-width: 770px) {
        .hexagonMenu {
            font-size: 1.1em;
        }
        .hexagonMenu-list {
            flex-direction: column;
            align-items: center;
            margin-left: -7.55em;
        }
        .hexagonMenu-item:nth-child(even) {
            margin-top: -3.6em;
            margin-bottom: -3.6em;
            margin-left: 15.1em;
        }
        .hexagonMenu-item:last-child {
            margin-bottom: 0;
        }
    }
    @media (max-width: 500px) {
        .hexagonMenu {
            font-size: 1em;
        }
    }