main {
    width: 1024px;
    margin: 60px auto 90px auto;
    @media (max-width: 700px) {
        width: 100%;
        margin-top: 30px;
        padding-inline: 25px;
    }
    h1, h2 {
        font-size: 32px;
        color: var(--secondary-text);
        font-family: "VTB Group Demi Bold", sans-serif;
        margin-bottom: 44px;
        @media (max-width: 700px) {
            margin-bottom: 20px;
            font-size: 24px;
        }
    }
    .toggle {
        display: flex;
        margin-bottom: 60px;
        @media (max-width: 700px) {
            margin-bottom: 35px;
        }
        .toggle_button {
            padding: 10px 20px;
            font-size: 16px;
            border-top: 1px solid var( --secondary-text);
            border-bottom: 1px solid var( --secondary-text);
            cursor: pointer;
            transition: background-color .5s;
            @media (max-width: 700px) {
                font-size: 12px;
            }
            &:first-child {
                border-left: 1px solid var( --secondary-text);
            }
            &:last-child {
                border-right: 1px solid var( --secondary-text);
            }
            &.active {
                background-color: #fff;
                border: 2px solid var(--primary-blue);
            }
        }
    }

    .products {
        width: 1024px;
        margin: 0 auto 80px auto;
        @media (max-width: 700px) {
            width: 100%;
            margin-bottom: 40px;
        }
        h2 {
            font-size: 32px;
            color: var(--secondary-text);
            font-family: "VTB Group Demi Bold", sans-serif;
            margin-bottom: 35px;
        }
        .toggle_target {
            > * {
                display: none;
                &.active {
                    display: block;
                    animation: show_toggle_target 0.5s forwards;
                }
            }
        }
        .carousel {
            overflow: clip;
            overflow-clip-margin: 10px;
            .slides {
                display: grid;
                grid-template: 1fr / 1fr;
                margin-bottom: 20px;
                .slide {
                    grid-area: 1 / 1;
                    position: relative;
                    &.animating {
                        transition: all .5s;
                    }
                    &.active {
                        transform: translateX(0);
                        z-index: 2;
                        opacity: 1;
                    }
                    &.next {
                        opacity: 0;
                        transform: translateX(calc(100% + 20px));
                    }
                    &.prev {
                        opacity: 0;
                        transform: translateX(calc(-100% - 20px));
                    }
                    .grid {
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        gap: 20px 50px;
                        justify-content: center;
                        @media (max-width: 700px) {
                            grid-template-columns: 1fr;
                        }
                        .card {
                            background: #fff;
                            padding: 20px;
                            border-radius: var(--border-radius);
                            box-shadow: var(--box-shadow-light);
                            transition: all .5s;
                            display: flex;
                            gap: 20px;
                            position: relative;
                            @media (max-width: 700px) {
                                &:nth-child(n+2) {
                                    display: none;
                                }
                            }
                            &:hover {
                                box-shadow: var(--box-shadow-dark);
                                .link {
                                    svg {
                                        path {
                                            fill: var(--hover-text);
                                        }
                                    }
                                }
                            }
                            &.big {
                                grid-row: span 2;
                            }
                            .text {
                                display: flex;
                                flex-direction: column;
                                flex: 1;
                                h3 {
                                    font-size: 22px;
                                    margin-bottom: 16px;
                                    font-family: "VTB Group Demi Bold", sans-serif;
                                    @media (max-width: 700px) {
                                        font-size: 18px;
                                        margin-bottom: 10px;
                                    }
                                }
                                h4 {
                                    font-family: "VTB Group Demi Bold", sans-serif;
                                    font-size: 14px;
                                    margin-bottom: 10px;
                                    color: var(--secondary-text);
                                    @media (max-width: 700px) {
                                        font-size: 12px;
                                        color: var(--primary-text);
                                        margin-bottom: 5px;
                                    }
                                }
                                p {
                                    font-size: 15px;
                                    color: var(--secondary-text);
                                    margin-bottom: 20px;
                                    @media (max-width: 700px) {
                                        font-size: 12px;
                                        margin-bottom: 5px;
                                    }
                                }
                            }
                            .icon {
                                width: 100px;
                                height: 100px;
                                @media (max-width: 700px) {
                                    align-self: center;
                                }
                                img {
                                    width: 100%;
                                    height: 100%;
                                    object-fit: contain;
                                    object-position: center;
                                }
                            }
                            .link {
                                position: absolute;
                                left: 16px;
                                bottom: 5px;
                                @media (max-width: 700px) {
                                    left: unset;
                                    bottom: unset;
                                    top: 5px;
                                    right: 5px;
                                }
                                svg {
                                    path {
                                        transition: all .5s;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .controls {
                display: flex;
                align-items: center;
                gap: 10px;
                .control {
                    width: 10px;
                    height: 10px;
                    border-radius: 10px;
                    background: var(--carousel-dot-gray);
                    cursor: pointer;
                    transition: all .5s;
                    &.active {
                        background: var(--primary-blue);
                        width: 60px;
                    }
                }
            }
        }
    }

    .get_help {
        width: 1024px;
        margin: 0 auto 80px auto;
        padding: 44px 44px 20px 44px;
        background: linear-gradient(to right, #5141C2 0%, #00AAFF 71%);
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        @media (max-width: 700px) {
            width: 100%;
            flex-direction: column;
            padding: 30px;
            margin-bottom: 50px;
        }
        .text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            @media (max-width: 700px) {
                text-align: center;
            }
            h2 {
                font-size: 24px;
                color: #fff;
                font-family: "VTB Group Demi Bold", sans-serif;
                margin-bottom: 10px;
                @media (max-width: 700px) {
                    font-size: 22px;
                    width: 100%;
                }
            }
            p {
                font-size: 17px;
                color: #fff;
                margin-bottom: 22px;
            }
            .button {
                border-radius: var(--border-radius);
                font-size: 20px;
                padding: 15px 30px;
                @media (max-width: 700px) {
                    font-size: 16px;
                    align-self: center;
                    margin-top: 175px;
                }
            }
        }
        .icon {
            width: 200px;
            height: 200px;
            @media (max-width: 700px) {
                position: absolute;
                bottom: 75px;
            }
            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                object-position: center;
            }
        }
    }
}