.new_excursion__mobile .f-carousel__nav{
	display: none;
}
.new_excursion__mobile{
    --f-carousel-spacing: 50px;
}
.new_excursion__mobile.f-carousel .f-carousel__slide img{
    width: 100%;
    height: 500px;
    object-fit: contain;
}
.new_excursion__mobile.f-carousel .f-carousel__slide{
    width: 90%;
}
.new_excursion__mobile .is-current .f-carousel__dot, .shows_header_slider .is-current .f-carousel__dot{
    width: 100%;
    border-radius: 5px;
    background: var(--gray-medium, #C1C1C1);
}
.new_excursion__mobile .f-carousel__dot, .shows_header_slider .f-carousel__dot{
    background: transparent;
    width: 100%;
    border-radius: 0;
}
.new_excursion__mobile .f-carousel__dots li, .shows_header_slider .f-carousel__dots li{
    opacity: 1;
    overflow: hidden;
    border-top: 5px solid #F0F0F0;
    border-bottom: 5px solid #F0F0F0;
    background: #F0F0F0;
}
.new_excursion__mobile .f-carousel__dots li:first-child, .shows_header_slider .f-carousel__dots li:first-child{ 
    border-radius: 10px 0 0 10px; 
    border-left: 5px solid #F0F0F0;
}
.new_excursion__mobile .is-before-prev, .shows_header_slider .is-before-prev{
    border-radius: 10px 0 0 10px; 
}
.new_excursion__mobile .is-after-next, .shows_header_slider .is-after-next{
    border-radius: 0 10px 10px 0;
}
.new_excursion__mobile .f-carousel__dots li:last-child, .shows_header_slider .f-carousel__dots li:last-child{
    border-radius: 0 10px 10px 0;
    border-right: 5px solid #F0F0F0;
}
.new_excursion__mobile .f-carousel__dots li button, .shows_header_slider .f-carousel__dots li button{
    /*background: #C1C1C1;*/
    border-radius: 4px;
    height: auto;
}
.new_excursion_event_nav_to_section{
	display: flex;
	justify-content: center;
}
.new_excursion_event_nav_to_section a{
	cursor: pointer;
    width: fit-content;
    display: flex;
    padding: 20px 60px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--black, #000);
    color: var(--black, #000);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
    transition-duration: 0.3s;
}
.new_excursion_event_nav_to_section a:hover{
	background: var(--black, #000);
    color: white;
}
/* new */

.new_excursion{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 50px;
	justify-content: space-between;
}
.new_excursion__item{
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-decoration: none;
	transition-duration: 0.3s;
}
.new_excursion__item:hover{
	opacity: 0.5;
}
.new_excursion__image_container{
	padding-top: 100%;
	width: 100%;
	position: relative;
}
.new_excursion__image_container:before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0.2;
	z-index: 1;
}
.new_excursion__cover{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%!important;
	object-fit: cover!important;
	z-index: 0;
}
.new_excursion__age{
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
	display: flex;
	padding: 10px 20px;
	border-radius: 20px;
	background: var(--gray, #F0F0F0);
	color: var(--black, #000);
	/* small text-2 */
	font-family: "Open Sans";
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 16.9px */
}
.new_excursion__museum{
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 2;
	display: flex;
	color: var(--white, #FFF);
	/* button/extra large */
	font-family: FranzGrotesque;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
}
.new_excursion__title{
	font-size: 32px;
    font-family: 'Casus Pro';
}
.new_excursion__museum_color{
	height: 12px;
	width: 12px;
	border-radius: 100%;
}
.new_excursion__museum{
	display: flex;
	align-items: center;
	gap: 10px;
}
.new_excursion__container{
	display: flex;
	flex-direction: column;
	gap: 50px;
}
.new_excursion__mobile{
	display: none;
}
@media screen and (max-width: 1200px) {
	.new_excursion{
		grid-template-columns: 1fr 1fr;
	}
	.new_excursion__title{
		font-size: 26px;
	}
	.new_excursion__title{
		font-size: 26px;
	}
}
@media screen and (max-width: 768px) {
	.new_excursion__container{
		display: none;
	}
	.new_excursion__mobile{
		display: block;
	}
	.new_excursion__mobile .f-carousel__slide{
		margin-right: 20px;
		width: 70%;
	}
	.new_excursion{
		grid-template-columns: 1fr;
	}
	.new_excursion__title{
		font-size: 19px;
	}
}