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

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

	/* Defaults */
	--header-min-height: 52px;	

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

    --bs-body-color: #151515;
    --bs-body-bg: #fff;

    --bs-primary: #0A172E; /*Dark blue*/
    --bs-primary-rgb: 13,110,253;
    --bs-secondary: #92C2D7; /*light blue*/
    --bs-secondary-rgb: 108,117,125;
    --bs-white: #fff;
    --bs-light: #F3F2E7; /*Cream*/
    --bs-dark: #151515;

	/* 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;

}



@media screen and (min-width:1200px){
	:root,
	[data-bs-theme=light]{
		--header-min-height: 52px;
		--header-fixed-min-height: 52px;
	}
}

/* Utilities */


.has-primary-color, .text-primary{ 
	color: var(--bs-primary) !important; 
}

.has-secondary-color, .text-secondary{ 
	color: var(--bs-secondary) !important; 
}

.has-primary-background-color, .bg-primary{ 
	background: var(--bs-primary) !important; 
}

.has-secondary-background-color, .bg-secondary{ 
	background-color: var(--bs-secondary) !important; 
}

.has-white-background-color, .bg-white{
	background: var(--bs-white) !important; 
}

.has-dark-background-color, .bg-dark{
	background: var(--bs-dark) !important; 
}

.has-black-background-color, .bg-black{
	background: var(--bs-black) !important; 
}

.bg-light{
	background: var(--bs-light) !important;
}

.bg-secondary{
	background-color: var(--bs-secondary) !important;
}

.text-light{
	color: var(--bs-light) !important;
}


/* 3. Structure */

html{
	scroll-behavior: smooth;
}

body{
	font-size: 16px;
	font-weight: 400;
	font-family: 'Founders Grotesk', sans-serif;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

/*body.header-fixed{
	padding-top: var(--header-min-height);
}*/


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

h1, h2, h3, h4, h5, h6{
	font-family: 'IvyPresto Display';
	font-weight: 300;
}

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: 36px;
		line-height: 43.2px;
		font-style: italic;
	}
	h5 { font-size: 20px; }
	h6 { font-size: 18px; }
}

b, strong {
    font-weight: 700;
}


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

/* Structure > extras */

.wow{
	visibility: hidden;
}

.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: 150px;
	--bs-btn-padding-x: 30px;
	--bs-btn-padding-y: 10px;
	--bs-btn-font-weight: 500;
}
.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-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-outline-secondary{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-secondary);
    --bs-btn-border-color: var(--bs-secondary);

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

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


/* Btn Float */

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

.btn-float-whatsapp{
    color: #fff;
    background: #25D366;
}
.btn-float-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

@media screen and (min-width:768px){
	.btn-float{
	    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;
}*/

/* Components > forms */

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

.required{
	color: #ff0000;
}

.form-select,
.form-control{
	line-height: 1.8em;
}

.form-select:focus,
.form-control:focus{
    box-shadow: none !important;
    border-color: var(--bs-dark);
}
textarea.form-control{
	border-radius: 15px;
}

/* 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: 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;
	}
}

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

/* Components > tables */

@media screen and (max-width: 767px){
	.table-responsive{
		white-space: nowrap;
		overflow: auto;
	}
	.table-responsive .table{
		white-space: normal;
	}
}

/* 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: 5px;
	list-style: none;
}
ul.socialmedia li{
	display: inline-block;
	vertical-align: middle;
}
ul.socialmedia li a{
	display: block;
	font-size: 26px;
	height: 24px;
}
ul.socialmedia li a:hover{
	color: var(--bs-secondary);
}

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


/* Components > Slider  */

.slider{
	position: relative;
}

/* Components > Slider > Swiper */

.slider.swiper:has(.swiper-pagination){
    padding-bottom: 60px;
}
.slider.swiper .swiper-pagination {
	bottom: 0;
}
.slider.swiper .swiper-pagination-bullet{
	background: var(--bs-primary);
	opacity: 0.3;
}
.slider.swiper .swiper-pagination-bullet-active {
	opacity: 1;
}

.swiper-button-next,
.swiper-button-prev{
	position: absolute;
	width: 25px;
	height: 25px;
    color: transparent;
    background-image: url('assets/img/icons/icon-arrow-prev.svg');
    background-repeat: no-repeat;
    background-position: center;
   	/*background-size: contain;*/
}

@media screen and (min-width: 992px){	
	.swiper-button-next,
	.swiper-button-prev{
		width: 50px;
		height: 50px;
	}
}

.circle.swiper-button-next,
.circle.swiper-button-prev{
	border: 1px solid var(--bs-dark);
	border-radius: 50%;
	background-color: var(--bs-light);
}
.swiper-button-next { background-image: url('assets/img/icons/icon-arrow-next.svg'); }

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


/* Components > Slider > Slick */

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

@media screen and (min-width: 992px){
	.slider .slick-slider .dots .slick-dots li button{
		width: 15px;
		height: 15px;
	}
}

.slider .slick-slider .arrows button{
	position: absolute;
	top: calc(50% - 15px);
	left: 0;
	width: 18px;
	height: 18px;
	padding: 0;
	line-height: 300px;
	text-align: center;
	font-size: 50px;
	color: #fff;
	background: transparent;
	border: 0;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	overflow: hidden;
	z-index: 3;
}
.slider .slick-slider .arrows button:focus{
	outline: 0;
}
.slider .slick-slider .arrows button:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('assets/img/icons/icon-arrow-back.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.slider .slick-slider .arrows button.slick-next{ left: auto; right: 0; }
.slider .slick-slider .arrows button.slick-next:after{ background-image: url('assets/img/icons/icon-arrow-next.svg'); }

@media screen and (min-width: 768px) {
	.slider .slick-slider .arrows button{
		width: 30px;
		height: 30px;
		top: calc(50% - 14px);
		left: 40px;
	}
	
	.slider .slick-slider .arrows button.slick-next{ left: auto; right: 40px; }
}


/* Components > 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);
}


/* Categories Filter */

.categories-filter ul {
    margin: 0 -15px;
    padding: 0 15px;
    white-space: nowrap;
    overflow: auto;
    display: flex;
    gap: 16px;
}
.categories-filter ul li a {
    display: block;
    padding: 8px 22px;
    border: solid 1px var(--bs-primary);
    border-radius: 50px;
    position: relative;
}
.categories-filter ul li a.active,
.categories-filter ul li a:hover{
	background: var(--bs-primary);
	color: var(--bs-white);
}


/* Components > Title */

.title{
	position: relative;
}

.title h1,
.title h2,
.title h3,
.title h4,
.title h5{
	font-family: 'IvyPresto Display';
	font-weight: 300;
	margin: 0;
}

.title h1{
	font-size: 80px;
	line-height: 80px;
}
.title h2{
	font-size: 36px;
}
.title h3{
	font-size: 32px;
}
.title h4{
	font-size: 22px;
}
.title h5{
	font-size: 20px;
}
.title span{
	color: var(--bs-primary);
}
.title p{
	margin: 0;
	margin-top: 8px;
}

.title .btn{
	margin-top: 20px;
}
.title .subtitle{
	margin: 0;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 15px;
}

.title .description {
	font-size: 17px;
}
.title.lined{
	padding-bottom: 15px;
	border-bottom: 1px solid #262626;
}
.title.max-width{
	max-width: 768px;
}
.title.max-width-lg{
	max-width: 992px;
}

@media screen and (min-width: 992px){
	.title h1{
		font-size: 120px;
		line-height: 120px;
	}
	.title h2{
		font-size: 48px;
	}
	.title h3{
		font-size: 80px;
		line-height: 80px;
	}
	.title h4{
		font-size: 24px;
	}
	.title h5{
		font-size: 22px;
	}
	.title p{
		margin-top: 12px;
	}

	.title .description {
		font-size: 19px;
	}
	.title .btn{
		margin-top: 50px;
	}

}

/* 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;
}
/*@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;
	}
}*/

/* Components > Pagination */

.pagination {
	justify-content: center;
	width: 100%;
	padding: 60px 0 0;
	text-align: center;
}
.pagination .screen-reader-text {
	display: none;
}
.pagination .page-numbers {
	display: inline-block;
	vertical-align: middle;
	padding: 6px 12px;
	font-size: 18px;
}
.pagination .page-numbers:hover{
	color: var(--bs-primary);
}
.pagination .page-numbers.current{
	font-weight: bold;
	color: var(--bs-primary);
}

@media screen and (min-width: 992px) {
	.pagination .page-numbers {
		font-size: 22px;
	}
}


/* 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 */

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

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


/* Structure */

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

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

/* Structure > Header */

.header{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
}

@media screen and (min-width: 992px){
	.header{
		top: 20px;
	}
}

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

@media screen and (min-width: 992px) {
	.header .container{
		justify-content: center;
	}
}


.header .logo{
	display: inline-block;
	max-width: 150px;	
	opacity: 0;
}
/*
header.scrolled .logo {
  opacity: 1;
  z-index: 1;
}*/

.header.fixed{
	position: fixed;
	z-index: 999;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}

@media screen and (max-width: 992px) {
	.header.fixed{
		height: 60px;
	}
}

/* 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: var(--bs-light);
	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: var(--bs-primary);
}

@media screen and (min-width: 992px) {
	.header .navigation {
		border: 1px solid var(--bs-light);
		border-radius: 80px;
	}
}

.header .navigation.active {
	display: block;
	margin-top: -60px;
}
.header .navigation .menu {
	position: relative;
}

.header .navigation.active .menu {
	position: relative;
	height: 100vh;
	display: grid;
	align-content: center;
}

.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 10px 12px;
	font-size: 18px;
	font-weight: 300;
	color: var(--bs-light);
	height: 52px;
}

.header .navigation.active .menu li a {
	font-size: 32px;
}

.header .navigation .menu li.current-menu-item a,
.header .navigation .menu li a:hover{
	color: var(--bs-secondary);
}

.header .navigation .menu li.menu-contact a{
	padding: 8px 32px;
	color: var(--bs-white);
	background: var(--bs-primary);
	border: solid 1px var(--bs-primary);
	transition: 0.3s all;
}

.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{

}
.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: var(--bs-gray);
}
.header .navigation .language li:last-child a:after{
	content: none;
}
.header .navigation .language li.current-lang a{
	text-decoration: underline;
}

header.active .logo{
	opacity: 1;
	z-index: 1;
	margin-top: 5px;
}

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

	.header .logo {
		max-width: 164px;
	}

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

	.header .navigation{
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		top: auto;
		left: auto;
		width: 512px;
		background: var(--bs-primary);
	}
	.header .navigation ul,
	.header .navigation ul li {
		position: relative;
		display: inline-block;
		vertical-align: middle;
	}
	.header .navigation ul{
		margin: 0;
	}

	.header .navigation .menu {
		
	}

	.header .navigation .menu li:not(.menu-contact) a {
		padding: 34px 15px;
	}

	.header.fixed .navigation .menu li:not(.menu-contact) a{
		padding: 16px 15px;
	}

	.header .navigation .menu li a {
		text-align: left;
	}
	.header .navigation .menu li.menu-contact{
		margin-left: 5px;
	}
	.header .navigation .menu li.menu-contact a{
		border-radius: 50px;
	}
	.header .navigation .menu li.menu-contact a:hover{
		background: transparent;
		color: var(--bs-primary);
	}

	.header .navigation .socialmedia {
		margin-left: 25px;
	}
	.header .navigation .socialmedia li a{
		font-size: 20px;
	}

	/* Submenu */

	.header .navigation .menu li .sub-menu{
		display: none;
		position: absolute;
		top: var(--header-min-height);
		left: 0;
		width: 150px;
		background: var(--bs-white);
		box-shadow: 0 5px 5px 0 rgba(0,0,0,0.1);
		animation: dropDown 300ms ease-in-out forwards;
    	transform-origin: top center;
	}
	.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: var(--bs-dark);
		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: var(--bs-primary);
		color: var(--bs-white);
		border-bottom-color: var(--bs-primary); 
	}

	.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;
	}

	/* Fixed */
	.header.fixed{
		min-height: var(--header-fixed-min-height);
	}
	.header.fixed .logo{
		margin: 14px 0;
	}
	.header.fixed .navigation .menu li .sub-menu{
		top: var(--header-fixed-min-height);
	}

}

@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: var(--bs-primary);
		color: var(--bs-white);
	}

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

@media screen and (max-width: 1199px){
	.header.scrolled {
	  background: var(--bs-primary);
	  transition: background 0.3s ease;
	}
}




/*
	Modules
*/

/* Module > Presentation */

.presentation{
  /*position: relative;
  height: 100dvh;           
  overflow: clip;*/
  background: var(--bs-primary);
}
.presentation .container{
  position: sticky;
  top: 0;
  height: 100svh;
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
}


/* Mask */
.presentation .zoom{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 325px;
  height: 400px;
  margin: auto;
  border-top-left-radius: 250px;
  border-top-right-radius: 250px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  will-change: border-radius, width, height, transform;
}

.presentation .zoom img{
	display: block;
  	width: 100%;
  	height: 100%;
  	object-fit: cover;
}
.presentation .logo{
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  z-index: 3;
  will-change: opacity;
  width: 90%;
}

.presentation .title{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  z-index: 3;          
}
.presentation .title h1 {
	display: flex;
	flex-direction: column;	
}
.presentation .title span{
	color: #fff;
}
.presentation .title .left,
.presentation .title .right {
  opacity: 0;
  will-change: opacity, transform;
}


@media screen and (min-width: 992px){
	.presentation .logo{
		bottom: 50px;
	}
}

/* Accesibilidad opcional */
@media (prefers-reduced-motion: reduce){
  .presentation .zoom,
  .presentation .zoom img,
  .presentation .title,
  .presentation .logo{
    transition: all .8s ease;
  }
}


/* Modules > Banner */

.banner{
	position: relative;
	display: flex;
	align-items: center;
	background-color: var(--bs-dark);
	padding: 50px 0;
	min-height: 350px;
	overflow: hidden;
}
.banner .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bs-dark) no-repeat center;
	background-size: cover;	
	z-index: 1;
}
.banner .title{
	position: relative;
	max-width: 650px;
	margin: 0;
	color: var(--bs-white);
	z-index: 2;
}

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

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

	.banner .title p:not(.subtitle) {
    	font-size: 21px;
    }
}

/* Module > CTA */

.module-cta{
	position: relative;
}
.module-cta .image .img{
	background-repeat: no-repeat;
	background-size: cover;
	background-size: cover;
    padding: 32% 0%;
}
.module-cta .image img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.module-cta .text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.module-cta .text > .data {
	/*margin: 0 auto;*/
	padding: 40px 20px;
	max-width: 720px;
}

.module .text .title {
	margin-bottom: 0;
}
@media screen and (min-width: 992px) {
	
	.module-cta .text {
	    justify-content: center;
	}
    .module-cta .text > .data {
    	padding: 60px 70px 60px 110px;
    }
    .module-cta.even .image{
        order: 1;
    }
    .module-cta.even .text{
        order: 2;
    }
}


/* Module > Team */
.module-team .items article .thumbnail img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: 56px;
	border-radius: 50%;
	margin: 0 auto;
	background: var(--bs-gray);
}

/* Module > Testimonial */

.module-testimonial .items article {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}
.module-testimonial .items article .avatar .thumbnail img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: 56px;
	border-radius: 50%;
	margin: 0 auto;
}
.module-testimonial .items article .name{
	font-size: 21px;
}


/* Module > Newsletter */

.module-newsletter{
	
}


/* Module > Stats */

.module-stats .items article .number {
	font-size: 64px;
	font-weight: 700;
}

/* Modules > Faqs */

.module-accordion .items{

}
.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 > Clients */

.module-clients .swiper .swiper-slide article{
    display: flex;
    align-items: center;
    justify-content: center;
}
.module-clients .swiper .swiper-slide article img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.module-clients .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

/* Module > Contact */

.module-contact{
	z-index: 3;
}

/* Module > Tabs */

.module-tabs .tab-content article {
	display: flex;
	flex-direction: column;
	align-items: center;	
}

@media screen and (min-width: 992px) {
	.module-tabs .tab-content article {
		flex-direction: row;
	}

	.module-tabs .tab-content article .thumbnail {
		min-width: 50%;
	}

	.module-tabs .tab-content article .data {
		padding: 0 25px;
	}
}


/* Modules > Filter */

.module-filter .view{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.module-filter .view ul{
	display: flex;
	margin: 0;
}
.module-filter .view ul li{
	position: relative;
	border: solid 1px var(--bs-primary);
	width: 40px;
	height: 34px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.module-filter .view ul li:first-child{
	border-radius: 7px 0 0 7px;
	margin-right: -1px;
}
.module-filter .view ul li:last-child{
	border-radius: 0 7px 7px 0;
}

.module-filter .view label{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 34px;
    margin: 0;
    color: #C8C8C8;
    cursor: pointer;
}
.module-filter .view label input{
	display: none;
}

.module-filter .view label i{
	display: block;
	font-weight: 500;
	width: 15px;
	height: 15px;
	background: no-repeat center;
	filter: grayscale() opacity(0.5);
}
.module-filter .view label i.icon-grid{
	background-image: url('assets/img/icons/icon-grid.svg');
}

.module-filter .view label:hover i.icon-grid,
.module-filter .view label input:checked ~ i.icon-grid{
	filter: none;
}

.module-filter .view label i.icon-list{
	background-image: url('assets/img/icons/icon-list.svg');
}
.module-filter .view label:hover i.icon-list,
.module-filter .view label input:checked ~ i.icon-list{
	filter: none;
}

.module-filter .view label:hover i,
.module-filter .view label input:checked ~ i{
	color: #008BEE;
}

.module-filter .view ul li:has(label input:checked) {
	background: rgb(9 104 245 / 10%);
}


/*
	Pages
*/


/* Page > Home */

.page.home {

}

/* Page > About */

.page.about{

}

/* Page > Properties */


/* Page > Portfolio */


/* Page > Products */


/* Page > Blog */

.page.blog{

}

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

	.page.blog .featured .feed-blog article{
		display: flex;
		align-items: center;
	}
	.page.blog .featured .feed-blog article .thumbnail{
		width: 50%;
	}
	.page.blog .featured .feed-blog article .data{
		width: 50%;
		padding: 50px;
	}
	.page.blog .featured .feed-blog article .title{
		margin: 0;
	}

}

/* Pages > Contact */

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

/* 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);
}

/* Feed > Blog */


.feed-blog article .data {
	padding: 30px 15px;
}
.feed-blog article .data h2{
	margin: 0 0 15px;
}
.feed-blog article .data p{

}
.feed-blog article .meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
}
.feed-blog article .meta .terms li{
	display: inline-block;
	vertical-align: middle;
}
.feed-blog article .meta .terms li a{
	padding: 3px;
	text-transform: uppercase;
	background: #cacaca;
}


/* Feed > Product */

.feed-products article .thumbnail,
.feed-products article .thumbnail img{
	aspect-ratio: 1 / 1;
}

.feed-products article .data {
	padding: 30px 15px;
}
.feed-products article .data h2{
	margin: 0 0 15px;
}
.feed-products article .data p{

}
.feed-products article .meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
}
.feed-products article .meta .terms li{
	display: inline-block;
	vertical-align: middle;
}
.feed-products article .meta .terms li a{
	padding: 3px;
	text-transform: uppercase;
	background: #cacaca;
}

/* Feed > Portfolio */


.feed-portfolio article .thumbnail,
.feed-portfolio article .thumbnail img{
	aspect-ratio: 1.25 / 1;
}

.feed-portfolio article .thumbnail img{
	object-fit: cover;
}

.feed-portfolio article .data {
	padding: 30px 15px;
}
.feed-portfolio article .data h2{
	margin: 0 0 15px;
}
.feed-portfolio article .data p{
	font-size: 16px;
	line-height: 24px;
}
.feed-portfolio article .meta {
	font-size: 12px;
}
.feed-portfolio article .meta .terms li{
	display: inline-block;
	vertical-align: middle;
}
.feed-portfolio article .meta .terms li a{
	padding: 3px;
	text-transform: uppercase;
	background: #cacaca;
}

@media screen and (min-width:992px){
	.feed-portfolio article{
		display: flex;
		align-items: center;
	}
	.feed-portfolio article .thumbnail{
		width: 50%;
	}
	.feed-portfolio article .data{
		width: 50%;
		padding: 30px 50px;
	}
	.feed-portfolio .item:nth-child(even) article{
		flex-direction: row-reverse;
	}
}

/* Feed > Properties */

.feed-properties article{
	position: relative;
}
.feed-properties article a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.feed-properties article .thumbnail{
	display: block;
	aspect-ratio: 1.6 / 1;
	width: 100%;
	height: 100%;
	background: #eee no-repeat center;
	overflow: hidden;
}
.feed-properties article .thumbnail .img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #eee no-repeat center;
	background-size: cover;
	transition: 0.3s all;
}
.feed-properties article:hover .thumbnail .img{
    transform: scale(1.1);
}
.feed-properties article .data {
	padding: 30px 15px;
}
.feed-properties article .data h2{
	margin: 0 0 15px;
}
.feed-properties article .data p{

}
.feed-properties article .meta {
	font-size: 12px;
}
.feed-properties article .meta .terms li{
	display: inline-block;
	vertical-align: middle;
}
.feed-properties article .meta .terms li a{
	padding: 3px;
	text-transform: uppercase;
	background: #cacaca;
}


/*
	CPT Single
*/

/* CPT > Single */

.single{
	
}

.single .content article.post-content{

}
.single .content article.post-content img{
	max-width: 100%;
	height: auto;
}

.single .content article.post-content .wp-block-quote{
	border-left: solid 2px var(--bs-dark);
	padding-left: 30px;
}


/* CPT > Single > Blog */

.single.blog{
	
}

.single.blog .tags {
	margin: 40px 0;
    padding: 20px 0;
}
.single.blog .tags h4{
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
}
.single.blog .tags ul{
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	gap: 16px;
}
.single.blog .tags ul li a{
	display: block;
	background: transparent;
	color: var(--bs-primary);
	border: solid 1px var(--bs-primary);
	border-radius: 20px;
	padding: 5px 20px;
}

.single.blog .tags ul li a:hover{
	background: var(--bs-primary);
	color: var(--bs-white);
}


/* CPT > single > Portfolio */

.single.portfolio{
	
}


/* Page > Portfolio */

.page.portfolio{

}




/* Structure > Footer */

.footer a:hover{
	color: var(--bs-primary);
	text-decoration: underline;
}

.footer .widgets{
	padding: 50px 0;
	text-align: center;
}
.footer .widgets h4{
	margin: 0;
	font-size: 15px;
	line-height: 28px;
	font-weight: 600;
	text-transform: uppercase;
}

.footer .widgets p{
	margin: 0;
	font-size: 19px;
	font-weight: 300;
	line-height: 22.8px;
	letter-spacing: -0.19px;  
}

.footer .widgets .logo{
	display: block;
	width: 100%;
}

.footer .widgets .menu{
	margin: 0 0 30px;
}
.footer .widgets .menu li a{
	display: block;
	padding: 3px;
}


.footer .copyright {
	padding: 0 0 25px;
}
.footer .copyright p{
	margin: 0;
	font-size: 14px;
	font-weight: 300;
}

.footer .row-logo a img{
	margin: 32px 0;
}

p.footer-title{
	font-weight: 500 !important;
	font-size: 16px !important;
	line-height: 17.6px !important;
	letter-spacing: -0.32px !important;
	padding-bottom: 8px;
}

.footer .widgets .content p span{
	margin-right: 30px;
}

p.footer-signature{
	font-family: 'Abramo Script';
	font-weight: 400 !important;
	font-size: 28px !important;
	padding: 32px 0;
}

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

/* Extras */
.services article img{
	min-height: 110px;
	object-fit: contain;
}

.services article .data span{
	font-family: 'Founders Grotesk';
	font-weight: 300;
	font-size: 16px;
	line-height: 110%;
}

@media screen and (min-width: 992px){
	.services article .data span{
		font-size: 24px;
	}
}

.services article .data h4{
	font-family: 'IvyPresto Display';
	font-weight: 300;
	font-size: 24px;
	line-height: 120%;
	font-style: normal;
}

@media screen and (min-width: 992px){
	.services article .data h4{
		font-size: 52px;
	}
}

.services article .description p{
	font-weight: 300;
	font-size: 18px;
	line-height: 120%;
	letter-spacing: -0.19px;
}

@media screen and (min-width: 992px){
	.services article .description p{
		font-size: 19px;
	}	
}

.services article .description p{
	max-width: 650px;
}

.projects .title{
	margin-bottom: 50px;
}

@media screen and (min-width: 992px){
	.projects .title{
		margin-bottom: 60px;
	}
}

/*.projects .image img{
	 width: 100%;
}*/

/*.projects .image-1{
    position: relative;
    width: 50vw;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.projects .image-2 {
    width: 25vw;
    top: -4vw;
    left: 65vw;
    z-index: 1;
}

.projects .image-3 {
	width: 35vw;
	top: 49vw;
    left: 67vw;
}

.projects .image-4 {
	width: 25vw;
	top: 45vw;
	left: 10vw;
}

.projects .image-5 {
	width: 35vw;
	top: -4vw;
	left: -1vw;
}*/

@media screen and (max-width: 992px){
	.projects .grid {
		width: 100%;
	}

	.projects .image img{
		width: 100%;
	}

	.projects .swiper-wrapper{
		display: flex;
		align-items: center;
	}

	.projects .swiper-button-next,
	.projects .swiper-button-prev {
	    top: var(--swiper-navigation-top-offset, 54%) !important;
	    margin-top: 0 !important;
	}
}

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

	.projects .grid {
		position: relative;
		z-index: 2;
		margin-bottom: 34px;
	}

	.projects .image {
		position: absolute;
	}

	.projects .grid {
		height: 121vh;
		margin-bottom: 0;
	}

	.projects .image-1{
	    width: 558px;
	    left: 0;
	    right: 0;
	    margin: 0 auto;
	}

	.projects .image-2 {
	    width: 269px;
	    top: 160px;
	    left: auto;
	    right: 130px;
	    z-index: 1;
	}

	.projects .image-3 {
	    width: 659px;
	    top: 684px;
	    left: auto;
	    right: 20px;
	}

	.projects .image-4 {
	    width: 318px;
	   	top: 621px;
	    left: 60px;
	}

	.projects .image-5 {
	    width: 493px;
	    top: 80px;
	    left: 108px;
	}

}

.flower-left {
    background: url(assets/img/others/flower-left.png) no-repeat center;
    background-size: cover;
}

.flower-left {
	position: absolute;
	top: 475px;
	left: 0;
	width: 490px;
	height: 500px;
}

.flower-right {
    background: url(assets/img/others/flower-right.png) no-repeat center;
    background-size: cover;
}

.flower-right {
	position: absolute;
	bottom: 245px;
	right: 0;
	width: 300px;
	height: 250px;
}

.about .flower-right {
	z-index: -2;
}

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

	.flower-right {
		width: 490px;
		height: 500px;
	}

}

.palm-left {
    background: url(assets/img/others/palm-left.png) no-repeat center;
    background-size: cover;
}

.palm-left {
    position: absolute;
    bottom: 37px;
    left: 4px;
    width: 62px;
    height: 83px;
}

@media screen and (min-width: 992px){
	.palm-left {
		bottom: 70px;
		left: 220px;
		width: 124px;
		height: 166px;
	}
}

.overseeing{
	min-height: 400px;
	background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (min-width: 992px){
	.overseeing{
		min-height: 800px;
		background-size: auto;
	}
}

.overseeing .title h3 span{
	font-style: italic;
}

.overseeing .title p{
	font-family: 'IvyPresto Display';
	font-weight: 300;
	font-size: 20px;
	line-height: 120%;
	max-width: 980px;
	margin: 24px auto 0;
}

@media screen and (min-width: 992px){
	.overseeing .title p{
		font-size: 40px;
	}	
}

.about .title{
	max-width: 986px;
	margin-bottom: 24px;
}

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

.about .title h3{
	margin-bottom: 24px;
}

.about .title p{
	font-family: 'IvyPresto Display';
	font-weight: 300;
	font-size: 20px;
	line-height: 120%;
}

@media screen and (min-width: 992px){
	.about .title p{
		font-size: 40px;
	}
}

.about .grid {
	position: relative;
	perspective: 1000px;
	transform-style: preserve-3d;
	height: 50vh;
}

@media screen and (min-width: 992px){
	.about .grid {
		height: 120vh;
	}
}

.about .image {
	position: absolute;
	overflow: hidden;
    transform-origin: center;
    will-change: transform, opacity;
    width: 50vw;
}

.about .image img{
	height: auto;
	opacity: 0;
	transform: scale(0.8);
	will-change: transform, opacity;
}

.about .image-1{
    top: 0;
    left: 0;
}

.about .image-2 {
    right: 0;
    top: 150px;
    z-index: 1;
}

.about .image-3 {
    left: 0;
    bottom: 0;
}

/*.about .image img{
	width: 100%;
	height: 342px;
}*/

@media screen and (min-width: 992px){
	/*.about .image {
		position: absolute;
		overflow: hidden;
	    transform-origin: center;
	    will-change: transform, opacity;
	}

	.about .image img{
		height: auto;
		opacity: 0;
		transform: scale(0.8);
		will-change: transform, opacity;
	}*/
}

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

	.about .image-1{
	    width: 652px;
	    top: 0;
	    left: 0;
	}

	.about .image-2 {
	    width: 541px;
	    right: 0;
	    top: 350px;
	    z-index: 1;
	}

	.about .image-3 {
	    width: 638px;
	    left: 50px;
	    bottom: 50px;
	}

}


.marquee-services{
	padding: 10px 0;
}

@media screen and (min-width: 992px){
	.marquee-services{
		padding: 60px 0;
	}
}

.marquee-services {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  background: var(--bs-primary); /* usa tu bg-primary */
  color: var(--bs-secondary);    /* usa tu text-secondary */
}

.marquee-services .marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-services .item {
  padding: 0;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.marquee-services .item h4{
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0;
}

@media screen and (min-width: 992px){
	.marquee-services .item h4{
	  font-size: 48px;
	  font-style: normal;
	}	
}

.marquee-services .item:not(:last-child) h4::after {
  content: " / ";
  margin: 0 1rem; /* separación visual */
  font-weight: 300; /* opcional, un poco más liviano */
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonials .title p{
	font-family: 'IvyPresto Display';
	margin-top: 12px;
	font-weight: 300;
	font-size: 20px;
	line-height: 120%;
}

@media screen and (min-width: 992px){
	.testimonials .title p{
		margin-top: 24px;
		font-size: 40px;
		line-height: 120%;
	}
}

.testimonials .swiper{
	margin-top: 40px;
}

@media screen and (min-width: 992px){
	.testimonials .swiper{
		margin-top: 80px;
		max-width: 1200px;
	}	
}

.testimonials .swiper article{
	border: 1px solid var(--bs-primary);
	padding: 45px;
	border-radius: 30px;
}

@media screen and (min-width: 992px){
	.testimonials .swiper article{
		padding: 32px;
	}
}

.testimonials .swiper article h4{

	font-weight: 500;
	font-size: 24px;
	line-height: 26.4px;
	letter-spacing: -0.48px;
}

.testimonials .swiper article p{
	font-family: 'Founders Grotesk';
	font-weight: 300;
	font-size: 18px;

}

@media screen and (min-width: 992px){
	.testimonials .swiper article p{
		font-size: 24px;
		line-height: 26.4px;
		letter-spacing: -0.48px;
	}
}

.testimonials .stars {
  display: flex;
  gap: 4px;
  font-size: 32px; /* tamaño de las estrellas */
}

.testimonials .star {
  color: transparent;
  -webkit-text-stroke: 1px #D2E412; /* borde de la estrella */
}

.testimonials .star.full {
  color: #D2E412; /* relleno de estrella */
  -webkit-text-stroke: 1px #D2E412; /* mismo color para borde */
}

.testimonials .star.empty {
  color: transparent; /* sin relleno */
  -webkit-text-stroke: 1px #D2E412; /* solo borde */
}

.module-contact .title h3{
	margin-bottom: 30px;
}

@media screen and (min-width: 992px){
	.module-contact .title h3{
		margin-bottom: 60px;
	}	
}

.module-contact .title p{
	font-weight: 300;
	font-size: 18px;
	line-height: 19.8px;
	letter-spacing: -0.36px; 
}

@media screen and (min-width: 992px){
	.module-contact .title p{
		font-size: 24px;
		line-height: 26.4px;
		letter-spacing: -0.48px;
	}
}

.module-contact .form-control{
	border: 1px solid var(--bs-primary);
	border-radius: 30px;
	background-color: transparent;
	padding: 6px 20px;
}

input.form-control{
	height: 60px;
}

/* Para la mayoría de los navegadores modernos */
::placeholder {
  color: #0A172E;
  opacity: 1; /* Asegura que el color no sea translúcido */
}

/* Para navegadores basados en WebKit (Chrome, Safari, etc.) y antiguos */
::-webkit-input-placeholder {
  color: #0A172E;
}

/* Para navegadores de Microsoft (Edge, IE) */
:-ms-input-placeholder {
  color: #0A172E;
}

/* Para Firefox */
::-moz-placeholder {
  color: #0A172E;
}

.module-contact button[type="submit"] {
	font-weight: 300;
	font-size: 18px;
	letter-spacing: -0.36px;
	width: 150px;
	height: 39px;
	text-align: left;
	position: relative;
	line-height: 24px;
}

.module-contact button[type="submit"]::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-image: url('assets/img/icons/icon-arrow-inclined.svg');
  background-size: contain; 
  background-repeat: no-repeat;
}

.module-contact button[type="submit"]:hover::before {
  filter: brightness(0) saturate(100%) invert(7%) sepia(69%) saturate(993%) hue-rotate(188deg) brightness(94%) contrast(99%);
}

.module-contact button[type="submit"].btn-loading::before {
  filter: brightness(0) invert(1); /* Vuelve el icono blanco */
}

.circle-text {
  position: relative;
  width: 94px;
  height: 94px;
  top: 25px;
  left: 92%;
  z-index: 1;
}

.circle-text svg {
  animation: spin 15s linear infinite; /* animación opcional */
}

.circle-text .arrow {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #7fbcd2; /* azul de la flecha */
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.f-thumbs.is-modern,
.f-counter{
	display: none;
}

/* Ocultar todos los botones excepto la X */
.f-carousel__toolbar__column.is-right button[data-panzoom-action],
.f-carousel__toolbar__column.is-right button[data-autoplay-action],
.f-carousel__toolbar__column.is-right button[data-fullscreen-action],
.f-carousel__toolbar__column.is-right button[data-thumbs-action] {
  display: none !important;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn{
    color: var(--bs-light) !important;
    pointer-events: none;
    background-color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
    opacity: var(--bs-btn-disabled-opacity);
}

/* Flecha anterior */
.f-button.is-prev{
	width: 50px;
	height: 50px;
    background-image: url('assets/img/icons/icon-arrow-prev.svg');
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid var(--bs-primary);
    background-color: var(--bs-light);
}

/* Flecha siguiente */
.f-button.is-next{
	width: 50px;
	height: 50px;
    background-image: url('assets/img/icons/icon-arrow-next.svg');
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid var(--bs-primary);
    background-color: var(--bs-light);
}

.f-button.is-next:hover,
.f-button.is-prev:hover{
	border: 1px solid var(--bs-primary);
	background-color: var(--bs-light);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
    left: 10px;
}

.is-horizontal.is-ltr .f-button.is-arrow.is-next {
    right: 10px;
}

@media screen and (min-width: 992px){
	.f-button.is-prev {
	    width: 50px;
	    height: 50px;
	}

	.f-button.is-next {
	    width: 50px;
	    height: 50px;
	}

	.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
	    left: 32px;
	}

	.is-horizontal.is-ltr .f-button.is-arrow.is-next {
	    right: 32px;
	}
}

/* Ocultar el SVG interno */
.f-button.is-arrow svg {
    display: none;
}

/* Lenis */
html.lenis,html.lenis body{height:auto}.lenis:not(.lenis-autoToggle).lenis-stopped{overflow:clip}.lenis.lenis-smooth [data-lenis-prevent]{overscroll-behavior:contain}.lenis.lenis-smooth iframe{pointer-events:none}.lenis.lenis-autoToggle{transition-property:overflow;transition-duration:1ms;transition-behavior:allow-discrete}
