.section-scrolling-images-block {
	margin: 0!important;
	border-top-width: 1px!important;
}

.section-scrolling-images-block {
    padding: 80px 0 60px!important;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.section-scrolling-images-block.no-header {
	padding: 20px!important;
}

.section-scrolling-images-block .section-inner {
    width: 100%;
	display: flex;
	flex-flow: column nowrap;
}

.section-scrolling-images-block .section-inner .section-header {
    width: 100%;
    max-width: 902px;
    margin: 0 auto;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    margin-bottom: 40px;
}
.section-scrolling-images-block.no-header .section-inner .section-header {
	padding: 0;
	margin: 0;
}
.section-scrolling-images-block .section-inner .section-header .section-sub-title {
	color: #F96257;
	margin: 0;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
}
.section-scrolling-images-block .section-inner .section-header .section-header-inner {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
}
.section-scrolling-images-block .section-inner .section-header h2 {
    margin: 0;
    font-family: Avenir;
    font-weight: 800;
    font-style: SemiBold;
    font-size: 46px;
    leading-trim: NONE;
    line-height: 54px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #354978;
    text-align: center;
}

.section-scrolling-images-block .section-inner .section-header .section-description * {
    font-family: Avenir;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    color: #505050;
}

.section-scrolling-images-block .section-inner .section-header .section-description *:first-child {
    margin-top: 0;
}

.section-scrolling-images-block .section-inner .section-header .section-description *:last-child {
    margin-bottom: 0;
}

.section-scrolling-images-block .section-inner .marquee-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    width: 100%;
}

.marquee-row {
    position: relative;
    overflow: hidden;
    display: flex;
    /* Adjust as needed */
}

.marquee-content {
    display: flex;
    will-change: transform;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.marquee-row:first-child .marquee-content {
	animation-name: marquee-left-to-right;
}

.marquee-row:last-child .marquee-content {
	animation-name: marquee-right-to-left;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
    padding: 0 10px;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* Keyframes for animations */
/*! keep */
@-webkit-keyframes marquee-left-to-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}
/*! keep */
@keyframes marquee-left-to-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}
/*! keep */
@-webkit-keyframes marquee-right-to-left {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}
/*! keep */
@keyframes marquee-right-to-left {
    from {
        transform: translateX(0%);
    }

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

@media (max-width: 768px) {
    .section-scrolling-images-block {
        padding: 40px 0 20px!important;
    }

    .section-scrolling-images-block .section-inner .section-header {
        margin-bottom: 40px;
    }
	.section-scrolling-images-block .section-inner .section-header .section-header-inner {
		gap: 12px;
	}

    .section-scrolling-images-block .section-inner .section-header h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .section-scrolling-images-block .section-inner .section-header .section-description * {
        font-size: 18px;
        line-height: 26px;
    }

    .marquee-item {
        height: 180px;
        padding: 0 5px;
    }

    .marquee-container {
        gap: 3px;
    }
}
