@charset "utf-8";
/* CSS Document */

.card {
	position: relative;
    overflow: hidden; /* Verhindert, dass das Bild über die Card hinausgeht */
		
    border: none;
	box-shadow: none;
	border-radius: 10px;
		
	transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease-in-out !important; /* Weiche Animationen */
}
.card:hover {
    transform: translateY(-10px) !important; /* Verschiebt die Card um 10px nach oben */
}
	
.card-body {
	padding-top: 1.0rem;
	padding-bottom: 0;
	padding-left: 2rem;
	padding-right: 2rem;
}
	
.card-img-container {
    overflow: hidden; /* Verhindert, dass das Bild über die Container-Grenzen hinausgeht */
    border-radius: inherit; /* Übernimmt die Card-Abrundung */
    cursor: default;
}

.card-img-container img:hover {
    cursor: default;
}

/* Simple
	.card:hover .icon-default {
  		display: none;
	}
	.card:hover .icon-hover {
  		display: block !important;
	}
*/

.card .icon-default {
	opacity: 1;
    visibility: visible;
}
.card:hover .icon-default {
  	opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.card .icon-hover {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.card:hover .icon-hover {
    opacity: 1;
    visibility: visible;
}


/*--------------------------*/
/* Typo - Card              */
/*--------------------------*/
	
.card .card-title {
	padding-top: 10px;
	padding-bottom: 10px;
    font-weight: 500;    
}

.card .card-subtitle {
	padding-top: 20px;
    font-weight: 500;
}

.card .card-text {
}

.card .card-footer {
  	border: none;	
	padding-left: 2rem;
  	padding-right: 2rem;
	padding-top: 1.25rem;
	padding-bottom: 1rem;
}
@media (min-width: 992px){
.card .card-footer{	
	padding-top: 2.5rem;
	padding-bottom: 2rem;}
}
@media (min-width: 1200px){
.card .card-footer{	
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;}
}
@media (min-width: 2000px){
.card .card-footer{	
	padding-top: 2rem;
	padding-bottom: 1.25rem;}
}
		
.card .card-link-container {
  	display: inline-flex; /* Links nebeneinander */
    flex-direction:row;
	flex-wrap: wrap; /* Wechselt auf mehrere Zeilen, wenn der Platz nicht ausreicht */
    column-gap: 20px; /* Abstand zwischen den Links */		
    /*margin-top: 16px;*/
}
	
.card a.icon-link {
  	text-transform: uppercase;
	margin-bottom: 0px;
    font-size: 1.0rem;
    padding-top: 0.5rem;
    padding-bottom: 0rem;
}	
.card a.icon-link:hover {
  	text-decoration: none !important;		
}

.card h4.card-title {		
}
@media (min-width: 768px){
.card h4.card-title
{	font-size: 1.2rem;}
}

.card h4.card-subtitle {		
}
@media (min-width: 768px){
.card h4.card-subtitle
{	font-size: 2.0rem;}
}

.card .card-link-container h4 {
	margin-bottom: 0px;
}

.card h5.card-subtitle {		
font-size: calc(1.325rem + 0.5vw);}

@media (min-width: 576px){
.card h5.card-subtitle
{	font-size: 1.25rem;}
}

.card .card-link-container h5 {
	margin-bottom: 0px;
}

/*--------------------------*/
/* Animations - Card        */
/*--------------------------*/
	
	.animate-card {
   		opacity: 0; /* Unsichtbar */
    	transform: translateX(0); /* Standardposition */    	
    	will-change: transform, opacity; /* Performance-Optimierung */
	}

	.animate-card.from-left {
    	transform: translateX(-100px); /* Startpunkt links außerhalb des Sichtfelds */
		transition: transform 2s ease-out, opacity 2s ease-out; /* Animationsdauer */
	}

	.animate-card.from-right {
    	transform: translateX(100px); /* Startpunkt rechts außerhalb des Sichtfelds */
		transition: transform 2s ease-out, opacity 2s ease-out; /* Animationsdauer */
	}
	
	.animate-card.from-bottom {
    	transform: translateY(100px); /* Startpunkt unterhalb des Sichtfelds */
		transition: transform 3s ease-out, opacity 3s ease-out; /* Animationsdauer */
	}

	.animate-card.in-view {
   		opacity: 1; /* Sichtbar */
    	transform: translateX(0); /* Zurück zur Ausgangsposition */
	}


/*--------------------------*/
/* Colors - Card            */
/*--------------------------*/

	.card, .card-footer {
  		background-color: #f5f5f5;
		transition: background-color 0.3s ease;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Schatten-Effekt */
	}
	.card:hover {
  		background-color: #eeeeee;
		box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Intensiverer Schatten beim Hover */
	}

	.card .card-footer {			
		background-color: inherit;
		transition: background-color 0.1s ease;
	}
					
	.card .card:hover .card-footer {
		background-color: inherit;
	}
	
	.card .card-title, .card .card-subtitle {
  		/*color: var(--sc-cms-blue) !important;*/
        color: #002060 !important;
	}
	
	.card p.card-text {
		color: #222222;
	}
	
	.card a {
  		/*color: var(--sc-cms-blue) !important;*/
        color: #002060;
	}
	
	/*sc-corp-blue, .sc-cms-blue, sc-corp-darkgrey, sc-corp-darkgrey-10*/	
	.sc-corp-blue .card, .sc-cms-blue .card, .sc-corp-darkgrey .card, .sc-corp-darkgrey-10 .card  {
  		background-color: #fff;
		transition: background-color 0.3s ease;
	}
	.sc-corp-blue .card:hover, .sc-cms-blue .card:hover, .sc-corp-darkgrey .card:hover, .sc-corp-darkgrey-10 .card:hover {
  		background-color: #f5f5f5;
	}
	
	.sc-corp-blue .card .card-title, .sc-cms-blue .card .card-title, .sc-corp-darkgrey .card .card-title, .sc-corp-darkgrey-10 .card .card-title {
  		/*color: var(--sc-cms-blue) !important;*/
        color: #002060 !important;
	}
	
	.sc-corp-blue .card .card-subtitle, .sc-cms-blue .card .card-subtitle, .sc-corp-darkgrey .card .card-subtitle, .sc-corp-darkgrey-10 .card .card-subtitle {
  		/*color: var(--sc-cms-blue) !important;*/
        color: #002060 !important;
	}
	
	.sc-corp-blue .card p.card-text, .sc-cms-blue .card p.card-text, .sc-corp-darkgrey .card p.card-text, .sc-corp-darkgrey-10 .card p.card-text {
		color: #222222;
	}
	
	.sc-corp-blue .card a, .sc-cms-blue .card a, .sc-corp-darkgrey .card a {
  		/*color: var(--sc-cms-blue) !important;*/
        color: #002060;
	}

/*--------------------------*/
/* Video - Card             */
/*--------------------------*/

	.card.card-video .card-img-container {
    	overflow: hidden; /* Verhindert, dass das Bild über die Container-Grenzen hinausgeht */
    	border-radius: 10px 10px 0 0; /* TL, TR, BR, BL */
	}

	.card.card-video .card-img-container .card-img {
  		display: block;
  		width: 100%;
  		height: auto;
	}

	.card .card-img {
    	transition: transform 0.4s cubic-bezier(0.25, 0.9, 0.5, 0.9); /* Bezier-Kurve für eine dynamischere Bewegung */
    	width: 100%; /* Passt das Bild an die Breite der Card an */
    	height: auto; /* Hält das Seitenverhältnis */
	}

	.card.card-video .card-img:hover {
    	cursor: pointer;
	}
	.card:hover img.card-img {
    	-webkit-transform: scale(1.1); /* Vergrößert das Bild */
    	transform: scale(1.1);
	}

	.card.card-video .card-img-container .icon-over-img {
  		position: absolute;
  		top: 50%;
  		left: 50%;
  		transform: translate(-50%, -50%);
  		font-size: min(10vw, 6rem); /* Skaliert mit der Breite des Viewports oder bleibt bei max. 8rem */
  		color: #fff;         /* Textfarbe => Icon-Farbe */
  		pointer-events: none; 
  		transition: 0.3s ease;
	}

	@media (min-width: 992px) {
	.card.card-video .card-img-container .icon-over-img { 	
	  	font-size: min(10vw, 5rem);}
	}
	/*xxl*/
	@media (min-width: 2000px) {
	.card.card-video .card-img-container .icon-over-img  { 	
	  	font-size: min(10vw, 6rem); }
	}

/*-------------------------------*/
/* Video - Card - Cookie Hinweis */
/*-------------------------------*/

.cookie-consent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 10;
  display: none;
}

/* Hinweistexttext */
.cookie-consent-overlay p {
    font-family: "IBM Plex Sans", sans-serif;
    color: #fff;
    font-weight: 400;
    font-size: 1.0rem;
    line-height: 1.2;
}
@media (min-width: 576px) {
.cookie-consent-overlay p 
{   font-size: 0.8rem;
    line-height: 1.1;
	}
}
@media (min-width: 768px) {
.cookie-consent-overlay p 
{    font-size: 1.0rem;
    line-height: 1.2;
	}
}
@media (min-width: 1200px) {
.cookie-consent-overlay p 
{   font-size: 1.1rem;
    line-height: 1.2;
	}
}
@media (min-width: 1400px) {
.cookie-consent-overlay p 
{    font-size: 1.0rem;
    line-height: 1.2;
	}
}

.sc-corp-blue .card .cookie-consent-overlay a {
    color: #fff;
    text-decoration: underline;
}


