.slider {
    overflow: hidden;
    position: relative;
}
.kuenstliche_inteligenzen {
    display: flex;
    width: 200%;
    transition: transform 0.5s ease;
}
.kuenstliche_inteligenzen .wichtige_apps {
    width: 50%;
    box-sizing: border-box;
    flex: none;
}
input[type="radio"] {
    display: none;
}
#item-1:checked ~ .kuenstliche_inteligenzen {
    transform: translateX(0);
}

#item-2:checked ~ .kuenstliche_inteligenzen {
    transform: translateX(-50%);
}

.controls {
    position: absolute;
    top: 45%;
    width: 100%;
    transform: translateY(-50%);
    transform: scale(0.9)
}
.control {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.next {
    right: 0;
    position: absolute;
}

.prev {
    left: 0;
    position: absolute;
}
.control:hover {
    transform: scale(1.1);
}
#item-1:checked ~ .controls .prev {
    display: none;
}
#item-2:checked ~ .controls .next {
    display: none;
}
.dots {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    margin-bottom: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dot:hover {
    background-color: #acaaaa;
}
#item-1:checked ~ .dots #dot-1 {
    transform: scale(1.15);
    background-color: rgba(231, 231, 231, 0.8);
}
#item-2:checked ~ .dots #dot-2 {
    transform: scale(1.15);
    background-color: rgba(231, 231, 231, 0.8);
}
