*, *::after, *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  overflow-x: hidden;
  background-color: #000;	
}
:root {
  font-size: 16px;
  --color-text: #fff;
  --color-bg: #000;
  --color-link: #fff;
  --color-link-hover: #a2a2a2;
  --perspective: 0px;
  --grid-item-translate: 0px;
  --grid-item-ratio: 0.75;
  --grid-item-radius: 7px;
  --grid-gap: 4vw;
  --grid-columns: 3; 
  --grid-columns-mob: 2; 	
  --grid-width: 100%;
  --grid-max-width: 1200px;
}
.demo-1 {
  --grid-item-translate: 30px;
  --grid-gap: 2vw;
}
.demo-2 {
  --grid-item-ratio: 1;
  --grid-item-radius: 20px;
  --grid-gap: 1vw;
}
.demo-3 {
  --grid-item-radius: 10px;
  --grid-gap: 10px;
  --grid-columns: 4;
}
.demo-4 {
  --grid-item-ratio: 0.7;
  --grid-item-radius: 0;
  --grid-gap: 1.5vw;
  --grid-columns: 7;
}
.demo-5 {
  --grid-item-ratio: 0.7;
  --grid-item-radius: 0px;
  --grid-gap: 10px;
  --grid-columns: 4;
  --grid-max-width: 900px;
}
.demo-6 {
  --grid-item-ratio: 0.7;
  --grid-item-radius: 6px;
  --grid-gap: 2vw;
  --grid-columns: 6;
  --grid-max-width: 1100px;
}
.demo-7 {
  --grid-item-ratio: 0.75;
  --grid-item-radius: 0px;
  --grid-gap: 2vw;
  --grid-columns: 5;
  --grid-width: 140%;
  --grid-max-width: none;
}
.demo-8 {
  --grid-item-ratio: 0.75;
  --grid-item-radius: 0px;
  --grid-gap: 2vw;
  --grid-columns: 4;
}
.demo-10 {
  --grid-item-ratio: 0.6;
  --grid-item-radius: 0px;
  --grid-gap: 2vw;
}
body {
  margin: 0;
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
main {
  display: grid;
  place-items: center;
  width: 100%;
  position: relative;
}
.outro {
  display: grid;
  place-items: center;
  margin: 40vh 0;
}
.outro__title {
  font-weight: 300;
  font-size: clamp(1.5rem, 10vw, 2rem);
}
.card-wrap {
  margin-top: 5vh;
  display: grid;
  grid-gap: 2rem;
  grid-auto-flow: row;
  grid-template-columns: 250px;
  text-align: center;
}
.card__image {
  display: block;
  border-radius: 7px;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  filter: contrast(0.8);
}
.card__title {
  font-weight: 300;
}
.credits {
  font-size: 1.5rem;
  text-align: center;
  margin: 50vh auto 0;
  padding-bottom: 50vh;
}
/* Page Loader */
.js .loading::before, .js .loading::after {
  content: '';
  position: fixed;
  z-index: 4000;
}
.js .loading::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}
.js .loading::after {
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  opacity: 0.4;
  background: var(--color-link);
  animation: loaderAnim 0.7s linear infinite alternate forwards;
}
@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}
.unbutton {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}
.unbutton:focus {
  outline: none;
}
.frame {
  z-index: 1000;
  position: relative;
  padding: 1.5rem;
  display: grid;
  min-height: 400px;
  width: 100%;
  grid-template-columns: auto auto 1fr 1fr;
  grid-template-areas: 'prev back ... sponsor''title title title title''demos demos demos demos';
  grid-gap: 1rem;
  pointer-events: none;
  justify-items: start;
}
.frame a {
  pointer-events: auto;
}
.frame__title {
  grid-area: title;
  font-size: clamp(1.5rem, 10vw, 5rem);
  margin: 0;
  font-weight: inherit;
}
.frame__back {
  grid-area: back;
  justify-self: start;
}
.frame__prev {
  grid-area: prev;
  justify-self: start;
}
.frame__demos {
  grid-area: demos;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  align-self: start;
  flex-wrap: wrap;
}
.frame__demos-item:not(:first-child) {
  width: 2rem;
  display: block;
  flex: none;
  border-radius: 10px;
  aspect-ratio: 1;
  border: 1px solid var(--color-link-hover);
  display: grid;
  place-items: center;
}
span.frame__demos-item:not(:first-child) {
  border-color: #fff;
}
.columns {
  width: var(--grid-width);
  max-width: var(--grid-max-width);
  position: relative;
  padding: 14vh 0;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  gap: var(--grid-gap);
}
.column {
  width: 100%;
  position: relative;
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: 100%;
  will-change: transform;
}
.column__item {
  margin: 0;
  position: relative;
  z-index: 1;
}
.column__item-imgwrap {
  width: 100%;
  aspect-ratio: var(--grid-item-ratio);
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--grid-item-radius);
}
.column__item-img {
  position: absolute;
  top: calc(-1 * var(--grid-item-translate));
  left: calc(-1 * var(--grid-item-translate));
  height: calc(100% + var(--grid-item-translate) * 2);
  width: calc(100% + var(--grid-item-translate) * 2);
  background-size: cover;
  background-position: 50% 20%;
  backface-visibility: hidden;
}
@media screen and (min-width: 53em) {
  .frame {
    text-align: center;
    justify-items: center;
  }
  .card-wrap {
    grid-template-columns: repeat(2, 300px);
  }
}
/*Custom CSS*/
html, body {
  min-height: 100%;
}
body {
/*  background: linear-gradient(190deg, #0C001E -0.91%, #470057 44.91%, #4E0034 98.78%);*/
	background-color: #000;
}
.site-intro {
  text-align: center;
  font-family: 'Anton', sans-serif;
}
.site-intro h1 {
  font-size: 650%;
  line-height: 100%;
  color: #fff;
  font-weight: 400;
  margin: 0 0 0 0;
}
.site-intro .des {
  color: #FEBF2C;
  line-height: 115%;
  font-size: 230%;
  text-transform: uppercase;
  font-weight: 400;
  margin: 3% 0 0 0
}
.column__item-imgwrap {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.column__item-imgwrap, .column__item-img {
  opacity: 1 !important;
}
.column__item-url:hover .column__item-img {
  opacity: 0.6 !important;
}
.column__item-url::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.70) 100%);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale3d(1.1, 1.1, 1.1);
}
.column__item-url {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
}
.column__item-img {
  transition: opacity 0.2s ease-in;
}
.column__item-caption {
  position: absolute;
  bottom: 6%;
  left: 0;
  width: 100%;
  z-index: 2;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}
.site-header {
  width: 100%;
  display: block;
  padding: 30px 20px;
  position: relative;
}
.site-header .site-logo {
  width: 20%;
  display: block;
}
.site-header .site-logo img {
  width: 100%;
}
.ico-share {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 100%;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  display: block;
  text-align: center;
}
.ico-share svg {
  width: 50%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.header-right{
	position: absolute;
	right: 20px;
    top: 50%;
    transform: translateY(-50%);
	display: flex;
}
.header-right a{
	width: 40px;
	height: 40px;
	background-color: #fff;
	border-radius: 100%;
	overflow: hidden;
	display: inline-block;
	margin-left: 10px;
	text-indent: -200px;
	background-repeat: no-repeat;
	background-position: center center;
	transition: all 0.2s ease-in;
	
}
.header-right a.back-home{
	background-image: url(../img/ico-home.png);
	background-size: 70%;
	margin-left: 0;
	margin-right: 10px;
	background-color: #FEBF2C;
}
.header-right a.back-home:hover{
	background-color: #fff;
}

.header-right a.share-facebook{
	background-image: url(../img/ico-facebook.png);
	background-size: 65%;
}

.header-right a.share-facebook:hover{
	background-color: #1877f2;
}

.header-right a.share-twitter{
	background-image: url(../img/ico-twitter.png);
	background-size: 52%;
}

.header-right a.share-twitter:hover{
	background-color: #1da1f2;
}



.reveal {
  position: relative;
  display: flex;
  white-space: pre;
  justify-content: center;
}
.reveal span {
  opacity: 0;
  transform: scale(0);
  animation: fade-in 2.4s forwards;
}
@keyframes fade-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slide-left {
  to {
    left: -6%;
    opacity: 1;
    transform: scale(0.9);
  }
}
@keyframes slide-right {
  to {
    right: -6%;
    opacity: 1;
    transform: scale(0.9);
  }
}
/*Inner Page CSS*/
.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding: 0px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.inner-container {
  padding: 30px 0px 0px 0;
}
.container p {
  line-height: 140%;
  margin-bottom: 20px;
}
.container p:last-child {
  margin: 0;
}
.inner-container h1 {
  font-family: 'Anton', sans-serif;
  font-size: 300%;
  font-weight: 400;
  line-height: 100%;
  margin: 0 0 10px 0;
  padding: 0;
  color: #fff;
}
.inner-container .small-des {}
.inner-container .small-des p:last-child {
  margin: 0;
  padding: 0;
}
.inner-container .list-content {
  padding-top: 40px;
  padding-bottom: 0px;	
}
.inner-container .list-content .single-item {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.inner-container .list-footer{
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	padding: 30px 0px 40px 0px;
}
.inner-container .list-footer h3 {
    font-size: 180%;
    font-weight: 900;
    margin: 0 0 10px 0;
    padding: 0 0 0 0;
    line-height: 120%;
    color: #FEBF2C;
}
.inner-container .list-footer a{
	color: #FEBF2C;
	text-decoration: none;
}


.inner-container .list-content .single-item.is-hidden {
  display: none;
}
.inner-container .list-content .single-item a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 30px 0px;
  transition: color 0.2s ease-in;
}
.inner-container .list-content .single-item a * {
  text-decoration: none;
}
.inner-container .list-content .single-item a:hover {
  color: #FEBF2C;
}
.inner-container .list-content .single-item figure {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  flex-direction: row-reverse;
}
.inner-container .list-content .single-item figure .fig-img {
  width: 180px;
}
.inner-container .list-content .single-item figure .fig-img .place-img {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  height: auto;
  display: block;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
}
.inner-container .list-content .single-item figure .fig-img img {
  width: 100%;
}
.inner-container .list-content .single-item figure figcaption {
  padding-right: 15px;
  width: calc(100% - 180px);
}
.inner-container .list-content .single-item figure figcaption h2 {
  font-size: 120%;
  font-weight: 600;
  margin: 0 0 10px 0;
  padding: 0 0 0 0;
  line-height: 120%;
}
.search-input {
  margin: 60px 0px 10px 0;
  position: relative;
}
.search-input input[type="search"] {
  -webkit-appearance: none;	
  width: 60%;
  background-color: #fff;
  height: 40px;
  border: 0;
  border-radius: 4px;
  padding: 0px 10px 0 40px;
  outline: none;
  font-size: 15px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #656565;
  position: relative;
}
.search-input::before {
  position: absolute;
  width: 20px;
  height: 20px;
  content: '';
  top: 52%;
  left: 10px;
  background-image: url(../img/ico-search.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 9;
  transform: translateY(-50%);
}
input[type='search']::-webkit-search-cancel-button {
  filter: grayscale(1);
}
/*Responsive CSS*/
.columns.is-mobile {
  display: none;
}
@media (max-width: 767px) {
	
	.inner-container .list-footer h3 {
    font-size: 125%;
}
	
	
  .column.is-desk {
    display: none;
  }
  .columns.is-desktop {
    display: none;
  }
  .columns.is-mobile {
    display: grid;
  }
  .container {
    padding: 0px 30px;
  }
  .site-header {
    padding: 40px 20px;
    position: relative;
  }
  .site-header .site-logo {
    width: 200px;
  }
  .site-intro h1 {
    font-size: 340%;
  }
  .site-intro .des {
    line-height: 135%;
    font-size: 150%;
    margin: 14px 0 0 0;
  }
  .columns {
    padding: 8vh 0;
	grid-template-columns: repeat(var(--grid-columns-mob), 1fr);
    gap: var(--grid-gap);  
  }
  .ico-share {
    width: 34px;
    height: 34px;
  }
	
	.header-right a{
		width: 32px;
    height: 32px;
		margin-left: 5px;
	}	
  	
	
  .inner-container h1 {
    font-size: 230%;
  }
  .search-input input[type="search"] {
    width: 100%;
  }
  .inner-container .list-content .single-item a {
    padding: 28px 0px;
  }
  .inner-container .list-content .single-item figure .fig-img {
    width: 100px;
  }
  .inner-container .list-content .single-item figure figcaption {
    padding-right: 10px;
    width: calc(100% - 100px);
  }
  .inner-container .list-content .single-item figure figcaption h2 {
    font-size: 100%;
    font-weight: 400;
    margin: 0 0 0px 0;
    padding: 0 0 0 0;
    line-height: 120%;
  }
  .inner-container .list-content .single-item figure figcaption .des {
    display: block;
  }
  .column__item-caption {
    font-size: 16px;
}	
}
.font-1 {
  font-family: 'Anton', sans-serif;
}
.font-2 {
  font-family: 'Inter', sans-serif;
}


/*
.cards-container{
	display: block;
	width: 100vw;
	margin: 0 auto;
}
*/

.cards-container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    padding: 0px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
	z-index: 9;
}

.cards::after{
	width: 50px;
	height: 100%;
	position: absolute;
	z-index: 1;
	content: '';
	right: 0;
	top: 0;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 90%);
	background: -webkit-linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 90%);
	background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 90%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.cards::before{
	width: 50px;
	height: 100%;
	position: absolute;
	z-index: 1;
	content: '';
	left: 0;
	top: 0;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 90%);
	background: -webkit-linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 90%);
	background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 90%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}


.cards{
	margin: 40px 0 0 0;
	position: relative;
}
.single-card{
	padding: 0px 5px;
}
.single-card img{
	width: 100%;
		
}
.single-card a{
	display: block;
	border-radius: 5px;
	overflow: hidden;
}

.single-card a#searchId{
	cursor: default;
}

/*
.slick-dots{
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	margin: 30px 0px 0px 0px;
}
*/

.slick-dots {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 30px 0px 0px 0px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.slick-dots li{
	list-style: none;
	margin: 0px 5px;
}
.slick-dots li button{
	width: 10px;
	height: 10px;
	background-color:#B2B2B2;
	border-radius: 100%;
	border: 0;
	font-size: 0px;
	text-indent: -100px;
	color: #fff;
	cursor: pointer;
	transition: 0.2s opacity ease-in;
}
.slick-dots li.slick-active button{
	background-color: #fff;
}

.slick-arrow{
	position: absolute;
	z-index: 100;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 58px;
	border-radius: 5px;
	background-color: rgba(0,0,0,0.5);
	border: 0;
	cursor: pointer;
	font-size: 0px;
	color: rgba(0,0,0,0);
	text-indent: -100px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 40%;
}
.slick-arrow.slick-prev{
	left: 2px;
	background-image: url(../img/arrow-prev.svg);
}
.slick-arrow.slick-next{
	right: 2px;
	background-image: url(../img/arrow-next.svg);
}
.columns.is-desktop,
.columns.is-mobile{
	padding-bottom: 0;
}
.site-credits{
	width: 100%;
    display: block;
    padding: 0px 40px 50px 40px;
    position: relative;
}
.site-credits *{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.site-credits h4 {
    font-size: 110%;
    font-weight: 600;
    margin: 0 0 10px 0;
}
.site-credits ul{
	font-size: 80%;
	display: flex;
	flex-wrap: wrap;
}
.site-credits ul strong{
	font-weight: 600;
}
.site-credits li{
	padding-bottom: 5px;
	width: 28%;
}


@media (max-width: 768px) {
	
	.site-credits li {
    width: 50%;
}
	
	
	.cards-container{
	display: block;
	width: 100vw;
	margin: 0 auto;
}
	
	.cards::after, .cards::before{
		display: none;
	}
	
	.single-card{
	padding: 0px 5px;
	width: calc(100vw - 40px);	
}
	.inner-container{
		padding: 10px 0px 0px 0;
	}	
	.slick-dots{
		margin: 20px 0px 0px 0px;
	}
  .container p{
    padding-top:10px;
    font-size: 85%;
  }
}

@media (max-width: 600px) {
	.site-credits li {
    width: 100%;
}
	
.site-credits {
    width: 100%;
    display: block;
    padding: 0px 30px 50px 30px;
    position: relative;
}	
}