.schulungskonzept-wrapper-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.schulungskonzept-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-konzept);
}

div.abstand-konzept {
    width: 100%;
    margin: 3px 0px;
}

div.pfeil {
    color: var(--main-color);
    font-size: 50px;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.schulungskonzept-wrapper>.h {
    width: 100%;
    text-align: center;
    border-radius: var(--border-radius-konzept);
    background-color: var(--color-gray);
    padding: 6px;
}

.schulungskonzept-wrapper>.h>span {
    font-size: 25px;
}

.schulungen-erklaerbaer {
    background-color: var(--color-gray);
    border-radius: var(--border-radius-konzept);
    width: 100%;
    text-align: center;
}

.schulungen-erklaerbaer>span {
    font-size: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.schulungskonzept-wrapper>.online-support-wrapper>.online-support {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    gap: 6px;
    margin-top: 5px;
    border-radius: var(--border-radius-konzept);
}

.schulungskonzept-wrapper>.online-support-wrapper {
    text-align: center;
    font-size: 20px;
    border-collapse: collapse;
    width: 100%;
    border-radius: var(--border-radius-konzept);
}

.schulungskonzept-wrapper>.online-support-wrapper>.balken {
    background-color: var(--color-gray);
    border-radius: var(--border-radius-konzept);
    padding: 10px;
    text-align: center;
}

.whatsapp,
.video {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    border-radius: var(--border-radius-konzept);
    padding-bottom: 20px;
    background-color: var(--color-gray);
}

.whatsapp>div.hd,
.video>div.hd {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 28px;
}

.whatsapp>div.text,
.video>div.text {
    margin: 0px 20px;
    letter-spacing: .5px;
    line-height: 28px;
}

@media only screen and (max-width: 1200px) {
    .schulungskonzept-wrapper {
        width: 80%;
    }
}

@media only screen and (max-width: 720px) {
    .schulungskonzept-wrapper {
        width: 95%;
    }
}

@media only screen and (max-width: 540px) {
    .schulungskonzept-wrapper>.online-support-wrapper>.online-support {
        flex-direction: column;
    }
}