.transformation {
    padding: 320px 0 0 0;

    @media (max-width: 1024px) {
        padding: 40px 0 60px 0;
    }
    .container {
        h1 {
            margin-block: 0 30px;
            max-width: 750px;
        }
        .sub_title {
            border-radius: 20px;
            border: 1px solid var(--c-black);
            width: fit-content;
            padding: 16px 20px;
            margin-bottom: 12px;
            @media (max-width: 1024px) {
                border: none;
            }
            h4 {
                margin-block: 0;
            }
        }
        .text {
            max-width: 534px;
            margin-bottom: 6px;
        }
        .display {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            figure {
                width: 530px;
                height: 340px;
                border-radius: 20px;
                overflow: hidden;
                margin-top: 30px;
                @media (max-width: 768px) {
                    width: 244px;
                    height: 136px;
                }
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
            .list {
                @media (max-width: 1024px) {
                    display: none;
                }
                h4 {
                    margin-block: 0 25px;
                }
                ul {
                    list-style-type: none;
                    display: flex;
                    flex-direction: column;
                    gap: 15px;
                    margin: 0;
                    padding: 0;
                    margin-left: 40px;

                    li {
                        position: relative;
                        color: #181818;
                        font-family: Inter;
                        font-size: 18px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 130%;
                        letter-spacing: -0.36px;
                        max-width: 70%;

                        @media (max-width: 1024px) {
                            max-width: unset;
                        }

                        &:before {
                            content: '';
                            position: absolute;
                            left: -40px;
                            top: 12px;
                            transform: translateY(-50%);
                            width: 22px;
                            height: 22px;
                            border: 1px solid #181818;
                            border-radius: 100%;
                        }
                    }
                }
            }
        }
    }
}
