.teasercontact{
	position: relative;
	padding: 30px;
}

.teasercontact .wrap{
	display: flex;
	flex-direction: column;
	background: #fff;
  border-radius: 10px;
	-webkit-box-shadow: 0px 0px 7px 4px rgba(0,0,0,0.2); 
	box-shadow: 0px 0px 7px 4px rgba(0,0,0,0.2);
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 100px;
}

.teasercontact .photo {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 100%;
  margin: -120px auto 30px;
  background-color: var(--colorWhite);
  -webkit-box-shadow: 5px 5px 15px -2px rgba(0,0,0,0.3);
  box-shadow: 5px 5px 15px -2px rgba(0,0,0,0.3);
}

.teasercontact .photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
	border: 1px solid #707070;
}

.teasercontact .detail p {
	max-width: 50ch;
}

.teasercontact h4{
	font-weight: 700;
}

@media(max-width: 991px){
	
	.teasercontact{
		padding: 30px 0;
	}
	
	.teasercontact .photo {
		width: 200px;
  	height: 200px;
  	margin-bottom: 15px;
	}
	
}

@media(max-width: 767px){

	.teasercontact .photo {
		width: 160px;
  	height: 160px;
  	margin-bottom: 15px;
	}
	
}