/* CSS Document */
* {
	box-sizing: border-box;
	margin: 0;
}

.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "wdth" 90;
	
}

body {
	font-family: "Open Sans", sans-serif;
	letter-spacing: 0.5px;
}

h2 {
  font-size: 1.3rem;
}

.mt-6 {
	margin-top: 70px;
}

#visitenkarte {  
	background: #fff;  
	padding: 0rem 0;
}

.visitenkarte-card {     
	display: flex;  
	align-items: center;  
	justify-content: center;  
	gap: 0;  
	min-height: 200px;  
	position: relative;
}

.visitenkarte-seite {  
	flex: 1;  
	height: 55vh;
	display: flex;  
	flex-direction: column;  
	align-items: center;  
	justify-content: center;  
	padding: 1.5rem 2rem;
}

.visitenkarte-seite--links {  
	border-right: 1px solid #e0e0e0;
}

.kreis-rot {  
	width: 250px;  
	height: 250px;  
	border-radius: 50%;  
	background-color: #EF060A;  
	display: flex;  
	align-items: center;  
	justify-content: center;
}

.punkt-schwarz {  
	width: 18px;  
	height: 18px;  
	border-radius: 50%;  
	background-color: #111111;  
	flex-shrink: 0;
}

.visitenkarte-anleitung {
    position: absolute;
    top: 67%;
	left: 55%;
    margin-top: 0;
    max-width: 310px;
    text-align: left;
	color: #000;
}

.spiel-title {
  margin-left: 2.5rem;  /* Einrückung nur für den Titel */
}

#termin h5,
#aktuelles h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#termin p,
#aktuelles p {
    margin-bottom: .5rem;
    color: #444;
}

#termin strong,
#aktuelles strong {
    font-weight: 600;
}

#termin, #aktuelles {
    border-bottom: 1px solid #eee;
}


footer {
    background: #f8f8f8 !important;
    padding: 3rem 0 !important;
    margin-bottom: 0 !important;
}

footer h5 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.minimal-input {
    border: none;
    border-bottom: 1px solid #cfcfcf;
    border-radius: 0;
    background: transparent;
    box-shadow: none !important;
    padding: .8rem 0;
    margin-bottom: 1rem;
    transition: .25s;
}

.minimal-input:focus {
    border-bottom: 2px solid #111;
    background: transparent;
}

.minimal-input::placeholder {
    color: #999;
}

textarea.minimal-input {
    resize: none;
}

#otsbtn02,
footer button {
    display: inline-block !important; 
    background-color: #333 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 30px !important;
    padding: .45rem 1.6rem !important;
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: 0.2s ease !important;
    font-family: "Open Sans", sans-serif !important;
}

#otsbtn02:hover,
footer button:hover {
    background-color: #000 !important;
    color: #fff;
}

a{
    color:#111;
    text-decoration:none;
}

a:hover{
	color: #111;
    text-decoration:underline;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
	.visitenkarte-card {
    transform-origin: center;
  }
	
	.kreis-rot {
    width: 160px;
    height: 160px;
  }
	
	.mobile-only {
        display: inline;
    }
	
	 .visitenkarte-seite {
        max-width: 50%;
    }

  .visitenkarte-anleitung {
    max-width: 320px;
    font-size: 1rem;
  }

  .punkt-schwarz {
    width: 14px;
    height: 14px;
  }
	
	.visitenkarte-anleitung {
    position: absolute;
    left: 0px;
    right: 0;
    top: 75%;
    margin-top: 1rem;
    text-align: left;
}
	
	.mobile-abstand {
		margin-top: 75px;
	}
	
	.visitenkarte-seite--links {  
	border-right: 0px solid #e0e0e0;
}
	
	.visitenkarte-card {
        margin-top: -3rem;
    }
  
}