.video_container {

	
    position: relative;
    height: 100vh;
    overflow: hidden;
    

}


video {
  position: absolute;
   
  /* Vertical and Horizontal center*/
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}


.content-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.content-wrapper__box-content {
	width: 75%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

}


.container-information {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 5vh;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.container-information_box {
	width: 80%;
	height: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

@media (max-width: 480px){

	.container-information_box {

		flex-direction: column;

	}

	.container-information {
		height: 9vh;
	}

	img {
		max-width: 50%;
	}

	.content-paragraph {
		font-size: .8rem;
		line-height: .4rem;
		height: 200px;
	}

}

.phone-number, .email-address {
	font-family: sans-serif, 'Lexend Exa';
	font-size: 1.4rem;
	text-decoration: none;
	color: white;
	font-weight: 400;
}


.content-paragraph {
	width: 70%;
	height: 400px;
	color: white;
	font-family: sans-serif, 'Muli';
	font-size: 1.4rem;
	line-height: 3rem;

}