@media (max-width: 992px) {
    /* Header */
    .header-wrapper {
        padding: 5px 0;

        .header-part {
            .logo-part {
                width: 90px;

                .animation {
                    background-image: unset;
                    aspect-ratio: unset;
                    justify-content: start;

                    .animation-round {
                        width: 100%;
                        animation: animation-round infinite 10s linear;
                    }

                    .moon {
                        width: 24px;
                    }
                }
            }

            .menu-part {
                position: fixed;
                width: 300px;
                height: 100%;
                min-height: 100vh;
                background: #ffffff;
                padding: 65px 15px 15px;
                right: -100%;
                top: 0;
                overflow-x: hidden;
                z-index: 99;
                transition: 0.5s;
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

                .nav-bar {
                    ul {
                        li {
                            margin-bottom: 10px;

                            a {
                                color: var(--primaryColor);
                                padding: 10px 0 0 15px;
                            }

                            .btn-theme {
                                margin-top: 20px;
                            }

                            &.active > a {
                                /* color: #fff; */
                            }
                        }
                    }
                }

                .close-menu {
                    position: absolute;
                    right: 14px;
                    top: 14px;
                    color: #000000 !important;
                    font-size: 24px;
                    line-height: 1;
                }

                &.active {
                    right: 0;
                }
            }

            .toggle-btn {
                margin-left: 10px;
                text-align: center;

                a {
                    width: 25px;
                    display: block;

                    i {
                        display: block;
                        width: 24px;
                        background: #fff;
                        height: 2px;
                        display: block;
                        margin: 6px 0px;
                        width: 100%;
                    }
                }
            }
        }
    }

    /* Hero section */
    .hero-section {
        padding-top: 60px;
        padding-bottom: 100px;

        .hero-title {
            > h1 {
                font-size: 36px;
                line-height: 63px;
                margin-bottom: 20px;
            }

            > h4 {
                margin-bottom: 18px;
            }

            .download-btn-group {
                margin-top: 40px;

                > img {
                    width: 100%;
                    max-width: 140px;
                }
            }
        }

        .hero-mobile-img {
            width: 90%;
        }
    }

    /* Welcome section */
    .welcome-section {
        .welcome-header {
            max-width: 100%;
            width: 98%;
            margin-bottom: 30px;

            h2 {
                font-size: 28px;
                min-height: 60px;
            }

            &::after {
                top: -10px;
                right: -10px;
            }
        }
    }

    /* Slider section */
    .slider-section {
        .welcome-header {
            max-width: 100%;
            width: 98%;
            margin-bottom: 30px;

            h2 {
                font-size: 28px;
                min-height: 60px;
            }

            &::after {
                top: -10px;
                right: -10px;
            }
        }

        .step-list {
            padding-left: 30px;

            li {
                gap: 50px;

                .image {
                    width: 60px;
                    height: 60px;
                    padding: 10px;

                    img {
                        width: 40px;
                    }

                    .number {
                        top: -40px;
                        right: -30px;
                        font-size: 50px;
                    }

                    &::before {
                        content: "";
                        position: absolute;
                        z-index: 1;
                        left: -40px;
                        width: 24px;
                        height: 24px;
                        border-radius: 50%;
                        background-color: white;
                        border: 5px solid var(--primaryColor);
                    }
                }

                .content {
                    h4 {
                        font-size: 18px;
                    }

                    p {
                        font-size: 12px;
                    }
                }
            }
        }
    }

    /* Features section */
    .features-section {
        .welcome-header {
            max-width: 100%;
            width: 98%;
            margin-bottom: 30px;

            > h2 {
                font-size: 28px;
                min-height: 60px;
            }

            &::after {
                top: -10px;
                right: -10px;
            }
        }

        .img-section {
            > img {
                width: 100%;
            }
        }

        .icons {
            .icon2 {
                display: none;
            }

            .icon3 {
                top: 25%;
            }

            .icon4 {
                left: 24%;
            }

            .icon5 {
                display: none;
            }
        }
    }

    /* Contact-Us section */
    .contact-us-section {
        padding: 40px 0;

        .welcome-header {
            max-width: 100%;
            width: 98%;
            margin-bottom: 30px;

            > h2 {
                font-size: 28px;
                min-height: 60px;
            }

            &::after {
                top: -10px;
                right: -10px;
            }
        }

        .contact-box {
            .contact-form {
                text-align: center;
                padding: 40px;

                > h4 {
                    font-size: 20px;
                    margin-bottom: 36px;
                }

                label {
                    margin-bottom: 8px;
                    text-align: start;
                }

                input {
                    height: 36px;
                }

                .form-group-mr {
                    margin: 30px 0;
                }

                select {
                    padding: 5px;
                }

                button {
                    padding: 12px 36px;
                    margin-top: 40px;
                }
            }

            .contact-info {
                background-color: var(--primaryColor);
                padding: 40px;

                > h4 {
                    font-size: 20px;
                    margin-bottom: 30px;
                }

                .contact-info-mr {
                    margin: 20px 0;
                }
            }
        }
    }
}

@media (max-width: 576px) {
    /* Hero section */
    .hero-section {
        padding-top: 20px;
        padding-bottom: 50px;

        .hero-title {
            > h1 {
                font-size: 28px;
                line-height: 40px;
                margin-bottom: 20px;
            }

            > h4 {
                font-size: 14px;
                margin-bottom: 10px;
            }

            .download-btn-group {
                margin-top: 30px;

                > img {
                    width: 100%;
                    max-width: 140px;
                }
            }
        }
    }

    /* Welcome section */
    .welcome-section {
        padding: 50px 0;

        .welcome-header {
            > h2 {
                font-size: 24px;
            }
        }

        p {
            font-size: 14px;
        }
    }

    /* Slider section */
    .slider-section {
        .welcome-header {
            > h2 {
                font-size: 24px;
            }
        }
    }

    /* Fetaures section */
    .features-section {
        .welcome-header {
            > h2 {
                font-size: 24px;
            }
        }

        .icons {
            .icon1 {
                top: 25%;
                width: 100px;
            }

            .icon3 {
                display: none;
            }

            .icon4 {
                left: 20%;
                width: 20px;
            }

            .icon6 {
                top: 90%;
                width: 100px;
            }
        }
    }

    /* Contact-Us section */
    .contact-us-section {
        .welcome-header {
            > h2 {
                font-size: 24px;
            }
        }

        .contact-box {
            .contact-form {
                padding: 30px;
            }
        }
    }

    /* Footer section */
    .footer {
        padding: 40px 0;
    }

    .footer .logo-part p {
        font-size: 14px;
    }

    .footer .logo-part .download-app-section > .download-btn-group {
        margin-top: 20px;

        > img {
            width: auto;
        }
    }

    .footer .menu-part-main .small-device {
        padding: 0 12px;
    }

    .footer .menu-part-main .menu-part .menu-title {
        font-size: 18px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 14px;
    }

    .footer .menu-part-main .menu-part ul li:not(:last-child) {
        margin-bottom: 14px;
    }

    .footer .menu-part-main .menu-part ul li > a {
        font-size: 14px;
        font-weight: 400;
        color: #ffffff;
    }
}
