/*
Theme Name: WP Bootstrap Starter Child
Theme URI: https://quickcomputers.net
Description: WP Bootstrap Starter Child Theme
Author: Ruben Molina
Author URI: https://quickcomputers.net
Template: wp-bootstrap-starter
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
Text Domain: wp-bootstrap-starter-child
*/

/** GENERAL **/
body{
	color:#707070;
}

/** COLOR **/
.color-black{
	color:#0a0a0a;
}
.color-white{
	color:#FFFFFF;
}

.color-blue{
	color:#22d3ee;
}
.color-red{
	color:#C06767;
}
.color-green{
	color:#a3e635;
}
/** BACKGROUND **/
.background-black-900{
	background-color:#000000;
}

.background-black,
.background-black-500{
	background-color:#0a0a0a;
}

.background-black-300{
	background-color:#111111;
}
.background-black-100{
	background-color:#fafafa;
}

.background-image{
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
	position:relative;
}
	.background-image >div{
		z-index:2;
	}

	.background-image:before{
		content:"";
		position:absolute;
		top:0;
		bottom:0;
		left:0;
		right:0;
		background:#111111;
		opacity:.47;
		z-index:1;
	}

/** BUTTON **/
.btn.btn-primary{
	background-color:#9e4243;
	border-color:#9e4243;
}
.btn.btn-outline-primary{
	border-color:#9e4243;
	color:#9e4243;
}

.btn.btn-outline-primary:hover{
	background-color:#9e4243;
	color:#FFFFFF;
}

/** HEADER **/
header .nav-link{
	color:#707070;
}
header .navbar-brand{
	width:250px;
}

/** CARD **/
.card-body-absolute{
	position:relative;
}
	.card-body-absolute:before{
		content:"";
		position:absolute;
		top:0;
		bottom:0;
		left:0;
		right:0;
		background: rgba(17, 17, 17, 6.97);
		background: -webkit-linear-gradient(0deg, rgba(17, 17, 17, 0.69) 0%, rgba(17, 17, 17, 0) 100%);
		background: -moz-linear-gradient(0deg, rgba(17, 17, 17, 0.69) 0%, rgba(17, 17, 17, 0) 100%);
		background: linear-gradient(0deg, rgba(17, 17, 17, 0.69) 0%, rgba(17, 17, 17, 0) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111111", endColorstr="#111111", GradientType=0);
		z-index:2;
	}
	.card-body-absolute .card-body{
		position:absolute;
		bottom:0;
		left:0;
		right:0;
		z-index:3;
	}

/** FOOTER **/
footer a{
	color:#707070!important;
	
}