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

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

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

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

    --bs-body-color: #6F6F6F;
    --bs-body-bg: #fff;

    --bs-primary: #385838;
    --bs-primary-rgb: 56,88,56;
    --bs-secondary: #ACC549;
    --bs-secondary-rgb: 172,197,73;
    --bs-white: #fff;
    --bs-light: #E8EBE6;
    --bs-light-rgb:232,235,230;
    --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: 90px;
		--header-fixed-min-height: 70px;
	}
}

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


/* 3. Structure */

html{
	scroll-behavior: smooth;
}

body{
	font-size: 16px;
	font-weight: 400;
	font-family: "Inter", Helvetica, 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-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;
}


.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: 6px;
	--bs-btn-font-weight: 700;
	text-transform: uppercase;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 6px;
}

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

.btn-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px; /* espacio entre botón y flecha */
}

.btn-arrow {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}

.home .btn-wrapper-white .btn-arrow{
	background: #FFFFFFCC; 
	color: var(--bs-primary);
}

.btn-wrapper-white .btn-arrow{
	background: var(--bs-white); 
	color: var(--bs-primary);
}

.btn-wrapper-white:hover .btn-white{
	background: var(--bs-primary);
	color: #fff;
	border: 1px solid var(--bs-white);
}

.btn-wrapper-white:hover .btn-arrow{
	background: var(--bs-primary);
	color: #fff;
	border: 1px solid var(--bs-white);
}


.btn-wrapper-primary .btn-arrow{
	background: var(--bs-primary); 
	color: var(--bs-white);
}

.btn-wrapper-primary:hover .btn-primary{
	background: var(--bs-white);
	color: var(--bs-primary);
}

.btn-wrapper-primary:hover .btn-arrow{
	background: var(--bs-white);
	color: var(--bs-primary);
	border: 1px solid var(--bs-primary);
}

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

    --bs-btn-hover-bg: var(--bs-white);
    --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-white{
    --bs-btn-bg: var(--bs-white);
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-white);

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

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

.btn-white img{
	filter: brightness(0) saturate(100%) invert(28%) sepia(38%) saturate(494%) hue-rotate(71deg) brightness(91%) contrast(84%);
}

.btn-white:hover img{
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(287deg) brightness(106%) contrast(104%);
}


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

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

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

.slider.swiper .swiper-button-prev:after,
.slider.swiper .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;
	margin-bottom: 30px;
}

.title h1,
.title h2,
.title h3,
.title h4,
.title h5{
	margin: 0;
}

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

.title .subtitle{
	text-transform: uppercase;
	font-size: 18px;
}

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

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

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

.title.max-width-xl{
	max-width: 1021px;
}

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title h1{
		font-size: 75px;
	}
	.title h2{
		font-size: 48px;
	}
	.title h3{
		font-size: 41px;
	}
	.title h4{
		font-size: 24px;
	}
	.title h5{
		font-size: 22px;
	}
	.title p:not(.subtitle){
		font-size: 21px;
		margin-top: 12px;
	}
	.title .subtitle{
		font-size: 22px;
	}

	.title .description {
		font-size: 19px;
	}

}

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

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

/* Structure > Header */
body.home .header {
	position: absolute;
	background: transparent;
	box-shadow: none;
}
.header{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);
	background: #fff;
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
	box-shadow: 0px 4px 4px 0px #00000040;
}

.header.active{
	background-color: var(--bs-white) !important;
}

.header.active .logo img{
	filter: none !important;
}

.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
	max-width: 150px;
}

.home .header .logo img{
	filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(4%) hue-rotate(238deg) brightness(104%) contrast(100%);
}

.header.fixed{
	position: fixed !important;
	background: var(--bs-white) !important;
	box-shadow: 0px 4px 4px 0px #00000040 !important;
	z-index: 999;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}

.home .header.fixed a{
	color: var(--bs-primary) !important;
}

.home .header.fixed .logo img{
	filter: brightness(0) saturate(100%) invert(27%) sepia(53%) saturate(347%) hue-rotate(71deg) brightness(93%) contrast(88%);
}

/* Header > Navigation */

.header .nav-menu {
	position: relative;
	float: right;
	width: 35px;
	padding: 15px 0;
	cursor: pointer;
	z-index: 21;
	overflow: hidden;
}

.home .header .nav-menu .menu-line {
	background: var(--bs-white);
}

.header .nav-menu .menu-line {
	float: right;
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: var(--bs-primary);
	transition: 0.3s;
	border-radius: 6px;
}

.home .header.fixed .nav-menu .menu-line,
.home .header.active .nav-menu .menu-line {
	background: var(--bs-primary);
}

.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-white);
}
.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: 400;
	color: var(--bs-primary);
	text-transform: uppercase;
}

@media screen and (min-width: 992px) {
	.home .header .navigation .menu li a {
		color: var(--bs-white);
	}
}

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

.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 .sub-menu a{
	text-transform: capitalize;
	background-color: var(--bs-white);
}

.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 .navigation .menu > li.menu-item-has-children > a:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 11px;
    position: absolute;
    top: calc(50% - 15px);
    right: 8px;
    height: 30px;
    line-height: 30px;
}


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

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

	.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:not(.menu-contact) a {
		padding: 34px 22px;
	}

	.header .navigation .menu li a {
		font-size: 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-primary);
		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);
	}

}

.header .navigation .sub-menu li.active a{
  background-color: var(--bs-primary); 
  color: var(--bs-white) !important;
  transition: background 0.3s ease;
}

@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 ul li ul li a{
		padding-top: 6px;
		padding-bottom: 6px;
		font-size: 16px;
	}
}




/*
	Modules
*/

/* Module > Presentation */

.presentation{
	position: relative;
	display: flex;
	align-items: center;
	height: 100dvh;
	min-height: 600px;
	padding: 30px 0;
	background: var(--bs-dark) no-repeat bottom;
	background-size: cover;
}


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

.presentation .social{
	font-size: 20px;
	font-weight: 400;
	line-height: 100%;
	color: var(--bs-light);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	position: absolute;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);

}

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

.presentation .title p{
	font-size: 20px;
	margin: 17px 0 23px;
}

.presentation .title .btn-white{
    --bs-btn-bg: #FFFFFFCC;
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: transparent;

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

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

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

    .presentation .title p{
    	font-size: 33px;
    	font-weight: 500;
    	line-height: 38px;
    	letter-spacing: 0;
    	margin: 34px 0 46px;
    }
}

.presentation .wrap {
    position: relative;
    background: var(--bs-primary);
    color: #fff;
    padding: 25px 20px;
    max-width: 560px;
    margin: 0 auto;
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .presentation .wrap {
        padding: 40px 70px;
        font-size: 18px;
    }
}

.presentation .wrap .form-control{
	background-color: transparent;
	border-bottom: 3px solid var(--bs-white) !important;
	color: var(--bs-white);
}

.presentation .wrap .form-control::placeholder {
  color: var(--bs-white);
  opacity: 1; 
}

.presentation .wrap .form-control::-webkit-input-placeholder {
  color: var(--bs-white);
}

.presentation .wrap .form-control::-moz-placeholder {
  color: var(--bs-white);
}

.presentation .wrap .form-control:-ms-input-placeholder {
  color: var(--bs-white);
}

.presentation .wrap .form-control::-ms-input-placeholder {
  color: var(--bs-white);
}

.presentation .wrap .btn-contact {
    color: var(--bs-white);
}

.presentation .wrap .btn-contact img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(9%) hue-rotate(198deg) brightness(103%) contrast(100%);
}

.presentation .wrap .btn-contact:hover img {
 
}

.presentation .wrap .logo img{
	filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(9%) hue-rotate(198deg) brightness(103%) contrast(100%);
}


/* 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 .bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background-blend-mode: multiply;
  z-index: 1;
}


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

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


.banner .title h1{
	font-size: 28px;
}

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

	.banner .bg::before {
	  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 45%);

	}

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

    .banner .title h1{
    	font-size: 41px;
    }

}



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

.module-clients .swiper-slide {
  position: relative;
}

.module-clients .swiper-slide::after {
  content: "";
  position: absolute;
  right: -10px; /* espacio del punto respecto al icono */
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--bs-primary);
  border-radius: 50%;
}

/* ocultar el separador del último slide visible */
.module-clients .swiper-slide:last-child::after {
	display: none;
}

.module-clients .swiper .swiper-slide article{
    display: flex;
    align-items: center;
    justify-content: center;
}
.module-clients .swiper .swiper-slide article img {
	aspect-ratio: 2 / 1;
    object-fit: contain;
    padding: 0 20px;
    width: 100%;
}

/*.module-clients .swiper-wrapper {
	align-items: center;
	-webkit-transition-timing-function: linear !important;
	-o-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
}*/


/*
	Pages
*/


/* Page > Home */

.page.home .company .btn-wrapper{
	margin-top: 24px;
}

@media screen and (min-width: 992px) {
	.page.home .company .btn-wrapper{
		margin-top: 38px;
	}
}

.page.home .areas article{
	position: relative;
	background: var(--bs-dark) no-repeat center;
	background-size: cover;	
	height: 592px;
	color: #FFF;
	padding: 50px 12px;
}

@media screen and (min-width: 992px) {
	.page.home .areas article{
		padding: 100px;
	}
}

.page.home .areas article::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(17px);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
	clip-path: polygon(0% 62%, 0% 0%, 100% 0%);
}

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

	.page.home .areas article::before{
	    clip-path: polygon(0% 135%, 0% 0%, 56% 0%);
	}

}

.page.home .areas article::after{
	content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(17px);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
    clip-path: polygon(100% 100%, 100% 65%, 65% 100%);
}

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

	.page.home .areas article::after{
	    clip-path: polygon(100% 100%, 100% 34%, 80% 100%);
	}

}

.page.home .areas .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.page.home .areas .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
}

.page.home .areas .swiper-pagination{
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (min-width: 992px) {
	.page.home .areas .swiper-pagination{
		display: flex;
		align-items: center;
		justify-content: left;
	}	
}

.page.home .areas .swiper-horizontal>.swiper-pagination-bullets, 
.page.home .areas .swiper-pagination-bullets.swiper-pagination-horizontal, 
.page.home .areas .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 15px;;
    left: 0;
}

@media screen and (min-width: 992px) {
	.page.home .areas .swiper-horizontal>.swiper-pagination-bullets, 
	.page.home .areas .swiper-pagination-bullets.swiper-pagination-horizontal, 
	.page.home .areas .swiper-pagination-custom, .swiper-pagination-fraction {
		bottom: 110px;;
	    left: 90px;
	}
}

.page.home .areas .swiper-pagination-bullet{
	background-color: var(--bs-white);
	opacity: 1;
	width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
	height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
}

.page.home .areas .swiper-pagination-bullet-active{
	width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 13px));
	height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 13px));
}

.page.home .areas article .title{
	max-width: 340px;
}

.page.home .divider{
	width: 100%;
	height: 88px;
	background: url('assets/img/others/divider.png') no-repeat center;
}

/*.page.home .module-clients .swiper {
  overflow: visible;
}
*/
.page.home .module-clients .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}


.module-clients .swiper-button-next, 
.module-clients .swiper-button-prev{
	background-color: var(--bs-primary);
	border: 1px solid var(--bs-primary);
	border-radius: 50%;
}

.swiper-button-prev.circle {
    background-image: url('assets/img/icons/icon-arrow-green-prev.svg'); /* tu imagen */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px; 
    height: 30px;
}

.swiper-button-next.circle {
    background-image: url('assets/img/icons/icon-arrow-green-next.svg'); /* tu imagen */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px; 
    height: 30px;
}

/* Opcional: eliminar la flecha por defecto de Swiper */
.swiper-button-prev::after,
.swiper-button-next::after {
    content: none;
}

.module-clients .swiper-button-next:after, 
.module-clients .swiper-button-prev:after{
	color: var(--bs-white);
	font-size: 13px;
}

.page.home .module-clients .content-arrows{
	position: absolute;
	width: 100px;
	top: 58px;
	right: 12px;
}

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

	.page.home .module-clients .content-arrows{
		top: 101px;
		right: 135px;
	}

}

/*.module-clients .swiper {
  overflow: visible;
}*/

.page.home .members .items{
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 77px;
}

.page.home .members .items article img{
	width: 190px;
	height: 65px;
	object-fit: contain;
}


/* Pages > Contact */

.page.contact .banner .title {
    margin-top: 145px;
}

@media screen and (min-width: 992px) {
	.page.contact .banner .title {
	    margin-top: 0;
	}
}

.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 */
.page.projects .banner .title{
	max-width: 415px;
}

.page.projects .feed{
	padding: 0 0 78px;
}

.page.projects .news.feed{
	padding: 78px 0;
	border-top: 3px solid #385838;
}

.page.projects .news.feed a{
	position: relative;
	width: auto;
}

.page.projects .news.feed a.btn {
    min-width: 100px;
    --bs-btn-padding-x: 20px;
}

@media screen and (min-width: 992px) {
	.page.projects .news.feed a.btn {
	    min-width: 150px;
	    --bs-btn-padding-x: 30px;
	}	
}

.feed .category-title h4{
	font-weight: 400;
	font-size: 26px;
	line-height: 100%;
}

.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 / 1;
	width: 100%;
	height: 100%;
	background-color: #eee;
	overflow: hidden;
	position: relative;
}

.feed article .thumbnail .meta{
	position: absolute;
    bottom: 20px;
    right: 20px;
    width: fit-content;
}

.feed article .thumbnail .meta ul li{
	font-weight: 700;
	font-size: 13.5px;
	line-height: 100%;
	letter-spacing: 0;
	text-transform: uppercase;
	padding: 6px 24px;
	border-radius: 38px;
}

.feed article .thumbnail .meta ul li.term-white{
	background-color: #FFFFFFCC;
	color: var(--bs-primary);
}

.feed article .thumbnail .meta ul li.term-primary{
	background-color: #385838CC;
	color: var(--bs-white);
}

.feed article .thumbnail img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: 100%;
	transition: 0.3s all;
}
.feed article:hover .thumbnail img{
    transform: scale(1.1);
}

.feed  article .data{
	font-size: 21px;
	line-height: 100%;
	color: var(--bs-primary);
}

.feed  article .data h2{
	font-weight: 700;
}
.feed article .data p{
	font-weight: 400;
}

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


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




/* Structure > Footer */

.footer a:hover{
	color: var(--bs-white);
	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 .logo{
	display: block;
	width: 339px;
	margin: 0 auto 30px;
}

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


.footer .copyright {
	font-weight: 400;
	font-size: 13px;
	line-height: 100%;
	text-transform: uppercase;
}
.footer .copyright p{
	margin: 0;
	font-size: 16px;
}

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

/* Extras */

.p-100{
	padding: 50px 12px;
}

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

	.p-100{
		padding:20px 80px;
	}

}

.about .module-team .items{
	max-width: 1000px;
	margin: 0 auto;
}

.about .module-team .items article .thumbnail img{
	width: 146px;
	height: 146px;
	border-radius: 100px;
	border: 1.5px solid var(--bs-primary);
}

.about .module-team .items article .data .name{
	font-size: 16.5px;
	line-height: 100%;
	font-weight: 700;
}

.about .module-team .items article .data .position{
	font-size: 16.5px;
	line-height: 100%;
	font-weight: 400;
}

.about .vision .title h3 i{
	font-size: 28px;
}

.about .values ul li{
	font-size: 21px;
    margin-top: 12px;
}

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

	.about .section.policies {
	  position: relative; 
	}

	.section.policies .row.items::before {
	  content: "";
	  position: absolute;
	  left: 50%;               
	  width: 2px;              
	  height: 200px;
	  background-color: #fff;
	  transform: translateX(-50%);
	  top: 50%;
	  transform: translate(-50%, -50%);
	}

}

.about .certifications .items article .thumbnail img{
	width: 138px;
	height: 138px;
	border-radius: 100px;
	background-color: #385838;
}

.about .certifications .items article .data p{
	font-size: 15px;
	line-height: 100%; 
}


.about .policies article {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.about .policies article .data p{
	margin: 20px 0;
}

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

	.about .policies article .data p{
		margin: 39px 0;
	}

}

.page.contact .form-control,
.page.landing .form-control{
	border-bottom: 3px solid var(--bs-body-color);
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-radius: 0;
}

.page.contact ul{
    font-size: 21px;
    margin-top: 12px;
    color: #000 !important;
}

.page.contact ul li p,
.page.contact ul li a{
	color: #000 !important;
}

.page.contact ul span{
	font-size: 30px;
	line-height: 100%;
	font-weight: 400;
	display: block;
	margin-bottom: 21px;
}

.btn-contact{
	min-width: auto;
	padding: 0;
	color: var(--bs-primary);
	text-transform: capitalize;
	font-size: 30px;
	font-weight: 400;
	border: 0;
}

.btn-contact:active{
	border: 0;
}

.btn-contact img{
	width: 44px;
}

.btn-contact:hover img{
	filter: brightness(0) saturate(100%) invert(47%) sepia(0%) saturate(0%) hue-rotate(250deg) brightness(92%) contrast(87%);
}

footer .vias ul{
	font-weight: 700;
	font-size: 14px;
	line-height: 100%;
}

.page.projects .about hr{
	border-top: 2px solid var(--bs-primary);
	opacity: 1;
}

/*.page.projects .video {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: var(--bs-primary);
}

.page.projects .video video{
	width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}*/

.page.projects .video {
  position: relative;
  height: calc(43vh - 90px);
  overflow: hidden;
}

@media screen and (min-width: 992px){
	.page.projects .video {
	  height: calc(100vh - 90px);
	}
}

.page.projects .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page.projects .video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0); /* fuerza uso de GPU */
  will-change: transform;
}

.page.management-policies section .btn{
	display: flex;
	align-items: center;
	width: fit-content;
	padding: 6px 15px;
	justify-content: center;
	margin-top: 24px;
}

.page.management-policies section .btn:active{
	color: var(--bs-white);
}

@media screen and (min-width: 992px){
	.page.management-policies section .btn{
		margin-top: 45px;
	}
}

.page.management-policies .section .btn-white:hover{
	border: 1px solid var(--bs-white);
}

.page.management-policies .section .title h4{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 45px;
}

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

	.page.management-policies .section .title h4{
		font-size: 26px;
		margin-bottom: 93px;
	}

}

@media screen and (min-width: 992px){
	.page.management-policies .section.content .container{
		box-shadow: 0px 3px 4px 0px #00000040;
	}
}

@media screen and (max-width: 992px){
	.single.projects .content{
		padding-bottom: 0;
	}

}

.single.projects .content .title p.subtitle{
	font-size: 26px;
	text-transform: none;
}

.single.projects .content .title p{
	font-size: 16px;
}

.single.projects .map{
	position: relative;
	height: 300px;
}
.single.projects .map .maparea{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.single.projects .horizontal-slider .slides img{
	height: 180px;
	width: 99%;
	object-fit: cover;
}

@media screen and (min-width: 992px){
	.single.projects .horizontal-slider .slides img{
		height: 360px;
	}
}

.single.projects .slider .first-slider,
.single.projects .slider .second-slider{
	display: grid;
	grid-template-columns: 1fr;
}

@media screen and (min-width: 992px){
	.single.projects .slider .first-slider{
		grid-template-columns: 1fr 2fr 2fr;
	}

	.single.projects .slider .second-slider{
		display: grid;
		grid-template-columns: 2fr 2fr 1fr;
	}
}

.single.projects .slider img{
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.journey .title{
	margin-bottom: 100px;
}

.timeline-button{
	background: none;
	border: 0;
}

.timeline {
	position: relative;
	display: flex;
	gap: 2rem;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 30%;          
  left: 0;
  width: 4256px;
  height: 3px;
  background-color: #fff;
  transform: translateY(-50%);
  z-index: 0;
}

.timeline .year {
	display: block;
	transform: rotate(-90deg);
	padding: 20px 0;
	color: #90A17A;
}

.timeline .line .year.active {
	text-decoration: underline;
	color: var(--bs-white);
}

.timeline .circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #fff;
  margin-top: 100px;
}

.timeline .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline .line::before {
  content: '';
  position: absolute;
  top: 30%; /* centro del contenedor */
  transform: translateY(-50%); 
  width: 1px;
  height: 20px; 
  background: #fff;
}

.timeline .line.active::before {
  content: '';
  position: absolute;
  top: 30%; /* centro del contenedor */
  transform: translateY(-50%);
  width: 1px;
  height: 35px; 
  background: #fff;
}