/**
 * This file is part of the O2System Venus UI Framework package.
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 * @author         Steeve Andrian Salim
 * @copyright      Copyright (c) Steeve Andrian Salim
 */
// ------------------------------------------------------------------------

/**
 * Sass Jumbotron
 * 
 * @author  Teguh Rianto
 * @package Bootstrap/Components
 */
.jumbotron {
  padding: $jumbotron-padding ($jumbotron-padding / 2);
  margin-bottom: $jumbotron-padding;
  background-color: $jumbotron-bg;
  @include border-radius($border-radius-lg);

  @include media-breakpoint-up(sm) {
    padding: ($jumbotron-padding * 2) $jumbotron-padding;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  @include border-radius(0);
}

.jumbotron{
	padding: 4rem;
	&.jumbotron-bg{
		background-size: cover;
		color: $white;
	}

	&.jumbotron-video{
		position: relative;
		z-index: 2;
		overflow: hidden;

		video{
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			overflow: hidden;
			z-index: 1;
			width:100%;
		}

		h1, p{
			z-index: 5;
			position: relative;
			color: $white;
		}
	}
}
