@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    /* approximate defaults; updated via JS at runtime */
    --header-space: 170px;
    --footer-height: 100px;
}

body {
    overflow-x: hidden;
}

.grey-curved {
    position: relative;
    background: #F8F9FA;
    border-top-left-radius: 50% 20%;
    border-top-right-radius: 50% 20%;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0.2rem;
}

.dropdown-menu {
    transition: opacity 0.3s ease;
}

.nav-item {
    margin-right: 20px;
}

.nav-link {
    font-size: 1.1rem;
}

.nav-link {
    position: relative;
    padding-bottom: 5px;
    background-image: linear-gradient(90deg, #FF6F61CC, #FF6F61CC);
    background-size: 0% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s ease-in-out;
}

.nav-link:hover {
    background-size: 100% 2px;
}

.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Reserve space so footer/content don't overlap the hero */
    min-height: 70vh;
    padding-bottom: 2rem;
}

/* Non-landing pages should size to content and avoid absolute positioning */
.hero-section:not(.landing-hero) {
    min-height: auto;
    padding-top: 1rem;
    padding-bottom: 4rem; /* ensure footer clearance */
}
.hero-section:not(.landing-hero) .site-content {
    position: static;
    left: auto;
    transform: none;
    padding-top: 0;
}

/* Improve generic content box inside non-landing hero sections */
.hero-section .site-content > .container {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.gradient-color {
    background: linear-gradient(90deg, #BAE2EA, #ff6f61);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.animate-from-right {
    opacity: 0;
    transform: translateX(100%);
    animation: slideInFromRight 1s ease-out forwards;
}

.animate-from-right .in-view {
    opacity: 1;
    transform: translateX(0);
}

.animate-from-left {
    opacity: 0;
    transform: translateX(-100%);
    animation: slideInFromLeft 1s ease-out forwards;
}

.animate-from-left .in-view {
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.section-space {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.section-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.underline-text {
    display: block;
    width: 30%;
    height: 3px;
    margin: 10px auto 50px;
    background: linear-gradient(90deg, #FF6F61CC, #FF6F61CC);
    transition: width 0.4s ease;
}

.section-container:hover .underline-text {
    width: 40%;
}

.slide-in-right,
.slide-in-left {
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.slide-in-right {
    transform: translateX(100%);
}

.slide-in-right.in-view {
    transform: translateX(0);
    opacity: 1;
}

.slide-in-left {
    transform: translateX(-100%);
}

.slide-in-left.in-view {
    transform: translateX(0);
    opacity: 1;
}

.voice-cloning-hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
}

#waveCanvas {
    width: 100%;
    margin-top: 150px;
}

.site-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    padding-top: 15vh;
    width: 100%;
}

.site-content h1 {
    font-weight: 500 !important;
    font-size: 2.8rem;
}

h2 {
    font-size: 2.1rem;
}

.section-container p {
    font-size: 1.5rem;
    font-weight: 300;
}

.main-color {
    color: #000;
}

.custom-hr {
    position: absolute;
    bottom: 60px;
    left: 20px;
    right: 20px;
    border: none;
    border-radius: 25px;
    border-top: 1px solid #000;
}

.text-speech-container {
    position: relative;
    width: 100%;
}

.text-speech-input {
    width: 100%;
    height: 350px;
    padding: 15px;
    border: 3px dashed #BAE2EA;
    border-radius: 30px;
    box-sizing: border-box;
    overflow-y: auto;
    padding-bottom: 60px;
}

.text-speech-input:focus {
    border-color: #BAE2EA !important;
    box-shadow: 5px 5px 15px 0px #BAE2EA !important;
    outline: none !important;
}

.custom-select {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 200px;
    padding: 5px;
    border: 2px dashed #BAE2EA;
    background: #F8F9FA;
    font-size: 16px;
}

.custom-select-sounds {
    position: absolute;
    bottom: 20px;
    left: 250px;
    width: 200px;
    padding: 5px;
    border: 2px dashed #BAE2EA;
    background: #F8F9FA;
    font-size: 16px;
}

.custom-select:focus {
    outline: none;
    box-shadow: none;
    border-color: #BAE2EA;
}

.arrow-indicator {
    position: absolute;
    bottom: 70px;
    left: 20px;
    font-size: 24px;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.highlight {
    border-color: #ff0000;
    box-shadow: 0 0 10px #ff0000;
    transition: box-shadow 0.5s, border-color 0.5s;
}

.content {
    display: flex;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer: default is static; on desktop add .fixed-desktop to pin it */
.site-footer {
    width: 100%;
    /* slimmer default padding */
    padding-top: 1rem !important;
    padding-bottom: 0.75rem !important;
}

@media (min-width: 992px) {
    .site-footer.fixed-desktop {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
    }
}

/* Make footer elements tighter */
.site-footer hr {
    margin: 0.5rem 0 !important;
}
.site-footer .mb-4 { margin-bottom: 0.5rem !important; }
.site-footer .list-inline { margin-bottom: 0.25rem; }
.site-footer p { margin-bottom: 0.25rem; }

/* Landing-only full-height hero */
@media (min-width: 992px) {
    .landing-hero {
        min-height: calc(100vh - var(--header-space) - var(--footer-height));
    }
}

/* Simple section used by check-email: ensure waves stay behind */
.simple-hero {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Play icon control for audio (rate page) */
.play-icon { cursor: pointer; line-height: 1; display: inline-block; }
.play-icon i { font-size: 4.5rem; color: #0d6efd; transition: transform .2s ease, color .2s ease; }
.play-icon:hover i { transform: scale(1.06); }
.play-icon.active i { color: #198754; }

.sidebar {
    width: 250px;
    height: 100vh;
    background-color: #BAE2EA;
    padding: 1rem;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    overflow-y: auto;
}

.sidebar a {
    color: #000;
    text-decoration: none;
    font-size: large;
}

.sidebar a.active {
    color: #000;
    font-weight: bold;
    text-decoration: none;
    font-size: large;
    background-color: #E0F7FA;
}

.main-content {
    flex-grow: 1;
    padding: 2rem;
}

.language-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    animation: slideUp 1s ease-out forwards;
}

/* Consistent shape (keep Bootstrap colors) */
.btn {
    font-weight: 600;
}

.btn-lg { padding: 0.50rem 1.5rem; }

.custom-btn {
    color: #000;
    border: 1px solid #BAE2EA;
    border-radius: 30px;
    padding: 10px 40px;
    font-size: 14px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.custom-btn:hover,
.custom-btn.selected {
    background-color: #BAE2EA;
    transform: scale(1.05);
    color: #fff;
    outline: none;
    box-shadow: 0 0 0 0 #BAE2EA;
    border-color: #BAE2EA;
}

.custom-btn-orange {
    color: #FF6F61CC !important;
    border: 1px solid #FF6F61CC;
    border-radius: 30px;
    padding: 10px 40px;
    font-size: 18px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
    background-color: #fff;
    font-weight: 600;
}

.custom-btn-orange:hover,
.custom-btn-orange.selected {
    background-color: #FF6F61CC;
    transform: scale(1.05);
    color: #fff !important;
    outline: none;
    box-shadow: 0 0 0 0 #FF6F61CC;
    border-color: #FF6F61CC;
}

.text-bg-secondary {
    color: #000 !important;
    background-color: lightgray !important;
}

.text-bg-success {
    color: #000 !important;
    background-color: #BAE2EA !important;
}

.generate-btn {
    background-color: #BAE2EA;
    transform: scale(1.05);
    color: #fff;
    outline: none;
    box-shadow: 0 0 0 0 #BAE2EA;
    border-color: #BAE2EA;
    border-radius: 30px;
    padding: 10px 40px;
    font-size: 14px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
    display: block;
    width: 100%;
}

.generate-btn:hover {
    background-color: #BAE2EA;
    color: #fff;
}

.page-header-heading {
    font-weight: 500 !important;
    font-size: 2.8rem !important;
}

.card-320 {
    height: 320px !important;
}

.card-340 {
    height: 340px !important;
}

.card-380 {
    height: 395px !important;
}

.profile-card {
    border: none;
    background: none;
    text-align: center;
    margin: 10px;
    border: 1px solid #BAE2EA;
    padding-top: 20px;
}

.profile-card i {
    font-size: 25px;
    color: #BAE2EA;
}

.profile-img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid #ccc;
    margin: 0 auto;
}

.profile-name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.audio-icon {
    margin-top: 5px;
    font-size: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #BAE2EA;
    border-radius: 50%;
}

.carousel-control-next,
.carousel-control-prev {
    width: 5% !important;
}

.profile-card:hover {
    transform: scale(1.05);
}

.profile-card.selected {
    transform: scale(1.05);
    border: 3px solid #BAE2EA;
    box-shadow: 0px 0px 10px 0px #BAE2EA
}

.profile-card.selected i.bi-volume-up {
    color: #BAE2EA;
}

.form-check-input:checked {
    background-color: #BAE2EA;
    border: #fff;
}

.user-text-input {
    border-radius: 10px;
    border: 3px solid #BAE2EA;
    box-shadow: 0 2px 2px #BAE2EA;
}

.user-text-input:focus {
    border-color: #BAE2EA !important;
    box-shadow: 0 5px 5px #BAE2EA !important;
    outline: none !important;
}

#profileCarousel {
    animation: slideUp 2s ease-out forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.wave-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0px 0px 10px 0px #BAE2EA
}

canvas {
    width: 100%;
    height: 100%;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#wave {
    height: 40px;
    width: 100%;
}

#controls {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.control {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.control label {
    margin-bottom: 10px;
}

.sound-result {
    background-color: #F5F5F5;
    padding: 15px;
}

.contact-form-wrapper {
    padding: 10px 0;
}

.contact-form {
    padding: 0px 40px;
    background-color: #ffffff;
    border-radius: 12px;
}

.contact-form textarea {
    resize: none;
}

.contact-form .form-input,
.form-text-area {
    background-color: #f0f4f5;
    height: 50px;
    padding-left: 16px;
}

.contact-form .form-text-area {
    background-color: #f0f4f5;
    height: auto;
    padding-left: 16px;
}

.contact-form .form-control::placeholder {
    color: #aeb4b9;
    font-weight: 500;
    opacity: 1;
}

.contact-form .form-control:-ms-input-placeholder {
    color: #aeb4b9;
    font-weight: 500;
}

.contact-form .form-control::-ms-input-placeholder {
    color: #aeb4b9;
    font-weight: 500;
}

.form-control:focus,
.faq-search-input:focus {
    border-color: #0097b2;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07), 0 0 8px #0097b2;
}

.contact-form .title {
    text-align: center;
    font-weight: 500;
}

.contact-form .description {
    font-size: 18px;
    text-align: center;
}

.contact-form .form-check-input {
    width: 1rem !important;
}

.contact-form .submit-button-wrapper {
    text-align: center;
}

.contact-form .submit-button-wrapper input {
    border: none;
    border-radius: 30px;
    background-color: #BAE2EA;
    color: white;
    text-transform: uppercase;
    padding: 10px 60px;
    font-weight: 500;
    letter-spacing: 2px;
}

.contact-form .submit-button-wrapper input:hover,
#submitBtn:hover {
    background-color: #0097b2;
}

.info-menus {
    position: absolute;
    bottom: 120px;
}

.custom-accordion .accordion-button {
    background-color: #BAE2EA;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #0097b2;
}

.custom-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.custom-accordion .accordion-body {
    background-color: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-custom-outline {
    border-color: #BAE2EA;
}

.btn-custom-outline:hover {
    background-color: #0097b2;
    color: #fff;
}

.btn-custom-primary {
    background-color: #BAE2EA;
    border-color: #BAE2EA;
}

.btn-custom-primary:hover {
    background-color: #0097b2;
    border-color: #0097b2;
    color: white;
}

.profile-list {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid grey;
}

.profile-item {
    padding: 20px 10px;
    border-bottom: 1px solid #ddd;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.profile-item.clone {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.profile-item.show {
    opacity: 1;
    transform: translateY(0);
}

.play-button {
    font-size: 22px;
    cursor: pointer;
}

.info-card {
    border: none;
    padding: 3.5rem;
    border-radius: .5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-bottom: 5rem;
    background-color: #F8F9FA;
}

.info-card .text-container {
    height: 180px;
    font-size: 1.2rem;
    font-weight: 300 !important;
}

.text-to-speech-page .info-card .text-container {
    height: 180px;
}

.info-card .icon-container i {
    font-size: 70px;
    background: linear-gradient(90deg, #BAE2EA, #BAE2EA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-member-card {
    border: none;
    overflow: hidden;
    border-radius: .5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #BAE2EA;
}

.team-member-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-member-info {
    background-color: #BAE2EA;
    padding: 1.5rem;
    text-align: center;
}

.team-member-info h5 {
    margin-top: 1rem;
    font-weight: bold;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    margin: 0 .5rem;
    color: #000;
    font-size: 1.2rem;
}

.more-info-text {
    font-size: large;
}

.carousel-item h5 {
    font-weight: bold;
}

.carousel-item p {
    font-size: 1rem;
}

.custom-card .card {
    background-color: #f8f9fa;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-radius: 8px;
}

.custom-card .card:hover {
    transform: scale(1.03);
}

.custom-card .card-body {
    font-size: 1.1rem;
}

.cyan {
    color: #BAE2EA;
}

.image-col {
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.showcase .showcase-img {
    background-image: url('../images/bg.png');
    min-height: 30rem;
    background-size: cover;
}

#voice-cloning-wave {
    height: 60vh;
    z-index: 1;
    margin-top: 130px;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    width: 500px;
    height: 95%;
}

.swiper .slide-content {
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.swiper-slide-active .slide-content {
    border: 1px solid #FF6F61CC;
}

.swiper .slide-content p {
    line-height: 1.8;
    font-size: 1.2rem;
    font-weight: 400;
}

.bg-cyan {
    background-color: #BAE2EA;
}

.border-cyan {
    border-color: #BAE2EA;
}

.project-production-info .card-body {
    height: 300px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
}

.stat-number {
    color: #fff;
}

.einsatzgebietePoints {
    align-items: baseline !important;
}

.quality-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
    color: #000;
}

.quality-section-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 15vh;
}

.quality-box {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: rgba(110, 169, 183, 0.8);
    border-radius: 10px;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.quality-box-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.quality-box-2 {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

.quality-box-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.quality-box-4 {
    bottom: 30%;
    right: 20%;
    animation-delay: 1s;
}

.quality-box-5 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
}

.tts-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 20px;
}

.tts-hero-content {
    position: relative;
    z-index: 2;
    margin: auto;
}

.wave-animation {
    position: absolute;
    bottom: 70%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    z-index: 1;
    overflow: hidden;
}

.wave-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FF6F61CC;
    animation: line-move 2s infinite;
}

@keyframes line-move {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.minus-margin {
    margin-top: -15px;
}

.tts-hero-icons {
    position: relative;
    font-size: 5rem;
    color: #BAE2EA;
    z-index: 2;
    margin-bottom: 0;
}

.tts-hero p {
    font-size: 1.2rem;
    margin: 15px 0;
    z-index: 2;
}

.pp-icon-container {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: icon-move 2s infinite;
}

@keyframes icon-move {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.time-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.left {
    left: 0px;
}

.left::after {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.time-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
}

.right {
    left: 50%;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #FF6F61CC;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.time-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background-color: #BAE2EA;
    border: 4px solid #BAE2EA;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.right::after {
    left: -13px;
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.dsgvo .feature-box {
    background-color: #fff;
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 320px;
    transition: transform 0.3s;
}

.dsgvo .feature-box:hover {
    transform: scale(1.05);
}

.dsgvo .feature-icon {
    font-size: 3rem;
    color: #BAE2EA;
}

.dsgvo .feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 10px;
}

.dsgvo .feature-content {
    font-size: 1rem;
    line-height: 1.6;
}

.ds-hero-section {
    padding: 100px 0;
    position: relative;
    text-align: center;
}

.ds-hero-section .shield-icon {
    font-size: 5rem;
    color: #BAE2EA;
    margin-bottom: 20px;
}

.ds-hero-section .layered-security {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.ds-hero-section .layer {
    background-color: #BAE2EA;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    animation: pulse 3s infinite;
}

.ds-hero-section .layer-1 {
    animation-delay: 0s;
}

.ds-hero-section .layer-2 {
    animation-delay: 0.5s;
    width: 120px;
    height: 120px;
}

.ds-hero-section .layer-3 {
    animation-delay: 1s;
    width: 160px;
    height: 160px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.ds-hero-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.beratung-hero-container {
    height: 50vh;
    position: relative;
}

.animated-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(110, 169, 183, 0.2);
    width: 200px;
    height: 200px;
    animation: circleAnimation 10s infinite ease-in-out;
}

@keyframes circleAnimation {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, 20px) scale(1.5);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.animated-circle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.animated-circle:nth-child(2) {
    top: 30%;
    left: 60%;
    animation-delay: 2s;
}

.animated-circle:nth-child(3) {
    bottom: 20%;
    right: 30%;
    animation-delay: 4s;
}

.hero-musical {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.musical-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: url('https://svgshare.com/i/bQR.svg') repeat-x;
    background-size: contain;
    opacity: 0.8;
    animation: wave 6s infinite linear;
}

@keyframes wave {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: 1000px;
    }
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.divider .line {
    width: 100%;
    height: 2px;
    background-color: #BAE2EA;
    margin: 0 15px;
}

.divider .center-line {
    display: flex;
    gap: 5px;
}

.divider .center-line div {
    width: 3px;
    height: 25px;
    background-color: #FF6F61CC;
    animation: bounce 0.5s infinite alternate;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.divider .center-line div:nth-child(2) {
    animation-delay: 0.2s;
}

.divider .center-line div:nth-child(3) {
    animation-delay: 0.4s;
}

.history-header {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.history-header-title {
    display: flex;
    align-items: baseline;
}

.history-header i {
    color: #BAE2EA;
    font-size: 1.5rem;
    margin-right: 10px;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.history-item:last-child {
    border-bottom: none;
}

.history-title {
    font-size: 1.2rem;
    font-weight: 500;
}

.history-text {
    color: #6c757d;
}

.history-time {
    font-size: 0.9rem;
    color: #6c757d;
}

.parallax-section {
    background-image: url('../images/back_1.jpeg');
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.parallax-section-2 {
    background-image: url('../images/team_parallex.jpeg');
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.parallax-content {
    text-align: center;
}

.desktop-header {
    display: none;
}

.mobile-header {
    display: none;
}

.logo-img-partner {
    max-width: 250px;
    height: auto;
    transition: transform 0.3s ease;
    margin: 0 auto;
    display: block;
}

.logo-img-partner:hover {
    transform: scale(1.2);
}

.row-cols-xl-7 {
    display: flex;
    flex-wrap: wrap;
}

.row-cols-xl-7 .col {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.row-cols-xl-7 .col:last-child {
    border-right: none;
}

@media (max-width: 768px) {
    .row-cols-xl-7 {
        justify-content: center;
    }

    .row-cols-xl-7 .col {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    .logo-img-partner {
        max-width: 120px;
    }
}

@media (max-width: 576px) {
    .row-cols-xl-7 .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .desktop-header {
        display: block;
    }

    .mobile-header {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .navbar-brand img {
        padding: 0 !important;
        margin-left: 25px !important;
    }

    #navbarNav ul.navbar-nav,
    #navbarNav a.btn {
        margin-left: 25px !important;
    }

    .site-content h2 {
        font-size: 1.5rem;
    }

    .section-container h2.slide-in-right,
    .section-container p.slide-in-right {
        transform: translateX(0%);
    }

    .profile-list .profile-image {
        display: none;
    }

    .slide-in-left {
        transform: translateX(0%);
    }

    .paragraph-medium+.custom-btn {
        display: block;
        text-align: center;
    }

    .content-anbieten .paragraph-medium~.custom-btn {
        display: block;
        text-align: center;
        margin-bottom: 0.5rem !important;
    }

    .content-anbieten+.custom-btn {
        display: block;
        text-align: center;
        margin-bottom: 0.5rem !important;
    }

    .card-320 {
        height: auto !important;
    }

    .card-340 {
        height: auto !important;
    }

    .card-380 {
        height: auto !important;
    }


    #voice-cloning-wave {
        margin-top: 200px !important;
        height: 90vh;
    }

    .timeline::after {
        left: 31px;
    }

    .time-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .time-container::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .left::after,
    .right::after {
        left: 18px;
    }

    .right {
        left: 0%;
    }

    .dsgvo .feature-box {
        height: auto !important;
    }
}

@media only screen and (min-width: 601px) and (max-width: 900px) {
    #navbarNav ul.navbar-nav {
        margin-left: 25px !important;
    }

    #navbarNav ul.navbar-nav,
    #navbarNav a.btn {
        margin-left: 25px !important;
    }

    .info-card .text-container {
        height: 450px !important;
        font-size: 1rem;
        padding: 0;
    }

    .info-card .text-container ul {
        text-align: left;
        padding: 0;
    }

    .dsgvo .feature-box {
        height: 600px !important;
    }
}

.text-default-size {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: rgb(33, 37, 41);
    line-height: 24px;
}
