/* -------------------------------- 
ESTILOS PRIMARIOS
-------------------------------- */
@font-face {
    font-family: Bauhaus;
    src: url(../font/Bauhaus-93_6274.ttf);
}

*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 62.5%;
  font-family: "Source Sans Pro", sans-serif;
  color: #353535;
  background-color: #f2f2f2;
}

.cd-main-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  background-color: #f2f2f2;
}

.fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  line-height: 1.2;
}

.fixed-bg.bg-1 {
  background-image: url("../img/contadores_tabasco_alvarez_garcia_sc.jpg");
}

/* -------------------------------- 
ENCABEZADOS
-------------------------------- */
.banner-logo{
  color: #FFFFFF;
  max-width: 1170px;
  text-align: center;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
               0px 8px 13px rgba(0,0,0,0.1),
               0px 18px 23px rgba(0,0,0,0.1);
  width: 90%;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.banner-logo h1{
  font-family: Bauhaus, sans-serif;
  font-size: 4em;
  margin-top: 0.5em;
}

.banner-logo  h2{
  font-size: 2em;
  margin-top: 0.5em;
}

.banner-logo img{
  max-width: 200px;
}

.banner-contact{
  margin-top: 4em;
}

.contact-description{
  font-family: "Source Sans Pro", sans-serif;
  color: white;
  font-size: 1.2em;
  margin-bottom: 1em;
}

.contact-link img{
  width: 25px;
  margin-right: 0.5em;
}

@media only screen and (min-width: 580px) {
  .banner-logo h1{
    font-size: 6em; 
  }

  .banner-logo  h2{
    font-size: 3em;
  }

  .banner-logo img{
    max-width: 100%;
  }

  .contact-description{
    font-size: 1.6em;
  }  

  .contact-link img{
    width: 35px;
  }
}

@media only screen and (min-width: 1280px) {
  .banner-logo h1{
    font-size: 8em; 
  }

  .banner-logo  h2{
    font-size: 4em;
  }

  .banner-contact{
    margin-top: 6em;
  }
}