/* Menu
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.menu{
  background: #fff;
}
.number p{
  color: rgb(132, 132, 132);
  margin: 1em;
  margin-top: 1.5em;
  font-size: 20px;
}
.logo img{
  height: 100%;
  width: 18em;
  margin: 1em;
  display: block;
}
/* Quote
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.quote img{
    display: block;
    margin-bottom: 3em;
}
/* Form
–––––––––––––––––––––––––––––––––––––––––––––––––– */
form{
  margin-bottom: 0;
}
.form{
  background: #f1f1f1;
  padding: 1em;
  color: #404041;
  border: 3px solid #ffffff;
  border-radius: 7px 7px 7px 7px;
}
.form .infusion-field-input-container{
  width: 100%;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.lead{
  font-size: 20px;
}
li.lead{
  font-size: 20px;
}
h1, h2 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: Avenir, 'Avenir Next', 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;}

h3, h4, h5, h6  {
  font-family: Avenir, 'Avenir Next', 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
  }
h1 { font-size: 4.0rem; line-height: 1.2;}
h2 { font-size: 3.6rem; line-height: 1.25;}
h3 { font-size: 3.0rem; line-height: 1.3;}
h4 { font-size: 2.4rem; line-height: 1.35;}
h5 { font-size: 1.8rem; line-height: 1.5;}
h6 { font-size: 1.5rem; line-height: 1.6;}

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 3em; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

p {
  margin-top: 0; }
.error{
  color: #C70000;
  font-size: 14px;
  margin-bottom: 0px;
}
/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: Avenir, 'Avenir Next', 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222; }
.row{
  width: 100%;
}

/* Helper
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.pull-left{
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
.pull-right{
  margin-left: auto;;
}
.text-center{
  text-align: center;
}
.img-responsive{
  width: 100%;
  height: auto;
}
.pull-center{
   display: -webkit-flex;
   display: flex;
   -webkit-flex-direction: row /* works with row or column */
   flex-direction: row;
   -webkit-align-items: center;
   align-items: center;
   -webkit-justify-content: center;
   justify-content: center;

}
/* Button
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="reset"],
input[type="button"] {
  display: inline-block;
  padding: 10px;
  color: #555;
  text-align: center;
  font-weight: 500;
  line-height: 38px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 6px;
  white-space: pre-line;
}

.button:hover,
button:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0;
}

.button.button-primary,
button.button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #BBD610;
  border-color: #BBD610;
  -o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  /* ...and now for the proper property */
  transition:.5s;
  }
.button.button-primary:hover,
button.button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  opacity: 0.75;
}
.button-block{
  width: 100%;
  font-size: 2em;
  padding: .5em;
}
/* Form Submit Button */
input[type="submit"]{
  display: inline-block;
  padding: 10px;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 38px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #f28015;
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
  border: none;
  border-radius: 6px;
  -o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  /* ...and now for the proper property */
  transition:.5s;
  white-space: pre-line;
}
input[type="submit"]:hover,
input[type="submit"]:focus{
  color: #fff;
  opacity: 0.75;
}
input[type="submit"].button-primary,{
  color: #FFF;
  background-color: #BBD610;
  border-color: #BBD610;
  -o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  /* ...and now for the proper property */
  transition:.5s;
}
input[type="submit"].button-primary:hover,
input[type="submit"].button-primary:focus{
  color: #FFF;
  opacity: 0.75;
}


/* Sections
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section{
  padding-top: 2em;
}
.section-heading,
.section-description {
  margin-bottom: 1.2rem;
}
.section.section-primary{
  background-color: #404041;
  color: #fff;
  height: 200px;
}
.section.section-primary h1.hero-heading{
  color: #BBD610;
  font-weight: bold;
  font-size: 4em;
}
.section.section-secondary{
  background-color: #E6E7E8;
}
.section.section-primary-bottom{
  background-color: #404041;
  color: #fff;
  padding-bottom: 1em;
}
.section.footer{
  padding: 1em 0;
}


/* List
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul li{
  background-image:  url(images/bullet.png);
  background-repeat: no-repeat;
  padding-left: 2.4em;
  margin-bottom: 1.5em;
  list-style: none;
}

ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }
ul{
  margin-top: 2em;
}
/* Hero
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.phones {
  position: relative;
}
.phone {
  position: relative;
  max-width: 80%;
  margin: 3rem auto -12rem;
}
.phone + .phone {
  display: none;
}

/* Values
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.values {
  background-image: url('images/values-bg.jpg');
  background-size: cover;
  color: #fff;
  padding-bottom: 5rem;
}
.value-multiplier {
  margin-bottom: .5rem;
  color: #11DFC7;
}
.value-heading {
  margin-bottom: .3rem;
}
.value-description {
  opacity: .8;
  font-weight: 300;
}

/* Help
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.get-help {
  border-bottom: 1px solid #ddd;
}

/* Categories
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.categories {
  background-image: url('images/values-bg.jpg');
  background-size: cover;
  color: #fff;
}
.categories .section-description {
  margin-bottom: 4rem;
}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/
@media (max-width: 900px){
  .section.section-primary h1.hero-heading{
    font-size: 3em;
    text-align: center;
  }
  .section.section-primary .lead{
    text-align: center;
  }
}

/* Larger than mobile */
@media (min-width: 400px) {

}

/* Larger than phablet (also point when grid becomes active) */
@media (max-width: 900px) {
  .columns{
	width: 100%!important;
  }
  .container{
    display: block;
  }
  .hidden-sm{
    display: none;
  }
  .form{
    margin-top: 8em;
  }
}


/* Larger than tablet */
@media (min-width: 750px) {


}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}

@media (max-width: 1168px) {
  .section.section-primary{
    height: 19em!important;
  }
}
/* Bigger than 550 */
@media (min-width: 550px) {
  .hero {
    padding-bottom: 12rem;
    text-align: left;
    height: 165px;
  }
  .phone {
    position: absolute;
    top: -7rem;
    right: 3rem;
    max-height: 362px;
    z-index: 3;
  }
  .phone + .phone {
    top: -6rem;
    display: block;
    max-width: 73.8%;
    right: 0;
    z-index: 2;
    max-height: 338px;
  }
  .hero-heading {
    font-size: 2.4rem;
  }
}

/* Bigger than 750 */
@media (min-width: 750px) {
  .hero {
    height: 190px;
  }
  .hero-heading {
    font-size: 2.6rem;
  }
  .hero {
    padding: 16rem 0 14rem;
  }
  .section-description {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  .phone {
    top: -14rem;
    right: 5rem;
    max-height: 510px;
  }
  .phone + .phone {
    top: -12rem;
    max-height: 472px;
  }
  .categories {
    padding: 15rem 0 8rem;
  }
}
@media (min-width: 900px){
  .hidden-md{
    display: none;
  }
}
@media (max-width: 900px){
  .logo{
    text-align: center!important;
  }
  .logo img{
    margin: 0 auto!important;
  }
  .number p{
    margin: 0 5px 0 0!important;
  }
  .section.section-primary .five.columns{
    top: -8em!important;
    margin-bottom: -5em;
  }
  .section-primary .container{
    float: left;
  }
}
/* Bigger than 1000 */
@media (min-width: 1000px) {
  .hero {
    padding: 22rem 0;
  }
  .hero-heading {
    font-size: 3.0rem;
  }
  .phone {
    top: -16rem;
    max-height: 615px;
  }
  .phone + .phone {
    top: -14rem;
    max-height: 570px;
  }
  .hidden-lg{
    display: none;
  }

}

/* Responsive Utilities */
.avatar{
  border-radius: 50%;
  border: solid;
}
.fa-2{
  font-size: 1.5em;
  vertical-align: bottom;
}
