/*
Theme Name: Bernat
Theme URI: https://bellop.io
Version: 1.0
Author: bellop.io
Author URI: https://bellop.io
*/

:root,
[data-bs-theme=light]{

	/* Defaults */
	--header-min-height: 60px;	
	--header-top-height: 26px;

	/* Colors */
	--bs-heading-color: inherit; /* H1, H2 colors */

    --bs-body-color: #222222;
    --bs-body-bg: #F1F1EF;

	--bs-primary: #9C9388; /*  Stone */
	--bs-primary-rgb: 156,147,136;

	--bs-secondary: #C7B7A6; /*Sand */
	--bs-secondary-rgb: 199,183,166;

    --bs-white: #FFFEFA; /* Off White */
    --bs-rgb: 241,241,239;

    --bs-light: #E2DBCB; /*Cream*/
    --bs-light-rgb: 226,219,203;

    --bs-dark: #222222; /* Onix */
    --bs-dark-rgb: 34,34,34;

	--bs-black: #000;
	--bs-gray: #F1F0EC;

	--bs-green: #141E17;

	/* Links */
    --bs-link-color: #0d6efd;
    --bs-link-color-rgb: 13,110,253;
    --bs-link-decoration: underline;
    --bs-link-hover-color: #0a58ca;
    --bs-link-hover-color-rgb: 10,88,202;

    /* BS Borders */
    --bs-border-width: 1px;
/*    --bs-border-color: #fc3f50;*/
    --bs-border-radius: 50px;

}


/* Animate */

@keyframes dropDown{
    0% {transform: scaleY(0);}
    80% {transform: scaleY(1.1);}
    100% {transform: scaleY(1);}
}
@keyframes bounce{
	0% { transform: translate(0, 0); }
	50% { transform: translate(0, -100%); }
	100% { transform: translate(0, 0); }          
}
@keyframes fadeIn{
  from { opacity: 0; transform: translate3d(0, 10px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInUp{
	from { opacity: 0; transform: translate3d(0, 40px, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInLeft{
	from { opacity: 0; transform: translate3d(-40px, 0, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInRight{
	from { opacity: 0; transform: translate3d(40px, 0, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes zoomInUp {
	0% {
	    opacity: 0.8;
		transform: scale(1.15,1.15) rotate(.01deg);
	}
	100% {
	    opacity: 1;
		transform: scale(1, 1) rotate(.01deg);
	}
}

.wow{
	visibility: hidden;
	opacity: 0;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(.25, .1, .25, 1);
	animation-play-state: paused;
	will-change: opacity, transform;
}
.wow.fadeIn {
	animation-duration: 1.3s;
	transform: translate3d(0, 8px, 0);
}
.wow.is-visible{
	visibility: visible;
	animation-play-state: running;
}

.wow.slow {
	animation-duration: 6s;
}

.fadeIn { animation-name: fadeIn; }
.fadeInRight { animation-name: fadeInRight; }
.fadeInUp { animation-name: fadeInUp; }
.fadeInLeft { animation-name: fadeInLeft; }
.zoomInUp  { animation-name: zoomInUp ; }


/* 3. Structure */

html{
	scroll-behavior: smooth;
}

body{
	font-size: 16px;
	font-weight: 400;
	font-family: 'Cabinet Grotesk', sans-serif;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	background-color: #FFFEFA;
	color: var(--bs-green);
}



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

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

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: 700;
}

.image, .thumbnail {
	border-radius: 15px;
	overflow: hidden;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

.ratio-4x3 {
	aspect-ratio: 4 / 3;	
}
.ratio-4x3 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 4. Structure > Framework */

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

.container,
.container-fluid{
	width: 100%;
	max-width: 100%;
}
.container{
	max-width: 1600px;
}
.container-fluid{
	max-width: 1920px;
}

/*
[class^="col-"]{
	padding-left: 15px;
	padding-right: 15px;
}*/

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

@media screen and (min-width: 1440px){
	.container,
	.container-fluid{
		padding: 0 70px;
	}
}

/* Keyframes */

@keyframes dropDown{
    0% {
        transform: scaleY(0);
    }
    80% {
        transform: scaleY(1.1);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

/* Structure > extras */

.animated{
	will-change: opacity, transform;
}

.overh{
	overflow: hidden;
}

#pageloader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bs-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	transition: opacity 0.5s ease-in-out;
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
}
#pageloader.show{
	opacity: 1;
	pointer-events: all;
}

.grecaptcha-badge{
	opacity:0;
}


/* Components > buttons */

.btn{
	min-width: 110px;
	--bs-btn-padding-x: 15px;
	--bs-btn-padding-y: 11px;
	--bs-btn-font-weight: 500;
	font-size: 12px;
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 6px;
}

@media screen and (max-width: 576px){
	.btn-block-mobile{
		width: 100%;
	}
}

.btn-primary{
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: var(--bs-light);
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
}

.btn-green{
    --bs-btn-bg: var(--bs-green);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-green);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-green);
    --bs-btn-hover-border-color: var(--bs-green);

    --bs-btn-active-bg: var(--bs-light);
    --bs-btn-active-color: var(--bs-green);
    --bs-btn-active-border-color: var(--bs-green);
}

.btn-gray{
    --bs-btn-bg: var(--bs-gray);
    --bs-btn-color: var(--bs-dark);
    --bs-btn-border-color: var(--bs-gray);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-gray);
    --bs-btn-hover-border-color: var(--bs-gray);

    --bs-btn-active-bg: var(--bs-dark);
    --bs-btn-active-color: var(--bs-gray);
    --bs-btn-active-border-color: var(--bs-gray);
}


.btn-outline-primary{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-primary);
}

.btn-secondary{
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-secondary);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-secondary);
    --bs-btn-hover-border-color: var(--bs-secondary);

    --bs-btn-active-bg: var(--bs-light);
    --bs-btn-active-color: var(--bs-secondary);
    --bs-btn-active-border-color: var(--bs-secondary);
}

.btn-dark{
    --bs-btn-bg: var(--bs-dark);
    --bs-btn-color: var(--bs-white);
    --bs-btn-border-color: var(--bs-dark);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-dark);
    --bs-btn-hover-border-color: var(--bs-dark);

    --bs-btn-active-bg: var(--bs-white);
    --bs-btn-active-color: var(--bs-dark);
    --bs-btn-active-border-color: var(--bs-dark);
}

.btn-outline-dark{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-dark);
    --bs-btn-border-color: var(--bs-dark);

    --bs-btn-hover-bg: var(--bs-dark);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-border-color: var(--bs-dark);

    --bs-btn-active-bg: var(--bs-dark);
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-border-color: var(--bs-dark);
}
.btn-light{
    --bs-btn-bg: var(--bs-white);
    --bs-btn-color: var(--bs-dark);
    --bs-btn-border-color: var(--bs-white);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-border-color: var(--bs-white);

    --bs-btn-active-bg: var(--bs-dark);
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-border-color: var(--bs-white);
}
.btn-outline-light{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-white);
    --bs-btn-border-color: var(--bs-white);

    --bs-btn-hover-bg: var(--bs-white);
    --bs-btn-hover-color: var(--bs-dark);
    --bs-btn-hover-border-color: var(--bs-white);

    --bs-btn-active-bg: var(--bs-white);
    --bs-btn-active-color: var(--bs-dark);
    --bs-btn-active-border-color: var(--bs-white);
}



/* Buttons Float */

.btn-float{
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-align: center;
    z-index: 9999;
    border-radius: 25px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
}
.btn-float-edit{
	left: 30px;
	right: auto;
	bottom: 15px;
    padding: 10px 15px;
    font-weight: 500;
    color: #fff;
    background: rgba(0,0,0,0.75);
    opacity: 0.95;
}
.btn-float-edit:hover{
    background: var(--bs-primary);
    color: #fff;
}

.btn-float-whatsapp{
    width: 50px;
    height: 50px;
	border-radius: 50%;
	font-size: 32px;
    color: #fff;
    background: #25D366;
}
.btn-float-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

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

.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%;
    animation: spinner-border .75s linear infinite;
    -webkit-animation: spinner-border .75s linear infinite;
}


/* Structure */

.section{
	position: relative;
	padding: 50px 0;
}

@media screen and (min-width: 992px){
	.section{
		padding: 100px 0;
	}
}


.mt-80 {
	margin-top: 40px;
}
@media screen and (min-width: 992px){
	.mt-80 {
		margin-top: 80px;
	}
}


/* Structure > Menu Top*/

.top-menu{	
	background: var(--bs-dark);
	color: var(--bs-white);	
	height: var(--header-top-height);
	align-content: center;
}

.top-menu .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-menu .logo{
	max-width: 147px;
}

/* Structure > Header */


.header{
	position:absolute;
	top: var(--header-top-height);
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);
	background: transparent;
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
}
.header .container{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
	max-width: 128px;
}

.header.fixed{
	position: fixed;
	top: 0;
	background: var(--bs-white);
	box-shadow: 0px 1px 1px rgba(128, 128, 128, 0.15);
	z-index: 999;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}

.header.active{
	background-color: var(--current-color);
}


/* Header > Navigation */

.header .nav-menu {
	position: relative;
	float: right;
	width: 16px;
	padding: 5px 0;
	cursor: pointer;
	z-index: 21;
	overflow: hidden;
}
.header .nav-menu .menu-line {
	float: right;
	display: block;
	width: 100%;
	height: 2px;
	margin: 2px 0;
	background: var(--bs-white);
	transition: 0.3s;
	border-radius: 0;
}
.header.active .nav-menu .menu-line:nth-child(1) { transform: rotate(45deg);  margin-top: 5px; }
.header.active .nav-menu .menu-line:nth-child(3) { transform: rotate(-45deg); margin-top: -10px; }
.header.active .nav-menu .menu-line:nth-child(2) { opacity: 0; }


.header.fixed:not(.active) .nav-menu .menu-line {
	background: var(--current-color);
}

.header .navigation {
	display: none;
	position: fixed;
	top: var(--header-min-height);
	left: 0;
	width: 100%;
	margin: 0;
	background: var(--current-color);
	color: var(--bs-white);
	height: calc(100dvh - var(--header-min-height));
	padding: 50px 0;
}
body.open-menu .header .navigation {
	display: block;
}

.header .navigation .container {
	flex-direction: column;
	height: 100%;
	align-items: flex-start;
}
.header .navigation .menu{
	margin: auto 0; 
}
.header .navigation .socialmedia{
	margin-top: auto; 
}
.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 5px 0;
	font-size: 45px;
	line-height: 1em;
	font-weight: 300;
	text-transform: uppercase;
	width: fit-content;
}

@media screen and (min-width: 992px){
	.header .navigation .menu li a {
		font-size: 60px;
	}	
}

.header .navigation .menu li a:before{
	content: '';
	width: 0;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: var(--bs-white);
	transition: all 0.3s;
}

.header .navigation .menu li a:hover:before{
	width: 100%;
	left: 0;
}


.header .items{
	display: flex;
	align-items: center;
	gap: 30px;
}
.header .menu-contact{
	display: inline-block;
	padding: 10px 20px;
	background: var(--bs-white);
	color: var(--current-color);
	border: solid 1px var(--bs-white);
	transition: 0.3s all;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.1em;
}

.header .menu-contact:hover{
	background: transparent;
	color: var(--bs-white);
}

/* Header > Transparent */
.header:is(.active, :not(.fixed)) .logo{
	filter: brightness(0) invert(1);
}

.header.fixed:not(.active) .menu-contact{	
	color: var(--bs-white);
	background: var(--current-color);
	border: solid 1px var(--current-color);
}

.home .header {
	top: 0;
}

.is-project .header:not(.fixed).active .navigation{
	top: calc(var(--header-min-height) + var(--header-top-height));
}

/* Components > Forms */

label{
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 8px;
}
.bg-primary label,
.bg-dark label{
	color: var(--bs-white);
}

.bg-dark .form-control{
	border: solid 1px var(--bs-white);
	color: var(--bs-white);
}
.bg-dark .form-select:focus,
.bg-dark .form-control:focus{
	 border-color: var(--bs-white);
}

.bg-dark select.form-select{
	background-color: var(--bs-dark);
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.08716 9.02344C7.18798 9.02344 7.26496 9.05385 7.34302 9.13184L11.6458 13.459L11.9993 13.8145L16.6819 9.13184C16.7595 9.05424 16.826 9.03227 16.9065 9.03516C17.0008 9.0386 17.0822 9.07117 17.1682 9.15723C17.2463 9.23531 17.2766 9.31223 17.2766 9.41309C17.2765 9.51371 17.2461 9.59001 17.1682 9.66797L12.2493 14.5869C12.1951 14.6411 12.1524 14.667 12.1243 14.6787C12.0887 14.6935 12.0489 14.7021 12.0002 14.7021C11.9758 14.7021 11.9534 14.6993 11.9329 14.6953L11.8752 14.6787L11.8225 14.6484C11.8018 14.634 11.7781 14.6138 11.7512 14.5869L6.80688 9.64355C6.73305 9.56972 6.70686 9.50009 6.71021 9.40527C6.714 9.29797 6.75001 9.2141 6.83228 9.13184C6.9102 9.05403 6.98657 9.02351 7.08716 9.02344Z' fill='%23F1F1EF' stroke='%23F1F1EF'/%3E%3C/svg%3E%0A");
}

.bg-green{
	background-color: var(--bs-green);
}

.bg-gray{
	background-color: var(--bs-gray);
}
.bg-current{
	background-color: var(--current-color);
}

.bg-gray{
	background-color: var(--bs-gray);
}

.required{
	color: #ff0000;
}


.form-select,
.form-control{
	border-radius: 0;
	line-height: 1.8em;
	border: solid 1px var(--bs-white);
	background-color: transparent;
	color: var(--bs-white);
}



.form-select:focus,
.form-control:focus{
	background-color: transparent;
    box-shadow: none !important;
    border-color: var(--bs-white);
    color: var(--bs-white);
}
textarea.form-control{
	border-radius: 0;
}

.form-select{
	--bs-form-select-bg-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
}

.form-select{
	color: #fff;
	background-color: transparent;
}

.form-select option{
	background: #0f1f17; /* fondo oscuro */
	color: #fff;
}

/* Form checkbox */

.form-check{
	display: inline-block;
}

.form-check-input:focus{
	box-shadow: none;
}
.form-check-input:checked{
	background-color: var(--bs-dark);
	border-color: var(--bs-dark);
}

input[type="checkbox"] ~ label,
input[type="radio"] ~ label{
	margin: 0;
	font-weight: 400;
}

/* Form files */

.input-file-group{
	position: relative;
	display: block;
	padding: 30px 15px;
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	background-color: var(--bs-body-bg);
	border: var(--bs-border-width) dashed var(--bs-border-color);
	border-radius: 15px;
	cursor: pointer;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.input-file-group input{
	opacity: 0;
	width: 0;
}

.input-file-group .files{
	max-height: 100px;
	overflow: auto;
}
.input-file-group .files span{
	display: block;
	font-size: 12px;
	text-transform: uppercase;
}
.input-file-group:hover,
.input-file-group:focus{
	border-color: var(--bs-dark);
}

/* Forms > Show password */

.show_password{
	position: absolute;
	bottom: 0;
	right: 15px;
	padding: 15px;
}
.show_password.active,
.show_password:hover{
	color: #f58426;
}

/* Components > 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: 23px;
	height: 23px;
	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;
	}
}

#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);
}


#modalDownload .modal-body {
	padding: 60px;
}


#modalDownload .btn-close{
	top: 20px;
	right: 20px;
	filter: none;
	opacity: 1;
}


/* Components > socialmedia */

.socialmedia h4{
	font-size: 18px;
	line-height: 24px;
}

ul.socialmedia{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: 12px;
	list-style: none;
}
ul.socialmedia li{
	display: inline-block;
	vertical-align: middle;
}
ul.socialmedia li a{
	font-size: 21px;
}
ul.socialmedia li a:hover{
	color: var(--bs-primary);
}

@media screen and (min-width: 992px){	
	ul.socialmedia{
		justify-content: flex-start;
	}
}



/* Components > Slider > Swiper */

.swiper.overflow{
	overflow: visible;
}

.swiper-pagination {
	bottom: 0;
}
.swiper-pagination-bullet{
	background: var(--bs-dark);
	opacity: 0.2;
}
.swiper-pagination-bullet-active {
	opacity: 1;
}

.swiper-pagination.light .swiper-pagination-bullet{
	background: var(--bs-light);
}


.swiper-button-next,
.swiper-button-prev{
	position: absolute;
	width: 48px;
	height: 48px;
    color: transparent;
    background-image: url('assets/img/icons/icon-arrow-prev.svg');
    background-repeat: no-repeat;
    background-position: center;
   	background-size: contain;
}
.circle.swiper-button-next,
.circle.swiper-button-prev{
	background-color: var(--bs-white);
	border: 1px solid var(--bs-dark);
	border-radius: 50%;
	background-size: 16px;
}

.circle.swiper-button-prev { 
	left: -20px;
}

.circle.swiper-button-next { 
	right: -20px;
	background-image: url('assets/img/icons/icon-arrow-next.svg'); 
}

.swiper-button-prev:after,
.swiper-button-next:after{
	content: none;
}


.circle.swiper-button-next.dark,
.circle.swiper-button-prev.dark{
	background-color: var(--bs-dark);
	border: 1px solid var(--bs-light);
}

.circle.swiper-button-prev.dark {
	background-image: url('assets/img/icons/icon-arrow-prev-light.svg');
}
.circle.swiper-button-next.dark{
	background-image: url('assets/img/icons/icon-arrow-next-light.svg'); 
}

@media screen and (max-width: 768px){
	.circle.swiper-button-next,
	.circle.swiper-button-prev{
		width: 28px;
		height: 28px;
		background-size: 12px;
	}
	.circle.swiper-button-prev{left: -10px;}	
	.circle.swiper-button-next{right: -10px;}
}


/* Components > Title */

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

.title h1,.title h2,.title h3,.title h4,.title h5{
	margin: 0;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.title h1{
	font-size: 30px;
	font-weight: 300;
}
.title h2{
	font-size: 24px;
}
.title h3{
	font-size: 21px;
}
.title h4{
	font-size: 22px;
}
.title h5{
	font-size: 20px;
}
.title span{
	color: var(--bs-primary);
}

.title .btn{
	margin-top: 16px;
}
.title .subtitle{
	margin-bottom: 8px;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 2px;
}

.title .description {
	font-size: 20px;
	margin-bottom: 0;
}
.title.lined{
	padding-bottom: 15px;
	border-bottom: 1px solid #262626;
}

.title.max-width-xsm{
	max-width: 430px;
}

.title.max-width-sm{
	max-width: 480px;
}

.title.max-width-md{
	/*max-width: 574px;*/
	max-width: 515px;
}

.title.max-width{
	max-width: 660px;
}
.title.max-width-lg{
	max-width: 992px;
}

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

	.title h1,.title h2,.title h3,.title h4,.title h5{
		margin-bottom: 24px;
	}

	.title{
		margin-bottom: 32px;
	}
	.title h1{
		font-size: 60px;
	}
	.title h2{
		font-size: 48px;
	}
	.title h3{
		font-size: 36px;
	}
	.title h3.big{
		font-size: 48px;
	}
	.title h4{
		font-size: 24px;
	}
	.title h5{
		font-size: 22px;
	}
	
	.title .subtitle{
		margin-bottom: 16px;
	}
	.title .btn{
		margin-top: 32px;
	}

}

/* Components > Video Player */

.video-player{
	position: relative;
	width: 100%;
	padding: 25% 0;
	background: #000 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: var(--bs-primary);
	color: #fff;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
}
.video-player.active .play,
.video-player:hover .play{
	background: var(--bs-primary);
	color: #fff;
}
.video-player .play:hover{
	transform: scale(1.1);
}
.video-player .play i{
	margin-left: 4px;
}

.video-player.allowed{
	cursor: pointer;
}
.video-player.allowed .play{
	display: block;
}



/* Components > Share */

.share  {
	margin: 40px 0;
    padding: 20px 0;
    border-top: solid 1px #36373A;
    border-bottom: solid 1px #36373A;
}
.share ul {
	display: flex;
	align-items: center;
	margin: 0;
}
.share ul li a{
	display: block;
	padding: 8px;
	font-size: 26px;
	color: var(--bs-primary);
}
.share ul li a:hover{
	color: var(--bs-secondary);
}

@media screen and (min-width: 992px){
	.share ul li a{
		font-size: 32px;
	}
}

/* Components > Errors */

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

.error .smile {
	margin: 0;
	font-size: 50px;
	transform: rotate(90deg);
	color: var(--bs-primary);
}
@media screen and (min-width: 992px){
	.error .smile {
		font-size: 80px;
	}
}



/*
	Modules
*/

/* Module > Presentation */

.presentation{
	position: relative;
	display: flex;
	align-items: flex-end;
	height: 100svh;
	min-height: 600px;
	padding: 100px 0;
	background: var(--bs-dark) no-repeat bottom;
	background-size: cover;
}
.presentation .container{
	position: relative;
	z-index: 2;
}


.presentation .title {
	max-width: 680px;
	color: var(--bs-white);
	margin: 0;
}

.presentation .arrow-down{
	display: block;
	position: absolute;
	right: 20px;
	bottom: 10px;
	width: 28px;
	height: 39px;
	background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
	background-size: contain;
	animation: bounce 3s infinite;
	z-index: 3;
}

.presentation .arrows button{
	filter: brightness(0) invert(1);
}

.presentation video{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.presentation:before{
	content: '';
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	position: absolute;
	z-index: 2;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32.21%, rgba(0, 0, 0, 0.2) 100%), rgba(0, 0, 0, 0.4);

}

@media screen and (min-width: 992px) {
	.presentation .slider .slide{
		max-height: 855px;
		padding: 60px 0;
	}

    .presentation .title p:not(.subtitle){
    	font-size: 18px;
    }
	.presentation .arrow-down{
		bottom: 50px;
		right: 50%;
	}
}


/* Modules > Banner */

.banner{
	position: relative;
	background: var(--bs-dark) no-repeat top center;
	background-size: cover;
	color: var(--bs-white);
	overflow: hidden;
}

.banner .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    left: 0;
    top: 0;
}

/* 👇 Overlay */
.banner .bg::before{
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;

	background:
		linear-gradient(0deg, rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
		linear-gradient(180deg, rgba(0,0,0,0) -14.45%, rgba(0,0,0,0.3) 28.18%, rgba(0,0,0,0.3) 42.78%, rgba(0,0,0,0) 100%);
}

/* Contenido por encima */
.banner .screen-1,
.banner .screen-2{
	position: relative;
	z-index: 3;
}

.banner .parallax-img {
  will-change: transform;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}

.banner .container > div:not(.bg) {
    position: relative;
    z-index: 1;
}

.banner .menu{
	display: none;
}

.banner .screen-1 {
	position: relative;
	height: calc(100svh - 34px);	
	display: flex;
	flex-direction: column;
	/*justify-content: center;*/
	justify-content: end;
	padding: 50px 0;
}
.banner .screen-2 {
	display: flex;
	align-items: flex-end;
	height: 70svh;
	padding-bottom: 50px;
}

.banner .title{
	position: relative;
	/*max-width: 650px;*/
	margin: 0;
	color: var(--bs-white);
	z-index: 2;
}

.banner .arrow-down{
    display: block;
    position: absolute;
    left: calc(50% - 14px);
    bottom: -70svh;
    width: 28px;
    height: 39px;
    background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
    background-size: contain;
    animation: bounce 3s infinite;
    z-index: 3;
}

@media screen and (min-width: 992px){	
	.banner .screen-1 {		
		height: calc(100svh - 34px);		
		padding: 50px 0;
	}
	.banner .screen-2 {
		height: 90svh;
		padding-bottom: 120px;
	}
	.banner .arrow-down{
		bottom: 50px;
	}

	.banner .menu{
		display: flex;
		gap: 16px;
	}

	.banner .parallax-img {
	  height: 220svh;
	}

	.banner .arrow-down{
		 bottom: -50px;
	}
}


@media screen and (min-width: 1920px){
	.banner .parallax-img {	 
	  height: 240svh;
	}
}


/* Module > Tab Menu */

.module-tabs .tabs {
	min-height: 55px;
	/*box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/
}
.module-tabs .tabs ul {
    margin: 0 -15px;
    padding: 0 15px;
    white-space: nowrap;
    overflow: auto;
    display: flex;
    justify-content: center;
    border-bottom: solid 1px #CACACA;
}
.module-tabs .tabs ul li a {
    display: block;
    padding: 15px 12px;
    position: relative;
}
.module-tabs .tabs ul li a.active,
.module-tabs .tabs ul li a:hover{
	color: var(--bs-primary);
}

.module-tabs .tabs ul li a:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--bs-primary);
    transition: 0.3s all;
}
.module-tabs .tabs ul li.current-menu-item a:before,
.module-tabs .tabs ul li a.active:before,
.module-tabs .tabs ul li a:hover:before{
    left: 10%;
    width: 80%;
}
.module-tabs .tabs.fixed{
	position: fixed;
	top: 70px;
	width: 100%;
	z-index: 1;
	box-shadow: 0px 5px 5px 0 rgb(0 0 0 / 0.05);
}


/* Modules > Accordion */

.module-accordion .items .item{
	position: relative;
	margin-bottom: 3px;
	border-bottom: solid 1px var(--bs-primary);
	padding: 20px 0;
}

.module-accordion .items .item .question{
	position: relative;
	display: block;
	font-size: 18px;
	font-weight: 600;
	padding-right: 50px;

}
.module-accordion .items .item .question:after {
    content: '+';
    position: absolute;
    top: calc(50% - 10px);
    right: 0px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.module-accordion .items .item .question[aria-expanded="true"]{
	
}
.module-accordion .items .item .question[aria-expanded="true"]:after{
	content: '-';
}

.module-accordion .items .item .answer{
	margin-top: 15px;
}

.module-accordion .items .item .answer a {
	text-decoration: underline;
}

.module-accordion .items .item .answer a:hover {
	color: var(--bs-primary);
}

.module-accordion .items .item .answer .data {
	max-width: 980px;
}

@media screen and (min-width: 992px) {
	.module-accordion .items .item .question:after {
		right: 20px;
	}
}



/* Module > Contact */
.module-contact .btn{
	min-width: 211px;
}

.module-contact .title h3{
	text-transform: unset;
}

/* Modules > Image & Text */

.module-img-txt .image{
	width: 100%;
}
.module-img-txt .image img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.project.module-img-txt .image img{
	height: 793px;
}

.module-img-txt .row{
	--bs-gutter-x: 80px;
}


/* Module > Image */

.module-image .image img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 12px;
}


/* Module > Video */

.module-video .video.archive video {
	aspect-ratio: 2 / 1;
	object-fit: cover;
	width: 100%;
}

/* Module Slider */
.module-slider {
	position: relative;
}
.module-slider.gallery-full:has(.swiper-pagination){
    padding-bottom: 60px;
}
.module-slider.gallery-full img{
	width: 100%;
	aspect-ratio: 1.83 / 1;
	object-fit: cover;
}



/*
	Pages
*/


/* Page > Home */



/* Single > Projects */
.single.projects {
	color: var(--current-color);
}

.single.projects .banner .categories span{
	border: 1px solid #F1F0EC;
	padding: 12px 20px;
	border-radius: 120px;
	font-size: 16px;
	text-transform: uppercase;
	color: #F1F0EC;
	margin-right: 10px;
}

.single.projects .banner .title h1{
	font-size: clamp(60px, 16.6vw, 240px);
	font-weight: 300;
}
.single.projects .architecture .container {
	position: relative;
}

.single.projects .partners .items .title h5{
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 2px;
	font-weight: 500;
}

.single.projects .amenities .title.max-width p{
	max-width: 420px;
}
@media screen and (min-width: 992px){
	.single.projects .architecture .title{
		position: absolute;
		left: 70px;
		top: 0;
	}
}

.single.projects .project {
	background: no-repeat top;
	background-size: 100% 70%;
	color: var(--bs-white);
}

.single.projects .sustainability{
	background: no-repeat center;
	background-size: cover;
}
.single.projects .tour{
	height: 90vh;
	align-content: center;
	background: var(--current-color) no-repeat center;
	background-size: cover;
	color: var(--bs-white);
}

.single.projects .project-card{
	height: 478px;
}

.single.projects .relations .row{
	margin-top: 30px;
}

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

	.single.projects .relations .row{
		margin-top: 60px;
	}

}

/* Map */

#map{
	position: relative;
	background-color: #eee;
	width: 100%;
	height: 400px;
}
.map .maparea{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#map .leaflet-control-attribution {
    display: none;
}

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

/* Pages > Thanks */

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

/* Pages > Internal */

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

/* Pages > Page 404 */

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

.page.page-maintenance .content{
	min-height: 100vh;
}


/*
	CPT Feed
*/

/* Feed > General */

.feed article{
	position: relative;
}
.feed article a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.feed article .thumbnail{
	display: block;
	aspect-ratio: 1.6 / 1;
	width: 100%;
	height: 100%;
	background-color: #eee;
	overflow: hidden;
}
.feed article .thumbnail img{
	aspect-ratio: 1.6 / 1;
	object-fit: cover;
	width: 100%;
	transition: 0.3s all;
}
.feed article:hover .thumbnail img{
    transform: scale(1.1);
}



/* Structure > Footer */

.footer .widgets{
	border-top: solid 0.5px rgba(241, 241, 239, 0.5);
	padding: 50px 0;
	text-align: center;
}

.footer .widgets .logo{
	display: block;
	width: 305px;
	margin: 0 auto 30px;
}


.footer .widgets .menu{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.footer .copyright,
.footer .bottom-menu {
	border-top: solid 1px var(--bs-white);
	padding-top: 32px;
	margin-top: 40px;
}
.footer .copyright p{
	margin: 0;
	font-size: 12px;
}

.footer .bottom-menu .logo img{
	max-width: 206px;
}

.footer .bottom-menu .logo{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: fit-content;
	gap: 12px;
	color: var(--bs-white);
}
.footer .bottom-menu .go-back{
	font-size: 12px;
}


.footer .widgets .menu li a{
	position: relative;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.footer .widgets .menu li a:before{
	content: '';
	width: 0%;
	height: 1px;
	background: var(--bs-white);
	position: absolute;
	bottom: -4px;
	left: 50%;
	transition: all 0.3s;
}

.footer .widgets .menu li a:hover:before{
	width: 100%;
	left: 0;
}

.is-project .footer .logo-project img{
	filter: brightness(0) invert(1);
}

@media screen and (min-width: 992px){
	.footer .widgets{
		padding: 80px 0;
		text-align: left;
	}
	.footer .widgets .logo{
		margin: 0;
	}
	.footer .widgets .menu{
		flex-direction: row;
		gap: 32px;
	}
	.footer .copyright {
		margin-top: 80px;
	}
	.footer .bottom-menu {
		margin-top: 32px;
	}
	.footer .bottom-menu .logo{
		flex-direction: row;
	}
	
}

/**/


.building .item article h4{
	font-size: 36px;
	font-weight: 300;
}

.building .item article p.description{
	font-size: 16px;
}

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

	.building .item article h4{
		font-size: 65px;
	}

	.building .item article p.description{
		font-size: 20px;
	}

}

.building .row{
	margin-bottom: 40px;
}

@media screen and (min-width: 992px){
	.building .row{
		margin-bottom: 80px;
	}
}

.building .row .item article{
	position: relative;
	padding-left: 20px;
}

.building .row .item article::before{
	content: "";
	position: absolute;
	left: 0;
	width: 1px;
	height: 100%;
	background: rgba(255,255,255,1); /* ajusta color */
}

.building .image img{
	width: 100%;
	max-height: 738px;
}

.team .row{
	margin-top: 40px;
}

@media screen and (min-width: 992px){
	.team .row{
		margin-top: 80px;
	}
}

.team .item article .avatar{
	width: 100%;
	height: 100%;
	border-radius: 15px;
	overflow: hidden;
}
.team .item article .avatar img{
	aspect-ratio: 1 / 1.25;
	object-fit: cover;
}
.team .item article p.name{
	font-size: 20px;
	font-weight: 700;
}

.team .item article i{
	font-size: 18px;
}

.pillars .row{
	margin-top: 100px;
}

@media screen and (min-width: 992px){
	.pillars .row{
		margin-top: 200px;
	}
}

.pillars .item article img{
	width: 32px;
	height: 32px;
}

.pillars .item article h2{
	font-size: 24px;
	margin: 12px 0;
}

@media screen and (min-width: 992px){
	.pillars .item article h2{
		font-size: 48px;
		margin: 24px 0;
	}
}

.pillars .row .item article{
	position: relative;
	padding-left: 20px;
}

.pillars .row .item article::before {
    content: "";
    position: absolute;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--bs-green);
}

.feed-projects .row{
	--bs-gutter-x: 32px; 
	--bs-gutter-y: 32px;

	margin: 80px 0;
}

.project-card{
	position: relative;
	height: 478px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background:
		linear-gradient(0deg, rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
		linear-gradient(180deg, rgba(0,0,0,0) 56%, rgba(0,0,0,0.8) 100%),
		var(--bg-image);
	background-position: center;
	border-radius: 12px;
	padding: 32px;
	overflow: hidden;
	transition: transform 0.4s ease, background-size 0.4s ease;
	background-size: 100%;
}

@media screen and (min-width: 992px){
	.project-card{
		height: 720px;
	}	
}

.project-card:hover{
	background-size: 110%;
}

article.project-card a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.project-card .top{
	position: absolute;
	top: 32px;
	left: 32px;
	right: 32px;
}

.project-card .logo img{
	max-width: 35px;
}

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

	.project-card .logo img{
		max-width: 60px;
	}

}

.project-card .categories{
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.project-card .categories span{
	border: 1px solid #F1F0EC;
	padding: 6px 10px;
	border-radius: 120px;
	font-size: 10px;
	text-transform: uppercase;
	color: #F1F0EC;
	background: #64646433;
}

@media screen and (min-width: 992px){
	.project-card .categories span{
		padding: 12px 20px;
		font-size: 16px;
	}
}

.project-card .content{
	position: absolute;
	bottom: 32px;
	left: 32px;
	right: 32px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.project-card .content .description{
	max-width: 320px;
}

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

	.project-card .info{
		max-width: 70%;
	}

}

.project-card .info h2{
	font-size: 48px;
	letter-spacing: -2%;
	text-transform: uppercase;
}

.project-card .tags{
	margin-top: 10px;
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.project-card .tags span{
	border: 1px solid #F1F0EC;
	border-radius: 20px;
	padding: 8px 12px;
	font-size: 12px;
	text-transform: uppercase;
}

.project-card .plus img{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feed-projects .row > div:first-child{
	margin-top: 0 !important;
}