/* fleetveiw-hero css */
.fleetveiw-hero {
    --gap-x: 2.5rem;
    padding-top: 22.2rem;
    padding-bottom: 14.6rem;
    background-repeat: no-repeat;

}
.fleetveiw-hero .hero-single-content {
    max-width: 100%;
    gap: 0 var(--gap-x);
}
.fleetveiw-hero .hero-single-content-inner {
    width: calc(calc(50% - (var(--gap-x) / 2)) / 1);
}
.fleetveiw-hero .hero-single-content-text {
    color: rgba(var(--light-rgb), 0.55);;
}
.fleetveiw-hero-btn-group { margin-top: 3.2rem; }
.fleetveiw-hero-video {
    width: calc(calc(50% - (var(--gap-x) / 2)) / 1);
    position: relative;
    display: flex;
    border-radius: 1rem;
    background: #1E1D1D;
    padding: 1.8rem 1.6rem;
    justify-content: center;
    align-items: center;
}
.fleetveiw-hero-video .video-wrapper {
    position: static;
	height: 100%;
    border-radius: 1rem;
}

@media (max-width: 1050px) {
    .fleetveiw-hero {
        --width: 50rem;
        padding-top: 13.5rem;
        padding-bottom: 8.5rem;
    }
}
@media (max-width: 991px) {
    .fleetveiw-hero {
        padding-top: 11.5rem;
        padding-bottom: 6.5rem;
    }
    .fleetveiw-hero {
        --width: 100%;
    }
    .fleetveiw-hero .hero-single-content {
        max-width: 100%;
        gap: var(--gap-x);
    }
    .fleetveiw-hero .hero-single-content-inner,
    .fleetveiw-hero-video {
        width: 100%;
    }
	.fleetveiw-hero-btn-group {
        margin-top: 2.2rem; 
        align-items: flex-start;
    }
}