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

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

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

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

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

	--bs-primary: #0E0E0E;
	/*--bs-primary-rgb: 252,63,80;*/
	--bs-secondary: #F7F4EB;
	/*--bs-secondary-rgb: 245,132,38;*/

    --bs-white: #fff;
    --bs-light: #F7F4EB;
    --bs-blue: #9FE2D9;

	--bs-black: #000;
    --bs-dark: #151515;
	--bs-gray: #cacaca;

	/* 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: 72px;
		--header-fixed-min-height: 72px;
	}
}

/* Animate */

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

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

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

/* Utilities */

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

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

.text-blue{ 
	color: var(--bs-blue) !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; 
}

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

/* 3. Structure */

html{
	scroll-behavior: smooth;
}

body{
	font-size: 16px;
	font-weight: 400;
	font-family: 'NeueHaasGroteskText Pro';
	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: 36px; }
	h3 { font-size: 26px; }
	h4 { font-size: 22px; }
	h5 { font-size: 20px; }
	h6 { font-size: 18px; }
}

b, strong {
    font-weight: 700;
}

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

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

/* 4. Structure > Framework */

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

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

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

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

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

/* Keyframes */

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

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

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

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

/* Structure > extras */

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

.overh{
	overflow: hidden;
}

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

.grecaptcha-badge{
	opacity:0;
}


/* Components > buttons */

.btn{
	/*min-width: 150px;*/
	--bs-btn-padding-x: 14px;
	--bs-btn-padding-y: 5px;
	--bs-btn-font-weight: 400;
	border-radius: 38px;
	font-size: 23px;
}
.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: rgba(255, 255, 255, 0.2);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-light);

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

    --bs-btn-hover-bg: var(--bs-light);
    --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-primary);
    --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-primary);
    --bs-btn-active-color: var(--bs-secondary);
    --bs-btn-active-border-color: var(--bs-secondary);
}

.btn-secondary:hover img{
	filter: brightness(0) saturate(100%) invert(90%) sepia(6%) saturate(994%) hue-rotate(321deg) brightness(113%) contrast(94%);
}

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

/* Structure */

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

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

/* Structure > Header */

.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);
	background: transparent;
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
	/*box-shadow: 0px 4px 7.3px -3px #000000;*/
}
.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
	max-width: 150px;
}

.header.fixed{
	position: fixed;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	z-index: 999;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
    background-color: var(--bs-primary);
}

/* 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-secondary);
	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);
}
body.open-menu .header .navigation {
	display: block;
}
.header .navigation .menu {
	position: relative;
}
.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 10px 12px;
	font-size: 18px;
	font-weight: 500;
	color: var(--bs-secondary);
	text-transform: uppercase;
}
.header .navigation .menu li.current-menu-item a,
.header .navigation .menu li a:hover{
	color: var(--bs-secondary);
	text-decoration: underline;
	text-underline-offset: 6px; 
}

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

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

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

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

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

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

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

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

.header .navigation .menu-contacto-uppercase a{
	text-transform: uppercase;
}


/* 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-control, .form-check-input{
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 4px;
}

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

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

/* 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;
	padding: 5px;
}
ul.socialmedia li a:hover{
	color: var(--bs-blue);
}

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





/* 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;
	line-height: 106%;
}

.title h1{
	font-size: 30px;
}
.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;
	line-height: 100%;
}

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

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

.max-width-xs{
	max-width: 485px;
}

.max-width-sm{
	max-width: 535px;
}

.max-width-md{
	max-width: 570px;
}

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

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title h1{
		font-size: 70px;
	}
	.title h2{
		font-size: 55px;
	}
	.title h3{
		font-size: 38px;
		font-weight: 400;
	}
	.title h4{
		font-size: 24px;
	}
	.title h5{
		font-size: 22px;
	}
	.title p{
		margin-top: 12px;
	}

	.title .description {
		font-size: 20px;
	}
	.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;
	}
}



/*
	Modules
*/

/* Module > Presentation */

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

.presentation .slider .slide{
	display: flex;
	align-items: center;
	height: calc(100vh - var(--header-min-height));
	min-height: 600px;
	padding: 30px 0;
	background:  #eee no-repeat bottom;
	background-size: cover;
}

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

.presentation .title h3{
	font-family: 'Archivo';
	font-weight: 300;
	font-size: 15px;
	line-height: 17.1px;
	letter-spacing: 0.5em;
	text-transform: uppercase;

}

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

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

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

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

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


/* 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%;
	z-index: 1;
}
.banner .bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner .title{
	position: relative;
	max-width: 650px;
	margin: 0;
	color: var(--bs-white);
	z-index: 2;
}

.banner .arrow-down{
    display: block;
    position: absolute;
    left: calc(50% - 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;
    z-index: 3;
}

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

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


/* Module > Tab Menu */

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

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

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


/* Modules > Image & Text */

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


/* Module > Image */

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


/* Module > Video */

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


/* Modules > Full Image */

.module-full-img{
	display: flex;
	align-items: center;
	background: var(--bs-dark) no-repeat center;
	color: var(--bs-white);
	background-size: cover;	
	padding: 50px 0;
	height: 90vh;
}

/*
	Pages
*/


/* Page > Home */

.page.home {

}

.page.home .section.presentation {
    padding: calc(50px + var(--header-min-height)) 0 50px !important;
}

@media screen and (min-width: 992px) {
    .page.home .section.presentation {
        padding: calc(80px + var(--header-min-height)) 0 80px !important;
    }

    .page.home .presentation p{
       font-size: 29px;
    }
}

.page.home .section.presentation .btn-transparent img{
	filter: invert(1);
}

.page.home .section.presentation .btn-transparent:hover img{
	filter: invert(0);
}

.page.home .about .row{
	margin-top: 30px;
}

@media screen and (min-width: 992px) {
	.page.home .about .row{
		margin-top: 60px;
	}
}

@media screen and (min-width: 992px) {
	.page.home .about article{
		max-width: 255px;
	}
}

.page.home .about article h2{
	font-size: 16px;
	font-weight: 600;
}

.page.home .value{
	height: 100vh;
}

.page.home .value .logo{
	width: 61px;
	height: 72px;
}

.page.home .career .title.button-back a::before {
    background-color: #151515;
}

.page.home .partnerships .title p{
	max-width: 600px;
}

/*@media screen and (min-width: 992px) {
	.page.home .career .btn-outline-primary{
		position: absolute;
	    right: 70px;
	    bottom: 0px;
	}
}*/

/* Page > About */
.page.about .section.presentation {
    padding: calc(50px + var(--header-min-height)) 0 50px !important;
}

@media screen and (min-width: 992px) {
    .page.about .section.presentation {
        padding: calc(80px + var(--header-min-height)) 0 80px !important;
    }
}

.page.about .trajectory .item .year{
	font-size: 32px;
}

.page.about .trajectory .item h2{
	font-size: 20px;
}

.page.about .presentation .title{
	max-width: fit-content;
}

@media screen and (min-width:992px){
	.page.about .trajectory .item .year{
		font-size: 48px;
	}

}

.page.about .presentation .logo,
.page.home .presentation .logo{
	position: absolute;
	bottom: 12px;
	right: 12px;
}

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

	.page.about .presentation .logo,
	.page.home .presentation .logo{
		position: absolute;
		bottom: 70px;
		right: 70px;
	}

}

@media screen and (min-width:992px){
	.page.about .work{
		height: 100vh;
	}
}

.page.about .work p{
	font-size: 29px;
}	

.page.about .trajectory .title{
	max-width: 620px;
}

.page.about .trajectory .item p.description{
	font-size: 18px;
}

@media screen and (min-width:992px){
	.page.about .trajectory .item p.description{
		font-size: 24px;
	}
}

.page.about .team .items{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

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

	.page.about .team .items{
	    grid-template-columns: repeat(5, 1fr);
	    gap: 36px;
	}

}

.page.about .team .items article{
	position: relative;
}

.page.about .team .items article a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 4;
}

.page.about .team .items article h2{
	font-size: 16px;
	margin-top: 20px;
	font-weight: 600;
}

.page.about .team .items article i{
	position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 18px;
}

.page.about .team .items article .image::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0 right:0 bottom:0 left:0 */
    
    background: linear-gradient(
        315deg,
        #000000 8.17%,
        rgba(255, 255, 255, 0) 46.63%
    );

    mix-blend-mode: multiply; 
    pointer-events: none; 
    z-index: 2;
}

.page.about .team .items article .image img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.page.about .team .items article .image .description-overlay {
    position: absolute;
    inset: 0; 
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 20px;
    text-align: left;
    font-size: 15px; 
    line-height: 1.4;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 3; 
}

.page.about .team .items article .image .description-overlay p {
    margin: 0;
}

.page.about .team .items article:hover .image .description-overlay {
    opacity: 1;
}

.page.about .team .items article .image i {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 4; 
    color: white;
    font-size: 22px;
}

.page.about .team-img img{
	max-height: 536px;
	object-fit: cover;
}

.page.about .trajectory .timeline-row {
    position: relative;
    margin-top: 40px;  
}

@media (min-width: 992px) {
	.page.about .trajectory .timeline-row {
	    position: relative;
	    margin-top: 82px;  
	}
}

@media (max-width: 767px) {
    .page.about .trajectory .timeline-row::before {
        content: '';
        position: absolute;
        top: 35px;
        bottom: 15px; 
        left: 20px; 
        width: 2px;
        background-color: #fff;
        z-index: 1;
    }

    .page.about .trajectory .timeline-row::after {
        content: '';
        position: absolute;
        bottom: 15px;
        left: 17px; 
        width: 8px;
        height: 8px;
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        border-top: none; 
        transform: rotate(45deg);
        z-index: 1;
    }
    
    .page.about .trajectory .item {
        margin-bottom: 30px;
    }
}


@media (min-width: 768px) {
    
    .page.about .trajectory .timeline-row::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 15px;
        right: 15px;
        height: 2px;
        background-color: #fff;
        z-index: 1;
    }

    /* 3. La Flecha al final */
    .page.about .trajectory .timeline-row::after {
        content: '';
        position: absolute;
        top: 7px;
        right: 15px;
        width: 8px;
        height: 8px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
    }
}

.page.about .trajectory .timeline-row article{
	max-width: 270px;
}

.page.about .trajectory .item {
    position: relative;
}

.page.about .trajectory .item::before {
    content: '';
    top: 30px;
    display: block;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 50%;
    margin-bottom: 0;
    position: relative; 
    z-index: 2; 
}

@media (min-width: 768px) {
	.page.about .trajectory .item::before {
	    margin-bottom: 15px;
	    top: 0;
	}
}

.page.about .trajectory .item:first-child::before {
    content: '';
    top: 26px;
    width: 2px;
    height: 15px;
    background-color: var(--bs-white);
    border-radius: 50%;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    transform: rotate(90deg);
    left: 8px;
}


@media (min-width: 768px) {
	.page.about .trajectory .item:first-child::before {
	    content: '';
	    top: 30px;
	    display: block;
	    height: 20px;
	    z-index: 2;
	    transform: rotate(0);
    	left: 0;
	}
}

@media (min-width: 768px) {
	.page.about .trajectory .item:first-child::before {
	    margin-bottom: 15px;
	    top: 0;
	}
}

/* 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 .section.content {
    padding: calc(50px + var(--header-min-height)) 0 50px !important;
}

@media screen and (min-width: 992px) {
    .page.contact .section.content {
        padding: calc(80px + var(--header-min-height)) 0 80px !important;
    }
}

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

.page.contact .content .vias ul li img{
	filter: invert(1);
}

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

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #fff !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #fff !important;
    opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #fff !important;
}

input::placeholder,
textarea::placeholder {
    color: #fff !important;
}

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

.page.contact .vias{
	margin-top: 30px;
}

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

	.page.contact .vias{
		margin-top: 130px;
	}

}

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



/*
	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 .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-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 .logo{
	display: block;
	width: 200px;
	margin: 0 auto 30px;
}

.footer .widgets .menu li a{
	display: block;
	padding: 3px 33px;
}

.footer .widgets .menu li a:hover{
	color: var(--bs-blue);
}

.footer .copyright {
	padding: 0 0 65px;
}

.footer .copyright hr{
	opacity: 1;
	margin-bottom: 35px;
}

.footer .copyright li{
	margin: 0;
	font-size: 14px;
	text-decoration: underline;
	padding: 7px 12px;
}

.footer .copyright a:hover{
	color: var(--bs-blue);
}

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

	.footer .copyright li{
		padding: 0 12px;
	}
	
}

/* Extras */

.separator {
    height: 5px;
    background-color: #9FE2D9;
    width: 234px;
    margin: 30px auto 24px;
}

.solutions .separator {
    width: 186px;
    margin: 23px 0;
}

.career .separator {
    width: 137px;
    margin: 7px 0;
}

html[lang="es-ES"] .career .separator {
    width: 235px;
    margin: 7px 0;
}

.page.contact .separator{
    width: 186px;
    margin: 30px 0 24px;
}

.page.about .trajectory .separator,
.page.about .team .separator {
	width: 186px;
	margin: 20px 0;
}

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

	.career .separator {
	    width: 182px;
	    margin: 0;
	}

	html[lang="es-ES"] .career .separator {
	    width: 311px;
	    margin: 0;
	}

}

.solutions .items article p{
	font-size: 18px;
}

@media screen and (min-width: 992px){
	.solutions .items article p{
		font-size: 24px;
	}
}

.section.solutions .item h2,
.section.solutions .item p{
    position: relative;
    z-index: 2;
}

.section.solutions .item h2::before{
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background: #9FE2D9;
    border-radius: 50%;
	left: -5px;
    top: 73%;
    transform: translateY(-50%);
    z-index: -1;
}

.section.solutions .items .item {
    margin-bottom: 50px;
}

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

	.section.solutions .items .item{
	    margin-bottom: 100px;
	}

	.section.solutions .item h2::before{
	    content: "";
	    position: absolute;
	    width: 120px;
	    height: 120px;
	    left: -52px;
	    top: 50%;
	}

}

.section{
	background-size: cover;
}

.section.know img{
	margin-bottom: 50px;
}

.section.know .btn{
	margin-top: 50px;
}

@media screen and (min-width: 992px){
	.section.know img{
		margin-bottom: 121px;
	}

	.section.know .btn{
		margin-top: 120px;
	}
}

.mb-100{
	margin-bottom: 50px !important;
}

.mb-70{
	margin-bottom: 35px;
}

@media screen and (min-width: 992px){
	.mb-100{
		margin-bottom: 100px !important;
	}
	.mb-70{
		margin-bottom: 70px;
	}	
}

.button-back a{
	text-underline-offset: 6px;
	display: inline-flex;
	align-items: center;
	gap: 16px;
}

.title.button-back a::before {
    content: "";
    width: 24px;
    height: 8px;
    background-color: #ffffff; 
    border-radius: 23px; 
    opacity: 1; 
    
    transform: rotate(0deg); /* Por defecto */
}

.page.career .icon{
	filter: brightness(0) saturate(100%) invert(87%) sepia(4%) saturate(733%) hue-rotate(331deg) brightness(114%) contrast(94%);
}

.page.career .form-control,
.page.career .form-check-input {
    background-color: transparent;
    border: 1px solid var(--bs-light);
    border-radius: 4px;
}

.page.career .title.max-width{
	max-width: 515px;
}

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

	.page.career .vias{
		margin-top: 55px;
	}

}

.page.career .form-group label,
.page.career .form-group input,
.page.career .form-group textarea,
.page.career .captcha small{
	color: var(--bs-light);
}

/* Placeholder */
.page.career input::placeholder,
.page.career textarea::placeholder {
    color: var(--bs-light);
    opacity: 1; /* importante para Firefox */
}

/* Safari */
.page.career input::-webkit-input-placeholder,
.page.career textarea::-webkit-input-placeholder {
    color: var(--bs-light);
}

/* Edge */
.page.career input::-ms-input-placeholder,
.page.careertextarea::-ms-input-placeholder {
    color: var(--bs-light);
}

.page.contact .btn-primary:disabled,
.page.contact .btn-primary.btn-loading {
    background-color: var(--bs-primary); !important;
    border-color: var(--bs-primary) !important;
}

.page.career .btn-primary:disabled,
.page.career .btn-primary.btn-loading {
    background-color: var(--bs-secondary); !important;
    border-color: var(--bs-secondary) !important;
}

.navigation .pll-parent-menu-item .sub-menu {
	width: 100% !important;
}

.navigation .pll-parent-menu-item .sub-menu li{
	display: inline-block !important;
	width: 100%;
}

.navigation .pll-parent-menu-item .sub-menu li a{
	text-align: center;
}

footer .sub-menu .lang-item,
footer .pll-parent-menu-item{
	display: none;
}