.our-location-block {
    h2 {
        text-transform: uppercase;
        @include breakpoint(lg) {
            margin-bottom: 42px;
        }
    }
}

.location-lists {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;

    .location-list {
        padding: 0 15px;
        // width: 50%;
        width: 100%;
        margin-bottom: 30px;

        @include breakpoint(md) {
            width: 33.33%;
        }

        @include breakpoint(lg) {
            width: 25%;
        }

        &-wrap {
            height: 100%;
            margin-right: 13px;
            background: $white;
            padding: 41px 13px 30px 18px;
            position: relative;
            z-index: 0;

            &:before {
                content: '';
                position: absolute;
                top: 8px;
                left: 10px;
                right: -13px;
                bottom: 9px;
                border: 1px solid $yellow;
                z-index: -1;
            }

            &:after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: $white;
                z-index: 0;
            }

            .text {
                position: relative;
                z-index: 2;
            }

            h4 {
                letter-spacing: -0.5px;
                text-transform: uppercase;
                color: $black;
                border-bottom: 1px solid $black;
                // padding-bottom: 10px;
                padding-bottom: 7px;
                margin-bottom: 10px;
            }

            ul {
                @extend %listreset;
                li {
                    // margin-bottom: 12px;
                    margin-bottom: 10px;
                    font-size: 14px;
                    line-height: 1.428571;
                    word-break: break-all;

                    &:last-child {
                        margin-bottom: 0;
                    }
                }
            }
        }
    }
}
