@charset "utf-8";

/* CSS Document */

.sectionRow {
	font-size: 24px;
	box-sizing: border-box;
	padding: 150px 0 120px 0;
	min-height: 100vh;
	/* min-height: calc(100vh - 100px); */
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.sectionRow::before {
	display: block;
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('../images/bg/top.png');
	background-position: top center;
	background-repeat: repeat-x;
}

.sectionRow::after {
	display: block;
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('../images/bg/btm.png');
	background-position: bottom center;
	background-repeat: repeat-x;
}

.cover::before {
	z-index: 1;
}

.sectionRow .container {
	z-index: 2;
}

.vCont {

	width: 100%;
	text-align: center;
	color: #fff;
	max-width: 1080px;
	text-shadow: 0px 0px 12px rgba(0, 0, 0, 1);

	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
}

.bg-video {
	position: absolute;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	overflow: hidden;
}

.bg-video video {
	position: absolute;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	border: none;
	margin: auto;
	display: block;
	width: 0;
	height: 0;
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
	object-fit: cover;
}

.sectionRow .leftCont {
	width: 50%;
	float: left;
	box-sizing: border-box;
	padding-right: 50px;
}

.sectionRow .rightCont {
	width: 50%;
	float: right;
}


.sectionHome {
	min-height: 100vh;
	background-color: #676f74;
}


.sectionSub .container {
	/* font-size: 32px; */
}



@-webkit-keyframes pulse {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}

	50% {
		-webkit-transform: translate(0, -6px);
		transform: translate(0, -6px);
	}

	100% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}

	50% {
		-webkit-transform: translate(0, -6px);
		transform: translate(0, -6px);
	}

	100% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}