/*
 * -- BASE STYLES --
 * Most of these are inherited from Base, but I want to change a few.
 */
html {
  font-family: "Lato","Helvetica Neue",Helvetica,Arial,sans-serif !important;
}

body {
  color: #526066;
}

h2, h3 {
  font-weight: 600;
}

p {
  line-height: 1.6em;
}

/*
 * -- Layout Styles --
 */
.l-content {
  margin: 0 auto;
  padding: 15px 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.l-box {
  padding: 0.5em;
  text-align: justify;
  margin: auto;
}

.blog-box {
  padding: 0.5em 1.5em;
  text-align: justify;
  margin: auto;
}

/*
 * -- MENU STYLES --
 * Make the menu have a very faint box-shadow.
 */
.pure-menu {
  box-shadow: 0 1px 1px rgba(0,0,0, 0.10);
}


/*
 * -- BANNER --
 * The top banner with the headings. By using a combination
 * of `display: table;` and `display: table-cell;`, we can
 * vertically center the text.
 */

.banner {
  background: transparent url('../../../img/intro-bg.jpg') center center no-repeat;
  text-align: center;
  background-size: cover;
  height: 200px;
  width: 100%;
  margin-bottom: 1em;
  display: table;
}

.banner-head {
  display: table-cell;
  vertical-align: middle;
  margin-bottom: 0;
  font-size: 2em;
  color: white;
  font-weight: 500;
  text-shadow: 0 1px 1px black;
}

.post-banner-head {
  display: table-cell;
  vertical-align: middle;
  margin-bottom: 0;
  font-size: 2em;
  color: white;
  font-weight: 500;
  text-shadow: 0 1px 1px black;
}

.post-banner-head:hover {
  opacity: 0;
  transition: opacity 1s;
}

.post-content > *{
  font-size: 14.6667px;
  font-family: Arial;
  /* color: rgb(0, 0, 0); */
  background-color: transparent;
  vertical-align: baseline;
  white-space: pre-wrap;
  text-align: justify;
  line-height: 1.38;
  margin-top: 10pt;
  margin-bottom: 10pt;
}

.inner-content {
  max-width: 980px;
  margin: 0 auto;
}
 
.information {
  background-color: #fafafa;
  text-align: center;
}

.services {
  background-color: #E3E3E3;
  text-align: center;
}

/*
 * -- PRICING TABLE  --
 * Every pricing table has the .pricing-table class
 */
.pricing-table {
  border: 1px solid #ddd;
  margin: 0 0.5em 2em;
  padding: 0 0 3em;
}

/*
 * -- PRICING TABLE HEADER COLORS --
 * Choose a different color based on the type of pricing table.
 */
.pricing-table-biz {
  background: #2c4985;
}

/*
 * -- PRICING TABLE HEADER --
 * By default, a header is black/white, and has some styles for its <h2> name.
 */
.pricing-table-header {
  background: #1a0000;
  color: #fff;
}

.pricing-table-header h2 {
  margin: 0;
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: 1em;
  font-weight: normal;
}

/*
 * -- PRICING TABLE PRICE --
 * Styles for the price and the corresponding <span>per month</span>
 */
.pricing-table-price {
  font-size: 6em;
  margin: 0.2em 0 0;
  font-weight: 100;
}
.pricing-table-price span {
  display: block;
  text-transform: uppercase;
  font-size: 0.2em;
  padding-bottom: 2em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  *color: #fff;
}



/*
 * -- PRICING TABLE LIST --
 * Each pricing table has a <ul> which is denoted by the .pricing-table-list class
 */
.pricing-table-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}


/*
 * -- PRICING TABLE LIST ELEMENTS --
 * Styles for the individual list elements within each pricing table
 */
.pricing-table-list li {
  padding: 0.8em 0;
  background: #f7f7f7;
  border-bottom: 1px solid #e7e7e7;
}


/*
 * -- PRICING TABLE BUTTON --
 * Styles for the "Choose" button at the bottom of a pricing table.
 * This inherits from Pure Button.
 */
.button-choose {
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  border-radius: 2em;
  font-weight: bold;
  position: relative;
  bottom: -1.5em;
}

.information-head {
  color: black;
  font-weight: 500;
}

.footer {
  background: #1a0000;
  color: #888;
  text-align: center;
}
.footer a {
  color: #ddd;
}

/*
 * -- PHONE MEDIA QUERIES --
 * On phones, we want to reduce the height and font-size of the banner further
 */
@media (min-width: 480px) {
  .banner {
    height: 400px;
  }
  .banner-head {
    font-size: 3em;
  }
  .blog-box {
    padding: 0.5em 2.5em;
  }
}

/*
 * -- TABLET MEDIA QUERIES --
 * On tablets, we want to slightly adjust the size of the banner
 * text and add some vertical space between the various pricing tables
 */
@media(min-width: 767px) {
  .banner {
    height: 600px;
  }
  .banner-head {
    font-size: 4em;
  }
  .pricing-table {
    margin-bottom: 0;
  }
}

.fa-fw {
  font-size: 0.5em;
  color: white;
}
.fa-stack-1x {
  color: #1a0000;
}
.intro-divider {
  width: 30%;
  border-top: 1px solid #f8f8f8;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
ul.intro-social-buttons {
  padding: 0px;
}
ul.intro-social-buttons > li {
  display: block;
  margin: auto 3px;
  padding: 0;
}
ul.intro-social-buttons > li > a{
  text-decoration: none;
  display: block;
  margin: auto 3px;
  padding: 0;
}
.network-name {
  text-transform: uppercase;
  color: white !important;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
}

.contact-zone {
  text-align: center;
  height: 200px;
  width: 100%;
  margin-bottom: 2em;
  display: table;
}
.contact-zone .fa-fw {
  font-size: 1.2em;
  color: black;
}

.contact-zone .contactos {
  list-style-type: none;
}
