/* Common styles*/
body{
	font-family: 'Poppins', sans-serif;
}

.row {
    margin: 0;
}

.fs-18{
	font-size:18px;
}

.fw {
	width: 100%;
}

.fw-500{
	font-weight:500;
}

.pt-0{
	padding-top:0;
}

.pt-20{
	padding-top:20px;
}

.pb-30{
	padding-bottom:30px;
}

.mb-0{
	margin-bottom:0;
}

.mb-20{
	margin-bottom:20px;
}

.mt-20{
	margin-top:20px;
}

.mt-80{
	margin-top:80px;
}

.flex-center{
		display: flex;
    align-items: center;
		justify-content: left;
}

.section-style{
	padding: 100px 0px;
}

.btn:focus {
	box-shadow:none; 
}

.btn-primary{
	border:none;
	padding:15px 30px;
	border-radius:30px;
	font-size:14px;
	font-weight:700;
	letter-spacing:2px;
	text-transform:uppercase;
	background: linear-gradient(to right, #4d4d4d 50%, #b6001b 50%);
	background-size: 200% 100%;
	background-position: right bottom;
	transition: all .5s ease-out;
}

.btn-primary:hover{
	 background-position: left bottom;
}

.btn-minimal{
	border:none;
	padding:10px 20px;
	border-radius:30px;
	font-size:14px;
	font-weight:700;
	letter-spacing:2px;
	text-transform:uppercase;
	background: transparent;
	transition: all .5s ease-out;
	background:#b6001b;
	color:#fff;
}

.btn-minimal:hover{
	 background:#b6001b;
	 color:#fff;
}

.btn-fill{
	border:none;
	color:#fff;
	padding:10px 20px;
	border-radius:30px;
	font-size:14px;
	font-weight:700;
	letter-spacing:2px;
	text-transform:uppercase;
	background: linear-gradient(to right, #4d4d4d 50%, #b6001b 50%);
	background-size: 200% 100%;
	background-position: right bottom;
	transition: all .5s ease-out;
}

.btn-fill:hover{
	 background-position: left bottom;
	 color:#fff;
}

.special-text,.main-heading{
	font-size:38px;
	font-weight:800;
	text-transform:uppercase;
	color:#b6001b;
}

.sub-heading{
	font-size:32px;
	font-weight:700;
	text-transform:uppercase;
	color:#000;
}

.bg-red{
	background-color:#b6001b;
}

.bg-even{
	background-color:#fcfcfc;
}

.text-white{
	color:#fff !important;
}

/* Homepage Popup */



.homePopup .modal-dialog{
	width:100%;
	max-width:600px;
}

.homePopup .modal-content{
	background-color:#b6001b;
	padding-top:30px;
	padding-bottom:20px;
}

.homePopup h5{
	color:#E0E0E0;
	text-align:center;
	font-size:16px;
}

.homePopup h1{
	font-size:48px;
	color:#fff;
	text-align:center;
}

.homePopup form{
	padding:30px;
}

.homePopup .form-control{
	border:0px;
	background:#fff;
	border-radius:0px;
	padding:15px;
	
}

.homePopup .btn{
	border-radius:28px;
	padding:15px;
	min-width:250px;
	margin-top:35px;
	background: linear-gradient(to right, #4d4d4d 50%, #000 50%);
	background-size: 200% 100%;
	background-position: right bottom;
	transition: all .5s ease-out;
	color:#fff;
	outline:none;
	font-size:14px;
	font-weight:600;
	letter-spacing:1px;
	text-transform:uppercase;
	border:0;
	cursor:pointer;
}

.homePopup .btn:hover{
	background-position: left bottom;
}


.btn-subs {
    
   
	
	border:0;
	padding:12px 20px;
	
}

.btn-subs:hover {
    background-position: left bottom;
}


.homePopup .btn-close{
	position:absolute;
	right:10px;
	top:-2px;
	color:#fff;
	background:none;
	opacity:1;
	z-index:9999;
	cursor:pointer;

}

.homePopup .btn-close i{
	font-size:30px;
	line-height:0px;
}

.close-text{
	text-decoration:underline;
	color:#D3D3D3;
	cursor:pointer;
}

.close-text:hover{
	color:#fff;
}


/* Navigation */

.navbar {
	padding-top: 1rem;
	padding-bottom: 1rem;
	background:#fff;
	padding-right:4rem;
	padding-left:4rem;
}

.navbar .collapse{
	
}

.navbar-nav {
	width: 100%;
}

.nav-item {
	padding: 0px 30px;
}

.navbar-light .navbar-nav .nav-link {
	font-size: 16px;
	font-weight: 500;
	color: #000;
	text-transform: uppercase;
	position: relative;
	transition: border-bottom .3s linear;
	border:2px solid transparent;
	border-radius:0;
}

.navbar-light .navbar-nav .nav-link:hover {
	border-bottom:2px solid #b6001b;
}

.nav-item .active{
	color:#b6001b !important;
}

.row-content-center {
	align-items: center;
}

.navbar-light .navbar-toggler {
    color: #000;
    border-color: #000;
    border-radius: 0px;
    border: 2px solid #000;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus{
	box-shadow:none;
}

.img-brand{
	max-width:120px;
}

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

.hero-image {
	background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.5)), url("../images/gray-charts.jpg");
	min-height: 90vh;
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	padding: 100px;
}

.hero-text {
	text-align: left;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #000;
	padding-right: 50%;
}

.hero-title {
	font-size: 64px;
	font-weight: 900;
	text-transform:uppercase;
	padding-bottom:50px;
	padding-top:7vh;
}

.hero-sub-title{
	font-size: 20px;
	text-transform:uppercase;
	color:#b6001b;
	letter-spacing:3px;
	font-weight:700;
}

/*----Options-----*/


.feature-box{
	box-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.16);
	padding:80px 50px;
	height:100%;
	margin:20px;
}

.icon-circle{
	width:80px;
	height:80px;
	line-height:80px;
	background:#b6001b;
	border-radius:50%;
	margin:0 auto;
}

.icon-circle i{
	color:#fff;
	font-size:30px;
}

.feature-box h5{
	font-weight:600;
	margin-top:20px;
	text-transform:uppercase;
	letter-spacing:1px;
}


/*subscribe*/

#subscribe .form-control {
    display: block;
    min-height: calc(1.5em + .75rem);
    padding: .575rem 1.5rem;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #4d4d4d;
    background-color: #fff;
    border-top-left-radius: 52px;
    border-bottom-left-radius: 52px;
	border-color:transparent;
	margin-top:-1px;
}

#subscribe .form-control:focus {
    color: #495057;
    background-color: #fff;
    outline: 0;
    box-shadow: none;
	border-color:transparent;
}

.btn-subs {
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    color: #fff;
	background: linear-gradient(to right, #000 50%, #4d4d4d 50%);
	background-size: 200% 100%;
	background-position: right bottom;
	transition: all .5s ease-out;
	border:0;
	padding:12px 20px;
	outline:none;
	font-size:14px;
	font-weight:600;
	letter-spacing:1px;
	text-transform:uppercase;
}

.btn-subs:hover {
    background-position: left bottom;
}

.subs-form-width{
	max-width:80%;
	min-width:40%;
}

/*footer*/

.footer{
	padding:100px 0 30px 0;
	background:#212121;
}

.footer-ul {
	margin: 0px;
	list-style-type: none;
	font-size: 16px;
	padding: 0px 0px 10px 0px;
	letter-spacing: 0.5px;
}

.footer-ul li {
	padding: 10px 0px 5px 0px;
}

.footer-ul li a {
	color: #fff;
	text-decoration:none;
}

.footer-ul li a:hover {
	color: #b6001b;
	text-decoration: none;
}

.footer h5{
	color:#b6001b;
}

.col-right-spacing{
	padding-right:80px;
}

.footer-bottom{
	padding-top:70px;
}

.footer-bottom hr{
	
	border-bottom:1px solid #ccc;
	margin:0 auto;
	margin-bottom:30px;
}

/*About us*/
.hero-page-image{
	background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../images/page.jpg");
	min-height: 30vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	padding: 100px;
}

.hero-page-text {
	text-align: center;
}

.about-img{
	max-width:500px;
}


/* Daily Wires */

.daily-wires-img{
	max-width:300px;
}

.feature-box-style-2{
	box-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.16);
	padding:80px 50px;
	height:100%;
	margin:20px;
}

.feature-box-style-2:hover{
	background-color:#fff;
	box-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.36);
}

.feature-box-style-3{
	background-color:#fff;
	box-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.36);
	padding:80px 50px;
	height:100%;
	margin:20px;
}

.feature-box-style-4{
	background-color:#fff;
	box-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.36);	
	height:100%;
	margin:20px;
}

.icon-circle-2{
	width:120px;	
	line-height:120px;
	border-radius:50%;
	margin:0 auto;
	background-color:#fff;
}

.icon-circle-3{
	width:120px;
	height:120px;
	line-height:120px;
	border-radius:50%;
	margin:0 auto;
	background-color:#b6001b;
}

.feature-box-style-2:hover .icon-circle-2{
	background-color:#b6001b;
}
.feature-box-style-3:hover .icon-circle-2{
	background-color:#b6001b;
}

.icon-circle-2 i{
	color:#b6001b;
	font-size:50px;
}

.icon-circle-3{
	color:#fff;
	font-size:50px;
}

.feature-box-style-2:hover .icon-circle-2 i{
	color:#fff !important;
}

.feature-box-style-3:hover .icon-circle-2 i{
	color:#fff !important;
}


.feature-box-style-2 h3{
	font-weight:bold;
}

/*Subscription page*/
#subscription-area-1 h4{
	font-weight:700;
	text-transform:uppercase;
}

.info-box p{
	font-size:16px;
}

.price{
	font-weight:800;
	font-size:20px;
}

.border-right{
	border-right:1px solid #b6001b;
}

#subscription-area-2 hr{
	color:#b6001b;
	opacity:1;
	margin-bottom:0;
}

.box-spacing{
	padding:20px 50px 80px 50px;
}

.img-subs{
	max-width:500px;
}

.mn-ht300 {
	min-height: 300px;
}

.mb-25 {
	margin-bottom: 25px;
}
#freeReport {
	height: 600px;
	width: 100%;
	overflow: scroll;
}
canvas {
	width: 100%;
}
/*Contact*/

#contact a{
	color:#212529;
	text-decoration:none;
	cursor:pointer;
}

#contact a:hover{
	color:#b6001b;
}

#contactForm .form-control{
	border-radius:0;
}

#contactForm .form-control:focus{
	box-shadow:none;
	border-color:#b6001b;
}

.contact-icon{
	color:#b6001b;
	font-size:38px;
	padding:30px 0;
	text-align:center;
}

.form-label{
	font-size:13px;
}

/* Ipad style*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.navbar-collapse {
		position: absolute;
		width: 100%;
		background: #004b24;
		left: 0px;
		color: #fff;
		z-index: 9999;
		margin-top: 20px;
		padding-top: 20px;
		padding-bottom: 15px;
	}
	.nav-item a {
		color: #fff !important;
		text-align: left;
	}
	.navbar-light .navbar-nav .nav-link {
		font-size: 16px;
		color: #000;
	}
	.nav-item {
		padding: 0px 20px;
	}
	
	.tab-mo-w-100{
		width:100%;
	}
	
	.section-style{
		padding: 50px;
	}
	
	.hero-image {
		padding:50px;
	}
	
	.hero-text {
		padding-right:0;
	}
	
	.border-right{
		border-right:0;
	}

	#subscription-area-2 hr{
		display:none;
	}
}

/* Large Tablet */
@media (min-width: 1024px) and (max-width: 1366px) {
	.navbar{
		padding-right:35px;
	}
	
	.navbar-collapse {
		position: relative;
		background: transparent;
		margin-top: 0px;
		
	}
	.navbar-light .navbar-nav .nav-link {
		font-size: 14px;
		color: #000 !important;
	}
	.nav-item {
		padding: 0px 5px;
	}
	
	.hero-text{
		padding-right:40%;
	}
	
	.header-btn{
		margin-left:-20px;
	}
	
	.navbar-nav{
		margin-left:-20px;
	}
	
	
}


/* Tablet Style */

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) {
	
	
	.navbar-toggler{
		position: absolute;
		right: 15px;
		top: 36px;
	}
	
	.header-btn{
		margin-left: -25px;
		padding: 12px 30px;
	}
	
	.navbar-collapse .dropdown-menu{
		display:block !important;
	}
	
	.navbar-collapse{
		position: absolute;
		width: 100%;
		left: 0;
		text-align: center;
		background: #fff;
		z-index: 99999;
		margin-top: 55px;
	}
	
	.section-style{
		padding: 50px;
	}
	
	.hero-text {
		padding-right:0;
	}
	.hero-image {
		background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("../images/laptop.jpg");
	}
	.tab-mo-w-100{
		width:100%;
	}
	
	.border-right{
		border-right:0;
	}

	#subscription-area-2 hr{
		display:none;
	}
}

/* Mobile Landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	
	.navbar-collapse{
		position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    background: #fff;
    z-index: 99999;
	}
	
	.nav-item a {
		color: #fff !important;
		text-align: left;
	}
	.hero-text {
		padding-right:0;
		margin-left: 10px;
		margin-right: 10px;
	}
	.hero-image {
		background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("../images/laptop.jpg");
	}
	
	.border-right{
		border-right:0;
	}

	#subscription-area-2 hr{
		display:none;
	}
}


/* Mobile style */

@media only screen and (max-width: 767px) {
	
	.homePopup .modal-dialog{
		width:90%;
		max-width:90%;
		margin: 0 auto;
	}
	
	.navbar{
		padding-right:0;
		padding-left:0;
	}
	
	.navbar-collapse{
		position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    background: #fff;
    z-index: 99999;
	margin-top:70px;
	}
	
	.header-btn{
		width:100%;
		margin-top:15px;
	}
	
	.navbar-light .navbar-toggler{
		float:right;
	}
	
	.navbar-collapse .dropdown-menu{
		display:block !important;
	}
	
	.mobile-full {
		width: 100% !important;
		margin: 0 auto;
	}
	
	.section-style{
		padding: 50px 30px;
	}
	
	.tab-mo-w-100{
		width:100%;
	}
	
	.row-prl-0{
		padding-left:0;
		padding-right:0;
	}
	
	.hero-image {
		padding:25px;
		background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("../images/laptop.jpg");
	}
	
	.hero-text {
		padding-right:0;
		left:0;
		text-align:center;
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.hero-title {
	font-size: 32px;
	text-align:center;
	}
	
	.feature-box{
		margin-left:0px;
		margin-right:0px;
		padding: 30px 20px;
	}
	
	.feature-box-style-2{
		margin:0;
		padding: 30px 20px;
		margin-bottom:20px;
	}
	
	.about-img{
		max-width:200px;
	}
	
	.daily-wires-img{
		max-width:250px;
	}
	
	#Bundle-packages .container{
		padding:50px 30px;
	}
	
	#subscribe .form-control { 
		padding:18px;
	}
	
	.subs-form-width {
		max-width: 100%;
	}
	
	.border-right{
		border-right:0;
	}

	#subscription-area-2 hr{
		display:none;
	}
	
	.img-subs{
		max-width:250px;
	}
	
	.box-spacing {
		padding: 0 0 20px 0;
	}
	
	.contact-icon{
	text-align:left;
}
	.flex-center {
		justify-content: center;
	}

}