body {
	padding: 0;
	margin: 0;
	color: #fff;
	font-family: "Roboto";
	overflow: overlay;

}

body::-webkit-scrollbar {
	width: 20px;
}

body::-webkit-scrollbar-thumb {
	background: #888;
}

body::-webkit-scrollbar-track {
	background: #0004;
}

#bg {
	position: fixed;
	width: 100%;
	height: 100%;
	background: url("../img/bg.jpg");
	background-size: cover;
	z-index: -1;
}

#bg::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #0007;
}

.button {
	cursor: pointer;
	background: transparent;
	text-decoration: none;
	border: 1px solid #fff;
	padding: 10px 15px;
	color: #fff;
	font-size: 20px;
	font-family: 'Roboto';
	font-weight: 100;
	text-transform: uppercase;
	margin: 0 2px;
	transition: background-color 0.2s linear, color 0.2s linear;
}

.button.small {
	font-size: 10px;
	padding: 5px;
}

.button:hover {
	background-color: #fff;
	color: #000;
}

/********* Section 1 *********/
#section1Container>.content {
	text-align: center;
	height: auto;
	position: relative;
	padding-top: 40px;
	box-sizing: border-box;
}

#section1Container>.content>.title {
	font-weight: 100;
	text-transform: uppercase;
	font-size: 30px;
	margin: 0;
}

#section1Container>.content>.name {
	padding: 40px 0 20px 0;
	font-weight: 200;
	font-size: 100px;
	line-height: 1em;
	text-transform: none;
	letter-spacing: 3px;
}

#section1Container>.buttons {
	text-align: center;
	padding-bottom: 50px;
	z-index: 2;
	position: relative;
}

/********* Section 2 *********/
#section2Container {
	max-width: 920px;
	margin: 40px auto 50px auto;
}

#section2Container>.caption {
	font-weight: 100;
	text-transform: uppercase;
	font-size: 22px;
	margin: 0;
	text-align: center;
}

#section2Container>.wrapper {
	padding: 15px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#section2Container>.wrapper>.card {
	color: #333;
	width: 270px;
	display: inline-block;
	margin: 0 10px 20px 10px;
	position: relative;
	border: 1px solid #fff;
	padding: 6px 6px 0 6px;
	background-color: #fff;
}

#section2Container>.wrapper>.card>.fullHeight {
	display: flex;
	flex-direction: column;
	height: 100%;
}
#section2Container>.wrapper>.card > .link{
	color: initial;
    text-decoration: none;
}
#section2Container>.wrapper>.card .thumb {
	max-width: 100%;
}

#section2Container>.wrapper>.card .title {
	margin: 0;
	display: block;
	font-size: 14px;
	font-weight: bold;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	line-height: normal;
	text-align: center;
	letter-spacing: 0.2px;
	padding: 8px 10px 0px 10px;
}

#section2Container>.wrapper>.card .description {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	margin: 9px 0 8px 0;
	font-size: 11px;
	font-weight: 400;
	text-align: left;
	padding: 7px 4px 6px 4px;
	line-height: 17px;
	letter-spacing: 0.2px;
	flex-grow: 1;
}

#section2Container>.wrapper>.card .footer {
	position: relative;
	padding-bottom: 8px;
	display: flex;
	align-items: center;
}


#section2Container>.wrapper>.card .footer>.catCaption {
	opacity: 0.8;
	position: relative;
	top: 1px;
	font-size: 12px;
}

#section2Container>.wrapper>.card .footer>.catImage {
	height: 21px;
	margin-right: 7px;
}

#section2Container>.wrapper>.card .footer>.button {
	position: absolute;
	right: 0px;
}

/* 

.card>.cardAnchor {
    color: #444;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

 */


@media (max-width:400px) {
	#section1Container>.content>.name {
		font-size: 70px;
	}
}