.no-mobile{
     display: block;
}

.mobile-only{
    display: none;
}

@media only screen and (max-width: 600px) {
    .no-mobile{
        display: none;
    }
    .mobile-only{
        display: block;
    }
    .section-main-title h1{
        font-size: 30px !important;
        line-height: 1.3;
    }
    .footer_widget{
        margin-top: 25px;
    }
    
    .footer_widget iframe{
        margin-bottom: 15px;
    }
}



/* Outer marquee container */
.marquee.style1 {
    max-width: 1920px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

/* Animated item */
.marquee.style1 .marquee__item {
    display: inline-block;
    flex-shrink: 0;
    min-width: max-content;
    will-change: transform;
    animation: marquee 35s linear infinite;
}

/* Inner content */
.marquee.style1 .marquee__item .banner-marque-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
}

/* Keyframes: no dead space before or after */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    99.999% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.section-main-title h1{
    font-size: 42px;
}

.breadcrumb_area {
    background-image: url("../images/bentonville-office-space.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
	padding: 120px 0;
}

.breadcrumb_area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8); /* 50% black overlay */
	z-index: 1;
}

.breadcrumb_area .container {
	position: relative;
	z-index: 2;
}

.call_area {
	background-image: url("../images/bentonville-office-space.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
	padding: 120px 0;
}

.call_area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8); /* 50% black overlay */
	z-index: 1;
}

.call_area .container {
	position: relative;
	z-index: 2;
}


@keyframes rotateme {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

@keyframes rotateme2{
from {
transform: rotate(0deg);
}
to {
transform: rotate(-360deg);
}
}

