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

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

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

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

    --bs-body-color: #050A45;
    --bs-body-bg: #fff;

	--bs-primary: #A072B1;
	--bs-primary-rgb: 160, 114, 177; /* rgb(160, 114, 177)*/

	--bs-secondary: #F6CF84;
	--bs-secondary-rgb: 246, 207, 132;/* rgb(246, 207, 132)*/
	--bs-blue: #050A45;

    --bs-white: #FAF7F0;
    --bs-white-rgb: 250,247,240; /* rgb(250,247,240)*/

    --bs-light: #f2f6f8;

	--bs-black: #000;

    --bs-dark: #050A45;
    --bs-darg-rgb: 5,10,69; /* rgb(5,10,69)*/

	--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: 24px;

}

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

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

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

.has-primary-background-color,
.bg-primary{ 
	color: var(--bs-white);
}

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

.has-blue-background-color,
.bg-blue{ 
	background: var(--bs-blue); 
	color: var(--bs-white);
}

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

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

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

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

.bg-image {
	background-color: var(--bs-dark);
	object-fit: cover;
}

/* 3. Structure */

html{
	scroll-behavior: smooth;
	overflow-x: hidden;
	overflow-x: clip;
}
body{
	font-size: 16px;
	font-weight: 400;	
	font-family: 'Open Sans', sans-serif;	
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;

	overflow-x: hidden;
	overflow-x: clip;
}


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

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

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

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

b, strong {
    font-weight: 700;
}

*,
*::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: 100%;
}
.container{
	max-width: 1600px;
}

/*
[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{
		padding: 0 70px;
	}
}

/* Keyframes */

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

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

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

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

/* Structure > extras */

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

.overh{
	overflow: hidden;
}

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

.grecaptcha-badge{
	opacity:0;
}


/* Components > buttons */

.btn{
	min-width: 150px;
	--bs-btn-padding-x: 19px;
	--bs-btn-padding-y: 8px;
	--bs-btn-font-weight: 500;
	font-family: 'Londrina Solid', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 150%;
	letter-spacing: 5%;
	text-transform: uppercase;
	border-radius: 50px;

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

    --bs-btn-active-bg: var(--bs-secondary);
    --bs-btn-active-color: var(--bs-dark);
    --bs-btn-active-border-color: var(--bs-secondary);
}
.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-blue);
    --bs-btn-border-color: var(--bs-secondary);

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

    --bs-btn-active-bg: var(--bs-white);
    --bs-btn-active-color: var(--bs-dark);
    --bs-btn-active-border-color: var(--bs-white);
}
.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;
	}
}

/* Structure > Header */

.header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);
	/*background: #fff;*/
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
	font-family: 'Londrina Solid', sans-serif;
}
.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
	max-width: 150px;
}

.header.active {
	background: var(--bs-dark);
}
.header.fixed{
	position: fixed;
	background: var(--bs-dark);
	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-white);
	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-dark);
}
.header.active .navigation {
	display: block;
}
.header .navigation .menu {
	position: relative;
}

.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 10px 12px;
	font-size: 18px;
	font-weight: 500;
	color: var(--bs-white);
	text-transform: uppercase;
	font-weight: 300;
}
.header .navigation .menu li.current-menu-item a,
.header .navigation .menu li a:hover{
	color: var(--bs-primary);
}

.header .navigation .menu li.menu-contact a,
.footer li.menu-contact a{
	display: inline-block;
	padding: 8px 32px !important;
	color: var(--bs-white);
	background: var(--bs-primary);
	transition: 0.3s all;
	border-radius: 50px;
}

.header .navigation .menu li.menu-contact a:hover,
.footer li.menu-contact a:hover{
	background: var(--bs-secondary);
	color: var(--bs-dark);
}

.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-item-has-children > a{
	display: inline-flex !important;
	align-items: center;
}
.header .navigation .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-left: 4px;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.3977 15.6634C12.178 15.8831 11.8219 15.8831 11.6022 15.6634L5.86739 9.92853C5.64772 9.70886 5.64772 9.35276 5.86739 9.13308L6.13256 8.86788C6.35222 8.64821 6.70838 8.64821 6.92805 8.86788L12 13.9398L17.0719 8.86788C17.2916 8.64821 17.6477 8.64821 17.8674 8.86788L18.1326 9.13308C18.3522 9.35276 18.3522 9.70886 18.1326 9.92853L12.3977 15.6634Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.3977 15.6634C12.178 15.8831 11.8219 15.8831 11.6022 15.6634L5.86739 9.92853C5.64772 9.70886 5.64772 9.35276 5.86739 9.13308L6.13256 8.86788C6.35222 8.64821 6.70838 8.64821 6.92805 8.86788L12 13.9398L17.0719 8.86788C17.2916 8.64821 17.6477 8.64821 17.8674 8.86788L18.1326 9.13308C18.3522 9.35276 18.3522 9.70886 18.1326 9.92853L12.3977 15.6634Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
	transition: transform 0.3s;
}

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

	.header .nav-menu {
		display: none;
	}

	.header .navigation{
		display: flex;
		align-items: center;
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		background: transparent;
		width: 100%;
	}
	.header .navigation ul,
	.header .navigation ul li {
		position: relative;
		display: inline-block;
		vertical-align: middle;
	}
	.header .navigation ul{
		margin: 0;
	}

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

	.header .navigation .menu{
		position: relative;
   		width: 100%;
    	padding-right: 182.5px;
	}

	.header .navigation .menu li.menu-contact{
		position: absolute;
		right: 0;
		top: 50%;
        transform: translateY(-50%);
	}
	
	/* Submenu */

	.header .navigation .menu li .sub-menu{
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		width: 140px;
		background: var(--bs-blue);
		color: 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;
    	text-align: left;
	}
	.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: 12px 20px;
	}	
	
	.header .navigation .menu li .sub-menu li a:hover{
		background: var(--bs-primary);
		color: var(--bs-white);
	}
	.header .navigation .menu li .sub-menu li.current-menu-item > a {
		color: var(--bs-white);
	}

}

@media screen and (max-width: 1199px){
	.header .navigation{
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	}
	.header .navigation .menu li.active a,
	.header .navigation .menu li a:hover{
		background: var(--bs-primary);
		color: var(--bs-white);
	}

	.header .navigation ul li.open-submenu > ul{
		background: rgba(0,0,0,0.05);
	}
	.header .navigation ul li ul li a{
		padding-top: 6px;
		padding-bottom: 6px;
		font-size: 16px;
	}
	.header .navigation .menu li.menu-contact a{
		margin-top: 8px;
	}
}


/* Components > Forms */

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

.required{
	color: #ff0000;
}

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

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

/* Form checkbox */

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

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

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

/* Form files */

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

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

/* Forms > Show password */

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

/* Components > modals */

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

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

@media screen and (min-width: 992px) {
	.modal .btn-close{
		top: 20px;
		right: -50px;
	}
}

#modalVideo .modal-content{
	background-color: #000;
}
#modalVideo .modal-body{
	padding: 0;
}
#modalVideo .btn-close{
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 30px;
	filter: brightness(0) invert(1);
}

/* Components > tables */

@media screen and (max-width: 767px){
	.table-responsive{
		white-space: nowrap;
		overflow: auto;
	}
	.table-responsive .table{
		white-space: normal;
	}
}

/* Components > socialmedia */

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

ul.socialmedia{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: 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: 18px;
	}
}



/* Components > Slider  */

.slider{
	position: relative;
}

.slider .swiper{
	overflow: visible;
}

/* Swiper Continuous */
.swiper[data-continuous="true"] .swiper-wrapper {
	transition-timing-function: linear !important;
}
.swiper[data-continuous="true"] .swiper-slide {
	flex-shrink: 0;
}

/*Swiper Equal height */
.swiper[data-equal-height="true"] .swiper-wrapper {
    align-items: stretch;
}
.swiper[data-equal-height="true"] .swiper-slide {
    height: auto;
    display: flex;
}


/**/


/* Components > Slider > Swiper */

.slider:has(.swiper-pagination){
    padding-bottom: 60px;
}
.swiper-pagination {
	bottom: 0;
}
.swiper-pagination.left {
    left: 0;
    width: fit-content;
}
.swiper-pagination-bullet{
	background: var(--bs-dark);
	opacity: 0.2;
}
.swiper-pagination-bullet-active {
	opacity: 1;
}



.swiper-button-next,
.swiper-button-prev{
	position: absolute;
	width: 48px;
	height: 48px;
    color: var(--bs-dark);
    background: transparent;
}

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

.swiper-button-prev::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: currentColor;

	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill='%23050A45' stroke='%23050A45' d='M12.008 4.687c.085 0 .159.026.241.108a.337.337 0 0 1 .108.249c0 .087-.026.16-.108.243l-6.361 6.361h13.41c.121 0 .197.036.26.1a.322.322 0 0 1 .097.252c0 .12-.034.192-.096.253a.339.339 0 0 1-.261.099H5.888l6.355 6.355c.082.081.11.158.111.25v.001a.301.301 0 0 1-.055.185l-.052.061a.31.31 0 0 1-.242.107.344.344 0 0 1-.256-.114L4.801 12.25a.416.416 0 0 1-.091-.125v-.001a.316.316 0 0 1-.023-.124c0-.048.008-.087.023-.122v-.001a.41.41 0 0 1 .09-.125l6.951-6.95a.348.348 0 0 1 .257-.114Z'/%3E%3C/svg%3E")
		no-repeat center / 24px 24px;

	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill='%23050A45' stroke='%23050A45' d='M12.008 4.687c.085 0 .159.026.241.108a.337.337 0 0 1 .108.249c0 .087-.026.16-.108.243l-6.361 6.361h13.41c.121 0 .197.036.26.1a.322.322 0 0 1 .097.252c0 .12-.034.192-.096.253a.339.339 0 0 1-.261.099H5.888l6.355 6.355c.082.081.11.158.111.25v.001a.301.301 0 0 1-.055.185l-.052.061a.31.31 0 0 1-.242.107.344.344 0 0 1-.256-.114L4.801 12.25a.416.416 0 0 1-.091-.125v-.001a.316.316 0 0 1-.023-.124c0-.048.008-.087.023-.122v-.001a.41.41 0 0 1 .09-.125l6.951-6.95a.348.348 0 0 1 .257-.114Z'/%3E%3C/svg%3E")
		no-repeat center / 24px 24px;
}
.swiper-button-next::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: currentColor;

	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill='%23050A45' stroke='%23050A45' d='M11.995 4.69c.071 0 .133.017.195.06l.061.053 6.948 6.948a.414.414 0 0 1 .091.125v.001a.314.314 0 0 1 .024.124.31.31 0 0 1-.024.122v.001a.41.41 0 0 1-.09.125l-6.955 6.948c-.091.09-.17.117-.253.117-.08 0-.153-.025-.236-.11l-.005-.006-.052-.06a.3.3 0 0 1-.056-.183c0-.065.014-.122.056-.182l.052-.06 6.361-6.361H4.702c-.122 0-.194-.036-.255-.096-.062-.061-.096-.134-.096-.256s.034-.195.095-.256h.001c.06-.06.133-.095.255-.096h13.41l-6.355-6.355a.347.347 0 0 1-.106-.185l-.005-.067c-.001-.09.025-.164.105-.244l.001-.001a.313.313 0 0 1 .243-.107Z'/%3E%3C/svg%3E")
		no-repeat center / 24px 24px;

	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill='%23050A45' stroke='%23050A45' d='M11.995 4.69c.071 0 .133.017.195.06l.061.053 6.948 6.948a.414.414 0 0 1 .091.125v.001a.314.314 0 0 1 .024.124.31.31 0 0 1-.024.122v.001a.41.41 0 0 1-.09.125l-6.955 6.948c-.091.09-.17.117-.253.117-.08 0-.153-.025-.236-.11l-.005-.006-.052-.06a.3.3 0 0 1-.056-.183c0-.065.014-.122.056-.182l.052-.06 6.361-6.361H4.702c-.122 0-.194-.036-.255-.096-.062-.061-.096-.134-.096-.256s.034-.195.095-.256h.001c.06-.06.133-.095.255-.096h13.41l-6.355-6.355a.347.347 0 0 1-.106-.185l-.005-.067c-.001-.09.025-.164.105-.244l.001-.001a.313.313 0 0 1 .243-.107Z'/%3E%3C/svg%3E")
		no-repeat center / 24px 24px;
}

.circle.swiper-button-next,
.circle.swiper-button-prev{
	border: 1px solid var(--bs-dark);
	border-radius: 50%;
    background-size: 12px 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background-color: var(--bs-dark);
    color: var(--bs-white);
}


.swiper-button-next.bottom,
.swiper-button-prev.bottom{
    top: auto;
    bottom: 0;
}

.swiper-button-prev.bottom {
    left: auto;
    right: 60px;
}

:is(.bg-dark, .bg-primary) :is(.circle.swiper-button-next, .circle.swiper-button-prev) {
	color: var(--bs-white);
	border-color: var(--bs-white);
}

:is(.bg-dark, .bg-primary) :is(.circle.swiper-button-next:hover, .circle.swiper-button-prev:hover) {
	background: var(--bs-white);
	border-color: var(--bs-white);	
}

.bg-primary :is(.circle.swiper-button-next:hover, .circle.swiper-button-prev:hover) {
	color: var(--bs-primary);
}
.bg-dark :is(.circle.swiper-button-next:hover, .circle.swiper-button-prev:hover) {
	color: var(--bs-dark);
}

:is(.bg-dark, .bg-primary) .swiper-pagination-bullet {
	background: var(--bs-white);
}

/* Components > Slider > Slick */

.slider .slick-slider .dots {
	position: absolute;
	width: 100%;
	z-index: 10;
	bottom: 20px;
}
.slider .slick-slider .dots .slick-dots { width: 100%; padding: 0; margin: 0; text-align: center; }
.slider .slick-slider .dots .slick-dots li { display: inline-block; vertical-align: top; margin: 10px 6px; }
.slider .slick-slider .dots .slick-dots li button{
	display: block;
	width: 13px;
	height: 13px;
	padding: 0;
	text-indent: -9999px;
	background: #D6F74D;
	border: solid 2px #D6F74D;
	border-radius: 50%;
	overflow: hidden;
	-webkit-appearance: none;
	cursor: pointer;
}
.slider .slick-slider .dots .slick-dots li.slick-active button { 
	background: #000; 
	opacity: 1;
}

@media screen and (min-width: 992px){
	.slider .slick-slider .dots .slick-dots li button{
		width: 15px;
		height: 15px;
	}
}

.slider .slick-slider .arrows button{
	position: absolute;
	top: calc(50% - 15px);
	left: 0;
	width: 18px;
	height: 18px;
	padding: 0;
	line-height: 300px;
	text-align: center;
	font-size: 50px;
	color: #fff;
	background: transparent;
	border: 0;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	overflow: hidden;
	z-index: 3;
}
.slider .slick-slider .arrows button:focus{
	outline: 0;
}
.slider .slick-slider .arrows button:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('assets/img/icons/icon-arrow-back.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.slider .slick-slider .arrows button.slick-next{ left: auto; right: 0; }
.slider .slick-slider .arrows button.slick-next:after{ background-image: url('assets/img/icons/icon-arrow-next.svg'); }

@media screen and (min-width: 768px) {
	.slider .slick-slider .arrows button{
		width: 30px;
		height: 30px;
		top: calc(50% - 14px);
		left: 40px;
	}
	
	.slider .slick-slider .arrows button.slick-next{ left: auto; right: 40px; }
}





/* Categories Filter */

.categories-filter ul {
	width: 100%;
    white-space: nowrap;    
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    justify-content: center;
    gap: 5px;
    align-items: center;
    margin: 0;
     scrollbar-width: none;
    -ms-overflow-style: none;
    
}
.categories-filter ul li a {
    display: block;
    padding: 8px 22px;
    border: solid 1px transparent;
    border-radius: 50px;
    position: relative;
}
.categories-filter ul li.active a,
.categories-filter ul li a:hover{
	background: transparent;
	color: var(--bs-secondary);
	border-color: var(--bs-secondary);
}


/* Components > Title */

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

.title h1,
.title h2,
.title h3,
.title h4,
.title h5{
	margin: 0;
	font-family: 'Fraunces 72pt';
	line-height: 100%;
}

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

.title .btn{
	margin-top: 20px;
}
.title .subtitle{
	font-family: 'Big Shoulders';
	margin: 0;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 2px;
}

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

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

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

	.title .subtitle{
		font-size: 20px;
	}
	.title .btn{
		margin-top: 32px;
	}

}

/* 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);
	border: solid 1px var(--bs-white);
	color: var(--bs-white);
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
}
article:hover .video-player .play,
.video-player.active .play,
.video-player:hover .play{
	background: var(--bs-secondary);
	color: #fff;
}
.video-player .play:hover{
	transform: scale(1.1);
}
.video-player .play i{
	margin-left: 4px;
}

.video-player.allowed{
	cursor: pointer;
}
.video-player.allowed .play{
	display: block;
}
/*@media screen and (min-width: 1200px){

	.video-player .play{
		top: calc(50% - 28px);
		left: calc(50% - 28px);
		width: 56px;
		height: 56px;
		font-size: 24px;
		line-height: 58px;
	}
	.video-player .play i{
		margin-left: 5px;
	}
}*/

/* Components > Pagination */

.pagination {
	justify-content: center;
	width: 100%;
	padding: 60px 0 0;
	text-align: center;
}
.pagination .screen-reader-text {
	display: none;
}
.pagination .page-numbers {
	display: inline-block;
	vertical-align: middle;
	padding: 6px 12px;
	font-size: 18px;
}
.pagination .page-numbers:hover{
	color: var(--bs-primary);
}
.pagination .page-numbers.current{
	font-weight: bold;
	color: var(--bs-primary);
}

@media screen and (min-width: 992px) {
	.pagination .page-numbers {
		font-size: 22px;
	}
}


/* Components > Share */


.share ul {
	display: flex;
	gap: 12px;
	align-items: center;
	margin: 0;
}
.share ul li a{
	display: block;
	font-size: 18px;
	color: var(--bs-white);
}
.share ul li a:hover{
	color: var(--bs-primary);
}

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

/* Components > Errors */

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

.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;
	overflow: hidden;
	isolation: isolate;
	background: var(--bs-dark) no-repeat bottom;
	background-size: cover;
}

.presentation video {
	position: absolute;
	z-index: 0;
	top: -5%;
	left: -5%;
	display: block;
	width: 110%;
	height: 110%;
	max-width: none;
	object-fit: cover;
}


.presentation .logo {
	position: absolute;
	z-index: 2;
	top: 70px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	pointer-events: none;
	padding: 30px;
}

.presentation [data-depth] {
	--parallax-x: 0px;
	--parallax-y: 0px;

	transform: translate3d(
		var(--parallax-x),
		var(--parallax-y),
		0
	);

	will-change: transform;
}


.presentation .image {
	position: absolute;
	z-index: 2;
	bottom: -3%;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	pointer-events: none;
	scale: 1.2;
}

.presentation .container {
	position: relative;
	z-index: 3;
}

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

.presentation .title h1 {
	font-family: 'Londrina Solid', sans-serif;
	font-weight: 400;
	font-size: 30px;
	line-height: 100%;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.presentation .title p {
	font-family: 'Londrina Solid', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 130%;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.presentation .arrow-down {
	display: block;
	position: absolute;
	z-index: 4;
	left: calc(50% - 18px);
	bottom: 0;
	width: 36px;
	height: 38px;
	background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
	background-size: contain;
}

@media screen and (min-width: 576px) {
	.presentation .title h1 {font-size: 40px;}
	.presentation .title p {font-size: 20px;}
	.presentation .logo {top: 10px;}
	.presentation .logo img {padding: 40px 60px;}
	.presentation .image {bottom: -120px; scale: 1;}
	.presentation .arrow-down {bottom: 10px;}	
}

@media screen and (min-width: 678px) {
	.presentation {padding: 100px 0; }
	.presentation .title{margin-top: 120px}
	.presentation .image {bottom: -220px;}
}
/*@media screen and (min-width: 860px) {
	.presentation{align-items: flex-end; }
}*/
@media screen and (min-width: 1200px) {
	.presentation{ min-height: 800px;}
	.presentation{align-items: flex-end;}
}
@media screen and (min-width: 1400px) {	
	.presentation .image {bottom: -300px;}
}
@media screen and (min-width: 1600px) {
	.presentation .image {bottom: -320px;}
}

/*@media screen and (min-width: 1440px) {
	.presentation {height: 100svh; }
	.presentation .logo {top: 80px;}
	.presentation .image {bottom: -300px;}
}*/

/*@media screen and (min-width: 1920px) {
	.presentation { padding: 180px 0;}
	.presentation .logo {top: 120px;}
	.presentation .image {bottom: -180px;}
}*/


/* presentation entering */

.presentation .logo img,
.presentation .image img,
.presentation .title,
.presentation .arrow-down {
	will-change: opacity, transform, filter;
}

.presentation.is-entering .logo img,
.presentation.is-entering .image img,
.presentation.is-entering .title,
.presentation.is-entering .arrow-down {
	opacity: 0;
	filter: blur(8px);
}

.presentation.is-entering .logo img {
	transform: translate3d(0, -34px, 0) scale(0.96);
}
.presentation.is-entering .image img {
	transform: translate3d(0, 54px, 0) scale(1.04);
}
.presentation.is-entering .title {
	transform: translate3d(0, 32px, 0);
}
.presentation.is-entering .arrow-down {
	animation: none;
}

.presentation.is-entered .logo img,
.presentation.is-entered .image img,
.presentation.is-entered .title,
.presentation.is-entered .arrow-down {
	opacity: 1;
	filter: blur(0);
	transform: translate3d(0, 0, 0) scale(1);
}

.presentation.is-entered .logo img {
	transition: opacity 1s ease, filter 1s ease, transform 1s cubic-bezier(.16, 1, .3, 1);
}

.presentation.is-entered .image img {
	transition: opacity 1.1s ease .2s, filter 1.1s ease .2s, transform 1.1s cubic-bezier(.16, 1, .3, 1) .2s;
}

.presentation.is-entered .title {
	transition: opacity .85s ease .45s, filter .85s ease .45s, transform .85s cubic-bezier(.16, 1, .3, 1) .45s;
}

.presentation.is-entered .arrow-down {
	transition: opacity .7s ease .85s, filter .7s ease .85s;
	animation: bounce 3s infinite 1.4s;
}

@media (prefers-reduced-motion: reduce) {

	.presentation[data-depth] {
		transform: none !important;
	}

	.presentation.is-entering .logo img,
	.presentation.is-entering .image img,
	.presentation.is-entering .title,
	.presentation.is-entering .arrow-down {
		opacity: 1;
		filter: none;
		transform: none;
	}

	.presentation .arrow-down {
		animation: none;
	}
}

/* Modules > Banner */

.banner{
	position: relative;
	display: flex;
	align-items: center;
	background-color: var(--bs-dark);
	padding: 50px 0;
	min-height: 600px;
	height: 70svh;
	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 .title p:not(.subtitle) {
    	font-size: 21px;
    }
}


/* Module > Tab Menu */

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

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

/* Module > CTA */

.module-cta{
	min-height: 600px;
	display: flex;
    align-items: center;
}


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


/* Modules > Image & Text */

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

.module-img-txt .data{
	max-width: 640px;
	margin: 0 auto;
	padding: 80px 20px;
}


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

/*
	Pages
*/


/* Page > Home */

.page.home .team .items article .image img {
	aspect-ratio:  1 / 1;
	object-fit: cover;
	border-radius: 24px;
}
.page.home .team .items article .name {
	font-family: 'Londrina Solid', sans-serif;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.page.home .history .slider .image img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}
@media screen and (min-width: 992px) {
	.page.home .team .items article .name {
		font-size: 24px;
	}
}

.page.home .music .slider article {
	position: relative;
}
.page.home .music .slider article a{
	position: absolute;
	inset: 0;
	z-index: 2;
}
.page.home .music .slider article .play{
	z-index: 1;
}

.page.home .music .slider article .image img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.page.home .about{
	min-height: 520px;
	display: flex;
    align-items: center;
}

/* Pages > Blog */
.page.blog .banner {
    min-height: 400px;
    height: 40vh;
    padding-bottom: 0;
}

@media screen and (min-width: 992px) {
	.page.home .about{
		min-height: 787px;
	}
}


/* 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 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: 3 / 2;
	width: 100%;
	height: 100%;
	border-radius: 24px;
	overflow: hidden;
}
.feed article .thumbnail img{
	aspect-ratio: 3 / 2;
	object-fit: cover;
	width: 100%;
	transition: 0.3s all;
}
.feed article:hover .thumbnail img{
    transform: scale(1.1);
}

/* Feed > Blog */


.feed-blog article .data {
	padding: 10px 0;
}
.feed-blog article .data h2{
	font-family: 'Fraunces 72pt';
	font-weight: 400;
	font-size: 32px;
	line-height: 100%;
	max-width: 80%;
    text-wrap-style: balance;
}
.feed-blog article .data p{

}
.feed-blog article .meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	font-family: 'Big Shoulders';
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 10%;
}
.feed-blog article .meta .terms li{
	display: inline-block;
	vertical-align: middle;
}



/*
	CPT Single
*/

/* CPT > Single */

.single{}
.single .content article.post-content{}

.single .content article.post-content img{
	max-width: 100%;
	height: auto;
	border-radius: 24px;
}

.single .content article.post-content .wp-block-quote{
	border-left: solid 2px var(--bs-dark);
	padding-left: 30px;
}


/* CPT > Single > Blog */

.single.blog .content {
	padding-top: 140px;
}

.single.blog .content .title h1{
	max-width: 60%;
	text-wrap-style: balance;
}

.single.blog .content .thumbnail img{
	aspect-ratio: 2.13 / 1;
	object-fit: cover;
	border-radius: 20px;
}

.single.blog .content img{

}
.single.blog .content figcaption {
    border-left: solid 2px var(--bs-white);
    padding-left: 12px;
}


.single.blog .content .post-content .meta{
	border-top: solid 1px var(--bs-white);
	padding-top: 80px;
	margin-top: 80px;
}

.single.blog .content .post-content .meta .share ul{
	justify-content: flex-start;
}

.single.blog .tags ul{
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	gap: 16px;
}
/*.single.blog .tags ul li a{
	display: block;
	background: transparent;
	color: var(--bs-primary);
	border: solid 1px var(--bs-primary);
	border-radius: 20px;
	padding: 5px 20px;
}

.single.blog .tags ul li a:hover{
	background: var(--bs-primary);
	color: var(--bs-white);
}*/

@media screen and (min-width: 992px){
	.single.blog .tags ul{
		justify-content: flex-end;
	}
}

/* Structure > Footer */

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

.footer .widgets{
	padding: 40px 0;
	text-align: center;
}

.footer .border-top{
	border-top: solid 1px #102596 !important;
	padding-top: 40px;
}

.footer .widgets .logo{
	display: block;
	width: 182.5px;
	margin: 0 auto 30px;
}

.footer .widgets .menu{
	margin: 0 0 30px;
}


.footer .widgets .menu li a{
	font-size: 18px;
	font-weight: 300;
	display: block;
	padding: 3px;
	text-decoration: none;
	text-transform: uppercase;
}

.footer .widgets .menu.primary{
	font-family: 'Londrina Solid', sans-serif;
}

.footer .widgets .copyright {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 12px;
	margin-top: 40px;
}

.footer .widgets .menu.legal li a{
	font-size: 12px;
	text-decoration: underline;
	text-transform: none;
}

.footer .credits {
	padding-bottom: 40px;
	margin-bottom: 40px;
}
.footer .credits .items{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer .credits .items .item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    flex:0 0 auto;
    text-align:center;
}

.footer .credits .items .item:first-child {
    width: 100%;
}

.footer .credits .items .item .position{
	font-family: Big Shoulders;
	font-weight: 300;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 2%;
	text-transform: uppercase;
    white-space:nowrap;
}

.footer .credits .items .item .name{
	font-family: Big Shoulders;
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	letter-spacing: 2%;
	text-transform: uppercase;
    white-space:nowrap;
}

@media screen and (min-width: 992px){
	.footer .widgets{
		padding: 40px 0;
		text-align: left;
	}
	.footer .widgets .menu {
		display: inline-flex;
		align-items: center;
		gap: 32px;
		margin: 0;
	}
	.footer .widgets .logo{
		margin: 0;
	}
	.footer .credits .items .item .name{
		font-size: 28.8px;
	}
	.footer .widgets .menu.primary {
		width: 100%;
	}
	.footer .widgets .menu.primary .menu-contact{
		position: absolute;
		right: 0;
	}
	.footer .credits .items .item .position{
		font-size: 16px;
	}

	.footer .credits .items .item .name{
		font-size: 20px;
	}
}

/* Components > Video Player */
.video-player {
	position: relative;
}
.video-player .video-player{
	position: relative;
	width: 100%;
	/*padding: 25% 0;*/
	aspect-ratio: 16 / 9;
	background: #000 no-repeat center;
	background-size: cover;
	border-radius: 12px;
	transition: all 0.3s;
}


/* Calendar */
.calendar .categories-filter .btn{
	color: var(--bs-white);
	border-radius: 0;
	min-width: fit-content;
}

.calendar .categories-filter .btn.active{
	color: var(--bs-secondary);
	border-color: var(--bs-secondary);
}
.calendar .cal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 18px;
  }
.calendar .cal-header h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    min-width: 220px;
    text-align: center;
  }
.calendar .nav-btn {
	position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--bs-dark);
    background: transparent;
    color: var(--bs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: background 0.15s ease;
  }

.calendar .nav-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill='%23050A45' stroke='%23050A45' d='M12.008 4.687c.085 0 .159.026.241.108a.337.337 0 0 1 .108.249c0 .087-.026.16-.108.243l-6.361 6.361h13.41c.121 0 .197.036.26.1a.322.322 0 0 1 .097.252c0 .12-.034.192-.096.253a.339.339 0 0 1-.261.099H5.888l6.355 6.355c.082.081.11.158.111.25v.001a.301.301 0 0 1-.055.185l-.052.061a.31.31 0 0 1-.242.107.344.344 0 0 1-.256-.114L4.801 12.25a.416.416 0 0 1-.091-.125v-.001a.316.316 0 0 1-.023-.124c0-.048.008-.087.023-.122v-.001a.41.41 0 0 1 .09-.125l6.951-6.95a.348.348 0 0 1 .257-.114Z'/%3E%3C/svg%3E")
		no-repeat center / 24px 24px;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill='%23050A45' stroke='%23050A45' d='M12.008 4.687c.085 0 .159.026.241.108a.337.337 0 0 1 .108.249c0 .087-.026.16-.108.243l-6.361 6.361h13.41c.121 0 .197.036.26.1a.322.322 0 0 1 .097.252c0 .12-.034.192-.096.253a.339.339 0 0 1-.261.099H5.888l6.355 6.355c.082.081.11.158.111.25v.001a.301.301 0 0 1-.055.185l-.052.061a.31.31 0 0 1-.242.107.344.344 0 0 1-.256-.114L4.801 12.25a.416.416 0 0 1-.091-.125v-.001a.316.316 0 0 1-.023-.124c0-.048.008-.087.023-.122v-.001a.41.41 0 0 1 .09-.125l6.951-6.95a.348.348 0 0 1 .257-.114Z'/%3E%3C/svg%3E")
		no-repeat center / 24px 24px;
}
.calendar .nav-btn.js-cal-next::after {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill='%23050A45' stroke='%23050A45' d='M11.995 4.69c.071 0 .133.017.195.06l.061.053 6.948 6.948a.414.414 0 0 1 .091.125v.001a.314.314 0 0 1 .024.124.31.31 0 0 1-.024.122v.001a.41.41 0 0 1-.09.125l-6.955 6.948c-.091.09-.17.117-.253.117-.08 0-.153-.025-.236-.11l-.005-.006-.052-.06a.3.3 0 0 1-.056-.183c0-.065.014-.122.056-.182l.052-.06 6.361-6.361H4.702c-.122 0-.194-.036-.255-.096-.062-.061-.096-.134-.096-.256s.034-.195.095-.256h.001c.06-.06.133-.095.255-.096h13.41l-6.355-6.355a.347.347 0 0 1-.106-.185l-.005-.067c-.001-.09.025-.164.105-.244l.001-.001a.313.313 0 0 1 .243-.107Z'/%3E%3C/svg%3E")
		no-repeat center / 24px 24px;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill='%23050A45' stroke='%23050A45' d='M11.995 4.69c.071 0 .133.017.195.06l.061.053 6.948 6.948a.414.414 0 0 1 .091.125v.001a.314.314 0 0 1 .024.124.31.31 0 0 1-.024.122v.001a.41.41 0 0 1-.09.125l-6.955 6.948c-.091.09-.17.117-.253.117-.08 0-.153-.025-.236-.11l-.005-.006-.052-.06a.3.3 0 0 1-.056-.183c0-.065.014-.122.056-.182l.052-.06 6.361-6.361H4.702c-.122 0-.194-.036-.255-.096-.062-.061-.096-.134-.096-.256s.034-.195.095-.256h.001c.06-.06.133-.095.255-.096h13.41l-6.355-6.355a.347.347 0 0 1-.106-.185l-.005-.067c-.001-.09.025-.164.105-.244l.001-.001a.313.313 0 0 1 .243-.107Z'/%3E%3C/svg%3E")
		no-repeat center / 24px 24px;
}
.calendar .nav-btn:hover { background: rgba(255,255,255,0.15); }
.calendar .nav-btn:active { transform: scale(0.95); }

.calendar .weekday-row {
    display: none;
  }

.calendar .cal-grid{
    background: #563363;
    display: grid;
    gap: 1px;
    box-shadow: 0px 1px 25px rgba(0, 0, 0, 0.12);
    border-radius: 24px;
    overflow: hidden;
  }
.calendar .cal-cell {
    background: var(--bs-primary);
    padding: 16px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
.calendar .cal-cell.out {
    background: #9467A5;
  }
.calendar .cell-top{
    display: flex;
    padding: 5px;
    margin-bottom: 8px;
  }
.calendar .cell-day{
    font-family: 'Big Shoulders';
    font-size: 16px;
    text-transform: uppercase;
    margin-right: 3px;
  }
.calendar .cell-num {
    font-family: 'Londrina Solid', sans-serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 300;
  }
.calendar  .cal-cell.out .cell-day,
.calendar  .cal-cell.out .cell-num {
    opacity: 0.3;
}
.calendar .cell-times {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 5px;
    margin-top: auto;
}
.calendar .cell-times .cal-show-time{
	font-size: 16px;
	background: rgba(255, 255, 255, 0.3);
	padding: 3px 6px;
	border-radius: 4px;
	border: none;
	box-shadow: none;
	color: var(--bs-white);
	transition: all 0.3s ease;
}

.calendar   .cell-times .cal-show-time:hover {
    transform: scale(1.05);
    background: #563363;
}

.calendar .cell-times .cal-show-time.soldout {
    text-decoration: line-through;
}

.calendar .show-modal-date {
	color: #5a5a5a;
}

.calendar .show-modal-venue{
    font-family: 'Londrina Solid', sans-serif;
    font-weight: 300;
    font-size: 34px;
}

.modal-calendar .modal-title{
    font-family: 'Londrina Solid', sans-serif;
    font-weight: 300;
}

.modal-calendar .modal-header,
.modal-calendar .modal-body,
.modal-calendar .modal-footer{
	justify-content: center;
	text-align: center;
}

.calendar .current-city {
	display: none;
}

.modal-calendar .btn-secondary{
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-border-color: var(--bs-primary);

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

.page.shows .calendar .cal-grid{
	grid-template-columns: repeat(7, 1fr);
}

@media screen and (min-width: 768px){
	.calendar .cal-grid{
		grid-template-columns: repeat(7, 1fr);
	}
	.calendar .cell-top{
		justify-content: space-between;
	}
}

@media (max-width: 480px){
  	.calendar .cal-grid {border-radius: 12px}
    .calendar .cal-cell { min-height: 100px; padding: 6px 4px 8px; }
    .calendar .cell-num { font-size: 18px; line-height: 18px}
    .calendar .cell-day { font-size: 12px; }
    .calendar .cell-times .cal-show-time { font-size: 8px; padding: 2px 5px;}
    .calendar .cal-header h1 { font-size: 17px; min-width: 160px; }
}