/*cambios*/
body{
    padding: 0;
}
.content-grid {
	float: left;
    width: 50%;
    height: auto;
    overflow: hidden;
}
.summary{
    background: rgba(19, 21, 46, 0.3);
    border-radius: 20px;
}
.summary .summary-heading{
    padding: 14px 10px;
    background-color: #336699;
    color: #ffffff;
    text-align: center;
}
.summary .summary-table {
	float: left;
    width: 100%;
    text-align: center;
}
.summary .summary-table .summary-col{
    float: left;
    width: 50%;
}
.summary .summary-table .summary-col h3{
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    background-color: rgb(0, 0, 0);
}
.summary .summary-table .summary-col h3.right-border {
	border-right: 1px solid #fff;
}
.summary .summary-table .summary-col ul li{
    float: left;
    width: 100%;
}
.summary .summary-table .summary-col ul li a{
    float: left;
    width: 100%;
    padding: 10px 0;
    color: #fff;
    transition: all 0.3s ease-in;
}
.summary .summary-table .summary-col ul li a:hover{
    color: #000;
    background: rgba(255, 255, 255, 0.72);
}
.summary .fullpage-link{
    float: left;
    width: 100%;
    text-align: center;
}
.summary .fullpage-link a{
    float: left;
    width: 100%;
    padding: 14px 0;
    color: #fff;
    background-color: #336699;
}
.summary .fullpage-link a:hover{
    background-color: #5099e2;
}
@font-face {
	font-family: 'nexa_boldregular';
	font-weight: bold;
	font-style: normal;
	src: url('/fonts/nexa_boldfree_macroman/Nexa_Free_Bold-webfont.eot');
	src: url('/fonts/nexa_boldfree_macroman/Nexa_Free_Bold-webfont.eot?#iefix') format('embedded-opentype'), url('/fonts/nexa_boldfree_macroman/Nexa_Free_Bold-webfont.woff2') format('woff2'), url('/fonts/nexa_boldfree_macroman/Nexa_Free_Bold-webfont.woff') format('woff'), url('/fonts/nexa_boldfree_macroman/Nexa_Free_Bold-webfont.ttf') format('truetype'), url('/fonts/nexa_boldfree_macroman/Nexa_Free_Bold-webfont.svg#nexa_boldregular') format('svg');
}
.slideshow {
	position: relative;
	width: 100%; /* define width here */
	max-width: 1600px;
	margin: 0 auto;
}
.slideshow:focus {
	outline: none;
}
.js .slideshow::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70px;
	height: 70px;
	margin: -35px 0 0 -35px;
	pointer-events: none;
	border: 10px solid rgba(255, 255, 255, 0.1);
	border-top-color: #ffeb3b;
	border-radius: 50%;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	-webkit-animation: rotateLoader 0.8s linear infinite forwards;
	animation: rotateLoader 0.8s linear infinite forwards;
}
@-webkit-keyframes rotateLoader {
	to {
		-webkit-transform: rotate3d(360deg);
		transform: rotate3d(360deg);
	}
}
@keyframes rotateLoader {
	to {
		-webkit-transform: rotate3d(0, 0, 1, 360deg);
		transform: rotate3d(0, 0, 1, 360deg);
	}
}
.js .slideshow--loaded::after {
	opacity: 0;
}
.js .slideshow {
	height: 100vh; /* define height here */
	max-height: 1000px;
	pointer-events: none;
}
.slide {
	position: relative;
	width: 100%;
	margin: 0 0 1em 0;
	padding: 6em 5em;
}
.js .slide {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	margin: 0;
	pointer-events: none;
	opacity: 0;
}
.js .slide--current {
	pointer-events: auto;
	opacity: 1;
}
.slide-imgwrap {
	position: relative;
	width: calc(100% - 6em);
	height: 100%;
	margin: 0 auto;
}
.no-js .slide-imgwrap {
	height: 400px;
}
.slide__img-inner {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	will-change: tranform, opacity;
    background-position: left 8px;
	background-size: cover;
}
.slide__title {
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc(100% - 11em);
	max-width: 800px;
	padding: 2em;
	color: #e8e8e8;
}
.js .slide__title {
	pointer-events: none;
	opacity: 0;
}
.js .slide--current .slide__title {
	pointer-events: auto;
	opacity: 1;
}
.slide__title-main {
	font-family: 'nexa_boldregular', serif;
	font-size: 6em;
	line-height: 0.8;
	display: inline-block;
	margin: 0;
}
.slide__title-sub {
	font-size: 1.15em;
	line-height: 1.5;
	margin: 1em 0 0 0;
}
.slide__title-sub a {
	border-bottom: 1px solid;
}

/* Individual layouts */

/* Layout 1: 3 grid images */

.slide--layout-1 .slide__img {
	position: absolute;
	width: calc(50% - 1em);
	opacity: 0.5;
    transition: opacity 0.3s ease-in;
}
.slide--layout-1 .slide__img:hover{
    opacity: 1;
}
.slide--layout-1 .slide__img:first-child {
	left: 0.5em;
	height: 100%;
}
.slide__link {
	float: left;
    width: 100%;
    height: 100%;
    font-size: 50px;
    text-align: center;
    padding-top: 34px;
}
.slide--layout-1 .slide__img:nth-child(n+2) {
	left: calc(50% + 0.5em);
	height: calc(50% - 0.5em);
}

.slide--layout-1 .slide__img:nth-child(3) {
	top: calc(50% + 0.5em);
}
/* Layout 2: polaroid stack for 5 images */
.slide--layout-2 .slide__img {
	position: absolute;
	top: 50%;
	left: 50%;
}
.slide--layout-2 .slide__img:not(:last-child) {
	width: 300px;
	height: 300px;
}
.slide--layout-2 .slide__img:not(:last-child) .slide__img-inner {
	border: 5px solid #ffeb3b;
}
.slide--layout-2 .slide__img:first-child {
	-webkit-transform: translate3d(-50%,-50%,0) translate3d(-60%,-40%,0) rotate(-16deg);
	transform: translate3d(-50%,-50%,0) translate3d(-60%,-40%,0) rotate(-16deg);
}
.slide--layout-2 .slide__img:nth-child(2) {
	-webkit-transform: translate3d(-50%,-50%,0) translate3d(60%,-40%,0) rotate(10deg);
	transform: translate3d(-50%,-50%,0) translate3d(60%,-40%,0) rotate(10deg);
}
.slide--layout-2 .slide__img:nth-child(3) {
	-webkit-transform: translate3d(-50%,-50%,0) translate3d(60%,40%,0) rotate(-15deg);
	transform: translate3d(-50%,-50%,0) translate3d(60%,40%,0) rotate(-15deg);
}
.slide--layout-2 .slide__img:nth-child(4) {
	-webkit-transform: translate3d(-50%,-50%,0) translate3d(-60%,40%,0) rotate(10deg);
	transform: translate3d(-50%,-50%,0) translate3d(-60%,40%,0) rotate(10deg);
}
.slide--layout-2 .slide__img:last-child {
	-webkit-transform: translate3d(-50%,-50%,0);
	transform: translate3d(-50%,-50%,0);
	width: 450px;
	height: 400px;
}
.slide--layout-2 .slide__img:last-child .slide__img-inner {
	border: 10px solid #ffeb3b;
	border-bottom-width: 65px;
}
.slide__img-caption {
	font-family: 'Gochi Hand', cursive;
	position: absolute;
	width: 100%;
	top: 100%;
	text-align: center;
	margin: 0;
	padding: 1em;
	font-size: 1.25em;
	color: #25303b;
	font-weight: normal;
}
@media screen and (max-width: 45em) {
	.slide--layout-2 .slide__img:not(:last-child) {
		width: 100px;
		height: 100px;
	}
	.slide--layout-2 .slide__img:last-child .slide__img-inner {
		border-bottom-width: 40px;
	}
	.slide--layout-2 .slide__img:last-child {
		width: 160px;
		height: 160px;
	}
	.slide__img-caption {
		font-size: 0.75em;
	}
}
/* Layout 3: card stack with 7 images */
.slide--layout-3 .slide__img {
	position: absolute;
	width: 450px;
	height: 450px;
	top: 40%;
	left: 50%;
	-webkit-transform: translate3d(-50%,-50%,0) translate3d(-50%,0,0) rotate(-10deg);
	transform: translate3d(-50%,-50%,0) translate3d(-50%,0,0) rotate(-10deg);
}
@media screen and (max-width: 45em) {
	.slide--layout-3 .slide__img {
		width: 200px;
		height: 200px;
	}
}
.slide--layout-3 .slide__img-inner {
	-webkit-transform-origin: 50% 200%;
	transform-origin: 50% 200%;
}
/* Layout 4: asymmetrical with 4 images */
.slide--layout-4 .slide__img {
	position: absolute;
}
.slide--layout-4 .slide__img:nth-child(2) {
	top: 15%;
	left: 15%;
	width: 30%;
	height: 50%;
}
.slide--layout-4 .slide__img:first-child {
	top: 40%;
	left: 5%;
	width: 80%;
	height: 60%;
}
.slide--layout-4 .slide__img:nth-child(3) {
	top: 0;
	left: 40%;
	width: 40%;
	height: 60%;
}
.slide--layout-4 .slide__img:nth-child(4) {
	top: 50%;
	left: 75%;
	width: 22.5%;
	height: 42.5%;
}
/* Layout 5: grid with 20 images */
.slide--layout-5 .slide-imgwrap {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	padding: 8% 0;
	width: 80%;
}
.slide--layout-5 .slide__img {
	position: relative;
	width: calc((100% / 6) - 10px);
	padding-bottom: calc((100% / 6) - 10px);
	min-height: 150px;
	margin: 5px;
}
@media screen and (max-width: 45em) {
	.slide--layout-5 .slide__img {
		min-height: 50px;
	}
}
/* Layout 6: 3 round images */
.slide--layout-6 .slide__img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 45%;
	padding-bottom: 45%;
	-webkit-transform: translate3d(-50%,-50%,0);
	transform: translate3d(-50%,-50%,0);
}
.slide--layout-6 .slide__img-inner {
	border-radius: 50%;
}
.slide--layout-6 .slide__img:first-child {
	-webkit-transform: translate3d(0%,-40%,0) scale(0.6);
	transform: translate3d(0%,-40%,0) scale(0.6);
}
.slide--layout-6 .slide__img:nth-child(3) {
	-webkit-transform: translate3d(-100%,-60%,0) scale(0.75);
	transform: translate3d(-100%,-60%,0) scale(0.75);
}
/* Layout 7: 3 rhomboid images */
.slide--layout-7 .slide__img {
	position: absolute;
	top: 10%;
	width: 40%;
	height: 80%;
}
.slide--layout-7 .slide__img:nth-child(2) {
	left: 30%;
}
.slide--layout-7 .slide__img:nth-child(3) {
	left: 60%;
}
.slide--layout-7 .slide__img-inner {
	-webkit-clip-path: polygon(0% 100%, 30% 0%, 100% 0%, 70% 100%);
	clip-path: polygon(0% 100%, 30% 0%, 100% 0%, 70% 100%);
	-webkit-clip-path: url('#polygon-clip-rhomboid');
	clip-path: url('../index.html#polygon-clip-rhomboid'); /* Firefox needs this path */
}
/* Media query for smaller screens (general elements) */
@media screen and (max-width: 45em) {
	.slideshow {
		padding-top: 7em;
	}
	.js .slideshow {
		height: calc(100vh - 60px);
	}
	.slide {
		padding: 6em 0;
	}
	.no-js .slide {
		padding: 4em 0 0;
	}
	.slide-imgwrap {
		width: calc(100% - 1em);
	}
	.slide__title {
		width: calc(100% - 2em);
		margin: 0 0 4em 0;
		padding: 1.5em;
	}
	.slide__title-main {
		font-size: 2em;
	}
	.slide__title-sub {
		font-size: 0.75em;
	}
}

body {
	color: #5f6669;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: #ffeb3b;
	outline: none;
}

a:hover,
a:focus {
	color: #fff;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}
/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: #336699;
}
.icon:hover{
	fill: #ffffff;
}
/* Buttons */
.btn {
	display: inline-block;
	margin: 0;
	padding: 0;
	cursor: pointer;
	pointer-events: auto;
	color: #ffeb3b;
	border: none;
	background: none;
}
.btn:focus {
	outline: none;
}
.btn:hover {
	color: #fff;
}
.btn--arrow {
	font-size: 1.5em;
	display: block;
}
.btn--arrow:nth-child(2) {
	margin: 0 0 0 0.5em;
}
.btn--arrow .icon {
	height: 0.5em;
}
.btn--github {
	font-size: 1.25em;
	position: fixed;
	right: 0;
	bottom: 0;
	margin: 0 1.5em 1.25em 0;
	color: #fff;
}
.btn--github:hover,
.btn--github:focus {
	color: #ffeb3b;
}
/* Codrops header */
.codrops-header {
	position: absolute;
	z-index: 100;
	top: 0;
	left: 0;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	padding: 0.8em 0.75em;
}
.codrops-header__title {
	font-size: 1em;
	font-weight: 500;
	margin: 0;
	padding: 0 0.75em;
}
.codrops-header__tagline {
	font-size: 0.85em;
	margin: 0 6em 0 auto;
	padding: 0 1em;
	color: #ffeb3b;
}
/* Top Navigation Style */
.codrops-links {
	position: relative;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
}
.codrops-links::after {
	content: '';
	position: absolute;
	top: 10%;
	left: 50%;
	width: 1px;
	height: 80%;
	opacity: 0.2;
	background: currentColor;
	-webkit-transform: rotate3d(0, 0, 1, 22.5deg);
	transform: rotate3d(0, 0, 1, 22.5deg);
}
.codrops-icon {
	display: inline-block;
	margin: 0.25em;
	padding: 0.25em;
}
.ie-message {
	font-weight: bold;
	display: none;
	margin: 1em;
	padding: 0.5em 1em;
	color: #fff;
	background: #d861a3;
}


/* Demo links */

.dummy-links {
	position: absolute;
	top: 0;
	left: 100%;
	width: 100vh;
	padding: 1.8em 2.25em;
	-webkit-transform: rotate3d(0, 0, 1, 90deg);
	transform: rotate3d(0, 0, 1, 90deg);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.dummy-links__link {
	display: inline-block;
	margin: 0 1.5em 0 0;
	color: #fff;
}

.dummy-links__link:hover,
.dummy-links__link:focus {
	color: #ffeb3b;
}

.dummy-links__link--current,
.dummy-links__link--current:hover {
	color: #5f6669;
}


/* Slideshow nav (not part of plugin so we put the styles here) */

.slideshow__nav {
	position: absolute;
	pointer-events: none;
}

.no-js .slideshow__nav {
	display: none;
}

.slideshow__nav--arrows {
	font-size: 4em;
	right: 1.1em;
	bottom: 1.45em;
}


/* Content*/

.content {
    padding: 0 2em 2em;
	max-width: 1600px;
	margin: 0 auto;
    height: auto;
    overflow: hidden;
    color: #ffffff;
}

.content p {
	margin: 0 0 1em;
}

.content--text p {
    color: #0567af;
	font-size: 1.25em;
	line-height: 1.5;
	max-width: 600px;
}


/* Related demos */

.content--related {
	font-size: 0.85em;
	font-weight: bold;
	text-align: center;
}

.media-item {
	display: inline-block;
	padding: 1em;
	vertical-align: top;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.media-item__img {
	max-width: 100%;
	opacity: 0.3;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.media-item:hover .media-item__img,
.media-item:focus .media-item__img {
	opacity: 1;
}

.media-item__title {
	font-size: 1em;
	margin: 0;
	padding: 0.5em;
}

@media screen and (max-width: 45em) {
	.codrops-header__title {
		font-size: 0.8em;
	}
	.codrops-header__tagline {
		display: none;
	}
	.dummy-links {
		font-size: 0.75em;
		position: relative;
		left: 0;
		width: auto;
		padding: 0.5em 1em 0;
		-webkit-transform: none;
		transform: none;
	}
	.content {
		font-size: 0.85em;
	}
	.slideshow__nav--arrows {
		font-size: 2em;
		right: auto;
		bottom: 1em;
		left: 0.5em;
	}
	.btn--github {
		margin: 0 0.25em 0.75em 0;
	}

}
