section.destination-list.white-bg{
	background-color:#fff;
}

.destination-list-results{
	margin-top:2rem!important;
	margin-bottom:2rem!important;
}

.destination-list-results .destination{
	
}

.destination-list-results .destination .image-wrapper {
	position:relative;
	padding-bottom:75%;
	overflow:hidden;
}

.destination-list-results .destination .image-wrapper:after{
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	width:0%;
	height:2px;
	background:var(--copper-color);
	transition:all 0.3s;
}

.destination-list-results .destination .image-wrapper .image{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-size:cover;
	transition:all 3s;
}
.destination-list-results .destination:hover{
	cursor:pointer;
}
.destination-list-results .destination:hover .image{
	transform:scale(1.1);
}

.destination-list-results .destination:hover .image-wrapper:after{
	width:100%;
}