body {
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 0px;
    font-family: Arial, Helvetica, sans-serif;
    height: 2500px;
    box-sizing: border-box;
}


.mainlogo img {
    width: 35%;
    
}
.mainlogo {
    display: flex;
    justify-content: center;
}
.logo-text {
    font-size: 40px;
    font-family: "Comic Neue", "Comic Sans MS", cursive;
    font-weight: bold;
    text-align: center;
   
}
.logo-bereich {
    width: 100%;
    margin: auto;
}
nav {
    position: sticky;
    top: 10px;
}

.bereich {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 20px;
    z-index: 1;
}

.bereich button {
    padding-bottom: 15px;
    padding-top: 15px;
    padding-right: 30px;
    padding-left: 30px;
    font-size: 18px;
    border-radius: 30px;
    background-color: #00405B;
    color: #04CBE9;
    border: none;
    cursor: pointer;
    transition: 400ms;
}

.bereich button:hover {
    background-color: #AB7BE6;
    color: #00405B;
    transform: scale(1.3);
    font-weight: bold;
    font-size: 20px;
}

.box {
    margin-top: 50px;
    border: 1px solid black;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 25px;
    display: block;
}

.info-text {
    display: flex;
    justify-content: space-between;
}

.btn-action {
    height: 30px;
    width: 30px;
    border-radius: 30px;
    border: none;
    color: #04CBE9;
    background-color: #00405B;
    cursor: pointer;
    transition: 300ms;
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.text {
    display: none;
}

.text.show {
    display: block;
}


.text.show ul {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
}

.text.show li {
    margin-bottom: 5px;
}
.container.swiper {
    width: 100%;
    max-width: 100%;
   
}
.card-list .card-item .user-image {
    height: 120px;
    width: 120px;
    border-radius: 100%;
    border: 1px solid #04CBE9;
    padding: 2px;
    object-fit: cover;
}
.slider-wrapper {
    overflow: visible;
    width: 100%;
    max-width: 100%;
    padding-bottom: 50px;
}
.card-list .card-item {
    border: 1px solid #04CBE9;
    user-select: none;
    background-color: #00405B;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 12px;
    color: #04CBE9;
    box-sizing: border-box;
}
.slider-wrapper .swiper-pagination-bullet {
    background-color: #AB7BE6;
    height: 15px;
    width: 15px;
}
.slider-wrapper .swiper-slide-button {
    color: #04CBE9;
    margin-top: -50px;
  
}
.card-number {
    position: absolute;
    left: 15px;
    top: -5px;
}
@media (max-width: 768px) {
    
    body {
        margin: 0;
    }
}