/* *---------------------
  Hero
-----------------------*/

.hero {
	padding-top: 140px;
	padding-bottom: 70px;
	position: relative;
}

.hero__text {
	text-align: center;
}

.hero__text span {
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 6px;
}

.hero__text h1 {
	font-size: 110px;
	font-family: "Rockville Solid Regular";
	color: #ffffff;
	margin-bottom: 20px;
	margin-top: 22px;
}

.hero__text p {
	color: #ffffff;
	margin-bottom: 20px;
}

.hero__text .play-btn {
	font-size: 26px;
	color: #5c00ce;
	height: 90px;
	width: 90px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	display: inline-block;
	line-height: 90px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.hero__text .play-btn i {
	position: relative;
	top: 2px;
	left: 2px;
}

.hero__text .play-btn:after {
	position: absolute;
	left: 15px;
	top: 15px;
	height: 60px;
	width: 60px;
	background: #ffffff;
	border-radius: 50%;
	content: "";
	z-index: -1;
}

.linear__icon {
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -16px;
	-webkit-animation: mymove 0.5s infinite alternate;
	animation: mymove 0.5s infinite alternate;
}

.linear__icon i {
	font-size: 50px;
	color: #5c00ce;
}

@-webkit-keyframes mymove {
	0% {
		bottom: 0;
	}
	100% {
		bottom: -10px;
	}
}

@keyframes mymove {
	0% {
		bottom: 0;
	}
	100% {
		bottom: -10px;
	}
}


/* Respocnsive */

/* Responsive Styling for All Screen Sizes */
@media (max-width: 1200px) {
.hero__text p{
		font-size: 26px;
	}

}


@media (max-width: 992px) {
  .hero__text h1{
		font-size: 74px;
	}
.hero__text p{
		font-size: 24px;
	}
}

@media (max-width: 768px) {
 

  .hero__text h1{
		font-size: 74px;
	}
.hero__text p{
		font-size: 24px;
	}
 
}

@media (max-width: 576px) {

	
.hero__text h1{
		font-size: 55px;
	}
  .hero__text p{
		font-size: 20px;
	}

}

@media (max-width: 523px) {
    
  
	.hero__text h1{
		font-size: 55px;
	}
	.hero__text p{
		font-size: 20px;
	}
}