/* ----------- 
HOME SECTION
-------------*/

.home{
	min-height: 45vh;
	padding: 100px 0px 0px 0px;
	background: linear-gradient(to bottom, #8167a9ab , #8167a952), url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center no-repeat;
    background-size: cover;
	border-radius: 0 0 200px 0;
	position: relative;
	z-index: 1;
	
}

.home-text h1{
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0 0 20px;
	color: #fff;
}

.home-text p{
	font-size: 1.2rem;
	line-height: 1.5rem;
	color: #fff;
	font-weight: 500;
	margin: 0;
}

.home .home-btn{
	margin-top: 30px;
}

/*Boton de video*/
.home .home-btn .video-play-btn{
	margin-left: 10px;
	height: 50px;
	width: 50px;
	padding: 0;
	font-size: 1.5rem;
	animation: pulse_01 2s ease infinite;
}

.home .home-btn .video-play-btn:hover{
	animation: none;
}

.home .home-btn .video-play-btn i{
	line-height: 30px;
}

.home-img img{
	max-width: 170px;
	width: 100%;
	border-radius: 32px;
	animation: bounceTop_01 3s ease infinite;
}

.home-img{
	position: relative;
}


/* Creamos el circulo*/
.home-img .circle{
	position: absolute;
	z-index: 1;
	height: 370px;
	width: 370px;
	border: 5px solid rgba(255, 255, 255, 0.055);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

/*
.home-img .circle::before{
	content: '';
	position: absolute;
	height: 60px;
	width: 60px;
	background-color: rgba(129,103,169,.6);
	border-radius: 50%;
	left: 30px;
	top: 30px;
	transform-origin: 170px 170px;
	animation: spin_01 10s linear infinite;
}*/

/* Boton de home */

/*------------------
Responsive Secciones 
-------------------*/

@media (max-width: 991px){
	.home{
		min-height: 30vh;
		padding-top: 70px;
      	background-size: cover;
		border-radius: 0 0 200px 0;
		position: relative;
		z-index: 1;
		
	}


.effect-wrap .effect-1{
	left: 10%;
	top: 25%;
	font-size: 30px;
	color: #ffffff3a;
	animation: spin_01 9s linear infinite;
	font-size: 3rem;
}
.effect-wrap .effect-2{
	right: 10%;
	top: 30%;
	font-size: 20px;
	color: #ffffff3a;
	animation: spin_01 9s linear infinite;
	font-size: 7rem;
}
.effect-wrap .effect-3{
	left: 7%;
	top: 60%;
	font-size: 20px;
	color: #ffffff3a;
	animation: spin_01 9s linear infinite;
	font-size: 10rem;
}

	.home-img img{
		max-width: 70px;
		width: 100%;
		border-radius: 32px;
		animation: bounceTop_01 3s ease infinite;
		margin-top: -50px;
	}

	.home-img .circle{
		height: 300px;
		width: 300px;
	}

	.home-img .circle::before{
		left: 19px;
		top: 19px;
		transform-origin: 142px 142px;
	}
	.home-text h1{
		font-size: 2rem;
	}
}

@media (max-width: 767px){
	.home{
		min-height: 10vh;
		padding-top: 170px;
		border-radius: 0 0 120px 0;
		position: relative;
		z-index: 1;
		
	}
	.home-text{
		margin-bottom: 50px;
	}
}

@media (max-width: 775px){
	.home-text h1{
		font-size: 1.5rem;
	}
	.home-text p{
		font-size: 1rem;
	}
}


