.hero {
    width: 1024px;
    margin: 44px auto 80px auto;
    overflow: clip;
    @media (max-width: 700px) {
        width: 100%;
        margin-top: 30px;
        padding-left: 25px;
        margin-bottom: 40px;
    }
    .columns {
        display: flex;
        justify-content: space-between;
        align-items: center;
        @media (max-width: 700px) {
            .column {
                overflow: clip;
                &:first-child {
                    flex: 1;
                }
                &:last-child {
                    flex-basis: 100px;
                }
            }
        }
        h1 {
            font-size: 32px;
            color: var(--secondary-text);
            font-family: "VTB Group Demi Bold", sans-serif;
            margin-bottom: 44px;
            @media (max-width: 700px) {
                font-size: 24px;
                margin-bottom: 15px;
            }
        }
        p, ul {
            color: var(--secondary-text);
            font-size: 16px;
            @media (max-width: 700px) {
                font-size: 14px;
                li {
                    margin-bottom: 5px;
                }
            }
        }
        p {
            margin-bottom: 10px;
            @media (max-width: 700px) {
                margin-bottom: 5px;
            }
        }
        .icon {
            width: 400px;
            height: 400px;
            @media (max-width: 700px) {
                width: 100px;
                height: 200px;
                position: absolute;
                transform: translateY(-50%);
                overflow: clip;
            }
            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                object-position: center;
                @media (max-width: 700px) {
                    width: 200px;
                    height: 200px;
                }
            }
        }
        .button {
            padding: 15px 20px;
            display: inline-block;
            margin-top: 25px;
            border-radius: var(--border-radius);
            @media (max-width: 700px) {
                font-size: 14px;
            }
        }
    }
}

.products {
    width: 1024px;
    margin: 0 auto 120px auto;
    @media (max-width: 700px) {
        width: 100%;
        padding-inline: 25px;
    }
    h2 {
        font-size: 32px;
        color: var(--secondary-text);
        font-family: "VTB Group Demi Bold", sans-serif;
        margin-bottom: 35px;
        @media (max-width: 700px) {
            font-size: 24px;
        }
    }
    .carousel {
        .slides {
            grid-template: 1fr / 1fr;
            margin-bottom: 20px;
            .slide {
                grid-area: 1 / 1;
                display: none;
                &.active {
                    display: block;
                }
                .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: 25px 30px 5px 30px;
                        border-radius: var(--border-radius);
                        box-shadow: var(--box-shadow-light);
                        transition: all .5s;
                        display: flex;
                        flex-direction: column;
                        position: relative;
                        overflow: hidden;
                        &:hover {
                            box-shadow: var(--box-shadow-dark);
                            .link {
                                svg {
                                    path {
                                        fill: var(--hover-text);
                                    }
                                }
                            }
                        }
                        &.big {
                            grid-row: span 2;
                        }
                        h3 {
                            font-size: 20px;
                            margin-bottom: 16px;
                            font-family: "VTB Group Demi Bold", sans-serif;
                        }
                        h4 {
                            font-family: "VTB Group Demi Bold", sans-serif;
                            font-size: 14px;
                            margin-bottom: 10px;
                            color: var(--secondary-text);
                        }
                        ul {
                            font-size: 15px;
                            color: var(--secondary-text);
                            margin-bottom: 20px;
                        }
                        .icon {
                            width: 200px;
                            height: 200px;
                            position: absolute;
                            bottom: 0;
                            right: 0;
                            @media (max-width: 700px) {
                                width: 100px;
                                height: 100px;
                            }
                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: contain;
                                object-position: center;
                            }
                        }
                        .link {
                            margin-top: auto;
                            @media (max-width: 700px) {
                                position: absolute;
                                top: 10px;
                                right: 10px;
                            }
                            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;
                &.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;
        }
    }
}