@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'codropsicons';
	src: url("../fonts/codropsicons/codropsicons.eot");
	src: url("../fonts/codropsicons/codropsicons.eot?#iefix") format("embedded-opentype"), url("../fonts/codropsicons/codropsicons.woff") format("woff"), url("../fonts/codropsicons/codropsicons.ttf") format("truetype"), url("../fonts/codropsicons/codropsicons.svg#codropsicons") format("svg");
}

@font-face {
  font-family: 'RalewayBlack';
  src: url("../fonts/Raleway-Black.ttf");
}
@font-face {
  font-family: 'RalewayThin';
  src: url("../fonts/Raleway-Thin.ttf");
}
@font-face {
  font-family: 'RalewayLight';
  src: url("../fonts/Raleway-Light.ttf");
}
@font-face {
  font-family: 'RalewayExtraLight';
  src: url("../fonts/Raleway-ExtraLight.ttf");
}
@font-face {
  font-family: 'RalewayMedium';
  src: url("../fonts/Raleway-Medium.ttf");
}
@font-face {
  font-family: 'RalewayRegular';
  src: url("../fonts/Raleway-Regular.ttf");
}
@font-face {
  font-family: 'RalewaySemiBold';
  src: url("../fonts/Raleway-SemiBold.ttf");
}
@font-face {
  font-family: 'RalewayBold';
  src: url("../fonts/Raleway-Bold.ttf");
}
@font-face {
  font-family: 'RalewayExtraBold';
  src: url("../fonts/Raleway-ExtraBold.ttf");
}

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

.clearfix:before,
.clearfix:after {
	display: table;
	content: '';
}

.clearfix:after {
	clear: both;
}

body {
	font-family: 'RalewayLight', 'Helvetica Neue', 'Lato', 'Segoe UI', Helvetica, Arial, sans-serif;
	color: #000;
	background: #f0f0f0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-y: scroll;
	overflow-x: hidden;
	width: 100vw;
}

a {
	outline: none;
	color: #000;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #333;
}

button:focus {
	outline: none;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}


/* Header */

.sc-header {
	padding: 2em 1em 4em;
	text-align: center;
}

.sc-header h1 {
	margin: 0.5em 0 0;
	letter-spacing: -1px;
	font-size: 3em;
	line-height: 1;
	font-weight: normal;
	text-transform: uppercase;
}

.sc-header h1 span {
	display: block;
	padding: 0.5em 0 1em;
	color: #999;
	font-weight: normal;
	font-size: 0.45em;
	letter-spacing: 0;
}


/* Top Navigation Style */

.sc-links {
	position: relative;
	display: inline-block;
	text-align: center;
	white-space: nowrap;
}

.sc-links::after {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	content: '';
	-webkit-transform: rotate3d(0, 0, 1, 22.5deg);
	transform: rotate3d(0, 0, 1, 22.5deg);
}

.sc-icon {
	display: inline-block;
	margin: 0.5em;
	padding: 0em 0;
	width: 1.5em;
	text-decoration: none;
}

.sc-icon span {
	display: none;
}

.sc-icon:before {
	margin: 0 5px;
	text-transform: none;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	font-family: 'codropsicons';
	line-height: 1;
	speak: none;
	-webkit-font-smoothing: antialiased;
}

.sc-icon--drop:before {
	content: "\e001";
}

.sc-icon--prev:before {
	content: "\e004";
}


/* Content */

.content {
	padding: 1em 0 3em;
	max-width: 1080px;
	margin: 0 auto;
}

.content .grid .grid__item {
	display: flex;
	padding: 1em;
	margin-bottom: 1em;
	background-color: #fff;
}
.grid__item .description {
	padding: 1em;
}
.grid__item .description h3 {
	margin: 0;
}

@media screen and (max-width: 40em) {
	.content .grid .grid__item {
		flex-direction: column;
	}
	.grid__item .preview {
		text-align: center;
	}
}

/* Details */
.details {
	max-width: 100%;
	/* IE 10-11 bug flexbox */
}

.details ul {
	line-height: 1;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

.details ul li {
	font-size: 1em;
	position: relative;
	display: inline-block;
	margin: 0 1em 0 0;
	padding: 0.15em 0;
	color: #000;
}

.icon {
	font-family: 'camera-icons';
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	display: inline-block;
	vertical-align: middle;
	text-transform: none;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	speak: none;
}

.icon + span {
	margin-left: 5px;
	vertical-align: middle;
}

.details .icon {
	margin-right: 5px;
	color: #77d45b;
}
.details .fa-solid {
	margin-right: 5px;
	color: #000;
}
/** MODAL **/
.thumbnail {
	cursor: pointer;
	transition: 0.3s;
}
.thumbnail:hover {
	opacity: 0.7;
}
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	justify-content: center;
	align-items: center;
}
.modal-content {
	max-width: 95%;
	max-height: 95%;
}
.modal-body {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.close {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 30px;
	color: white;
	cursor: pointer;
}


