.vimeo-background {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.vimeo-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16/9) {
  .vimeo-background iframe {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .vimeo-background iframe {
    width: 177.78vh;
  }
}


.yt-header {
  position: absolute;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.yt-header iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16/9) {
  .yt-header iframe {
        height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .yt-header iframe {
        width: 177.78vh;
  }
}




@media (max-width: 992px) {
        .page-header.page-header-modern.page-header-background.page-header-background-md {
                padding: 70px 0 30px !important;
        }
}


@media (max-width: 991px) {
    #home .owl-item {
        background-size: auto 94% !important;
		background-position: 100% 0 !important;
    }
	
    #home .owl-item:nth-child(1) {
		background-position: 90% 0 !important;
    }
	
    #home .owl-item:nth-child(2) {
		background-position: 80% 0 !important;
    }
	
    #home .owl-item:nth-child(3) {
		background-position: 85% 0 !important;
    }
	
    #home .owl-item:nth-child(4) {
		background-position: 77% 0 !important;
    }
	
    #home .owl-item:nth-child(5) {
		background-position: 83% 0 !important;
    }
	
    #home .owl-item:nth-child(6) {
		background-position: 65% 0 !important;
    }
	
    #home .owl-item:nth-child(7) {
		background-position: 72% 0 !important;
    }
}

/* Mobile Hamburger Menu Styling */
.header-btn-collapse-nav {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 8px !important;
}

.header-btn-collapse-nav:hover,
.header-btn-collapse-nav:focus,
.header-btn-collapse-nav:active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.header-btn-collapse-nav i {
    font-size: 28px !important;
    color: #fff !important;
}

/* SMS Button Tooltip */
.sms-tooltip {
    position: relative;
}

.sms-tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    white-space: normal;
    width: 300px;
    max-width: 90vw;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sms-tooltip::after {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    border: 8px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.95);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.sms-tooltip:hover::before,
.sms-tooltip:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* Mobile/Touch tooltip - shows on tap */
.sms-tooltip.show-tooltip::before,
.sms-tooltip.show-tooltip::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}