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

:root {

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

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

    --bs-body-color: #FAFAFA; /*White*/
    --bs-body-bg: #0F0F0F;

	--bs-primary: #00A9E2;
	--bs-primary-rgb: 0, 169, 226;

	--bs-secondary: #f58426;
	--bs-secondary-rgb: 245,132,38;

    --bs-white: #FAFAFA;
    --bs-light: #f2f6f8;

	--bs-black: #000;
    --bs-dark: #0F0F0F;
	--bs-gray: #3C3C3C;


	--bs-border-radius: 50px;

    --font-display: 'Europa Grotesk Cond', sans-serif;
  	--font-body: 'Europa Grotesk', sans-serif;
}

@media screen and (min-width:1200px){
	:root,
	[data-bs-theme=light]{
		--header-min-height: 80px;
		--header-fixed-min-height: 80px;
	}
}
.noise {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 9999;
  display: block;
  width: 100%;
  height: 100svh;
 background-image: url('assets/img/extras/noise.gif'); 
  background-position: 50% 50%;
  background-size: 290px;
  opacity: 0.08;
  pointer-events: none;
}



/* ===== Scrollbar ===== */

* {
scrollbar-width: thin;
scrollbar-color: var(--bs-light) var(--bs-dark);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 20px;
}

*::-webkit-scrollbar-track {
background: var(--bs-dark);
}

*::-webkit-scrollbar-thumb {
background-color: var(--bs-light);
border-radius: 10px;
border: none;
}

/* Animate */

@keyframes bounce{
	0% { transform: translate(0, 0); }
	50% { transform: translate(0, -100%); }
	100% { transform: translate(0, 0); }
}
@keyframes dropDown{
    0% {transform: scaleY(0);}
    80% {transform: scaleY(1.1);}
    100% {transform: scaleY(1);}
}
@keyframes slideInDown{
	from {transform: translate3d(0, -100%, 0);visibility: visible;}
	to {transform: translate3d(0, 0, 0);}
}
@keyframes fadeIn{
  from { opacity: 0; transform: translate3d(0, 10px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInUp{
	from { opacity: 0; transform: translate3d(0, 40px, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInLeft{
	from { opacity: 0; transform: translate3d(-40px, 0, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInRight{
	from { opacity: 0; transform: translate3d(40px, 0, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes zoomInUp {
	from { opacity: 0.8; transform: scale(1.15,1.15) rotate(.01deg); }
	to { opacity: 1; transform: scale(1, 1) rotate(.01deg); }
}


.image:has(.zoomInUp){
	overflow: hidden;
}

.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.slow{
	animation-duration: 6s;
}
.wow.fadeIn{
	animation-duration: 1.3s;
	transform: translate3d(0, 8px, 0);
}
.wow.is-visible{
	visibility: visible;
	animation-play-state: running;
}

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

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

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

/* 3. Structure */

html{
	scroll-behavior: smooth;
}

body{
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0.05em;
	font-family: var(--font-body);
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}


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

h1, h2, h3, h4, h5, h6{
	font-weight: 500;
}


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: 32px; }
	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: 80svh;
	overflow: hidden;
}

.container,
.container-fluid{
	width: 100%;
	max-width: clamp(992px, 100vw, 1920px)
}

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

/* 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;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bs-dark);
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	font-size: 2em;
	z-index: 998;
	opacity: 1;
	pointer-events: all;
	clip-path: inset(0 0 0 0);
}

#pageloader .count{
  font-variant-numeric: tabular-nums;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

html.loading,
body.loading{
	overflow: hidden;
}


.grecaptcha-badge{
	opacity:0;
}


/* Components > buttons */

.btn{
	min-width: 130px;
	--bs-btn-padding-x: 24px;
	--bs-btn-padding-y: 9px;
	--bs-btn-font-weight: 400;
	text-transform: uppercase;
	overflow: hidden;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 6px;
}

.btn.plus {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: solid 1px currentColor;
}


.underline-link{
	position: relative;
	width: fit-content;
	display: block;
}
.underline-link:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
  	transform: scaleX(0);
	height: 1px;
	background: currentColor;
	 transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}
.underline-link:hover{
	color: var(--bs-primary);
}
.underline-link:hover:before{
	 transform: scaleX(1);
  	transform-origin: bottom left;
}



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

.btn-primary{
    position: relative;
    overflow: hidden;
    border: none;
    font-weight: 500;

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

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

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

.btn-primary::before{
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/img/extras/texture-btn.webp');
    background-size: cover;
    background-repeat: no-repeat;
  	mix-blend-mode: multiply;
    z-index: 0;
    transition: all 0.3s;
}

.btn-primary:hover:before{
	background-position: left 5%;
}


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

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

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


/* Buttons Float */

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

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

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

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


/* Structure */

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

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

/* Structure > Header */

.header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);	
	transition: 0.3s all;
	z-index: 997;
	align-content: center;
	background: linear-gradient(180deg, #0F0F0F 0%, rgba(15, 15, 15, 0) 100%);
}

.header .items .btn{
	z-index: 9999;
	margin-right: 24px;
}
.header > .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
	max-width: 150px;
	z-index: 9999;
}

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

.open-menu .header{
	background: var(--bs-dark);
}
.header .nav-menu {
	position: relative;
	float: right;
	width: 30px;
	padding: 8px 0;
	cursor: pointer;
	z-index: 9999;
	overflow: hidden;
}
.header .nav-menu .menu-line {
	float: right;
	display: block;
	width: 100%;
	height: 2px;
	margin: 3px 0;
	background: var(--bs-white);
	transition: 0.3s;
	border-radius: 6px;
}
.header .nav-menu:hover .menu-line {
	background: var(--bs-primary);
}
.header .nav-menu .menu-line:nth-child(2){
	width: 80%;
}
.header .nav-menu:hover .menu-line:nth-child(2){
	width: 100%;
}
.header .nav-menu.is-open .menu-line:nth-child(1) { transform: rotate(45deg); width: 100%; margin-top: 14px; }
.header .nav-menu.is-open .menu-line:nth-child(3) { transform: rotate(-45deg); width: 100%; margin-top: -14px; }
.header .nav-menu.is-open .menu-line:nth-child(2) { opacity: 0; }

.header .navigation {
    display: block;
    position: fixed;         
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    margin: 0;
    background: var(--bs-dark);
    padding: 120px 0 60px 0;
    clip-path: inset(0 0 100% 0);  
    will-change: clip-path;
    z-index: 998;  
    overflow-y: auto;
    overflow-x: hidden;
}

.header .navigation .container {
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.header .navigation .menu li a {
	--text-color: var(--bs-white);

	display: inline-block;
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 85%;
	font-size: clamp(44px, 8.33vw, 120px);
	text-decoration: none;
}

.header .navigation .menu li a .text-hover__char-main,
.header .navigation .menu li a .text-hover__char-copy {
	background-image:
		url('assets/img/extras/font-texture.webp'),
		linear-gradient(var(--text-color), var(--text-color));
	background-blend-mode: multiply;
	background-size: 160% 200%;
	background-position: center center;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

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

.header .navigation .menu li {
    overflow: hidden;
    width: fit-content;
}
 .header .navigation .menu li a .nav-char {
    display: inline-block;
    will-change: transform, opacity;
}
 
.header .navigation .offices {
    will-change: opacity, transform;
}
 
@media screen and (max-width: 991.99px){
	.header .btn-primary{
		display: none;
	}
}


/* Components > Forms */

label{
	font-size: 16px;
	letter-spacing: 0.01em;
	margin-bottom: 8px;
}
.bg-primary label,
.bg-dark label{
	color: var(--bs-primary);
}

.required{
	color: #ff0000;
}

.form-select,
.form-control{
	line-height: 1.8em;
	 border-color: var(--bs-primary);
}

.form-select:focus,
.form-control:focus{
    box-shadow: none !important;
    border-color: var(--bs-white);
}
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: 26px;
	height: 26px;
	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: -30px;
	right: -30px;
	color: #fff;
}


/* Components > socialmedia */

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

ul.socialmedia{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: 12px;
	list-style: none;
}
ul.socialmedia li{
	display: inline-block;
	vertical-align: middle;
}
ul.socialmedia li a{
	display: block;
	font-size: 24px;
	background-image: url('assets/img/extras/font-texture.webp'),
		linear-gradient(var(--bs-primary), var(--bs-primary)); 
	background-size: cover;
	background-clip: text;
	background-blend-mode: multiply;
	color: transparent;
}
ul.socialmedia li a:hover{
	transform: scale(1.01);
	color: var(--bs-primary);
}

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


/* Components > Slider  */

.slider{
	position: relative;
}

/* Components > Slider > Swiper */


.slider .swiper-pagination {
	bottom: 0;
}
.slider .swiper-pagination-bullet{
	background: var(--bs-light);
	opacity: 0.3;
}

.bg-light .slider .swiper-pagination-bullet{
	background: var(--bs-dark);
}
.slider .swiper-pagination-bullet-active {
	opacity: 1;
}

.slider .swiper-button-next,
.slider .swiper-button-prev{
	position: absolute;
	width: 26px;
	height: 22px;
    color: var(--bs-white);
}

.bg-light .slider .swiper-button-next,
.bg-light .slider .swiper-button-prev{
	color: var(--bs-dark);
}

.slider .swiper-button-next:hover,
.slider .swiper-button-prev:hover{
	color: var(--bs-primary);
}

.slider .swiper-button-next svg,
.slider .swiper-button-prev svg{
	display: none;
}

.swiper-button-prev::after{
  content:'';
  position:absolute;
  inset:0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='21' fill='none'%3E%3Cpath stroke='%230F0F0F' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M23.5 10.5H.75m0 0L10.5.75M.75 10.5l9.75 9.75'/%3E%3C/svg%3E") no-repeat center / 25px 21px;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='21' fill='none'%3E%3Cpath stroke='%230F0F0F' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M23.5 10.5H.75m0 0L10.5.75M.75 10.5l9.75 9.75'/%3E%3C/svg%3E") no-repeat center / 25px 21px;
  background-color: currentColor;
}
.swiper-button-next::after {
  content: '';
  position: absolute;
  inset: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='21' fill='none'%3E%3Cpath stroke='%230F0F0F' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M.75 10.5H23.5m0 0-9.75 9.75m9.75-9.75L13.75.75'/%3E%3C/svg%3E") no-repeat center / 25px 21px;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='21' fill='none'%3E%3Cpath stroke='%230F0F0F' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M.75 10.5H23.5m0 0-9.75 9.75m9.75-9.75L13.75.75'/%3E%3C/svg%3E") no-repeat center / 25px 21px;
  background-color: currentColor;
}

.slider:has(.nav-bottom){
	padding-bottom: 50px;
}
.slider .nav-bottom .swiper-pagination {
	text-align: left;
	width: fit-content;
}

.slider .nav-bottom .swiper-button-next,
.slider .nav-bottom .swiper-button-prev{
	top: auto;
	bottom: 0;
}
.slider .nav-bottom .swiper-button-prev{
	left: auto;
	right: 60px;
}

/* Categories Filter */

.categories-filter ul {    
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 12px;
}
.categories-filter ul li a {
	text-align: center;
	display: block;
	align-items: center;
	padding: 8px 20px;
	border: solid 1px var(--bs-white);
	border-radius: 50px;
	text-transform: uppercase;
	position: relative;
	min-width: 180px;
	text-align: center;
	padding-left: 45px;
}
.categories-filter ul li a.active,
.categories-filter ul li a:hover{
	border-color: var(--bs-primary);
	color: var(--bs-primary);
}

.categories-filter ul li a .plus {
	position: absolute;
	left: 5px;
	top: 4px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: solid 1px currentColor;
	/* margin-right: 32px; */
	display: flex;
	align-items: center;
	justify-content: center;
}

.categories-filter ul li a .plus:before{
	content: '';
	display: block;
	width: 19px;
	height: 19px;
	background-color: currentColor;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' fill='none'%3E%3Cpath stroke='black' stroke-width='1.8' d='M9.498.002V19M18.998 9.498H.003'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' fill='none'%3E%3Cpath stroke='black' stroke-width='1.8' d='M9.498.002V19M18.998 9.498H.003'/%3E%3C/svg%3E");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
}

.categories-filter ul li a.active .plus{
	background: var(--bs-primary);
}
.categories-filter ul li a.active .plus:before{
	color: var(--bs-dark);
}
@media screen and (max-width: 768px){	
	.categories-filter ul li a {
		min-width: fit-content;
	}
}


/* Components > Title */

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

.title h1,
.title h2,
.title h3,
.title h4,
.title h5{
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 85%;	
	margin: 0;
	background-image: 
		url('assets/img/extras/font-texture.webp');
	background-blend-mode: multiply;
	background-size: cover;
	background-position: center center; 
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.title span{
	background-image: url('assets/img/extras/font-texture.webp'),
		linear-gradient(var(--bs-primary), var(--bs-primary)); 
	background-size: cover;
	background-clip: text;
	background-blend-mode: multiply;
}

.bg-primary .title h3{
	background-image: 
		url('assets/img/extras/font-texture-dark.webp');
}

.title p span{
	color: var(--bs-primary);
	font-weight: 500;
}

.title h1{
	font-size: clamp(64px, 16.67vw, 240px);
}
.title h2{
	font-size: clamp(44px, 8.33vw, 120px);
}
.title h3{
	font-size: clamp(38px, 5.56vw, 80px);
}
.title h4{
	font-size: clamp(28px, 4.17vw, 60px);
}
.title h5{
	font-size: 20px;
}

.title p:not(.subtitle){
	margin: 0;
	margin-top: 8px;
}

.title .btn{
	margin-top: 20px;
}
.title .subtitle{
	margin: 0;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: 0.12em;
	margin-bottom: 16px;
}

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

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

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title p:not(.subtitle){
		font-size: 20px;
		line-height: 130%;
		margin-top: 24px;
	}

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

}

/* Components > Video Player */
.video {
	overflow: hidden;
}
.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% - 38px);
	left: calc(50% - 38px);
	width: 76px;
	height: 76px;
	font-size: 24px;
	line-height: 60px;
	text-align: center;
	background: var(--bs-white);
	color:  var(--bs-primary);
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}
.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: flex;
}
/*@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 */

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

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



/*
	Modules
*/

/* Module > Presentation */

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

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

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


/* Modules > Banner */

.banner{
	position: relative;
	display: flex;
	align-items: center;
	background-color: var(--bs-dark);
	padding-top: calc(var(--header-min-height) + 30px);
	overflow: hidden;
}

.banner .title h1{
	background-size: 44%;
	background-position: left;
}
.banner .title p{
	max-width: 520px;
}


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



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

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

/* Module > Services */
.module-services .items .item{
	perspective: 1000px;
}

.module-services .items article{
	position: relative;
	aspect-ratio: 1 / 1;
	background: #1E1E1E;
	width: 100%;
	height: 100%;
	padding: 25px;
	transform-style: preserve-3d;
	will-change: transform;
}
.module-services .items .item:not(:first-child) article:not(:has(.image)):hover{
	background: var(--bs-primary);
	color: var(--bs-dark);
}
.module-services .items .item:not(:first-child) article:not(:has(.image))::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(var(--bs-primary), var(--bs-primary)) top left,
		linear-gradient(var(--bs-primary), var(--bs-primary)) top left,
		linear-gradient(var(--bs-primary), var(--bs-primary)) top right,
		linear-gradient(var(--bs-primary), var(--bs-primary)) top right,
		linear-gradient(var(--bs-primary), var(--bs-primary)) bottom left,
		linear-gradient(var(--bs-primary), var(--bs-primary)) bottom left,
		linear-gradient(var(--bs-primary), var(--bs-primary)) bottom right,
		linear-gradient(var(--bs-primary), var(--bs-primary)) bottom right;
	background-size: 
		36px 2px, 2px 36px,
		36px 2px, 2px 36px,
		36px 2px, 2px 36px,
		36px 2px, 2px 36px;
	background-repeat: no-repeat;
	transition: all .3s ease;
	z-index: 3;
	pointer-events: none;
}

.module-services .items article:has(.image){
	padding: 0;
}

.module-services .items article .image,
.module-services .items article .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.module-services .items article .data{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform: translateZ(20px);
}

.module-services .items .item:first-child article{
	background: transparent;
}

.module-services .items .item:first-child article p{
	color: var(--bs-primary);
	text-transform: uppercase;
}


/* Module > Stats*/
.module-stats article{
	border-left: solid 2px var(--bs-primary);
	padding-left: 25px;
}
.module-stats article .title h4{
	font-size: clamp(60px, 16vw, 200px);
	text-transform: none;
}

.module-stats article .title span{
	background-image: url('assets/img/extras/font-texture.webp'), linear-gradient(#FAFAFA, #FAFAFA); ;
}

.module-stats article .title  p{
	font-weight: 500;
}
/* Module > Follow */

.module-follow {
    position: relative;
    height: 100svh;
    /*overflow: hidden;   */
    display: flex;      
    align-items: center;
    justify-content: center;
}
 
.module-follow .title {
	margin: 0;
    position: relative;
    z-index: 10;
    text-align: center;
    will-change: transform, opacity;
}
 
.module-follow .image{
    position: absolute;
    transform-origin: center center;
    will-change: transform, opacity;
    overflow: hidden;           
}
 
.module-follow .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
 
.module-follow .image.image-1 { width: 260px; top: -20px;  left: 12%;}
.module-follow .image.image-2 { width: 172px; top: 6%; left: 46%;}
.module-follow .image.image-3 { width: 132px; top: 2%;right: 24%;}
.module-follow .image.image-4 { width: 216px; top: 20%;      right: -100px;   }
.module-follow .image.image-5 { width: 260px; top: 40%;    left: -100px;    }
.module-follow .image.image-6 { width: 200px; bottom: 7%; left: 24%;  top: auto; }
.module-follow .image.image-7 { width: 170px; bottom: 20%; left: 70%;  top: auto; }
.module-follow .image.image-8 { width: 200px; bottom: 20%; right: -70px; top: auto; }



@media screen and (max-width: 991.99px) {
    .module-follow .image.image-1 { width: 140px; top: 15%;  left: 2%; }
    .module-follow .image.image-2 { width: 100px; top: 4%;  left: 52%; }
    .module-follow .image.image-3 { width: 80px;  top: 20%;  right: 4%; }
    .module-follow .image.image-4 { width: 120px; top: 40%; right: -30px; }
    .module-follow .image.image-5 { width: 140px; top: 40%; left: -30px; }
    .module-follow .image.image-6 { width: 110px; bottom: 8%;  left: 8%;   top: auto; }
    .module-follow .image.image-7 { width: 100px; bottom: 18%; left: 40%;  top: auto; }
    .module-follow .image.image-8 { width: 110px; bottom: 18%; right: -20px; top: auto; }
}

/* Module > Slider */

.module-slider .swiper .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.module-slider .swiper[data-slides="1"] .swiper-slide img{
	aspect-ratio: 1.89 / 1;
	
}
.module-slider .swiper[data-slides="2"] .swiper-slide img{
	aspect-ratio: 1 / 1;
}

/*
	Pages
*/


/* Page > Home */
.page.home .intro {
	height: 90svh;
	align-content: center;
}

.page.home .intro .title {
	max-width: 1200px;
	margin: 0 auto;
}
.page.home .intro .title h2{
	display: inline-block;
	position: relative;
}
.page.home .intro .title p{
	max-width: 530px;
	margin-left: auto;
	margin-right: auto;
}
.page.home .intro .image{
	width: 170px;
	height: 107px;
	position: absolute;
   	left: 30%;
	top: -180px; 
}

.page.home .intro .image img{
	object-fit: cover;
	transform: translateY(-12px);
}
.page.home .intro .image-2{
	left: 30%;
	top: 32svh;
}

/*.page.home .intro span{
	background-image: 
		url('assets/img/extras/font-texture.webp');
	background-blend-mode: multiply;
}*/
.page.home .intro .image:before{
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(var(--bs-primary), var(--bs-primary)) top left,
		linear-gradient(var(--bs-primary), var(--bs-primary)) top left,
		linear-gradient(var(--bs-primary), var(--bs-primary)) top right,
		linear-gradient(var(--bs-primary), var(--bs-primary)) top right,
		linear-gradient(var(--bs-primary), var(--bs-primary)) bottom left,
		linear-gradient(var(--bs-primary), var(--bs-primary)) bottom left,
		linear-gradient(var(--bs-primary), var(--bs-primary)) bottom right,
		linear-gradient(var(--bs-primary), var(--bs-primary)) bottom right;
	background-size: 
		13px 1px, 1px 13px,
		13px 1px, 1px 13px,
		13px 1px, 1px 13px,
		13px 1px, 1px 13px;
	background-repeat: no-repeat;
	z-index: 3;
}
@media screen and (min-width: 992px){
	.page.home .intro span{
		position: relative;
	}

	.page.home .intro .image{
		left: 0px;
		top: 0;
	}
	.page.home .intro .image-2{
		left: -180px;
		top: 0px;
	}
/*	.page.home .intro .title h2 span{
		margin-left: 180px;
	}*/

}

.page.home .about .title {
	max-width: 680px;
}

/* Horizontal section */
.horizontal-section {
    position: relative;
    overflow: hidden; 
}

.horizontal-section .h-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content; 
    will-change: transform;
    padding-right: 80px;
}

.horizontal-section .h-screen {    
    min-width: 150vw;
    max-width: 195vw;
    min-height: 100dvh;
}

.horizontal-section .image img{
	aspect-ratio: 1 / 1;
	max-height: 65svh;
	object-fit: cover;
	width: auto;
}

.horizontal-section .screen-2{
	padding: 0 20px;
}
.horizontal-section .screen-2 .items{
	flex-wrap: nowrap;
}

.horizontal-section .image-3 img,
.horizontal-section .screen-2 .image-1 img,
.horizontal-section .screen-2 .image-3 img,
.horizontal-section .screen-2 .image-6 img{
	aspect-ratio: 1.25 /1;
	max-height: 35svh;
}

.horizontal-section .screen-2 .image-1,
.horizontal-section .screen-2 .image-3{
	text-align: right;
}


.page.home .about .horizontal-section .screen-1 .image-2 img{
	max-height: 35svh;
}


@media screen and (min-width: 992px){
	.horizontal-section .screen-2{
		padding: 0 40px;
	}
	.horizontal-section .h-screen {    
	    min-width: 100vw;
	    min-height: 100svh;
	    max-width: fit-content;
	}

}

@media screen and (max-width: 991.99px){
		.horizontal-section .h-screen.screen-2{
			min-width: 300vw;

		}
}


/* Page > About */

.page.about .banner .title p:first-of-type {
	max-width: 780px;
	font-weight: 500;
	font-size: clamp(18px, 2vw, 32px);
	line-height: 110%;
}

.page.about .banner .title .description-2 p {
	max-width: 595px;
}

.page.about .banner .image{
	position: relative;
	z-index: 1;
}

.page.about .banner .image img{
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}
.page.about .banner .image-2{
	position: absolute;
	left: 30%;
	z-index: 0;
}

.page.about .module-stats .items .item:nth-last-child(-n+2) {
	width: auto;
	padding-right: 50px;
}


.page.about .about.horizontal-section .screen-1 .image-2 img{
	max-height: 35svh;
}
.page.about .about .title p{
	max-width: 620px;
}


.page.about .gallery .swiper-wrapper{
	align-items: center;
}

/* Page > Projects */
@media screen and (min-width: 992px){
	.page.projects .categories-filter ul {
	    justify-content: end;
	    margin-top: -100px;
	}
}



/* Pages > Contact */

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

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

/* Pages > Thanks */

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

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

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


/*
	CPT Feed
*/

/* Feed > General */

.feed-projects article{
	position: relative;
	aspect-ratio: 1 / 1;
	align-content: center;
}
.feed-projects article a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}
.feed-projects article .thumbnail{
	display: block;	
}

.feed-projects article .thumbnail .img-icon{
	aspect-ratio: 0.9 / 1;
	height: 252px;
	object-fit: contain;
	transition: transform .6s ease;
}
.feed-projects article .data{
	position: absolute;
	inset: 0;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 20px;
}

.feed-projects article:hover .data{	
	background: linear-gradient(0deg, #000000 0%, rgba(102, 102, 102, 0) 50%);
}

.feed-projects article .data h2{
	font-size: 16px;
	font-weight: 400;
	margin: 0;
}
.feed-projects article .data .year{
	font-weight: 600;
	margin: 0;
}

.feed-projects article .img-hover {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  clip-path: circle(0% at 50% 50%);  
  transform: scale(1.1);
  transition: 
    clip-path .6s cubic-bezier(.65,0,.35,1),
    transform .6s ease;
}

.feed-projects article:hover .img-hover {
  clip-path: circle(150% at var(--mx, 50%) var(--my, 50%));  /* abre desde el mouse */
  transform: scale(1);
}

.feed-projects article:hover .thumbnail .img-icon{
	transform: scale(1.3);
}

.feed-projects article::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(var(--bs-primary), var(--bs-primary)) top left,
		linear-gradient(var(--bs-primary), var(--bs-primary)) top left,
		linear-gradient(var(--bs-primary), var(--bs-primary)) top right,
		linear-gradient(var(--bs-primary), var(--bs-primary)) top right,
		linear-gradient(var(--bs-primary), var(--bs-primary)) bottom left,
		linear-gradient(var(--bs-primary), var(--bs-primary)) bottom left,
		linear-gradient(var(--bs-primary), var(--bs-primary)) bottom right,
		linear-gradient(var(--bs-primary), var(--bs-primary)) bottom right;

	background-size: 
		20px 2px, 2px 20px,
		20px 2px, 2px 20px,
		20px 2px, 2px 20px,
		20px 2px, 2px 20px;

	background-repeat: no-repeat;
	transition: all .3s ease;
	z-index: 3;
}
.feed-projects article:hover::before {
	background-size:
		100% 2px, 2px 100%,
		100% 2px, 2px 100%,
		100% 2px, 2px 100%,
		100% 2px, 2px 100%;
}

.feed-projects .item:nth-child(odd) article {
  transform: translateY(-10px);
}
.feed-projects .item:nth-child(even) article {
  transform: translateY(10px);
}


@media screen and (max-width: 576px){
	.feed-projects article {
		margin-bottom: 80px;
	}
	.feed-projects article .data{
		position: absolute;
		height: auto;
		width: 100%;
		inset: auto;
		bottom: -80px;
		padding: 10px 0;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.feed-projects article .thumbnail .img-icon{
		height: auto;
		padding: 20px;
	}

	.feed-projects article:hover .data{	
		background: transparent;
	}
}	

/*
	CPT Single
*/

/* CPT > Single */

.single.projects .banner{
	position: relative;
	display: flex;
	align-items: flex-end;
	background-color: var(--bs-dark);
	padding: 50px 0;
	height: 100svh;
	overflow: hidden;
}
.single.projects .banner .bg{
	position: absolute;
	inset: 0;
	z-index: 1;
}

.single.projects .banner .bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single.projects .banner .bg:before{
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(102, 102, 102, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}


.single.projects .banner .title,
.single.projects .banner .meta{
	position: relative;
	z-index: 3;
}
.single.projects .banner .title h1{
	font-size: clamp(44px, 8.33vw, 120px);
}

.single.projects .banner .info{
	display: flex;
	gap: 32px;
	
}


@media screen and (min-width: 992px){
	.single.projects .banner .info{
		justify-content: flex-end;
	}
}


.single.projects .intro .title p{
	max-width: 680px;
}

/* CPT > Single > Projects */

.single.projects .tags {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style: none;
	gap: 16px;
}
.single.projects .tags li {
	background: transparent;
	color: var(--bs-primary);
	border: solid 1px var(--bs-primary);
	padding: 5px 20px;
	text-transform: uppercase;
}

.module-img-txt .image {
	overflow: hidden;
}

.module-img-txt .image.small-top.image-1 {
	width: 50%;
}
.module-img-txt .image.small-bottom.image-2 {
	width: 50%;
}

.module-img-txt  .title{
	max-width: 640px;
}

.module-img-txt  ul{
	font-size: 20px;
	margin-top: 16px;
}

/* Structure > Footer */

.footer .widgets{
	padding: 20px 0;
	text-align: left;
}

.footer .widgets .row.items {
	border-top: solid 1px #3C3C3C;
	padding-top: 30px;
}

.footer .widgets .menu{
	margin: 0 0 30px;
}
.footer .widgets .menu li a{
	display: block;
	padding: 3px;
	font-family: var(--font-display);
	text-transform: uppercase;
	font-size: 36px;
	line-height: 36px;
	letter-spacing: 0.02em;
}
.footer .widgets .menu li a:hover{
	color: var(--bs-primary);
}
.footer .logo{
	display: block;
	border-top: solid 1px #3C3C3C;
	border-bottom: solid 1px #3C3C3C;
	padding: 30px 0;
}


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

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

	.footer .offices{
		margin-top: 100px;
	}
		
}



/* Extras */
.offices p, .offices a{ letter-spacing: 5%; margin: 0;};
.offices h4{letter-spacing: 5%;}


/* ─── Text-reveal animation ─────── */
.text-reveal .split-line {
  display: block;
  width: fit-content;
}

.text-reveal.text-center .split-line {
	margin: 0 auto; 
}

/* fix */
.text-reveal :is(h1, h2, h3, h4, h5, h6, p, li) {
  visibility: hidden;
}
.text-reveal :is(h1, h2, h3, h4, h5, h6, p, li)[data-reveal-init="true"] {
  visibility: visible;
}
.text-reveal :is(h1, h2, h3, h4, h5, h6, p, li) .split-line {
  overflow: hidden;
}


/**/

.text-hover {
	position: relative;
	display: inline-block;
	overflow: hidden;
	line-height: 80%;
	text-decoration: none;
}

.text-hover__wrap {
	display: inline-block;
}

.text-hover__char {
	position: relative;
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
	line-height: 80%;
}

.text-hover__char-main,
.text-hover__char-copy {
	display: block;
	will-change: transform;
}

.text-hover__char-copy {
	position: absolute;
	top: 100%;
	left: 0;
}

.text-hover__char.is-space {
	width: 0.28em;
}

/**/
/*.module-follow {
  overflow: clip;
}*/

.module-follow [class*="image-"] {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.module-follow .title {
  will-change: transform, opacity, filter;
}

/***/

[data-glitch] {
	position: relative;
}

.glitch-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  filter: contrast(1.4) saturate(6);
}

[data-glitch].is-glitching .glitch-layer {
  opacity: 1;
  animation: glitch var(--g-dur, 180ms) steps(1) 2 forwards;
}

/* RGB split fuerte */
[data-glitch].is-glitching .glitch-layer:nth-child(2) {
  transform: translateX(-3px);
  filter: hue-rotate(90deg) contrast(1.6);
}

[data-glitch].is-glitching .glitch-layer:nth-child(3) {
  transform: translateX(3px);
  filter: hue-rotate(220deg) contrast(1.6);
}

/* ruido activo */
[data-glitch].is-glitching::after {
  opacity: 1;
  animation: noise 120ms steps(2) infinite;
}

@keyframes glitch {
  0%  { clip-path: var(--s0); transform: translate3d(var(--x0), 0, 0); }
  10% { clip-path: var(--s1); transform: translate3d(-var(--x1), 0, 0); }
  20% { clip-path: var(--s2); transform: translate3d(var(--x0), 0, 0); }
  30% { clip-path: var(--s3); transform: translate3d(-var(--x1), 0, 0); }
  40% { clip-path: var(--s4); transform: translate3d(var(--x0), 0, 0); }
  50% { clip-path: var(--s5); transform: translate3d(-var(--x1), 0, 0); }
  60% { clip-path: var(--s6); transform: translate3d(var(--x0), 0, 0); }
  70% { clip-path: var(--s7); transform: translate3d(-var(--x1), 0, 0); }
  100% { clip-path: inset(0 0 100% 0); opacity: 0; }
}