/* Style specific to this project */
/* Blank base CSS */
/*
* Typography, font face variants, colors and positioning
*/
body {
  font-family: "Muli";
  color: #000;
  font-size: 16px;
  font-weight: 400 !important; 
  background-color: #aeba23;    
}

/* Headings */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Roboto Slab";
  font-style: "normal";
  font-weight: 700;
  line-height: 1.1;
  color: #212121;
  text-transform: none;
  letter-spacing: 1px; }

h1 {
  font-size: 44px; }

h2 {
  font-size: 28px; }

h3 {
  font-family: 24px; }

h4 {
  font-size: 18px;
  font-weight: 700; }

h1.heading-big-light {
  font-weight: 300; }

h2.heading-small-light {
  font-weight: 300; }

h2.heading-small-light-green {
  font-weight: 300;
  color: #5e9732;
  margin-bottom: 35px; }

a, a:hover, a:visited, a:focus {
  color: #5e9732;
  text-decoration: none;
  outline: 0; }

p {
  color: #333; }

strong {
  font-weight: 700; }

.btn-primary,
.btn-primary:hover {
  color: #fff;
  background-color: #F79420;
  border: 0;
  border-radius: 6px; }

.button, #post-nav a, #comments-nav a, .button:visited {
  display: inline-block;
  background: #51bde8;
  	/*background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    background-image: linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));*/
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  color: #fff;
  border: 2px solid #51bde8;
  padding: 6px 16px 9px;
  cursor: pointer;
  text-decoration: none;
  /*text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.15);*/
  width: auto;
  overflow: visible;
  	/*-moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2), 1px 1px 3px rgba(0, 0, 0, 0.2) inset;
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2), 1px 1px 3px rgba(0, 0, 0, 0.2) inset;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2), 1px 1px 3px rgba(0, 0, 0, 0.2) inset;*/
  -webkit-appearance: none; }

.button:hover, #post-nav a:hover, #comments-nav a:hover {
  color: #51bde8;
  background-color: transparent; }


/* Entry Form */
.entry-form label{
    width: 35%;
    text-align: right;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
}

.entry-form label.error{
     /*width: 50%;*/
     text-align:  right;
     text-transform: capitalize;    
     color: #ff0000;
     font-size: 14px;   
}

.entry-form input[type=text],input[type=email], textarea{
    width: 50%;
    border-radius: 5px;
    border: 1px solid #cccccc;
    padding: 6px 4px;
    font-size: 15px;
}

.entry-form input[type=submit]{
    font-family: $font-family-roboto-slab;
}
              
.entry-form  .infusion-submit{
    width: 100%;
    text-align: center;
    display: inline-block;
}

.entry-form .button, 
.entry-form .button:visited{
    background-color: #383838;
    border: 2px solid #383838
}
            
.entry-form .button:hover
{
	color: #383838;
    background-color: transparent;
}

.entry-form .form-group.error{
    margin-bottom: 0;
}


/* Entry Content */
.entry-content h2{
   text-align: center;
   margin-top: 5px;    
}

.entry-content .heading-small-light-green{
  margin-bottom: 5px;
  color: #fff;    
}

/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) {    
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
}



