ul.used-tags, ul.posts {
    list-style-type: none;
    margin: 0 !important;
    padding: 0 !important;
}

ul.used-tags li label {
	cursor: pointer;
} 

/* Customize the label (the container) */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #DCDCDC;
  border: 1px solid #706F6F;
  transition: background .2s;
}
/* When the checkbox is checked, add different background */
.check .container .checkmark {
  background-color: #706F6F;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check .container .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
	left: 6px;
	top: 2px;
	width: 8px;
	height: 13px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}


ul.posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

ul.posts li {
    padding: 90px 20px;
    background-size: cover !important;
    background-position: center center !important;
    text-align: center;
    color: #fff;
    font-size: 30px;
    position: relative;
    margin: 0;
    width: 50%;
    box-sizing: border-box;
}

ul.posts li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

ul.posts li .project-title {
    z-index: 2;
    position: relative;
}

ul.posts li .project-title h2 {
	font-size:36px;
	font-family: 'Fjalla One'!important;

}

ul.posts li .project-title h2, ul.posts li .project-title h1 {
	text-align:center;
	padding:0!important;
}

.category-color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .15;
}

ul.posts li:first-child {
    width: 100%;
}

ul.used-tags {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: center;*/

}

ul.used-tags li {
	padding: 10px 70px 0px 0px;
    /*border: 1px solid;*/
    cursor: pointer;
}

.used-tags-wrap {
	padding-left:150px;
	padding-top: 25px;
	padding-bottom: 25px;
}

@media (max-width: 767px) {
    .posts li {
        width: 100% !important;
    }
	.used-tags-wrap {
		padding-left:15px;
	}
	ul.posts li {
		padding: 30px 20px;
	}
}