
/******************************************************************************************************************************************

	Company 		:  Fred J Bishop Enterprises
	File name 		:  style.css
	Developed on	:  06-08-2021
	Owner			:  Fred J Bishop Enterprises
	Contact no		:  bishop.fredj@gmail.com

	Copyright (c) 2010 - 2021, Fred J Bishop Enterprises.
        
	All rights reserved.  This software is protected by the national and international copyright laws that pertain to computer software.
	You may not loan, sell, rent, lease, give, sub license, or otherwise transfer the software (or any copy).

	Disclaimer

	By using the script(s), you are agree and understand that the writers are not responsible for any damages caused under any conditions
	due to the malfunction or bugs from the script. Please use at your own risk.

*******************************************************************************************************************************************/

body {
	background: #9D7237;
	color: #444;
	font-family: "Open Sans", sans-serif;
}

a {
	color: #007bff;
	text-decoration: none;
	transition: 0.5s;
}

a:hover, a:active, a:focus {
	color: #0b6bd3;
	outline: none;
	text-decoration: none;
}

p {
	padding: 0;
	margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	margin: 0 0 20px 0;
	padding: 0;
}

.jumbotron {
  position: relative;
  overflow: hidden;
  background-color:black;
}

.jumbotron video {
  position: absolute;
  z-index: 1;
  top: 0;
  width:100%;
  height:100%;
  /*  object-fit is not supported on IE  */
  object-fit: cover;
  opacity:1;
  filter: brightness(40%) ;
}

.jumbotron .container-fluid {
  z-index: 2;
  position: relative;
}


/* Back To Top Button ******************************************************************************************************************* */

.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #007bff;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: #2990ff;
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}


/* Header ******************************************************************************************************************************* */

#header {
	height: 80px;
	z-index: 997;
	transition: all 0.5s;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled {
	height: 60px;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #e3e3e3) );
	background:-moz-linear-gradient( center top, #ffffff 5%, #e3e3e3 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e3e3e3');
}

#header.header-scrolled .Charmed a {
	color: #9D7237;
}

#header .Charmed a {
	font: italic 36px 'Charm', cursive;
	color: #FFFFFF;
	text-decoration: none;
}

#header .Charmed img {
	padding: 0;
	max-height: 50px;
}



#NavButton {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	display: inline-block;
	padding: 5px 20px;
	margin: 0 10px 0 10px ;
	border-radius: 50px;
	border:2px solid #FFB959;
	transition: 0.5s;
	color: #FFFFFF;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #FFB959), color-stop(1, #9D7237) );
	background:-moz-linear-gradient( center top, #FFB959 5%, #9D7237 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFB959', endColorstr='#9D7237');
	background:#9D7237;
	text-shadow: 1px 1px 1px rgba(204, 204, 204, 0.66);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.75);
	cursor: pointer;
}

#NavButton:hover {
	transition: 0.5s;
	color: #000000;
	border:2px solid #9D7237;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9D7237), color-stop(1, #FFB959) );
	background:-moz-linear-gradient( center top, #9D7237 5%, #FFB959 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9D7237', endColorstr='#FFB959');
	background:#FFB959;
	text-shadow: 1px 1px 1px rgba(204, 204, 204, 0.66);
}

@media (max-width: 991px) {
	#NavButton {
		margin: 0 0 10px 10px ;
	}

	#header {
		background: #fff;
	}

	#header .Charmed a {
		color: #9D7237;
	}

}

/* Navigation Menu ********************************************************************************************************************** */

.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	color: #004289;
	font-weight: 500;
	white-space: nowrap;
	transition: 0.3s;
}

.navbar a i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
	color: #007bff;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: none;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
	color: #007bff;
}

.navbar .dropdown:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover > ul {
		left: -100%;
	}
}


/* Mobile Navigation ******************************************************************************************************************** */

.mobile-nav-toggle {
	color: #283d50;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: #fff;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(23, 35, 46, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a {
	padding: 10px 20px;
	font-size: 15px;
	color: #004289;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
	color: #007bff;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
	color: #007bff;
}

.navbar-mobile .dropdown > .dropdown-active {
	display: block;
}


/* Footer ******************************************************************************************************************************* */

#footer {
	color: #9D7237;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #e3e3e3) );
	background:-moz-linear-gradient( center top, #ffffff 5%, #e3e3e3 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e3e3e3');
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: center;
}


/* End Footer *************************************************************************************************************************** */





.Charm {
	font: italic 60px 'Charm', cursive;
	color: #FFFFFF;
	text-align: center ;
	text-shadow: 
		1px 0px 1px #ccc, 0px 1px 1px #eee, 
		2px 1px 1px #ccc, 1px 2px 1px #eee,
		3px 2px 1px #ccc, 2px 3px 1px #eee,
		4px 3px 1px #ccc;
	margin: 50px 0 10px 0 ;
}

.Charm2 {
	font: italic 60px 'Charm', cursive;
	color: #FFFFFF;
	text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
	text-align: center ;
}


.Charm3 {
	font: italic 24px 'Charm', cursive;
}


.top1 {
	font: normal 30px/1.2em Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	text-align: center ;
	margin: 0 0 40px 0 ;
}

.top2 {
	font: normal 18px/1.4em Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	margin: 10px 0 0 0 ;
}

.imgGradient {
	color: rgba(0, 0, 0, 0.72);
	text-decoration: none;
    padding-top: 20px;

	box-shadow:
		2px 2px 0.5em rgba(122, 98, 0, 0.55),
		inset 1px 1px 0 rgba(255, 255, 255, 0.9),
		inset -1px -1px 0 rgba(0, 0, 0, 0.34)
	;

	border: 1px solid #deca73;

	background:
	-moz-linear-gradient(
		-72deg,
			#ffde45,
			#ffffff 16%,
			#ffde45 21%,
			#ffffff 24%,
			#452100 27%,
			#ffde45 36%,
			#ffffff 45%,
			#ffffff 60%,
			#ffde45 72%,
			#ffffff 80%,
			#ffde45 84%,
			#452100
	);

	background:
	-webkit-linear-gradient(
		-72deg,
			#ffde45,
			#ffffff 16%,
			#ffde45 21%,
			#ffffff 24%,
			#452100 27%,
			#ffde45 36%,
			#ffffff 45%,
			#ffffff 60%,
			#ffde45 72%,
			#ffffff 80%,
			#ffde45 84%,
			#452100
	);

	background:
	-o-linear-gradient(
		-72deg,
			#ffde45,
			#ffffff 16%,
			#ffde45 21%,
			#ffffff 24%,
			#452100 27%,
			#ffde45 36%,
			#ffffff 45%,
			#ffffff 60%,
			#ffde45 72%,
			#ffffff 80%,
			#ffde45 84%,
			#452100
	);

	background:
	linear-gradient(
		-72deg,
			#ffde45,
			#ffffff 16%,
			#ffde45 21%,
			#ffffff 24%,
			#452100 27%,
			#ffde45 36%,
			#ffffff 45%,
			#ffffff 60%,
			#ffde45 72%,
			#ffffff 80%,
			#ffde45 84%,
			#452100
	);
	-webkit-border-top-right-radius:15px;
	-moz-border-radius-topright:15px;
	border-top-right-radius:15px;
	-webkit-border-bottom-right-radius:15px;
	-moz-border-radius-bottomright:15px;
	border-bottom-right-radius:15px;
	-webkit-border-top-left-radius:15px;
	-moz-border-radius-topleft:15px;
	border-top-left-radius:15px;
	-webkit-border-bottom-left-radius:15px;
	-moz-border-radius-bottomleft:15px;
	border-bottom-left-radius:15px;
	padding: 3px 3px 3px 3px ;
	margin: 0 0 0 0 ;
}

.circle {
	-moz-box-shadow:inset 0px 1px 0px 0px #f29c93;
	-webkit-box-shadow:inset 0px 1px 0px 0px #f29c93;
	box-shadow:inset 0px 1px 0px 0px #f29c93;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #CC9448), color-stop(1, #9D7237) );
	background:-moz-linear-gradient( center top, #CC9448 5%, #9D7237 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#CC9448', endColorstr='#9D7237');
	background-color:#9D7237;
	-webkit-border-top-left-radius:50%;
	-moz-border-radius-topleft:50%;
	border-top-left-radius:50%;
	-webkit-border-top-right-radius:50%;
	-moz-border-radius-topright:50%;
	border-top-right-radius:50%;
	-webkit-border-bottom-right-radius:50%;
	-moz-border-radius-bottomright:50%;
	border-bottom-right-radius:50%;
	-webkit-border-bottom-left-radius:50%;
	-moz-border-radius-bottomleft:50%;
	border-bottom-left-radius:50%;
	text-indent:0;
	border:1px solid #FFFFFF;
	display:inline-block;
	font-family:"Century Gothic", Arial, Helvetica, sans-serif;;
	font-size:72px;
	font-weight:900;
	font-style:normal;
	font-variant:small-caps;
	width:100px;
	height:100px;
	text-align:center;
	line-height: 100px;
	color:#FFF;
	text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
}

.circle2 {
	-moz-box-shadow:inset 0px 1px 0px 0px #f29c93;
	-webkit-box-shadow:inset 0px 1px 0px 0px #f29c93;
	box-shadow:inset 0px 1px 0px 0px #f29c93;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #FFFF00), color-stop(1, #FEC93F) );
	background:-moz-linear-gradient( center top, #FFFF00 5%, #FEC93F 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFF00', endColorstr='#FEC93F');
	background-color:#fe1a00;
	-webkit-border-top-left-radius:50%;
	-moz-border-radius-topleft:50%;
	border-top-left-radius:50%;
	-webkit-border-top-right-radius:50%;
	-moz-border-radius-topright:50%;
	border-top-right-radius:50%;
	-webkit-border-bottom-right-radius:50%;
	-moz-border-radius-bottomright:50%;
	border-bottom-right-radius:50%;
	-webkit-border-bottom-left-radius:50%;
	-moz-border-radius-bottomleft:50%;
	border-bottom-left-radius:50%;
	text-indent:0;
	border:1px solid #FFFFFF;
	display:inline-block;
	font-family:"Century Gothic", Arial, Helvetica, sans-serif;;
	font-size:18px;
	font-weight:bold;
	font-style:normal;
	font-variant:small-caps;
	width:30px;
	text-decoration:none;
	text-align:center;
	color:#000;
	-webkit-text-fill-color: #FFFF00; /* Will override color (regardless of order) */
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: black;
	cursor: pointer ;
}

.clock1 {
	font-family: Arial, Helvetica, sans-serif;;
	font-size:24px;
	font-style:normal;
	text-align:center;
	color:#FFF;
	text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
	margin: -20px 0 10px 0 ;
}

.clock2 {
	font-family: Arial, Helvetica, sans-serif;;
	font-size:32px;
	font-style:normal;
	text-align:center;
	color:#FFF;
	text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
	margin: 20px 0 20px 0 ;
}


.author1 {
	font: normal 18px/1.4em Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
	margin: 0 0 20px 0 ;
}

.AuthorImg {
	max-width: 250px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	margin: 0 0 20px 0 ;
}

.BuyButtons {
	margin: 20px 0 40px 0 ;
}

.BuyButtons1 {
	margin: 40px 0 0 0 ;
}


#CryptoButton {
	font-size: 24px;
	display: inline-block;
	position: relative;
	text-decoration: none;
	color: #FFFFFF;
	width: 400px;
	height: 50px;
	line-height: 45px;
	border-radius: 8px;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
	font-weight: bold;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #00FF00), color-stop(1, #03A90F) );
	background:-moz-linear-gradient( center top, #00FF00 5%, #03A90F 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00FF00', endColorstr='#03A90F');
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.66);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
	cursor: pointer;

}

#CryptoButton:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #03A90F), color-stop(1, #00FF00) );
	background:-moz-linear-gradient( center top, #03A90F 5%, #00FF00 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#03A90F', endColorstr='#00FF00');
}


.Faqs1 {
	font: italic 42px 'Charm', cursive;
	color: #FFFFFF;
	text-align: center ;
}

.Faqs2 {
	font: normal 18px/1.2em Arial, Helvetica, sans-serif;
	color: #B59200;
	margin: 10px 0 30px 43px ;
}

.howtobuy2 {
	color: #FFF;
	font-size: 18px;
	margin-bottom: 10px;
}

.howtobuy3 {
	color: #FFF;
	font-size: 18px;
	margin-bottom: 20px;
}

.img-howtobuy {
	border-radius: 10px;
	margin: auto ;
	display: block ;
}

.howtobuy-img {
	margin-bottom: 30px;
}

/* Modal ******************************************************************************************************************************** */


.modal-header {
	background-color: #FFEEB5;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #AE8913), color-stop(1, #FFEEB5) );
	background:-moz-linear-gradient( center top, #AE8913 5%, #FFEEB5 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8913', endColorstr='#FFEEB5');
}

.modal-footer {
	background-color: #000000;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #CCCCCC), color-stop(1, #000000) );
	background:-moz-linear-gradient( center top, #CCCCCC 5%, #000000 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#CCCCCC', endColorstr='#000000');
}

.modal-title {
	color: #000;
	font-weight: 700;
}

.modal-body {
	color: #B59200;
	font-size: 22px;
	font-weight: 900;
	text-shadow:2px 2px 5px #555555;
	-webkit-text-stroke: 1px #000000;
	padding: 50px 0 50px 0 ;
	text-align: center;
}


/* Smaller than mobile ************************************************************************************************************************** */

@media (min-width: 300px) AND (max-width: 576px) {
	.countdownClock {
	}

	.Charm {
		margin: 20px 0 0 0 ;
	}

	.Charm2 {
		font: italic 24px 'Charm', cursive;
		margin: 20px 0 0 0 ;
	}

	.Charm3 {
		font: italic 12px 'Charm', cursive;
	}

	.top1 {
		font: normal 18px/1.2em Arial, Helvetica, sans-serif;
		color: #FFFFFF;
		text-align: center ;
		margin: 0 0 40px 0 ;
	}

	.circle {
		font-size:32px;
		width:50px;
		height:50px;
		line-height: 45px;
	}

	.top2 {
		font: normal 14px/1.4em Arial, Helvetica, sans-serif;
		margin: 10px 0 20px 0 ;
	}

	#CryptoButton {
		font-size: 16px;
		width: 300px;
		height: 50px;
		line-height: 45px;
	}

	.BuyButtons1 {
		margin: 20px 0 0 0 ;
	}

	.BuyButtons2 {
		padding: 0 0 20px 0 ;
	}

	.clock1 {
		font-size:16px;
		margin: -20px 0 10px 0 ;
	}

	.clock2 {
		font-size:20px;
		margin: 20px 0 20px 0 ;
	}

	.AuthorImg {
		max-width: 200px;
		margin: 0 0 20px 0 ;
	}

	.AuthorImg1 {
		text-align: center;
	}

	.AuthorImg2 {
		text-align: center;
	}

	.AuthorImg3 {
		max-width: 250px;
		margin: 0 0 20px 0 ;
	}

	.author1 {
		font: normal 14px/1.4em Arial, Helvetica, sans-serif;
		margin: 0 0 20px 0 ;
	}

	.img-howtobuy {
		max-width: 200px;
	}

	.howtobuy-img {
		margin-bottom: 0px;
	}
}

/* Larger than mobile *************************************************************************************************************************** */

@media (min-width: 576px) AND (max-width: 768px) {
	.countdownClock {
		min-width: 570px ;
	}

	.Charm {
		margin: 20px 0 0 0 ;
	}

	.Charm2 {
		font: italic 28px 'Charm', cursive;
		margin: 20px 0 0 0 ;
	}

	.Charm3 {
		font: italic 14px 'Charm', cursive;
	}

	.top1 {
		font: normal 16px/1.2em Arial, Helvetica, sans-serif;
		color: #FFFFFF;
		text-align: center ;
		margin: 0 0 40px 0 ;
	}

	.circle {
		font-size:38px;
		width:75px;
		height:75px;
		line-height: 70px;
	}

	.top2 {
		font: normal 14px/1.4em Arial, Helvetica, sans-serif;
		margin: 10px 0 20px 0 ;
	}

	#CryptoButton {
		font-size: 16px;
		width: 300px;
		height: 50px;
		line-height: 45px;
	}

	.BuyButtons1 {
		margin: 20px 0 0 0 ;
	}

	.BuyButtons2 {
		padding: 0 0 20px 0 ;
	}

	.clock1 {
		font-size:18px;
		margin: -20px 0 10px 0 ;
	}

	.clock2 {
		font-size:20px;
		margin: 20px 0 20px 0 ;
	}

	.AuthorImg {
		max-width: 200px;
		margin: 0 0 20px 0 ;
	}

	.AuthorImg1 {
		text-align: center;
	}

	.AuthorImg2 {
		text-align: center;
	}

	.AuthorImg3 {
		max-width: 250px;
		margin: 0 0 20px 0 ;
	}

	.author1 {
		font: normal 14px/1.4em Arial, Helvetica, sans-serif;
		margin: 0 0 20px 0 ;
	}

	.img-howtobuy {
		max-width: 200px;
	}

	.howtobuy-img {
		margin-bottom: 0px;
	}

}

/* Larger than phablet ************************************************************************************************************************** */

@media (min-width: 768px) AND (max-width: 992px) {
	.countdownClock {
		min-width: 600px ;
	}

	.Charm {
		margin: 30px 0 10px 0 ;
	}

	.Charm2 {
		font: italic 48px 'Charm', cursive;
		margin: 20px 0 0 0 ;
	}

	.Charm3 {
		font: italic 18px 'Charm', cursive;
	}

	.top1 {
		font: normal 20px/1.2em Arial, Helvetica, sans-serif;
		color: #FFFFFF;
		text-align: center ;
		margin: 0 0 40px 0 ;
	}

	.circle {
		font-size:38px;
		width:75px;
		height:75px;
		line-height: 70px;
	}

	.top2 {
		font: normal 18px/1.4em Arial, Helvetica, sans-serif;
		margin: 10px 0 20px 0 ;
	}

	#CryptoButton {
		font-size: 16px;
		width: 300px;
		height: 50px;
		line-height: 45px;
	}

	.AuthorImg {
		max-width: 200px;
		margin: 0 0 20px 0 ;
	}

	.AuthorImg1 {
		text-align: right;
	}

	.AuthorImg2 {
		text-align: left;
	}

	.AuthorImg3 {
		max-width: 250px;
		margin: 0 0 20px 0 ;
	}

	.author1 {
		font: normal 14px/1.4em Arial, Helvetica, sans-serif;
		margin: 0 0 20px 0 ;
	}

	.img-howtobuy {
		max-width: 300px;
	}

}

/* Larger than tablet *************************************************************************************************************************** */

@media (min-width: 992px) AND (max-width: 1200px) {
	.countdownClock {
		min-width: 900px ;
	}

	.Charm {
		margin: 30px 0 10px 0 ;
	}

	.Charm2 {
		font: italic 48px 'Charm', cursive;
		margin: 20px 0 0 0 ;
	}

	.Charm3 {
		font: italic 18px 'Charm', cursive;
	}

	.top1 {
		font: normal 28px/1.2em Arial, Helvetica, sans-serif;
		color: #FFFFFF;
		text-align: center ;
		margin: 0 0 40px 0 ;
	}

	.circle {
		font-size:38px;
		width:80px;
		height:80px;
		line-height: 75px;
	}

	.top2 {
		font: normal 18px/1.4em Arial, Helvetica, sans-serif;
		margin: 10px 0 20px 0 ;
	}

	.AuthorImg1 {
		text-align: right;
	}

	.AuthorImg2 {
		text-align: left;
	}

	.AuthorImg3 {
		max-width: 250px;
		margin: 0 0 20px 0 ;
	}

	.img-howtobuy {
		max-width: 300px;
	}

}

/* Larger than desktop ************************************************************************************************************************** */

@media (min-width: 1200px) AND (max-width: 1920px) {
	.countdownClock {
		min-width: 900px ;
	}

	.Charm {
		margin: 50px 0 10px 0 ;
	}

	.top1 {
		font: normal 30px/1.2em Arial, Helvetica, sans-serif;
		color: #FFFFFF;
		text-align: center ;
		margin: 0 0 40px 0 ;
	}

	.circle {
		font-size:38px;
		width:80px;
		height:80px;
		line-height: 75px;
	}

	.AuthorImg1 {
		text-align: right;
	}

	.AuthorImg2 {
		text-align: left;
	}

	.img-howtobuy {
		max-width: 300px;
	}

}


/* PriceFluctuations Section *********************************************************************************************************************** */

#pricefluctuations {
	background: #000;
	padding: 20px 0;
}

#pricefluctuations .section-header h3 {
	color: #FFF;
}

#pricefluctuations .section-header p {
	text-align: center;
	margin: auto;
	font-size: 20px;
	font-weight:900;
	padding-bottom: 60px;
	color: #FFF;
	width: 75%;
}

#pricefluctuations .pricefluctuations1 {
	color: #FFF;
	font-size: 16px;
	margin-bottom: 20px;
}

#pricefluctuations .pricefluctuations2 {
	color: #FFF;
	font-size: 18px;
	font-weight: 700 ;
	margin-bottom: 20px;
	text-align:center;
}

#pricefluctuations .bullet {
	color: #FFF;
	font-size: 18px;
	padding-bottom: 10px;
}


/* Smaller than mobile ****************************************************************** */

@media (min-width: 300px) AND (max-width: 576px) {

	#pricefluctuations .section-header h3 {
		font-size: 24px;
	}

	#pricefluctuations .section-header p {
		font-size: 18px;
		width: 100% ;
		padding-bottom: 30px;
	}

	#pricefluctuations .pricefluctuations1 {
		color: #FFF;
		font-size: 10px;
		margin-bottom: 10px;
	}

}

/* Larger than mobile ******************************************************************* */

@media (min-width: 576px) AND (max-width: 768px) {

	#pricefluctuations .section-header h3 {
		font-size: 24px;
	}

	#pricefluctuations .section-header p {
		font-size: 18px;
		width: 100% ;
		padding-bottom: 30px;
	}

	#pricefluctuations .pricefluctuations1 {
		color: #FFF;
		font-size: 12px;
		margin-bottom: 10px;
	}

}

/* Larger than phablet ****************************************************************** */

@media (min-width: 768px) AND (max-width: 992px) {

	#pricefluctuations .section-header h3 {
		font-size: 24px;
	}

	#pricefluctuations .section-header p {
		font-size: 16px;
		width: 100% ;
		padding-bottom: 30px;
	}

	#pricefluctuations .pricefluctuations1 {
		color: #FFF;
		font-size: 12px;
		margin-bottom: 10px;
	}

}

/* Larger than tablet ******************************************************************* */

@media (min-width: 992px) AND (max-width: 1200px) {

	#pricefluctuations .section-header h3 {
		font-size: 32px;
	}

	#pricefluctuations .section-header p {
		font-size: 20px;
		width: 100% ;
		padding-bottom: 30px;
	}

	#pricefluctuations .pricefluctuations1 {
		color: #FFF;
		font-size: 14px;
		margin-bottom: 10px;
	}

}

/* Larger than desktop ****************************************************************** */

@media (min-width: 1200px) AND (max-width: 1920px) {

	#pricefluctuations .section-header h3 {
		font-size: 32px;
	}

	#pricefluctuations .section-header p {
		font-size: 20px;
		width: 100% ;
		padding-bottom: 30px;
	}

}