/* HOME */
.arrow-down {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 888;
	color: #ED7D31;
	font-size: 2em;
}
.arrow-down.hide {
	display: none;
}

.home-video {
	width: calc(100% + 30px);
	margin-left: -15px;
	overflow: hidden;
	position: relative;
}

.home-video .dot-wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	bottom: 0;
}
.home-video .dot-wrapper .dot {
	position: absolute;
	bottom: -100px;
	left: -50px;
	width: 300px;
	height: 290px;
	background-color: rgba(248, 248, 248, 0.8);
	border-radius: 80px;
	transform: rotate(10deg);
	z-index: 1000;
}
.home-video .dot-wrapper .text {
	position: absolute;
	bottom: 32px;
	left: 29px;
	line-height: 1.2em;
	color: black;
	z-index: 1000;
}

.video-fluid {
	width: 100%;
	height: auto;
}
.home-video .video {
	opacity: 1;
	z-index: 10;
}
.home-video .video.show {
	opacity: 1;
}

.home-block {
	margin-top: 4em;
}
.home-block.text-block {
	margin-top: 2em;
}
.home-block .img {
	position: absolute;
	max-width: 80%;
	max-height: 300px;
	right: 0;
}

@media (min-width: 576px) {
	.home-video .dot-wrapper .dot {
		width: 320px;
		height: 320px;
		border-radius: 90px;
	}
	.home-video .dot-wrapper .text {
		bottom: 30px;
		left: 40px;
		font-size: 1.3em;
	}
	.home-block .img {
		max-height: 380px;
	}
}
@media (min-width: 768px) {
	.home-video .dot-wrapper .dot {
		width: 360px;
		height: 360px;
		border-radius: 100px;
	}
	.home-video .dot-wrapper .text {
		bottom: 50px;
		left: 50px;
		font-size: 1.5em;
	}
	.home-block .img {
		max-height: 400px;
	}
}
@media (min-width: 992px) and (min-height: 600px) {
	
	.home-video .dot-wrapper .dot {
		width: 430px;
		height: 380px;
		bottom: -30px;
		border-radius: 120px;
	}
	.home-video .dot-wrapper .text {
		bottom: 80px;
		left: 70px;
		font-size: 1.8em;
	}
	.home-block .img {
		max-height: 480px;
	}
}
@media (min-width: 1200px) {
	.home-video .dot-wrapper .dot {
		width: 430px;
		height: 390px;
		bottom: -35px;
	}
	.home-video .dot-wrapper .text {
		bottom: 100px;
		left: 80px;
		font-size: 1.8em;
	}
	.home-block .img {
		max-height: 580px;
	}
}
@media (min-width: 1500px) {
	.home-video .dot-wrapper .dot {
		width: 550px;
		height: 430px;
		bottom: -50px;
	}
	.home-video .dot-wrapper .text {
		bottom: 100px;
		left: 110px;
		font-size: 2em;
	}
	.home-block .img {
		max-height: 750px;
	}
}

@media (min-width: 2000px) {
	.home-video .dot-wrapper .dot {
		width: 670px;
		height: 600px;
		bottom: -50px;
	}
	.home-video .dot-wrapper .text {
		bottom: 250px;
		left: 130px;
		font-size: 1.5em;
	}
}

.home-block.image {
	position: relative;
/*
	background-size: 80%;
	background-repeat: no-repeat;
	overflow: hidden
*/
}

.home-block.image .col {
	z-index: 10;
}
.home-block.image .preview-wrapper {
	position: absolute;
	top: 0;
	left: 20%;
	width: 80%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}
.home-block.image.right .preview-wrapper {
	left: 0;
}

.home-block.image .preview-wrapper .preview {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-block.image-3 .copyright {
	font-size: .5em;
}

.home-block.image .title {
	font-family: Times;
	background-color: rgba(248, 248, 248, 0.7);
/* 	background-color: #f7f7f7; */
	display: table;
	margin: .5em 1rem 0 1rem;
	padding: .2em 2rem .4em 2rem;
}
.home-block.text-block .title {
	padding-left: 0;
	padding-right: 0;
	margin-left: auto;
	margin-right: auto;
}
.home-block .text {
	font-size: 1.3em;
	background-color: rgba(248, 248, 248, 0.7);
/* 	background-color: rgba(248, 248, 248, 0.86); */
	display: table;
	margin: 1em 1rem 0 1rem;
	padding: .2em 4rem .4em 2rem;
	max-width: 600px;
}
.home-block .text .name {
	font-size: .8em;
}
.home-block .hover-color .fas {
	transition: all ease-in-out .3s;
}
.home-block .hover-color:hover .fas {
	transform: rotate(10deg);
	color: #ED7D31;
}
.home-block .btn {
	margin: 1em 3rem 0 3rem;
}

.home-block.right .img {
	left: 0;
}
.home-block.right .title,
.home-block.right .text,
.home-block.right .btn {
	float: right;
}
.home-block.right .title {
	text-align: right;
}
.home-block.right .text {
	text-align: right;
	margin: 1em 1rem 0 1rem;
	padding: .2em 2rem .4em 4rem;
}
@media (min-width: 414px) {
	.home-block.text-block .title {
		margin-left: auto;
		margin-right: auto;
		display: block;
		text-align: center;
	}
}
@media (min-width: 576px) {
	.home-block.image {
		padding-left: 2em;
	}
	.home-block.image .title,
	.home-block.image.right .title {
		margin-top: .7em;
	}
	.home-block .text,
	.home-block.right .text {
		margin-top: 2.2em;
	}
	.home-block .btn {
		margin-top: 2.2em;
	}
	.home-block.image.right {
		padding-left: 0;
		padding-right: 2em;
	}
}
@media (min-width: 768px) {
	.home-block.image {
		
	}
}
@media (min-width: 992px) {
	.home-block {
		margin-top: 8em;
	}
	.home-block.text-block {
		margin-top: 4em;
	}
	.home-block.text-block {
		padding-left: 9em;
		padding-right: 9em;
	}
	.home-block.image {
		padding-left: 7em;
	}
	.home-block.image .title,
	.home-block.image.right .title {
		margin-top: 1em;
	}
	.home-block .text,
	.home-block.right .text {
		margin-top: 2.6em;
	}
	.home-block .icons-text {
		padding-top: .7em;
		font-size: 1.1em;
	}
	.home-block .btn {
		margin-top: 2.7em;
	}
	.home-block.image.right {
		padding-left: 0;
		padding-right: 7em;
	}
}
@media (min-width: 1200px) {
	.home-block.text-block {
		padding-left: 10em;
		padding-right: 10em;
	}
	.home-block .title,
	.home-block.right .title {
		font-size: 4em;
	}
	.home-block {
		padding-top: 3em;
		padding-bottom: 3em;
	}
	.home-block.image {
		padding-left: 7em;
	}
	.home-block .icons-text {
		padding-top: .7em;
		font-size: 1.5em;
	}
}
@media (min-width: 1500px) {
	.home-block.text-block {
		padding-left: 17em;
		padding-right: 17em;
	}
	.home-block.image {
		padding-left: 13em;
	}
	.home-block .title,
	.home-block.right .title {
		font-size: 4.5em;
	}
	.home-block.image .title,
	.home-block.image.right .title {
		margin-top: 1em;
	}
	.home-block .text,
	.home-block.right .text {
		margin-top: 2em;
		font-size: 1.7em;
	}
	.home-block .btn {
		margin-top: 3em;
		font-size: 1.7em;
	}
	.home-block.image.right {
		padding-left: 0;
		padding-right: 13em;
	}
	
}