.custom-akkordeon {
    padding: 50px;
    display: flex;
    flex-flow: column;
    gap: 65px;
}

.custom-akkordeon .icon-title {
    display: flex;
    gap: 12px;
    align-items: center;
}

.custom-akkordeon .icon-title .icon {
    width: 35px;
    height: 35px;
    display: block;
}

.custom-akkordeon .icon-title .title {
    margin: 0;
    font-weight: 600;
    font-size: 23px;
    line-height: 100%;
}

.custom-akkordeon .items-images {
    display: flex;
    gap: 50px;
}

.custom-akkordeon .items-images .items {
    display: flex;
    flex-flow: column;
    width: calc(50% - 25px);
}

.custom-akkordeon .items-images .images {
    width: calc(50% - 25px);
    position: relative;
}

.custom-akkordeon .items-images .images img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    transform: translateY(10%);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    object-fit: contain;
    object-position: top;
    transition: transform 0.5s ease, opacity 0.25s ease;
}

.custom-akkordeon .items-images .images img:first-child {
    position: relative;
}

.custom-akkordeon .items-images .images img.show {
    transform: translateY(0px);
    opacity: 1;
}

.custom-akkordeon .items-images .items .item {
    border-bottom: 1px solid #c2c2c4;
}

.custom-akkordeon .items-images .items .item .icon-title {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 30px 0px;
    cursor: pointer;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
}

.custom-akkordeon .items-images .items .item .icon-title img {
    width: 31px;
    height: 31px;
    display: block;
}

.custom-akkordeon.semiBold .items-images .items .item .icon-title img {
    width: 35px;
    height: 35px;
}

.custom-akkordeon .items-images .items .item .icon-title .title {
    margin: 0px;
    font-size: 21px;
    font-weight: 400;
    line-height: 25px;
}

.custom-akkordeon.semiBold .items-images .items .item .icon-title .title {
    font-weight: 600;
    font-size: 23px;
    line-height: 100%;
}

.custom-akkordeon .items-images .items .item .content {
    height: 0;
    overflow: hidden;
    transition: height 0.25s ease;
}

.custom-akkordeon .items-images .items .item .content img.mobile {
    display: none;
    width: 100%;
    height: auto;
}

.custom-akkordeon .items-images .items .item .content p {
    margin: 0;
    padding-top: 10px;
    padding-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    max-width: 325px;
}

@media screen and (max-width: 960px) {
    .custom-akkordeon .items-images .items {
        width: 100%;
    }

    .custom-akkordeon .items-images .images {
        display: none;
    }

    .custom-akkordeon .items-images .items .item .content p {
        padding-bottom: 10px;
    }

    .custom-akkordeon .items-images .items .item .content img.mobile {
        padding-bottom: 30px;
        display: block;
    }
}