/*
Theme Name: Brunelleschi-child
Template: Brunelleschi
*/

#gallery-slider{
	overflow: hidden;
	display: flex;
}
#gallery-slider ul{
	margin-left: -1px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    flex-shrink: 0;
	padding-top: 120px;
    height: calc(70vh - 120px);
	animation: loop linear infinite both;
	box-sizing: content-box;
}
#gallery-slider li{
	height: calc(35vh - 60px);
	aspect-ratio: 1 / 1;
}
#gallery-slider img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	filter:grayscale(100%)
}
.l-75{
	height: 0 !important;
}

@keyframes loop {
	0%{
		transform:translateX(0%)
	}
	100%{
		transform:translateX(-100%)
	}
}

@media screen and (max-width:768px){
#gallery-slider ul{
	padding-top: 60px;
    height: calc(50vh - 60px);
}
#gallery-slider li{
	height: calc(25vh - 30px);
}
}

.pc{
display: block;
}
.sp{
display: none;
}
@media screen and (max-width:768px){
.pc{
display: none;
}
.sp{
display: block;
}
}



