.leistungen-container{
    margin-bottom:80px;
}

.leistungen-container h1 {
    font-size:48px;
    font-weight:700;
    color:#000911;
    margin-bottom:70px;
}

.leistungen-card-container {
    display: flex;
    justify-content: space-between;
    gap:20px;
}

.leistungen-card{
    background-color: #011C33;
    display: flex;
    flex: 1;
    justify-content: center;
    flex-direction: column;
    border-radius:15px;
    border:1px solid #011C33;
}

.leistungen-card img{
    min-height:250px;
    height: 50%;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.leistungen-card .leistungen-card-text{
    margin:30px 10px;
    font-weight: 700;
    height:50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.leistungen-card .leistungen-card-text p:nth-child(1){
    justify-self: flex-start;
    color:#EAF205;
    font-size:22px;
}

.leistungen-card .leistungen-card-text p:nth-child(2){
    color:white;
    font-size:20px;
    max-width: 30ch;
    word-wrap: break-word;
}


.button-div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-div a {
    font-size: 20px;
    font-weight: 700;
    color:#011C33;
    background-color: #EAF205;
    margin:60px 0;
    border-radius: 13px;
    text-decoration: none;
    padding: 5px 15px;
    transition: background-color 0.3s ease;
    text-align: center;
}


.button-div a:hover {
    background-color:#0b5ed7;
	color:white ;
}



@media (max-width: 992px) {
    .leistungen-card-container {
        flex-direction: column;
    }
}