/*****************************************************
                 RESET Y GLOBALES                                         
***************************************************/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap");
body {
  font: normal 100% Montserrat, Arial, sans-serif;
  line-height: 1.35em;
  font-weight: 400;
  color: #000;
  background: #fff;
}

h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

/*****************************************************
                    LAYOUT                                           
***************************************************/
.rojo {
  color: #ed1b23;
}

.btn {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  transition: all 200ms ease;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-weight: 600;
  border-radius: 25px;
}
.btn.btn-primary {
  background-color: #ed1b23;
  color: #FFF;
  border: none;
}
.btn.btn-primary:hover {
  background-color: #ff4c53;
}
.btn.arrow-right {
  background-image: url("../images/arrow-right.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 38px auto;
  padding-right: 2.85rem;
}
.btn.lineal {
  border: 2px solid #000;
  color: #000;
}
.btn.lineal:hover {
  background-color: #000;
  color: #FFF;
}
.btn.big {
  font-size: 1.1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.form-control {
  font-size: 1rem;
  border-radius: 0;
  border: none;
}

.link {
  font-weight: 600;
  color: #ed1b23;
  text-transform: uppercase;
}
.link:hover {
  color: #ed1b23;
  opacity: 0.7;
  text-decoration: none;
}

.separador {
  position: relative;
  padding-top: 2rem;
}
.separador:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 10px;
  width: 65px;
  background-color: #ed1b23;
}
.separador.center:before {
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.section-1 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.section-end {
  padding-top: 0;
  padding-bottom: 8rem;
}

.section-start {
  padding-top: 8rem;
  padding-bottom: 0;
}

.card {
  border-radius: 6px;
  border: none;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.16);
}

.top-title {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.1rem;
  color: #ed1b23;
  margin-bottom: 0.5rem;
}

#header {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  transition: all 200ms ease;
  position: absolute;
  left: 0;
  right: 0;
}
#header .navbar {
  padding-left: 0;
  padding-right: 0;
}
#header .navbar .nav-link {
  font-size: 13px;
  color: #FFF;
  padding-right: 0.3rem;
  padding-left: 0.3rem;
}
#header.sticky-header {
  position: fixed;
  z-index: 20;
  background-color: #fff;
  box-shadow: 7px 0px 7px 0px rgba(0, 0, 0, 0.16);
}
#header.sticky-header .navbar .navbar-brand {
  width: 120px;
}
#header.sticky-header .navbar .nav-link {
  color: #000;
}

#hero {
  background: #FFF url("../images/bg-banner.jpg") center bottom no-repeat;
  padding-top: 10rem;
  overflow: hidden;
}
#hero h1 {
  font-size: 32px;
  line-height: 1.35em;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}
#hero .imgs-hero {
  position: relative;
}
#hero .imgs-hero .cajas {
  position: relative;
  margin-top: 4rem;
  -moz-animation: cajas 6s linear infinite;
  -webkit-animation: cajas 6s linear infinite;
}
#hero .imgs-hero .vehiculo {
  position: absolute;
  left: 20%;
  bottom: 0;
  -moz-animation: myfirst 6s linear infinite;
  -webkit-animation: myfirst 6s linear infinite;
}
#hero .imgs-hero .vehiculo .rueda {
  -moz-animation: tyre-rotate 0.8s infinite linear;
  -webkit-animation: tyre-rotate 0.8s infinite linear;
}
#hero .imgs-hero .vehiculo .rueda-trasera {
  position: absolute;
  left: 86px;
  bottom: 10px;
}
#hero .imgs-hero .vehiculo .rueda-delantera {
  position: absolute;
  right: 88px;
  bottom: 10px;
}

@-moz-keyframes cajas {
  0% {
    opacity: 1;
  }
  15% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
}
@-webkit-keyframes cajas {
  0% {
    opacity: 1;
  }
  15% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
}
@-moz-keyframes myfirst {
  0% {
    left: -80%;
  }
  100% {
    left: 120%;
  }
}
@-webkit-keyframes myfirst {
  0% {
    opacity: 0;
    left: -80%;
  }
  10% {
    opacity: 1;
  }
  100% {
    left: 120%;
  }
}
@-moz-keyframes tyre-rotate {
  from {
    -moz-transform: rotate(-360deg);
  }
  to {
    -moz-transform: rotate(0deg);
  }
}
@-webkit-keyframes tyre-rotate {
  from {
    -webkit-transform: rotate(-360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
  }
}
#servicios {
  position: relative;
}
#servicios .intro-servicios {
  text-align: center;
  margin-bottom: 2rem;
}
#servicios:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  height: 300px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100;White+to+Transparent */
  background: -moz-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=0 );
  /* IE6-9 */
}
#servicios .actions {
  padding-top: 2rem;
  text-align: center;
}

.cards-servicios .card.item-servicios {
  text-align: center;
  padding: 2rem;
}
.cards-servicios .card.item-servicios h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

#nosotros .img-nosotros {
  margin-top: -11rem;
}

#como-funciona .img-funciona {
  cursor: pointer;
}

.list-servicios {
  padding-top: 1rem;
}
.list-servicios h3 {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.list-servicios ul {
  padding-left: 0;
  margin-left: 0;
  list-style: none;
  list-style-type: none;
}
.list-servicios ul li {
  display: flex;
  padding-left: 0;
  margin-left: 0;
  list-style: none;
  list-style-type: none;
  margin-bottom: 0.5rem;
}
.list-servicios ul li .nro {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 33px;
  flex-shrink: 0;
  border: 2px solid #ed1b23;
  margin-right: 1rem;
}
.list-servicios ul li .desc {
  color: #909090;
}
.list-servicios ul li h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
}

#que-repartimos .intro-repartimos {
  padding-bottom: 1rem;
}
#que-repartimos .intro-repartimos p {
  font-size: 1.1rem;
}

.slider-repartimos .slick-prev, .slider-repartimos .slick-next {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  transition: all 200ms ease;
  width: 50px;
  height: 50px;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: 19px auto !important;
  z-index: 10;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.slider-repartimos .slick-prev:before, .slider-repartimos .slick-next:before {
  content: "";
}
.slider-repartimos .slick-prev {
  background-image: url("../images/prev.svg");
  left: 10%;
}
.slider-repartimos .slick-prev:hover, .slider-repartimos .slick-prev:focus {
  background-image: url("../images/prev.svg");
}
.slider-repartimos .slick-next {
  background-image: url("../images/next.svg");
  right: 10%;
}
.slider-repartimos .slick-next:hover, .slider-repartimos .slick-next:focus {
  background-image: url("../images/next.svg");
}

.item-repartimos {
  display: block;
  text-align: center;
  margin: 1rem;
}
.item-repartimos .ico {
  display: inline-block;
  text-align: center;
}
.item-repartimos h3 {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
}

.clientes-list .cliente {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  transition: all 200ms ease;
  display: block;
  filter: grayscale(100%);
  opacity: 0.5;
  cursor: default;
}
.clientes-list .cliente:hover {
  opacity: 1;
  filter: grayscale(0);
}

.slick-slider .slick-dots {
  text-align: center;
  z-index: 10;
}

.slick-slider .slick-dots li {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  transition: all 400ms ease;
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  background-color: #eee;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: right;
}

.slick-slider .slick-dots li button:before {
  content: "";
}

.slick-slider .slick-dots li.slick-active {
  background-color: #ed1b23;
}

.slick-slider .slick-dots li:hover {
  background-color: #909090;
}

.destacado {
  display: inline-block;
  font-size: 1rem;
  color: #FFF;
  text-transform: uppercase;
  background-color: #ed1b23;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

#cta {
  background: #FFF url("../images/bg-cta.jpg") center center no-repeat;
}
#cta .container .row {
  min-height: 365px;
}
#cta .cta-desc p {
  font-size: 1.25rem;
}
#cta .cta-desc .destacado {
  font-size: 1rem;
}

#contacto {
  color: #FFF;
  background-color: #000;
}
#contacto .container {
  padding-top: 6rem;
  padding-bottom: 8rem;
}
#contacto h2 {
  color: #FFF;
}

.list-contacto {
  list-style-type: none;
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  margin-top: 2rem;
}
.list-contacto li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.list-contacto li .ico {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  transition: all 200ms ease;
  margin-right: 1rem;
  margin-bottom: 0;
}
.list-contacto li .ico:hover {
  opacity: 0.5;
}
.list-contacto li .label-contacto {
  font-size: 1.1rem;
  color: #FFF;
  margin-bottom: 0.25rem;
}
.list-contacto li .dato {
  font-weight: 600;
  color: #FFF;
  font-size: 1.2rem;
}
.list-contacto li a {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  transition: all 200ms ease;
}
.list-contacto li a:hover {
  color: #ed1b23 !important;
  text-decoration: none;
}

.obligatorios {
  color: #FFF;
  opacity: 0.6;
  font-style: italic;
  font-size: 0.9rem;
}

#areacobertura .modal-dialog {
  margin-top: 6rem;
}
#areacobertura .modal-content {
  background: #FFF url("../images/bg-cobertura.jpg") center top no-repeat;
  background-size: cover;
}
#areacobertura .modal-content .modal-header {
  text-align: center;
  padding-top: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: block;
  border: none;
}
#areacobertura .modal-content .modal-header .ico {
  position: absolute;
  width: 80px;
  left: 0;
  right: 0;
  top: -45px;
  margin: 0 auto;
}
#areacobertura .modal-content .modal-header h2 {
  text-align: center;
}
#areacobertura .modal-content .modal-header .close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
}
#areacobertura .modal-content .modal-body {
  padding-left: 2rem;
  padding-right: 2rem;
}
#areacobertura .modal-content .cobertura {
  display: flex;
  justify-content: center;
  list-style-type: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
#areacobertura .modal-content .cobertura .item-cobertura {
  text-align: center;
  margin: 0.5rem;
}
#areacobertura .modal-content .cobertura .item-cobertura h3 {
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
}
#areacobertura .modal-content .extras {
  padding-top: 1.5rem;
}
#areacobertura .modal-content .extras h3 {
  font-size: 1.25rem;
  font-weight: 400;
  font-weight: 600;
}

.wa-flotante {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  transition: all 200ms ease;
  display: block;
  position: fixed;
  right: 15px;
  bottom: 90px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366 url("../images/wa.svg") center center no-repeat;
  background-size: 60% auto;
  z-index: 20;
}
.wa-flotante:hover {
  transform: scale(1.2);
}

/*****************************************************
                    INTERNAS                                       
***************************************************/
/*****************************************************
                    PRODUCTOS                                  
***************************************************/
/*****************************************************
                 MEDIA-QUERIES                                         
***************************************************/
/* Large Devices, Wide Screens (col-lg)  */
/* Landscape tablets and medium desktops (col-md) */
/* Portrait tablets and small desktops (col-sm) */
/* Landscape phones and portrait tablets (col-xs) */
@media (max-width: 767px) {
  h2 {
    font-size: 1.75rem;
  }

  .section-1 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section-start {
    padding-top: 4rem;
  }

  .section-end {
    padding-bottom: 4rem;
  }

  #header {
    position: relative;
  }
  #header .navbar .navbar-brand {
    width: 120px;
  }
  #header .navbar .nav-link {
    color: #000;
    text-align: center;
  }
  #header .navbar-nav {
    padding-top: 1rem;
  }

  #hero {
    background: #FFF url("../images/bg-banner-m.jpg") center bottom no-repeat;
    padding-top: 2rem;
  }
  #hero h1 {
    font-size: 29px;
  }
  #hero .imgs-hero {
    margin-top: 0;
    padding-top: 4rem;
  }
  #hero .imgs-hero .cajas {
    max-width: 250px;
    margin-top: 2rem;
    -moz-animation: cajas 4s linear infinite;
    -webkit-animation: cajas 4s linear infinite;
  }
  #hero .imgs-hero .cajas img {
    position: relative;
    top: -2rem;
  }
  #hero .imgs-hero .vehiculo {
    -moz-animation: myfirst 4s linear infinite;
    -webkit-animation: myfirst 4s linear infinite;
  }
  #hero .imgs-hero .vehiculo img {
    max-width: 720px;
  }
  #hero .imgs-hero .vehiculo .rueda-trasera {
    position: absolute;
    left: 78px;
  }
  #hero .imgs-hero .vehiculo .rueda-delantera {
    right: 80px;
  }

  .cards-servicios .card.item-servicios {
    margin-bottom: 1rem;
  }
  .cards-servicios .card.item-servicios h3 {
    font-size: 1.1rem;
  }

  #nosotros .img-nosotros {
    margin-top: -6rem;
    margin-bottom: 2rem;
  }

  #como-funciona .img-funciona {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: -15px;
    margin-right: -15px;
  }
  #como-funciona .img-funciona img {
    max-width: 120%;
  }

  .slider-repartimos .slick-prev {
    left: 10px;
  }

  .slider-repartimos .slick-next {
    right: 10px;
  }

  #areacobertura .modal-content .modal-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #areacobertura .modal-content .cobertura .item-cobertura h3 {
    font-size: 0.95rem;
  }

  #cta {
    text-align: center;
    background: #ececec;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  #cta .container .row {
    min-height: 0;
  }
  #cta .cta-desc p {
    font-size: 1.1rem;
  }
  #cta .cta-desc p strong {
    display: block;
  }
  #cta .cta-desc .destacado {
    font-size: 0.85rem;
  }

  #contacto .container {
    padding-top: 4rem;
  }
  #contacto .btn.btn-primary {
    display: block;
    width: 100%;
  }

  .wa-flotante {
    right: 10px;
  }
}
/* Portrait phones and smaller */
/* lowest resolution */

/*# sourceMappingURL=taker.css.map */
