/*
Theme Name:     Customizr Child
Theme URI:      http://themesandco.com/customizr
Description:    A child theme for the Customizr WordPress theme. This child theme simply includes 2 files : style.css to add your custom css and functions.php where you can extend Customizr's core code. In order to keep your code as clean and flexible as possible, try to use Customizr's hooks API for your customizations. Do something awesome and have fun !
Author:         Nicolas Guillaume (nikeo)
Author URI:     http://themesandco.com
Template:       customizr
Version:        1.0.0
*/

/* Your awesome customizations start right here !
-------------------------------------------------------------- */

/*---- Change height of slider ----- */ 
.carousel-inner{
height: 350px;
}

/*-- Remove grey bar after navbar -- */
header.tc-header {
border-bottom: 0;
}

/*---- Change height of caption within slider, align to left  ----- */
.home #customizr-slider .carousel-caption {
height: 175px;
vertical-align: top;
top: -50px;
max-width: 35%;
margin-left: 2%; 
}

/*  Reposition Navbar Box - change top/left as needed */
.navbar.notresp .navbar-inner {
position: relative;
top:         7px;            /* Adjust using -1px move Up, 1px move Down, 0px No change  */
right:       5px;             
}

/* Menu Items */
.navbar .nav {
 float: right;
}

/*link formatting*/
a {
  color: blue;
  text-decoration: none;
}

/*Reduce vertical space between slider and feature circles*/
#main-wrapper {
  margin-top: 25px;
  margin-bottom: 10px;
}

/* Reduce gap between Slider & Zoom Image  */
.fpc-marketing {
margin-top: -20px;
}

.marketing {
margin-top:     -20px;
}
 
/* Reduce gap between Zoom Image & FP Header  */
.widget-front > h2 {
margin-top:     -20px;
margin-bottom:  0px;
}

/* Change Featured Image Circle Size */
.round-div {border-radius: 220px;}

@media (max-width: 1200px) {
.span9.article-container .round-div {border-radius: 140px;}
.span6.article-container .round-div {border-radius: 110px;}
}

@media (max-width: 979px) {
.round-div {border-radius: 200px;}
.span9.article-container .round-div {border-radius: 180px;}
}
/* Change footer font-size, alignment as needed  */
footer#footer p, footer#footer a{
padding:        0px ;
font-size:      1em ;
text-align:     left;
line-height:    1.2em
}

.feature {
border-radius: 15px;
}

footer#footer h3{
text-align:     left;
}

/* Remove pages icon in every page */
#main-wrapper .format-icon:before {content: none;}