.block-dest-fotos {
    padding: var(--size-padding) 0;
}
.block-dest-fotos .container {
	padding: 0 var(--size-padding);
	max-width: 100%;
	display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.block-dest-fotos .imagen {
    width: 50%;
    min-height: 680px;
}
.block-dest-fotos .imagen div {
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
@media (max-width: 1280px) {
	.block-dest-fotos .imagen div {
	    height: 100%;
	}
}
@media (max-width: 992px) {
	.block-dest-fotos {
	    padding: 1.875rem 0;
	}
	.block-dest-fotos .container {
		flex-direction: column;
	}	
	.block-dest-fotos .imagen {
	    width: 100%;
	    min-height: unset;
	}
	.block-dest-fotos .imagen div {
		min-height: 500px;
	}
}
@media (max-width: 576px) {
	.block-dest-fotos .imagen div {
	    min-height: unset;
	    height: 360px;
	}
}