.featured-block {
    background-color: #A58C22;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-height: 14rem;
    -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    position: relative;
    z-index: 1;
    transition: all .25s ease;
    max-width: 16rem;
    margin: auto;
}

.featured-block-col {
    margin-bottom: 2rem;
}

.featured-block:hover {
    background-color: #6e5d17;
}

.featured-block-col::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 8%;
    left: -10%;
    background: url("../../library/images/branding/hexagon.svg") center/contain no-repeat;
    -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: all .25s ease;
}

.featured-block-col:hover::before {
    top: 0;
    left: 0;
}

@media only screen and (max-width: 600px) {
    .featured-block-col::before {
        height: 14rem;
        width: 16rem;
        top: 5%;
        left: 12%;
    }
}

@media only screen and (min-width: 1100px) {
    .how-work__item {
        min-height: 150px !important;
    }
}