html {
	font-family: 'Teko', sans-serif;
	background-color: #111;
	color: #ccc;
}
h1 {
	font-size: 2.5em;
	text-align: center; 
	font-weight: 700;
}
h1:after {
	display: block;
	content: "";
	width: 50px;
	height: 5px;
	background-color: #ccc;
	margin: 0 auto 50px;
}
h2 {
	font-size: 2em;
	font-weight: 700;
	text-align: left;
}
h2:after {
	display: block;
	content: "";
	width: 50px;
	height: 5px;
	background-color: #ccc;
}
p {
	font-size: 1.5em;
	letter-spacing: .1rem;
	margin: 5px 0 10px;
}
video {
	width: 50%;
	margin: 0 auto;
	display: inline-block;
}
img {
	width: 100%;
	display: block;
}
.container {
	max-width: 1280px;
	margin: 0 auto;
	display: block;
}
.section {
	margin-bottom: 70px;
	text-align: center;
}
.images {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}
.clickable .item .image {
	transition: .5s;
	position: relative;
}
.clickable .item .image img {
	cursor: pointer;
}

.clickable .item .image:after {
	content: "";
	width: 50px;
	height: 50px;
	position: absolute;
	pointer-events: none;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	z-index: 3;
	transition: .5s;

	background-size: 50px 50px;
  background-image: url(images/magnifying_glass.svg);
}

.clickable .item .image:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background: linear-gradient(145deg, rgba(116,0,174,1) 0%, rgba(0,0,36,1) 100%);;
	opacity: 0;
	position: absolute;
	pointer-events: none;
	transition: .5s;
	z-index: 2;
}
.clickable .item .image:hover:before {
	opacity: 0.5;
}
.clickable .item .image:hover:after {
	opacity: 0.9;
}
.item {
	flex-grow: 1;
	overflow: hidden;
	position: relative;
}
.third {
	width: calc(33% - 10px);
	max-width: 33%;
}
.half {
	width: calc(50% - 10px);
	max-width: 50%;
}
.quarter {
	width: calc(25% - 10px);
	max-width: 25%;
}
.lightbox {
	opacity: 0;
	background-color: rgba(0, 0, 0, .8);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10;
	pointer-events: none;
	transition: .5s;
}
.lightbox .lightbox-item {
	background: #ccc;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	pointer-events: none;
}
.lightbox .lightbox-item img {
	display: block;
	width: auto;
	height: auto;
	max-width: 90vw;
	max-height: 90vh;
}
.show, .lightbox .lightbox-item.show {
	opacity: 1;
	pointer-events: auto;
}

.pronunciation {
	font-size: 0.8em;
	font-style: italic;
	display: inline-block;
	margin-right: 5px;
	opacity: .7;
}
.r18 img {
	filter: blur(5px);
  -webkit-filter: blur(8px);
  transform: scale(1.08);
}
.r18 {
	position: relative;
}
.r18:after {
	content: url('images/eye.svg');
	display: block;
	width: 65%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	opacity: .5;
}
.r18:after svg {
	fill: white;
}
.secondary {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	z-index: 1;
	-webkit-animation: fadeInOut 7s infinite;
   -moz-animation: fadeInOut 7s infinite;
   -o-animation: fadeInOut 7s infinite;
    animation: fadeInOut 7s infinite;
}
.has-multiple:after {
	content:"";
	background-image: url('images/multi.png');
  background-size: 100% auto;
  background-repeat: no-repeat;
	display: block;
	position: absolute;
	width: 34px;
	height: 38px;
	max-width: 20%;
	top: 15px;
	left: 15px;
	z-index: 5;
	pointer-events: none;
	opacity: .7;
}
.credit {
	display: inline-block;
	margin-top: 10px;
}
.social {
	display: inline-block;
	height: 30px;
	margin-right: 10px;
	margin-bottom: 10px;
}
.social a {
	display: flex;
	text-decoration: none;
	color: #8A6DA4;
	height: 100%;
}
.social svg {
	width: 20px;
	height: 20px;
	fill: #fff;
	transition: .5s;
}
.tag_icon {
	background-color: #8A6DA4;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	display: inline-flex;
	padding: 5px;
}
.tag_text {
	background-color: #fff;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	display: inline-flex;
	padding: 5px 10px;
	transition: .5s;
}
.social:hover .tag_text {
	background-color: #8A6DA4;
}
.social:hover a {
	color: #fff;
}

@keyframes fadeInOut {
  0%   { opacity:1; }
  25%	 { opacity:1; }
  50%  { opacity:0; }
  75%  { opacity:0; }
  100% { opacity:1; }
}
@-o-keyframes fadeInOut{
 0%   { opacity:1; }
  25%	 { opacity:1; }
  50%  { opacity:0; }
  75%  { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeInOut{
  0%   { opacity:1; }
  25%	 { opacity:1; }
  50%  { opacity:0; }
  75%  { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeInOut{
  0%   { opacity:1; }
  25%	 { opacity:1; }
  50%  { opacity:0; }
  75%  { opacity:0; }
  100% { opacity:1; }
}
.animate-flicker {
   -webkit-animation: fadeInOut 1s infinite;
   -moz-animation: fadeInOut 1s infinite;
   -o-animation: fadeInOut 1s infinite;
    animation: fadeInOut 1s infinite;
}

@media only screen and (max-width: 768px) {
	.flexible .third {
		width: calc(50% - 10px);
		max-width: 50%;
	}
}