@import url("https://fonts.googleapis.com/css?family=Lato|Roboto:400");
/*@import "animation";*/
#main-nav {
  text-align: right;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: nav;
  font-family: "Roboto";
  -webkit-box-shadow: black 10px;
          box-shadow: black 10px;
}

@media (max-width: 840px) {
  #main-nav {
    display: none;
  }
}

#main-nav ul {
  background-color: #1e5180;
  margin-left: 6vw;
  padding: 0;
  overflow: hidden;
  height: 100px;
}

#main-nav ul li {
  display: inline-block;
  text-align: center;
  list-style-type: none;
  padding: 0;
  position: relative;
}

#main-nav ul li:hover a {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}

#main-nav ul li:hover a::before {
  content: attr(data-title);
  position: absolute;
  top: -100px;
  left: 0;
  display: block;
  height: 100px;
  padding: 0 1.5rem;
  background-color: rgba(30, 81, 128, 0.75);
}

#main-nav ul li a,
#main-nav ul li span {
  font-size: 0.75rem;
  line-height: 100px;
  display: block;
  color: #c4c4c4;
  padding: 0 1.5rem;
  text-transform: uppercase;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

@media (max-width: 960px) {
  #main-nav ul li a,
  #main-nav ul li span {
    padding: 0 1rem;
  }
}

#main-nav ul li a:hover,
#main-nav ul li span:hover {
  color: white;
  background-color: #3d3d3d;
}

#main-nav ul li a.active,
#main-nav ul li span.active {
  color: #ffa017;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

#main-nav ul li ul {
  display: none;
  position: absolute;
  margin-left: 0;
  z-index: 2;
  background-color: rgba(30, 81, 128, 0.95);
  border-top: solid 5px #2c87db;
}

#main-nav ul li ul.visible {
  -webkit-animation: slide-up 200ms ease-out;
          animation: slide-up 200ms ease-out;
}

#main-nav ul li ul li {
  text-align: left;
}

#main-nav ul li:hover ul {
  display: -ms-grid;
  display: grid;
}

.mobile-container {
  display: none;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  /*animation: slide-down 200ms linear;*/
  -webkit-transform: translateX(-1000px);
  transform: translateX(-1000px);
  -o-transform: translateX(-1000px);
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

.mobile-container a {
  line-height: 3rem;
  color: white !important;
}

.mobile-container a:hover {
  color: #2c87db !important;
}

.mobile-container.visible {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -o-transform: translateX(0px);
  margin-top: 50px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100vw;
  height: 100vh;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.4rem;
  padding: 10vh 0 0 0;
}

.mobile-container.visible ul.tree {
  padding: 0;
}

.mobile-container.visible li {
  margin: 0;
  list-style-type: none;
}

.mobile-container.visible li ul {
  padding: 0;
}

.mobile-container.visible li ul li {
  padding: 0;
  margin: 0;
  font-size: 1rem;
}

#hamburger {
  position: fixed;
  z-index: 1000;
}

@media (max-width: 840px) {
  #hamburger::after {
    content: "\f0c9";
    position: absolute;
    top: 8px;
    left: 5px;
    padding: 0.5rem;
    font-family: "FontAwesome";
    font-size: 1.5rem;
    color: #2d3945;
    z-index: 1000;
    cursor: pointer;
  }
}

#banner {
  width: 100%;
  margin-top: 70px;
  height: 20vh;
  min-height: 450px;
  overflow: hidden;
  background-size: cover;
  background-position: 0 0;
  /*animation: movebg 200s linear infinite;*/
}

#banner div {
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}

@media (max-width: 840px) {
  #banner {
    height: 50vh;
    min-height: 400px;
  }
}

#banner .container {
  position: relative;
  height: 20vh;
  min-height: 350px;
  background-position: center center;
  background-size: cover;
  display: -ms-grid;
  display: grid;
  grid-gap: 1rem 2vw;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      grid-template-areas: "foto"  "mensaje";
}

#banner .container::before {
  top: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgba(0, 0, 0, 0.75)), color-stop(75%, rgba(255, 132, 0, 0.5)), to(#ff9100));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 10%, rgba(255, 132, 0, 0.5) 75%, #ff9100 100%);
  z-index: 0;
}

@media (max-width: 840px) {
  #banner .container {
        grid-template-areas: "foto" "mensaje";
    grid-gap: 0;
  }
}

#banner .row {
  z-index: 1;
  display: -ms-grid;
  display: grid;
  padding: 0.5rem;
}

@media (max-width: 840px) {
  #banner .row {
    padding: 0 5vw;
  }
}

#banner .row.titulo {
  background-color: white;
  grid-area: titulo;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-columns: 2fr 2fr;
      grid-template-columns: 2fr 2fr;
  padding: 1rem;
  text-align: left;
}

@media (max-width: 840px) {
  #banner .row.titulo {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    text-align: center;
  }
}

#banner .row.titulo h1 {
  margin: 1rem;
}

#banner .row.titulo #top-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
  white-space: nowrap;
  padding: 1rem;
}

@media (max-width: 840px) {
  #banner .row.titulo #top-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0rem 1rem 0;
    text-align: center;
  }
}

#banner .row.row-1 {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: mensaje;
  text-align: center;
  margin-top: 10px;
}

#banner .row.row-1 span.title {
  font-size: 2rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-family: "Lato";
  margin: 1rem;
  color: black;
}

@media (max-width: 840px) {
  #banner .row.row-1 span.title {
    font-size: 5vw;
  }
}

@media (max-width: 600px) {
  #banner .row.row-1 span.title {
    font-size: 7vw;
    margin-top: 0.5rem;
  }
}

#banner .row.row-1 span.subtitle {
  color: white;
  font-size: 2.5rem;
  text-shadow: #aaaaaa;
}

@media (max-width: 840px) {
  #banner .row.row-1 span.subtitle {
    font-size: 2vw;
    padding-top: 0.5rem;
  }
}

@media (max-width: 600px) {
  #banner .row.row-1 span.subtitle {
    font-size: 4vw;
  }
}

#banner .row.row-2 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: foto;
  text-align: center;
}

#banner .row.row-2 figure {
  margin: 0 auto;
  padding: 1rem 1rem 0;
  width: 400px;
}

@media (max-width: 840px) {
  #banner .row.row-2 figure {
    padding-top: 5rem;
    width: 60vw;
  }
}

#banner .row.row-2 figure img {
  display: block;
  margin: 0 auto;
}

#banner .row.row-2 figure figcaption {
  font-size: 1.2rem;
  font-weight: bold;
  background-color: white;
  padding: 0.5rem 15px;
}

header {
  /*position: fixed !important;*/
  width: 100%;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  /*display: grid;*/
  /*grid-template-columns: repeat(4, auto);*/
  /*grid-column-gap: 2vw;*/
  /*background-color: $color-fondo;*/
  position: relative;
  z-index: 2;
  /*border-bottom: $color-base-lighter 5px solid;*/
}

@media (max-width: 840px) {
  header {
    margin-top: 0;
    position: fixed;
  }
}

header #logo {
  grid-area: logo;
  position: absolute;
}

@media (max-width: 840px) {
  header #logo {
    height: auto;
    width: 100%;
    background-color: white;
    text-align: center;
    margin: 0;
  }
  header #logo a {
    margin-left: 0 !important;
  }
}

header #logo a {
  display: block;
}

@media (max-width: 840px) {
  header #logo a {
    margin-left: 2.5rem;
  }
}

header #logo img {
  max-height: 100px;
  background-color: white;
}

@media (max-width: 840px) {
  header #logo img {
    max-height: 50px;
  }
}

header .top-links {
  grid-area: toplinks;
  display: -ms-grid;
  display: grid;
  margin: 0.7rem 0;
  font-family: "Lato";
}

header .top-links a {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (max-width: 840px) {
  header .top-links a span {
    display: none;
  }
}

#servicios {
  background-color: #dcdcdc;
}

#servicios .bloques-servicios {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: (1fr)[2];
      grid-template: auto/repeat(2, 1fr);
  grid-gap: 2rem;
  max-width: 70rem;
  margin: 2rem auto;
}

@media (max-width: 840px) {
  #servicios .bloques-servicios {
    -ms-grid-rows: auto;
    -ms-grid-columns: (1fr)[2];
        grid-template: auto/repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #servicios .bloques-servicios {
    -ms-grid-rows: auto;
    -ms-grid-columns: auto;
        grid-template: auto/auto;
  }
}

#servicios .bloques-servicios .servicio a {
  display: block;
  width: 100%;
}

#servicios .bloques-servicios .servicio img {
  width: 100%;
}

#servicios .bloques-servicios .servicio .titulo {
  background-color: rgba(196, 196, 196, 0.5);
  display: block;
  width: 100%;
  position: relative;
  font-weight: bold;
  font-family: "Lato";
  line-height: 2rem;
  padding: 2rem 0;
  padding-left: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#servicios .bloques-servicios .servicio .titulo:after {
  content: "\2192";
  margin-left: 0;
}

@media (max-width: 600px) {
  #servicios .bloques-servicios .servicio .titulo {
    font-size: 1.5rem;
    margin-top: -8rem;
    text-align: center;
  }
}

#servicios .bloques-servicios .servicio.contacto {
  width: 100%;
}

#servicios .bloques-servicios .servicio.contacto img {
  width: 80%;
  padding-left: 2rem;
}

form {
  position: relative;
  padding: 2rem 0;
}

form .form-columns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  text-align: center;
}

@media (max-width: 840px) {
  form .form-columns {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

form .form-spacer {
  margin: 1rem 0;
  font-size: 1.5rem;
  color: #1e5180;
  border-color: #2d3945;
}

form label {
  font-size: 0.8rem;
  color: darkgray;
}

form input {
  border: none;
}

form input,
form textarea,
form select,
form button {
  font-size: 0.8rem;
  background-color: white;
  line-height: 2rem;
  padding: 0.5rem 0.5rem 0.1rem;
  margin: 0.2rem 0 2rem 0;
  width: 300px;
  border-bottom: solid 2px #2c87db;
  max-width: 90%;
  font-family: "Lato";
  font-weight: bold;
  font-size: 1rem;
}

form .buttons {
  text-align: center;
}

form .buttons button {
  padding: 1rem;
  color: white;
  background-color: #1e5180;
  font-size: 1rem;
  cursor: pointer;
}

form#contact-form textarea {
  height: 324px;
}

@media (max-width: 840px) {
  form#contact-form textarea {
    height: 100px;
  }
}

form#fleetcomplete-form label {
  display: none;
}

form#fleetcomplete-form > div {
  display: inline-block;
}

form#fleetcomplete-form input,
form#fleetcomplete-form button {
  font-size: 1.5rem;
  padding: 0.9rem;
  line-height: 40px;
  margin-top: 0;
  margin-left: 1rem;
  width: 100%;
}

@media (max-width: 840px) {
  form#fleetcomplete-form input,
  form#fleetcomplete-form button {
    max-width: 150px;
    font-size: 1rem;
  }
}

form#samsara-form {
  text-align: center;
}

form#samsara-form label {
  display: none;
}

form#samsara-form > div {
  display: inline-block;
}

form#samsara-form input,
form#samsara-form button {
  font-size: 1.5rem;
  padding: 0.9rem;
  line-height: 40px;
  margin-top: 0;
  margin-left: 1rem;
  width: 100%;
}

@media (max-width: 840px) {
  form#samsara-form input,
  form#samsara-form button {
    max-width: 150px;
    font-size: 1rem;
  }
}

form .form-honeybear {
  display: none;
}

body.contacto .content {
  padding-top: 0;
}

@media (max-width: 840px) {
  body.contacto .content {
    margin-left: 2rem;
  }
}

body.contacto h3 {
  margin: 1rem 0 0.5rem 0;
}

body.contacto .col1 {
  padding-left: 6vw;
  background-color: white;
}

body.contacto .col1 h2 {
  font-size: 2rem;
  padding-top: 4rem;
}

body.quienes-somos h1 {
  margin-bottom: 1rem;
}

body.quienes-somos h2 {
  margin: 2rem 0 1rem;
}

body.quienes-somos p {
  margin-bottom: 0.5rem;
  line-height: 1.5rem;
}

#blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 840px) {
  #blocks {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #blocks {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

#blocks .block .image-section {
  background-color: gray;
  overflow: hidden;
  padding: 1rem;
  position: relative;
  height: 12rem;
  color: white;
}

#blocks .block .image-section:hover .overlay {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#blocks .block .image-section:hover .overlay::after {
  opacity: 1;
}

#blocks .block .image-section .overlay {
  width: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  background-size: cover;
  height: 14rem;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 0;
}

#blocks .block .image-section .overlay::after {
  content: "";
  display: block;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  width: 100%;
  background-color: rgba(44, 135, 219, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  height: 14rem;
}

#blocks .block .image-section .title {
  position: relative;
  -webkit-transform: translateX(-500px);
          transform: translateX(-500px);
  -webkit-animation-duration: 200ms;
          animation-duration: 200ms;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
}

#blocks .block .image-section .desc {
  position: relative;
  -webkit-transform: translateX(500px);
          transform: translateX(500px);
  -webkit-animation-duration: 200ms;
          animation-duration: 200ms;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
}

#blocks .block .image-section:hover .title {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#blocks .block .image-section:hover .desc {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#blocks .block .text-section {
  text-align: center;
  padding: 1rem;
}

#blocks .block .text-section h2 {
  margin: 0 0 1rem 0;
  color: gray;
  font-size: 1.5rem;
}

#blocks .block .text-section .icon i {
  font-size: 3rem;
  text-shadow: 1px 1px 1px #fff;
  color: #1e5180;
}

* {
  text-decoration: none;
  /*border: none;*/
  margin: 0;
  font-family: "Roboto";
  /*font-size: 1.1rem;*/
}

body #container {
  min-height: 100vh;
  background-image: url("../images/bg1.jpg");
  background-repeat: no-repeat;
  margin: 0 auto;
  padding: 0 10vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  -ms-grid-columns: auto;
      grid-template-columns: auto;
      grid-template-areas: "header" "nav" "main" "footer";
  /* background-color: $color-fondo;*/
}

@media (max-width: 840px) {
  body #container {
    padding: 0;
  }
}

body #container a {
  color: #1e5180;
}

body #container .font {
  color: #888;
  font-size: 0.8rem;
}

main {
  padding: 2rem 5vw;
  position: relative;
  margin-top: 4rem;
  background-color: #f5f5f5;
}

main.home-main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
  grid-gap: 1rem;
  background-color: #1e5180;
  color: lightblue;
  font-size: 1.2rem;
}

main.home-main .home-main-image {
  background-size: cover;
  background-position: center center;
}

footer {
  text-align: center;
  background-color: gray;
  padding: 1rem;
}

#clientes {
  background-color: white;
  padding: 2rem;
  color: gray;
}

#clientes h3 {
  text-align: center;
}

#clientes .logos-clientes {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 840px) {
  #clientes .logos-clientes {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

#clientes .logos-clientes img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.bg-columna {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.bg-columna::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../images/columna.svg");
  background-size: contain;
  background-position-x: 95%;
  background-repeat: no-repeat;
  padding-right: 3rem;
  top: 0;
  opacity: 0.1;
  z-index: 0;
}

@media (max-width: 840px) {
  .bg-columna::before {
    background-position-x: 95%;
  }
}

.bg-content {
  background-color: #f5f5f5;
}

.conicono::before {
  font-size: 2rem;
  font-family: "FontAwesome";
  position: absolute;
  margin-left: -2.5rem;
  color: #888;
}

.conicono.telefono::before {
  content: "\f095";
}

.conicono.whatsapp::before {
  content: "\f232";
}

.conicono.oficina::before {
  content: "\f041";
}

.boton {
  border: solid 1px #3d3d3d;
  background-color: #1e5180;
  color: white;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  line-height: 2rem;
  display: inline-block;
}

h1,
h2 {
  margin: 2.5rem 0 1rem 0;
  font-family: "Lato";
  font-size: 1.8rem;
}

p {
  margin-bottom: 1rem;
}

a.button {
  margin: 2rem;
  padding: 1rem 2rem;
  color: #f5f5f5 !important;
  border: solid 1px #2c87db;
  background-color: #1e5180;
  display: inline-block;
}

#map {
  width: 100%;
  height: 600px;
}

.time {
  font-size: 0.75rem;
}

#app-message {
  font-size: 2rem;
}

div.page-title {
  text-align: center;
  color: #1e5180;
}

@media (max-width: 600px) {
  div.page-title {
    margin-top: 4rem;
  }
}

div.page-subtitle {
  text-align: center;
  color: #444444;
}
/*# sourceMappingURL=styles.css.map */