/* page styling */

/* items */

.item-hs-container,
.data-test-items {
    overflow: hidden;
    margin: 0 -1%;
}

.item-h {
    display: block;
    float: left;
    width: 19.64%;
    width: 16.6666%;
	color: #fff;
    background: #006838 !important;
}

.item-h h2,
.item-h h3,
.item-h h4 {
    color: #fff;
    margin: 0 0 1em 0;
    font-weight: normal;
}

.item-h h2 {
    font-size: 24px;
}

.item-h a {
    font-size: 16px;
	color: white;
}

.item-h img {
    display: block;
    max-width: 100%;
}

.item-h p:last-child {
    margin-bottom: 0;
}

.item-hs-container.big-items .item-h {
    width: 48%;
}

/* margins */

.test-margin .item-h {
    margin: 2px;
}

/* a mix of padding amounts */

.test-padding .item-h {
    padding: 0px;
}


/* a mix of border widths */

.test-border .item-h {
    border: 1px solid #eee;
}


/* border-box */

.test-border-box .item-h {
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box;
}

/* fixed height items */

.item-hs-container.fixed-items .item-h-0 {
    height: 150px;
}

.item-hs-container.fixed-items .item-h-1 {
    height: 190px;
}

.item-hs-container.fixed-items .item-h-2 {
    height: 230px;
}

.item-hs-container.fixed-items .item-h-3 {
    height: 250px;
}

/* responsive */

@media only screen and (max-width: 1024px) {
    .item-h,
    .item-hs-container.big-items .item-h {
        width: 33.333%;
    }
}

@media only screen and (max-width: 340px) {
    .test-margin .item-h,
    .test-margin .item-hs-container.big-items .item-h {
        width: 99%;
        margin-left: 5px;
        margin-right: 0;
    }
}