
*,
*:before,
*:after {
    box-sizing: border-box;
}

/* Controls
---------------------------------------------------------------------- */

.control {

}

.control:first-of-type{
	margin-left:50px;
}

.control {
    position: relative;
	display:inline;
	margin-right:25px;
    cursor: pointer;
    font-size: 14px;
    color: #2C2C2C;
	font-family: 'suisse-works-Book', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.control:hover {
	background-color:#fff;
	color:#2C2C2C;
	border-bottom:1px dashed #2C2C2C;
	line-height: 36px;
}



.mixitup-control-active {
	text-decoration:none;
	border-bottom:1px solid #2C2C2C;
}



/* Container
---------------------------------------------------------------------- */

.container {
    text-align: justify;
    font-size: 16px;
}

.container a img {
	height:100%;
	width:100%;
	margin:0 !important;
	padding:0;
	}


.container:after {
    content: '';
    display: inline-block;
    width: 100%;
}

/* Grid Items
---------------------------------------------------------------------- */

.item,
.gap {
    display: inline-block;
    vertical-align: top;
}

.item {
    margin-bottom: 2rem;
    position: relative;
}

.item:before {
    content: '';
    display: inline-block;
    padding-top: 56.25%;
}

/* Grid Breakpoints
---------------------------------------------------------------------- */

/* 2 Columns */

.item,
.gap {
    width: calc(98%/3 - (((3 - 1) * 1rem) / 3));
}

/* 3 Columns */

/* MEDIA SCREEN */



@media screen and (max-width: 1000px) and (min-width:581px){
    .item,
    .gap {
        width: calc(98%/2 - (((2 - 1) * 1rem) / 2));
    }
	.control {
	}
	.control:first-of-type{
		margin-left:00px;
	}
	.control {
		display:list-item;
		text-indent:75px;
		border:0;
		line-height: 36px;
	}
		.control:hover {
		line-height: 36px;
	}
	
}

/* 4 Columns */



@media only screen and (max-width: 580px) {
    .item,
    .gap {
        width: calc(99%/1 - (((1 - 1) * 1rem) / 1));
    }
	
	.control:first-of-type{
		margin-left:00px;
	}
	.control {
		display:list-item;
		text-indent:50px;
		border:0;
		line-height: 36px;
	}
	
	.control:hover {
		line-height: 36px;
	}

}


