* {
	box-sizing: border-box;
}

body { 
	color: #fff;
	font-size: 1em;
	background-color: #000;
	margin-top: 30px;
	font-family: "proxima-nova", sans-serif;
}

.container-main {
	width: 690px;
	margin: auto;
}

header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	line-height: 150%;
}

footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 20px;
	line-height: 150%;
}

h1, 
h2 {
	font-size: 1.5em;
	font-weight:400;
	font-family: "futura-pt-condensed",sans-serif;
	text-transform:uppercase;
	margin: 0;
}

a { 
	outline: none; 
}

a img { 
	outline: none; 
	border: 0; 
}

a:link,
a:hover { 
	color: #e70303; 
	text-decoration:none; 
}

a:visited { 
	color: #949494; 
}

a:active { 
	color: #1a1a1a; 
}

.container-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.logo {
	width: 263px;
	}

.logo-underline {
	width: 100%;
	height: 10px;
	margin-top: 10px;
	background: repeating-linear-gradient(
	  -45deg,
	  #000,
	  #000 3px,
	  #e70303 3px,
	  #e70303 6px
	);
}

/* Squares */
.square {
	margin-bottom: 10px;
	position: relative;
	cursor: pointer;
}

.square-overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 160px;
	width: 100%;
	opacity: 0;
	transition: 0.5s ease;
	background-color: #000;
}

.square-overlay:hover {
	opacity: 0.8;
}

.overlay-txt {
	display: flex;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	text-align: center;
	font-size: 1.2em;
	color: #fff;
}

.overlay-txt hr {	
	color: #fff;
	background-color: #fff;
	border: 0;
	height: 3px;
	width: 80%;
}

.title {
	background: repeating-linear-gradient(
		-45deg,
		#000,
		#000 3px,
		#222222 3px,
		#222222 6px
		);
	text-transform: uppercase;
	height: 30px;
	padding-top: 3px;
	padding-left: 4px;
	font-size: 1.2em;
	font-family: "futura-pt-condensed",sans-serif;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0.5px;
	color: #fff;
}

.no-scroll {
	overflow: hidden;
}

.some-icon {
	margin: 0 9px 10px 0;
}

/* Modals */
.modal {
	z-index: 3;
	display: none;
	padding-top: 105px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.8);
}

.modal-content {
	width: 700px;
	margin: auto;
	background-color: #222;
	position: relative;
	padding: 0;
	outline: 0;
	margin-bottom: 20px;
}

.modal-header {
	display: flex;
	justify-content: space-between;
	height: 50px;
	padding: 15px;
	background: repeating-linear-gradient(
		-45deg,
		#000,
		#000 3px,
		#222 3px,
		#222 6px
		);
}

.close-btn {
	cursor: pointer;
}

.modal-images {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.modal-images > img {
	margin-bottom: 20px;
	align-self: center;
}

.modal-text {
	padding: 15px;
	background-color: #222;
}

.video-container {
	position: relative;
	width: 100%;
	height: 0;
	overflow: hidden;
	padding: 30px 0 56.25% 0;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}


@media screen and (max-width: 690px) {
	.container-main {
		width: 510px;
	}

	.modal-content{
		width: 510px;
	}

	.modal-images > img {
		width: 100%;
		height: auto;
	}
}

@media screen and (max-width: 510px) {
	.container-main {
		width: 340px;
	}

	.modal {
		padding-top: 0;
	}

	.modal-content{
		width: 340px;
	}

	.logo {
		margin: auto;
	}

	.mobile-columns{
		width: 100%;
		display: flex;
		justify-content: space-evenly;
		margin: 10px;
	}
}

@media screen and (max-width: 320px) {

	.container-main {
		width: 100%;
	}

	.modal-content{
		width: 100%;
	}

	.square {
		width: 90%;
		margin: auto;
		padding-bottom: 10px;
	}

	.square > img,
	.no-ul {
		width: 100%
	}

	footer {
		padding: 10px;
	}
}
