@import url('https://fonts.googleapis.com/css?family=Open+Sans');
body {
	font-family: 'Open Sans', sans-serif;
	/*font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;*/
}

#boxShadow {
	box-shadow: 3px 5px 7px #adadad;
}

.footer {
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: #ebeced;
	text-align: center;
	font-size: 80%;
	padding: 10px 10px;
}

.pop {
	display: none;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
	color: #707176;
	background-color: #EBECED;
}

.animation-version1 {
	white-space: nowrap;
	overflow: hidden;
}


/* Animation Typing */

.animation-version1 {
	animation: animated-typing 3s steps(30, end) 1s 1 normal both;
}


/* text animation typing */

@keyframes animated-typing {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}


/* Animation Shining */

.animation-version2 {
	position: relative;
	text-transform: uppercase;
	letter-spacing: 4px;
	overflow: hidden;
	background: linear-gradient(90deg, rgb(136, 136, 136), #fff, rgb(136, 136, 136));
	background-repeat: no-repeat;
	background-size: 83%;
	animation: animated-shining 5s linear infinite;
	-webkit-background-clip: text;
	-webkit-text-fill-color: rgba(255, 255, 255, 0);
}


/* text animation shining */

@keyframes animated-shining {
	0% {
		background-position: -500%;
	}
	100% {
		background-position: 500%;
	}
}

.nav-bg-dark {
	background-color: #707176;
}
