@charset "UTF-8";

/* reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {box-sizing: border-box; margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block; } body {line-height: 1; } ol, ul {list-style: none; } blockquote, q {quotes: none; } blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none; } table {border-collapse: collapse; border-spacing: 0; } * {box-sizing: border-box;}

/* slider */
.slick-slider {position: relative; display: block; box-sizing: border-box; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; -khtml-user-select: none; -ms-touch-action: pan-y; touch-action: pan-y; -webkit-tap-highlight-color: transparent; } .slick-list {position: relative; display: block; overflow: hidden; margin: 0; padding: 0; } .slick-list:focus {outline: none; } .slick-list.dragging {cursor: pointer; cursor: hand; } .slick-slider .slick-track, .slick-slider .slick-list {-webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .slick-track {position: relative; top: 0; left: 0; display: block; margin-left: auto; margin-right: auto; } .slick-track:before, .slick-track:after {display: table; content: ''; } .slick-track:after {clear: both; } .slick-loading .slick-track {visibility: hidden; } .slick-slide {display: none; float: left; height: 100%; min-height: 1px; } [dir='rtl'] .slick-slide {float: right; } .slick-slide img {display: block; } .slick-slide.slick-loading img {display: none; } .slick-slide.dragging img {pointer-events: none; } .slick-initialized .slick-slide {display: block; } .slick-loading .slick-slide {visibility: hidden; } .slick-vertical .slick-slide {display: block; height: auto; border: 1px solid transparent; } .slick-arrow.slick-hidden {display: none; }


/* shared */
body {
	font-family: 'Raleway', Arial, sans-serif;
}
section {
	min-height: 100vh;
}
img {
	max-width: 100%;
}
.container-fluid {
	max-width: 1920px;
	margin: 0 auto;
}
.h-100 {
	min-height: 100vh;
}
.intro-arrow {
	width: 20px;
	height: 30px;
	background: url('../img/arrow.png')no-repeat center;
	transform: rotate(-90deg);
	border: 0;
	border-radius: 0;
	position: fixed;
	bottom: 30px;
	left: 50%;
	margin-left: -10px;
	text-indent: -9999px;
	z-index: 2;
	animation: upAndDown 1s ease-in-out infinite forwards;
}
@keyframes upAndDown {
	0% {
		transform: rotate(-90deg) translateX(-5px);
	}
	50% {
		transform: rotate(-90deg) translateX(0);
	}
	100% {
		transform: rotate(-90deg) translateX(-5px);
	}
}

/* header */
.header {
	padding: 20px 15px 30px 15px;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo {
	background: url('../img/logo-raqueles.svg')no-repeat center/contain;
	width: 220px;
    height: 20px;
	text-indent: -9999px;
	overflow: hidden;
	opacity: 1;
	transition: all .3s ease-in-out;
}
.header.is-active {
	z-index: 400;
}
.header.is-active .header-logo {
	opacity: 0;
}
.header-menu {
	background: url('../img/hello.svg')no-repeat center;
	width: 50px;
	height: 50px;
	text-indent: -9999px;
	display: block;
	text-decoration: none;
}
.header.is-active .header-menu {
	background: url('../img/close.png')no-repeat center;
}
#email {
	position: absolute;
	padding: 10px 14px;
	font-size: 12px;
	color: #fff;
	background: #000;
	border: 1px solid #fff;
	text-transform: uppercase;
	z-index: 200;
}
@media (min-width: 992px) {
	.header-logo {
	    width: 390px;
		height: 70px;
	}
}

/* hero */
.hero {
	overflow: hidden;
	width: 100vw;
	background: #cdf444;
	position: relative;
	z-index: 21;
	height: 100vh;
}
.hero video {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
}

/* intro */
.intro {
	position: sticky;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 20;
}

/* projects */
.projects {
	position: relative;
	z-index: 9;
	padding-top: 120px;
	overflow-x: hidden;
}
.box__image {
	width: 100%;
	position: relative;
	text-align: center;
	margin: 0 0 40px 0;
	transition: all .3s ease-in-out;
}
.box__image:after {
	content: "";
	display: block;
}
.box__image img {
/*	max-height: 262px;*/
	transition: all .3s ease-in-out;
	display: inline-block;
}
.box__image a {
	max-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	top: 0;
	right: 0;
	margin: 0 auto auto auto;
}
.box__image a:after {
	opacity: 0;
	content: attr(title);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	color: #fff;
	transition: all .3s ease-in-out;
	letter-spacing: 1.5px;
	font-size: 10px;
	max-width: 150px;
	height: 20px;
}
.box__image a:hover:after, .box__image.active a:after, .box__image.active, .box__image:hover {
	opacity: 1!important;
	z-index: 10;
}
@media (min-width: 992px) {
	.box__image a:hover img, .box__image.active img {
		transform: scale(1.03);
	}
}
.gallery__page {
	margin: 0 0 30px 0;
}
.gallery__page img {
	max-width: 85%;
	max-height: 100%;
}
@media (min-width: 1200px) {
	.gallery__page img {
		max-width: 85%;
		max-height: 100%;
	}
}
.gallery__page img:focus {
	outline: 0;
}
.gallery__page .slick-arrow {
	position: absolute;
	height: 30px;
	width: 30px;
	text-indent: -9999px;
	border: 0;
	background: transparent;
	z-index: 90;
	top: 50%;
	margin-top: -15px;
	transition: all .3s ease-in-out;
}
.gallery__page .slick-arrow:focus {
	outline: 0;
}
.slick-arrow.slick-disabled {
	display: none!important;
}
.gallery__page .slick-prev {
	width: 10px;
	height: 30px;
	background: url('../img/arrow.png')no-repeat center/contain;
	border: 0;
	border-radius: 0;
	top: 50%;
	margin-top: -15px;
	text-indent: -9999px;
	z-index: 2;
	left: 0px;
	transform: rotate(0deg);
	cursor: pointer;
}
.gallery__page .slick-next {
	width: 10px;
	height: 30px;
	background: url('../img/arrow.png')no-repeat center/contain;
	border: 0;
	border-radius: 0;
	top: 50%;
	margin-top: -15px;
	text-indent: -9999px;
	z-index: 2;
	right: 0px;
	transform: rotate(180deg);
	cursor: pointer;
}
.slick-dots {
	list-style: none;
	margin: 20px 0;
	padding: 0;
	text-align: center;
}
.slick-dots li {
	display: inline-block;
	margin: 0 5px;
}
.slick-dots button {
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background: #fff;
	display: block;
	padding: 0;
	text-indent: -9999px;
	border: 0;
}
.slick-active button {
	background: #000;
}
.project_image {
	display: flex;
	justify-content: center;
}
.post__content:empty {
	display: none!important;
}
.post__content {
	display: none!important;
	background: #fff;
	padding: 80px 0;
}
.loading {
	height: 100%;
	width: 100%;
	background: #fff url('../img/loading.svg')no-repeat center/auto 100px;
}
@media (min-width: 1200px) {
	.box__image:after { 
		height: 100%;
	}
	.gallery__page {
		position: relative;
		z-index: 20;
		max-height: 70vh;
		padding-bottom: 60px;
	}
	.gallery__page img {
		max-height: 70vh!important;
		width: auto!important;
	}
	.post__content {
		padding: 120px 0;
		display: block!important;
	}
	.post__content__mobile {
		display: none!important;
	}
	.gallery__page .slick-prev {
		left: 10%;
		width: 20px;
	}
	.gallery__page .slick-next {
		right: 10%;
		width: 20px;
	}
}

/* contact */
.contact {
	background: #fff;
	position: fixed;
	top: -200%;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;
	opacity: 0;
	transition: top 0s ease-in-out 0s, opacity .3s ease-in-out 0s, transform .3s ease-in-out 0s;
	transform: scale(1.2);
}
.contact.is-visible {
	top: 0;
	opacity: 1;
	transform: scale(1);
}
.contact-data {
	max-width: 200px;
	margin: 30px auto 0 auto;
}
.contact-info {
	display: flex;
	gap: 20px;
	margin-top: 30px;
}
.contact-info a {
	display: block;
	text-decoration: none;
	text-indent: -9999px;
	overflow: hidden;
	height: 27px;
}
.contact-info a:first-child {
	width: 27px;
	background: url('../img/icon-instagram.png')no-repeat center/contain;
}
.contact-info a:last-child {
	width: 38px;
	background: url('../img/icon-mail.png')no-repeat center/contain;
}
@media (min-width: 1200px) {
	.contact-data {
		max-width: none;
		margin: 60px auto 0 auto;
	}
	.contact-info {
		margin-top: 60px;
		gap: 30px;
	}
	.contact img {
		max-width: 650px;
	}
	.contact-data {
		max-width: 400px!important;
	}
}

.hidden-xs {
	display: none;
}
.visible-xs {
	display: block;
}
.cols-columns {
  display: flex;
  box-sizing: border-box;
}

.cols-columns > * {
  flex: 1;
  padding: 1rem;
}

.cols-columns * {
  box-sizing: border-box;
}

.cols-columns img {
  display: block;
  width: 100%;
}

@media (min-width: 992px) {
	.hidden-xs {
		display: block;
	}
	.visible-xs {
		display: none;
	}
	.grid-sizer,
	.grid-item {
		width: 25%;
	}
}

.slick-list {height:100%!important;}


