/*==============================================
=               Aspectos Generales             =
===============================================*/
/* line 5, SCSS/_globales.scss */
*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* line 11, SCSS/_globales.scss */
ul li {
  list-style: none;
}

/* line 15, SCSS/_globales.scss */
a {
  text-decoration: none;
}

/* line 19, SCSS/_globales.scss */
html {
  font-size: 62.5%;
  height: 100%;
}

/* line 23, SCSS/_globales.scss */
html body {
  font-size: 10px;
  height: 100%;
  font-family: "oxygen-light";
}

/* line 29, SCSS/_globales.scss */
html section, html footer {
  padding: 6rem 0;
}

/* line 34, SCSS/_globales.scss */
html article:not(:last-child) {
  margin-bottom: 3rem;
}

/* line 39, SCSS/_globales.scss */
html .articulo-parcial {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 769px) {
  /* line 39, SCSS/_globales.scss */
  html .articulo-parcial {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* line 49, SCSS/_globales.scss */
html .articulo-parcial > div:first-child {
  margin-bottom: 1.6rem;
}

@media only screen and (min-width: 769px) {
  /* line 49, SCSS/_globales.scss */
  html .articulo-parcial > div:first-child {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 769px) {
  /* line 57, SCSS/_globales.scss */
  html .articulo-parcial .foto-articulo {
    width: calc(50% - 2rem);
  }
}

@media only screen and (min-width: 769px) {
  /* line 63, SCSS/_globales.scss */
  html .articulo-parcial .texto-articulo {
    width: calc(50% - 2rem);
  }
}

@media only screen and (min-width: 769px) {
  /* line 70, SCSS/_globales.scss */
  html .reverse {
    flex-direction: row-reverse;
  }
}

/* line 76, SCSS/_globales.scss */
html p, html li, html a {
  font-size: 1.6rem;
}

/* line 80, SCSS/_globales.scss */
html p:not(:last-child) {
  margin-bottom: 1.6rem;
}

/* line 84, SCSS/_globales.scss */
html h1, html h2, html h3, html h4, html h5, html h6 {
  margin: 0;
}

/* line 89, SCSS/_globales.scss */
html figure img, html div img {
  width: 100%;
  display: block;
}

/* line 95, SCSS/_globales.scss */
html .titulo {
  color: #009bdb;
  font: 3rem "worksans-black";
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

@media only screen and (min-width: 481px) {
  /* line 95, SCSS/_globales.scss */
  html .titulo {
    font-size: 3.6rem;
  }
}

/* line 106, SCSS/_globales.scss */
html .subtitulo {
  color: #009bdb;
  font: 2.2rem "worksans-black";
  text-transform: uppercase;
}

/* line 112, SCSS/_globales.scss */
html .centrado {
  text-align: center;
}

/* line 116, SCSS/_globales.scss */
html .bold {
  font-family: "oxygen-bold";
}

/* line 120, SCSS/_globales.scss */
html .cursiva {
  font-style: italic;
}

/* line 124, SCSS/_globales.scss */
html .cta {
  color: #fff;
  background-color: #009bdb;
  padding: 1rem 1.42857rem;
  font: 1.6rem "worksans-bold";
  border-radius: 3px;
  text-align: center;
  display: inline-block;
  margin: 0 auto;
}

/* line 32, SCSS/_mixins.scss */
html .cta:hover {
  background-color: #0077a8;
}

@media only screen and (min-width: 769px) {
  /* line 124, SCSS/_globales.scss */
  html .cta {
    padding: 1rem 3rem;
  }
}

/* line 128, SCSS/_globales.scss */
html .texto-celeste {
  color: #009bdb;
}

/* line 132, SCSS/_globales.scss */
html .gris, html .secciones-inicio section:nth-child(odd), html .secciones section:nth-child(even) {
  background-color: #d8d8d8;
}

/* line 152, SCSS/_globales.scss */
html .contenedor {
  width: 90%;
  margin: 0 auto;
}

@media only screen and (min-width: 481px) {
  /* line 152, SCSS/_globales.scss */
  html .contenedor {
    width: 83.3333333%;
  }
}

@media only screen and (min-width: 769px) {
  /* line 152, SCSS/_globales.scss */
  html .contenedor {
    max-width: 1200px;
  }
}

/* line 165, SCSS/_globales.scss */
html .no-tb {
  display: none;
}

@media only screen and (min-width: 769px) {
  /* line 165, SCSS/_globales.scss */
  html .no-tb {
    display: block;
  }
}

/* line 173, SCSS/_globales.scss */
html .migra-logo {
  width: 135px;
  margin: 0 auto;
  margin-bottom: 1.6rem;
}

@keyframes dearriba {
  0% {
    top: -50%;
    opacity: 0;
  }
  100% {
    top: 50%;
    opacity: 1;
  }
}

@keyframes deabajo {
  0% {
    top: 50%;
    opacity: 1;
  }
  100% {
    top: -50%;
    opacity: 0;
  }
}

/* line 203, SCSS/_globales.scss */
html .bajan {
  animation: dearriba 1s;
}

/* line 207, SCSS/_globales.scss */
html .suben {
  animation: deabajo 1s;
}

/*=======  Fin de Aspectos Generales  ========*/
/*==============================================
=                     Header                   =
===============================================*/
/* line 6, SCSS/_header.scss */
header .logo-callcenter {
  display: flex;
  justify-content: space-between;
  padding: 45px 0 10px;
  flex-direction: column;
}

@media only screen and (min-width: 481px) {
  /* line 6, SCSS/_header.scss */
  header .logo-callcenter {
    flex-direction: row;
  }
}

@media only screen and (min-width: 769px) {
  /* line 6, SCSS/_header.scss */
  header .logo-callcenter {
    padding: 10px 0;
  }
}

/* line 20, SCSS/_header.scss */
header .logo-callcenter .logo-nombre {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 288px;
}

@media only screen and (min-width: 481px) {
  /* line 20, SCSS/_header.scss */
  header .logo-callcenter .logo-nombre {
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 769px) {
  /* line 20, SCSS/_header.scss */
  header .logo-callcenter .logo-nombre {
    margin-top: 0;
    width: 350px;
  }
}

/* line 37, SCSS/_header.scss */
header .logo-callcenter .logo-nombre .logo {
  width: 115px;
}

@media only screen and (min-width: 769px) {
  /* line 37, SCSS/_header.scss */
  header .logo-callcenter .logo-nombre .logo {
    width: 140px;
  }
}

/* line 45, SCSS/_header.scss */
header .logo-callcenter .logo-nombre .globalintjc {
  width: 164px;
}

@media only screen and (min-width: 769px) {
  /* line 45, SCSS/_header.scss */
  header .logo-callcenter .logo-nombre .globalintjc {
    width: 200px;
  }
}

/* line 54, SCSS/_header.scss */
header .logo-callcenter .callcenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 1rem;
}

@media only screen and (min-width: 481px) {
  /* line 54, SCSS/_header.scss */
  header .logo-callcenter .callcenter {
    margin-top: 0;
  }
}

/* line 64, SCSS/_header.scss */
header .logo-callcenter .callcenter p {
  margin-bottom: 0;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.3;
}

@media only screen and (min-width: 481px) {
  /* line 64, SCSS/_header.scss */
  header .logo-callcenter .callcenter p {
    font-size: 1.4rem;
  }
}

/* line 75, SCSS/_header.scss */
header .logo-callcenter .callcenter .telefono-dt {
  display: none;
}

@media only screen and (min-width: 769px) {
  /* line 75, SCSS/_header.scss */
  header .logo-callcenter .callcenter .telefono-dt {
    color: #009bdb;
    font: 2.6rem "worksans-bold";
    display: block;
  }
  /* line 83, SCSS/_header.scss */
  header .logo-callcenter .callcenter .telefono-dt .fas {
    margin-right: 0.5rem;
  }
}

/* line 91, SCSS/_header.scss */
header .iconos-contacto {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 769px) {
  /* line 91, SCSS/_header.scss */
  header .iconos-contacto {
    display: none;
  }
}

/* line 101, SCSS/_header.scss */
header .iconos-contacto a {
  width: 5rem;
  height: 5rem;
  font-size: 3rem;
  line-height: 5rem;
  color: #fff;
  background-color: #009bdb;
  border-radius: 50%;
  text-align: center;
  margin: 0 0.66667rem;
}

@media only screen and (min-width: 481px) {
  /* line 107, SCSS/_header.scss */
  header .iconos-contacto .phone-btn, header .iconos-contacto .whatsapp-btn {
    display: none;
  }
}

/* line 113, SCSS/_header.scss */
header .iconos-contacto2 {
  position: fixed;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  transition: all 0.3s ease;
}

/* line 121, SCSS/_header.scss */
header .iconos-contacto2 a {
  box-shadow: 0 0 2px 1px #000;
}

/* line 126, SCSS/_header.scss */
header .iconos-abajo {
  top: 100px;
}

/* line 130, SCSS/_header.scss */
header .contact-btn {
  width: 5rem;
  height: 5rem;
  font-size: 3rem;
  line-height: 5rem;
  color: #fff;
  background-color: #009bdb;
  border-radius: 50%;
  text-align: center;
  position: fixed;
  margin: 0;
  bottom: -5rem;
  right: 1.33333rem;
  z-index: 400;
  box-shadow: 0 0 2px 1px #000;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 769px) {
  /* line 130, SCSS/_header.scss */
  header .contact-btn {
    display: none;
  }
}

/* line 145, SCSS/_header.scss */
header .contact-btn2 {
  bottom: 1.33333rem;
}

/* line 149, SCSS/_header.scss */
header .rotated {
  transform: rotate(180deg);
}

/* line 153, SCSS/_header.scss */
header .main-menu {
  position: fixed;
  width: 100%;
  top: -190px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-end;
  z-index: 500;
}

@media only screen and (min-width: 769px) {
  /* line 153, SCSS/_header.scss */
  header .main-menu {
    position: relative;
    top: 0;
  }
}

/* line 168, SCSS/_header.scss */
header .main-menu nav {
  width: 100%;
  background-color: #009bdb;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  transition: all 1s ease;
}

@media only screen and (min-width: 769px) {
  /* line 174, SCSS/_header.scss */
  header .main-menu nav .menu-cont {
    margin: 0 auto;
    width: 83.3333333%;
    max-width: 1200px;
  }
}

/* line 182, SCSS/_header.scss */
header .main-menu nav .menu {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 769px) {
  /* line 182, SCSS/_header.scss */
  header .main-menu nav .menu {
    flex-direction: row;
  }
}

/* line 190, SCSS/_header.scss */
header .main-menu nav .menu li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

@media only screen and (min-width: 769px) {
  /* line 190, SCSS/_header.scss */
  header .main-menu nav .menu li:not(:last-child) {
    border-bottom: none;
  }
}

/* line 198, SCSS/_header.scss */
header .main-menu nav .menu li {
  text-align: center;
}

@media only screen and (min-width: 769px) {
  /* line 198, SCSS/_header.scss */
  header .main-menu nav .menu li {
    width: 20%;
  }
}

/* line 205, SCSS/_header.scss */
header .main-menu nav .menu li a {
  text-transform: uppercase;
  font: 1.6rem "oxygen";
  color: #fff;
  padding: 9px 0;
  display: block;
}

/* line 212, SCSS/_header.scss */
header .main-menu nav .menu li a:hover {
  background-color: #0077a8;
}

/* line 217, SCSS/_header.scss */
header .main-menu nav .menu li .selected {
  background-color: #0077a8;
  position: relative;
}

@media only screen and (min-width: 769px) {
  /* line 221, SCSS/_header.scss */
  header .main-menu nav .menu li .selected:after {
    content: '';
    width: 18px;
    height: 11px;
    background-image: url(../img/selected.png);
    position: absolute;
    top: 100%;
    right: calc(50% - 9px);
  }
}

/* line 238, SCSS/_header.scss */
header .menu-fixed {
  position: fixed;
  top: 0;
}

/* line 242, SCSS/_header.scss */
header .menu-fixed nav {
  background-color: rgba(0, 155, 219, 0.95);
  transition: all 1s ease;
}

/* line 248, SCSS/_header.scss */
header .menu-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  width: 60px;
  height: 39px;
  margin-top: -1px;
  margin-right: 2rem;
  background-color: rgba(0, 155, 219, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  z-index: 500;
  border-radius: 0 0 10px 10px;
  cursor: pointer;
}

@media only screen and (min-width: 769px) {
  /* line 248, SCSS/_header.scss */
  header .menu-bar {
    display: none;
  }
}

/* line 267, SCSS/_header.scss */
header .menu-bar .bt-menu {
  display: block;
  width: 30px;
}

/* line 271, SCSS/_header.scss */
header .menu-bar .bt-menu .uno, header .menu-bar .bt-menu .dos, header .menu-bar .bt-menu .tres {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  height: 2px;
  transition: all 0.5s;
}

/* line 278, SCSS/_header.scss */
header .menu-bar .bt-menu .dos {
  margin: 6px 0;
}

/* line 284, SCSS/_header.scss */
header .menu-bar .bt-menu2 .dos {
  opacity: 0;
}

/* line 288, SCSS/_header.scss */
header .menu-bar .bt-menu2 .uno {
  transform: rotate(45deg) translate(5px, 5px);
}

/* line 292, SCSS/_header.scss */
header .menu-bar .bt-menu2 .tres {
  transform: rotate(-45deg) translate(5px, -7px);
}

/* line 299, SCSS/_header.scss */
.close-btn {
  width: 5rem;
  height: 5rem;
  font-size: 3rem;
  line-height: 5rem;
  color: #fff;
  background-color: #000;
  border-radius: 50%;
  text-align: center;
  top: -55px;
  right: 0;
  position: fixed;
}

/* line 305, SCSS/_header.scss */
.close-btn .fas {
  top: 2px;
}

/*=============  Fin de Header  ===============*/
/*==============================================
=                    Principal                  =
===============================================*/
/* line 5, SCSS/_main.scss */
.modal-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 600;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  display: none;
}

/* line 16, SCSS/_main.scss */
.modal-bg .mapa-modal {
  position: relative;
  padding: 1rem;
  background-color: #fff;
  height: calc(100vh - 200px);
  top: 50%;
  transform: translateY(-50%);
}

/* line 24, SCSS/_main.scss */
.modal-bg .mapa-modal iframe {
  width: 100%;
  height: 100%;
  border: 1px solid #b3b3b3 !important;
}

@media only screen and (min-width: 769px) {
  /* line 5, SCSS/_main.scss */
  .modal-bg {
    display: none;
  }
}

/* line 36, SCSS/_main.scss */
.bloque {
  display: block;
  height: 40px;
}

/* line 41, SCSS/_main.scss */
.seccion-banner {
  padding: 0;
}

/* line 44, SCSS/_main.scss */
.seccion-banner .banner-hero {
  width: 100%;
  height: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media only screen and (min-width: 481px) {
  /* line 44, SCSS/_main.scss */
  .seccion-banner .banner-hero {
    width: 83.3333333%;
    height: 550px;
  }
}

@media only screen and (min-width: 769px) {
  /* line 44, SCSS/_main.scss */
  .seccion-banner .banner-hero {
    max-width: 1200px;
    height: 550px;
    flex-direction: row;
  }
}

/* line 63, SCSS/_main.scss */
.seccion-banner .banner-hero .banner-item {
  position: relative;
  height: 40px;
  flex: 5;
  border-bottom: 4px solid #d8d8d8;
  transition: all 0.5s ease;
}

@media only screen and (min-width: 481px) {
  /* line 63, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item {
    flex: 2;
  }
}

@media only screen and (min-width: 769px) {
  /* line 63, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item {
    height: 100%;
    flex: 1;
    border-bottom: none;
    border-right: 4px solid #d8d8d8;
  }
  /* line 80, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item:last-child {
    border-right: none;
  }
}

/* line 85, SCSS/_main.scss */
.seccion-banner .banner-hero .banner-item:last-child {
  border-bottom: none;
}

/* line 89, SCSS/_main.scss */
.seccion-banner .banner-hero .banner-item .banner-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: #009bdb;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 101, SCSS/_main.scss */
.seccion-banner .banner-hero .banner-item .titulo-caption {
  font: 1.8rem "worksans-bold";
  color: #d8d8d8;
  text-transform: capitalize;
}

@media only screen and (min-width: 769px) {
  /* line 101, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item .titulo-caption {
    font: 2.2rem "worksans-bold";
    transition: transform 0.3s 0.3s ease;
    transform: rotate(-90deg);
  }
}

/* line 113, SCSS/_main.scss */
.seccion-banner .banner-hero .banner-item .texto-caption, .seccion-banner .banner-hero .banner-item .cta-banner {
  display: none;
}

/* line 117, SCSS/_main.scss */
.seccion-banner .banner-hero .banner-item .banner-fondo {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* line 125, SCSS/_main.scss */
.seccion-banner .banner-hero .banner-item .fondo1 {
  background-image: url(../img/polibrazo-home-hero-mb.jpg);
}

@media only screen and (min-width: 481px) {
  /* line 125, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item .fondo1 {
    background-image: url(../img/polibrazo-home-hero-tb.jpg);
  }
}

@media only screen and (min-width: 769px) {
  /* line 125, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item .fondo1 {
    background-image: url(../img/polibrazo-home-hero-dt.jpg);
  }
}

/* line 137, SCSS/_main.scss */
.seccion-banner .banner-hero .banner-item .fondo2 {
  background-image: url(../img/furgon-home-hero-mb.jpg);
}

@media only screen and (min-width: 481px) {
  /* line 137, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item .fondo2 {
    background-image: url(../img/furgon-home-hero-tb.jpg);
  }
}

@media only screen and (min-width: 769px) {
  /* line 137, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item .fondo2 {
    background-image: url(../img/furgon-home-hero-dt.jpg);
  }
}

/* line 149, SCSS/_main.scss */
.seccion-banner .banner-hero .banner-item .fondo3 {
  background-image: url(../img/cisterna-home-hero-mb.jpg);
}

@media only screen and (min-width: 481px) {
  /* line 149, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item .fondo3 {
    background-image: url(../img/cisterna-home-hero-tb.jpg);
  }
}

@media only screen and (min-width: 769px) {
  /* line 149, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item .fondo3 {
    background-image: url(../img/cisterna-home-hero-dt.jpg);
  }
}

/* line 161, SCSS/_main.scss */
.seccion-banner .banner-hero .banner-item .fondo4 {
  background-image: url(../img/tolva-home-hero-mb.jpg);
}

@media only screen and (min-width: 481px) {
  /* line 161, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item .fondo4 {
    background-image: url(../img/tolva-home-hero-tb.jpg);
  }
}

@media only screen and (min-width: 769px) {
  /* line 161, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item .fondo4 {
    background-image: url(../img/tolva-home-hero-dt.jpg);
  }
}

/* line 173, SCSS/_main.scss */
.seccion-banner .banner-hero .banner-item .fondo5 {
  background-image: url(../img/baranda-home-hero-mb.jpg);
}

@media only screen and (min-width: 481px) {
  /* line 173, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item .fondo5 {
    background-image: url(../img/baranda-home-hero-tb.jpg);
  }
}

@media only screen and (min-width: 769px) {
  /* line 173, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item .fondo5 {
    background-image: url(../img/baranda-home-hero-dt.jpg);
  }
}

/* line 185, SCSS/_main.scss */
.seccion-banner .banner-hero .banner-item .fondo6 {
  background-image: url(../img/rampa-home-hero-mb.jpg);
}

@media only screen and (min-width: 481px) {
  /* line 185, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item .fondo6 {
    background-image: url(../img/rampa-home-hero-tb.jpg);
  }
}

@media only screen and (min-width: 769px) {
  /* line 185, SCSS/_main.scss */
  .seccion-banner .banner-hero .banner-item .fondo6 {
    background-image: url(../img/rampa-home-hero-dt.jpg);
  }
}

/* line 198, SCSS/_main.scss */
.seccion-banner .banner-hero .desplegado {
  flex-grow: 25;
}

/* line 201, SCSS/_main.scss */
.seccion-banner .banner-hero .desplegado .banner-caption {
  height: auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (min-width: 769px) {
  /* line 201, SCSS/_main.scss */
  .seccion-banner .banner-hero .desplegado .banner-caption {
    background-color: rgba(0, 0, 0, 0.8);
    flex-direction: column;
    align-items: flex-start;
  }
}

/* line 214, SCSS/_main.scss */
.seccion-banner .banner-hero .desplegado .banner-caption .titulo-caption {
  font: 2rem "worksans-bold";
  color: #fff;
  text-transform: uppercase;
}

@media only screen and (min-width: 769px) {
  /* line 214, SCSS/_main.scss */
  .seccion-banner .banner-hero .desplegado .banner-caption .titulo-caption {
    font-size: 3rem;
    transform: rotate(0deg);
  }
}

/* line 225, SCSS/_main.scss */
.seccion-banner .banner-hero .desplegado .banner-caption .texto-caption {
  font: 1.4rem "oxygen-light";
  color: #fff;
}

@media only screen and (min-width: 769px) {
  /* line 225, SCSS/_main.scss */
  .seccion-banner .banner-hero .desplegado .banner-caption .texto-caption {
    display: block;
  }
}

/* line 234, SCSS/_main.scss */
.seccion-banner .banner-hero .desplegado .banner-caption .cta-banner {
  display: block;
}

/* line 241, SCSS/_main.scss */
.seccion-banner .banner-inner {
  height: 33.3333333vh;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 0 1rem;
}

@media only screen and (min-width: 481px) {
  /* line 241, SCSS/_main.scss */
  .seccion-banner .banner-inner {
    height: 30vh;
    padding: 0 2rem;
  }
}

@media only screen and (min-width: 769px) {
  /* line 241, SCSS/_main.scss */
  .seccion-banner .banner-inner {
    height: 350px;
  }
}

@media only screen and (min-width: 1281px) {
  /* line 241, SCSS/_main.scss */
  .seccion-banner .banner-inner {
    height: 450px;
  }
}

@keyframes suben {
  from {
    bottom: 100%;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

/* line 274, SCSS/_main.scss */
.seccion-banner .banner-inner .titulo {
  position: absolute;
  bottom: 0;
  animation: suben 0.7s;
  color: #fff;
  text-shadow: 0 0 6px #000;
}

/* line 283, SCSS/_main.scss */
.seccion-banner .banner-nosotros {
  background-image: url(../img/nosotros-hero.jpg);
}

/* line 287, SCSS/_main.scss */
.seccion-banner .banner-productos {
  background-image: url(../img/productos-hero.jpg);
}

/* line 291, SCSS/_main.scss */
.seccion-banner .banner-servicios {
  background-image: url(../img/servicios-hero.jpg);
}

/* line 295, SCSS/_main.scss */
.seccion-banner .banner-contacto {
  background-image: url(../img/contacto-hero.jpg);
}

/* line 301, SCSS/_main.scss */
.articulo-slider:not(:last-child) {
  margin-bottom: 6rem;
}

@media only screen and (min-width: 769px) {
  /* line 306, SCSS/_main.scss */
  .articulo-slider:nth-child(even) {
    flex-direction: row-reverse;
  }
}

/* line 312, SCSS/_main.scss */
.parcial {
  width: 100%;
}

@media only screen and (min-width: 769px) {
  /* line 312, SCSS/_main.scss */
  .parcial {
    width: calc(50% - 2rem);
  }
}

/* line 320, SCSS/_main.scss */
.slide-parcial {
  position: relative;
  overflow: hidden;
}

/* line 324, SCSS/_main.scss */
.slide-parcial ul {
  position: relative;
  margin: auto;
  height: auto;
}

/* line 330, SCSS/_main.scss */
.slide-parcial ul li {
  position: relative;
  float: left;
  list-style: none;
  margin-bottom: 0;
  transition: all 8s linear;
}

/* line 338, SCSS/_main.scss */
.slide-parcial ul li img {
  width: 100%;
  display: block;
}

/* line 345, SCSS/_main.scss */
.slide-parcial .slide-thumb {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: space-between;
  bottom: 0;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.5);
}

@media only screen and (min-width: 481px) {
  /* line 345, SCSS/_main.scss */
  .slide-parcial .slide-thumb {
    justify-content: center;
  }
}

/* line 358, SCSS/_main.scss */
.slide-parcial .slide-thumb li {
  width: 11%;
  margin: 0 5px 0 5px;
  list-style: none;
  border: 1px solid #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 366, SCSS/_main.scss */
.slide-parcial .slide-thumb li:nth-child(1) {
  border-color: #009bdb;
}

/* line 369, SCSS/_main.scss */
.slide-parcial .slide-thumb li:nth-child(1) img {
  opacity: 0.4;
}

/* line 374, SCSS/_main.scss */
.slide-parcial .slide-thumb li:hover {
  border-color: #009bdb;
}

/* line 380, SCSS/_main.scss */
.slide-parcial .manejadores {
  width: 40px;
  height: 40px;
  text-align: center;
  position: absolute;
  background-color: #d8d8d8;
  font-size: 3rem;
  line-height: 40px;
  color: #fff;
  opacity: 0.2;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 396, SCSS/_main.scss */
.slide-parcial .manejadores:hover {
  color: #009bdb;
  opacity: 0.4;
}

/* line 402, SCSS/_main.scss */
.slide-parcial .prev {
  left: 5px;
}

@media only screen and (min-width: 481px) {
  /* line 402, SCSS/_main.scss */
  .slide-parcial .prev {
    left: 10px;
  }
}

/* line 410, SCSS/_main.scss */
.slide-parcial .next {
  right: 5px;
}

@media only screen and (min-width: 481px) {
  /* line 410, SCSS/_main.scss */
  .slide-parcial .next {
    right: 10px;
  }
}

/* line 419, SCSS/_main.scss */
.videos, .fotos {
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

@media only screen and (min-width: 769px) {
  /* line 426, SCSS/_main.scss */
  .videos {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* line 432, SCSS/_main.scss */
.videos iframe {
  width: 100%;
  height: 190px;
}

/* line 436, SCSS/_main.scss */
.videos iframe:not(:last-child) {
  margin-bottom: 1.6rem;
}

@media only screen and (min-width: 769px) {
  /* line 436, SCSS/_main.scss */
  .videos iframe:not(:last-child) {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 481px) {
  /* line 432, SCSS/_main.scss */
  .videos iframe {
    height: 275px;
  }
}

@media only screen and (min-width: 769px) {
  /* line 432, SCSS/_main.scss */
  .videos iframe {
    width: calc(50% - 2rem);
    height: 288px;
  }
}

@media only screen and (min-width: 1281px) {
  /* line 432, SCSS/_main.scss */
  .videos iframe {
    height: 326px;
  }
}

@media only screen and (min-width: 769px) {
  /* line 459, SCSS/_main.scss */
  .video {
    justify-content: space-around;
  }
}

@media only screen and (min-width: 481px) {
  /* line 465, SCSS/_main.scss */
  .fotos {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* line 471, SCSS/_main.scss */
.fotos figure {
  width: 100%;
  position: relative;
}

/* line 475, SCSS/_main.scss */
.fotos figure:not(:last-child) {
  margin-bottom: 4rem;
}

@media only screen and (min-width: 481px) {
  /* line 471, SCSS/_main.scss */
  .fotos figure {
    width: calc(50% - 2rem);
  }
  /* line 482, SCSS/_main.scss */
  .fotos figure:nth-last-child(2) {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 769px) {
  /* line 471, SCSS/_main.scss */
  .fotos figure {
    width: calc(25% - 2rem);
    overflow: hidden;
  }
  /* line 491, SCSS/_main.scss */
  .fotos figure:nth-last-child(3), .fotos figure:nth-last-child(4) {
    margin-bottom: 0;
  }
}

/* line 496, SCSS/_main.scss */
.fotos figure figcaption {
  padding: 20px 10px;
  background-color: #009bdb;
  color: #fff;
  font: 1.6rem "worksans-bold";
}

@media only screen and (min-width: 769px) {
  /* line 496, SCSS/_main.scss */
  .fotos figure figcaption {
    font-size: 1.8rem;
    width: 100%;
    height: 100%;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 155, 219, 0.85);
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
}

/* line 517, SCSS/_main.scss */
.fotos figure:hover figcaption {
  opacity: 1;
}

/* line 523, SCSS/_main.scss */
.principios {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 769px) {
  /* line 523, SCSS/_main.scss */
  .principios {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* line 532, SCSS/_main.scss */
.principios .principio {
  background-color: #fff;
  padding: 2rem;
  text-align: center;
}

/* line 537, SCSS/_main.scss */
.principios .principio p {
  text-align: left;
}

@media only screen and (min-width: 769px) {
  /* line 532, SCSS/_main.scss */
  .principios .principio {
    margin-bottom: 0;
    width: calc(33.3333333% - 2rem);
  }
}

/* line 546, SCSS/_main.scss */
.principios .principio .fas, .principios .principio .far {
  color: #999999;
  font-size: 3.2rem;
  margin-bottom: 0.4rem;
}

@media only screen and (min-width: 769px) {
  /* line 554, SCSS/_main.scss */
  .articulo-contacto {
    align-items: flex-start !important;
  }
}

/* line 560, SCSS/_main.scss */
.articulo-contacto .escribenos .subtitulo, .articulo-contacto .ubicanos .subtitulo {
  margin-bottom: 1.6rem;
}

@media only screen and (min-width: 769px) {
  /* line 565, SCSS/_main.scss */
  .articulo-contacto .escribenos {
    width: calc(60% - 2rem);
  }
}

@media only screen and (min-width: 769px) {
  /* line 570, SCSS/_main.scss */
  .articulo-contacto .escribenos .inputs {
    display: flex;
    justify-content: space-between;
  }
}

/* line 576, SCSS/_main.scss */
.articulo-contacto .escribenos .inputs input, .articulo-contacto .escribenos .inputs select {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 769px) {
  /* line 576, SCSS/_main.scss */
  .articulo-contacto .escribenos .inputs input, .articulo-contacto .escribenos .inputs select {
    margin-bottom: 2rem;
    width: calc(50% - 2rem/2);
  }
}

/* line 586, SCSS/_main.scss */
.articulo-contacto .escribenos input, .articulo-contacto .escribenos select, .articulo-contacto .escribenos textarea {
  width: 100%;
  border: none;
  background-color: #d8d8d8;
  font: 1.5rem "oxygen-light";
  padding: 5px;
}

/* line 594, SCSS/_main.scss */
.articulo-contacto .escribenos textarea {
  resize: none;
  height: 9.6rem;
}

/* line 599, SCSS/_main.scss */
.articulo-contacto .escribenos .boton {
  display: flex;
  justify-content: center;
}

@media only screen and (min-width: 769px) {
  /* line 599, SCSS/_main.scss */
  .articulo-contacto .escribenos .boton {
    justify-content: flex-end;
  }
}

/* line 608, SCSS/_main.scss */
.articulo-contacto .escribenos .info {
  color: #009bdb;
  font-size: 1.3rem;
}

/* line 613, SCSS/_main.scss */
.articulo-contacto .escribenos .alert {
  width: 100%;
  padding: 0 2em;
  border-right: 2px;
  margin-bottom: 2em;
  font-style: italic;
  border-radius: 3px;
}

/* line 621, SCSS/_main.scss */
.articulo-contacto .escribenos .alert li, .articulo-contacto .escribenos .alert p {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.4em;
  margin: 0.6em 0;
}

/* line 628, SCSS/_main.scss */
.articulo-contacto .escribenos .alert li {
  list-style: square;
}

/* line 632, SCSS/_main.scss */
.articulo-contacto .escribenos .alert p {
  text-align: center;
}

/* line 637, SCSS/_main.scss */
.articulo-contacto .escribenos .error {
  background: #a94242;
  border: 1px solid #a94242;
}

/* line 642, SCSS/_main.scss */
.articulo-contacto .escribenos .success {
  background: #4caf50;
  border: 1px solid #4caf50;
}

/* line 647, SCSS/_main.scss */
.articulo-contacto .escribenos button {
  width: 100%;
  color: #fff;
  background-color: #009bdb;
  padding: 1rem 1.42857rem;
  font: 1.6rem "worksans-bold";
  border-radius: 3px;
  text-align: center;
  display: inline-block;
  margin: 0 auto;
  border: none;
  margin: 0;
  cursor: pointer;
}

/* line 32, SCSS/_mixins.scss */
.articulo-contacto .escribenos button:hover {
  background-color: #0077a8;
}

@media only screen and (min-width: 769px) {
  /* line 647, SCSS/_main.scss */
  .articulo-contacto .escribenos button {
    padding: 1rem 3rem;
  }
}

@media only screen and (min-width: 481px) {
  /* line 647, SCSS/_main.scss */
  .articulo-contacto .escribenos button {
    width: 40%;
  }
}

@media only screen and (min-width: 769px) {
  /* line 647, SCSS/_main.scss */
  .articulo-contacto .escribenos button {
    width: auto;
  }
}

/* line 665, SCSS/_main.scss */
.articulo-contacto .ubicanos .fas {
  width: 24px;
  color: #009bdb;
}

@media only screen and (min-width: 769px) {
  /* line 664, SCSS/_main.scss */
  .articulo-contacto .ubicanos {
    width: calc(40% - 2rem);
  }
}

/* line 674, SCSS/_main.scss */
.articulo-contacto .ubicanos p, .articulo-contacto .ubicanos a {
  margin-bottom: 0.8rem;
}

/* line 678, SCSS/_main.scss */
.articulo-contacto .ubicanos a {
  color: #000;
}

/* line 681, SCSS/_main.scss */
.articulo-contacto .ubicanos a:hover {
  color: #009bdb;
}

/* line 688, SCSS/_main.scss */
.mapa {
  height: 350px !important;
}

/* line 691, SCSS/_main.scss */
.mapa iframe {
  width: 100%;
}

/*===========  Fin de Principal  =============*/
/*==============================================
=                     Footer                   =
===============================================*/
/* line 5, SCSS/_footer.scss */
footer {
  background-color: #000;
  text-align: center;
}

@media only screen and (min-width: 769px) {
  /* line 5, SCSS/_footer.scss */
  footer {
    text-align: left;
  }
}

/* line 13, SCSS/_footer.scss */
footer .contenedor {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 769px) {
  /* line 13, SCSS/_footer.scss */
  footer .contenedor {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

/* line 23, SCSS/_footer.scss */
footer .contenedor .barra {
  margin: 0 6px;
}

/* line 28, SCSS/_footer.scss */
footer p, footer a {
  color: #999999;
  font: 1.4rem "worksans";
  margin-bottom: 0 !important;
  line-height: 1.7;
}

/* line 34, SCSS/_footer.scss */
footer p .fas, footer a .fas {
  width: 20px;
}

/* line 39, SCSS/_footer.scss */
footer a {
  transition: all 0.5s ease;
}

/* line 42, SCSS/_footer.scss */
footer a:hover {
  color: #009bdb;
}

/* line 47, SCSS/_footer.scss */
footer .firma-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #262626;
}

@media only screen and (min-width: 769px) {
  /* line 47, SCSS/_footer.scss */
  footer .firma-footer {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}

/* line 58, SCSS/_footer.scss */
footer .firma-footer p, footer .firma-footer a {
  color: #666666;
}

/* line 64, SCSS/_footer.scss */
footer .firma-footer a:hover {
  color: #009bdb;
}

/* line 69, SCSS/_footer.scss */
footer .firma-footer span {
  display: block;
}

@media only screen and (min-width: 769px) {
  /* line 69, SCSS/_footer.scss */
  footer .firma-footer span {
    display: inline;
  }
}

/* line 77, SCSS/_footer.scss */
footer .firma-footer .barra {
  display: none;
}

@media only screen and (min-width: 769px) {
  /* line 77, SCSS/_footer.scss */
  footer .firma-footer .barra {
    display: inline;
  }
}

/*=============  Fin de Footer  ===============*/
