/* Bootstrap 4 Circle Button */
.btn-circle {
	width: 30px;
	height: 30px;
	text-align: center;
	padding: 6px 0;
	font-size: 12px;
	line-height: 1.428571429;
	border-radius: 15px;
}
.btn-circle.btn-lg {
	width: 50px;
	height: 50px;
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.33;
	border-radius: 25px;
}
.btn-circle.btn-xl {
	width: 70px;
	height: 70px;
	padding: 10px 16px;
	font-size: 24px;
	line-height: 1.33;
	border-radius: 35px;
}


/* Button With Ripple Effect */
.pinkBg {
	background-color: #E3D74A!important;
	/*background-image: -webkit-linear-gradient(left, #fd5581, #fd8b55);*/;
	/*background-image: -o-linear-gradient(left, #fd5581, #fd8b55);*/;
	/*background-image: linear-gradient(to right, #fd5581, #fd8b55);*/;
}
.intro-banner-vdo-play-btn{
	height:60px;
	width:60px;
	position:absolute;
	top:50%;
	left:50%;
	text-align:center;
	margin:-30px 0 0 -30px;
	border-radius:100px;
	z-index:1
}
.intro-banner-vdo-play-btn i{
	line-height:56px;
	font-size:30px
}
.intro-banner-vdo-play-btn .ripple{
	position:absolute;
	width:160px;
	height:160px;
	z-index:-1;
	left:50%;
	top:50%;
	opacity:0;
	margin:-80px 0 0 -80px;
	border-radius:100px;
	-webkit-animation:ripple 1.8s infinite;
	animation:ripple 1.8s infinite
}


.intro-btn{
	font-size: 16px;
	padding: .5rem;
	border-radius: 25px;
	display: block;
	max-width: 225px;
	margin: 0 auto;
}
.intro-btn i{
	line-height:56px;
	font-size:30px
}
.intro-btn .ripple{
	position:absolute;
	width:160px;
	height:160px;
	z-index:-1;
	left:50%;
	top:50%;
	opacity:0;
	margin:-80px 0 0 -80px;
	border-radius:100px;
	-webkit-animation:ripple 1.8s infinite;
	animation:ripple 1.8s infinite
}


@-webkit-keyframes ripple{
	0%{
		opacity:1;
		-webkit-transform:scale(0);
		transform:scale(0)
	}
	100%{
		opacity:0;
		-webkit-transform:scale(1);
		transform:scale(1)
	}
}
@keyframes ripple{
	0%{
		opacity:1;
		-webkit-transform:scale(0);
		transform:scale(0)
	}
	100%{
		opacity:0;
		-webkit-transform:scale(1);
		transform:scale(1)
	}
}
.intro-banner-vdo-play-btn .ripple:nth-child(2){
	animation-delay:.3s;
	-webkit-animation-delay:.3s
}
.intro-banner-vdo-play-btn .ripple:nth-child(3){
	animation-delay:.6s;
	-webkit-animation-delay:.6s
}


/* Footer Social Links */
#footer .social-links a {
	font-size: 18px;
	display: inline-block;
	color: #eee;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .social-links a:hover {
	background: #8bf29e;
	color: #000;
}


/* Footer Buttons */
#footer a.button {
	border: 2px solid #8bf29e;
	padding: 3px 15px;
	cursor: pointer;
	background: #8bf29e;
	color: #000;
	transition: all 0.3s ease;
	outline: none;
	font-weight: 500;
	margin-left: 8px;
	margin-top: 2px;
	line-height: 1;
	border-radius: 0.25rem !important;
	display: block;
	max-width: 175px;
	width: 100%	;
	margin: auto;
}

#footer a.button:hover {
	border: 2px solid #58bf6f;
	background: #58bf6f;
	color: #000;
	text-decoration: none;
}

/* H1 Before/After HR Line */
/*h1 {
	display: flex;
	flex-direction: row;
} 

h1:before,
h1:after {
	content: "";
	flex: 1 1;
	border-bottom: 2px solid #6cbe98;
	margin: auto;
	width: 10px;
}*/


/* --- sticky --- */
div.sticky {
	position: -webkit-sticky;
	position: fixed;
	background-color: #FFDE0395;
	color: black;
	/*top: 45%;*/
	top: 10%;
	right: 0;
	padding: 0px;
	font-size: 10px;
	z-index: 99;
}

/*--@media(max-width:575px) {
	div.sticky {
		background-color: blue;
	}
}--*/

@media(min-width: 576px) {
	div.sticky {
		background-color: #0336FF95;
		color: white;
	}
}

@media(min-width:768px) {
	div.sticky {
		background-color: #00796B95;
		color: white;
	}
}

@media(min-width:992px) {
	div.sticky {
		background-color: #E6510095;
		color: white;
	}
}

@media(min-width:1200px) {
	div.sticky {
		background-color: #546E7A95;
		color: white;
	}
}

/* No decoration navbar button*/
.navbar-btn {
	box-shadow: none!important;
	-webkit-box-shadow: none !important;
	outline: none !important;
}