/********************************************************************************/
/* CUSTOM / PAGE SPECIFIC
/********************************************************************************/



/****************************************/
/* INTRO
/****************************************/


/* Intro BG */
#intro .section-bg:after {
	opacity: 0;
	-webkit-transition: opacity 1s ease 0.6s;
			transition: opacity 1s ease 0.6s;
}
#intro.active-section .section-bg:after {
	opacity: 1;
}
#intro-down-btn {
}
#intro-down-btn:hover {
	color: #e5ac79;
}
/***/



/* Intro main content */
#intro .section-main {
	padding: 0 5% 5%;
	justify-content: center;
}
#intro .section-content.animate {
	opacity: 0;
	-webkit-transform: scale(1.1);
			transform: scale(1.1);
	-webkit-transition: all 1s ease 1s;
			transition: all 1s ease 1s;
	will-change: transform, opacity;
}
#intro .section-content.animated {
	opacity: 1;
	-webkit-transform: none;
			transform: none;
}
/***/



/* Intro down btn */
#intro-down-btn {
	position: absolute;
	z-index: 9;
	bottom: 10%;
	left: 50%;
	width: 120px;
	margin-left: -60px;
	text-align: center;
}
#intro-down-btn.animate {
	opacity: 0;
	-webkit-transform: scale(0.9);
			transform: scale(0.9);
	-webkit-transition: all 1s cubic-bezier(0.76, 0, 0.24, 1) 2s, color 0.2s ease;
			transition: all 1s cubic-bezier(0.76, 0, 0.24, 1) 2s, color 0.2s ease;
}
#intro-down-btn.animated {
	opacity: 1;
	-webkit-transform: none;
			transform: none;
}





/****************************************/
/* ABOUT
/****************************************/
#about {
}





/****************************************/
/* COMMUNITY
/****************************************/
#community {
}





/****************************************/
/* LOCATION
/****************************************/

#location {
}
.map-preview {
	padding-top: 100%;
}

.open-map {
	margin-right: -0.075em;
	padding: 0.25em 0;
}
.open-map img {
	vertical-align: middle;
	width: 1em;
	margin-right: 0.5em;
}
@media (min-width : 1200px) {
}

@media (min-width : 1600px) {
	#location .floating-main.closed .section-toggle-btn {
		right: -90px;
	}
}





/****************************************/
/* GALLERY
/****************************************/

.gallery-main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100vh;
}
.gallery-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	position: relative;
	height: 50%;
	padding: 50px;
	text-align: center;
	font-size: 1.4em;
	font-weight: 100;
}
.gallery-container.animate {
	-webkit-transition: all 1s cubic-bezier(0.65, 0, 0.35, 1);
			transition: all 1s cubic-bezier(0.65, 0, 0.35, 1);	
}
.interior-gallery-box.animate {
	-webkit-transform: translateX(101%);
			transform: translateX(101%);
}
.exterior-gallery-box.animate {
	-webkit-transform: translateX(-101%);
			transform: translateX(-101%);
}
.interior-gallery-box.animated, 
.exterior-gallery-box.animated {
	-webkit-transform: none;
			transform: none;	
}
.gallery-container:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}
.gallery-container.animate:before {
	opacity: 0;
	-webkit-transition: opacity 0.8s ease 0.8s, background-color 0.4s ease;
			transition: opacity 0.8s ease 0.8s, background-color 0.4s ease;
}
.gallery-container.animated:before {
	opacity: 1;
}
.interior-gallery-box {
	color: #e4ccb1;
}
.exterior-gallery-box {
	color: #1d1e3e;
}
.interior-gallery-box:before {
	background-color: rgba(29,30,82,0.8);
}
.exterior-gallery-box:before {
	background-color: rgba(228,204,177,0.8);
}
.gallery-container > a {
	display: block;
	position: relative;
	width: 240px;
	padding: 20px;
	color: inherit;
}
.gallery-container > a:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	border: 2px solid;
	will-change: opacity, transform;
}
.gallery-container > a.animate:before {
	opacity: 0;
	-webkit-transform: scale(0.75);
			transform: scale(0.75);
	-webkit-transition: all 0.4s ease 0s;
			transition: all 0.4s ease 0s;	
}
.gallery-container > a.animated:before {
	opacity: 1;
	-webkit-transform: none;
			transform: none;
}
.gallery-container > a:hover:before {
	-webkit-transition: all 0.4s ease 0s;
			transition: all 0.4s ease 0s;	
	-webkit-transform: scale(1.0667);
			transform: scale(1.0667);
}
.gallery-container > a > span {
	position: relative;
	display: inline-block;
	will-change: transform;
	-webkit-transition: -webkit-transform 0.2s ease;
			transition: 		transform 0.2s ease;	
}
.gallery-container > a.animate > span {
	opacity: 0;
	letter-spacing: 4px;
	will-change: letter-spacing;
	-webkit-transition: all 0.4s ease 0.2s;
			transition: all 0.4s ease 0.2s;	
}
.gallery-container > a.animated > span {
	opacity: 1;
	letter-spacing: 0;	
}

@media (min-width : 1200px) {
	.gallery-main {
		flex-direction: row;
	}
	.gallery-container {
		width: 50%;
		height: 100%;
		font-size: 2em;
	}
	.gallery-container > a {
		width: 420px;
		padding: 40px;
	}
}

@media (min-width : 1600px) {
}





/****************************************/
/* DEVELOPER
/****************************************/
#entrepreneurs {
}

#entrepreneurs .tabs-menu {
}
#entrepreneurs .tabs-menuitem {
    border: 2px solid;
    border-radius: 0.5em;
    padding: 0.25em 1em;
}
#entrepreneurs .tabs-menuitem.on {
    background-color: currentColor;
}
#entrepreneurs .tabs-menuitem > a {
}
#entrepreneurs .tabs-menuitem.on > a {
    color: #fff;
}
#entrepreneurs .tabs-menuitem {
    -webkit-transition: color 0.4s ease;
			transition: color 0.4s ease;
}


@media (min-width : 1200px) {
	#entrepreneurs .section-bg {
		width: 50%;
	}
}





/****************************************/
/* CONTACT
/****************************************/

#contact {
}

#main-form-container {
	width: 100%;
	max-width: 480px;
}
#main-form-container form {
	font-size: 1em;
	color: #1d1e3e;
}
#main-form-container .form-field.animate {
	opacity: 0;
	-webkit-transform: translateX(-2em);
			transform: translateX(-2em);
	-webkit-transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
			transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);	
}
#main-form-container .form-field.animated {
	opacity: 1;
	-webkit-transform: none;
			transform: none;
}

#contact .section-bg {
    display: flex;
    flex-direction: column;
    color: #fff;
    text-align: center;
}

#contact .section-bg:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(29,30,62,0.8);
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}
#contact .section-bg.animate:before {
	opacity: 0;
	-webkit-transition: all 0.8s ease;
			transition: all 0.8s ease;
}
#contact .section-bg.animated:before {
	opacity: 1;
}


#contact-logo {
    position: relative;
    margin: auto 0;
    padding: 30px;
}
#contact-logo > img {
    max-width: 50%;
    height: auto !important;
	margin: 20% auto 10% auto;
}
#contact .section-bg.animate #contact-logo > img {
	opacity: 0;
	-webkit-transform: scale(0.75);
			transform: scale(0.75);
	-webkit-transition: all 1s ease 0.2s;
			transition: all 1s ease 0.2s;	
}
#contact .section-bg.animated #contact-logo > img {
	opacity: 1;
	-webkit-transform: none;
			transform: none;
}

#contact-logo > p {
}
#contact .section-bg.animate #contact-logo > p {
	opacity: 0;
	-webkit-transform: scale(0.75);
			transform: scale(0.75);
	-webkit-transition: all 1s ease 0.6s;
			transition: all 1s ease 0.6s;	
}
#contact .section-bg.animated #contact-logo > p {
	opacity: 1;
	-webkit-transform: none;
			transform: none;
}

#contact .phone-btn {
    color: inherit;
	font-size: 2em;
	font-family: Bebas, Helvetica, sans-serif;
}
#contact .phone-btn:hover {
    color: #10a7c8;
}


#disclaimer {
    position: relative;
    padding: 0 50px 50px;
}
#contact .section-bg.animate #disclaimer {
	opacity: 0;
	-webkit-transform: translateY(2em);
			transform: translateY(2em);
	-webkit-transition: all 1s ease 1s;
			transition: all 1s ease 1s;	
}
#contact .section-bg.animated #disclaimer {
	opacity: 1;
	-webkit-transform: none;
			transform: none;
}

@media (max-width : 1200px) {
    #contact .section-bg {
		position: relative;
	}
}

@media (min-width : 1200px) {
	#contact .section-bg {
		width: 50%;
	}
	
	#disclaimer {
        position: relative;
        padding: 0 100px 50px;
    }
	
	#main-form-container {
		margin-right: 0;
	}
	.submit-field {
		float: left;
		margin-bottom: 0;
	}
	
	.subscribe-field {
		width: 60%;
	}
}

@media (min-width : 1600px) {
	#contact-details {
		margin: 75px -80px;
	}
	#contact-logo {
		padding: 25px 80px;
	}
	#contact-text {
		padding: 25px 80px;
	}
}

/********************************************************************************/

