.card img {
    width: calc(100% + 2px); /* Füge 2 Pixel zur Breite hinzu, um die fehlenden Pixel zu kompensieren */
    height: calc(100% + 2px); /* Füge 2 Pixel zur Höhe hinzu, um die fehlenden Pixel zu kompensieren */
    object-fit: cover;
    margin: -1px; /* Kompensiere die Standardränder des Bildes */
}
   

.card-vec {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.card-vec img {
    width: 250px; /* Leicht vergrößert für bessere Präsenz */
    height: auto;
    display: block;
    margin: 0 auto;
}

.card-vec a {
    display: inline-block;
}

.card-vec:hover {
    opacity: 1;
    transform: translate(-50%, -60%) scale(1.05);

}



.intro-page {
  overflow: hidden; /* Verhindert das Scrollen auf der Introseite */
	margin: 0;
	padding: 0;	
}

		.card img{
			width: 100%;
			height: 100%;
   }
   



@media only screen and (min-width: 1101px) {
.card{
		width:auto;
		height:1080px;

   }


}



@media only screen and (max-width: 1100px) {
  
	
	.card {
		width: 100%;
		height: 900px;
    }

    .card-vec img {
        width: 180px; /* Angepasst für Mobile */
    }
}

/* Partner-Link oben rechts */
.brand-switch {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3000;
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.brand-switch:hover {
    opacity: 1;
    transform: scale(1.1);
}

.brand-switch img, .brand-switch svg {
    width: 60px;
    height: auto;
}

@media only screen and (max-width: 1100px) {
    .brand-switch img, .brand-switch svg {
        width: 45px;
    }
}