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

html, body, .container, .header {
	height: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { display: table; content: ''; }
.clearfix:after { clear: both; }


body {
	background: #fafafa;
	color: #43434b;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

html, body, .container, .header {
	height: 100%;
}

/* Header */
.header {
	position: relative;
	margin: 0 auto;
	min-height: 560px;
	width: 100%;
}

.bg-img {
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.bg-img img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	min-width: 100%;
	min-height: 100%;
}

.title {
	z-index: 1000;
	margin: 0 auto;
	padding: 0 1.25em;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 45%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.title h1 {
	padding: 0 0 0.2em;
	color: #fff;
	font-weight: 800;
	font-size: 2.5em;
	margin: 0 auto;
}

.title p {
	color: #fff;
	padding: 0 0 0.6em;
	font-weight: 300;
	font-size: 0.85em;
	margin: 0 auto;
}

.title h1,
.title p.subline {
	line-height: 1;
}

.title p.subline {
	font-size: 1em;
	line-height: 1.5;
}

/* Trigger Button */
button.trigger {
	position: fixed;
	bottom: 40px;
	left: 50%;
	z-index: 5000;
	display: block;
	margin-left: -0.5em;
	padding: 0;
	width: 1em;
	height: 1em;
	border: none;
	background: transparent;
	color: transparent;
	font-size: 2em;
	cursor: pointer;
}

.container:not(.notrans) button.trigger {
	-webkit-transition: opacity 0.3s 0.5s;
	transition: opacity 0.3s 0.5s;
}

.container.modify:not(.notrans) button.trigger {
	opacity: 0;
	pointer-events: none;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

button.trigger::before {
	position: absolute;
	bottom: 100%;
	left: -100%;
	padding: 0.8em;
	width: 300%;
	color: #fff;
	content: attr(data-info);
	font-size: 0.35em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

button.trigger:focus {
	outline: none;
}

button.trigger span {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

button.trigger span::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	content: "\e097";
	text-transform: none;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	font-family: 'icomoon';
	line-height: 1;
	speak: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Conent */
.content {
	margin: 0 auto;
	padding: 0 0 3em;
}

.content > div:not(.title) {
	margin: -80px auto 0;
	max-width: 900px;
	padding: 0 1.25em;
}

.content > div:not(.title) p {
	margin: 0 auto 1.5em auto;
}

.content > div:not(.title) p:first-child {
	font-size: 1.35em;
}

.content h3 {
	margin: 0;
	font-size: 1.4em;
}

.content blockquote {
	padding: 0.25em;
	font-style: italic;
	font-size: 1.65em;
	font-family: 'Lora', serif;
	line-height: 1.4;
}

.content blockquote::before {
	content: '\201C';
}

.content blockquote::after {
	content: '\201D';
}

.content .notes {
	display: flex;
	margin-bottom: 1rem;
}

.content .notes .notes-first {
	width: 50%;
    display: inline-block;
    background: black;
    overflow: hidden;
    height: 290px;
}

.content .notes .notes-last {
	width: 50%;
    display: inline-block;
    padding: 2rem;
    position: relative;
}

.content .notes .notes-first img {
	width: 100%;
    opacity: 0.5;
    width: -webkit-calc(100% + 20px);
	width: calc(100% + 20px);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-10px,0,0);
	transform: translate3d(-10px,0,0);
}

.content .notes .notes-first:hover img {
    opacity: 0.8;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    cursor: pointer;
}

.content .notes .notes-last h3 {
	position: absolute;
    top: 0%;
    left: -13%;
    color: black;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
    /*width: 90%;*/
    padding: 1rem;
    background: #fafafad4;
    z-index: 1;
    margin: 1rem 0;
}

.content .notes .notes-last p {
	position: relative;
    font-size: 12px;
    bottom: -80px;
    /*width: 80%;*/
    padding: 1em 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	opacity: 0;
}

.content .notes .notes-last:hover p{
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.content .notes a.btn-seemore {
	padding: 0.5rem 1rem;
	border: 1px solid #43434b;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 5px;
	text-decoration: none;
	font-weight: 800;
	color: #43434b;
	text-align: center;
	cursor: pointer;
	display: block;
	z-index: 1;
	position: absolute;
	bottom: 0;
}

.content .notes a:hover.btn-seemore {
	border: 2px solid #43434b;
}

.content .notes .notes-left {
	width: 50%;
    display: inline-block;
    background: black;
    overflow: hidden;
    height: 290px;
}

.content .notes .notes-right {
	width: 50%;
    display: inline-block;
    padding: 2rem;
    position: relative;
}

.content .notes .notes-left img {
	width: 100%;
    opacity: 0.5;
    width: -webkit-calc(100% + 20px);
	width: calc(100% + 20px);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-10px,0,0);
	transform: translate3d(-10px,0,0);
}

.content .notes .notes-left:hover img {
    opacity: 0.8;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    cursor: pointer;
}

.content .notes .notes-right h3 {
	position: absolute;
    top: 0%;
    color: black;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
    /*width: 90%;*/
    padding: 1rem;
    background: #fafafad4;
    z-index: 1;
    margin: 1rem 0;
    text-align: right;
    right: -10%
}

.content .notes .notes-right p {
	position: relative;
    font-size: 12px;
    bottom: -60px;
    /*width: 80%;*/
    padding: 1em 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	opacity: 0;
}

.content .notes .notes-right:hover p{
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.content .notes a.btn-seemore {
	padding: 0.5rem 1rem;
	border: 1px solid #43434b;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 5px;
	text-decoration: none;
	font-weight: 800;
	color: #43434b;
	text-align: center;
	cursor: pointer;
	display: block;
	z-index: 1;
	position: absolute;
	bottom: 5%;
    right: 10%;
}

.content .notes a:hover.btn-seemore {
	border: 2px solid #43434b;
}

.content .gallery {
	margin: 1rem 0;
	padding: 1rem 0;
	border-top: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
}

.noticias-RCN {
	margin-top: 1rem;
	width: 300px;
}

.related {
    padding: 3em 0;
    text-align: center;
    font-size: 1em;
    position: relative;
    line-height: 1;
    color: #464646;
    border-top: 1px solid #dadada;
    background: #fafafa;
}

.related h4 {
	margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.related .credits {
	display: flex;
	margin: 0 auto;
	width: 90%;
	padding-top: 1.5rem;
}

.related .credits .name {
	margin: 0 auto;
}

.content .caption {
	font-size: 11px;
	color: #717171;
	padding: 0;
	margin: 0;
	font-family: roboto;
	margin-bottom: 1rem;
}

.intro-video {
	display:block;
}

.img-intro {
	display: none;
}

/***** Individual effects *****/

.intro-effect-side:not(.notrans) .bg-img::before,
.intro-effect-side:not(.notrans) .title {
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
}

.intro-effect-side:not(.notrans) .bg-img::after {
	-webkit-transition-property: top, left, bottom, right, background-color;
	transition-property: top, left, bottom, right, background-color;
}

.intro-effect-side:not(.notrans) .header p {
	-webkit-transition-property: -webkit-transform, opacity;
	transition-property: transform, opacity;
}

.intro-effect-side:not(.notrans) .content > div {
	-webkit-transition-property: opacity;
	transition-property: opacity;
}

.intro-effect-side:not(.notrans) .bg-img::before,
.intro-effect-side:not(.notrans) .bg-img::after,
.intro-effect-side:not(.notrans) .title,
.intro-effect-side:not(.notrans) .header p,
.intro-effect-side:not(.notrans) .content > div {
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.intro-effect-side .codrops-top a {
	color: #7b8d92;
}

.intro-effect-side .bg-img::before,
.intro-effect-side .bg-img::after {
	content: '';
	position: absolute;
	z-index: 100;
}

.intro-effect-side .bg-img::before {
	background: #fafafa;
	top: 0;
	left: 0;
	width: 60%;
	height: 100%;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.intro-effect-side.modify .bg-img::before {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.intro-effect-side .bg-img::after {
	border: 80px solid #fafafa;
	top: -80px;
	right: -80px;
	bottom: -80px;
	left: -80px;
	background-color: rgba(255, 255, 255, 0.73);
}

.intro-effect-side.modify .bg-img::after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255,255,255,0);
}

.intro-effect-side .codrops-demos a {
	color: #43939d;
}

.intro-effect-side .codrops-demos a.current-demo {
	border-bottom: 3px solid #43939d;
}

.intro-effect-side .title {
	text-align: right;
	left: 0;
	padding: 0 3em 0 2em;
	width: 60%;
	-webkit-transform: translateX(33.3%) translateY(-50%);
	transform: translateX(33.3%) translateY(-50%);
}

.intro-effect-side.modify .title {
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.intro-effect-side .header h1 {
	font-family: 'Lora', serif;
	font-style: italic;
	font-weight: 400;
	padding: 0 0 0.5em 0;
	color: #222323;
}

.intro-effect-side .header p {
	opacity: 0;
	color: #43434b;
	-webkit-transform: translateY(100px);
	transform: translateY(100px);
}

.intro-effect-side.modify .header p {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.intro-effect-side .content > div {
	margin-top: 0px;
	opacity: 0;
}

.intro-effect-side.modify .content > div {
	opacity: 1;
}

.intro-effect-side button.trigger span::before,
.intro-effect-side button.trigger::before {
	color: #516165;
}

/* Delays */
.intro-effect-side:not(.notrans) .title,
.intro-effect-side:not(.notrans) .bg-img::before,
.intro-effect-side:not(.notrans) .bg-img::after {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.intro-effect-side.modify:not(.notrans) .title,
.intro-effect-side.modify:not(.notrans) .bg-img::before,
.intro-effect-side.modify:not(.notrans) .bg-img::after {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.intro-effect-side.modify:not(.notrans) .header p:nth-last-child(2) {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.intro-effect-side.modify:not(.notrans) .header p:last-child {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.intro-effect-side.modify:not(.notrans) .content > div {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}


/* Media Queries */
@media screen and (max-width: 770px){
	.content .notes .notes-last p {
		transform: none;
		opacity: 1;
	}

	.content .notes .notes-right p {
		transform: none;
		opacity: 1;
	}

	.content .notes .notes-left {
		height: 250px;
	}

	.content .notes .notes-first {
		height: 250px;
	}
}

@media screen and (max-width: 47em) {
	.title, .content {
		font-size: 15px;
	}

	.intro-effect-side .title {
		width: 100%;
		padding: 0 1em;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.intro-effect-side.modify .bg-img::before {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	.intro-effect-side .bg-img::after {
		border-left-width: 0px;
		border-right-width: 0px;
		right: 0px;
		left: 0px;
		background: rgba(255,255,255,0.1);
	}

	.intro-effect-side.modify .bg-img::after {
		background: rgba(255,255,255,0.8);
	}

	.intro-effect-sidefixed .content {
		width: 100%;
		margin-left: auto;
	}

	.intro-effect-sidefixed .bg-img::after {
		width: 95%;
	}

	.intro-effect-side .bg-img::after {
		border: none;
    	border-bottom: 80px solid #fafafa;
    }

    .title h1 {
	    font-size: 3rem;
    	width: 90%;
	}

	.title p.subline {
	    font-size: 16px;
	    width: 90%;
	}

	.content .notes {
		display: block;
		margin: 0.5rem 0;
		border-top: 1px solid #595959;
	}

	.content .notes .notes-first {
		width: 100%;
	}

	.content .notes .notes-last {
		width: 100%;
	}

	.content .notes .notes-last h3 {
		position: relative;
		left: 0;
		padding: 0;
		margin: 0;
	}

	.content .notes .notes-last p {
		bottom: 0;
	}

	.content .notes .notes-last p {
		transform: none;
		opacity: 1;
		font-size: 14px;
	}

	/*---*/

	.content .notes .notes-left {
		width: 100%;
	}

	.content .notes .notes-right {
		width: 100%;
	}

	.content .notes .notes-right h3 {
		position: relative;
		left: 0;
		padding: 0;
		margin: 0;
	}

	.content .notes .notes-right p {
		bottom: 0;
	}

	.content .notes .notes-right p {
		transform: none;
		opacity: 1;
		font-size: 14px;
	}

	.content .notes a.btn-seemore {
		right: 0;
	}

	.related .credits {
		display: block;
	}

	.intro-video {
		display:none;
	}

	.img-intro {
		display: block;
	}

	.img-intro img {
		width: 1000px;
		left: -130%
	}

}

@media screen and (max-width: 27em) {

	.title, .content {
		font-size: 15px;
	}

	button.trigger::before {
		display: none;
	}

	.content .notes .notes-left {
		height: 220px;
	}

	.content .notes .notes-first {
		height: 220px;
	}

	.content .notes .notes-last h3 {
		font-size: 1.6rem
	}

	.content .notes .notes-right h3 {
		font-size: 1.6rem
	}

	.header .bg-img {
		opacity: 0.5;
	}
}