section[data-module="home-banner"] {
    --hb-white: #ffffff;
    --hb-primary: #0c9bcb;
    --hb-light: #73d1ff;
    --hb-dark: #2a2449;
    --hb-bluegrey: #475c7a;
    --hb-grey: #d1d3d4;
    --hb-black: #151318;

    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 760px;
    overflow: hidden;
    background: var(--hb-black);
    color: var(--hb-white);
    font-family: "Roboto", Arial, sans-serif !important;
}

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

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

/* Top white overlay */
section[data-module="home-banner"] .home-banner-top-overlay {
    position: absolute;
    inset: 0;
    z-index: 7;
    pointer-events: none;
	background: linear-gradient(
	  180deg,
	  rgba(255, 255, 255, 0.80) 0%,
	  rgba(255, 255, 255, 0.00) 35%,
	  rgba(255, 255, 255, 0.00) 100%
	);
}

/* Technology animation layer */
section[data-module="home-banner"] .home-banner-tech-layer {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    overflow: hidden;
}

section[data-module="home-banner"] .home-banner-tech-layer::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(115, 209, 255, 0.00) 0,
            rgba(115, 209, 255, 0.00) 74px,
            rgba(115, 209, 255, 0.10) 75px,
            rgba(115, 209, 255, 0.00) 76px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(115, 209, 255, 0.00) 0,
            rgba(115, 209, 255, 0.00) 84px,
            rgba(115, 209, 255, 0.06) 85px,
            rgba(115, 209, 255, 0.00) 86px
        );
    animation: hbCircuitMove 9s linear infinite;
}

section[data-module="home-banner"] .home-banner-tech-layer::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -45%;
    width: 32%;
    height: 180%;
    opacity: 0;
    background: linear-gradient(
        90deg,
        rgba(115, 209, 255, 0.00) 0%,
        rgba(115, 209, 255, 0.12) 42%,
        rgba(255, 255, 255, 0.16) 50%,
        rgba(115, 209, 255, 0.12) 58%,
        rgba(115, 209, 255, 0.00) 100%
    );
    transform: rotate(18deg) translateX(-120%);
    animation: hbDiagonalScan 6.8s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

/* Slider */
section[data-module="home-banner"] .home-banner-slider {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

section[data-module="home-banner"] .home-banner-track {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

section[data-module="home-banner"] .home-banner-slide {
    position: relative;
    width: 100%;
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}

section[data-module="home-banner"] .home-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--hb-black);
}

section[data-module="home-banner"] .home-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: none !important;
    animation: none !important;
}

section[data-module="home-banner"] .home-banner-bg-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    /*background:
        linear-gradient(
            90deg,
            rgba(21, 19, 24, 0.86) 0%,
            rgba(21, 19, 24, 0.58) 30%,
            rgba(21, 19, 24, 0.18) 58%,
            rgba(21, 19, 24, 0.02) 100%
        ),
        linear-gradient(
            180deg,
            rgba(21, 19, 24, 0.12) 0%,
            rgba(21, 19, 24, 0.08) 48%,
            rgba(21, 19, 24, 0.48) 100%
        );*/
}

/* Desktop */
section[data-module="home-banner"] .home-banner-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    padding: 135px 145px 150px;
    display: flex;
    align-items: center;
}

section[data-module="home-banner"] .home-banner-content {
    width: 100%;
    max-width: 1200px;
}

/* Opening animation */
section[data-module="home-banner"] .home-banner-title,
section[data-module="home-banner"] .home-banner-tag,
section[data-module="home-banner"] .home-banner-description,
section[data-module="home-banner"] .home-banner-indicators,
section[data-module="home-banner"] .home-banner-brand-wrap {
    opacity: 0;
}

section[data-module="home-banner"].is-ready .home-banner-title {
    animation: hbTitleReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

section[data-module="home-banner"].is-ready .home-banner-tag {
    animation: hbTagReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) calc(0.28s + var(--tag-delay, 0s)) forwards;
}

section[data-module="home-banner"].is-ready .home-banner-description {
    animation: hbTextReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

section[data-module="home-banner"].is-ready .home-banner-indicators {
    animation: hbTextReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.72s forwards;
}

section[data-module="home-banner"].is-ready .home-banner-brand-wrap {
    animation: hbBrandReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.82s forwards;
}

/* Title */
section[data-module="home-banner"] .home-banner-title {
    position: relative;
    margin: 0 0 22px;
    font-size: 65px;
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--hb-white);
    overflow: hidden;
}

section[data-module="home-banner"] .home-banner-title::after {
    content: "";
    position: absolute;
    left: -20%;
    bottom: 0;
    width: 42%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(115, 209, 255, 0.00) 0%,
        rgba(115, 209, 255, 0.85) 50%,
        rgba(115, 209, 255, 0.00) 100%
    );
    opacity: 0;
}

section[data-module="home-banner"].is-ready .home-banner-title::after {
    animation: hbTitleLine 1.15s ease 0.18s forwards;
}

section[data-module="home-banner"] .home-banner-title span {
    color: var(--hb-primary);
    text-shadow: 0 0 16px rgba(12, 155, 203, 0.35);
}

/* Tags */
section[data-module="home-banner"] .home-banner-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
    margin: 0 0 22px;
}

section[data-module="home-banner"] .home-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 7px 17px 7px 8px;
    border-radius: 999px;
    border: 1px solid rgba(115, 209, 255, 0.48);
    background: rgba(12, 155, 203, 0.22);
    box-shadow: inset 0 0 14px rgba(115, 209, 255, 0.13);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

section[data-module="home-banner"] .home-banner-tag:hover {
    background: rgba(115, 209, 255, 0.22);
    border-color: rgba(115, 209, 255, 0.88);
    box-shadow:
        inset 0 0 14px rgba(115, 209, 255, 0.18),
        0 0 18px rgba(115, 209, 255, 0.22);
}

section[data-module="home-banner"] .home-banner-tag-icon {
    position: relative;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 50%;
    background: var(--hb-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    box-shadow: 0 0 10px rgba(115, 209, 255, 0.28);
    animation: hbTagEnergy 2.8s ease-in-out infinite;
}

section[data-module="home-banner"] .home-banner-tag-icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(115, 209, 255, 0.34);
    opacity: 0;
    animation: hbTagRing 1.0s ease-in-out infinite;
}

section[data-module="home-banner"] .home-banner-tag-icon img {
    position: relative;
    z-index: 2;
    width: 19px;
    height: 19px;
    object-fit: contain;
    display: block;
}

section[data-module="home-banner"] .home-banner-tag-text {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    color: var(--hb-white);
    white-space: nowrap;
}

/* Description */
section[data-module="home-banner"] .home-banner-description {
    position: relative;
    overflow: hidden;
    font-family: "Orbitron", "Roboto", Arial, sans-serif !important;
}

section[data-module="home-banner"] .home-banner-description::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 38%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(115, 209, 255, 0.16),
        transparent
    );
}

section[data-module="home-banner"].is-ready .home-banner-description::after {
    animation: hbTextScan 1.05s ease 0.7s forwards;
}

section[data-module="home-banner"] .home-banner-description p {
    margin: 0;
    max-width: 900px;
    font-size: 25px;
    line-height: 1.35;
    font-weight: 400;
    color: var(--hb-white);
}

/* Indicators */
section[data-module="home-banner"] .home-banner-indicators {
    position: relative;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 26px;
}

section[data-module="home-banner"] .home-banner-indicator {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.62);
    padding: 0;
    cursor: pointer;
    transition:
        width 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

section[data-module="home-banner"] .home-banner-indicator:hover {
    background: var(--hb-light);
}

section[data-module="home-banner"] .home-banner-indicator.is-active {
    width: 24px;
    background: var(--hb-primary);
    box-shadow: 0 0 12px rgba(115, 209, 255, 0.55);
}

/* Arrows */
section[data-module="home-banner"] .home-banner-arrow {
    position: absolute;
    top: 50%;
    z-index: 9;
    width: 74px;
    height: 50px;
    border: 0;
    border-radius: 20px;
    background: var(--hb-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
    transform: translateY(-50%);
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease;
}

section[data-module="home-banner"] .home-banner-arrow::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    border: 1px solid rgba(115, 209, 255, 0.00);
    opacity: 0;
    transition: opacity 0.35s ease, border-color 0.35s ease;
}

section[data-module="home-banner"] .home-banner-arrow:hover::before {
    opacity: 1;
    border-color: rgba(115, 209, 255, 0.65);
}

section[data-module="home-banner"] .home-banner-arrow img {
    width: 18px;
    height: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(13%) sepia(25%) saturate(1288%) hue-rotate(210deg) brightness(89%) contrast(91%);
    transition: filter 0.35s ease;
}

section[data-module="home-banner"] .home-banner-arrow:hover {
    background: var(--hb-light);
    box-shadow: 0 10px 30px rgba(115, 209, 255, 0.28);
}

section[data-module="home-banner"] .home-banner-arrow:hover img {
    filter: none;
}

section[data-module="home-banner"] .home-banner-arrow.is-disabled {
    background: rgba(125, 135, 149, 0.82);
    pointer-events: none;
    cursor: default;
    box-shadow: none;
}

section[data-module="home-banner"] .home-banner-arrow.is-disabled img {
    filter: none;
    opacity: 0.95;
}

section[data-module="home-banner"] .home-banner-arrow-prev {
    left: 35px;
}

section[data-module="home-banner"] .home-banner-arrow-next {
    right: 35px;
}

section[data-module="home-banner"] .home-banner-arrow-next img {
    transform: rotate(180deg);
}

/* Brand logo */
section[data-module="home-banner"] .home-banner-brand-wrap {
    position: absolute;
    left: 145px;
    right: 145px;
    bottom: 58px;
    z-index: 8;
    overflow: hidden;
}

section[data-module="home-banner"] .home-banner-brand-wrap::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 1px;
    opacity: 0.42;
    background: linear-gradient(
        90deg,
        rgba(115, 209, 255, 0.00) 0%,
        rgba(115, 209, 255, 0.36) 18%,
        rgba(12, 155, 203, 0.66) 50%,
        rgba(115, 209, 255, 0.36) 82%,
        rgba(115, 209, 255, 0.00) 100%
    );
}

section[data-module="home-banner"] .home-banner-brand-wrap::after {
    content: "";
    position: absolute;
    top: -15px;
    left: -20%;
    width: 20%;
    height: 3px;
    border-radius: 999px;
    background: rgba(115, 209, 255, 0.75);
    box-shadow: 0 0 12px rgba(115, 209, 255, 0.55);
    animation: hbBrandSignal 5.8s linear infinite;
}

section[data-module="home-banner"] .home-banner-brand-viewport {
    width: 100%;
    overflow: hidden;
}

section[data-module="home-banner"] .home-banner-brand-track {
    display: flex;
    align-items: center;
    gap: 55px;
    width: max-content;
}

section[data-module="home-banner"] .home-banner-brand-track.is-loop {
    animation: hbBrandLoop 26s linear infinite;
}

section[data-module="home-banner"] .home-banner-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

section[data-module="home-banner"] .home-banner-brand-item img {
    max-height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.96;
    transition: opacity 0.35s ease, filter 0.35s ease;
}

section[data-module="home-banner"] .home-banner-brand-item:hover img {
    opacity: 1;
}

/* Keyframes */
@keyframes hbCircuitMove {
    0% {
        transform: translate3d(-2%, 0, 0);
    }

    100% {
        transform: translate3d(2%, 0, 0);
    }
}

@keyframes hbDiagonalScan {
    0% {
        transform: rotate(18deg) translateX(-130%);
        opacity: 0;
    }

    12% {
        opacity: 0.26;
    }

    48% {
        opacity: 0.26;
    }

    62% {
        transform: rotate(18deg) translateX(360%);
        opacity: 0;
    }

    100% {
        transform: rotate(18deg) translateX(360%);
        opacity: 0;
    }
}

@keyframes hbTitleReveal {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
        filter: blur(4px);
    }

    55% {
        filter: blur(0);
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        filter: blur(0);
    }
}

@keyframes hbTitleLine {
    0% {
        left: -42%;
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes hbTagReveal {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
        filter: blur(3px);
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        filter: blur(0);
    }
}

@keyframes hbTextReveal {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
        filter: blur(3px);
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        filter: blur(0);
    }
}

@keyframes hbTextScan {
    0% {
        left: -40%;
    }

    100% {
        left: 110%;
    }
}

@keyframes hbBrandReveal {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

@keyframes hbTagEnergy {
    0%, 100% {
        box-shadow: 0 0 10px rgba(115, 209, 255, 0.25);
    }

    50% {
        box-shadow: 0 0 20px rgba(115, 209, 255, 0.55);
    }
}

@keyframes hbTagRing {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0;
    }

    45% {
        transform: scale(1.16);
        opacity: 0.55;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }
}

@keyframes hbBrandSignal {
    0% {
        left: -20%;
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    88% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes hbBrandLoop {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Laptop */
@media (max-width: 1440px) {
    section[data-module="home-banner"] {
        min-height: 650px;
    }

    section[data-module="home-banner"] .home-banner-inner {
        padding: 110px 150px 135px;
    }

    section[data-module="home-banner"] .home-banner-content {
        max-width: 690px;
    }

    section[data-module="home-banner"] .home-banner-title {
        font-size: 52px;
        line-height: 1.06;
        margin-bottom: 20px;
    }

    section[data-module="home-banner"] .home-banner-tags {
        gap: 12px;
        margin-bottom: 22px;
    }

    section[data-module="home-banner"] .home-banner-tag {
        min-height: 42px;
        padding: 7px 15px 7px 8px;
    }

    section[data-module="home-banner"] .home-banner-tag-icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    section[data-module="home-banner"] .home-banner-tag-icon img {
        width: 17px;
        height: 17px;
    }

    section[data-module="home-banner"] .home-banner-tag-text {
        font-size: 14px;
    }

    section[data-module="home-banner"] .home-banner-description p {
        max-width: 650px;
        font-size: 20px;
        line-height: 1.4;
    }

    section[data-module="home-banner"] .home-banner-arrow {
        width: 70px;
        height: 48px;
        border-radius: 19px;
    }

    section[data-module="home-banner"] .home-banner-arrow-prev {
        left: 34px;
    }

    section[data-module="home-banner"] .home-banner-arrow-next {
        right: 34px;
    }

    section[data-module="home-banner"] .home-banner-brand-wrap {
        left: 52px;
        right: 52px;
        bottom: 46px;
    }

    section[data-module="home-banner"] .home-banner-brand-item img {
        max-height: 42px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    section[data-module="home-banner"] {
        height: auto;
        min-height: 720px;
    }

    section[data-module="home-banner"] .home-banner-slider,
    section[data-module="home-banner"] .home-banner-track,
    section[data-module="home-banner"] .home-banner-slide {
        min-height: 720px;
        height: auto;
    }

    section[data-module="home-banner"] .home-banner-inner {
        min-height: 720px;
        padding: 110px 28px 145px;
        align-items: center;
    }

    section[data-module="home-banner"] .home-banner-content {
        max-width: 560px;
    }

    section[data-module="home-banner"] .home-banner-title {
        font-size: 44px;
        line-height: 1.08;
        margin-bottom: 18px;
    }

    section[data-module="home-banner"] .home-banner-description p {
        max-width: 520px;
        font-size: 18px;
        line-height: 1.45;
    }

    section[data-module="home-banner"] .home-banner-arrow {
        width: 62px;
        height: 44px;
        border-radius: 17px;
    }

    section[data-module="home-banner"] .home-banner-arrow-prev {
        left: 24px;
    }

    section[data-module="home-banner"] .home-banner-arrow-next {
        right: 24px;
    }

    section[data-module="home-banner"] .home-banner-brand-wrap {
        left: 28px;
        right: 28px;
        bottom: 38px;
    }

    section[data-module="home-banner"] .home-banner-brand-item img {
        max-height: 34px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    section[data-module="home-banner"] {
        height: auto;
        min-height: 680px;
    }

    section[data-module="home-banner"] .home-banner-slider,
    section[data-module="home-banner"] .home-banner-track,
    section[data-module="home-banner"] .home-banner-slide {
        min-height: 680px;
        height: auto;
    }

    section[data-module="home-banner"] .home-banner-bg-shade {
        background:
            linear-gradient(
                180deg,
                rgba(21, 19, 24, 0.16) 0%,
                rgba(21, 19, 24, 0.40) 42%,
                rgba(21, 19, 24, 0.84) 100%
            );
    }

    section[data-module="home-banner"] .home-banner-inner {
        min-height: 680px;
        padding: 92px 20px 118px;
        align-items: center;
    }

    section[data-module="home-banner"] .home-banner-content {
        max-width: 100%;
        position: relative;
        z-index: 10;
    }

    section[data-module="home-banner"] .home-banner-title {
        max-width: 310px;
        font-size: 31px;
        line-height: 1.14;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
    }

    section[data-module="home-banner"] .home-banner-tags {
        width: 100%;
        max-width: 360px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 9px;
        margin-bottom: 22px;
    }

    section[data-module="home-banner"] .home-banner-tag {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 7px 12px 7px 8px;
        gap: 8px;
        white-space: nowrap;
    }

    section[data-module="home-banner"] .home-banner-tag-icon {
        width: 26px;
        height: 26px;
        flex: 0 0 26px;
    }

    section[data-module="home-banner"] .home-banner-tag-icon img {
        width: 15px;
        height: 15px;
    }

    section[data-module="home-banner"] .home-banner-tag-text {
        font-size: 11px;
        line-height: 1;
        letter-spacing: 0;
        white-space: nowrap;
    }

    section[data-module="home-banner"] .home-banner-description p {
        max-width: 315px;
        font-size: 15px;
        line-height: 1.55;
    }

    section[data-module="home-banner"] .home-banner-indicators {
        margin-top: 18px;
    }

    section[data-module="home-banner"] .home-banner-arrow {
        top: 42%;
        width: 58px;
        height: 40px;
        border-radius: 16px;
    }

    section[data-module="home-banner"] .home-banner-arrow-prev {
        left: auto;
        right: 92px;
    }

    section[data-module="home-banner"] .home-banner-arrow-next {
        right: 20px;
    }

    section[data-module="home-banner"] .home-banner-arrow-prev.is-disabled {
        opacity: 0;
        visibility: hidden;
    }

    section[data-module="home-banner"] .home-banner-arrow img {
        width: 14px;
    }

    section[data-module="home-banner"] .home-banner-brand-wrap {
        left: 20px;
        right: 20px;
        bottom: 34px;
    }

    section[data-module="home-banner"] .home-banner-brand-track {
        gap: 36px;
    }

    section[data-module="home-banner"] .home-banner-brand-item img {
        max-height: 28px;
    }

    section[data-module="home-banner"] .home-banner-bg img {
        object-position: center center;
    }
}

/* Small mobile */
@media (max-width: 430px) {
    section[data-module="home-banner"] {
        min-height: 650px;
    }

    section[data-module="home-banner"] .home-banner-slider,
    section[data-module="home-banner"] .home-banner-track,
    section[data-module="home-banner"] .home-banner-slide {
        min-height: 650px;
    }

    section[data-module="home-banner"] .home-banner-inner {
        min-height: 650px;
        padding: 82px 18px 112px;
    }

    section[data-module="home-banner"] .home-banner-title {
        max-width: 300px;
        font-size: 29px;
    }

    section[data-module="home-banner"] .home-banner-tags {
        max-width: 100%;
        gap: 8px;
    }

    section[data-module="home-banner"] .home-banner-tag {
        min-height: 36px;
        padding: 6px 8px 6px 6px;
        gap: 6px;
    }

    section[data-module="home-banner"] .home-banner-tag-icon {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
    }

    section[data-module="home-banner"] .home-banner-tag-icon img {
        width: 14px;
        height: 14px;
    }

    section[data-module="home-banner"] .home-banner-tag-text {
        font-size: 9.8px;
    }

    section[data-module="home-banner"] .home-banner-description p {
        max-width: 350px;
        font-size: 14px;
    }

    section[data-module="home-banner"] .home-banner-arrow-prev {
        right: 88px;
        top: 43%;
    }

    section[data-module="home-banner"] .home-banner-arrow-next {
        right: 18px;
        top: 43%;
    }

    section[data-module="home-banner"] .home-banner-brand-item img {
        max-height: 26px;
    }
}