/* Layout Marquee*/
.marquee_section {
    margin: 0 0 70px !important;
    z-index: 1;
}

/* .marquee_section h1, */
.marquee_section h2,
.marquee_section h3 {
    font-weight: normal !important;
    font-family: var(--main-font) !important;
}

.marquee_section h1 {
    font-size: 17.5px;
    margin-bottom: 0 !important;
    font-weight: 700 !important;
}

.marquee_section h2 {
    /* font-size: 14px; */
    font-size: 17.5px;
    font-weight: 700 !important;
}

.marquee_section h3 {
    font-size: 12px;
}

.marquee_container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee_track {
    display: inline-block;
    white-space: nowrap;
    /* animation: scroll-left 15s linear infinite; */

    font-weight: bold;
    cursor: pointer;
}

.marquee_item {
    display: inline-block;
    /* padding: 40px 10px; */
    padding: 18px 0;
    font-size: 16px;
}

.marquee_section.home_view_bg_section{
    padding: 0 !important;
}

.marquee_container:hover .marquee_track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@media only screen and (max-width: 610px){
    .marquee_section {
		margin: 0px 0 50px!important;
	}

    .marquee_section h1 {
        font-size: 15.5px;
    }
}