.simple__content-body {
    p:not(:last-child) {
        margin-bottom: 16px;
    }
    h3 {
        font-weight:700;
    }
    a {
        color: var(--Dark-wine-1, #92111C);
        text-decoration:underline;
        &:hover {
            text-decoration:none;
         }
    }
}

.delivery__return-page {
    .breadcrumbs-section {
        margin-top:56px;
        margin-bottom:20px;
    }
    .main__banner-section {
        margin-top:20px;
        margin-bottom:20px;

        .main__banner-block {
            height:334px;
            position:relative;
            padding:15px 48px;
            box-sizing:border-box;
            border-radius: 12px;
            img {
                border-radius: 12px;
            }

            .main__banner-content {
                position:relative;
                color: var(--Base-White, #FFF);
                display:flex;
                flex-direction:column;
                height:100%;
                justify-content:center;
                max-width:530px;

                .main__banner-title {
                    font-size: 40px;
                    font-weight: 400;
                    line-height: 130%;
                    letter-spacing: 0.8px;
                    margin-bottom:10px;
                }
                .main__banner-text {
                    font-size: 20px;
                    line-height: 150%;
                    letter-spacing: 0.2px;
                    margin-bottom:32px;
                }
                .main__banner-buttons {
                    display:flex;
                    gap:16px;
                }
            }
        }
    }

    .child__banners-section {
        margin-top:0;

        .child__banners-block {
            .child__banners-wrap {
                display:flex;
                justify-content:space-between;
                gap:20px;

                .child__banner {
                    position:relative;
                    height:335px;
                    padding:48px 32px;
                    box-sizing:border-box;
                    border-radius: 12px;
                    overflow:hidden;
                    flex: 1 0 calc(calc(100% / 2) - 20px);

                    img {
                        border-radius: 12px;
                    }

                    .child__banner-content {
                        position:relative;
                        height:100%;
                        display:flex;
                        justify-content:end;
                        color: var(--Base-White, #FFF);
                        max-width:303px;
                        flex-direction: column;


                        .child__banner-title {
                            font-size: 26px;
                            font-weight: 600;
                            line-height: 130%;
                            letter-spacing: 0.52px;
                            margin-bottom:8px;
                        }
                        .child__banner-text {
                            font-size: 16px;
                            line-height: 140%;
                            letter-spacing: 0.16px;
                        }
                    }
                }
            }
        }
    }

    .main__steps-section {
        .delivery__steps-block {
            .delivery__steps-items {
                display:flex;
                justify-content:space-between;
                align-items: stretch;
                gap:20px;

                .delivery__step-item {
                    padding:24px;
                    box-sizing:border-box;
                    border-radius: 12px;
                    background: var(--Gray-1, #FAFAFA);
                    flex:1 0 calc(calc(100% / 3) - 20px);

                    .delivery__step-icon {
                        margin-bottom:16px;

                        img {
                            max-width:40px;
                        }
                    }
                    .delivery__step-title {
                        color: var(--Base-Dark, #171717);
                        font-size: 26px;
                        font-weight: 600;
                        line-height: 130%;
                        letter-spacing: 0.52px;
                        margin-bottom:16px;
                    }
                    .delivery__step-list {
                        li {
                            color: var(--Gray-8---Main, #383838);
                            font-size: 14px;
                            line-height: 140%;
                            letter-spacing: 0.14px;
                            margin-bottom:8px;
                            padding-left:12px;
                            position:relative;

                            &:after {
                                content: "";
                                position:absolute;
                                top:7px;
                                left:0;
                                width:6px;
                                height:6px;
                                border-radius:50px;
                                display:block;
                                background:var(--Base-Dark, #171717);

                             }
                            &:last-child {
                                margin-bottom:0;
                            }
                        }
                    }
                }
            }
        }
    }
    .description__sections-section {
        .description__sections-block {
            .description__sections {
                display:flex;
                justify-content:space-between;
                align-items: stretch;

                .description__sections-sidebar {
                    flex: 1 0 250px;
                    padding-top:100px;
                    box-sizing:border-box;

                    .description__sidebar-block {
                        position:sticky;
                        top:20px;
                        left:0;

                        .description__sidebar-title {
                            color: var(--Gray-6, #9A9AA2);
                            cursor:pointer;
                            font-size: 14px;
                            font-weight: 400;
                            line-height: 140%;
                            letter-spacing: 0.14px;
                            padding:14px 16px;
                            position:relative;
                            border-left:1px solid #9A9AA2;
                            transition: all 0.4s;
                            display:block;


                            &:hover, &.active {
                                 border-left-color:#171717;
                                 color: var(--Base-Dark, #171717);
                            }
                        }
                    }
                }
                .description__sections-content {
                    flex: 1 1 737px;

                    .description__sections-title {
                        color: var(--Base-Dark, #171717);
                        font-size: 40px;
                        font-weight: 500;
                        line-height: 130%;
                        letter-spacing: 0.8px;
                        margin-bottom:56px;
                        display:block;
                    }

                    .description__content-section {
                        margin-bottom:56px;

                        .description__sections-title {
                            color: var(--Base-Dark, #171717);
                            font-size: 40px;
                            font-weight: 500;
                            line-height: 130%;
                            letter-spacing: 0.8px;

                            &:last-child { margin-bottom:0; }
                        }
                    }


                }
            }
        }
    }
}

@media (max-width: 992px) {
    .delivery__return-page {
        padding-top:0;

        .wrap__section {
            margin-top:60px;
            margin-bottom:60px;
        }

        .breadcrumbs-section {
            margin-top: 32px;
            margin-bottom: 16px;
        }
        .main__banner-section {
            margin-bottom:16px;

            .main__banner-block {
                height:670px;
                padding: 64px 16px;

                .main__banner-content {
                    justify-content: start;
                    max-width:100%;

                    .main__banner-title {
                        font-size: 30px;
                        line-height: 130%;
                        letter-spacing: 0.6px;
                        margin-bottom:16px;
                    }
                    .main__banner-text {
                        color: var(--Base-White, #FFF);
                        font-size: 16px;
                        line-height: 140%;
                        letter-spacing: 0.16px;
                        margin-bottom:40px;
                    }
                    .main__banner-buttons {
                        flex-direction:column;
                        .button {
                            width:100%;
                        }
                    }
                }
            }
        }
        .child__banners-section {
            margin-top:16px;

            .child__banners-block {
                .child__banners-wrap {
                    flex-direction: column;

                    .child__banner {
                        padding:48px 16px;
                        flex:none;
                        width:100%;

                        .child__banner-content {
                            .child__banner-title {
                                font-size: 26px;
                                font-weight: 600;
                                line-height: 130%;
                                letter-spacing: 0.52px;
                                margin-bottom:8px;
                            }
                            .child__banner-text {
                                font-size: 16px;
                                line-height: 140%;
                                letter-spacing: 0.16px;
                            }
                        }
                    }
                }
            }
        }
        .main__steps-section {
            .delivery__steps-block {
                .delivery__steps-items {
                    flex-direction: column;
                    gap: 12px;
                    .delivery__step-item {
                        flex:none;
                        width:100%;

                        .delivery__step-icon {
                            margin-bottom:12px;
                        }
                        .delivery__step-title {
                            font-size: 22px;
                            font-weight: 500;
                            line-height: 150%;
                            letter-spacing: 0.22px;
                            margin-bottom:12px;
                        }
                        .delivery__step-list {
                            li {


                                &:after {


                                 }
                                &:last-child {

                                 }
                            }
                        }
                    }
                }
            }
        }
        .description__sections-section {
            .description__sections-block {
                .description__sections {

                    .description__sections-sidebar {
                        display:none;
                    }

                    .description__sections-content {


                        .description__sections-title {
                            font-size: 32px;
                            font-weight: 500;
                            line-height: 140%;
                            letter-spacing: 0.64px;
                            margin-bottom:40px;
                        }

                        .description__content-section {
                            margin-bottom:48px;

                            .description__sections-title {

                            }
                        }
                    }
                }
            }
        }
    }

    .simple__content-body {
        p:not(:last-child) {
            margin-bottom: 16px;
        }
        h2 {
            font-size: 26px;
            font-weight: 600;
            line-height: 130%;
            letter-spacing: 0.52px;
            margin-bottom:20px;
        }
        h3 {
            margin-bottom:16px;
        }
        a {

        }
    }
}