.kontakt_out {

}

.kontakt_in {
	width:900px;
	margin:0 auto;
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(200px, 1fr));
	grid-template-rows: 1fr;
	grid-column-gap: 5px;
	grid-row-gap: 0px;
	background: #e4e4e4;
}

.kontakt_item {
   width: 100%;
   min-height: 50vh;
   text-align: center;
   white-space: nowrap;
   bottom: 0;
   font-weight: 100;
   font-size: 0.8em;
   z-index: 3;
   color: #474545;
   letter-spacing: 2px;
   background: white;
   padding-top: 3em;
   padding-bottom: 3em;
}

.kontakt_item i {
	display: inline-block;
	font-size: 9em;
	
}

.kontakt_item h3 {
	font-size: 2em;
	font-family: 'Oswald',system-ui;
	text-transform: uppercase;
}

.kontakt_item p {
	font-family: system-ui;
    font-size: 1.2em;
    font-weight: 200;
    text-align: center;
    color: black;
}

.wa {
	color:#25d366;
}
.ph {
	color:#375c98;
}

.kontakt_item_grid {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto;
grid-row-gap: 2em;
}

.kontakt_item_grid * {
white-space: pre-line;
margin: 0 30px;
}

.kontakt_item_image {
	max-width: 14em;
    margin: 0 auto;
}

.kontakt_item_grid a {
    text-decoration: none;
    color: #375c98;
    font-size: 1.3em;
    font-family: sans-serif;
    font-weight: 500;
}

@media only screen and (max-width: 900px) {
	.kontakt_in {
		width: 100%;
		grid-template-columns: repeat(1, minmax(200px, 1fr));
		grid-template-rows: 3fr;
		grid-row-gap: 5px;
	}
}






