/*
Theme Name: WGL
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: 72px;	

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

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

	--bs-primary: #F9F1E7; /* Cream */
	--bs-primary-rgb: 249,241,231;

	--bs-secondary: #B3A898; /* Beige */
	--bs-secondary-rgb: 179,168,152;

    --bs-white: #fff;

    --bs-light: #F9F1E7; /* Cream */
    --bs-light-rgb: 249,241,231;

	--bs-black: #000;

    --bs-dark: #141414; /*Black */
    --bs-dark-rgb: 20,20,20;


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



/* 3. Structure */

html{
	scroll-behavior: smooth;
}

body{
	font-size: 16px;
	font-weight: 400;
	font-family: 'Neue Montreal';
	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;
	font-family: 'Neue Montreal';
	line-height: 100%;
}

h1 { font-size: 30px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

@media screen and (min-width: 992px) {
	h1 { font-size: 34px; }
	h2 { font-size: 30px; }
	h3 { font-size: 26px; }
	h4 { font-size: 24px; }
	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{
	font-family: 'TT Firs';
	min-width: 150px;
	border-radius: 0;
	text-transform: uppercase;
	/*--bs-btn-padding-x: 35px;*/
	--bs-btn-padding-y: 6.5px;
	font-weight: bold;
	letter-spacing: 4%;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 6px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


/* Buttons Float */

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

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

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

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


/* Structure */

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

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

/* Structure > Header */

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

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

/* 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-dark);
	transition: 0.3s;
	border-radius: 6px;
}
.header.active .nav-menu .menu-line:nth-child(1) { transform: rotate(45deg); width: 40px; margin-top: 14px; }
.header.active .nav-menu .menu-line:nth-child(3) { transform: rotate(-45deg); width: 40px; margin-top: -16px; }
.header.active .nav-menu .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: 12px;
	font-weight: 700;
	font-family: 'TT Firs';
	text-transform: uppercase;
	letter-spacing: 4%;

}
.header .navigation .menu li:not(.menu-contact) a:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--bs-dark);
	transition: all 0.3s;
}
.header .navigation .menu li:not(.menu-contact).current-menu-item a:before,
.header .navigation .menu li:not(.menu-contact) a:hover:before{
	left: 10%;
	width: 80%;
}

.header .navigation .menu li.menu-contact a{
	padding: 6px 21px;
	color: var(--bs-light);
	background: var(--bs-dark);
	border: solid 1px var(--bs-dark);
	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: 99px;
	}

	.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: 7px 15px;
	}

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

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

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

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


/* Components > Forms */

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

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

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

/* Form checkbox */

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

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

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

/* Form files */

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

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

/* Forms > Show password */

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

/* Components > modals */

.modal{
	z-index: 99999;
}
.modal-backdrop{
	z-index: 9999;
}
.modal .modal-content{
	border: 0;
	border-radius: 0;
}

.modal .btn-close{
	position: absolute;
	top: 25px;
	right: 15px;
	width: 30px;
	height: 30px;
	padding: 0;
	background: url('assets/img/icons/icon-cross.svg') no-repeat center;
	background-size: contain;
	z-index: 9999;
	opacity: 1;
}

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

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


/* Components > Slider  */

.slider{
	position: relative;
}

/* Components > Slider > Swiper */

 .swiper-pagination {
	bottom: 0;
}
 .swiper-pagination-bullet{
 	width: 10px;
 	height: 10px;
	background: var(--bs-light);
	opacity: 1;
	outline: 1px solid transparent;
	outline-offset: 2px;
	transition: outline-color 0.3s ease, outline-offset 0.3s ease;
}
.swiper-pagination-bullet-active {
	opacity: 1;
	outline-color: var(--bs-light);
	outline-offset: 5px;
}

.swiper-button-next,
.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;
}
.circle.swiper-button-next,
.circle.swiper-button-prev{
	border: 1px solid var(--bs-dark);
	border-radius: 50%;
}
.swiper-button-next { background-image: url('assets/img/icons/icon-arrow-next.svg'); }

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

.swiper-pagination.vertical{
	left: 20px;
	width: auto;
	height: fit-content;
    right: auto;
    top: 50%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Categories Filter */

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


/* Components > Title */

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

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

.title h1{
	font-size: 30px;
}
.title h2{
	font-size: 36px;
}
.title h3{
	font-size: 32px;
}
.title h4{
	font-size: 22px;
}
.title h5{
	font-size: 20px;
}
.title span{
	font-size: 20px;
	font-weight: 500;
}
.title p:not(.subtitle){
	margin: 0;
	margin-top: 8px;
}

.title .p-max-width {
	max-width: ;
}

.title .btn{
	margin-top: 20px;
}
.title .subtitle{
	font-family: 'TT Firs';
	margin: 0;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 4%;
}

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

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

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

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

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 80px;
	}
	.title h1{
		font-size: 90px;
	}
	.title h2{
		font-size: 80px;
	}
	.title h3{
		font-size: 60px;
	}
	.title h4{
		font-size: 24px;
	}
	.title h5{
		font-size: 22px;
	}
	.title p:not(.subtitle){
		margin-top: 20px;
	}

	.title .description {
		font-size: 20px;
	}
	.title .btn{
		margin-top: 40px;
	}

}

@media screen and (max-width: 991.99px){
	.title .no-br br {
		display: none;
	}
}

/* Components > Video Player */

.video-player{
	position: relative;
	width: 100%;
	padding: 25% 0;
	background: #000 no-repeat center;
	background-size: cover;
}
.video-player .play{
	display: none;
	position: absolute;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	width: 60px;
	height: 60px;
	font-size: 24px;
	line-height: 60px;
	text-align: center;
	background: var(--bs-primary);
	color: #fff;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
}
.video-player.active .play,
.video-player:hover .play{
	background: var(--bs-primary);
	color: #fff;
}
.video-player .play:hover{
	transform: scale(1.1);
}
.video-player .play i{
	margin-left: 4px;
}

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


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

.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: calc(100vh - var(--header-min-height));
	min-height: 600px;	
	background: var(--bs-dark) no-repeat bottom;
	background-size: cover;
	overflow: hidden;
}

.presentation .swiper {
	position: relative;
	width: 100%;
	height: 100%;
}
.presentation .swiper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #00000033;
    z-index: 1;
}

.presentation .swiper-slide .image,
.presentation .swiper-slide .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Flecha inferior */
.presentation .arrow-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.presentation .logo{
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.presentation .arrow-down{
	display: block;
	position: absolute;
	left: calc(50% - 20px);
	bottom: 0;
	width: 32px;
	height: 17px;
	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: 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;
    }
}



/* Modules > Image & Text */

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


/* 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 .about .image img,
.page.home .project .image img{
	width: 100%;
	aspect-ratio: 1.83 / 1;
    object-fit: cover;
}

.page.home .experiences{
	height: 40dvh;
	display: flex;
	align-items: center;
}
.page.home .experiences .title h3{
	font-size:24px;
}

@media screen and (min-width:992px){
	.page.home .experiences{
		height: 100dvh;
	}
    .page.home .experiences .title h3{
        font-size:60px;
    }
}

.page.home .we-do .title h3{
	margin-bottom: 20px;
}

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

	.page.home .we-do .title h3{
		margin-bottom: 40px;
	}

}

.page.home .we-do .thumbnail img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.page.home .spaces .title,
.page.home .module-contact .title{
	margin-bottom: 24px;
}

.page.home .module-contact .content-submit{
	margin-top: 24px;
}

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

	.page.home .module-contact .content-submit{
		margin-top: 60px;
	}
}

.page.home .items .data .description{
	font-size: 20px;
}

.page.home .project .title .subtitle{
	margin-bottom: 20px;
}

.page.home .project .title .logo{
	margin-bottom: 24px;
}

.page.home .project .btn-outline-border-none{
	border: none;
}

.page.home .project .btn-outline-border-none:hover{
	border: 1px solid var(--bs-dark);
}

@media screen and (min-width:992px){
	.page.home .project .title .logo{
		margin-bottom: 32px;
	}	
}


.page.home .first-gallery .swiper .slide img,
.page.home .second-gallery .swiper .slide img{
	aspect-ratio: 13 / 10;
	object-fit: cover;
}

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

	.page.home .first-gallery .swiper .slide img,
	.page.home .second-gallery .swiper .slide img{
		max-height: 320px;
	}

}

.page.home .second-gallery .swiper {
  direction: rtl;
}

.page.home .second-gallery .swiper-slide {
  direction: ltr;
}

.first-gallery .swiper-wrapper,
.second-gallery .swiper-wrapper {
  transition-timing-function: linear !important;
}

.we-give-life {
    padding: 0;
    overflow: hidden;
    background-color: var(--bs-dark);
}

.we-give-life__wrapper {
    position: relative;
    height: 100vh;
}

.we-give-life__title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.we-give-life__title h2 {
    font-size: 100px;
    color: var(--bs-primary);
    font-weight: 500;
    text-align: center;
    line-height: 1.1;
}

.we-give-life__images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.we-give-life__img {
    position: absolute;
    overflow: hidden;
}

.we-give-life__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.we-give-life__img--1 {
    width: 130px;
    height: 101px;
    top: 2%;
    left: -5%;
   	z-index: 3;
}

.we-give-life__img--2 {
    width: 150px;
    height: 140px;
    top: 2%;
    left: 45%;
   	z-index: 1;
}

.we-give-life__img--3 {
    width: 105px;
    height: 129px;
    top: 18%;
    right: -5%;
    z-index: 3;
}

.we-give-life__img--4 {
    width: 148px;
    height: 136px;
    top: 45%;
    left: 0;
    z-index: 1;
}

.we-give-life__img--5 {
    width: 151px;
    height: 103px;
    left: 48%;
    bottom: 15%;
    z-index: 1;
}

.we-give-life__img--6 {
    width: 130px;
    height: 124px;
    top: 70%;
    left: -5%;
    z-index: 1;
}

.we-give-life__img--7 {
    width: 179px;
    height: 254px;
    left: 35%;
    bottom: -5%;
    z-index: 3;
}

.we-give-life__img--8 {
    width: 130px;
    height: 138px;
    top: 38%;
    right: 0;
    z-index: 1;
}

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

	.we-give-life__title h2 {
	    font-size: 190px;
	}

	.we-give-life__img--1 {
		width: 324px;
		height: 253px;
	    top: 0;
	    left: 0;
	}

	.we-give-life__img--2 {
		width: 376px;
		height: 351px;
	    top: 5%;
	    left: 42%;
	}

	.we-give-life__img--3 {
	    width: 263px;
	    height: 323px;
	    top: 15%;
	    right: 0;
	}

	.we-give-life__img--4 {
		width: 372px;
		height: 341px;
	    top: 51%;
	    left: 5%;
	}

	.we-give-life__img--5 {
		width: 379px;
	    left: 55%;
	    height: 258px;
	    bottom: 0;
	}

	.we-give-life__img--6 {
		width: 324px;
		height: 310px;
		top: 60%;
		left: 0;
	}

	.we-give-life__img--7 {
		width: 449px;
	    height: 637px;
	    left: 42%;
	    bottom: 5%;
	}

	.we-give-life__img--8 {
		width: 324px;
	    top: 33%;
	    right: 40px;
	    height: 347px;
	}

}

.modal .swiper-wrapper,
.modal .swiper-wrapper .image{
	height: 300px;
}

@media screen and (min-width:992px){
	.modal .swiper-wrapper,
	.modal .swiper-wrapper .image{
		height: 761px;
	}
}

.modal .swiper-wrapper .image img{
	height: 100%;
	object-fit: cover;
}

.modal-gallery .btn-close{
	filter: brightness(0) saturate(100%) invert(94%) sepia(14%) saturate(410%) hue-rotate(314deg) brightness(104%) contrast(95%);
}

.modal-gallery .swiper-button-next::after,
.modal-gallery .swiper-button-prev::after {
    display: none;
}
.modal-gallery .swiper-button-next {
    background-image: url('assets/img/icons/icon-chevron-next.svg'); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none !important;

}

.modal-gallery .swiper-button-prev {
    background-image: url('assets/img/icons/icon-chevron-prev.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none !important;
}

/* Posicionamiento del SVG (sin cambios) */
.trama-animada {
    position: absolute;
    inset: 0; 
    width: 100%;
    height: 100%;
    pointer-events: none; 
    z-index: 1;
}

/* Configuración compartida de los trazos (sin cambios) */
.line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: bevel;
    vector-effect: non-scaling-stroke;
}

/* Líneas estáticas de fondo: REDUCIDA OPACIDAD AL 5% */
.line.base {
    stroke: rgba(249, 241, 231, 0.05); /* ANTES: 0.15 */
    stroke-width: 1px;
}

/* Líneas que se iluminan: REDUCIDA LA INTENSIDAD DEL COLOR DEL TRAZO */
.line.glow {
    stroke: rgba(249, 241, 231, 0.4); /* ANTES: 0.9. Ahora es un "gris perla" muy suave */
    stroke-width: 1.5px; /* ANTES: 2px. Ligeramente más fina */
    filter: url(#softGlow);
    opacity: 0; /* Controlado por JS */
}

#map{
	height: 300px;
}

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

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

/* Pages > Internal */

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

/* Pages > Page 404 */

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

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



/* 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;
	max-width: 746px;
	margin: 30px auto;
}

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


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

.footer .copyright hr{
    margin: 0 0 32px;
	border-top: 1px solid #F9F1E7;
}

.footer .copyright p{
	margin: 0;
	font-size: 16px;
	text-align: center;
}

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