/*****HERO******/
.hero-slide{
    background-color: #F3F3F3;
    height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
	position: relative;
}
.hero-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-slide .slide-overlay{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	left: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.38699229691876746) 76%, rgba(0,0,0,1) 100%);
	color: white !important;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}
.hero-slide .slide-content{
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
}
.hero-slide h1{
	color: white;
	font-weight: 700;
	font-size: 70px;
	line-height: 70px;
}

@media (max-width: 992px) {
.hero-slide{
    background-color: #F3F3F3;
    height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
	position: relative;
}
}

/*****SECTION 1******/
.artist-slide img{
	height: 500px;
	width: 100%;
	object-fit: cover;
}
.artist-slide .artist-info{
	padding: 0 10px;
	margin-top: 5px;
}
.artist-slide .artist-info .name{
	font-weight: bold;
	font-size: 24px;
	color: black;
}
.artist-gallery-slide img{
	height: 350px;
	width: 100%;
	object-fit: cover;
}
@media (max-width: 992px) {
	.artist-gallery-slide img{
		height: 300px;
		width: 100%;
		object-fit: cover;
	}
}

/*****ARTISTS*****/
.artists-section .artist-name a{
	color: #989696 !important;
	font-size: 36px;
}
.artists-section .artist-name a:hover{
	color: black  !important;
}
.artists-section .artist-name.active a{
	color: black  !important;
}
@media (max-width: 992px) {
	.artists-section .artist-name a{
		font-size: 24px;
	}
}

/*****EVENTS*****/
.events-group{
	margin-bottom: 5px;
}
.events-group-header{
	border-bottom: solid 1px black;
	font-weight: 600;
	color: black;
	font-size: 28px;
	margin-bottom: 8px;
}
.events-group ul li{
	font-size: 18px;
	color: black;
	padding: 4px 0;
}



/*****FOOTER*****/
footer{
	padding: 20px 0;
	background-color: #291F1A;
	color: white;
}
footer a{
	color: white !important;
}
footer a:hover{
	color: var(--tone-color) !important;
}

footer .footer-title{
	margin-bottom: 15px;
	color: var(--tone-color) !important;
	font-family: 'Calistoga', cursive !important;

}

footer .footer-links{
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.splide__pagination__page.is-active{
	background: var(--tone-color) !important;
}
.splide__arrow{
	background: #ffffff !important;
	width: 3em !important;
	height: 3em !important;
}







///INPUTS///

.field{
    margin-bottom: 15px;
}
.field .control input, .field .control textarea{
	font-family: var(--main-font) !important;
    color: black !important;
    height: 60px;
	border-radius: 0;
    border: solid 2px black !important;
    background-color: transparent !important;
}
.field .control input::placeholder, .field .control textarea::placeholder{
    color: #5C5C5C  !important;
}
.b-checkbox.checkbox input[type=checkbox]+.check{
	border-radius: 2px !important;
}
.b-checkbox.checkbox input[type=checkbox]:checked+.check{
    border-color: black !important;
	background-color: black !important;
}

/**COOKIES AND AGE BANNERS**/
.cookies-banner{
	position: fixed;
	bottom: 25px;
	right: 0;
	left: 0;
	width: 100%;
	padding: 25px;
	border-radius: 10px;
	background-color: black;
	color: white;
	max-width: 90%;
	margin: auto;
	z-index: 9999;
}
@media (min-width: 575.98px) {
	.cookies-banner{
		width: 400px;
		left: unset;
		right: 25px;
		bottom: 25px;
	}
}