/* SECTION WRAPPER */
.ucs-hero-section-wrap {
    margin-bottom: 80px;
}

/* GRID */
.ucs-hero-grid-container {
    display: grid;
    grid-template-columns: 40% 60%;
}

/* LEFT BLOCK */
.ucs-hero-left-block {
    padding-top: 260px;
    padding-left: 150px;
}

/* HEADING */
.ucs-hero-heading-main {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* SUBTEXT */
.ucs-hero-subtext {
    font-size: 26px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}


/* RIGHT BLOCK */
.ucs-hero-right-block {
    width: 100%;
}

/* IMAGE */
.ucs-hero-image-main {
    width: 100%;
    height: auto;
    display: block;
}

/* SECTION */
.ucs-logo-marquee-section {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 70px 0;
    position: relative;
}

/* TRACK */
.ucs-logo-marquee-track {
    display: flex;
    width: max-content;
    animation: ucsLogoScrollAnim 25s linear infinite;
}

/* ITEM */
.ucs-logo-item-box {
    flex: 0 0 auto;
    padding: 0 40px;
}

/* IMAGE */
.ucs-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    opacity: 0.8;
    transition: 0.25s;
}

.ucs-logo-img:hover {
    opacity: 1;
    filter: grayscale(10%)
}

/* ANIMATION */
@keyframes ucsLogoScrollAnim {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.ucs-logo-marquee-section:hover .ucs-logo-marquee-track {
    animation-play-state: paused;
}

/* LEFT + RIGHT FADE (WHITE BLUR EFFECT) */
.ucs-logo-marquee-section::before,
.ucs-logo-marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* LEFT FADE */
.ucs-logo-marquee-section::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}

/* RIGHT FADE */
.ucs-logo-marquee-section::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}