@import url('vendor/aos/aos.css');
@import url('vendor/bootstrap/css/bootstrap.min.css');
@import url('vendor/bootstrap-icons/bootstrap-icons.css');
@import url('vendor/glightbox/css/glightbox.min.css');
@import url('vendor/swiper/swiper-bundle.min.css');
@import url('css/style.css');

/* Benutzerdefinierte CSS-Klasse für den Button */
.custom-btn {
    background-color: #37b1ff; /* Hintergrundfarbe anpassen */
    color: #ffffff; /* Textfarbe anpassen */
    border: 2px solid #37b1ff; /* Randstil und -farbe anpassen */
    border-radius: 0; /* Ecken des Buttons kantig machen */
    padding: 4px 20px; /* Innenabstand anpassen */
    text-decoration: none; /* Unterstreichung entfernen */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Übergangseffekte hinzufügen */
}

/* Ändern des Stils bei Hover (optional) */
.custom-btn:hover {
    background-color: #37b1ff; /* Hintergrundfarbe bei Hover anpassen */
    color: #000; /* Textfarbe bei Hover anpassen */
    border-color: #37b1ff; /* Randfarbe bei Hover anpassen */
}


.homeForm {
    position: relative;
    padding-top: 5%;
    padding-bottom: 2%;
    padding-left: 2%;
    padding-right: 2%;
    background: rgba(55, 177, 255, 0.78);
    border-radius: 20px;
}
/* Stil für den Beat-Button */
.beat-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 20px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    animation: beat 4s infinite;
}

/* Keyframes-Animation für den Beat-Effekt */
@keyframes beat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.video-background-holder {
    position: relative;
    background-color: black;
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
}

.video-background-holder video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.video-background-content {
    position: relative;
    z-index: 2;
}

.video-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.7;
    z-index: 1;
}
#logo-container {
    transition: width 0.3s ease; /* Fügt eine sanfte Übergangseffekt hinzu */
}

/* Stil für das Logo, wenn gescrollt wird */
#logo-container.scrolled {
    width: 20px; /* Ändern Sie die Breite entsprechend Ihren Anforderungen */
}

/* Stellenangebote Section */
.jobsContainer {
    position: relative;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 2%;
    padding-right: 2%;
    background: #37b1ff;
    box-shadow: rgb(239, 239, 239) 0px 0px 5px;
    color: #fff;
    margin-top: 18px;
    box-sizing: border-box;
}
.jobsLogo {
    box-shadow: rgba(58, 58, 58, 0.1) 0px 0px 5px;
    border-radius: 3px;
    width: 66px;
    height: 66px;
}