.tegels {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100%;
	margin-top: 40px;
	margin-bottom: 40px;
}

.tegel {
	position: relative;
    overflow: hidden;
    margin: 0px 0px 0px 0px;
    width: 600px;
	height: 450px;
    color: #333;
    text-align: left;
    box-shadow: 0 6px 8px 0 rgba(51,62,72,.1);
    border-radius: 10px;
	margin: 0 20px;
	font-family: muli, sans-serif;
}

.tegels * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 0s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.tegels img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.tegel .tegel_titel {
	font-family: muli bold, sans-serif;
	font-weight: 700;
	padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0;
	background: white;
}


.tegel:hover {
  	transform: scale(1.02);
	transition: transform .5s ease-in-out;
}

.tegels .tegel_titel .tegel_tekst p {
	font-family: muli, sans-serif;
	font-weight: 100;
    text-transform: none;
	background: white;
	bottom: 0;
}


.tegel link {
	/*background: linear-gradient(to bottom, #FBB03B 0%, #F7931E 100%);*/
	background: transparent;
	color: blue;
	border-radius: 40px;
	border-style: 1px;
	border-color: white;
	padding: 12px;
	z-index: 1000px;
	text-decoration: none;	
}

.tegel link:hover {
	background: transparent;
	color: white;
	cursor: pointer;
	width: 160px;
	border-radius: 40px;
	border-style: 1px transparent;
	border-color: white;
	padding: 12px;
	z-index: 1000px;
}


@media (max-width: 800px) {
  .tegels {
    flex-direction: column;
	display: block;
}
  .tegel {
	width: 100%;
	height: 350px;
	margin: 20px 20px 0px 0px;
	justify-content: center;
  	align-items: center;
}
}