/*------------------------------------------------------------------
[Master Stylesheet]

Project           : Flamecore Organization
Name Project      : Background Animation Circle Basic
Version           : 1.0
Last change       : 24/08/2017 [Create Project]
Framework css	  : Core Framework http://getcore.github.io
Framework Version : 3.0 Pop Green
Author            : Andika Chamberlin
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]

1. Background Animation Circle Basic
   container         / .fmc-bg-container
   max width browser / .fmc-layout
   Text              / .fmc-header
   Button            / .fmc-button
   
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Color codes]

Background Container : rgba(0,0,0,0.9)
Background Animation : rgba(0,0,0, 0.5)
Background Header    : rgba(0,0,0, 0.3)
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Typography]

Body : 16px Segoe UI, sans-serif by Core Framework
H1   : By Core Framework
p    : By Core Framework
-------------------------------------------------------------------*/

.fmc-bg-container{
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.fmc-layout{
	max-width: 1024px;
	height: 100%;
	margin: auto;
	position: relative;
}
.fmc-header{
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
}
.fmc-header h2{
	color: rgba(0,0,0,0.5);
}
.fmc-header p{
	color: rgba(0,0,0,0.5);
}
.fmc-button{
	background-color: rgba(0,0,0,0.5);
	transition: 0.3s;
	border: none;
	padding: 12px 16px;
	color: #000;
	display: block;
	margin: 5px;
}
.fmc-button:hover{
	background-color: rgba(0,0,0,0.6);
}
@media (min-width: 1024px){
	.fmc-header{
		text-align: left;
		position: absolute;
		top: 50%;
		left: 30%;
		transform: translate(-50%,-50%);
		z-index: 10;
	}
	.fmc-header h2{
		color: rgba(0,0,0,0.5);
	}
	.fmc-header p{
		color: rgba(0,0,0,0.5);
	}
	.fmc-button{
		background-color: rgba(0,0,0,0.5);
		transition: 0.3s;
		border: none;
		padding: 12px 16px;
		display: block;
		width: 200px;
		color: #000;
		text-align: left;
		margin: 5px;
	}
	.fmc-button:hover{
		background-color: rgba(0,0,0,0.6);
	}
}

/* Circle*/

.fmc-circle:nth-child(1){
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 0;
	height: 0;
	border-radius: 50%;
	border: 10px solid rgba(0,0,0,0.5);
	animation: scaleOne 4s infinite cubic-bezier(0, 0.47, 1, 1);
	opacity: 0.5;
	z-index:9999999;
}

@keyframes scaleOne{
	100%{
		width: 300px;
		height: 300px;
		border-radius: 50%;
		border-color: rgba(0,0,0,0);
		border-width: 0px;
	}
}

.fmc-circle:nth-child(2){
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 0;
	height: 0;
	border-radius: 50%;
	border: 10px solid rgba(228,142,14,0.5);
	animation: scaleTwo 3s infinite cubic-bezier(0, 0.47, 1, 1);
	opacity: 0.5;
	z-index:9999999;
}

@keyframes scaleTwo{
	100%{
		width: 200px;
		height: 200px;
		border-radius: 50%;
		border-color: rgba(0,0,0,0);
		border-width: 0px;
	}
}
.fmc-circle:nth-child(3){
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 0;
	height: 0;
	border-radius: 50%;
	border: 10px solid rgba(0,0,0,0.5);
	animation: scaleThree 2s infinite cubic-bezier(0, 0.47, 1, 1);
	opacity: 0.5;
	z-index:9999999;
}

@keyframes scaleThree{
	100%{
		width: 100px;
		height: 100px;
		border-radius: 50%;
		border-color: rgba(0,0,0,0);
		border-width: 0px;
	}
}

.fmc-circle:nth-child(4){
	position: absolute;
	top: 50%;
	left: 80%;
	transform: translate(-50%,-50%);
	width: 0;
	height: 0;
	border-radius: 50%;
	border: 10px solid rgba(228,142,14,0.5);
	animation: scaleFour 8s infinite cubic-bezier(0, 0.47, 1, 1);
	opacity: 0.5;
	z-index:9999999;
}

@keyframes scaleFour{
	100%{
		width: 800px;
		height: 800px;
		border-radius: 50%;
		border-color: rgba(0,0,0,0);
		border-width: 0px;
		opacity: 0;
	}
}
.fmc-circle:nth-child(5){
	position: absolute;
	top: 50%;
	left: 80%;
	transform: translate(-50%,-50%);
	width: 0;
	height: 0;
	border-radius: 50%;
	border: 10px solid rgba(0,0,0,0.5);
	animation: scaleFive 7s infinite cubic-bezier(0, 0.47, 1, 1);
	opacity: 0.5;
	z-index:9999999;
}

@keyframes scaleFive{
	100%{
		width: 600px;
		height: 600px;
		border-radius: 50%;
		border-color: rgba(0,0,0,0);
		border-width: 0px;
	}
}
.fmc-circle:nth-child(6){
	position: absolute;
	top: 50%;
	left: 80%;
	transform: translate(-50%,-50%);
	width: 0;
	height: 0;
	border-radius: 50%;
	border: 10px solid rgba(228,142,14,0.5);
	animation: scaleSix 6s infinite cubic-bezier(0, 0.47, 1, 1);
	opacity: 0.5;
	z-index:9999999;
}

@keyframes scaleSix{
	100%{
		width: 400px;
		height: 400px;
		border-radius: 50%;
		border-color: rgba(0,0,0,0);
		border-width: 0px;
	}
}
.fmc-circle:nth-child(7){
	position: absolute;
	top: 60%;
	left: 0;
	transform: translate(-50%,-50%);
	width: 0;
	height: 0;
	border-radius: 50%;
	border: 10px solid rgba(0,0,0,0.5);
	animation: scaleSeven 6s infinite cubic-bezier(0, 0.47, 1, 1);
	opacity: 0.5;
	z-index:9999999;
}

@keyframes scaleSeven{
	100%{
		width: 400px;
		height: 400px;
		border-radius: 50%;
		border-color: rgba(0,0,0,0);
		border-width: 0px;
	}
}
.fmc-circle:nth-child(8){
	position: absolute;
	top: 60%;
	left: 0;
	transform: translate(-50%,-50%);
	width: 0;
	height: 0;
	border-radius: 50%;
	border: 10px solid rgba(228,142,14,0.5);
	animation: scaleEight 5s infinite cubic-bezier(0, 0.47, 1, 1);
	opacity: 0.5;
	z-index:9999999;
}

@keyframes scaleEight{
	100%{
		width: 300px;
		height: 300px;
		border-radius: 50%;
		border-color: rgba(0,0,0,0);
		border-width: 0px;
	}
}
.fmc-circle:nth-child(9){
	position: absolute;
	top: 60%;
	left: 0;
	transform: translate(-50%,-50%);
	width: 0;
	height: 0;
	border-radius: 50%;
	border: 10px solid rgba(0,0,0,0.5);
	animation: scaleNine 5s infinite cubic-bezier(0, 0.47, 1, 1);
	opacity: 0.5;
	z-index:9999999;
}

@keyframes scaleNine{
	100%{
		width: 200px;
		height: 200px;
		border-radius: 50%;
		border-color: rgba(0,0,0,0);
		border-width: 0px;
	}
}
.fmc-circle:nth-child(10){
	position: absolute;
	top: 70%;
	left: 30%;
	transform: translate(-50%,-50%);
	width: 0;
	height: 0;
	border-radius: 50%;
	border: 10px solid rgba(228,142,14,0.5);
	animation: scaleTen 4.5s infinite cubic-bezier(0, 0.47, 1, 1);
	z-index:9999999;
}

@keyframes scaleTen{
	100%{
		width: 300px;
		height: 300px;
		border-radius: 50%;
		border-color: rgba(0,0,0,0);
		border-width: 0px;
	}
}
/* End Circle */