/*
 * Author: Carlos Alvarez
 * URL: http://alvarez.is
 *
 * Project Name: STANLEY - Free Bootstrap 3 Theme
 * Version: 1.0
 * URL: http://blacktie.co
 */

@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);

body {
  	background-color: #ffffff;
  	font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #555;

    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
}


/* Titles */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #000000;
}

h1 {
	font-size: 35px;
	margin-top: 30px;
	margin-bottom: 30px;
}


/* Paragraph & Typographic */
p {
    line-height: 28px;
    margin-bottom: 25px;
    font-size: 16px;
}

p2 {
	color:#555;
	display: inline-block;
	margin-block: 2px;
	text-decoration: none;
	position: relative;
}

p2::after {
	content: '';
	width: 100%;
	height: 1px;
	background-color: #555;
	boder-radius: 4px;
	position:absolute;
	left: 0;
	bottom: 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}

p2:hover::after {
	transform: scaleX(1);
}

p3 {
	color:#50F028;
	font-weight: bold;
}

.centered {
    text-align: center;
}


/* Links */
a {
    color: #FFFFFF;
    word-wrap: break-word;

    -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
    -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
    -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
    -o-transition: color 0.1s ease-in, background 0.1s ease-in;
    transition: color 0.1s ease-in, background 0.1s ease-in;
}

a:hover,
a:focus {
	color: #000000;
	text-decoration: none;
	outline: 0;
}

a:before,
a:after {
    -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
    -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
    -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
    -o-transition: color 0.1s ease-in, background 0.1s ease-in;
    transition: color 0.1s ease-in, background 0.1s ease-in;
}

 hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

.navbar {
	text-transform: uppercase;
	top: 0;
	position: sticky;
}

.navbar-inverse {
	padding-bottom: 25px;
	padding-top: 25px;
}

.navbar-inverse {
	background-color: #000000;
	border-color: #000000;
}

.navbar-inverse .navbar-nav > li > a {
	color: white;
}

.navbar-inverse .navbar-nav > li > a:hover {
	color: #50F028;
}

.navbar-brand {
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 10px;
}

.navbar-inverse .navbar-brand {
	color: white;
}

.navbar-inverse .navbar-toggle {
	border-color: transparent;
}

.progress-bar-theme {
  	background-color: #50F028;
}


/* Helpers */

.mt {
	margin-top: 40px;
	margin-bottom: 40px;
}

.pt {
	padding-top: 50px;
	padding-bottom: 50px;
}


/* +++++ WRAP SECTIONS +++++ */

#ww {
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #f2f2f2;
}


#footer {
	background-color: #d0d0d0;
	padding-top: 50px;
	padding-bottom: 50px; 
}

#footer p {
	color: black;
}

#footer h4 {
	color: black;
	text-transform: uppercase;
	padding-bottom: 20px;
}


/* +++++ Color Wraps / Blog Page +++++ */

#grey {
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: #f2f2f2;
}

#white {
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: #ffffff;
}


/* glyphicon Configuration */

.glyphicon {
	font-size: 40px;
	color: #50F028;
}


.card {
	border-radius: 5px;
	width: 100%;
	height: 100%;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, .1);
	position: relative;
	overflow: hidden;
}

.img-responsive {
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s;
}

.card:hover .img-responsive {
	transform: scale(1.05);
}