@charset "utf-8";
/* CSS Document */


/* Contact */

.contact-highlight {
	padding: 80px 0;

}

.contact-grid {
	position: relative;
	width: 1500px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 0.7fr 220px 1.3fr;
	gap: 0;
	align-items: center;
	background: #fff;
	border-radius: 30px;
	overflow: hidden;
	padding: 0 0 0 60px;
	background: url(../img/kontakt/kontakt-tasse.png) no-repeat;
	background-position: center right;
	background-size: contain;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

/* Rosa Kreis */
.contact-grid::before {
	content: "";
	position: absolute;
	width: 700px;
	height: 700px;
	border-radius: 50%;
	background: radial-gradient(circle,	rgba(255, 62, 168, .12),transparent 70%);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.contact-box {
	position: relative;
	z-index: 2;
	display: block;

}

.contact-box h2 {
	font-size: 2rem;
	font-weight: 800;
	color: #091633;
	margin-bottom: 15px;
}

.pink-line {
	width: 70px;
	height: 4px;
	border-radius: 20px;
	background: #ff3ea8;
	margin-bottom: 30px;
}

.benefit-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.benefit-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	font-size: 1.05rem;
}

.benefit-list i {
	color: #ff3ea8;
}

/* Smartphone */
.phone-holder {
	position: relative;
	z-index: 3;
	display: flex;
	justify-content: center;
	padding-top: 100px;
	left: -50px;
}

.phone-holder img {
	width: 100%;
	max-width: 280px;
	transform: rotate(-12deg);
	filter:
		drop-shadow(0 30px 50px rgba(0, 0, 0, .18));
	transition: .4s;
}

.phone-holder img:hover {
	transform: rotate(-8deg) translateY(-8px);
}

/* Rechte Seite */

.contact-right {
	padding: 60px 60px  60px 0;
}

.contact-right p {
	color: #555;
	line-height: 1.7;
	margin-bottom: 35px;
	width: 326px;
    max-width: 100%;
}

.contact-feature {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	margin-bottom: 25px;
}

.contact-feature i {
	font-size: 2rem;
	color: #ff3ea8;
}

.contact-feature strong {
	display: block;
	font-size: 1.05rem;
	margin-bottom: 4px;
}

.contact-feature span {
	color: #666;
}

/* Signatur */
.signature {
	margin-top: 35px;
	color: #ff3ea8;
	font-size: 3rem;
	font-family: cursive;
	transform: rotate(-3deg);
}

