.barra-iconos h5 {
	font-size: 16px;
	font-weight: 600;
}

.video-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: calc(120vh - 5px);
  transform: translate(-50%, -50%);
  border: 0;
}

@media (min-aspect-ratio: 16/9) {
  .video-container iframe {
	/* height = 100 * (9 / 16) = 56.25 */
	height: 86.25vw;
  }

  #welcome {
	height: calc(56.25vw - 85px);
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-container iframe {
	/* width = 100 / (9 / 16) = 177.777777 */
	width: 177.78vh;
  }
}

@media(max-width:768px){
	#background-video, .videobg, .videobg .video-warp
	{
		max-height: 500px !important;
	}
	
	.videobg .video-warp
	{
		height: 500px !important;
	}
	
	.videobg .video-warp img {
		padding-top: 120px;
	}
	
	.videobg .video-warp h1
	{
		font-size: 3rem !important;
	}
	
	#background-video
	{
		display: none
	}
}

.videobg .video-warp {
	overflow-y: auto;
	overflow-x: hidden;
}

#formularioBanner
{
	background-color: rgba(33, 46, 64, 0.8);
	border-radius: 15px;
	color: #FFF;
	padding: 20px 50px;
	margin-top: 100px;
}

#formularioBanner h3
{
	color: var(--color-1);
	font-weight: 600;
	font-size: 24px;
}

.wpcf7-form
{
	margin-top: 15px;
}

.wpcf7-submit
{
	background-color: var(--color-1);
	color: #FFF;
	width: 100%;
	border: 0;
	border-radius: 5px;
	font-weight: bold;
	text-transform: uppercase;
	padding-top: 5px;
	padding-bottom: 5px;
}

@media(max-width:768px){
	#formularioBanner
	{
		background-color: rgba(33, 46, 64, 0.8);
		border-radius: 0px;
		color: #FFF;
		text-align: center;
		padding: 20px 20px;
		margin-top: 0px;
	}
}