.ausflug-text {
    text-align: center;
    width: 70vw;
    margin: 200px auto 100px;
}

.ausflug-galerie {
	display: flex;
	justify-content: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.ausflug-galerie img {
	-ms-flex: 0 0 30%;
	flex: 0 0 30%;
	max-width: 30%;
	margin: 10px;
	height: 400px;
	object-fit: cover;
}

@media (max-width: 1199px) {
    .ausflug-galerie img {
        height: 240px;
    }
}

@media (max-width: 991px) {
    .ausflug-galerie {
        flex-direction: column;
    }
    .ausflug-galerie img {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        max-height: 380px;
    }
}

@media (max-width: 767px) {
    .ausflug-text {
       width: 85vw;
       margin: 110px auto 50px;
    }
    .ausflug-galerie img {
        max-height: 220px;
    }    
 }