section[data-module="home-solutions-glance"] .home-solutions-logo-loop img {
    visibility: hidden;
}

section[data-module="home-solutions-glance"] .home-solutions-logo-loop-track{
	display:none !important;
}


section[data-module="home-solutions-glance"] {
    --hsg-white: #ffffff;
    --hsg-black: #17151b;
    --hsg-cyan: #0c9bcb;
    --hsg-light: #73d1ff;
    --hsg-bluegrey: #475c7a;
    --hsg-muted: rgba(255, 255, 255, 0.64);
    --hsg-line: rgba(255, 255, 255, 0.20);
    --hsg-inactive: #7a828c;

    position: relative;
    overflow: hidden;
    padding: 110px 0 0;
    color: var(--hsg-white);
    background:
        linear-gradient(
            180deg,
            #17151b 0%,
            #17151b 36%,
            #30394a 56%,
            #6f8297 72%,
            #c7d0db 88%,
            #ffffff 100%
        );
}

section[data-module="home-solutions-glance"],
section[data-module="home-solutions-glance"] * {
    box-sizing: border-box;
}

section[data-module="home-solutions-glance"] .home-solutions-title,
section[data-module="home-solutions-glance"] .home-solutions-title *,
section[data-module="home-solutions-glance"] .home-solutions-tab-title {
    font-family: "Orbitron", "Roboto", Arial, sans-serif !important;
}

section[data-module="home-solutions-glance"] .home-solutions-intro,
section[data-module="home-solutions-glance"] .home-solutions-intro p,
section[data-module="home-solutions-glance"] .home-solutions-panel-content,
section[data-module="home-solutions-glance"] .home-solutions-panel-content p,
section[data-module="home-solutions-glance"] .home-solutions-button,
section[data-module="home-solutions-glance"] .home-solutions-button * {
    font-family: "Roboto", Arial, sans-serif !important;
}

section[data-module="home-solutions-glance"] .home-solutions-inner {
    width: 100%;
    padding: 0 100px;
    position: relative;
    z-index: 2;
}

section[data-module="home-solutions-glance"] .home-solutions-content-area {
    position: relative;
    z-index: 3;
}

/* Heading */
section[data-module="home-solutions-glance"] .home-solutions-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 65px;
    align-items: center;
    margin-bottom: 52px;
}

section[data-module="home-solutions-glance"] .home-solutions-title {
    margin: 0;
    font-size: 54px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

section[data-module="home-solutions-glance"] .home-solutions-title span {
    color: var(--hsg-cyan);
}

section[data-module="home-solutions-glance"] .home-solutions-intro p {
    margin: 0;
    max-width: 940px;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.76);
}

/* Layout */
section[data-module="home-solutions-glance"] .home-solutions-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(360px, 0.85fr);
    gap: 0;
    align-items: stretch;
}

/* Preview */
section[data-module="home-solutions-glance"] .home-solutions-preview {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: #0f1118;
}

section[data-module="home-solutions-glance"] .home-solutions-panel {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(38px);
    transition:
        opacity 0.42s ease,
        visibility 0.42s ease,
        transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

section[data-module="home-solutions-glance"] .home-solutions-panel.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

section[data-module="home-solutions-glance"] .home-solutions-panel.is-leaving {
    z-index: 1;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: translateX(-24px);
}

section[data-module="home-solutions-glance"] .home-solutions-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

section[data-module="home-solutions-glance"] .home-solutions-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 38%,
            rgba(0, 0, 0, 0.45) 72%,
            rgba(0, 0, 0, 0.92) 100%
        );
    pointer-events: none;
}

section[data-module="home-solutions-glance"] .home-solutions-image img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: translateX(18px) scale(1);
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.45s ease;
}

section[data-module="home-solutions-glance"] .home-solutions-panel.is-active .home-solutions-image img {
    transform: translateX(0) scale(1);
}

/* Full panel clickable link */
section[data-module="home-solutions-glance"] .home-solutions-panel-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

/* Hover whole image / panel */
section[data-module="home-solutions-glance"] .home-solutions-panel.is-active:hover .home-solutions-image img {
    transform: translateX(0) scale(1.035);
}

section[data-module="home-solutions-glance"] .home-solutions-panel-content {
    position: absolute;
    left: 42px;
    bottom: 42px;
    z-index: 3;
    max-width: 760px;
    opacity: 0;
    transform: translateY(22px);
    pointer-events: none;
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

section[data-module="home-solutions-glance"] .home-solutions-panel.is-active .home-solutions-panel-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.14s;
}

section[data-module="home-solutions-glance"] .home-solutions-panel-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    color: #ffffff;
}

/* Preview card arrow */
section[data-module="home-solutions-glance"] .home-solutions-card-arrow {
    position: absolute;
    right: 38px;
    bottom: 32px;
    z-index: 4;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.45s ease,
        background 0.18s ease,
        transform 0.45s ease;
}

section[data-module="home-solutions-glance"] .home-solutions-panel.is-active .home-solutions-card-arrow {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.22s;
}

section[data-module="home-solutions-glance"] .home-solutions-card-arrow img {
    width: 18px;
    height: auto;
    display: block;
    transform: rotate(135deg);
    filter: brightness(0) saturate(100%) invert(8%) sepia(10%) saturate(880%) hue-rotate(195deg) brightness(88%) contrast(94%);
    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}

/* Hover arrow when whole panel is hovered */
section[data-module="home-solutions-glance"] .home-solutions-panel.is-active:hover .home-solutions-card-arrow,
section[data-module="home-solutions-glance"] .home-solutions-card-arrow:hover {
    background: var(--hsg-light);
    transform: translateY(-3px) !important;
}

section[data-module="home-solutions-glance"] .home-solutions-panel.is-active:hover .home-solutions-card-arrow img,
section[data-module="home-solutions-glance"] .home-solutions-card-arrow:hover img {
    transform: rotate(180deg);
    filter: brightness(0) saturate(100%) invert(8%) sepia(10%) saturate(880%) hue-rotate(195deg) brightness(88%) contrast(94%);
}

/* Right tabs */
section[data-module="home-solutions-glance"] .home-solutions-side {
    position: relative;
    min-height: 600px;
    padding: 0;
}

section[data-module="home-solutions-glance"] .home-solutions-tabs {
    width: 100%;
    border: 1px solid var(--hsg-line);
    border-left: 0;
}

section[data-module="home-solutions-glance"] .home-solutions-tab {
    width: 100%;
    min-height: 91px;
    padding: 20px 26px;
    border: 0;
    border-bottom: 1px solid var(--hsg-line);
    background: rgba(23, 28, 38, 0.58);
    color: var(--hsg-inactive);
    display: flex;
    align-items: center;
    gap: 22px;
    cursor: pointer;
    text-align: left;
    opacity: 0;
    transform: translateX(-56px);
    transition:
        background 0.12s ease,
        color 0.12s ease,
        border-color 0.12s ease;
}

section[data-module="home-solutions-glance"] .home-solutions-tab:last-child {
    border-bottom: 0;
}

section[data-module="home-solutions-glance"] .home-solutions-tab:hover {
    background: rgba(30, 37, 50, 0.72);
    color: rgba(255, 255, 255, 0.78);
}

section[data-module="home-solutions-glance"] .home-solutions-tab.is-active {
    background: var(--hsg-cyan);
    color: #ffffff;
    transition-delay: 0s;
}

section[data-module="home-solutions-glance"] .home-solutions-tab-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    border: 1px solid var(--hsg-inactive);
    color: var(--hsg-inactive);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition:
        border-color 0.12s ease,
        color 0.12s ease;
}

section[data-module="home-solutions-glance"] .home-solutions-tab-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
    filter: brightness(0) saturate(100%) invert(53%) sepia(8%) saturate(462%) hue-rotate(177deg) brightness(93%) contrast(88%);
    opacity: 1;
    transition: filter 0.12s ease;
}

section[data-module="home-solutions-glance"] .home-solutions-tab.is-active .home-solutions-tab-icon {
    border-color: #ffffff;
    color: #ffffff;
}

section[data-module="home-solutions-glance"] .home-solutions-tab.is-active .home-solutions-tab-icon img {
    filter: brightness(0) invert(1);
}

section[data-module="home-solutions-glance"] .home-solutions-tab-title {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 500;
    color: currentColor;
}

/* Button */
section[data-module="home-solutions-glance"] .home-solutions-button-wrap {
    position: absolute;
    left: 58px;
    bottom: 4px;
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

section[data-module="home-solutions-glance"] .home-solutions-button {
    width: 110px;
    height: 42px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--hsg-light);
    color: #15151a;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    transition: transform 0.3s ease;
}

section[data-module="home-solutions-glance"] .home-solutions-button::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: -118%;
    top: 0;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    transform: translate(0, 0);
    transition:
        transform 0.35s ease,
        border-radius 0.35s ease;
    pointer-events: none;
}

section[data-module="home-solutions-glance"] .home-solutions-button:hover::before {
    transform: translate(100%, -50%);
    border-radius: 0;
}

section[data-module="home-solutions-glance"] .home-solutions-button:active {
    transform: translate(4px, 4px);
}

section[data-module="home-solutions-glance"] .home-solutions-button-text {
    position: relative;
    z-index: 2;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    color: #15151a;
}

/* Logo loop bottom */
section[data-module="home-solutions-glance"] .home-solutions-logo-loop {
    position: relative;
    z-index: 1;
    width: calc(100% + 200px);
    margin-left: -100px;
    margin-right: -100px;
    margin-top: 105px;
    padding: 8px 0 95px;
    overflow: hidden;
}

section[data-module="home-solutions-glance"] .home-solutions-logo-loop::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 78%;
    z-index: 0;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.38) 34%,
            rgba(255, 255, 255, 0.82) 68%,
            #ffffff 100%
        );
    pointer-events: none;
}

section[data-module="home-solutions-glance"] .home-solutions-logo-loop-track {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: max-content;
    animation: homeSolutionsLogoLoopMove 30s linear infinite;
    will-change: transform;
}

section[data-module="home-solutions-glance"] .home-solutions-logo-loop-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 80px;
    padding-right: 80px;
}

section[data-module="home-solutions-glance"] .home-solutions-logo-loop-group img {
    display: block;
    width: 520px;
    max-width: none;
    height: auto;
    flex-shrink: 0;
}

@keyframes homeSolutionsLogoLoopMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Entrance animation */
section[data-module="home-solutions-glance"] .home-solutions-title,
section[data-module="home-solutions-glance"] .home-solutions-intro,
section[data-module="home-solutions-glance"] .home-solutions-preview {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.78s ease,
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

section[data-module="home-solutions-glance"].is-visible .home-solutions-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}

section[data-module="home-solutions-glance"].is-visible .home-solutions-intro {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.18s;
}

section[data-module="home-solutions-glance"].is-visible .home-solutions-preview {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.32s;
}

section[data-module="home-solutions-glance"].is-visible .home-solutions-tab {
    animation: hsgTabSlideIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

section[data-module="home-solutions-glance"].is-visible .home-solutions-tab:nth-child(1) {
    animation-delay: 0.34s;
}

section[data-module="home-solutions-glance"].is-visible .home-solutions-tab:nth-child(2) {
    animation-delay: 0.42s;
}

section[data-module="home-solutions-glance"].is-visible .home-solutions-tab:nth-child(3) {
    animation-delay: 0.50s;
}

section[data-module="home-solutions-glance"].is-visible .home-solutions-tab:nth-child(4) {
    animation-delay: 0.58s;
}

section[data-module="home-solutions-glance"].is-visible .home-solutions-button-wrap {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.72s;
}

@keyframes hsgTabSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-56px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Laptop */
@media (max-width: 1440px) {
    section[data-module="home-solutions-glance"] {
        padding: 95px 0 0;
    }

    section[data-module="home-solutions-glance"] .home-solutions-inner {
        padding: 0 60px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-title {
        font-size: 46px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-layout {
        grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.9fr);
    }

    section[data-module="home-solutions-glance"] .home-solutions-preview,
    section[data-module="home-solutions-glance"] .home-solutions-side {
        min-height: 520px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-panel-content {
        max-width: 630px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-tab {
        min-height: 82px;
        padding: 18px 22px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-tab-title {
        font-size: 22px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-logo-loop {
        width: calc(100% + 120px);
        margin-left: -60px;
        margin-right: -60px;
        margin-top: 90px;
        padding-bottom: 85px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-logo-loop-group {
        gap: 60px;
        padding-right: 60px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-logo-loop-group img {
        width: 430px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    section[data-module="home-solutions-glance"] {
        padding: 80px 0 0;
    }

    section[data-module="home-solutions-glance"] .home-solutions-inner {
        padding: 0 28px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-heading {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 38px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-title {
        font-size: 38px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-layout {
        display: flex;
        flex-direction: column;
    }

    section[data-module="home-solutions-glance"] .home-solutions-side {
        min-height: auto;
        order: 1;
        margin-bottom: 18px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-preview {
        min-height: 450px;
        order: 2;
    }

    section[data-module="home-solutions-glance"] .home-solutions-tabs {
        display: flex;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        border-left: 1px solid var(--hsg-line);
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    section[data-module="home-solutions-glance"] .home-solutions-tabs::-webkit-scrollbar {
        display: none;
    }

    section[data-module="home-solutions-glance"] .home-solutions-tab {
        flex: 0 0 280px;
        width: 280px;
        min-height: 78px;
        border-bottom: 0;
        border-right: 1px solid var(--hsg-line);
        scroll-snap-align: start;
    }

    section[data-module="home-solutions-glance"] .home-solutions-button-wrap {
        position: static;
        margin-top: 18px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-logo-loop {
        width: calc(100% + 56px);
        margin-left: -28px;
        margin-right: -28px;
        margin-top: 75px;
        padding-bottom: 70px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-logo-loop-track {
        animation-duration: 24s;
    }

    section[data-module="home-solutions-glance"] .home-solutions-logo-loop-group {
        gap: 42px;
        padding-right: 42px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-logo-loop-group img {
        width: 340px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    section[data-module="home-solutions-glance"] {
        padding: 68px 0 0;
    }

    section[data-module="home-solutions-glance"] .home-solutions-inner {
        padding: 0 20px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-heading {
        margin-bottom: 30px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-title {
        font-size: 31px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-intro p {
        font-size: 15px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-tabs {
        width: auto;
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 20px;
        border-left: 0;
        border-right: 0;
    }

    section[data-module="home-solutions-glance"] .home-solutions-tab {
        flex: 0 0 245px;
        width: 245px;
        min-height: 72px;
        padding: 16px 18px;
        gap: 14px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-tab-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-tab-icon img {
        width: 25px;
        height: 25px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-tab-title {
        font-size: 18px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-preview {
        min-height: 390px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-panel-content {
        left: 22px;
        right: 74px;
        bottom: 26px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-panel-content p {
        font-size: 15px;
        line-height: 1.48;
    }

    section[data-module="home-solutions-glance"] .home-solutions-card-arrow {
        right: 22px;
        bottom: 24px;
        width: 48px;
        height: 48px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-card-arrow img {
        width: 15px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-button {
        width: 102px;
        height: 38px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-button::before {
        width: 120px;
        height: 120px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-button-text {
        font-size: 16px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-logo-loop {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        margin-top: 60px;
        padding: 0 0 58px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-logo-loop-track {
        animation-duration: 20s;
    }

    section[data-module="home-solutions-glance"] .home-solutions-logo-loop-group {
        gap: 30px;
        padding-right: 30px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-logo-loop-group img {
        width: 250px;
    }
}

/* Small mobile */
@media (max-width: 430px) {
    section[data-module="home-solutions-glance"] {
        padding: 60px 0 0;
    }

    section[data-module="home-solutions-glance"] .home-solutions-title {
        font-size: 29px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-tab {
        flex-basis: 225px;
        width: 225px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-tab-title {
        font-size: 16px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-preview {
        min-height: 360px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-panel-content {
        left: 18px;
        right: 68px;
        bottom: 22px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-panel-content p {
        font-size: 14px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-card-arrow {
        right: 18px;
        bottom: 20px;
        width: 44px;
        height: 44px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-logo-loop {
        margin-top: 52px;
        padding-bottom: 48px;
    }

    section[data-module="home-solutions-glance"] .home-solutions-logo-loop-group img {
        width: 220px;
    }
}