.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;
    outline: none;
}
.p-lr {
    padding-left: 50px;
    padding-right: 50px;
}
button {
    border: none;
    background: transparent;
    cursor: pointer;
}
body {
    background: #f7f7f7;
}
header {
    max-width: 1440px;
    width: 100%;
    margin: 10px auto 0;
    .header-container {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 40px;
        background: #f1f1f1;
        border-radius: 12px;
        .header-links {
            display: flex;
            align-items: center;
            gap: 28px;
            .header-link {
                font-weight: 400;
                font-size: 14px;
                line-height: 20px;
                color: #5b5b5b;
                position: relative;
                transition: 0.25s ease-in-out;
                &::after {
                    content: "";
                    position: absolute;
                    bottom: -4px;
                    left: 0;
                    width: 0%;
                    height: 1px;
                    background: #111112;
                    transition: 0.25s ease-in-out;
                }
                &:hover {
                    color: #111112;
                    &::after {
                        width: 100%;
                    }
                }
            }
            .header-link.active {
                color: #111112;
                &::after {
                    width: 100%;
                }
            }
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 24px;
            .header-contact {
                display: flex;
                align-items: center;
                gap: 12px;
                .icon {
                    width: 20px;
                    height: 20px;
                    min-width: 20px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    img {
                        width: 100%;
                        height: 100%;
                    }
                }
                p {
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 20px;
                    color: #111112;
                }
            }
            .language {
                display: flex;
                flex-direction: column;
                align-items: start;
                position: relative;
                .lang-btn {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    .earthIcon {
                        width: 20px;
                        min-width: 20px;
                        height: 20px;
                    }
                    p {
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 20px;
                        color: #111112;
                    }
                    .downIcon {
                        width: 24px;
                        min-width: 24px;
                        height: 24px;
                        transition: 0.25s ease-in-out;
                    }
                }
                .other-languages {
                    display: flex;
                    flex-direction: column;
                    align-items: start;
                    width: 100%;
                    position: absolute;
                    z-index: 13;
                    left: 0;
                    top: 40px;
                    padding: 12px;
                    background: #fff;
                    border-radius: 12px;
                    gap: 8px;
                    transition: 0.25s ease-in-out;
                    opacity: 0;
                    visibility: hidden;
                    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
                    .lang-item {
                        font-size: 14px;
                        line-height: 20px;
                        color: #111112;
                        font-weight: 400;
                        width: 100%;
                        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
                        text-align: center;
                        transition: 0.25s ease-in-out;
                        padding-bottom: 8px;
                        &:hover {
                            color: #f17322;
                        }
                        &:last-child {
                            border-bottom: none;
                            padding-bottom: 0;
                        }
                    }
                }
            }
            .language.active {
                .lang-btn {
                    .downIcon {
                        transform: rotate(180deg);
                    }
                }
                .other-languages {
                    top: 30px;
                    opacity: 1;
                    visibility: visible;
                }
            }
        }
    }
}
nav {
    max-width: 1440px;
    width: 100%;
    margin: 10px auto 0;
    .navbar-container {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
        padding: 10px 40px;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 40px;
        .logo {
            min-width: 100px;
            width: 100px;
            height: 100px;

            display: flex;
            align-items: center;
            justify-content: center;
            img {
                object-fit: contain;
                width: 100%;
                height: 100%;
            }
        }
        .navbar-links {
            display: flex;
            align-items: center;
            gap: 24px;
            .link-menu {
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                padding: 25px 0;
                .menu-main-link {
                    display: flex;
                    align-items: center;
                    gap: 4px;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 24px;
                    color: #111112;
                    position: relative;
                    img {
                        width: 24px;
                        height: 24px;
                        min-width: 24px;
                        transition: 0.25s ease-in-out;
                    }
                    &::after {
                        content: "";
                        position: absolute;
                        bottom: -4px;
                        left: 0;
                        width: 0%;
                        height: 1px;
                        background: #000;
                        transition: 0.25s ease-in-out;
                    }
                }
                .sub-menu {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    position: absolute;
                    gap: 6px;
                    padding: 12px;
                    border-radius: 12px;
                    width: max-content;
                    min-width: 200px;
                    background: #fff;
                    z-index: 2;
                    top: 80px;
                    opacity: 0;
                    visibility: hidden;
                    transition: 0.25s ease-in-out;
                    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
                    z-index: 10;
                    .sub-menu-link {
                        width: 100%;
                        font-size: 16px;
                        line-height: 24px;
                        color: #111112;
                        font-weight: 400;
                        padding-bottom: 6px;
                        transition: 0.25s ease-in-out;
                        &:hover {
                            color: #f17322;
                        }
                    }
                }
                &:hover {
                    .menu-main-link {
                        img {
                            transform: rotate(180deg);
                        }
                        &::after {
                            width: 100%;
                        }
                    }
                    .sub-menu {
                        top: 70px;
                        opacity: 1;
                        visibility: visible;
                    }
                }
            }
            .navbar-link {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #000;
                position: relative;
                &::after {
                    content: "";
                    position: absolute;
                    bottom: -4px;
                    left: 0;
                    width: 0%;
                    height: 1px;
                    background: #000;
                    transition: 0.25s ease-in-out;
                }
                &:hover {
                    &::after {
                        width: 100%;
                    }
                }
            }
        }
        .nav-contact {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 400;
            padding: 12px 24px;
            font-size: 16px;
            line-height: 24px;
            color: #fff;
            background: #f17322;
            border-radius: 20px;
            transition: 0.25s ease-in-out;
            img {
                width: 24px;
                height: 24px;
                min-width: 24px;
            }
            &:hover {
                background: #f19e22;
            }
        }
        .hamburger {
            display: none;
            width: 24px;
            height: 24px;
            min-width: 24px;
            align-items: center;
            justify-content: center;
            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}
.mobileMenu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 13;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: start;
    justify-content: end;
    transition: 0.3s ease-in-out;
    .mobileMenu {
        width: 450px;
        height: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        overflow-y: auto;
        .mobileMenu-head {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            .logo {
                width: 80px;
                min-width: 80px;
                display: flex;
                align-items: center;
                justify-content: center;
                img {
                    width: 100%;
                    height: 100%;
                }
            }
            .closeMenu {
                width: 24px;
                height: 24px;
                min-width: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                img {
                    width: 100%;
                    height: 100%;
                }
            }
        }
        .mobile-lang {
            margin-top: 40px;
            display: flex;
            align-items: center;
            gap: 30px;
            .mobile-lang-item {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #111112;
            }
            .seperate {
                width: 1px;
                height: 14px;
                display: grid;
                background: #f17322;
            }
        }
        .mobileMenu-links {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
            gap: 24px;
            .mobileMenu-link {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #111112;
            }
            .link-menu {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
                .menu-main {
                    display: flex;
                    align-items: center;
                    gap: 4px;
                    .main-link {
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        color: #111112;
                    }
                    .menu-drop-btn {
                        width: 24px;
                        height: 24px;
                        min-width: 24px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        transition: 0.3s ease-in-out;
                        img {
                            width: 100%;
                            height: 100%;
                        }
                    }
                }
                .menu-subMenu {
                    display: none;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 10px;
                    padding-left: 20px;
                    .subMenu-link {
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        color: #111112;
                    }
                }
            }
            .link-menu.active {
                .menu-main {
                    .menu-drop-btn {
                        transform: rotate(180deg);
                    }
                }
                .menu-subMenu {
                    display: flex;
                }
            }
        }
        .mobileMenu-contact {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 24px;
            .mobileMenu-contact-item {
                display: flex;
                align-items: center;
                gap: 12px;
                .icon {
                    width: 20px;
                    height: 20px;
                    min-width: 20px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    img {
                        width: 100%;
                        height: 100%;
                    }
                }
                p {
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 20px;
                    color: #111112;
                }
            }
        }
    }
}
.mobileMenu-overlay.active {
    right: 0;
}
.home-hero {
    max-width: 1440px;
    width: 100%;
    margin: 16px auto 0;
    .home-hero-main {
        width: 100%;
        height: 600px;
        border-radius: 20px;
        position: relative;
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            filter: brightness(74%);
        }
        .home-hero-content {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            position: absolute;
            top: 0;
            left: 0;
            display: flex;
            align-items: flex-start;
            flex-direction: column;
            justify-content: center;
            padding: 40px 80px;
            .hero-title {
                font-weight: 600;
                font-size: 70px;
                line-height: 100px;
                max-width: 700px;
                color: #fff;
                span {
                    color: #f17322;
                }
            }
            .hero-subtitle {
                margin-top: 12px;
                font-weight: 400;
                font-size: 18px;
                line-height: 28px;
                color: rgba(255, 255, 255, 0.85);
                max-width: 600px;
            }
            .hero-link {
                margin-top: 30px;
                display: flex;
                align-items: center;
                gap: 14px;
                transition: 0.25s ease-in-out;
                padding: 12px 24px;
                background: #37393f;
                border-radius: 20px;
                p {
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 24px;
                    color: #fff;
                    transition: 0.25s ease-in-out;
                }
                img {
                    width: 22px;
                    height: 22px;
                    min-width: 22px;
                    transition: 0.25s ease-in-out;
                }
                &:hover {
                    background: #f19e22;
                    p {
                        transform: translateX(-4px);
                    }
                    img {
                        transform: rotate(20deg);
                    }
                }
            }
        }
    }
}
.home-about {
    margin: 120px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    width: 100%;
    gap: 40px;
    .home-about-images {
        max-width: 660px;
        width: 100%;
        min-width: 600px;
        height: 470px;
        position: relative;
        .image-large {
            max-width: 550px;
            width: 100%;
            height: 390px;
            border-radius: 20px;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;
            }
        }
        .image-small {
            max-width: 410px;
            width: 100%;
            height: 290px;
            border-radius: 14px;
            border: 6px solid #fff;
            position: absolute;
            bottom: 0;
            right: 0;
            z-index: 2;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;
            }
        }
    }
    .home-about-content {
        max-width: 600px;
        .small-title {
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #111112;
        }
        .section-title {
            margin-top: 2px;
            font-weight: 600;
            font-size: 36px;
            line-height: 54px;
            color: #f17322;
        }
        .description {
            width: 100%;
            margin-top: 34px;
            ul {
                padding-left: 18px;
            }
            p,
            li {
                font-weight: 400;
                font-size: 16px;
                color: #505050;
                line-height: 24px;
            }
        }
        .more {
            margin-top: 30px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: 0.25s ease-in-out;
            padding: 12px 24px;
            background: #f17322;
            border-radius: 20px;
            width: max-content;
            p {
                font-weight: 500;
                font-size: 16px;
                line-height: 24px;
                color: #fff;
                transition: 0.25s ease-in-out;
            }
            img {
                width: 22px;
                height: 22px;
                min-width: 22px;
                transition: 0.25s ease-in-out;
            }
            &:hover {
                background: #f19e22;
                p {
                    transform: translateX(-4px);
                }
                img {
                    transform: rotate(20deg);
                }
            }
        }
    }
}
.parnters-container {
    max-width: 1440px;
    width: 100%;
    margin: 80px auto 0;
    .partners-slide {
        width: 100%;
        .partner-item {
            width: 204px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ededed;
            background: #fff;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                max-width: 140px;
                max-height: 60px;
                width: auto;
                height: auto;
                object-fit: contain;
            }
        }
    }
}
.home-services {
    margin-top: 120px;
    width: 100%;
    background: #efefef;
    padding: 60px 0;
    .home-services-container {
        max-width: 1440px;
        width: 100%;
        margin: 0 auto;
        .home-services-head {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            .head-left {
                .small-title {
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 24px;
                    color: #111112;
                }
                .section-title {
                    margin-top: 2px;
                    font-weight: 600;
                    font-size: 36px;
                    line-height: 54px;
                    color: #f17322;
                }
            }
            .more {
                display: flex;
                align-items: center;
                gap: 10px;
                font-weight: 400;
                font-size: 14px;
                line-height: 21px;
                color: #000;
                opacity: 0.7;
                transition: 0.25s ease-in-out;
                padding-right: 10px;
                text-wrap: nowrap;
                img {
                    width: 20px;
                    height: 20px;
                    min-width: 20px;
                    filter: brightness(0);
                    opacity: 0.7;
                    transition: 0.25s ease-in-out;
                }
                &:hover {
                    color: #f17322;
                    opacity: 1;
                    img {
                        filter: none;
                        opacity: 1;
                        transform: translateX(10px);
                    }
                }
            }
        }
        .home-services-cards {
            margin-top: 120px;
            width: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 120px 20px;
            .service-card {
                width: 100%;
                box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
                background: #fff;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                padding: 30px;
                border-radius: 20px;
                .icon {
                    margin-top: -84px;
                    width: 106px;
                    height: 106px;
                    min-width: 106px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: #37393f;
                    border-radius: 20px;
                    transition: 0.25s ease-in-out;
                    img {
                        width: 50px;
                        height: 50px;
                    }
                }
                .service-name {
                    margin-top: 30px;
                    font-weight: 500;
                    font-size: 24px;
                    line-height: 30px;
                    color: #111112;
                }
                .description {
                    margin-top: 14px;
                    display: -webkit-box;
                    -webkit-line-clamp: 3;
                    height: 72px;
                    overflow: hidden;
                    -webkit-box-orient: vertical;
                    p {
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        color: #7e7e7e;
                    }
                }
                .more {
                    margin-top: 24px;
                    display: flex;
                    align-items: center;
                    transition: 0.25s ease-in-out;
                    width: 24px;
                    min-width: 24px;
                    overflow: hidden;
                    justify-content: space-between;
                    p {
                        font-weight: 400;
                        max-width: 0;
                        font-size: 16px;
                        line-height: 24px;
                        color: #f17322;
                        transition: 0.25s ease-in-out;
                        overflow: hidden;
                    }
                    img {
                        width: 24px;
                        height: 24px;
                        min-width: 24px;
                        filter: brightness(0);
                        opacity: 0.8;
                        transition: 0.25s ease-in-out;
                    }
                }
                &:hover {
                    .icon {
                        background: #f17322;
                    }
                    .more {
                        width: 84px;
                        p {
                            max-width: calc(84px - 24px);
                        }
                        img {
                            filter: none;
                            opacity: 1;
                        }
                    }
                }
            }
        }
    }
}
.home-blog {
    max-width: 1440px;
    width: 100%;
    margin: 120px auto 0;
    .home-blog-head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        .head-left {
            .small-title {
                font-weight: 500;
                font-size: 16px;
                line-height: 24px;
                color: #111112;
            }
            .section-title {
                margin-top: 2px;
                font-weight: 600;
                font-size: 36px;
                line-height: 54px;
                color: #f17322;
            }
        }
        .more {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 400;
            font-size: 14px;
            line-height: 21px;
            color: #000;
            opacity: 0.7;
            transition: 0.25s ease-in-out;
            padding-right: 10px;
            text-wrap: nowrap;
            img {
                width: 20px;
                height: 20px;
                min-width: 20px;
                filter: brightness(0);
                opacity: 0.7;
                transition: 0.25s ease-in-out;
            }
            &:hover {
                color: #f17322;
                opacity: 1;
                img {
                    filter: none;
                    opacity: 1;
                    transform: translateX(10px);
                }
            }
        }
    }
    .home-blog-slide {
        width: 100%;
        margin-top: 60px;
        .blog-card {
            width: 433px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            border-radius: 20px;
            box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
            background: #fff;
            .card-image {
                width: 100%;
                height: 240px;
                overflow: hidden;
                border-radius: 20px 20px 0 0;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 20px 20px 0 0;
                    transition: 0.25s ease-in-out;
                }
            }
            .card-body {
                width: 100%;
                padding: 24px 20px;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                .blog-name {
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 30px;
                    color: #111112;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    height: 60px;
                    overflow: hidden;
                    -webkit-box-orient: vertical;
                }
                .description {
                    margin-top: 12px;
                    p {
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        color: #505050;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        height: 48px;
                        overflow: hidden;
                        -webkit-box-orient: vertical;
                    }
                }
                .card-body-bottom {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    width: 100%;
                    margin-top: 30px;
                    .more {
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        p {
                            font-weight: 400;
                            font-size: 16px;
                            line-height: 24px;
                            color: #f17322;
                        }
                        img {
                            width: 24px;
                            height: 24px;
                            min-width: 24px;
                            transition: 0.25s ease-in-out;
                        }
                    }
                    .share-date {
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 21px;
                        color: #7e7e7e;
                    }
                }
            }
            &:hover {
                .card-image {
                    img {
                        transform: scale(1.1);
                    }
                }
                .card-body {
                    .card-body-bottom {
                        .more {
                            img {
                                transform: translateX(10px);
                            }
                        }
                    }
                }
            }
        }
    }
}
.home-portfolio {
    max-width: 1440px;
    width: 100%;
    margin: 120px auto 0;
    .home-portfolio-head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        .head-left {
            .small-title {
                font-weight: 500;
                font-size: 16px;
                line-height: 24px;
                color: #111112;
            }
            .section-title {
                margin-top: 2px;
                font-weight: 600;
                font-size: 36px;
                line-height: 54px;
                color: #f17322;
            }
        }
        .more {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 400;
            font-size: 14px;
            line-height: 21px;
            color: #000;
            opacity: 0.7;
            transition: 0.25s ease-in-out;
            padding-right: 10px;
            text-wrap: nowrap;
            img {
                width: 20px;
                height: 20px;
                min-width: 20px;
                filter: brightness(0);
                opacity: 0.7;
                transition: 0.25s ease-in-out;
            }
            &:hover {
                color: #f17322;
                opacity: 1;
                img {
                    filter: none;
                    opacity: 1;
                    transform: translateX(10px);
                }
            }
        }
    }
    .home-portfolio-items {
        width: 100%;
        margin-top: 60px;
        display: flex;
        align-items: start;
        gap: 20px;
        .home-portfolio-item {
            width: 206px;
            min-width: 206px;
            height: 530px;
            position: relative;
            border-radius: 20px;
            transition: 0.25s ease-in-out;
            overflow: hidden;
            .portfolio-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;
                filter: brightness(80%);
                transition: 0.25s ease-in-out;
            }
            .portfolioItemBtn {
                bottom: 20px;
                left: 50%;
                position: absolute;
                z-index: 99;
                transform: translateX(-50%);
                width: 44px;
                height: 44px;
                min-width: 44px;
                display: flex;
                align-items: center;
                border-radius: 100px;
                justify-content: center;
                transition: 0.25s ease-in-out;
                img {
                    width: 100%;
                    height: 100%;
                    border-radius: 100px;
                }
            }
            .item-content {
                width: 0;
                overflow: hidden;
                top: 0;
                left: 0;
                position: absolute;
                z-index: 2;
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                padding: 50px;
                opacity: 0;
                justify-content: end;
                transition: 0.25s ease-in-out;
                .portfolio-title {
                    font-weight: 400;
                    font-size: 30px;
                    line-height: 45px;
                    color: #fff;
                }
                .description {
                    margin-top: 10px;
                    p {
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        color: rgba(255, 255, 255, 0.8);
                    }
                }
                .more {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    margin-top: 16px;
                    p {
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        color: #fff;
                    }
                    img {
                        width: 24px;
                        height: 24px;
                        min-width: 24px;
                        filter: brightness(1000);
                    }
                }
            }
            &:hover {
                .portfolio-image {
                    transform: scale(1.1);
                }
            }
        }
        .home-portfolio-item.active {
            max-width: 100%;
            width: 100%;
            .portfolioItemBtn {
                transform: scale(0);
            }
            .item-content {
                width: 100%;
                opacity: 1;
                overflow: auto;
            }
        }
    }
}
@keyframes hammerSwing {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
@keyframes floatBall {
    0% {
        bottom: 80px;
        transform: translateX(-30%) translateY(0);
    }
    50% {
        bottom: 140px;
        transform: translateX(-20%) translateY(0);
    }
    100% {
        bottom: 80px;
        transform: translateX(-30%) translateY(0);
    }
}
.home-order-container {
    max-width: 1440px;
    width: 100%;
    margin: 200px auto 0;
    .home-order {
        width: 100%;
        padding: 50px;
        background: #37393f;
        border-radius: 20px;
        position: relative;
        .home-order-content {
            max-width: 580px;
            display: flex;
            flex-direction: column;
            .section-title {
                font-weight: 600;
                font-size: 36px;
                line-height: 54px;
                color: #fff;
            }
            .description {
                width: 100%;
                margin-top: 16px;
                ul {
                    padding-left: 18px;
                }
                p,
                li {
                    font-weight: 400;
                    font-size: 16px;
                    color: rgba(255, 255, 255, 0.9);
                    line-height: 24px;
                }
            }
            .more {
                margin-top: 24px;
                display: flex;
                align-items: center;
                gap: 14px;
                transition: 0.25s ease-in-out;
                padding: 12px 24px;
                background: #f17322;
                border-radius: 20px;
                width: max-content;
                p {
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 24px;
                    color: #fff;
                    transition: 0.25s ease-in-out;
                }
                img {
                    width: 22px;
                    height: 22px;
                    min-width: 22px;
                    transition: 0.25s ease-in-out;
                }
                &:hover {
                    background: #f19e22;
                    p {
                        transform: translateX(-4px);
                    }
                    img {
                        transform: rotate(20deg);
                    }
                }
            }
        }
        .home-order-image {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 365px;
            .order-image {
                width: 100%;
                height: 100%;
                animation: hammerSwing 3s ease-in-out infinite;
                transform-origin: bottom center;
            }
            .glassBall {
                width: 102px;
                height: 102px;
                position: absolute;
                bottom: 80px;
                left: 50%;
                transform: translateX(-30%);
                border-radius: 100px;
                border: 1px solid #fff;
                box-shadow: 0px 1.79px 13.51px 4.04px rgba(255, 255, 255, 0.52)
                    inset;
                backdrop-filter: blur(3px);
                animation: floatBall 6s infinite ease-in-out;
            }
        }
    }
}
.review-container {
    max-width: 1440px;
    width: 100%;
    margin: 120px auto 0;
    position: relative;
    .review-head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        .head-left {
            .small-title {
                font-weight: 500;
                font-size: 16px;
                line-height: 24px;
                color: #111112;
            }
            .section-title {
                margin-top: 2px;
                font-weight: 600;
                font-size: 36px;
                line-height: 54px;
                color: #f17322;
            }
        }
    }
    .review-slide {
        width: 100%;
        margin-top: 60px;
        position: initial;
        .review-item {
            width: 433px;
            border: 1px solid #e9e9e9;
            border-radius: 20px;
            padding: 30px 24px;
            background: #f7f7f7;
            height: auto;
            .review-item-head {
                width: 100%;
                display: flex;
                align-items: center;
                gap: 16px;
                .review-image {
                    width: 62px;
                    height: 62px;
                    min-width: 62px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 100px;
                    img {
                        width: 100%;
                        height: 100%;
                        border-radius: 100px;
                        object-fit: cover;
                    }
                }
                .review-info {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 4px;
                    .owner-name {
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 24px;
                        color: #111112;
                    }
                    .owner-position {
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        color: #7e7e7e;
                    }
                }
            }
            .description {
                margin-top: 20px;
                p {
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 24px;
                    color: #505050;
                }
            }
        }
        .swiper-slide-active {
            background: #fff;
            border-color: #fff;
        }
        .swiper-button-next,
        .swiper-button-prev {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 100px;
            background: #f17322;
            margin: 0;
            top: auto;
            bottom: 86px;
            &::after {
                color: #fff;
                font-size: 16px;
            }
        }
        .swiper-button-next {
            right: 0;
        }
        .swiper-button-prev {
            left: 0;
        }
        &::after {
            display: none;
        }
        &::before {
            display: none;
        }
    }
}
footer {
    width: 100%;
    margin-top: 120px;
    padding-top: 50px;
    background: #111112;
    position: relative;
    .footer-container {
        max-width: 1440px;
        width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        .footer-main {
            width: 100%;
            display: flex;
            align-items: start;
            justify-content: space-between;
            gap: 20px;
            .footer-logo-text {
                max-width: 270px;
                width: 100%;
                .logo {
                    width: 136px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    img {
                        width: 100%;
                        height: 100%;
                    }
                }
                .footer-description {
                    width: 100%;
                    margin-top: 28px;
                    p {
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        color: rgba(255, 255, 255, 0.6);
                    }
                }
            }
            .quick-links {
                margin-top: 34px;
                min-width: 300px;
                width: 300px;
                .quick-links-title {
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 30px;
                    color: #ffffff;
                }
                .links {
                    margin-top: 24px;
                    width: 100%;
                    gap: 20px;
                    display: grid;
                    grid-template-columns: repeat(2, max-content);
                    justify-content: space-between;
                    .quick-link-item {
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        color: rgba(255, 255, 255, 0.6);
                    }
                }
            }
            .last-blogs {
                margin-top: 34px;
                min-width: 230px;
                width: 230px;
                .last-blogs-title {
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 30px;
                    color: #ffffff;
                }
                .links {
                    margin-top: 24px;
                    width: 100%;
                    gap: 20px;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    .link-item {
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        color: rgba(255, 255, 255, 0.6);
                        display: flex;
                        align-items: flex-start;
                        gap: 8px;
                        .link-icon {
                            width: 14px;
                            min-width: 14px;
                            height: 14px;
                            margin-top: 5px;
                        }
                    }
                }
            }
            .footer-contact {
                margin-top: 34px;
                min-width: 280px;
                width: 280px;
                .footer-contact-title {
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 30px;
                    color: #ffffff;
                }
                .footer-contact-items {
                    margin-top: 24px;
                    width: 100%;
                    gap: 20px;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    .footer-contact-item {
                        display: flex;
                        align-items: center;
                        gap: 12px;
                        .icon {
                            width: 20px;
                            height: 20px;
                            min-width: 20px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            img {
                                width: 100%;
                                height: 100%;
                            }
                        }
                        p {
                            font-weight: 400;
                            font-size: 14px;
                            line-height: 20px;
                            color: rgba(255, 255, 255, 0.8);
                        }
                    }
                }
            }
        }
        .footer-bottom {
            width: 100%;
            margin-top: 120px;
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 15px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            .all-right-reserved {
                font-weight: 400;
                font-size: 14px;
                line-height: 21px;
                color: rgba(255, 255, 255, 0.5);
            }
            .privacy_policy {
                font-weight: 400;
                font-size: 14px;
                line-height: 21px;
                color: rgba(255, 255, 255, 0.5);
            }
            .socials {
                margin-left: auto;
                display: flex;
                align-items: center;
                gap: 16px;
                .social-item {
                    width: 50px;
                    height: 50px;
                    min-width: 50px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 100px;
                    background: rgba(255, 255, 255, 0.1);
                    img {
                        width: 24px;
                        height: 24px;
                        min-width: 24px;
                    }
                }
            }
        }
    }
    .footerDecoration {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 1;
        max-width: 895px;
        width: 100%;
        opacity: 0.1;
    }
}
.all-service-container {
    margin: 50px auto 0;
    max-width: 1440px;
    width: 100%;
    .breadCrumb {
        display: flex;
        align-items: center;
        gap: 6px;
        .breadCrumb-item {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #5b5b5b;
        }
        .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                width: 100%;
                height: 100%;
            }
        }
        .breadCrumb-item.active {
            color: #f17322;
        }
    }
    .banner {
        width: 100%;
        height: 200px;
        margin-top: 50px;
        border-radius: 20px;
        position: relative;
        img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            object-fit: cover;
            filter: brightness(70%);
        }
        .banner-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: 600;
            font-size: 40px;
            line-height: 60px;
            color: #fff;
            padding: 20px;
            z-index: 2;
            width: 100%;
            text-align: center;
        }
    }
    .all-services {
        margin-top: 134px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 120px 20px;
        .service-card {
            width: 100%;
            box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
            background: #fff;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 30px;
            border-radius: 20px;
            .icon {
                margin-top: -84px;
                width: 106px;
                height: 106px;
                min-width: 106px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #37393f;
                border-radius: 20px;
                transition: 0.25s ease-in-out;
                img {
                    width: 50px;
                    height: 50px;
                }
            }
            .service-name {
                margin-top: 30px;
                font-weight: 500;
                font-size: 24px;
                line-height: 30px;
                color: #111112;
            }
            .description {
                margin-top: 14px;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                height: 72px;
                overflow: hidden;
                -webkit-box-orient: vertical;
                p {
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 24px;
                    color: #7e7e7e;
                }
            }
            .more {
                margin-top: 24px;
                display: flex;
                align-items: center;
                transition: 0.25s ease-in-out;
                width: 24px;
                min-width: 24px;
                overflow: hidden;
                justify-content: space-between;
                p {
                    font-weight: 400;
                    max-width: 0;
                    font-size: 16px;
                    line-height: 24px;
                    color: #f17322;
                    transition: 0.25s ease-in-out;
                    overflow: hidden;
                }
                img {
                    width: 24px;
                    height: 24px;
                    min-width: 24px;
                    filter: brightness(0);
                    opacity: 0.8;
                    transition: 0.25s ease-in-out;
                }
            }
            &:hover {
                .icon {
                    background: #f17322;
                }
                .more {
                    width: 84px;
                    p {
                        max-width: calc(84px - 24px);
                    }
                    img {
                        filter: none;
                        opacity: 1;
                    }
                }
            }
        }
    }
    .services-content {
        margin-top: 120px;
        width: 100%;
        background: #ffffff;
        box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
        border-radius: 20px;
        padding: 40px;
        .services-content-title {
            font-weight: 500;
            font-size: 36px;
            line-height: 50px;
            color: #111112;
        }
        .services-content-description {
            margin-top: 16px;
            ul {
                padding-left: 18px;
            }
            p,
            li {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #505050;
            }
            a {
                color: #f17322;
            }
        }
    }
}
.all-blog-container {
    margin: 50px auto 0;
    max-width: 1440px;
    width: 100%;
    .breadCrumb {
        display: flex;
        align-items: center;
        gap: 6px;
        .breadCrumb-item {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #5b5b5b;
        }
        .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                width: 100%;
                height: 100%;
            }
        }
        .breadCrumb-item.active {
            color: #f17322;
        }
    }
    .banner {
        width: 100%;
        height: 200px;
        margin-top: 50px;
        border-radius: 20px;
        position: relative;
        img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            object-fit: cover;
            filter: brightness(70%);
        }
        .banner-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: 600;
            font-size: 40px;
            line-height: 60px;
            color: #fff;
            padding: 20px;
            z-index: 2;
            width: 100%;
            text-align: center;
        }
    }
    .all-blogs {
        margin-top: 80px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 20px;
        .blog-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            border-radius: 20px;
            box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
            background: #fff;
            .card-image {
                width: 100%;
                height: 240px;
                overflow: hidden;
                border-radius: 20px 20px 0 0;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 20px 20px 0 0;
                    transition: 0.25s ease-in-out;
                }
            }
            .card-body {
                width: 100%;
                padding: 24px 20px;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                .blog-name {
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 30px;
                    color: #111112;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    height: 60px;
                    overflow: hidden;
                    -webkit-box-orient: vertical;
                }
                .description {
                    margin-top: 12px;
                    p {
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        color: #505050;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        height: 48px;
                        overflow: hidden;
                        -webkit-box-orient: vertical;
                    }
                }
                .card-body-bottom {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    width: 100%;
                    margin-top: 30px;
                    .more {
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        p {
                            font-weight: 400;
                            font-size: 16px;
                            line-height: 24px;
                            color: #f17322;
                        }
                        img {
                            width: 24px;
                            height: 24px;
                            min-width: 24px;
                            transition: 0.25s ease-in-out;
                        }
                    }
                    .share-date {
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 21px;
                        color: #7e7e7e;
                    }
                }
            }
            &:hover {
                .card-image {
                    img {
                        transform: scale(1.1);
                    }
                }
                .card-body {
                    .card-body-bottom {
                        .more {
                            img {
                                transform: translateX(10px);
                            }
                        }
                    }
                }
            }
        }
    }
    .pagination {
        margin: 80px auto 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 10px;
        .pagination-item,
        .pagination-points {
            width: 30px;
            height: 32px;
            min-width: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #111112;
            transition: 0.25s ease-in-out;
        }
        .pagination-item:hover {
            color: #f17322;
        }
        .pagination-item.active {
            background: #f17322;
            color: #fff;
            &:hover {
                background: #f19e22;
                color: #fff;
            }
        }
    }
}
.all-portfolio-container {
    margin: 50px auto 0;
    max-width: 1440px;
    width: 100%;
    .breadCrumb {
        display: flex;
        align-items: center;
        gap: 6px;
        .breadCrumb-item {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #5b5b5b;
        }
        .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                width: 100%;
                height: 100%;
            }
        }
        .breadCrumb-item.active {
            color: #f17322;
        }
    }
    .banner {
        width: 100%;
        height: 200px;
        margin-top: 50px;
        border-radius: 20px;
        position: relative;
        img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            object-fit: cover;
            filter: brightness(70%);
        }
        .banner-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: 600;
            font-size: 40px;
            line-height: 60px;
            color: #fff;
            padding: 20px;
            z-index: 2;
            width: 100%;
            text-align: center;
        }
    }
    .all-portfolio {
        margin-top: 80px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 20px;
        .portfolio-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            .card-image {
                width: 100%;
                height: 400px;
                overflow: hidden;
                border-radius: 20px;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 20px;
                    transition: 0.25s ease-in-out;
                    filter: brightness(80%);
                }
            }
            .card-body {
                margin-top: 20px;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                .portfolio-title {
                    font-weight: 400;
                    font-size: 30px;
                    line-height: 45px;
                    color: #111112;
                    display: -webkit-box;
                    -webkit-line-clamp: 1;
                    height: 45px;
                    overflow: hidden;
                    -webkit-box-orient: vertical;
                }
                .description {
                    margin-top: 12px;
                    p {
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        color: #5b5b5b;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        height: 48px;
                        overflow: hidden;
                        -webkit-box-orient: vertical;
                    }
                }
                .more {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 24px;
                    height: 24px;
                    min-width: 24px;
                    margin-top: 20px;
                    img {
                        width: 100%;
                        height: 100%;
                    }
                }
            }
            &:hover {
                .card-image {
                    img {
                        transform: scale(1.1);
                    }
                }
            }
        }
    }
    .pagination {
        margin: 80px auto 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 10px;
        .pagination-item,
        .pagination-points {
            width: 30px;
            height: 32px;
            min-width: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #111112;
            transition: 0.25s ease-in-out;
        }
        .pagination-item:hover {
            color: #f17322;
        }
        .pagination-item.active {
            background: #f17322;
            color: #fff;
            &:hover {
                background: #f19e22;
                color: #fff;
            }
        }
    }
}
.all-special-campaing-container {
    margin: 50px auto 0;
    max-width: 1440px;
    width: 100%;
    .breadCrumb {
        display: flex;
        align-items: center;
        gap: 6px;
        .breadCrumb-item {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #5b5b5b;
        }
        .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                width: 100%;
                height: 100%;
            }
        }
        .breadCrumb-item.active {
            color: #f17322;
        }
    }
    .banner {
        margin-top: 50px;
        width: 100%;
        height: 200px;
        border-radius: 20px;
        position: relative;
        img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            object-fit: cover;
            filter: brightness(70%);
        }
        .banner-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: 600;
            font-size: 40px;
            line-height: 60px;
            color: #fff;
            padding: 20px;
            z-index: 2;
            width: 100%;
            text-align: center;
        }
    }
    .all-special-campaing {
        margin-top: 80px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 20px;
        .special-campaing-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            border-radius: 20px;
            box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
            background: #fff;
            .card-image {
                width: 100%;
                height: 240px;
                overflow: hidden;
                border-radius: 20px 20px 0 0;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 20px 20px 0 0;
                    transition: 0.25s ease-in-out;
                }
            }
            .card-body {
                padding: 24px 20px;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                .special-campaing-name {
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 30px;
                    color: #111112;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    height: 60px;
                    overflow: hidden;
                    -webkit-box-orient: vertical;
                }
                .card-body-bottom {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    width: 100%;
                    margin-top: 30px;
                    .more {
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        p {
                            font-weight: 400;
                            font-size: 16px;
                            line-height: 24px;
                            color: #f17322;
                        }
                        img {
                            width: 24px;
                            height: 24px;
                            min-width: 24px;
                            transition: 0.25s ease-in-out;
                        }
                    }
                    .share-date {
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 21px;
                        color: #7e7e7e;
                    }
                }
            }
            &:hover {
                .card-image {
                    img {
                        transform: scale(1.1);
                    }
                }
                .card-body {
                    .card-body-bottom {
                        .more {
                            img {
                                transform: translateX(10px);
                            }
                        }
                    }
                }
            }
        }
    }
}
.privacy-policy-container {
    margin: 50px auto 0;
    max-width: 1440px;
    width: 100%;
    .breadCrumb {
        display: flex;
        align-items: center;
        gap: 6px;
        .breadCrumb-item {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #5b5b5b;
        }
        .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                width: 100%;
                height: 100%;
            }
        }
        .breadCrumb-item.active {
            color: #f17322;
        }
    }
    .page-title {
        margin-top: 50px;
        font-weight: 500;
        font-size: 30px;
        line-height: 45px;
        color: #111112;
    }
    .privacy-policy-description {
        margin-top: 40px;
        width: 100%;
        background: #ffffff;
        box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
        border-radius: 20px;
        padding: 40px;
        ul {
            padding-left: 18px;
        }
        p,
        li {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #505050;
        }
        a {
            color: #f17322;
        }
    }
}
.special-campaing-detail-container {
    margin: 50px auto 0;
    max-width: 1440px;
    width: 100%;
    .breadCrumb {
        display: flex;
        align-items: center;
        gap: 6px;
        .breadCrumb-item {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #5b5b5b;
        }
        .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                width: 100%;
                height: 100%;
            }
        }
        .breadCrumb-item.active {
            color: #f17322;
        }
    }
    .special-campaing-detail-head {
        margin-top: 50px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        .page-title {
            font-weight: 500;
            font-size: 30px;
            line-height: 45px;
            color: #111112;
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 16px;
            .create-date,
            .view-count {
                display: flex;
                align-items: center;
                gap: 10px;
                .icon {
                    width: 24px;
                    height: 24px;
                    min-width: 24px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    img {
                        width: 100%;
                        height: 100%;
                    }
                }
                p {
                    font-weight: 400;
                    font-size: 15px;
                    line-height: 22px;
                    color: #5b5b5b;
                }
            }
            .share {
                position: relative;
                .share-btn {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    img {
                        width: 24px;
                        height: 24px;
                        min-width: 24px;
                    }
                    p {
                        font-weight: 400;
                        font-size: 15px;
                        line-height: 22px;
                        color: #5b5b5b;
                    }
                }
                .shareList {
                    position: absolute;
                    top: 100%;
                    right: 0;
                    margin-top: 20px;
                    background: #fff;
                    border-radius: 12px;
                    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
                    padding: 8px;
                    width: 180px;
                    z-index: 20;
                    display: flex;
                    flex-direction: column;
                    opacity: 0;
                    visibility: hidden;
                    transition: 0.3s ease-in-out;
                    .shareItem {
                        padding: 10px 12px;
                        border-radius: 8px;
                        cursor: pointer;
                        font-size: 16px;
                        line-height: 24px;
                        font-weight: 400;
                        color: #111;
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        img {
                            width: 18px;
                            height: 18px;
                            min-width: 18px;
                        }
                        &:hover {
                            background: #f4f6f8;
                        }
                    }
                }
                .shareList.active {
                    visibility: visible;
                    opacity: 1;
                }
            }
        }
    }
    .special-campaing-image {
        margin-top: 40px;
        width: 100%;
        height: 470px;
        border-radius: 20px;
        img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            object-fit: cover;
        }
    }
    .special-campaing-detail-description {
        margin-top: 40px;
        width: 100%;
        background: #ffffff;
        box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
        border-radius: 20px;
        padding: 40px;
        .description-title {
            font-weight: 500;
            font-size: 20px;
            line-height: 30px;
            color: #111112;
        }
        .description {
            margin-top: 16px;
            ul {
                padding-left: 18px;
            }
            p,
            li {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #505050;
            }
            a {
                color: #f17322;
            }
        }
    }
}
.boxes-container {
    margin: 50px auto 0;
    max-width: 1440px;
    width: 100%;
    .breadCrumb {
        display: flex;
        align-items: center;
        gap: 6px;
        .breadCrumb-item {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #5b5b5b;
        }
        .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                width: 100%;
                height: 100%;
            }
        }
        .breadCrumb-item.active {
            color: #f17322;
        }
    }
    .banner {
        width: 100%;
        height: 200px;
        border-radius: 20px;
        margin-top: 50px;
        position: relative;
        img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            object-fit: cover;
            filter: brightness(70%);
        }
        .banner-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: 600;
            font-size: 40px;
            line-height: 60px;
            color: #fff;
            padding: 20px;
            z-index: 2;
            width: 100%;
            text-align: center;
        }
    }
    .all-boxes {
        margin-top: 80px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 50px 20px;
        .box-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            border-radius: 20px;
            box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
            background: #fff;
            padding: 16px;
            .card-image {
                width: 100%;
                height: 254px;
                border-radius: 20px;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 20px;
                }
            }
            .card-body {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                margin-top: 16px;
                .box-category {
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 21px;
                    color: #5b5b5b;
                }
                .box-name {
                    margin-top: 6px;
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 28px;
                    color: #111112;
                }
                .box-price {
                    margin-top: 12px;
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 30px;
                    color: #f17322;
                }
                .more {
                    margin-top: 16px;
                    width: 100%;
                    padding: 12px;
                    color: #fff;
                    background: #f17322;
                    border-radius: 20px;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 24px;
                    text-align: center;
                    transition: 0.25s ease-in-out;
                    &:hover {
                        background: #f19e22;
                    }
                }
            }
        }
    }
}
.box-detail-container {
    margin: 50px auto 0;
    max-width: 1440px;
    width: 100%;
    .breadCrumb {
        display: flex;
        align-items: center;
        gap: 6px;
        .breadCrumb-item {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #5b5b5b;
        }
        .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                width: 100%;
                height: 100%;
            }
        }
        .breadCrumb-item.active {
            color: #f17322;
        }
    }
    .box-detail-main {
        width: 100%;
        margin-top: 50px;
        display: flex;
        align-items: start;
        gap: 30px;
        .box-image {
            width: 100%;
            max-width: 750px;
            min-width: 650px;
            height: 450px;
            border-radius: 20px;
            img {
                width: 100%;
                height: 100%;
                border-radius: 20px;
                object-fit: cover;
            }
        }
        .detail-right {
            width: 100%;
            max-width: 560px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            .box-info {
                width: 100%;
                background: #fff;
                padding: 30px;
                border-radius: 16px;
                .box-category {
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 24px;
                    color: #5b5b5b;
                }
                .box-name {
                    margin-top: 10px;
                    font-weight: 500;
                    font-size: 24px;
                    line-height: 36px;
                    color: #111112;
                }
                .box-notification {
                    margin-top: 20px;
                    p {
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        color: #5b5b5b;
                    }
                }
            }
            .price-box {
                margin-top: 20px;
                width: 100%;
                background: #fff;
                padding: 30px;
                border-radius: 16px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                .price-box-left {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    span {
                        font-weight: 500;
                        font-size: 13px;
                        line-height: 20px;
                        color: #5b665a;
                    }
                    .price {
                        font-weight: 500;
                        font-size: 30px;
                        line-height: 45px;
                        color: #f17322;
                    }
                }
                .counter {
                    display: flex;
                    align-items: center;
                    gap: 20px;
                    .decrease,
                    .increase {
                        width: 40px;
                        height: 40px;
                        min-width: 40px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background: #fdf5ea;
                        border-radius: 10px;
                        img {
                            width: 24px;
                            height: 24px;
                            min-width: 24px;
                        }
                    }
                    .counter-value {
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 24px;
                        text-align: center;
                        color: #3b3b3b;
                    }
                }
            }
            .detail-contact {
                margin-top: 20px;
                display: flex;
                align-items: center;
                gap: 16px;
                width: 100%;
                .call {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    font-weight: 400;
                    padding: 12px 24px;
                    font-size: 16px;
                    line-height: 24px;
                    color: #fff;
                    background: #f17322;
                    border-radius: 20px;
                    transition: 0.25s ease-in-out;
                    min-width: 184px;
                    img {
                        width: 24px;
                        height: 24px;
                        min-width: 24px;
                    }
                    &:hover {
                        background: #f19e22;
                    }
                }
                .wp {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    font-weight: 400;
                    padding: 12px 24px;
                    font-size: 16px;
                    line-height: 24px;
                    color: #fff;
                    background: #25d366;
                    border-radius: 20px;
                    transition: 0.25s ease-in-out;
                    img {
                        width: 24px;
                        height: 24px;
                        min-width: 24px;
                    }
                    &:hover {
                        background: #1da950;
                    }
                }
            }
        }
    }
    .box-detail-description {
        margin-top: 40px;
        width: 100%;
        background: #ffffff;
        box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
        border-radius: 20px;
        padding: 40px;
        .description-title {
            font-weight: 500;
            font-size: 20px;
            line-height: 30px;
            color: #111112;
        }
        .description {
            margin-top: 16px;
            ul {
                padding-left: 18px;
            }
            p,
            li {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #505050;
            }
            a {
                color: #f17322;
            }
        }
    }
}
.contact-container {
    margin: 16px auto 0;
    max-width: 1440px;
    width: 100%;
    .banner {
        width: 100%;
        height: 200px;
        border-radius: 20px;
        position: relative;
        img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            object-fit: cover;
            filter: brightness(70%);
        }
        .banner-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: 600;
            font-size: 40px;
            line-height: 60px;
            color: #fff;
            padding: 20px;
            z-index: 2;
            width: 100%;
            text-align: center;
        }
    }
    .contact-main-box {
        width: 100%;
        margin-top: 80px;
        background: #ffffff;
        box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
        border-radius: 20px;
        padding: 50px;
        .box-title {
            font-weight: 500;
            font-size: 36px;
            line-height: 54px;
            color: #111112;
        }
        .contact-main {
            margin-top: 40px;
            width: 100%;
            display: grid;
            grid-template-columns: minmax(0, 610px) minmax(0, 540px);
            justify-content: space-between;
            gap: 40px;
            .contact-form {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                input,
                select,
                textarea {
                    background: #f9f9f9;
                    border: 1px solid #e0e0e0;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 24px;
                    border-radius: 20px;
                    color: #111112;
                    width: 100%;
                    padding: 12px 20px;
                    &::placeholder {
                        color: #5b5b5b;
                    }
                }
                textarea {
                    resize: none;
                    height: 150px;
                }
                .submitContact {
                    margin-top: 20px;
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-weight: 400;
                    padding: 12px 24px;
                    font-size: 16px;
                    line-height: 24px;
                    color: #fff;
                    background: #f17322;
                    border-radius: 20px;
                    transition: 0.25s ease-in-out;
                    &:hover {
                        background: #f19e22;
                    }
                }
            }
            .contac-info {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                .contact-info-item {
                    width: 100%;
                    display: flex;
                    align-items: flex-start;
                    gap: 20px;
                    padding: 24px;
                    border: 1px solid rgba(241, 115, 34, 0.05);
                    box-shadow: 2px 2px 8px 0px rgba(241, 115, 34, 0.2);
                    border-radius: 20px;
                    .icon {
                        width: 32px;
                        height: 32px;
                        min-width: 32px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        img {
                            width: 100%;
                            height: 100%;
                        }
                    }
                    .item-body {
                        width: 100%;
                        display: flex;
                        flex-direction: column;
                        align-items: flex-start;
                        gap: 4px;
                        span {
                            font-weight: 400;
                            font-size: 14px;
                            line-height: 21px;
                            color: #7e7e7e;
                        }
                        p,
                        a {
                            font-weight: 400;
                            font-size: 16px;
                            line-height: 24px;
                            color: #111112;
                        }
                    }
                }
                .wp {
                    margin-top: auto;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    font-weight: 400;
                    padding: 12px 28px;
                    font-size: 16px;
                    line-height: 24px;
                    color: #fff;
                    background: #25d366;
                    border-radius: 20px;
                    transition: 0.25s ease-in-out;
                    img {
                        width: 24px;
                        height: 24px;
                        min-width: 24px;
                    }
                    &:hover {
                        background: #1da950;
                    }
                }
            }
        }
    }
    .map {
        width: 100%;
        border-radius: 20px;
        margin-top: 50px;
        height: 500px;
        iframe {
            width: 100%;
            height: 100%;
            border-radius: 20px;
        }
    }
}
.portfolio-detail-container {
    margin: 50px auto 0;
    max-width: 1440px;
    width: 100%;
    .breadCrumb {
        display: flex;
        align-items: center;
        gap: 6px;
        .breadCrumb-item {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #5b5b5b;
        }
        .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                width: 100%;
                height: 100%;
            }
        }
        .breadCrumb-item.active {
            color: #f17322;
        }
    }
    .portfolio-detail-head {
        margin-top: 50px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        .page-title {
            font-weight: 500;
            font-size: 30px;
            line-height: 45px;
            color: #111112;
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 16px;
            .create-date,
            .view-count {
                display: flex;
                align-items: center;
                gap: 10px;
                .icon {
                    width: 24px;
                    height: 24px;
                    min-width: 24px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    img {
                        width: 100%;
                        height: 100%;
                    }
                }
                p {
                    font-weight: 400;
                    font-size: 15px;
                    line-height: 22px;
                    color: #5b5b5b;
                }
            }
            .share {
                position: relative;
                .share-btn {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    img {
                        width: 24px;
                        height: 24px;
                        min-width: 24px;
                    }
                    p {
                        font-weight: 400;
                        font-size: 15px;
                        line-height: 22px;
                        color: #5b5b5b;
                    }
                }
                .shareList {
                    position: absolute;
                    top: 100%;
                    right: 0;
                    margin-top: 20px;
                    background: #fff;
                    border-radius: 12px;
                    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
                    padding: 8px;
                    width: 180px;
                    z-index: 20;
                    display: flex;
                    flex-direction: column;
                    opacity: 0;
                    visibility: hidden;
                    transition: 0.3s ease-in-out;
                    .shareItem {
                        padding: 10px 12px;
                        border-radius: 8px;
                        cursor: pointer;
                        font-size: 16px;
                        line-height: 24px;
                        font-weight: 400;
                        color: #111;
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        img {
                            width: 18px;
                            height: 18px;
                            min-width: 18px;
                        }
                        &:hover {
                            background: #f4f6f8;
                        }
                    }
                }
                .shareList.active {
                    visibility: visible;
                    opacity: 1;
                }
            }
        }
    }
    .portfolio-detail-image {
        margin-top: 40px;
        width: 100%;
        height: 470px;
        border-radius: 20px;
        overflow: hidden;
        img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            object-fit: cover;
        }
    }
    .short-info-box {
        margin-top: 20px;
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px 40px;
        padding: 24px 30px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
        .short-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            span {
                font-weight: 500;
                font-size: 15px;
                line-height: 24px;
                color: #111112;
            }
            p {
                font-weight: 400;
                font-size: 15px;
                line-height: 24px;
                color: #5b5b5b;
            }
        }
    }
    .portfolio-detail-description {
        margin-top: 40px;
        width: 100%;
        background: #ffffff;
        box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
        border-radius: 20px;
        padding: 40px;
        .description-title {
            font-weight: 500;
            font-size: 20px;
            line-height: 30px;
            color: #111112;
        }
        .description {
            margin-top: 16px;
            ul {
                padding-left: 18px;
            }
            p,
            li {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #505050;
            }
            a {
                color: #f17322;
            }
        }
    }
    .portfolio-gallery {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 50px;
        .portfolio-gallery-item {
            width: 100%;
            height: 280px;
            border-radius: 20px;
            position: relative;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;
                filter: brightness(80%);
            }
            .view-all {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                padding: 10px 20px;
                display: none;
                align-items: center;
                justify-content: center;
                gap: 10px;
                background: rgba(153, 163, 180, 0.8);
                border-radius: 16px;
                z-index: 2;
                transition: 0.25s ease-in-out;
                p {
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 20px;
                    color: #fff;
                    text-wrap: nowrap;
                }
                img {
                    width: 24px;
                    min-width: 24px;
                    height: 24px;
                    filter: none;
                }
                &:hover {
                    background: rgba(108, 115, 127, 0.7);
                }
            }
            &:last-child {
                .view-all {
                    display: flex;
                }
            }
            &:first-child {
                .view-all {
                    display: none;
                }
            }
        }
    }
    .hidden-images {
        position: absolute;
        width: 0;
        height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
}
.about-container {
    margin: 16px auto 0;
    max-width: 1440px;
    width: 100%;
    .banner {
        width: 100%;
        height: 200px;
        border-radius: 20px;
        position: relative;
        img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            object-fit: cover;
            filter: brightness(70%);
        }
        .banner-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: 600;
            font-size: 40px;
            line-height: 60px;
            color: #fff;
            padding: 20px;
            z-index: 2;
            width: 100%;
            text-align: center;
        }
    }
}
.why-us-wrapper {
    .why-us {
        width: 100%;
        margin-top: 120px;
        background: #efefef;
        padding: 60px 0;
        height: 100svh;
        position: sticky;
        top: 0;
        .why-us-container {
            max-width: 1440px;
            width: 100%;
            height: 100%;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            .section-title {
                font-weight: 600;
                font-size: 32px;
                line-height: 50px;
                text-align: center;
                color: #111112;
                max-width: 400px;
            }
            .sub-title {
                margin-top: 20px;
                max-width: 560px;
                p {
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 24px;
                    text-align: center;
                    color: #505050;
                }
            }
            .why-us-main {
                width: 100%;
                height: 100%;
                padding-top: 80px;
                position: relative;
                .line-indicator {
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    top: 40px;
                    bottom: 0;
                    width: 1px;
                    z-index: 2;
                    .line-track {
                        position: relative;
                        width: 1px;
                        height: 100%;
                        &::before {
                            content: "";
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: var(--line-progress, 0%);
                            background: #f17322;
                            transition: height 1.6s ease;
                        }
                        .line-dot {
                            position: absolute;
                            left: 50%;
                            transform: translate(-50%, -50%);
                            top: var(--line-progress, 0%);
                            width: 15px;
                            height: 15px;
                            border-radius: 100px;
                            background: #f17322;
                            transition: top 1.6s ease;
                            z-index: 3;
                        }
                    }
                }
                .why-us-content-slide {
                    width: 100%;
                    height: 100%;
                    margin: 0;
                    .content-item {
                        height: 100%;
                        width: 100%;
                        opacity: 0 !important;
                        transition: opacity 2s ease-in-out;
                        .content-inner {
                            padding-left: 140px;
                            max-width: 550px;
                            display: flex;
                            flex-direction: column;
                            align-items: flex-start;
                            .content-title {
                                font-weight: 500;
                                font-size: 20px;
                                line-height: 30px;
                                color: #111112;
                            }
                            .description {
                                margin-top: 16px;
                                p {
                                    font-weight: 400;
                                    font-size: 16px;
                                    line-height: 24px;
                                    color: #505050;
                                }
                            }
                        }
                    }
                    .swiper-slide-active {
                        opacity: 1 !important;
                    }
                    .swiper-pagination {
                        width: max-content;
                        bottom: auto;
                        top: 70px;
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        color: #7e7e7e;
                        display: flex;
                        align-items: end;
                        .swiper-pagination-current {
                            font-weight: 400;
                            font-size: 40px;
                            line-height: 36px;
                            color: #111112;
                            padding-right: 10px;
                            margin: 0;
                        }
                    }
                }
                .why-us-images {
                    position: absolute;
                    right: 0;
                    z-index: 0;
                    top: 80px;
                    width: 550px;
                    height: calc(100svh - 392px);
                    max-height: 550px;
                    .why-us-images-slide {
                        width: 100%;
                        height: 100%;
                        border-radius: 20px;
                        .why-us-image-item {
                            width: 100%;
                            height: 100%;
                            border-radius: 20px;
                            img {
                                width: 100%;
                                object-fit: cover;
                                height: 100%;
                                border-radius: 20px;
                            }
                        }
                    }
                }
            }
            .mobile-why-us-slide {
                margin-top: 60px;
                width: 100%;
                display: none;
                .mobile-why-us-item {
                    width: 400px;
                    .item-image {
                        width: 100%;
                        height: 400px;
                        border-radius: 20px;
                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            border-radius: 20px;
                        }
                    }
                    .item-title {
                        margin-top: 16px;
                        font-size: 18px;
                        line-height: 28px;
                        color: #111112;
                    }
                    .description {
                        margin-top: 12px;
                        p {
                            font-weight: 400;
                            font-size: 14px;
                            line-height: 20px;
                            color: #505050;
                        }
                    }
                }
            }
        }
    }
}
.blog-detail-container {
    margin: 50px auto 0;
    max-width: 1440px;
    width: 100%;
    .breadCrumb {
        display: flex;
        align-items: center;
        gap: 6px;
        .breadCrumb-item {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #5b5b5b;
        }
        .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                width: 100%;
                height: 100%;
            }
        }
        .breadCrumb-item.active {
            color: #f17322;
        }
    }
    .blog-detail {
        margin-top: 50px;
        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 40px;
        .blog-detail-main {
            width: calc(100% - 450px);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            .blog-image {
                width: 100%;
                height: 500px;
                border-radius: 20px;
                img {
                    width: 100%;
                    height: 100%;
                    border-radius: 20px;
                    object-fit: cover;
                }
            }
            .share-date {
                margin-top: 6px;
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #7e7e7e;
            }
            .blog-title {
                margin-top: 20px;
                font-weight: 500;
                font-size: 36px;
                line-height: 50px;
                color: #111112;
            }
            .blog-text {
                margin-top: 16px;
                p,
                li,
                span {
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 24px;
                    color: #505050;
                }
                ul {
                    padding-left: 18px;
                }
                a {
                    color: #f19e22;
                }
                img,
                video {
                    max-width: 100%;
                    border-radius: 20px;
                }
                iframe {
                    width: 100%;
                    border: none;
                    border-radius: 20px;
                }
            }
        }
        .blog-detail-aside {
            width: 410px;
            min-width: 410px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 30px;
            .blog-search {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                .blog-search-title {
                    font-weight: 500;
                    font-size: 24px;
                    line-height: 36px;
                    color: #111112;
                }
                .blog-search-form {
                    border: 1px solid #d9d9d9;
                    width: 100%;
                    display: flex;
                    align-items: center;
                    padding: 12px 16px;
                    border-radius: 16px;
                    gap: 12px;
                    input {
                        width: 100%;
                        border: none;
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        color: #111112;
                        background: transparent;
                        &::placeholder {
                            color: #b5b5b5;
                        }
                    }
                    .searchBlogBtn {
                        width: 20px;
                        height: 20px;
                        min-width: 20px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        img {
                            width: 100%;
                            height: 100%;
                        }
                    }
                }
            }
            .last-blog {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                .last-blog-title {
                    font-weight: 500;
                    font-size: 24px;
                    line-height: 36px;
                    color: #111112;
                }
                .last-blog-items {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 16px;
                    .blog-item {
                        padding-bottom: 16px;
                        border-bottom: 1px solid #c4c4c4;
                        width: 100%;
                        display: flex;
                        align-items: flex-start;
                        gap: 20px;
                        .item-image {
                            width: 130px;
                            height: 90px;
                            min-width: 130px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            border-radius: 16px;
                            img {
                                width: 100%;
                                height: 100%;
                                border-radius: 16px;
                                object-fit: cover;
                            }
                        }
                        .item-body {
                            display: flex;
                            flex-direction: column;
                            align-items: flex-start;
                            width: 100%;
                            .blog-share {
                                font-weight: 400;
                                font-size: 16px;
                                line-height: 24px;
                                color: #f17322;
                            }
                            .blog-title {
                                font-weight: 500;
                                font-size: 18px;
                                line-height: 28px;
                                display: -webkit-box;
                                color: #111112;
                                -webkit-line-clamp: 2;
                                overflow: hidden;
                                height: 56px;
                                -webkit-box-orient: vertical;
                            }
                        }
                        &:last-child {
                            padding-bottom: 0;
                            border-bottom: none;
                        }
                    }
                }
            }
            .blog-tags {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                .blog-tags-title {
                    font-weight: 500;
                    font-size: 24px;
                    line-height: 36px;
                    color: #111112;
                }
                .blog-tags-items {
                    width: 100%;
                    display: flex;
                    flex-wrap: wrap;
                    gap: 16px;
                    .tag-item {
                        padding: 12px 16px;
                        border-radius: 16px;
                        background: #efefef;
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        text-align: center;
                        color: #111112;
                    }
                }
            }
        }
    }
}
.service-detail-container {
    margin: 50px auto 0;
    max-width: 1440px;
    width: 100%;
    .breadCrumb {
        display: flex;
        align-items: center;
        gap: 6px;
        .breadCrumb-item {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #5b5b5b;
        }
        .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                width: 100%;
                height: 100%;
            }
        }
        .breadCrumb-item.active {
            color: #f17322;
        }
    }
    .service-detail-hero {
        width: 100%;
        margin-top: 50px;
        height: 510px;
        position: relative;
        .service-detail-image-slide {
            width: 100%;
            height: 100%;
            border-radius: 16px;
            .swiper-wrapper {
                border-radius: 16px;
                .detail-image {
                    width: 100%;
                    height: 100%;
                    border-radius: 16px;
                    img {
                        width: 100%;
                        height: 100%;
                        border-radius: 16px;
                        object-fit: cover;
                        filter: brightness(70%);
                    }
                }
            }
            .swiper-pagination {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                bottom: 20px;
                .swiper-pagination-bullet {
                    opacity: 1;
                    margin: 0;
                    width: 10px;
                    height: 6px;
                    border-radius: 100px;
                    background: rgba(255, 255, 255, 0.6);
                    transition: 0.3s ease-in-out;
                }
                .swiper-pagination-bullet-active {
                    width: 32px;
                    background: #fff;
                }
            }
        }
        .hero-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            max-height: 100%;
            border-radius: 16px;
            z-index: 2;
            padding: 40px;
            .hero-title {
                font-weight: 600;
                font-size: 42px;
                line-height: 60px;
                color: #fff;
            }
            .hero-description {
                margin-top: 12px;
                p,
                li,
                span {
                    font-size: 16px;
                    line-height: 24px;
                    font-weight: 400;
                    color: #fff;
                }
            }
            .hero-links {
                margin-top: 30px;
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                gap: 16px;
                .order-link {
                    display: flex;
                    align-items: center;
                    gap: 14px;
                    transition: 0.25s ease-in-out;
                    padding: 12px 24px;
                    background: #37393f;
                    border-radius: 20px;
                    width: max-content;
                    p {
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 24px;
                        color: #fff;
                        transition: 0.25s ease-in-out;
                    }
                    img {
                        width: 24px;
                        height: 24px;
                        min-width: 24px;
                        transition: 0.25s ease-in-out;
                    }
                    &:hover {
                        background: #f19e22;
                        p {
                            transform: translateX(-4px);
                        }
                        img {
                            transform: rotate(20deg);
                        }
                    }
                }
                .contact-link {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-weight: 400;
                    padding: 12px 24px;
                    font-size: 16px;
                    line-height: 24px;
                    color: #fff;
                    background: #f17322;
                    border-radius: 20px;
                    transition: 0.25s ease-in-out;
                    width: max-content;
                    img {
                        width: 24px;
                        height: 24px;
                        min-width: 24px;
                    }
                    &:hover {
                        background: #f19e22;
                    }
                }
                .wp {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    font-weight: 400;
                    padding: 12px 24px;
                    font-size: 16px;
                    line-height: 24px;
                    color: #fff;
                    background: #25d366;
                    border-radius: 20px;
                    transition: 0.25s ease-in-out;
                    img {
                        width: 24px;
                        height: 24px;
                        min-width: 24px;
                    }
                    &:hover {
                        background: #1da950;
                    }
                }
            }
        }
    }
    .service-advantages {
        margin-top: 50px;
        background: #ffffff;
        padding: 40px;
        box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-radius: 20px;
        gap: 24px;
        .advantage-item {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 16px;
            .icon {
                width: 50px;
                height: 50px;
                min-width: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 100px;
                background: #f7f3ec;
                img {
                    width: 24px;
                    height: 24px;
                    min-width: 24px;
                }
            }
            .item-text {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #111112;
                p {
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 24px;
                    color: #111112;
                }
            }
        }
    }
    .service-detail-description {
        margin-top: 30px;
        width: 100%;
        background: #ffffff;
        box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
        border-radius: 20px;
        padding: 40px;
        .description-title {
            font-weight: 500;
            font-size: 36px;
            line-height: 50px;
            color: #111112;
        }
        .description {
            margin-top: 16px;
            ul {
                padding-left: 18px;
            }
            p {
                font-weight: 400;
                font-size: 16px;
                line-height: 28px;
                color: #505050;
                margin-bottom: 12px;
            }
            li {
                font-weight: 400;
                font-size: 16px;
                line-height: 28px;
                color: #505050;
                margin-bottom: 4px;
            }
            h2,
            h3,
            h4 {
                color: #111112;
                margin-top: 20px;
                margin-bottom: 8px;
            }
            a {
                color: #f17322;
            }
        }
    }
}
.service-step {
    width: 100%;
    margin-top: 120px;
    padding: 60px 0;
    background: #efefef;
    .service-step-container {
        max-width: 1440px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        .section-title {
            font-weight: 600;
            font-size: 32px;
            line-height: 50px;
            text-align: center;
            color: #111112;
            max-width: 600px;
        }
        .sub-title {
            margin-top: 20px;
            max-width: 600px;
            p {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                text-align: center;
                color: #505050;
            }
        }
        .service-steps {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px 30px;
            margin-top: 80px;
            .step-item {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                position: relative;
                padding-top: 110px;
                .step-count {
                    position: absolute;
                    left: 50%;
                    top: 0;
                    transform: translateX(-50%);
                    width: 90px;
                    height: 90px;
                    border-radius: 100px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    z-index: 1;
                    background: #fff;
                    border: 5px solid #efefef;
                    font-weight: 400;
                    font-size: 30px;
                    line-height: 45px;
                    text-align: center;
                    color: #f17322;
                }
                .step-image {
                    width: 100%;
                    height: 320px;
                    border-radius: 20px;
                    img {
                        width: 100%;
                        height: 100%;
                        border-radius: 20px;
                        object-fit: cover;
                    }
                }
                .step-body {
                    margin-top: 24px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    .step-title {
                        font-weight: 500;
                        font-size: 20px;
                        line-height: 30px;
                        color: #111112;
                    }
                    .description {
                        margin-top: 16px;
                        p,
                        li {
                            font-weight: 400;
                            font-size: 16px;
                            line-height: 24px;
                            color: #505050;
                        }
                        ul {
                            padding-left: 18px;
                        }
                    }
                }
            }
            &:has(.step-image) {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                .step-item {
                    width: 45%;
                    &:nth-child(odd) {
                        margin-left: auto;
                    }
                    &:nth-child(even) {
                        margin-top: -85px;
                    }
                }
            }
        }
    }
}
@media only screen and (max-width: 1250px) {
    .p-lr {
        padding-left: 35px;
        padding-right: 35px;
    }
    header {
        .header-container {
            padding: 14px 20px;
            .header-links {
                gap: 14px;
            }
            .header-right {
                gap: 14px;
                .header-contact {
                    gap: 8px;
                }
            }
        }
    }
    nav {
        .navbar-container {
            padding: 10px 20px;
            gap: 30px;
            .logo {
                min-width: 80px;
                width: 80px;
            }
            .navbar-links {
                gap: 20px;
                .link-menu {
                    padding: 16px 0;
                    .menu-main-link {
                        font-size: 15px;
                        line-height: 22px;
                        img {
                            width: 22px;
                            height: 22px;
                            min-width: 22px;
                        }
                    }
                    .sub-menu {
                        padding: 10px;
                        border-radius: 12px;
                        min-width: 200px;
                        top: 65px;
                        .sub-menu-link {
                            font-size: 15px;
                            line-height: 22px;
                        }
                    }
                    &:hover {
                        .sub-menu {
                            top: 55px;
                        }
                    }
                }
                .navbar-link {
                    font-size: 15px;
                    line-height: 22px;
                }
            }
            .nav-contact {
                padding: 10px 20px;
                font-size: 15px;
                line-height: 22px;
                img {
                    width: 22px;
                    height: 22px;
                    min-width: 22px;
                }
            }
        }
    }
    .home-hero {
        .home-hero-main {
            height: 500px;
            .home-hero-content {
                padding: 20px;
                .hero-title {
                    font-size: 54px;
                    line-height: 72px;
                    max-width: 600px;
                }
                .hero-subtitle {
                    font-size: 16px;
                    line-height: 24px;
                }
                .hero-link {
                    margin-top: 24px;
                    gap: 12px;
                    padding: 10px 20px;
                    p {
                        font-size: 15px;
                        line-height: 22px;
                    }
                    img {
                        width: 20px;
                        height: 20px;
                        min-width: 20px;
                    }
                }
            }
        }
    }
    .home-about {
        margin: 100px auto 0;
        gap: 40px;
        .home-about-images {
            max-width: 560px;
            min-width: 500px;
            height: 400px;
            .image-large {
                max-width: 450px;
                height: 320px;
            }
            .image-small {
                max-width: 310px;
                height: 240px;
            }
        }
        .home-about-content {
            max-width: 500px;
            .section-title {
                font-size: 28px;
                line-height: 40px;
            }
            .description {
                margin-top: 30px;
            }
            .more {
                margin-top: 30px;
                gap: 12px;
                padding: 10px 20px;
                p {
                    font-size: 15px;
                    line-height: 22px;
                }
                img {
                    width: 20px;
                    height: 20px;
                    min-width: 20px;
                }
            }
        }
    }
    .parnters-container {
        margin: 60px auto 0;
        .partners-slide {
            .partner-item {
                width: 184px;
                height: 80px;
                img {
                    max-width: 120px;
                    max-height: 40px;
                }
            }
        }
    }
    .home-services {
        margin-top: 100px;
        padding: 45px 0;
        .home-services-container {
            .home-services-head {
                .head-left {
                    .section-title {
                        font-size: 28px;
                        line-height: 40px;
                    }
                }
            }
            .home-services-cards {
                margin-top: 100px;
                gap: 100px 20px;
                .service-card {
                    padding: 24px;
                    .icon {
                        margin-top: -74px;
                        width: 96px;
                        height: 96px;
                        min-width: 96px;
                        img {
                            width: 44px;
                            height: 44px;
                        }
                    }
                    .service-name {
                        margin-top: 24px;
                        font-size: 20px;
                        line-height: 28px;
                    }
                    .description {
                        margin-top: 12px;
                    }
                    .more {
                        margin-top: 20px;
                    }
                }
            }
        }
    }
    .home-blog {
        margin: 100px auto 0;
        .home-blog-head {
            .head-left {
                .section-title {
                    font-size: 28px;
                    line-height: 40px;
                }
            }
        }
        .home-blog-slide {
            margin-top: 45px;
            .blog-card {
                width: 383px;
                .card-image {
                    height: 220px;
                }
                .card-body {
                    .blog-name {
                        font-size: 18px;
                        line-height: 28px;
                        height: 56px;
                    }
                    .description {
                        margin-top: 10px;
                        p {
                            font-size: 14px;
                            line-height: 20px;
                            height: 40px;
                        }
                    }
                    .card-body-bottom {
                        margin-top: 24px;
                    }
                }
            }
        }
    }
    .home-portfolio {
        margin: 100px auto 0;
        .home-portfolio-head {
            .head-left {
                .section-title {
                    font-size: 28px;
                    line-height: 40px;
                }
            }
        }
        .home-portfolio-items {
            margin-top: 45px;
            .home-portfolio-item {
                width: 186px;
                min-width: 186px;
                height: 450px;
                .portfolioItemBtn {
                    width: 40px;
                    height: 40px;
                    min-width: 40px;
                }
                .item-content {
                    padding: 35px;
                    .portfolio-title {
                        font-size: 26px;
                        line-height: 36px;
                    }
                    .description {
                        p {
                            font-size: 14px;
                            line-height: 20px;
                        }
                    }
                    .more {
                        margin-top: 12px;
                    }
                }
            }
        }
    }
    @keyframes floatBall {
        0% {
            bottom: 65px;
            transform: translateX(-30%) translateY(0);
        }
        50% {
            bottom: 100px;
            transform: translateX(-20%) translateY(0);
        }
        100% {
            bottom: 65px;
            transform: translateX(-30%) translateY(0);
        }
    }
    .home-order-container {
        margin: 160px auto 0;
        .home-order {
            padding: 35px;
            .home-order-content {
                max-width: 480px;
                .section-title {
                    font-size: 28px;
                    line-height: 40px;
                }
                .description {
                    margin-top: 12px;
                    p,
                    li {
                        font-size: 14px;
                        line-height: 20px;
                    }
                }
                .more {
                    margin-top: 20px;
                    gap: 12px;
                    padding: 10px 20px;
                    p {
                        font-size: 15px;
                        line-height: 22px;
                    }
                    img {
                        width: 20px;
                        height: 20px;
                        min-width: 20px;
                    }
                }
            }
            .home-order-image {
                width: 285px;
                .glassBall {
                    width: 92px;
                    height: 92px;
                    bottom: 65px;
                    transform: translateX(-30%);
                }
            }
        }
    }
    .review-container {
        margin: 100px auto 0;
        .review-head {
            .head-left {
                .section-title {
                    font-size: 28px;
                    line-height: 40px;
                }
            }
        }
        .review-slide {
            margin-top: 45px;
            .review-item {
                width: 383px;
                padding: 24px 20px;
                .review-item-head {
                    gap: 14px;
                    .review-image {
                        width: 56px;
                        height: 56px;
                        min-width: 56px;
                    }
                    .review-info {
                        gap: 2px;
                    }
                }
                .description {
                    margin-top: 16px;
                    p {
                        font-size: 14px;
                        line-height: 20px;
                    }
                }
            }
            .swiper-button-next,
            .swiper-button-prev {
                width: 40px;
                height: 40px;
                bottom: 60px;
                &::after {
                    font-size: 14px;
                }
            }
            .swiper-button-next {
                right: 10px;
            }
            .swiper-button-prev {
                left: 10px;
            }
            &::after {
                display: none;
            }
            &::before {
                display: none;
            }
        }
    }
    footer {
        margin-top: 100px;
        padding-top: 35px;
        .footer-container {
            .footer-main {
                .footer-logo-text {
                    max-width: 220px;
                    .logo {
                        width: 126px;
                    }
                    .footer-description {
                        margin-top: 24px;
                        p {
                            font-size: 14px;
                            line-height: 20px;
                        }
                    }
                }
                .quick-links {
                    margin-top: 28px;
                    min-width: 230px;
                    width: 230px;
                    .quick-links-title {
                        font-size: 18px;
                        line-height: 28px;
                    }
                    .links {
                        margin-top: 20px;
                        gap: 16px;
                        grid-template-columns: repeat(2, max-content);
                        .quick-link-item {
                            font-size: 14px;
                            line-height: 20px;
                        }
                    }
                }
                .last-blogs {
                    margin-top: 28px;
                    min-width: 200px;
                    width: 200px;
                    .last-blogs-title {
                        font-size: 18px;
                        line-height: 28px;
                    }
                    .links {
                        margin-top: 20px;
                        gap: 16px;
                        .link-item {
                            font-size: 14px;
                            line-height: 20px;
                        }
                    }
                }
                .footer-contact {
                    margin-top: 28px;
                    min-width: 260px;
                    width: 260px;
                    .footer-contact-title {
                        font-size: 18px;
                        line-height: 28px;
                    }
                    .footer-contact-items {
                        margin-top: 20px;
                        gap: 16px;
                        .footer-contact-item {
                            gap: 9px;
                        }
                    }
                }
            }
            .footer-bottom {
                margin-top: 100px;
                gap: 20px;
                padding: 12px 0;
                .socials {
                    gap: 14px;
                    .social-item {
                        width: 44px;
                        height: 44px;
                        min-width: 44px;
                        img {
                            width: 20px;
                            height: 20px;
                            min-width: 20px;
                        }
                    }
                }
            }
        }
        .footerDecoration {
            max-width: 695px;
        }
    }
    .all-service-container {
        margin: 35px auto 0;
        .banner {
            margin-top: 35px;
            height: 160px;
            .banner-title {
                font-size: 32px;
                line-height: 44px;
                padding: 16px;
            }
        }

        .all-services {
            margin-top: 114px;
            gap: 100px 20px;
            .service-card {
                padding: 24px;
                .icon {
                    margin-top: -74px;
                    width: 96px;
                    height: 96px;
                    min-width: 96px;
                    img {
                        width: 44px;
                        height: 44px;
                    }
                }
                .service-name {
                    margin-top: 24px;
                    font-size: 20px;
                    line-height: 28px;
                }
                .description {
                    margin-top: 12px;
                }
                .more {
                    margin-top: 20px;
                }
            }
        }
        .services-content {
            margin-top: 100px;
            padding: 32px;
            .services-content-title {
                font-size: 30px;
                line-height: 40px;
            }
            .services-content-description {
                margin-top: 14px;
            }
        }
    }
    .all-blog-container {
        margin: 35px auto 0;
        .banner {
            height: 160px;
            margin-top: 35px;
            .banner-title {
                font-size: 32px;
                line-height: 44px;
                padding: 16px;
            }
        }
        .all-blogs {
            margin-top: 60px;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px 20px;
            .blog-card {
                .card-image {
                    height: 220px;
                }
                .card-body {
                    .blog-name {
                        font-size: 18px;
                        line-height: 28px;
                        height: 56px;
                    }
                    .description {
                        margin-top: 10px;
                        p {
                            font-size: 14px;
                            line-height: 20px;
                            height: 40px;
                        }
                    }
                    .card-body-bottom {
                        margin-top: 24px;
                    }
                }
            }
        }
        .pagination {
            margin: 60px auto 0;
        }
    }
    .all-portfolio-container {
        margin: 35px auto 0;
        .banner {
            height: 160px;
            margin-top: 35px;
            .banner-title {
                font-size: 32px;
                line-height: 44px;
                padding: 16px;
            }
        }
        .all-portfolio {
            margin-top: 60px;
            gap: 35px 20px;
            .portfolio-card {
                .card-image {
                    height: 360px;
                }
                .card-body {
                    margin-top: 16px;
                    .portfolio-title {
                        font-size: 28px;
                        line-height: 40px;
                        height: 40px;
                    }
                    .description {
                        margin-top: 10px;
                        p {
                            font-size: 14px;
                            line-height: 20px;
                            height: 40px;
                        }
                    }
                    .more {
                        width: 22px;
                        height: 22px;
                        min-width: 22px;
                        margin-top: 16px;
                    }
                }
            }
        }
        .pagination {
            margin: 60px auto 0;
        }
    }
    .all-special-campaing-container {
        margin: 35px auto 0;
        .banner {
            height: 160px;
            margin-top: 35px;
            .banner-title {
                font-size: 32px;
                line-height: 44px;
                padding: 16px;
            }
        }
        .all-special-campaing {
            margin-top: 60px;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px 20px;
            .special-campaing-card {
                .card-image {
                    height: 220px;
                }
                .card-body {
                    .special-campaing-name {
                        font-size: 18px;
                        line-height: 28px;
                        height: 56px;
                    }
                    .card-body-bottom {
                        margin-top: 24px;
                    }
                }
            }
        }
    }
    .privacy-policy-container {
        margin: 35px auto 0;
        .page-title {
            margin-top: 35px;
            font-size: 24px;
            line-height: 36px;
        }
        .privacy-policy-description {
            margin-top: 32px;
            padding: 30px;
        }
    }
    .special-campaing-detail-container {
        margin: 35px auto 0;
        .special-campaing-detail-head {
            margin-top: 35px;
            .page-title {
                font-size: 24px;
                line-height: 36px;
            }
        }
        .special-campaing-image {
            margin-top: 35px;
            height: 400px;
        }
        .special-campaing-detail-description {
            margin-top: 32px;
            padding: 30px;
            .description-title {
                font-size: 18px;
                line-height: 28px;
            }
            .description {
                margin-top: 12px;
            }
        }
    }
    .boxes-container {
        margin: 35px auto 0;
        .banner {
            height: 160px;
            margin-top: 35px;
            .banner-title {
                font-size: 32px;
                line-height: 44px;
                padding: 16px;
            }
        }

        .all-boxes {
            margin-top: 60px;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px 20px;
            .box-card {
                .card-image {
                    height: 274px;
                }
                .card-body {
                    margin-top: 14px;
                    .box-name {
                        font-size: 16px;
                        line-height: 24px;
                    }
                    .box-price {
                        margin-top: 10px;
                        font-size: 18px;
                        line-height: 28px;
                    }
                    .more {
                        margin-top: 14px;
                        padding: 10px;
                    }
                }
            }
        }
    }
    .box-detail-container {
        margin: 35px auto 0;
        .box-detail-main {
            margin-top: 35px;
            gap: 20px;
            .box-image {
                max-width: 660px;
                min-width: 450px;
                height: 420px;
            }
            .detail-right {
                max-width: 500px;
                .box-info {
                    padding: 24px;
                    .box-name {
                        margin-top: 8px;
                        font-size: 20px;
                        line-height: 32px;
                    }
                    .box-notification {
                        margin-top: 16px;
                    }
                }
                .price-box {
                    margin-top: 16px;
                    padding: 24px;
                    .price-box-left {
                        .price {
                            font-size: 24px;
                            line-height: 36px;
                        }
                    }
                    .counter {
                        gap: 16px;
                        .decrease,
                        .increase {
                            width: 36px;
                            height: 36px;
                            min-width: 36px;
                            img {
                                width: 22px;
                                height: 22px;
                                min-width: 22px;
                            }
                        }
                        .counter-value {
                            font-size: 14px;
                            line-height: 20px;
                        }
                    }
                }
                .detail-contact {
                    margin-top: 16px;
                    gap: 14px;
                    .call {
                        padding: 10px 20px;
                        font-size: 15px;
                        line-height: 22px;
                        min-width: 164px;
                        img {
                            width: 22px;
                            height: 22px;
                            min-width: 22px;
                        }
                    }
                    .wp {
                        padding: 10px 20px;
                        font-size: 15px;
                        line-height: 22px;
                        img {
                            width: 22px;
                            height: 22px;
                            min-width: 22px;
                        }
                    }
                }
            }
        }
        .box-detail-description {
            margin-top: 32px;
            padding: 30px;
            .description-title {
                font-size: 18px;
                line-height: 28px;
            }
            .description {
                margin-top: 12px;
            }
        }
    }
    .contact-container {
        .banner {
            height: 160px;
            .banner-title {
                font-size: 32px;
                line-height: 44px;
                padding: 16px;
            }
        }
        .contact-main-box {
            margin-top: 60px;
            padding: 35px;
            .box-title {
                font-size: 30px;
                line-height: 40px;
            }
            .contact-main {
                margin-top: 32px;
                grid-template-columns: minmax(0, 530px) minmax(0, 470px);
                .contact-form {
                    gap: 16px;
                    input,
                    select,
                    textarea {
                        padding: 10px 16px;
                    }
                    textarea {
                        height: 120px;
                    }
                    .submitContact {
                        margin-top: 16px;
                        padding: 10px 20px;
                    }
                }
                .contac-info {
                    gap: 16px;
                    .contact-info-item {
                        gap: 16px;
                        padding: 20px;
                        .icon {
                            width: 28px;
                            height: 28px;
                            min-width: 28px;
                        }
                    }
                    .wp {
                        padding: 10px 24px;
                    }
                }
            }
        }
        .map {
            margin-top: 35px;
            height: 400px;
        }
    }
    .portfolio-detail-container {
        margin: 35px auto 0;
        .portfolio-detail-head {
            margin-top: 35px;
            .page-title {
                font-size: 24px;
                line-height: 36px;
            }
        }
        .portfolio-detail-image {
            margin-top: 32px;
            height: 420px;
        }
        .portfolio-detail-description {
            margin-top: 32px;
            padding: 30px;
            .description-title {
                font-size: 18px;
                line-height: 28px;
            }
            .description {
                margin-top: 12px;
            }
        }
        .portfolio-gallery {
            margin-top: 35px;
            .portfolio-gallery-item {
                height: 240px;
                .view-all {
                    padding: 8px 16px;
                    gap: 8px;
                }
            }
        }
    }
    .about-container {
        .banner {
            height: 160px;
            .banner-title {
                font-size: 32px;
                line-height: 44px;
                padding: 16px;
            }
        }
    }
    .why-us-wrapper {
        .why-us {
            margin-top: 100px;
            padding: 45px 0;
            .why-us-container {
                .section-title {
                    font-size: 28px;
                    line-height: 42px;
                    max-width: 350px;
                }
                .sub-title {
                    margin-top: 16px;
                    max-width: 500px;
                    p {
                        font-size: 14px;
                        line-height: 20px;
                    }
                }
                .why-us-main {
                    .line-indicator {
                        position: absolute;
                        left: 50%;
                        transform: translateX(-50%);
                        top: 40px;
                        bottom: 0;
                        width: 1px;
                        z-index: 2;
                        .line-track {
                            position: relative;
                            width: 1px;
                            height: 100%;
                            &::before {
                                content: "";
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: var(--line-progress, 0%);
                                background: #f17322;
                                transition: height 1.6s ease;
                            }
                            .line-dot {
                                position: absolute;
                                left: 50%;
                                transform: translate(-50%, -50%);
                                top: var(--line-progress, 0%);
                                width: 15px;
                                height: 15px;
                                border-radius: 100px;
                                background: #f17322;
                                transition: top 1.6s ease;
                                z-index: 3;
                            }
                        }
                    }
                    .why-us-content-slide {
                        .content-item {
                            .content-inner {
                                padding-left: 80px;
                                max-width: 450px;
                                .content-title {
                                    font-size: 18px;
                                    line-height: 28px;
                                }
                                .description {
                                    margin-top: 14px;
                                    p {
                                        font-size: 14px;
                                        line-height: 20px;
                                    }
                                }
                            }
                        }
                        .swiper-pagination {
                            top: 50px;
                            font-size: 14px;
                            line-height: 20px;
                            .swiper-pagination-current {
                                font-size: 32px;
                                line-height: 32px;
                                padding-right: 8px;
                            }
                        }
                    }
                    .why-us-images {
                        width: 450px;
                        height: calc(100svh - 340px);
                        max-height: 450px;
                    }
                }
            }
        }
    }
    .blog-detail-container {
        margin: 35px auto 0;
        .blog-detail {
            margin-top: 35px;
            gap: 40px;
            .blog-detail-main {
                width: calc(100% - 400px);
                .blog-image {
                    height: 400px;
                }
                .share-date {
                    margin-top: 16px;
                }
                .blog-title {
                    margin-top: 16px;
                    font-size: 32px;
                    line-height: 44px;
                }
            }
            .blog-detail-aside {
                width: 360px;
                min-width: 360px;
                gap: 24px;
                .blog-search {
                    gap: 16px;
                    .blog-search-title {
                        font-size: 20px;
                        line-height: 32px;
                    }
                    .blog-search-form {
                        padding: 10px 14px;
                        gap: 10px;
                    }
                }
                .last-blog {
                    gap: 16px;
                    .last-blog-title {
                        font-size: 20px;
                        line-height: 32px;
                    }
                    .last-blog-items {
                        gap: 14px;
                        .blog-item {
                            padding-bottom: 14px;
                            gap: 16px;
                            .item-image {
                                width: 120px;
                                height: 80px;
                                min-width: 120px;
                            }
                            .item-body {
                                .blog-share {
                                    font-size: 14px;
                                    line-height: 20px;
                                }
                                .blog-title {
                                    font-size: 16px;
                                    line-height: 24px;
                                    height: 48px;
                                }
                            }
                        }
                    }
                }
                .blog-tags {
                    gap: 16px;
                    .blog-tags-title {
                        font-size: 20px;
                        line-height: 32px;
                    }
                    .blog-tags-items {
                        gap: 14px;
                        .tag-item {
                            padding: 10px 14px;
                            font-size: 14px;
                            line-height: 20px;
                        }
                    }
                }
            }
        }
    }
    .service-detail-container {
        margin: 35px auto 0;
        .service-detail-hero {
            margin-top: 35px;
            height: 450px;
            .service-detail-image-slide {
                .swiper-pagination {
                    bottom: 16px;
                    .swiper-pagination-bullet-active {
                        width: 28px;
                    }
                }
            }
            .hero-content {
                padding: 30px;
                .hero-title {
                    font-size: 36px;
                    line-height: 48px;
                }
                .hero-links {
                    margin-top: 24px;
                    gap: 14px;
                    .order-link {
                        gap: 12px;
                        padding: 10px 20px;
                        p {
                            font-size: 15px;
                            line-height: 22px;
                        }
                        img {
                            width: 20px;
                            height: 20px;
                            min-width: 20px;
                        }
                    }
                    .contact-link {
                        padding: 10px 20px;
                        font-size: 15px;
                        line-height: 22px;
                        img {
                            width: 20px;
                            height: 20px;
                            min-width: 20px;
                        }
                    }
                    .wp {
                        padding: 10px 20px;
                        font-size: 15px;
                        line-height: 22px;
                        img {
                            width: 20px;
                            height: 20px;
                            min-width: 20px;
                        }
                    }
                }
            }
        }
        .service-advantages {
            margin-top: 35px;
            padding: 30px;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            .advantage-item {
                gap: 14px;
                .icon {
                    width: 44px;
                    height: 44px;
                    min-width: 44px;
                    img {
                        width: 20px;
                        height: 20px;
                        min-width: 20px;
                    }
                }
                .item-text {
                    font-size: 14px;
                    line-height: 20px;
                    p {
                        font-size: 14px;
                        line-height: 20px;
                    }
                }
            }
        }
        .service-detail-description {
            margin-top: 32px;
            padding: 30px;
            .description-title {
                font-size: 32px;
                line-height: 44px;
            }
            .description {
                margin-top: 12px;
            }
        }
    }
    .service-step {
        padding: 45px 0;
        margin-top: 100px;
        .service-step-container {
            .section-title {
                font-size: 28px;
                line-height: 42px;
                max-width: 500px;
            }
            .sub-title {
                margin-top: 16px;
                max-width: 500px;
                p {
                    font-size: 14px;
                    line-height: 20px;
                }
            }
            .service-steps {
                margin-top: 60px;
                .step-item {
                    padding-top: 80px;
                    .step-count {
                        left: 50%;
                        top: 0;
                        transform: translateX(-50%);
                        width: 60px;
                        height: 60px;
                        font-size: 24px;
                        line-height: 36px;
                    }
                    .step-image {
                        height: 280px;
                    }
                    .step-body {
                        margin-top: 20px;
                        .step-title {
                            font-size: 18px;
                            line-height: 28px;
                        }
                        .description {
                            margin-top: 14px;
                            p,
                            li {
                                font-size: 14px;
                                line-height: 20px;
                            }
                        }
                    }
                }
                &:has(.step-image) .step-item:nth-child(even) {
                    margin-top: -90px;
                }
            }
        }
    }
}
@media only screen and (max-width: 992px) {
    header {
        display: none;
    }
    nav {
        .navbar-container {
            padding: 10px 20px;
            gap: 30px;
            justify-content: space-between;
            .logo {
                min-width: 80px;
                width: 80px;
                height: 60px;
            }
            .navbar-links {
                display: none;
            }
            .nav-contact {
                display: none;
            }
            .hamburger {
                display: flex;
            }
        }
    }
    .mobileMenu-overlay {
        display: flex;
    }
    .home-about {
        flex-direction: column-reverse;
        .home-about-content {
            max-width: 100%;
        }
    }
    .home-services {
        .home-services-container {
            .home-services-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    }
    .home-portfolio {
        .home-portfolio-items {
            .home-portfolio-item {
                width: 166px;
                min-width: 166px;
                height: 400px;
            }
        }
    }
    footer {
        .footer-container {
            .footer-main {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 300px));
                .footer-logo-text {
                    max-width: 100%;
                }
                .quick-links {
                    min-width: 0;
                    width: 100%;
                }
                .last-blogs {
                    min-width: 0;
                    width: 100%;
                }
                .footer-contact {
                    min-width: 0;
                    width: 100%;
                }
            }
            .footer-bottom {
                margin-top: 100px;
                gap: 20px;
                padding: 12px 0;
                .socials {
                    gap: 14px;
                    .social-item {
                        width: 44px;
                        height: 44px;
                        min-width: 44px;
                        img {
                            width: 20px;
                            height: 20px;
                            min-width: 20px;
                        }
                    }
                }
            }
        }
    }
    .all-service-container {
        .all-services {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    .all-blog-container {
        .all-blogs {
            grid-template-columns: repeat(2, 1fr);
            .blog-card {
                .card-image {
                    height: 230px;
                }
            }
        }
    }
    .all-portfolio-container {
        .all-portfolio {
            .portfolio-card {
                .card-image {
                    height: 300px;
                }
            }
        }
    }
    .all-special-campaing-container {
        .all-special-campaing {
            grid-template-columns: repeat(2, 1fr);
            .special-campaing-card {
                .card-image {
                    height: 230px;
                }
            }
        }
    }
    .special-campaing-detail-container {
        .special-campaing-detail-head {
            flex-direction: column;
            align-items: start;
        }
        .special-campaing-image {
            height: 360px;
        }
    }
    .boxes-container {
        .all-boxes {
            grid-template-columns: repeat(2, 1fr);
            .box-card {
                .card-image {
                    height: 254px;
                }
            }
        }
    }
    .box-detail-container {
        .box-detail-main {
            flex-direction: column;
            .box-image {
                max-width: 100%;
                min-width: 0;
                height: 600px;
            }
            .detail-right {
                max-width: 100%;
            }
        }
    }
    .portfolio-detail-container {
        .portfolio-detail-head {
            flex-direction: column;
            align-items: start;
        }
        .portfolio-gallery {
            .portfolio-gallery-item {
                height: 200px;
            }
        }
    }
    .why-us-wrapper {
        height: auto !important;
        .why-us {
            margin-top: 100px;
            height: auto;
            padding: 45px 0;
            position: initial;
            .why-us-container {
                .section-title {
                    font-size: 28px;
                    line-height: 42px;
                    max-width: 350px;
                }
                .sub-title {
                    margin-top: 16px;
                    max-width: 500px;
                    p {
                        font-size: 14px;
                        line-height: 20px;
                    }
                }
                .why-us-main {
                    display: none;
                }
                .mobile-why-us-slide {
                    display: flex;
                }
            }
        }
    }
    .blog-detail-container {
        .blog-detail {
            flex-direction: column;
            .blog-detail-main {
                width: 100%;
                .blog-image {
                    height: 500px;
                }
            }
            .blog-detail-aside {
                width: 100%;
                min-width: 0;
            }
        }
    }
    .service-step {
        .service-step-container {
            .service-steps {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 60px 20px;
                .step-item {
                    width: 100%;
                    &:nth-child(odd) {
                        margin-left: 0;
                    }
                    &:nth-child(even) {
                        margin-top: 0;
                    }
                }
                &:has(.step-image) {
                    display: grid;
                    .step-item {
                        width: 100%;
                        &:nth-child(odd) {
                            margin-left: 0;
                        }
                        &:nth-child(even) {
                            margin-top: 0;
                        }
                    }
                }
            }
        }
    }
}
@media only screen and (max-width: 768px) {
    .p-lr {
        padding-left: 20px;
        padding-right: 20px;
    }
    nav {
        .navbar-container {
            gap: 20px;
            .logo {
                min-width: 60px;
                width: 60px;
                height: 60px;
            }
        }
    }
    .mobileMenu-overlay {
        .mobileMenu {
            width: 100%;
        }
    }
    .home-hero {
        .home-hero-main {
            height: 400px;
            .home-hero-content {
                .hero-title {
                    font-size: 36px;
                    line-height: 48px;
                    max-width: 400px;
                }
                .hero-subtitle {
                    font-size: 14px;
                    line-height: 20px;
                    margin-top: 8px;
                }
                .hero-link {
                    margin-top: 20px;
                }
            }
        }
    }
    .home-about {
        margin: 80px auto 0;
        .home-about-images {
            max-width: 430px;
            min-width: 0;
            height: 280px;
            .image-large {
                max-width: 350px;
                height: 230px;
            }
            .image-small {
                max-width: 250px;
                height: 170px;
            }
        }
        .home-about-content {
            .section-title {
                font-size: 24px;
                line-height: 32px;
            }
            .description {
                margin-top: 24px;
            }
            .more {
                margin-top: 24px;
            }
        }
    }
    .parnters-container {
        margin: 40px auto 0;
        .partners-slide {
            .partner-item {
                width: 164px;
                height: 70px;
                img {
                    max-width: 100px;
                }
            }
        }
    }
    .home-services {
        margin-top: 80px;
        padding: 30px 0;
        .home-services-container {
            .home-services-head {
                .head-left {
                    .section-title {
                        font-size: 24px;
                        line-height: 32px;
                    }
                }
            }
            .home-services-cards {
                margin-top: 80px;
                .service-card {
                    padding: 20px;
                    .icon {
                        margin-top: -74px;
                        width: 86px;
                        height: 86px;
                        min-width: 86px;
                        img {
                            width: 40px;
                            height: 44px;
                        }
                    }
                    .service-name {
                        margin-top: 20px;
                    }
                }
            }
        }
    }
    .home-blog {
        margin: 80px auto 0;
        .home-blog-head {
            .head-left {
                .section-title {
                    font-size: 24px;
                    line-height: 32px;
                }
            }
        }
        .home-blog-slide {
            margin-top: 30px;
            .blog-card {
                width: 363px;
                .card-image {
                    height: 200px;
                }
                .card-body {
                    padding: 20px 16px;
                    .card-body-bottom {
                        margin-top: 20px;
                    }
                }
            }
        }
    }
    .home-portfolio {
        margin: 80px auto 0;
        .home-portfolio-head {
            .head-left {
                .section-title {
                    font-size: 24px;
                    line-height: 32px;
                }
            }
        }
        .home-portfolio-items {
            margin-top: 30px;
            flex-direction: column;
            align-items: flex-start;
            .home-portfolio-item {
                width: 100%;
                min-width: 0;
                height: 350px;
                .item-content {
                    padding: 20px;
                    .portfolio-title {
                        font-size: 20px;
                        line-height: 32px;
                    }
                }
            }
        }
    }
    .home-order-container {
        margin: 80px auto 0;
        .home-order {
            padding: 20px;
            .home-order-content {
                max-width: 100%;
                .section-title {
                    font-size: 24px;
                    line-height: 32px;
                }
            }
            .home-order-image {
                display: none;
            }
        }
    }
    .review-container {
        margin: 80px auto 0;
        .review-head {
            .head-left {
                .section-title {
                    font-size: 24px;
                    line-height: 32px;
                }
            }
        }
        .review-slide {
            margin-top: 30px;
            .review-item {
                width: 363px;
            }
            .swiper-button-next,
            .swiper-button-prev {
                display: none;
            }
            &::after {
                display: none;
            }
            &::before {
                display: none;
            }
        }
    }
    footer {
        margin-top: 80px;
        padding-top: 20px;
        .footer-container {
            .footer-main {
                .footer-logo-text {
                    .logo {
                        width: 116px;
                    }
                    .footer-description {
                        margin-top: 20px;
                    }
                }
                .quick-links {
                    margin-top: 24px;
                }
                .last-blogs {
                    margin-top: 24px;
                }
                .footer-contact {
                    margin-top: 24px;
                }
            }
            .footer-bottom {
                margin-top: 80px;
                padding: 12px 0;
                gap: 14px;
                flex-direction: column;
                .socials {
                    margin-left: 0;
                    margin-top: 6px;
                }
            }
        }
        .footerDecoration {
            max-width: 495px;
        }
    }
    .all-service-container {
        .banner {
            height: 120px;
            .banner-title {
                font-size: 28px;
                line-height: 36px;
            }
        }
        .breadCrumb {
            display: none;
        }
        .all-services {
            margin-top: 94px;
            .service-card {
                padding: 20px;
                .icon {
                    margin-top: -74px;
                    width: 86px;
                    height: 86px;
                    min-width: 86px;
                    img {
                        width: 40px;
                        height: 44px;
                    }
                }
                .service-name {
                    margin-top: 20px;
                }
            }
        }
        .services-content {
            margin-top: 80px;
            padding: 24px;
            .services-content-title {
                font-size: 24px;
                line-height: 32px;
            }
        }
    }
    .all-blog-container {
        .banner {
            height: 120px;
            .banner-title {
                font-size: 28px;
                line-height: 36px;
            }
        }
        .breadCrumb {
            display: none;
        }
        .all-blogs {
            margin-top: 40px;
            gap: 24px 20px;
            .blog-card {
                .card-image {
                    height: 200px;
                }
                .card-body {
                    padding: 20px 16px;
                    .card-body-bottom {
                        margin-top: 20px;
                    }
                }
            }
        }
        .pagination {
            margin: 40px auto 0;
        }
    }
    .all-portfolio-container {
        .banner {
            height: 120px;
            .banner-title {
                font-size: 28px;
                line-height: 36px;
            }
        }
        .breadCrumb {
            display: none;
        }
        .all-portfolio {
            margin-top: 40px;
            gap: 24px 20px;
            .portfolio-card {
                .card-image {
                    height: 240px;
                }
                .card-body {
                    .portfolio-title {
                        font-size: 24px;
                        line-height: 32px;
                        height: 32px;
                    }
                }
            }
        }
        .pagination {
            margin: 40px auto 0;
        }
    }
    .all-special-campaing-container {
        .banner {
            height: 120px;
            .banner-title {
                font-size: 28px;
                line-height: 36px;
            }
        }
        .breadCrumb {
            display: none;
        }
        .all-special-campaing {
            margin-top: 40px;
            gap: 24px 20px;
            .special-campaing-card {
                .card-image {
                    height: 200px;
                }
                .card-body {
                    padding: 20px 16px;
                    .card-body-bottom {
                        margin-top: 20px;
                    }
                }
            }
        }
    }
    .privacy-policy-container {
        margin: 20px auto 0;
        .breadCrumb {
            display: none;
        }
        .page-title {
            margin-top: 0;
        }
        .privacy-policy-description {
            margin-top: 24px;
            padding: 24px;
        }
    }
    .special-campaing-detail-container {
        margin: 20px auto 0;
        .breadCrumb {
            display: none;
        }
        .special-campaing-detail-head {
            margin-top: 0;
        }
        .special-campaing-image {
            margin-top: 30px;
            height: 320px;
        }
        .special-campaing-detail-description {
            margin-top: 24px;
            padding: 24px;
        }
    }
    .boxes-container {
        .banner {
            height: 120px;
            .banner-title {
                font-size: 28px;
                line-height: 36px;
            }
        }
        .breadCrumb {
            display: none;
        }
        .all-boxes {
            margin-top: 40px;
            gap: 24px 20px;
            .box-card {
                .card-image {
                    height: 224px;
                }
            }
        }
    }
    .box-detail-container {
        margin: 20px auto 0;
        .breadCrumb {
            display: none;
        }
        .box-detail-main {
            margin-top: 0;
            gap: 20px;
            flex-direction: column;
            .box-image {
                height: 500px;
            }
            .detail-right {
                .box-info {
                    padding: 20px;
                }
                .price-box {
                    padding: 20px;
                }
            }
        }
        .box-detail-description {
            margin-top: 24px;
            padding: 24px;
        }
    }
    .contact-container {
        .banner {
            height: 120px;
            .banner-title {
                font-size: 28px;
                line-height: 36px;
            }
        }
        .contact-main-box {
            margin-top: 60px;
            padding: 24px;
            .box-title {
                font-size: 24px;
                line-height: 36px;
            }
            .contact-main {
                margin-top: 24px;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                .contact-form {
                    width: 100%;
                }
                .contac-info {
                    width: 100%;
                    .wp {
                        width: 100%;
                        margin-top: 16px;
                    }
                }
            }
        }
        .map {
            margin-top: 24px;
            height: 300px;
        }
    }
    .portfolio-detail-container {
        margin: 20px auto 0;
        .breadCrumb {
            display: none;
        }
        .portfolio-detail-head {
            margin-top: 0;
        }
        .portfolio-detail-image {
            margin-top: 32px;
            height: 300px;
        }
        .short-info-box {
            gap: 12px 24px;
            padding: 16px 20px;
            .short-info-item {
                gap: 8px;
                span {
                    font-size: 14px;
                    line-height: 20px;
                }
                p {
                    font-size: 14px;
                    line-height: 20px;
                }
            }
        }
        .portfolio-detail-description {
            margin-top: 24px;
            padding: 24px;
        }
        .portfolio-gallery {
            margin-top: 24px;
            .portfolio-gallery-item {
                height: 160px;
            }
        }
    }
    .about-container {
        .banner {
            height: 120px;
            .banner-title {
                font-size: 28px;
                line-height: 36px;
            }
        }
    }
    .why-us-wrapper {
        .why-us {
            padding: 30px 0;
            .why-us-container {
                .mobile-why-us-slide {
                    margin-top: 40px;
                    .mobile-why-us-item {
                        width: 343px;
                        .item-image {
                            height: 350px;
                        }
                    }
                }
            }
        }
    }
    .blog-detail-container {
        margin: 20px auto 0;
        .breadCrumb {
            display: none;
        }
        .blog-detail {
            margin-top: 0;
            .blog-detail-main {
                .blog-image {
                    height: 400px;
                }
                .blog-title {
                    font-size: 28px;
                    line-height: 36px;
                }
            }
        }
    }
    .service-detail-container {
        margin: 20px auto 0;
        .breadCrumb {
            display: none;
        }
        .service-detail-hero {
            margin-top: 0;
            height: 350px;
            .hero-content {
                padding: 20px;
                .hero-title {
                    font-size: 28px;
                    line-height: 36px;
                }
                .hero-links {
                    margin-top: 20px;
                    gap: 14px;
                }
            }
        }
        .service-advantages {
            margin-top: 24px;
            padding: 20px;
            .advantage-item {
                gap: 14px;
            }
        }
        .service-detail-description {
            margin-top: 24px;
            padding: 20px;
            .description-title {
                font-size: 24px;
                line-height: 36px;
            }
        }
    }
    .service-step {
        padding: 30px 0;
        margin-top: 80px;
        .service-step-container {
            .section-title {
                font-size: 24px;
                line-height: 36px;
                max-width: 100%;
            }
            .sub-title {
                max-width: 100%;
            }
            .service-steps {
                grid-template-columns: repeat(1, 1fr);
                .step-item {
                    .step-image {
                        height: 340px;
                    }
                }
            }
        }
    }
}
@media only screen and (max-width: 575px) {
    .home-hero {
        .hero-prev,
        .hero-next {
            display: none;
        }
        .home-hero-main {
            height: 350px;
            .home-hero-content {
                padding: 20px;
                justify-content: flex-end;
                padding-bottom: 44px;
                .hero-title {
                    font-size: 24px;
                    line-height: 32px;
                    max-width: 100%;
                }
                .hero-subtitle {
                    font-size: 13px;
                    line-height: 18px;
                    margin-top: 6px;
                    max-width: 280px;
                }
                .hero-link {
                    margin-top: 12px;
                    padding: 10px 18px;
                    p {
                        font-size: 14px;
                        line-height: 20px;
                    }
                }
            }
        }
    }
    .home-about {
        .home-about-images {
            max-width: 100%;
            min-width: 0;
            height: 260px;
            padding-right: 0;
            .image-large {
                max-width: 100%;
                height: 200px;
            }
            .image-small {
                max-width: 200px;
                height: 150px;
            }
        }
        .home-about-content {
            .section-title {
                font-size: 24px;
                line-height: 32px;
            }
            .description {
                margin-top: 24px;
            }
            .more {
                margin-top: 24px;
            }
        }
    }
    .home-services {
        margin-top: 80px;
        padding: 30px 0;
        .home-services-container {
            .home-services-head {
                flex-direction: column;
                align-items: flex-start;
            }
            .home-services-cards {
                grid-template-columns: repeat(1, 1fr);
                .service-card {
                    .description {
                        display: block;
                        height: auto;
                        overflow: auto;
                    }
                }
            }
        }
    }
    .home-blog {
        margin: 80px auto 0;
        .home-blog-head {
            flex-direction: column;
            align-items: flex-start;
        }
        .home-blog-slide {
            .blog-card {
                width: 343px;
            }
        }
    }
    .home-portfolio {
        .home-portfolio-head {
            flex-direction: column;
            align-items: flex-start;
        }
        .home-portfolio-items {
            .home-portfolio-item {
                height: 300px;
            }
        }
    }
    footer {
        .footer-container {
            .footer-main {
                grid-template-columns: repeat(1, 1fr);
            }
        }
        .footerDecoration {
            max-width: 100%;
        }
    }
    .all-service-container {
        .all-services {
            grid-template-columns: repeat(1, 1fr);
            .service-card {
                .description {
                    display: block;
                    height: auto;
                    overflow: auto;
                }
            }
        }
    }
    .all-blog-container {
        .all-blogs {
            grid-template-columns: repeat(1, 1fr);
            .blog-card {
                .card-image {
                    height: 240px;
                }
            }
        }
    }
    .all-portfolio-container {
        .all-portfolio {
            grid-template-columns: repeat(1, 1fr);
            .portfolio-card {
                .card-image {
                    height: 240px;
                }
            }
        }
    }
    .all-special-campaing-container {
        .all-special-campaing {
            grid-template-columns: repeat(1, 1fr);
            .special-campaing-card {
                .card-image {
                    height: 240px;
                }
            }
        }
    }
    .boxes-container {
        .all-boxes {
            grid-template-columns: repeat(1, 1fr);
            .box-card {
                .card-image {
                    height: 244px;
                }
            }
        }
    }
    .box-detail-container {
        .box-detail-main {
            .box-image {
                height: 340px;
            }
            .detail-right {
                .detail-contact {
                    flex-direction: column;
                    .call {
                        width: 100%;
                    }
                }
            }
        }
    }
    .portfolio-detail-container {
        .portfolio-gallery {
            grid-template-columns: repeat(1, 1fr);
            .portfolio-gallery-item {
                height: 240px;
            }
        }
    }
    .why-us-wrapper {
        .why-us {
            .why-us-container {
                .mobile-why-us-slide {
                    .mobile-why-us-item {
                        width: 323px;
                        .item-image {
                            height: 330px;
                        }
                    }
                }
            }
        }
    }
    .blog-detail-container {
        .blog-detail {
            .blog-detail-main {
                .blog-image {
                    height: 350px;
                }
            }
        }
    }
    .service-detail-container {
        .service-detail-hero {
            margin-top: 0;
            height: 400px;
            .hero-content {
                .hero-title {
                    font-size: 24px;
                    line-height: 33px;
                }
            }
        }
        .service-advantages {
            grid-template-columns: repeat(1, 1fr);
        }
    }
    .service-step {
        .service-step-container {
            .service-steps {
                .step-item {
                    .step-image {
                        height: 240px;
                    }
                }
            }
        }
    }
}
