ul.service-card-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: start;
	list-style: none;
	margin: 0;
	padding: 0;
	
}

ul.service-card-list li {
	width: 100%;
}

.tour-card {
	width: 100%;
	overflow: hidden;
}

.tour-image {
	width: 100%;
	display: block;
}

.tour-content.partners{
	padding: 16px 0;
	background-color: transparent !important;
}

.tour-card-img{
	position: relative;
	overflow: hidden;
}
.tour-card-img:before {
    content: "";
    display: block;
    position: static;
    width: 100%;
    padding-top: calc(308 / 414 * 100%);
}
.tour-card-img>* {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    object-fit: cover;
	object-position: center center;
    top: 0;
}
 .partners button{
	padding: 10px 20px 10px 20px;
	border: 1px solid #000;
	background: transparent;
	display: block;
    margin: 0 auto;
	cursor: pointer;
	 font-size: 14px;
		line-height: 1;
		color: #000;
}

.tour-title {
	font-family: var(--theme-font-p_font-family);
	font-size: 1.25rem;
	margin: 0 0 8px;
	font-weight:600;
	color: #000;
}

.tour-description {
	margin: 0;
	color: #555;
	font-size: 0.95rem; 
}

@media only screen and (min-width: 1024px) {
	ul.service-card-list li {
		width: calc(50% - 10px);
	}
	 .partners button{
		padding: 20px 50px 20px 50px;
        margin-top: 50px;
        font-size: 14px;
		line-height: 1;
	}
	 .partners button:hover{
		background-color: #000;
		color: #fff;
	 }
	
}


@media only screen and (min-width: 1200px) {
	ul.service-card-list li {
		width: calc(33% - 10px);
	}
	
}