/*
Theme Name: El Enamorado
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: 70px;	

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

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

	--bs-primary: #e61e1e;
	--bs-primary-rgb: 230,30,30;
	--bs-secondary:  #AFAFAF;
	--bs-secondary-rgb: 252,63,80;

    --bs-white: #fff;

     --bs-gray: #bfbfbf;
    --bs-light: #f5f5f5;

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

	/* Links */
    --bs-link-color: #0d6efd;
    --bs-link-color-rgb: 13,110,253;
    --bs-link-decoration: underline;
    --bs-link-hover-color: #0a58ca;
    --bs-link-hover-color-rgb: 10,88,202;

    /* BS Borders */
    --bs-border-width: 1px;
   --bs-border-color: #e61e1e;
    --bs-border-radius: 50px;

}

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

/* Animate */

@keyframes bounce{
	0% { transform: translate(0, 0); }
	50% { transform: translate(0, -10%); }
	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); }
}

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

/* 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: 18px;
	font-weight: 300;
	font-family: 'Alegreya Sans', sans-serif;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

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

@media screen and (min-width: 992px) {
	body{
	 	font-size: 22px;
	 	line-height: 34px;
	}
}

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

h1, h2, h3, h4, h5, h6{
	font-family: 'Cormorant Garamond', serif;
	font-weight: 300;
	line-height: 1em;
}

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

@media screen and (min-width: 992px) {
	h1 { font-size: 34px; }
	h2 { font-size: 30px; }
	h3 { font-size: 26px; }
	h4 { font-size: 22px; }
	h5 { font-size: 20px; }
	h6 { font-size: 18px; }
}

/*h4 {
	font-family: 'Alegreya Sans', sans-serif;
	font-size: clamp(17.5px, 15.8636px + 0.4545vw, 21.5px);
}*/



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, -50%);
		-webkit-transform: translate(0, -50%);
		-moz-transform: translate(0, -50%);
	}
	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: 30px;
	--bs-btn-padding-y: 10px;
	--bs-btn-font-weight: 500;
	border-radius: 0;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.01em;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 6px;
}

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

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

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

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

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

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

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

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

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

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

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


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


/* Image Shadow */

/*.image {
	background: #d0d0d0;
	aspect-ratio: 1 / 1;
}*/

.image.shadow,
.image.shape {
	position: relative;
	box-shadow: none !important;
}
.image.shape:before {
	content: '';
    display: block;
    position: absolute;    
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    opacity: 0.3;
    background-color: rgba(191,191,191,1);
    opacity: 0.15 !important;
    -webkit-transform: rotate(-12.5deg);
    transform: rotate(-12.5deg);   
    
    bottom: 0;
}
.image.shadow img{
	position: relative;
	display: block;
	box-shadow: 1.25rem 1.375rem 2.75rem 0rem rgba(0, 0, 0, 0.22) !important;
	z-index: 1;
}

/* Structure > Header */

.header{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);
	background: #fff;
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
	border-bottom: solid 1px var(--bs-primary);
}
.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
	max-width: 150px;
	mix-blend-mode: multiply;
}

.header.fixed{
	position: fixed;
	background: var(--bs-light);
	border-bottom: none;
	/*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;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	width: 28px;
	height: 28px;
	cursor: pointer;
	z-index: 21;
}

.header .nav-menu .menu-line {
	position: absolute;
	right: 0;
	width: 100%;
	height: 2px;
	background: var(--bs-dark);
	border-radius: 100px;

	transition:
		transform .35s cubic-bezier(0.65,0,0.076,1),
		opacity .25s ease,
		width .35s cubic-bezier(0.65,0,0.076,1);
}

.header .nav-menu .menu-line:nth-child(1) {	top: 8px;}
.header .nav-menu .menu-line:nth-child(2) {top: 50%;transform: translateY(-50%);}
.header .nav-menu .menu-line:nth-child(3) {bottom: 8px;}


.header.active .nav-menu .menu-line:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.header.active .nav-menu .menu-line:nth-child(2) {
	opacity: 0;
	transform: translateY(-50%) scaleX(0);
}

.header.active .nav-menu .menu-line:nth-child(3) {
	bottom: auto;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}


.header .navigation {
	display: none;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	margin: 0;
	text-align: center;
	background: var(--bs-white);
}
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: 14px;
    letter-spacing: 0.01em;
	font-weight: 500;
	text-transform: uppercase;
}
.header .navigation .menu li.current-menu-item a,
.header .navigation .menu li a:hover{
	color: var(--bs-primary);
}
.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 .menu .menu-item-has-children a {
    display: inline-flex;
    align-items: center;
}

.header .navigation .menu-item-has-children > a:after{
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 4px;
	transition: transform 0.3s;

	background-color: currentColor;

	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16 21.414L5.293 10.707l1.414-1.414L16 18.586l9.293-9.293 1.414 1.414z'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-mask-position: center;

	mask-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16 21.414L5.293 10.707l1.414-1.414L16 18.586l9.293-9.293 1.414 1.414z'/%3E%3C/svg%3E");
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: center;
}
@media screen and (min-width: 1200px) {

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

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

	.header .navigation .menu li a {
		font-size: 14px;
		letter-spacing: 1px;
	}

	.header .navigation .menu li a {
		text-align: left;
	}
	

	/* Submenu */

	.header .navigation .menu li .sub-menu{
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		width: 220px;
		padding: 10px 17px;
		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: 9px 0;
		font-size: 14px;
		letter-spacing: 0.01em;
		color: var(--bs-dark);
		border-bottom: 1px solid var(--bs-gray);
	}
	.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{		
		color: var(--bs-primary);
		border-bottom-color: var(--bs-gray); 
	}

	.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;
	}
	
	.header.fixed .logo{
		margin: 5px 0;
	}
	.header .navigation .menu .menu-item-has-children > a {
	    pointer-events: none;
	}

}

@media screen and (max-width: 1199px){
	.header .navigation{
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
		padding: 0 20px;
	}

	.header .navigation ul li.open-submenu > ul{
		background: rgba(0,0,0,0.05);
	}
	.header .navigation .menu li a{
		padding: 10px;
		text-align: left;
		border-bottom: solid 1px var(--bs-gray);
		font-size: 12px;
		letter-spacing: 0.2px;
	}
	.header .navigation .menu .menu-item-has-children a{
		width: 100%;
		justify-content: space-between;
	}
	.header .navigation ul li.open-submenu > ul{
		background: #fff;		
	}
}


/* Components > Forms */

label{
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 8px;
	text-transform: uppercase;
	color: var(--bs-gray);
	letter-spacing: 0.01em;
}
.bg-primary label,
.bg-dark label{
	color: var(--bs-white);
}

.required{
	color: var(--bs-gray);
}

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

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

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

#contactForm .disabled .form-control{
	color: var(--bs-gray);
}

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

.captcha p.small small{
	font-size: 12px;
}

/* 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;
	right: 20px;
}
/*.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);
}


#modalContact .title h3{
	font-size: clamp(40px, 4vw, 65px);
}

/* 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{
	background: var(--bs-gray);
	color: var(--bs-dark);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: block;
	font-size: 24px;
	text-align: center;
	align-content: center;
}
ul.socialmedia li a:hover{
	color: var(--bs-white);
	background: var(--bs-primary);
}

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


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



/* 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-bottom: 0.2em;
	letter-spacing: -0.05em;
}

.title h1{
	font-size: clamp(64px, 6.5vw, 94px);
}
.title h2{
	font-size: clamp(32px, 5vw, 66px);
}
.title h3{
	font-size: clamp(48px, 6.5vw, 94px);
}
.title h4{
	font-size: clamp(42px, 5vw, 66px);
}
.title h5{
	font-size: 20px;
}
.title span{
	color: var(--bs-primary);
}
.title p:not(.subtitle){
	margin: 0;
	margin-top: 8px;
	font-size: 18px;
	line-height: 30px;
}

.title .lead{
	font-size: 18px;
	margin: 0.1em 0;
	font-weight: 400;
	line-height: 30px;
}

.title .btn{
	margin-top: 20px;
}
.title .subtitle{
	margin: 0;	
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 3px;
	color: var(--bs-gray);
}

.title .description {
	font-size: 17px;
}
.title.lined{
	padding-bottom: 150px;
	
}

.title.lined:before{
	content: '';
	width: 1px;
	height: 120px;
	background: var(--bs-primary);
	position: absolute;
	bottom: 0;
}
.title.max-width{
	max-width: 768px;
}
.title.max-width-lg{
	max-width: 910px;
}

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title p:not(.subtitle){
		margin-top: 12px;
		font-size: 22px;
		line-height: 34px;
	}
	.title .lead{
		font-size: 22px;
		line-height: 34px;
	}
	.title .description {
		font-size: 18px;
	}
	.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;
	}
}

/* Post Navigation */
.post-navigation a{
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.2px;
	display: flex;
	align-items: center;
	gap: 50px;
	padding: 30px 0;
}

.post-navigation a.nav-post.next{
	justify-content: flex-end;
}

.post-navigation a:hover{
	color: var(--bs-primary);
}
.post-navigation a i{
	font-size: 10px;
}

/* 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;
	min-height: 700px;
	padding: 30px 0;
	background: var(--bs-light);
	    padding-bottom: 120px;
}
.presentation .title h1{
	font-size: clamp(38px, 4.5vw, 94px);
}
.presentation .title p {
	font-size: 20px;
	font-family: "Alegreya Sans SC", sans-serif;
}

.presentation .arrow-down{
	display: block;
	position: absolute;
	width: 38px;
	height: 62px;
	border: solid 2px var(--bs-dark);
	left: calc(50% - 19px);
    border-radius: 100px;
    bottom: 20px;
   	align-content: center;
    text-align: center;
    font-size: 17px;
    animation: bounce 3s infinite;
}
.presentation .arrow-down:hover{
	background: var(--bs-dark);
	color: var(--bs-light);
}


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


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

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




/*
	Pages
*/


/* Page > Home */

.page.home .feed-products article{
	background: #fff;
	height: 100%;
}
.page.home .feed-products article .thumbnail{
	aspect-ratio: 1 / 1;
	height: auto;
}

.page.home .feed-products article h2{
	color: var(--bs-primary);
	text-transform: uppercase;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
}
.page.home .feed-products article .data{
	padding: 15px;
	padding-bottom: 60px;
}

.page.home .feed-products article .btn{
	position: absolute;
	bottom: 15px;
	left: 15px;
}


/* Page > About */

.page.about .history .items{
	position: relative;
}

.page.about .history .items:before{
	content: '';
	width: 1px;
	height: 100%;
	position: absolute;
	left: 1px;
	top: 0;
	background: var(--bs-primary);
}
.page.about .history .items article .year{
	font-family: 'Cormorant Garamond', serif;
	color: var(--bs-secondary);
	font-size: 100px;
	font-weight: 300;
	margin-bottom: 20px;
}


.page.about .history .items article .title {
	border-left: solid 4px var(--bs-primary);
	margin-top: 120px;
    padding-left: 50px;
}


.page.about .history .items article .data{
	padding-left: 50px;
}

@media screen and (min-width: 992px){
	.page.about .history .items:before{
		left: 50%;
	}
	.page.about .history .items article .data{
		padding-left: 0;
	}

	.page.about .history .items article:nth-child(even) .title {
		border-right: solid 4px var(--bs-primary);
		margin-top: 120px;
	    padding-right: 50px;
	    text-align: right;
	    border-left: none;
	    padding-left: 0;
	}
}



/* Pages > Contact */

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

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


/*
	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.1 / 1;
	width: 100%;
	height: 100%;
	background-color: #eee;
	overflow: hidden;
}
.feed article .thumbnail img{	
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: 0.5s all;
}
.feed article:hover .thumbnail img{
    transform: scale(1.05);
}

.feed article .data{
	padding: 20px 10px;
}

.feed article h2{
	font-size: 16px;
	margin: 0;
}

.feed article .btn{
	position: relative;
	z-index: 5;
	pointer-events: none;
	min-width: fit-content;
}

.feed article:hover .btn.btn-primary{
	background-color:transparent;
    color: var(--bs-primary);
}

.feed article .see-more{
	display: block;
	text-transform: uppercase;
	font-weight: 400;
	margin-top: 18px;
	font-size: 16px;
}

.feed article:hover .see-more{
	color: var(--bs-primary);
}

@media screen and (min-width: 992px){
	
	.feed article h2{
		font-size: 18px;
	}
}

/* Feed > Authors*/

.feed-authors article {
	border: solid 1px var(--bs-light);
}

.feed-authors article .thumbnail img{
	object-position: 50% 25%;
}


/* Feeed > Products*/
.feed-products article .thumbnail{
	aspect-ratio: 1 / 1;
}

.feed-products article h2{
	font-weight: 500;
	font-size: 24px;
	line-height: 1.3em;
	letter-spacing: -0.03em;
}


/* Feed > Collections */
.feed-collections article .thumbnail{
	aspect-ratio: 0.89 / 1;
}

.feed-collections article h2{
	text-transform: uppercase;
	font-weight: 400;
	font-size: 24px;
	line-height: 30px;
}

/*
	CPT Single
*/



/* CPT > Single > Blog */

.single.products .title h3{
	font-size: clamp(40px, 6vw, 82px);
}
.single.products .title h1{
	font-size: clamp(40px, 5vw, 65px);
}

.single.products .specifications p{
	margin-top: 20px;
}


@media screen and (min-width: 768px){
    .main:has(.single.products){
		overflow: visible;
	}
	.single.products .content .sticky-aside{
	    position: sticky;
	    top: 120px;
	    align-self: flex-start;
	    height: fit-content;
	}
}

/* Structure > Footer */

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

.footer .widgets{
	padding: 2rem;
	text-align: center;
	font-size: 14px;
}

.footer .top{
	text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--bs-primary);
    justify-content: center;
}

.footer .top:before{
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 4px;
	transition: transform 0.3s;

	background-color: currentColor;

	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16 10.586l-9.293 9.293-1.414-1.414L16 7.757l10.707 10.708-1.414 1.414z'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-mask-position: center;

	mask-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16 10.586l-9.293 9.293-1.414-1.414L16 7.757l10.707 10.708-1.414 1.414z'/%3E%3C/svg%3E");
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: center;
}
.footer .widgets .menu{
	margin: 0 0 30px;
	text-transform: uppercase;
	color: var(--bs-gray);
	letter-spacing: 0.02em;
    font-weight: 400;
}

.footer .widgets .copyright{
	border-top: solid 1px var(--bs-primary);
	padding-top: 2.5rem;
}
.footer .vias{
	font-size: 18px;
	line-height: 32px;
	font-weight: 400;
}

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

	.footer .menu {
		display: flex;
		gap: 1.25rem;
	}
	
}

/* Extras */

.filter ul.alphabet {
	display: flex;
	gap: 15px;
	text-transform: uppercase;
	font-size: 20px;
}

.filter ul.alphabet li a:hover,
.filter ul.alphabet li a.active{
	text-decoration: underline;
}


/* Btn Arrow */
.btn-arrow{
	position: relative;
	display: flex;
	width: fit-content;
	align-items: center;
	justify-content: flex-start;
	padding: 10px 0;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--bs-primary);
	overflow: hidden;
	transition:
		color .45s cubic-bezier(0.65,0,0.076,1);
}
.btn-arrow .arrow{
	position: relative;
    margin-left: 10px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--bs-primary);
    transition: transform .45s cubic-bezier(0.65, 0, 0.076, 1), 
    background .45s cubic-bezier(0.65, 0, 0.076, 1);
}
.btn-arrow .arrow:before{
	content: '';
	position: absolute;
	top: 50%;
	right: 11px;
	width: 0;
	height: 2px;
	background: #fff;
	transform: translateY(-50%);
	transition:
		width .45s cubic-bezier(0.65,0,0.076,1),
		right .45s cubic-bezier(0.65,0,0.076,1);
}
.btn-arrow .arrow:after{
	content: '';
	position: absolute;
	top: 50%;
	right: 11px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
	transition:
		right .45s cubic-bezier(0.65,0,0.076,1),
		transform .45s cubic-bezier(0.65,0,0.076,1);
}
.btn-arrow:hover .arrow:before{
	width: 14px;
	right: 8px;
}

.btn-arrow:hover .arrow:after{
	right: 8px;
}
.btn-arrow:after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: currentColor;
	transition:
		width .45s cubic-bezier(0.65,0,0.076,1);
}

.btn-arrow:hover:after{
	width: 100%;
}