/* open-sans-300 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Bitjannausch';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Bitjannausch-Regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/Bitjannausch-Regular.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* open-sans-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Bitjannausch';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Bitjannausch-Medium.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/Bitjannausch-Medium.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* open-sans-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Bitjannausch';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Bitjannausch-SemiBold.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/Bitjannausch-SemiBold.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

:root {
    --prim-color: rgb(23, 70, 150);
    --sec-color: rgb(39, 77, 213);
    --prim-bg-color: rgb(23, 70, 150);
    --sec-bg-color: rgb(39, 77, 213);


    /* darker color sind dunkle Farben und als Kontrastfarben für helle Hintergründe*/

    /* --prim-color-darker: rgb(255, 255, 255);
    --sec-color-darker: rgb(255, 255, 255);
    --prim-bg-color-darker: rgb(255, 255, 255);
    --sec-bg-color-darker: rgb(255, 255, 255); */


    --prim-color-deep-dark: rgb(25, 0, 66);

    /* Diese Farbe dunkelt den Hintergrund ab */
    --prim-bg-color-transparent: rgba(0, 0, 0, 0.137);
}

body {
    font-family: 'Bitjannausch', sans-serif;
    font-size: 16px;
}

a {
    color: #fff;
}

input_light {
    background-color: #fff;
}

.h-50 {
    height: 50vh;
}

.content-center {
    margin: auto;
    justify-content: center;
    align-items: center;
}

.p-thin p {
    font-weight: 100;
}

.action_grp .buttonColorBlack{
    color: #fff;
    background: #000000;
    text-shadow: 
    2px 2px 4px #ff0050,
    -2px -2px 4px #00f2ea;
}

.action_grp .buttonColorBlue {
    color: #fff;
    background: #3b5998;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.3),
        -1px -1px 2px rgba(0, 0, 0, 0.2);
}

.action_grp .buttonColorPurple{
    color: #ffffff;
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    text-shadow: 
    2px 2px 4px #bc2a8d,
    -2px -2px 4px #fbad50;
}

.action_grp .buttonColorPurple:hover{
    color: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    background: #ffffff;
}

.action_grp .buttonColorRed {
    color: #fff;
    background: #FF0000; /* YouTube-Rot */
    text-shadow: 
        2px 2px 4px #282828,  /* dunkler Schatten für Kontrast */
        -2px -2px 4px #b30000;  /* leicht dunkleres Rot für Tiefe */
}

.action_grp .buttonColorRed:hover {
    background: #fff;
    color: #FF0000;

}

.container-icon {
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.icon, .icon-img, .lottie-icon {
    width: 115px;
    height: 115px;
    margin: 0 5px;
    border-radius: 5px;
    transition: transform 0.3s ease;
    cursor: pointer; /* Macht deutlich, dass es klickbar ist */
    object-fit: cover;
}

.icon:hover, .icon-img:hover, .lottie-icon:hover {
    transform: scale(1.1);
}



/* Media Queries für kleinere Bildschirme */
@media (max-width: 900px) {
    .icon, .icon-img, .lottie-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .icon, .icon-img, .lottie-icon {
        width: 75px;
        height: 75px;
        object-fit: cover;
    }
}

img.icon {
    animation: none !important;
}

.formFix{
    width: 50% !important;
    margin-top: 20px !important;
}

