/* CSS Document */

:root {
	--light: #e6dcce;
	--middle: #635f5a;
	--dark: #343a32;
	--main_gap: 10px;
	--br_images: 0px;
}

* {
	-webkit-text-size-adjust: none;
	text-size-adjust: none;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

html, body {
	width: 100%;
	height: 100%;
}

body {
	margin: 0;
	padding: 0;

	font-family: "objektiv-variable", sans-serif;
	font-variation-settings: "wght" 400;
	font-style: normal;
	font-size: 13px;
	line-height: 24px;

	color: var(--dark);
}
body.locked {
	overflow-y: hidden;
}

div {
	display: block;
	margin: 0;
	padding: 0;
}


@media screen and (max-height: 760px) {
}


.vfx {
	opacity: 0.0;
	-webkit-transition: opacity 1000ms ease-in-out 0ms;
	transition: opacity 1000ms ease-in-out 0ms;
}
.vin {
	opacity: 1.0;
}



.mobile .hide_mobile {			display: none;		}
.standard .hide_desktop {		display: none;		}



section {
	width: 100vw;
}

.standard section .inner {
	margin: 0 auto;
	padding: 0 10vw;
}



.w20vw {	width: 20vw;	}
.w50vw {	width: 50vw;	}
.w100vw {	width: 100vw;	}

.h20vh {	height: 20vw;	}
.h50vh {	height: 50vw;	}
.h100vh {	height: 100vh;	}



a {
	text-decoration: none;
	color: inherit;
}
a:hover {
	cursor: pointer;
}
small {
	font-size: 10px;
	text-transform: uppercase;
}

b {
	font-variation-settings: "wght" 600;
}



h1, h2 {
	font-weight: 400;
	color: var(--green);
	font-family: "eb-garamond", serif;
}

h2 {
	font-size: 40px;
	line-height: 45px;
}
.mobile h2 {
	font-size: 32px;
	line-height: 38px;
}










.header {
	display: flex;
	position: fixed;

	justify-content: center;
	align-items: center;

	background-color: #FFF;
	color: var(--dark);
	border-radius: 25px;

	z-index: 45;
}

.standard .header {
	width: 120px;
    top: 45px;
    right: 35px;
}

.mobile .header {
	width: 60px;
	height: 100px;
	top: 0vh;
	right: 10px;
	border-radius: 25px 0 0 25px;
	flex-direction: column-reverse;
	background-color: transparent;
}


.standard .header .menu,
.standard .header .language {
	width: 50px;
	height: 50px;
}

.mobile .header .menu,
.mobile .header .language {
	width: 40px;
	height: 40px;
}


.header .menu {
	background-size: 30px;
	background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/menu_dark.svg);
	background-position: center;
	background-repeat: no-repeat;
}
.header .menu:hover {
	cursor: pointer;
}

.header .language {
	text-align: center;
	text-transform: uppercase;
}
.mobile .header .language {
	display: none;
	padding: 10px 0 0 0;
}






.language .active_lang {
	display: inline-block;
	width: 50px;
	padding: 13px 0;
}

.language .active_lang:hover {
	cursor: pointer;
}

.lang_dd_menu {
	position: absolute;
	top: 40px;
	height: 70px;
	width: 50px;
	padding: 11px 0;
	background-color: var(--dark);
	border-radius: 25px;
}

a.dd_lang {
	display: block;
	color: #FFF;
	opacity: 0.5;
}

a.dd_lang:hover {
	opacity: 1;
}


a.dd_lang.active {
	display: none;
}




.menu_wrapper {
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vw;
	top: 0%;
	left: 0%;
	z-index: 1000;

	text-align: center;
}

.menu_wrapper .background {
	position: fixed;
	top: 0%;
	bottom: 0%;
	left: 100%;
	right: 0%;

	-webkit-transition: all 500ms cubic-bezier(0.75, 0, 0.25, 1) 0ms;
	-moz-transition: all 500ms cubic-bezier(0.75, 0, 0.25, 1) 0ms;
	transition: all 500ms cubic-bezier(0.75, 0, 0.25, 1) 0ms;

	background-color: var(--light);

	overflow: hidden;
}

.menu_wrapper.in .background {
	left: 0%;
}
.menu_wrapper.out .background {
	right: 100%;
}

.menu_wrapper .close {
	display: none;
}

.menu_wrapper .list {
	display: none;
	position: relative;
	margin: 15vh 0 0 0;

}
.menu_wrapper .list a {
	display: block;
	padding: 1.6vh 0;
	font-size: 18px;
}

.standard .menu_wrapper .list a {
	font-size: 28px;
	line-height: 32px;
}


.menu_footer {
	display: none;
	position: relative;
	margin: 40px 0;
}

.language_menu:hover {
	cursor: pointer;
}

.menu_lang,
.menu_footer .seperator {
	opacity: 0.5;
}

.menu_lang.active {
	opacity: 1;
}


.watermark {
	display: none;
	position: fixed;
	bottom: 10vh;
	left: calc(50vw - 50px);

	height: 80px;
	width: 100px;

	background-position: center;
	background-size: contain;
	background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/logo_dark.svg);
	background-repeat: no-repeat;

}







.cta_wrapper {
	display: flex;
	justify-content: space-between;
	position: absolute;
	bottom: 5vh;
	width: 100%;
	padding: 0 20px;
}



a.cta {
    display: inline-block;
    padding: 12px 20px;
    border: 2px solid;
    border-radius: 30px;
	font-variation-settings: "wght" 600;
}

a.cta.light {
	border-color: var(--light);
	color: var(--light);
}
a.cta.dark {
	border-color: var(--dark);
	color: var(--dark);
}
a.cta.dark.full {
	background-color: var(--dark);
	color: #FFF;
}
a.cta.white {
	border-color: #FFF;
	color: var(--dark);
}
a.cta.white.full {
	background-color: #FFF;
}



/*	##########################			Intro				########################## */

#intro {
	position: relative;
	height: 100vh;
	background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/object/02-PATIO.jpg);
	background-position: center;
	background-size: cover;
}

#intro .logo {
	position: absolute;
	top: 50px;
	left: calc(50% - 40px);
	height: 110px;
	width: 80px;
	background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/logo.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

#intro .letters {
	position: absolute;
	width: 80vw;
	left: 10vw;
	top: 25vh;
	height: 50vh;
	background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/la-geoda.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 0.9;
}

/*	##########################			URBAN				########################## */

#urban {
	position: relative;
	height: 100vh;
	background-color: var(--dark);
	background-size: cover;
}

#urban .subtitle {
	position: absolute;
    top: 170px;
    left: calc(50% - 100px);
    width: 200px;
    height: 25px;
    text-align: center;
    color: var(--light);
	font-variation-settings: "wght" 600;
}

#urban .letters {
	position: absolute;
	width: 80vw;
	left: 10vw;
	top: 30vh;
	height: 45vh;
	background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/urban.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 0.9;
}

/*	##########################			COMMUNITY			########################## */

.standard #community {
	display: flex;
	height: 100vh;
	overflow: hidden;
	align-items: center;
}


#community .grid {
	display: grid;
}

.mobile #community .grid {
	display: block;
}

#community .grid {
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 5vw;
	grid-row-gap: 5vw;
}

#community .image_wrapper,
#community .right {
	position: relative;
}

#community .image_wrapper {
	grid-area: 1 / 1 / 2 / 2;
}
#community .text_wrapper {
	grid-area: 1 / 2 / 2 / 3;
}

.mobile #community .text_wrapper {
	padding: 10vw;
}




#community .image {
	width: 100%;
	height: 100%;
}
.mobile #community .image {

}

#community .image,
#community .inline_iamge {
	background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/object/01-STREET.jpg);
	background-position: center;
	background-size: cover;
}

#community .inline_iamge {
	width: 100%;
	height: 300px;
	margin: 30px 0;
}













/*	##########################			LOCATION			########################## */

#location {
	position: relative;
}

.fifty_fifty {
	width: 100vw;
	height: 100vh;
}
.mobile .fifty_fifty {
	height: 200vh;
}
.fifty_fifty .left,
.fifty_fifty .right {
    height: 100vh;

	-webkit-transition: all 1000ms cubic-bezier(0.75, 0, 0.25, 1) 0ms;
	-moz-transition: all 1000ms cubic-bezier(0.75, 0, 0.25, 1) 0ms;
	transition: all 1000ms cubic-bezier(0.75, 0, 0.25, 1) 0ms;
}

.mobile .fifty_fifty .left,
.mobile .fifty_fifty .right {
    width: 100vw;
}

.fifty_fifty .left {
	background-color: var(--dark);
	left: 0%;
	right: 50%;
}
.fifty_fifty .left.expand {
	left: 0%;
	right: 0%;
	z-index: 10;
}
.fifty_fifty .right {
	background-color: var(--light);left: 50%;right: 0%;
}
.fifty_fifty .right.expand {
	left: 0%;
	right: 0%;
	z-index: 10;
}

.fifty_fifty .foreground_animation {
	z-index: 11;
}

.standard .fifty_fifty .left,
.standard .fifty_fifty .right {
	position: absolute;
}

.fifty_fifty .left,
.fifty_fifty .right {
	padding: 10vw;
}




.preview_1 {
	color: var(--light);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(5, auto);
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

.preview_1 .head { 	grid-area: 1 / 1 / 2 / 3; }
.preview_1 .img_1 { grid-area: 2 / 1 / 5 / 2; }
.preview_1 .img_2 { grid-area: 2 / 2 / 4 / 3; }
.preview_1 .img_3 { grid-area: 4 / 2 / 5 / 3; }
.preview_1 div.cta { 	grid-area: 5 / 1 / 6 / 3; }


.preview_2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(5, auto);
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

.preview_2 .head { 	grid-area: 1 / 1 / 2 / 3; }
.preview_2 .img_1 { grid-area: 2 / 1 / 4 / 2; }
.preview_2 .img_2 { grid-area: 4 / 1 / 5 / 2; }
.preview_2 .img_3 { grid-area: 2 / 2 / 5 / 3; }
.preview_2 div.cta { 	grid-area: 5 / 1 / 6 / 3; }


.preview_1 .head,
.preview_2 .head {
	height: 30px;
    text-transform: uppercase;
    font-size: 10px;
    text-align: center;
}

.preview_1 div.cta,
.preview_2 div.cta {
	text-align: center;
}



#location a.cta {
	margin: 30px 0 0 0;
}


.preview_1 .img_1,
.preview_2 .img_3 {
	height: 50vh;
}

#location .img_1,
#location .img_2,
#location .img_3 {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.preview_1 .img_1 {		background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/blanquerna/2024-04-12-Blanquerna-11.jpg);	}
.preview_1 .img_2 {		background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/blanquerna/2021-05-206AnaAdrianaPhotography-176.jpg);	}
.preview_1 .img_3 {		background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/blanquerna/2024-04-12-Blanquerna-51.jpg);	}
.preview_2 .img_1 {		background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/stock/AdobeStock_551693838.jpg);	}
.preview_2 .img_2 {		background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/stock/nusa-urbancek-N7xFORdWulw-unsplash.jpg);	}
.preview_2 .img_3 {		background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/stock/palma-de-mallorca-1797495.jpg);	}








.overlays {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}
.overlays.top {
	z-index: 50;
}
.overlay_1,
.overlay_2 {
	position: absolute;
	width: 100vw;
	height: 100vh;
}

.overlay_1 { background-color: var(--dark); }
.overlay_2 { background-color: var(--light); }


.overlay_1.out {	left: 50%;	width: 0vw;		}
.overlay_1.in {		left: 0%;	width: 100vw;	}

.overlay_2.out {	left: 50%;	width: 0vw;		}
.overlay_2.in {		left: 0%;	width: 100vw;	}








.overlay_1 .images_wrapper,
.overlay_2 .images_wrapper {
	height: 100vh;
	overflow-y: scroll;
}

.overlay_1 .images {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(8, 1fr);
	grid-column-gap: 10px;
	grid-row-gap: 10px;

    padding: 10vw;
	width: 100vw;
}

.standard .overlay_1 .images {
	 height: 280vh;
}



.standard .overlay_1 .images .img_1 { grid-area: 1 / 1 / 2 / 2; }  /* Q */
.standard .overlay_1 .images .img_2 { grid-area: 2 / 1 / 4 / 2; }  /* H */
.standard .overlay_1 .images .img_3 { grid-area: 4 / 1 / 5 / 2; }  /* Q */
.standard .overlay_1 .images .img_4 { grid-area: 5 / 1 / 7 / 2; }  /* H */
.standard .overlay_1 .images .img_5 { grid-area: 7 / 1 / 8 / 2; }  /* Q */
.standard .overlay_1 .images .img_6 { grid-area: 8 / 1 / 9 / 2; }  /* Q */
.standard .overlay_1 .images .img_7 { grid-area: 1 / 2 / 4 / 3; }  /* S+*/
.standard .overlay_1 .images .img_8 { grid-area: 4 / 2 / 6 / 3; }  /* H */
.standard .overlay_1 .images .img_9 { grid-area: 6 / 2 / 7 / 3; }  /* Q */
.standard .overlay_1 .images .img_10 { grid-area: 7 / 2 / 9 / 3; } /* H */

#location .images .img_1,
#location .images .img_2,
#location .images .img_3,
#location .images .img_4,
#location .images .img_5,
#location .images .img_6,
#location .images .img_7,
#location .images .img_8,
#location .images .img_9,
#location .images .img_10 {
	background-color: black;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.overlay_1 .images .img_1 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/blanquerna/2024-04-12-Blanquerna-52.jpg); }
.overlay_1 .images .img_2 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/blanquerna/2021-05-206AnaAdrianaPhotography-176.jpg); }
.overlay_1 .images .img_3 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/blanquerna/2023-02-15-Ana-Adriana-Photography-75.jpg); }
.overlay_1 .images .img_4 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/blanquerna/2024-04-12-Blanquerna-48.jpg); }
.overlay_1 .images .img_5 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/blanquerna/2024-04-12-Blanquerna-34.jpg); }
.overlay_1 .images .img_6 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/blanquerna/2023-02-15-Ana-Adriana-Photography-67.jpg); }
.overlay_1 .images .img_7 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/blanquerna/2024-04-12-Blanquerna-11.jpg); }
.overlay_1 .images .img_8 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/blanquerna/2024-04-12-Blanquerna-51.jpg); }
.overlay_1 .images .img_9 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/blanquerna/2024-04-12-Blanquerna-16.jpg); }
.overlay_1 .images .img_10 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/blanquerna/2024-04-12-Blanquerna-32.jpg); }


.overlay_1 .images .img_6 {		background-position: center 69%;		}


.mobile .overlay_1 .images {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 25vh 50vh 25vh 50vh 25vh 25vh 50vh 50vh 50vh 50vh; /* 400 */
	grid-column-gap: 0px;
	grid-row-gap: 10px;
}









.mobile .overlay_2 {
	transform: translate(0px, 100vh);
}

.overlay_2 .images {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(8, 1fr);
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	padding: 10vw;
}
.standard .overlay_2 .images {
	height: 280vh;
}

.standard .overlay_2 .images .img_1 { grid-area: 1 / 1 / 3 / 2; }
.standard .overlay_2 .images .img_2 { grid-area: 3 / 1 / 4 / 2; }
.standard .overlay_2 .images .img_3 { grid-area: 4 / 1 / 7 / 2; }
.standard .overlay_2 .images .img_4 { grid-area: 7 / 1 / 9 / 2; }
.standard .overlay_2 .images .img_5 { grid-area: 1 / 2 / 4 / 3; }
.standard .overlay_2 .images .img_6 { grid-area: 4 / 2 / 6 / 3; }
.standard .overlay_2 .images .img_7 { grid-area: 6 / 2 / 9 / 3; }

.overlay_2 .images .img_1 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/stock/AdobeStock_92520221.jpg); }
.overlay_2 .images .img_2 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/stock/AdobeStock_161897556.jpg); }
.overlay_2 .images .img_3 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/stock/nusa-urbancek-N7xFORdWulw-unsplash.jpg); }
.overlay_2 .images .img_4 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/stock/shutterstock_2259554195.jpg); }
.overlay_2 .images .img_5 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/stock/AdobeStock_551693838.jpg); }
.overlay_2 .images .img_6 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/stock/AdobeStock_516010790.jpg); }
.overlay_2 .images .img_7 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/stock/palma-de-mallorca-1797495.jpg); }






















a.close {
	position: absolute;
    top: 50px;
	right: 50px;
	height: 40px;
	width: 40px;
	background-size: contain;
	background-repeat: no-repeat;
}
.mobile a.close {
    top: 35px;
    right: 25px;
    height: 30px;
    width: 30px;
}

a.close.light {		background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/closed_light.svg);		}
a.close.dark {		background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/closed_dark.svg);		}






/*	##########################			LA GEODA			########################## */

#lageoda {
	height: 1800vh;
}

.mobile #lageoda {
    height: 1200vh;
}

#lageoda .slideshow_wrapper {
	position: sticky;
	top: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

.slides_wrapper {
	display: grid;

	width: 770vw;
	height: 100vh;

	padding: 0 15vw 0 15vw;

	grid-template-columns: 30vw 70vw 90vw 30vw 80vw 90vw 30vw 80vw 60vw repeat(2, 90vw);
	/* 740vw exkl. padding */
	grid-template-rows: repeat(2, 35vh);
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	align-items: center;
	align-content: center;

	transform: translateX(calc(100vw - 0%));
}
.mobile .slides_wrapper {
	width: 1750vw;
	height: 85vh;

	padding: 30px 25vw 0 25vw;
	grid-template-columns: 85vw 190vw 190vw 90vw 190vw 190vw 90vw 190vw 90vw repeat(2, 190vw);
	/* 1700vw exkl. padding */
	grid-template-rows: repeat(2, 30vh);
}


.div_1 { grid-area: 1 / 1 / 3 / 2; }
.div_2 { grid-area: 1 / 2 / 3 / 3; }
.div_3 { grid-area: 1 / 3 / 3 / 4; }
.div_4 { grid-area: 1 / 4 / 2 / 5; }
.div_5 { grid-area: 2 / 4 / 3 / 5; }
.div_6 { grid-area: 1 / 5 / 3 / 6; }
.div_7 { grid-area: 1 / 6 / 3 / 7; }
.div_8 { grid-area: 1 / 7 / 2 / 8; }
.div_9 { grid-area: 2 / 7 / 3 / 8; }
.div_10 { grid-area: 1 / 8 / 3 / 9; }
.div_11 { grid-area: 1 / 9 / 3 / 10; }
.div_12 { grid-area: 1 / 10 / 3 / 11; }
.div_13 { grid-area: 1 / 11 / 3 / 12; }


.div_1, .div_2, .div_3, .div_4, .div_5, .div_6, .div_7, .div_8, .div_9, .div_10, .div_11, .div_12, .div_13 {
	position: relative;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.div_1 { padding: 4vw; }
.div_2 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/object/02-PATIO.jpg); }
.div_3 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/object/03-LIVING-1.jpg); }
.div_4 { background-color: var(--light); }
.div_5 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/details/49_DSF0126.jpg); }
.div_6 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/object/04-BEDROOM-PATIO.jpg); }
.div_7 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/object/05-LIVING-2.jpg); }
.div_8 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/details/75_DSF6733.jpg); }
.div_9 { background-color: var(--light); }
.div_10 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/object/06-BEDROOM-STREET.jpg); }
.div_11 { background-color: var(--light); }
.div_12 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/object/08-CORRIDOR.jpg); }
.div_13 { background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/object/07-GYM.jpg); }

.slides_wrapper small.title {
	position: absolute;
	left: 0;
	bottom: -30px;
	text-transform: none;
}

.centered_text_content {
	display: flex;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.div_1 h2 {
	margin-top: 0;
}

.div_11 {
    display: flex;
	padding: 10vh 6vw;
    align-items: center;
}

.mobile .div_11 {
	padding: 3vh 10vw;
	font-size: 80%;
	line-height: 19px;
}
.mobile .div_11 h2 {
	margin: 0;
}


.extras {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, auto);
	grid-column-gap: 50px;
	grid-row-gap: 0px;
}
.mobile .extras {
	grid-column-gap: 20px;
}

.extras_div_1 { grid-area: 1 / 1 / 2 / 3; }
.extras_div_2 { grid-area: 2 / 1 / 3 / 2; }
.extras_div_3 { grid-area: 2 / 2 / 3 / 3; }

.slides_wrapper p a {
	display: inline-block;
	color: inherit;
}


.more_docs {
	position: sticky;
	top: 75%;
	left: 0;
	text-align: center;
	z-index: 6;
	opacity: 0;

	-webkit-transition: opacity 500ms ease-in-out 0ms;
	-moz-transition: opacity 500ms ease-in-out 0ms;
	transition: opacity 500ms ease-in-out 0ms;
}
.mobile .more_docs {
	top: 85%;
}
.more_docs.in {
	opacity: 1;
}












/*	##########################			NEARBY		########################## */

#nearby {
	position: relative;
	background-color: var(--dark);
}
.standard #nearby {
	height: 90vh;
}


.standard .legend {
	position: absolute;
    padding: 5vw;
    left: 5vw;
    bottom: 5vw;
    background-color: var(--light);
    z-index: 6;
}

.mobile .legend {
    color: var(--light);
	padding: 10vw;
}

.legend ul {
	list-style-type: none;
	margin: 0;
    padding: 0;
}
.legend ul li {
    margin: 0;
    padding: 0 0 13px;
}

.legend .number {
	display: inline-block;
    padding: 4px 0 0 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--light);
    background-color: var(--dark);
    text-align: center;
    font-size: 10px;
}
.mobile .legend .number {
	background-color: var(--light);
    color: var(--dark);
}

.legend .name {
	margin: 0 0 0 15px;
}








/* GOOGLE MAPS API */
#map {
	width: 100vw;
	height: 90vh;
}
.mobile #map {
	height: 50vh;
}

.infowindow-content {
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #333;
}
.custom-marker-label {
	display: block;
    width: 31px;
    height: 31px;
    background-color: var(--light);
    color: var(--dark);
    padding: 9px 0 0 0;
    text-align: center;
    border-radius: 50%;
}

.label_1 {
	transform: scale(2);
}







/*	##########################		APARTMENTS		########################## */

#apartments {
	background-color: var(--light);
}
.standard #options {
	height: 100vh;
}



/*

.parent {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 30px repeat(3, auto);
	grid-column-gap: 10px;
	grid-row-gap: 0px;
}




*/

.standard .examples {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 40px repeat(3, auto);
	grid-column-gap: 10px;
	grid-row-gap: 0px;
}
 .examples {
	max-width: 1500px;
	margin: 0 auto;
	padding: 10vw;
}

.examples .head { grid-area: 1 / 1 / 2 / 4; }
.examples .example_1 { grid-area: 2 / 1 / 3 / 2; }
.examples .example_2 { grid-area: 2 / 2 / 3 / 3; }
.examples .example_3 { grid-area: 2 / 3 / 3 / 4; }
.examples .poolarea { grid-area: 3 / 1 / 4 / 4; }
.examples .foot { grid-area: 4 / 1 / 5 / 4; }

.examples .head {
    text-transform: uppercase;
    font-size: 10px;
    text-align: center;
}


.examples .example_1,
.examples .example_2,
.examples .example_3 {
	position: relative;
}


.mobile .examples .example_1,
.mobile .examples .example_2,
.mobile .examples .example_3 {
	margin: 0 0 10px;
}

.example_1 .image,
.example_2 .image,
.example_3 .image {
	width: 100%;
	height: 220px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.example_1 .image {	background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/3-ROOM.jpg);	}
.example_2 .image {	background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/2-ROOM.jpg);	}
.example_3 .image {	background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/1-ROOM.jpg);	}



.poolarea {
    display: flex;
    margin: 50px 0 0 0;
}
.mobile .poolarea {
    margin: 10px 0 0 0;
}

.poolarea .image {
	height: 300px;
	background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/images/object/02-PATIO.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}


.poolarea .image {
	height: 100%;
}
.poolarea .image,
.poolarea .text {
	width: 50%;
}

.mobile .poolarea {
	flex-direction: column;
}
.mobile .poolarea .image,
.mobile .poolarea .text {
	width: 100%;
}
.mobile .poolarea .image {
	height: 220px;
}

.examples .text {
	padding: 10px 30px;
	background-color: #FFF;
}

.examples .text .title {
	font-size: 15px;
	background-color: #FFF;
}



.examples .foot {
	text-align: center;
}

.examples .foot .cta {
	margin: 100px 0 100px 0;
}


.examples .icon_pdf {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 25px;
    height: 25px;
    background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/icons/icons_pdf.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(0px, 6px);
}







/*	##########################			FOOTER		########################## */

#footer {
	display: flex;
	padding: 10vh 10vw;
	background-color: var(--dark);
	align-items: center;
	justify-content: center;
	color: var(--light);
	text-align: center;
	font-size: 11px;
}

#footer .footer_logo {
	display: inline-block;
    height: 82px;
    width: 60px;
    background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/logo_light.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
#footer h4 {
	font-size: 13px;
}

#footer a.social {
	display: inline-block;
	margin: 0 10px;

	width: 18px;
	height: 18px;

	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

#footer a.social.facebook	{	background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/icons/icons_facebook.svg);	}
#footer a.social.instagram	{	background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/icons/icons_instagram.svg);	}
#footer a.social.youtube	{	background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/icons/icons_youtube.svg);	}
#footer a.social.linkedin	{	background-image: url(https://www.perlentaucher.es/wp-content/themes/fabrique-child/microsites/la-geoda/sources/icons/icons_linkedin.svg);	}





