/*======================================================
                            Video
  ======================================================*/

  #video-container {
	overflow:hidden;
	position:relative;
	max-height: 100%;
	margin-bottom: -10px;
  }
  
  video {
	min-width:100%;
	min-height:100%;
	width: 100%; 
  }
  
  .color-overlay {
	width: 100%;
	height: 100%;
	background:linear-gradient(to bottom,rgba(50, 60, 76, .5),rgba(144, 157, 108, .1));
	opacity: .8;
	position: absolute;
  }
  
  .content {
	position: absolute;
	inset: 0 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	text-align: center;
  }

  .content h2{
	  font-family: var(--header-font);
	  font-size: 1.5em;
	  color: white;
	  position: relative;
	  line-height: 1.2;
  }

  .content a,
  .content a:hover{
	text-decoration: none;
  }

.btn-primary{
	font-family: var(--header-font);
	font-size: 14px;
	font-weight: 700;
	display: block;
	padding: 10px 20px;
	background-color: #9A746A;
	color: white;
	text-transform: uppercase;
	margin-top: 10px;
}

@media screen and (min-width: 1380px) {
	
   .content h2{
	   margin: 10px 0;
	   font-size: calc(15px + (100 - 40) * (80vw - 320px) / (1440 - 320));
   }
	 
}