/*
Theme Name: Deco Recoleta
Theme URI: https://mati.agency
Version: 1.0
Author: @matiagency
Author URI: https://mati.agency
*/

html{
	scroll-behavior: smooth;
}

body {
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	font-family:  'Gotham', sans-serif;
	background: #0A0A0A;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

.wow {
	visibility: hidden;
}

.overh {
	overflow: hidden;
}

*:focus {
	outline: none !important;
}

a,
a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
	transition: 0.3s all;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.2em;
}

h1 { font-size: 30px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

@media screen and (min-width: 992px) {

	h1 { font-size: 34px; }
	h2 { font-size: 30px; }
	h3 { font-size: 26px; }
	h4 { font-size: 22px; }
	h5 { font-size: 20px; }
	h6 { font-size: 18px; }
}

b, strong {
    font-weight: 600;
}

/* Framework */

.main {
	width: 100%;
	min-height: 80vh;
	background: #fff;
	overflow: hidden;
}

.container{
	width: 100%;
	max-width: 100%;
}
@media screen and (min-width: 992px) {
	.container{
		max-width: 100%;
		padding: 0 70px;
	}
}

/* Extras */

.grecaptcha-badge{
	opacity:0;
}

/* Columns */

@media screen and (min-width: 992px){
	.col-lg-5-2{
		-ms-flex: 0 0 20%;
	    flex: 0 0 20%;
	    max-width: 20%;
	}
}

/* Keyframes */

@keyframes bounce {
	0% {
		transform: translate(-50%, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(-50%, 0);
	}
	50% {
		transform: translate(-50%, -100%);
		-webkit-transform: translate(0, -100%);
		-moz-transform: translateY(-50%, -100%);
	}
	100% {
		transform: translate(-50%, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(-50%, 0);
	}          
}

/* Colors */

.text-primary{
	color: #0A0A0A !important;
}
.text-secondary{
	color: #ED6926 !important;
}

.text-light {
	color: #FAFAFA !important;
}

.bg-primary{
	background: #0A0A0A !important;
}
.bg-secondary{
	background: #ED6926 !important;
}

.bg-light {
	background-color: #FAFAFA !important;
}
.bg-gray{
	background: #f8f8f8;
}

/* Buttons */

.btn{
	min-width: 120px;
	padding: 0 20px;
	font-size: 16px;
	line-height: 32px;
    border-width: 2px;
	border-radius: 50px;
}

.btn-loading:before{
	content: '';
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

.btn.focus,
.btn:focus,
.btn:not(:disabled):not(.disabled).active:focus,
.btn:not(:disabled):not(.disabled):active:focus{
	box-shadow: none !important;
}

@media screen and (min-width: 992px){
	.btn-sm{
		line-height: 28px;
	}
	.btn-lg{
		line-height: 52px;
	}
}

.btn-primary{
	color: #FAFAFA;
    background: #0A0A0A;
    border-color: #0A0A0A;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not([disabled]):not(.disabled):active {
	color: #0A0A0A;
	background: transparent;
	border-color: #0A0A0A;
}

.btn-outline-primary{
    color: #0A0A0A;
    border-color: #0A0A0A;
    background: transparent;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:not([disabled]):not(.disabled):active{
	color:  #FAFAFA;
	background: #0A0A0A;
	border-color: #0A0A0A;
}

.btn-light {
	background: #fff;
    color: #0A0A0A;
    border-color: #fff;
}
.btn-light:hover,
.btn-light:focus,
.btn-light:not([disabled]):not(.disabled):active {
	color: #fff;
	background: #0A0A0A;
	border-color: #fff;
}

.btn-outline-light{
    color: #FAFAFA;
    border-color: #FAFAFA;
    background: transparent;
}
.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:not([disabled]):not(.disabled):active{
	color:  #0A0A0A;
	background: #FAFAFA;
	border-color: #FAFAFA;
}

/* Form */

label{
	font-size: 16px;
}
.form-control{
	min-height: 48px;
	background: transparent;
	color: #0A0A0A;
	border-radius: 0;
	font-size: 16px;
	border: solid 1px #0A0A0A;
	appearance: none;
	-webkit-appearance: none;
	transition: 0.3s all;
}
.form-control::placeholder{
 	color: #0A0A0A;
 	font-size: 16px;
}
.form-control:disabled,
.form-control[readonly]{
    background: transparent;
}
.form-control:focus{
	color: #121212;
    box-shadow: none !important;
    border-color: #0A0A0A;
    background: rgba(0, 0, 0, 0.02);
}
.form-control:focus::placeholder{
	color: #0A0A0A;
}

textarea.form-control{
	border-radius: 0;
}
select.form-control{
    background: rgba(0, 69, 147, 0.05) url('assets/img/icons/icon-arrow-select.svg') no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 24px;
    padding-right: 25px;
    background-color: transparent;
}
select.form-control:focus{
	color: #0A0A0A;
	/*background-color:#F7E9DF ;*/
	background: transparent url('assets/img/icons/icon-arrow-select.svg') no-repeat;
	background-position: calc(100% - 10px) center;
    background-size: 24px;
    padding-right: 25px;
}

.form-control-light{
    border-color: #FAFAFA !important;
    color: #FAFAFA !important;
}
.form-control-light::placeholder{
	color: #FAFAFA !important;
}
.form-control-light:focus{
	color: #FAFAFA !important;
    border-color: #FAFAFA !important;
}
.form-control-light:focus::placeholder{
	color: #FAFAFA !important;
}
select.form-control-light:focus{
	color: #FAFAFA !important;
	background: #0a0a0a !important;
}

@media screen and (min-width: 992px){
	.form-control{
		font-size: 16px;
	}
	.form-control-sm{
		min-height: 36px;
	}
	.form-control-lg{
		min-height: 56px;
	}
}

/* Input Checkbox */

input[type="checkbox"],
input[type="radio"]{
	display: inline-block;
	vertical-align: middle;
	width: 17px;
	height: 17px;
	margin-right: 6px;
	border: 1px solid #151515;
	box-shadow: 0 0 0px 4px #fff inset;
	border-radius: 50%;
	appearance: none;
	-webkit-appearance: none;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked{
	background: #151515;
}
input[type="checkbox"] ~ span,
input[type="radio"] ~ span{
	display: inline-block;
	vertical-align: middle;
}
input[type="checkbox"] ~ label,
input[type="radio"] ~ label{
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 30px);
	margin: 0;
}

/* Input File */

.input-file-wrapper{
	position: relative;
	display: block;
	padding: 8px 16px;
	text-align: center;
	background: #f5f5f5;
	border-radius: 0;
	cursor: pointer;
}
.input-file-wrapper input{
	opacity: 0;
	width: 0;
}
.input-file-wrapper .files{
	font-size: 10px;
	max-height: 100px;
	overflow: auto;
}
.input-file-wrapper .files span{
	display: block;
	color: #0A0A0A;
}
.input-file-wrapper:hover{
	background: #0A0A0A;
	color: #fff;
}

/* Header */
/*
.header{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 60px;
	background: transparent;
	transition: 0.3s all;
	z-index: 999;
	
	
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}
.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
	max-width: 108px;
	margin: 10px 0;
}


body.fixed{
	padding-top: 120px;
}
.header.fixed{
	position: fixed;
	background: rgba(255,255,255, 1);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	z-index: 9998;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}
*/
/* Header > Navigation */
/*
.header .nav-menu {
	position: relative;
	float: right;
	width: 35px;
	padding: 15px 0;
	cursor: pointer;
	z-index: 21;
	overflow: hidden;
}
.header .nav-menu .menu-line {
	float: right;
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: #0A0A0A;
	transition: 0.3s;
	border-radius: 6px;
}
.header .nav-menu.active .menu-line:nth-child(1) { transform: rotate(45deg); width: 40px; margin-top: 14px; }
.header .nav-menu.active .menu-line:nth-child(3) { transform: rotate(-45deg); width: 40px; margin-top: -16px; }
.header .nav-menu.active .menu-line:nth-child(2) { opacity: 0; }

.header .navigation {
	display: none;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	margin: 0;
	text-align: center;
	background: #fff;
}
.header .navigation.active {
	display: block;
}
.header .navigation .menu {
	position: relative;
}
.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 10px 12px;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
}
.header .navigation .menu li.current-menu-item a,
.header .navigation .menu li a:hover{

}

.header .socialmedia li {
    display: inline-flex;
    vertical-align: middle;
    position: relative;
    margin-right: 8px;
}
.header .socialmedia li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-left: 10px;
}

.header .socialmedia li a:hover{
	color: #ED6926;
}


.header .navigation .menu li .sub-menu{
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
}
.header .navigation .menu li.open-submenu > ul{
	display: block;
}

.header .navigation .language li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 -2px;
}
.header .navigation .language li a{
	text-transform: uppercase;
	padding-left: 10px;
	padding-right: 10px;
}
.header .navigation .language li a:after{
	content: '';
	position: absolute;
	top: 40%;
	right: 0;
	width: 1px;
	height: 20%;
	background: #555;
}
.header .navigation .language li:last-child a:after{
	content: none;
}
.header .navigation .language li.current-lang a{
	text-decoration: underline;
}


.header .navigation ul li.menu-contact a{
    min-width: 105px;
    padding: 0;
    text-align: center;
    line-height: 38px;
    background: #FAFAFA;
    border: 1px solid #FAFAFA;
    color: #fff;
    border-radius: 100px;
}
.header .navigation ul li.menu-contact a:hover{
    background: #fff;
    text-decoration: none;
    color: #FAFAFA;
}

@media screen and (min-width: 1200px) {

	.header {
		min-height: 72px;
	}
	.header .logo {
		margin: 20px 0;
	}

	.header .nav-menu {
		display: none;
	}

	.header .navigation{
		display: flex;
		align-items: center;
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		background: transparent;
	}
	.header .navigation ul,
	.header .navigation ul li {
		position: relative;
		display: inline-block;
		vertical-align: middle;
	}
	.header .navigation ul{
		margin: 0;
	}
	.header .navigation .menu > li a {
		padding: 10px 14px;
		font-size: 16px;
		position: relative;
	}

	.header .navigation .menu {
		margin-right: 16px;
	}
	.header .navigation .menu li a {
		text-align: left;
	}

	.header .navigation .menu li:not(.menu-contact) a:before{
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 0;
		height: 1px;
		background: #fff;
		transition: 0.3s all;
	}
	.header .navigation .menu li:not(.menu-contact).active a:before,
    .header .navigation .menu li:not(.menu-contact).current-menu-item a:before,
    .header .navigation .menu li:not(.menu-contact) a:hover:before{
		left: 10%;
		width: 80%;
	}

	.header .navigation .menu li .sub-menu{
		display: none;
		position: absolute;
		top: 90px;
		left: 0;
		width: 150px;
		background: #fff;
		box-shadow: 0 5px 5px 0 rgba(0,0,0,0.1);
	}
	.header .navigation ul li:hover > .sub-menu{
		display: block;
	}
	.header .navigation .menu li .sub-menu li{
		display: block;
		margin: 0;
	}
	.header .navigation .menu li .sub-menu li a{
		display: block;
		padding: 10px 15px;
		font-size: 15px;
		color: #555;
		border-bottom: 1px solid #eee;
	}
	.header .navigation .menu li .sub-menu li:last-child a{
		border-bottom: 0;
	}
	.header .navigation .menu li .sub-menu li.current-menu-item > a,
	.header .navigation .menu li .sub-menu li a:hover{
		background: #ED6926;
		color: #fff;
		border-bottom-color: #ED6926; 
	}

	.header .navigation .menu li .sub-menu li ul{
		top: 0;
		left: 150px;
		width: 200px;
	}
	.header .navigation .menu li .sub-menu li ul ul{
		left: 200px;
	}

	.header.fixed{
		min-height: 65px;
	}
	.header.fixed .logo{
		margin: 16px 0;
	}
	.header.fixed .navigation .menu li .sub-menu{
		top: 70px;
	}
	.header .navigation ul li.menu-contact a {
		margin-left: 5px;
	}
}

@media screen and (max-width: 1199px){
	.header .navigation{
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	}
	.header .navigation .menu li.active a,
	.header .navigation .menu li a:hover{
		background: #0A0A0A;
		color: #fff;
	}

	.header .navigation ul li.open-submenu > ul{
		background: rgba(0,0,0,0.05);
	}
	.header .navigation ul li ul li a{
		padding-top: 6px;
		padding-bottom: 6px;
		font-size: 16px;
	}
}
*/



/* Header Fixed */

.header.fixed{
	position: fixed;
	-webkit-animation: fadeInDown 0.5s ease-out;
	-moz-animation: fadeInDown 0.5s ease-out;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
}


body:not(.home).fixed{
	padding-top: 60px;
}

@media screen and (min-width: 992px){
	body:not(.home).fixed{
		padding-top: 100px;
	}
}

/* Header */

.header {
	display: flex;
	align-items: center;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	/*padding: 5.5px 0;*/
	min-height: 60px;
	/*background: #fff;*/
	background: #0a0a0a;
	transition: 0.3s all;
	z-index: 999;
}

.header .container,
.header .container-fluid{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
.header .container-fluid{
	padding-left: 20px;
	padding-right: 20px;
}

.header .logo{
	display: block;
/*	max-width: 108px;*/
	max-width: 78px
	padding: 0;
	transition: 0s all;
}

.header .navigation ul .menu-armani a {
	color: #fff;
	height: 80px;
}
.header .navigation ul .menu-armani a:before {
	position: absolute;
	content: '';
	top: 20px;
	left: calc(50% - 76px);
	width: 152px;
	height: 30px;
	background: url('assets/img/armani-casa.png') no-repeat center;
	background-size: 152px;
}

.header .logo-armani {
	display: none;
	max-width: 152px;
}

.header .nav-menu {
	position: absolute;
	top: 33px;
	right: 15px;
	width: 35px;
	margin: 0;
	z-index: 21;
	cursor: pointer;
	overflow: hidden;
}
.header .nav-menu .menu-line{
	float: right;
	display: block;
	width: 100%;
	height: 2px;
	margin: 3px 0;
	/*background: #0A0A0A;*/
	background: #fff;
	transition: 0.3s;
	border-radius: 0;
}

.header .nav-menu .menu-line:nth-child(2) {
	width: 80%;
}
.header .nav-menu.active .menu-line:nth-child(1) { transform: rotate(45deg); width: 40px; margin-top: 14px; }
.header .nav-menu.active .menu-line:nth-child(3) { transform: rotate(-45deg); width: 40px; margin-top: -16px; }
.header .nav-menu.active .menu-line:nth-child(2) { opacity: 0; }

.header .navigation{
	display: none;
	position: absolute;
	top: 90px;
	left: 0;
	width: 100%;
	/*
	height: calc(100vh - 60px);
	height: calc(var(--vh, 1vh) * 100 - 60px);
	*/
	height: calc(100dvh - 90px);
	margin: 0;
	/*background: #fff;*/
	background: #0a0a0a;
	text-align: center;
}
.header .navigation.active{
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
}
.header .navigation ul {
	position: relative;
	margin: 0;

}
.header .navigation ul li a{
	display: block;
	position: relative;
	padding: 10px;
	/*color: #0A0A0A;*/
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.4px;
}
.header .navigation ul li a:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 1px;
	/*background: #0A0A0A;*/
	background: #fff;
	transition: 0.3s all;
}
.header .navigation ul li.current-menu-item a:after,
.header .navigation ul li a:hover:after{
	left: 0;
	width: 100%;
}

.header.fixed:not(.active){
	/*background: #fff;*/
	background: #0a0a0a;
}


.header .navigation ul li.menu-contact a{
    padding: 0 20px;
    text-align: center;
    line-height: 38px;
    background: #FAFAFA;
    color: #0a0a0a;
    border-radius: 100px;
}

.header .navigation ul li.menu-contact a:after{
    display: none;
}

.header .navigation ul li.menu-contact a:hover{
    background: #0a0a0a;
    text-decoration: none;
    color: #FAFAFA;
}

/*
.header.fixed .navigation ul li.menu-contact a{
    background: #0a0a0a;
    color: #FAFAFA;
}
.header.fixed .navigation ul li.menu-contact a:hover{
    background: #FAFAFA;
    color: #0a0a0a;
}
*/
/* Header > Home */

.home .header:not(.fixed){
	position: absolute;
}
.home .header:not(.fixed):not(.active){
	background: transparent;
	background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(255,255,255,0) 100%);
}
/*
.home .header:not(.fixed):not(.active) .logo,
.home .header:not(.fixed):not(.active) .logo-armani {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
*/
.home .header:not(.fixed):not(.active) .nav-menu .menu-line{
	background: #fff;
}

/*
.home .header.fixed:not(.active) .logo,
.home .header.fixed:not(.active) .logo-armani {
    filter: brightness(1) invert(1);
    -webkit-filter: brightness(1) invert(1);
}
*/

@media screen and (min-width: 1200px){

	.header:not(.fixed){
		min-height: 100px;
	}

	.home .header:not(.fixed) .navigation .menu li:not(.menu-contact) a{
	    color: #fff;
	}

	.home .header:not(.fixed) .navigation .menu li a:after{
		background: #fff;
	}

	.header {
		background: transparent;
	}

	.header .logo-armani {
		display: block;
	}
	.header .logo{
		display: block;
		max-width: 108px
	}
	.header .nav-menu {
		display: none;
	}
	.header .navigation{
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		height: auto;
		background: transparent;
	}
	.header .navigation ul,
	.header .navigation ul li {
		display: inline-block;
		vertical-align: middle;
	}
	.header .navigation ul{
		margin: 0;
		width: 55%;
		display: flex;
		justify-content: space-between;
	}
	.header .navigation ul li a{
		padding: 0 10px;
		line-height: 36px;
		height: 36px;
		font-size: 16px;
		font-weight: 400;
		/*color: #0A0A0A;*/
		color: #fff
	}
	
	.header .navigation ul li a:after {
		background: #fff;
	}
	
	.header .navigation ul .menu-armani a {
		display: none;
	}

}
@media screen and (max-width: 1200px){
	.header .logo img{
		opacity: 0;
	}
	.header .logo{
		height: 75px;
		background: url('assets/img/logo.png') no-repeat center;
		background-size: auto 100%;
	}
	/*
	.header.fixed .logo{
		filter: invert(1) brightness(1);
		-webkit-filter: brightness(1) invert(1);
	}
	*/
}

/* Modules */

/* Modules > Title */

.title{
	position: relative;
	margin-bottom: 30px;
}
.title h1{
	font-size: 30px;
}

.title h3{
	font-size: 28px;
	font-family: "Didot LT Std";
	font-style: normal;
	font-weight: 400;
	line-height: 110%;
}
.title h4{
	font-size: 22px;
}
.title b{
	font-weight: 600;
}
.title span{
	color: #0A0A0A;
}
.title p:not(.subtitle){
	margin: 0;
	margin-top: 16px;
	font-size: 16px;
}
.title .icon{
	margin-bottom: 15px;
}
.title .subtitle{
	margin-bottom: 15px;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 1px;
}
.title .btn{
	margin-top: 50px;
}
.title.lined{
	padding-bottom: 15px;
	border-bottom: 1px solid #0A0A0A;
}
.title.max-width{
	max-width: 600px;
}
.title.max-width-lg{
	max-width: 992px;
}

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title h1{
		font-size: 45px;
	}
	.title h3{
		font-size: 42px;
	}
	.title h4{
		font-size: 30px;
	}
	.title p:not(.subtitle){
		margin-top: 28px;
	}
	.title .icon{
		margin-bottom: 30px;
	}
}

/*
@media screen and (max-width: 991px){
	.title br{
		display: none;
	}
}

*/

/* Data Title */

.data.d-flex {
	justify-content: space-between;
}
.data.d-flex .title {
	max-width: 650px;
}
@media screen and (max-width: 991px){
	.data.d-flex {
		flex-direction: column-reverse;
	}
	.data.d-flex .title {
		max-width: 100%;
	}

	.data.d-flex .icon {
		max-width: 55%;
		margin-bottom: 20px;
	}
}

/* Modules > Banner */

.banner{
	position: relative;
	display: flex;
	align-items: center;
	padding: 50px 0;
	min-height: 350px;
	background: #eee no-repeat center;
	background-size: cover;
	overflow: hidden;
}
.banner .title{
	margin: 0;
}
.banner .title h1{
	color: #0A0A0A;
}

.banner .arrow-down{
    display: block;
    position: absolute;
    left: calc(50% - 10px);
    bottom: 5%;
    width: 45px;
    height: 25px;
    background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
    background-size: contain;
    animation: bounce 3s infinite;
    -webkit-animation: bounce 3s infinite;
}

@media screen and (min-width: 992px){
	.banner{
		min-height: 450px;
	}
}

/* Framework */

.section{
	position: relative;
	padding: 50px 0;
	scroll-margin-top: 50px;
}

.pb-5 {
	padding-bottom: 30px !important;
}

.scroll {
	scroll-margin-top: 70px;
}

@media screen and (min-width: 992px){
	.section{
		padding: 80px 0;
		scroll-margin-top: 80px;
	}

	.pb-5 {
		padding-bottom: 80px !important;
	}

	.scroll {
		scroll-margin-top: 120px;
	}
}

/* Module > Presentation */
.presentation{
	position: relative;
}

.presentation .slider .slide{
	display: block;
	padding: 25px 0;
	height: 100dvh;
	background:  #000 no-repeat bottom;
	background-size: cover;
	align-items: center;
}
.presentation .slider .slides .slick-slide{
	height: 100dvh;
}


.presentation .title {
	color: #fff;
	max-width: 550px;
	padding: 0 30px;
}

.presentation .arrow-down{
	display: block;
	position: absolute;
	left: calc(50% - 15px);
	bottom: 25px;
	width: 30px;
	height: 15px;
	background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
	background-size: contain;
	z-index: 3;
	animation: bounce 3s infinite;
	-webkit-animation: bounce 3s infinite;
}

@media screen and (min-width: 992px) {
	.presentation .slider .slide{
		height: 100vh;
/*		max-height: 1080px;*/
		padding: 50px 0;
	}
	.presentation .slider .slides .slick-slide{
		height: 100vh;
	}

	.presentation .title {
		padding: 0;
	}

    .presentation .title h1{
        font-size: 60px;
        line-height: 60px;
    }

    .presentation .title p {
    	font-size: 21px;
		line-height: 27px;
    }
	.presentation .arrow-down{
		bottom: 50px;
	}
}

/* Module > Video Player */

.video-player{
	position: relative;
	width: 100%;
	padding: 30% 0;
	background: #f1f1f1 no-repeat center;
	background-size: cover;
}
.video-player .play{
	display: none;
	position: absolute;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	width: 60px;
	height: 60px;
	font-size: 24px;
	line-height: 60px;
	text-align: center;
	background: #fff;
	color: #0A0A0A;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
}
.video-player.active .play,
.video-player:hover .play{
	background: #fff;
	color: #0A0A0A;
}
.video-player .play:hover{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.video-player .play i{
	margin-left: 4px;
	line-height: 60px;
}

.video-player.allowed{
	cursor: pointer;
}
.video-player.allowed .play{
	display: block;
}
/*@media screen and (min-width: 1200px){

	.video-player .play{
		top: calc(50% - 28px);
		left: calc(50% - 28px);
		width: 56px;
		height: 56px;
		font-size: 24px;
		line-height: 58px;
	}
	.video-player .play i{
		margin-left: 5px;
		line-height: 56px;
	}
}*/



/* Map */
#map {
	width: 100%;
	height: 400px;
}

@media screen and (min-width: 992px){
	#map {
		height: 800px;
	}
}

/* Pages */

/* Page > Home */

.page.home .about {
/*
	height: 100vh;
	min-height: 600px;
	*/
	background:  #0A0A0A no-repeat bottom;
	background-size: cover;
	display: flex;
	align-items: center;
}

@media screen and (min-width: 992px){
	.page.home .about .title {
		margin: 100px auto 180px;
	}
}

.page.home .about .title h1 {
	font-size: 16px;
	font-weight: 400;
}
.page.home .about .items .item .circle{
	aspect-ratio: 1 / 1;
	max-width: 136px;
	max-height: 136px;
	border: solid 1px #FAFAFA;
	border-radius: 50%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
}
.page.home .about .items .item .circle h2 {
	font-size: 15px;
	margin-bottom: 0;
}

.page.home .about .title .heading {
	margin: 60px 0;
}

.page.home .about .title.second-title {
	margin: 80px 0;
}

.page.home .about .title.second-title .logo {
	margin-bottom: 60px;
}

@media screen and (max-width: 991px){
	.page.home .about .title.second-title .logo img {
		max-width: 230px;
	}
}

.page.home .about .title h3{
	font-size: 18px;
	color: #FAFAFA;
	font-family: "Didot LT Std Italic";
	line-height: 100%;
}
.page.home .about .title h2{
	font-size: 22px;
	color: #FAFAFA;
	text-align: center;
	font-family: "Didot LT Std";
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
}

@media screen and (min-width: 992px){
	.page.home .about .title h2{
		font-size: 48px;
	}
	.page.home .about .title h3{
		font-size: 48px;
	}
}

.page.home .about .slick-track {
    display: flex;
}

@media screen and (min-width: 992px){
	.page.home .about .slick-track{
		align-items: center;
	}
}

.page.home .about .slick-track .slick-slide {
	margin: 0 15px;
}
/*
@media screen and (max-width: 991px){
	.page.home .about .slick-track .slick-slide {
		height: 270px;
	}

	.page.home .about .slick-track .slick-slide div {
		height: 100%;
	}

	.page.home .about .slick-track .slick-slide div img {
		height: 100%;
		max-width: none;
		margin: 0 auto;
	}
}
*/
.page.home .project .title {
	max-width: 625px;
}

.page.home .amenities .title h3 span {
	font-family: "Didot LT Std Italic";
}

.page.home .amenities .description h2 {
	font-size: 21px;
	font-weight: 400;
	max-width: 970px;
	font-family: "Didot LT Std";
	line-height: 110%;
}
@media screen and (min-width: 992px){
	.page.home .amenities .description h2 {
		font-size: 42px;
	}
	.page.home .amenities .data.d-flex .title {
		max-width: 550px;
	}
}

.page.home .horizontal-slider .slides .slide {
	padding: 10px;
}
.page.home .horizontal-slider .slides .slide img{
	aspect-ratio: 1.22 / 1;
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-width: 416px;
}

.page.home .horizontal-slider .address {
	font-size: 18px;
}
.page.home .horizontal-slider .address b{
	font-family: "Didot LT Std";
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}

.page.home .team .data {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	max-width: 600px;
    margin: 0 auto;
}


@media screen and (min-width: 992px){
	.page.home .team .data .partners .item-3 {
		padding-left: 50px;
	}
}



@media screen and (min-width: 992px){
	.page.home .residences .title h3 {
		max-width: 440px;
	}
}


.page.home .contact .vias h4 {
	color: #FAFAFA;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.page.home .contact .vias .item {
	margin-bottom: 35px;
}
.page.home .contact .vias .item i{
	font-size: 32px;
	margin-bottom: 15px;
}
.page.home .contact .vias .item a{
	text-decoration: underline;
}

.page.home .contact .socialmedia {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.page.home .contact .socialmedia li{
	margin: 0 5px;
}
.page.home .contact .socialmedia li a{
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    font-size: 17px;
    color: #0a0a0a;
    background: #FAFAFA;
    border-radius: 50%;
	border: 1px solid #FAFAFA
}
.page.home .contact .socialmedia li a:hover{
	background: transparent;
	color: #fafafa;
}



.page.home .gallery .slider {
	max-height: 900px;
}

.page.home .gallery  .slider .slide{
	/*height: calc(var(--vh, 1dvh) * 100);*/
	height: calc(100% - 20px);
	/*min-height: 900px;*/
	display: block !important;
}

@media screen and (min-width: 992px) {
	.page.home .gallery .slider .slide{
		height: calc(var(--vh, 1dvh) * 100);
		max-height: 900px;
	}
}

/* Pages > Internal */

.page.internal .content{
	
}
.page.internal .content article {
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}

/* Pages > Page thankyou */

.page.page-thankyou .content{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 200px 0 100px;
	min-height: calc(100vh - 150px);
}
/*
.page.page-thankyou .content .logo{
	position: absolute;
	top: 150px;
	left: calc(50% - 125px);
}
*/
.page.page-thankyou .content .logo img {
	filter: invert(1) brightness(1);
	-webkit-filter: brightness(1) invert(1);
}
.page.page-thankyou .content .title h1{
	text-transform: uppercase;
	font-size: 36px;
}

/* Pages > Page 404 */

.page.page-404 .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
}

/* Pages > Page Maintenance */

.page.page-maintenance .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 100vh;
}

.page.page-maintenance .content .socialmedia{
	margin-top: 50px;
}
.page.page-maintenance .content .socialmedia li {
    display: inline-flex;
    vertical-align: middle;
    position: relative;
    margin-right: 8px;
}
.page.page-maintenance .content .socialmedia li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-left: 10px;
}

.page.page-maintenance .content .socialmedia li a:hover{
	color: #ED6926;
}

/* Errors */

.errors {
	text-align: center;
	padding: 30px 0;
}
.errors.error-nologued {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60vh;
}

.errors .smile {
	margin: 0;
	font-size: 50px;
	-webkit-transform: rotate(90deg);
	color: #004593;
}
@media screen and (min-width: 992px){
	.errors .smile {
		font-size: 80px;
	}
}



/* Footer */

.footer a{
	color: #fafafa;
}

.footer a:hover{
	color: #fff;
}

.footer .widgets{
	padding: 30px 0;
	text-align: center;
}
.footer .widgets h4{
	margin: 0;
	font-size: 15px;
	line-height: 28px;
	font-weight: 600;
	text-transform: uppercase;
}
.footer .widgets .logo{
	display: block;
	width: 108px;
	margin: 0 auto 20px;
}

.footer .widgets .menu{
	margin-bottom: 20px;
}
.footer .widgets .menu li a{
	display: block;
	padding: 2px;
	font-weight: 500;
}
.footer .widgets .menu li a:hover{
	text-decoration: underline;
}
.footer .copyright {
	padding: 30px 0;
	border-top: solid 1px #fafafa;
	margin-top: 50px;
	font-size: 14px;
}
.footer .copyright p{
	margin: 0;
}

.footer .legal {
	font-size: 12px;
	color: #6C6C6C;
	max-width: 810px;
}

@media screen and (min-width: 992px){
	.footer .widgets{
		padding: 60px 0 45px 0;
		text-align: left;
	}
	.footer .widgets .logo{
		margin: 0;
	}

	.footer .widgets .menu{
		display: inline-flex;
		margin: 0;
		align-items: center;
	}
	.footer .widgets .menu li a{
		padding-right: 25px;
	}
	
}


/* Slider */

.slider {
	position: relative;
}
.slider .dots {
	position: absolute;
	width: 100%;
	z-index: 10;
}
.slider .dots .slick-dots {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: center;
}
.slider .dots .slick-dots li {
	display: inline-block;
	vertical-align: top;
	margin: 10px 6px;
}
.slider .dots .slick-dots li button {
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
    text-indent: -9999px;
	background: #d7d7d7;
    border: 0;
	border-radius: 50%;
    overflow: hidden;
    -webkit-appearance: none;
    cursor: pointer;
}
.slider .dots .slick-dots li.slick-active button {
	background: #fff;
}

.slider .arrows button {
	position: absolute;
	top: calc(50% - 20px);
	left: 5px;
	width: 30px;
	height: 30px;
	padding: 0;
	line-height: 300px;
	text-align: center;
	font-size: 50px;
	color: #fff;
	background: transparent;
	border: solid 1px #0A0A0A;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	overflow: hidden;
}

.slider .arrows.light button {
	border-color: #FAFAFA;
}
/*
.slider .arrows.light button:after {
	filter: invert(1) brightness(5);
	-webkit-filter: brightness(5) invert(1);
}
*/
.slider .arrows button:focus {
	outline: 0;
}
.slider .arrows button:after {
	content: '';
	position: absolute;
	top: calc(50% - 6px);
    left: calc(50% - 6px);
	width: 12px;
	height: 12px;
	line-height: 27px;
	color: #0a0a0a;
	background: url('assets/img/icons/icon-arrow-left.svg') no-repeat center;
	background-size: contain;
}
.slider .arrows button.slick-next {
	left: auto;
	right: 5px;
}
.slider .arrows button.slick-next:after {
	content: '';
	background: url('assets/img/icons/icon-arrow-right.svg') no-repeat center;
	background-size: contain;
}

.slider .arrows button:hover {
	background: rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 992px) {

	.slider .arrows button {		
		top: calc(50% - 20px);
		left: 30px;
		width: 56px;
		height: 56px;
		padding: 0;		
	}

	.slider .arrows button:after {		
		top: calc(50% - 12px);
	    left: calc(50% - 12px);
		width: 24px;
		height: 24px;		
	}

	.slider .arrows button.slick-next {
		left: auto;
		right: 30px;
	}
}

/*  Modals */

.modal{
	z-index: 99999;
}
.modal-backdrop{
	z-index: 9999;
}
.modal .modal-content{
	border: 0;
	border-radius: 0;
}

.modal .btn-close{
	position: absolute;
	top: -50px;
	right: 15px;
	width: 30px;
	height: 30px;
	padding: 0;
	background: url('assets/img/icons/icon-cross.svg') no-repeat center;
	background-size: contain;
	z-index: 10;
	opacity: 0.5;
}

@media screen and (min-width: 992px) {
	.modal .btn-close{
		top: 20px;
		right: -50px;
	}
}

/* Modals > Video */

#modalVideo .modal-content{
	background-color: #000;
}
#modalVideo .modal-body{
	padding: 0;
}
#modalVideo .btn-close{
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 30px;
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}

/* Whatsapp */

.btn-whatsapp{
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-size: 32px;
    text-align: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

@media screen and (min-width:768px){
	.btn-whatsapp{
	    width: 70px;
	    height: 70px;
	    line-height: 70px;
	    font-size: 40px;
	}
}


.fancybox-toolbar .fancybox-button.fancybox-button--zoom,
.fancybox-toolbar .fancybox-button.fancybox-button--play,
.fancybox-toolbar .fancybox-button.fancybox-button--thumbs {
    display: none !important;
}


.slider .slides:not(.slick-initialized),
.slider .slides:not(.slick-initialized) .slick-list{
	overflow: hidden;
	white-space: nowrap;
}
.slider .slides:not(.slick-initialized) .slide,
.slider .slides:not(.slick-initialized) .slick-slide{
	display: inline-block;
	vertical-align: top;
}