.info {
    display: flex;
    gap: 80px;
    align-items: center;
    p {
        color: var(--white-70);
    }
    &.text {
        flex-direction: column;
        gap: 40px;
        .headline {
            align-self: start;
            width: calc(50% - 40px);
        }
        .items {
            display: flex;
            gap: 80px;
            width: 100%;
            > .text {
                flex: 1 1 0px;
                display: flex;
                flex-direction: column;
                gap: 20px;
                ul {
                    li {
                        display: grid;
                        gap: 5px;
                        grid-template-columns: 10px 1fr;
                        margin-bottom: 20px;
                        align-items: end;
                        p:last-of-type {
                            grid-column: span 2;
                        }
                        &::before {
                            align-self: start;
                        }
                    }
                    &:last-of-type {
                        margin-bottom: 35px;
                    }
                }
                div.table {
                    overflow-x: auto;
                    width: 100%;
                    scrollbar-width: thin;
                    scrollbar-color: var(--blue) var(--white-20);
                    &::-webkit-scrollbar {
                        height: 6px;
                        background-color: var(--white-20);
                        border-radius: 10px;
                    }
                    &::-webkit-scrollbar-thumb {
                        background-color: var(--blue);
                        border-radius: 10px;
                    }
                }
                table {
                    border-collapse: collapse;
                    width: 100%;
                    min-width: 500px;
                    th {
                        text-align: left;
                    }
                    th, td {
                        padding: 10px;
                        border: 1px solid var(--blue);
                    }
                }
            }
        }
    }
    > div {
        flex: 1 1 0px;
        &.text {
            display: flex;
            flex-direction: column;
            gap: 20px;
            justify-content: center;
            width: 100%;
            .headline {
                margin-bottom: 20px;
            }
            p {
                color: var(--white-70);
            }
        }
        &.image {
            position: relative;
            img {
                border-radius: 20px;
                box-shadow: 0 0 20px var(--white-20);
            }
        }
    }
}
@media screen and (max-width: 1279px) {
    .info {
        flex-direction: column;
        gap: 40px;
        &:nth-child(2n) {
            flex-direction: column-reverse;
        }
        &.text {
            flex-direction: column;
            .headline {
                width: 100%;
            }
            .items {
                flex-direction: column;
                gap: 0;
                > .text {
                    ul {
                        &:last-of-type {
                            margin: 0;
                        }
                    }
                }
            }
        }
    }
}