/*

HOME 

*/

.home-container {
	width: 100%;
	text-align: center;
}
.home-main {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.home-header {
	z-index: 4;
	position: absolute;
	color: white;
	margin-left: 15vw;
	text-shadow: 1px 1px 15px black;
	font-family: Trajan-bold;
	font-size: 2.5vw;
}
.home-card {
	-webkit-box-shadow: 0px 11px 28px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 11px 28px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 11px 28px 0px rgba(0,0,0,0.75);
	margin: auto;
	margin-top: -5%;
	margin-bottom: 10%;
	width: 70vw;
}
.home-card-row {
	display: flex;
	flex-direction: row;
	width: 100%;
}
.home-card-row.top {
	min-height: 30vh;
}
.home-card-row.bottom {
	min-height: 40vh;
}
.home-card-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 5%;
	padding-right: 5%;
	background-color: white;
}
.home-card-content.left {
	width: 60%;
}
.home-card-content.right {
	width: 40%;
}
.home-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home-card-img.left {
	width: 60%;
}
.home-card-img.right {
	width: 40%;
}
.home-card-header {
	font-size: 1.5vw;
	font-family: Trajan-Bold;
	color: #AF843F !important;
	cursor: pointer;
}
.home-card-text {
	margin-top: 1vw;
	margin-bottom: 1vw;
	font-size: 0.95vw;
	font-family: Futura;
	color: #262425;
}
.home-card-btn {
	font-size: 1vw;
	color: #262425;
	background-color: white;
	border: solid 0.1vw #262425;
	transition: all 150ms ease-in;
}
.home-card-btn:hover {
	color: white;
	background-color: #262425;
}

.videos {
	width: 100%;
	display: flex;
	flex-flow: row;
	margin: 40px 0;
}
.video-container {
	width: calc(100% - 60px);
	margin: 0 30px;
	max-width: 100% !important;
	background-color: black;
	position: relative;
	font-size: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.video-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 1s;
	z-index: 4;
}
.video-img img {
	width: 100%;
	height: 100%;
}
.video-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 150px;
	z-index: 5;
	cursor: pointer;
	transition: all 1s;
}
.video-btn img {
	width: 100%;
	height: 100%;
}
.video-btn:hover {
	opacity: 0.8;
}
.video-wraper {
	max-width: 100% !important;
}
@media(min-width: 1400px) {
	.home-card-text {
		font-size: 0.7vw;
	}
}
@media only screen and (max-width: 1280px) and (min-width: 700px) { 
	.home-card-text {
		font-size: 1.1vw;
	}
}
@media(max-width: 610px) {
	.home-header {
		margin-top: 10%;
		margin-left: 0;
		font-size: 6vw;
	}
	.home-card {
		margin-top: 5%;
		margin-bottom: 15%;
		width: 90vw;
	}
	.home-card-row {
		flex-direction: column;
	}
	.home-card-row.bottom {
		flex-direction: column-reverse;
	}
	.home-card-content {
		padding-top: 10%;
		padding-bottom: 10%;
	}
	.home-card-content.left, 
	.home-card-content.right,
	.home-card-img.left,
	.home-card-img.right {
		width: 100%;
	}
	.home-card-header {
		font-size: 3.5vw;
		font-family: Trajan-Bold;
		color: #AF843F !important;
		cursor: pointer;
	}
	.home-card-text {
		margin-top: 4%;
		margin-bottom: 4%;
		font-size: 3vw;
	}
	.home-card-btn {
		padding: 1%;
		font-size: 3vw;
	}
}