.color-white {
  color: #FFF2F2 !important;
}

.color-black {
  color: #111111 !important;
}

.color-blue {
  color: #1B1B2F !important;
}

.color-orange {
  color: #FF6A00 !important;
}

.color-lorange {
  color: #FF8300 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-black {
  background-color: #111111 !important;
}

.bg-blue {
  background-color: #1B1B2F !important;
}

.bg-orange {
  background-color: #FF8300 !important;
}

.bg-lorange {
  background-color: #FF8300 !important;
}

.text-uppercase {
  text-transform: uppercase;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  background-color: #111111;
}
body.scroll-disabled {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}
.btn.btn-outline-orange {
  border-color: #FF6A00;
  color: #FF6A00;
}
.btn.btn-outline-orange:hover {
  color: #fff;
  background-color: #FF6A00;
}
.btn .fa-solid {
  margin-right: 0.5rem;
}

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.5rem;
  z-index: 999;
}
@media (min-width: 768px) {
  header {
    padding: 1.5rem 1rem;
  }
}
header:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  z-index: -1;
}
header .brand {
  display: block;
  margin-left: 0.5rem;
  width: 160px;
}
@media (min-width: 768px) {
  header .brand {
    margin-left: 0;
    width: 260px;
  }
}
header nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
header nav a {
  display: none;
  position: relative;
  margin: 0 0.6rem;
  padding: 0.2rem 0;
  font-weight: 600;
  font-size: 0.8rem;
  color: #FFF2F2;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s linear;
}
@media (min-width: 1200px) {
  header nav a {
    display: block;
  }
}
@media (min-width: 1400px) {
  header nav a {
    margin: 0 1rem;
  }
}
header nav a:hover {
  color: #FF6A00;
}
header nav a:hover:before {
  left: 0;
  width: 50%;
}
header nav a:hover:after {
  width: 50%;
}
header nav a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: all 0.15s linear;
}
header nav a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: all 0.15s linear;
}
header nav .btn-nav {
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.15s linear;
}
header nav .btn-nav:hover {
  color: #FF6A00;
}
header nav .btn-search {
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.15s linear;
}
header nav .btn-search:hover {
  color: #FF6A00;
}

footer {
  padding: 3rem 0;
  background-color: #1B1B2F;
  color: #fff;
}
footer .separator {
  height: 2rem;
}
@media (min-width: 768px) {
  footer .separator {
    display: none;
  }
}
footer h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}
footer nav {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
footer nav a {
  margin: 0.1rem 0;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.15s linear;
}
footer nav a:hover {
  color: #FF6A00;
}
footer nav.social a i {
  color: #FF6A00;
}
footer p {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}
footer p a {
  color: #fff;
  text-decoration: none;
  transition: all 0.15s linear;
}
footer p a:hover {
  color: #FF6A00;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1B1B2F;
  background-image: url("../pics/dots-orange.svg");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 300px;
  transition: all 0.25s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 768px) {
  .search-overlay {
    left: 0;
  }
}
.search-overlay.active {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.search-overlay .close-search {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  width: 46px;
  height: 46px;
}
.search-overlay .close-search svg {
  stroke: #fff;
  width: 24px;
  height: 24px;
}
.search-overlay .close-search:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.search-overlay .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.search-overlay .header .brand {
  display: block;
  width: 260px;
}
.search-overlay .header .close-search {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  transition: all 0.15s linear;
}
.search-overlay .header .close-search:hover {
  color: #FF6A00;
}
.search-overlay .form-control {
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}
.search-overlay .form-control:focus {
  border-color: #FF6A00;
  outline: none !important;
  box-shadow: none !important;
}
.search-overlay .form-control::placeholder {
  color: #fff;
}
.search-overlay .btn {
  width: 60px;
  margin-left: -60px !important;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 0;
  padding: 0;
  z-index: 99;
}
.search-overlay .btn:active {
  color: #FF6A00;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1B1B2F;
  background-image: url("../pics/dots-white.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 250px;
  transition: all 0.25s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 768px) {
  .nav-overlay {
    left: 0;
  }
}
.nav-overlay.active {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.nav-overlay .close-nav {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  width: 46px;
  height: 46px;
}
.nav-overlay .close-nav svg {
  stroke: #fff;
  width: 24px;
  height: 24px;
}
.nav-overlay .close-nav:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.nav-overlay .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.nav-overlay .header .brand {
  display: block;
  width: 260px;
}
.nav-overlay .header .close-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  transition: all 0.15s linear;
}
.nav-overlay .header .close-nav:hover {
  color: #FF6A00;
}
.nav-overlay .footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.nav-overlay .footer a {
  display: block;
  padding: 0.5rem 0.3rem;
  color: #FF6A00;
  font-size: 1.5rem;
  transition: all 0.15s linear;
}
.nav-overlay .footer a:hover {
  color: #fff;
}
.nav-overlay nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.nav-overlay nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 15vh;
  padding: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s linear;
}
@media (min-width: 768px) {
  .nav-overlay nav a {
    width: 20%;
    height: 35vh;
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  .nav-overlay nav a {
    font-size: 1.5rem;
  }
}
.nav-overlay nav a.tone-2 {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav-overlay nav a.tone-3 {
  background-color: rgba(0, 0, 0, 0.3);
}
.nav-overlay nav a.tone-4 {
  background-color: rgba(0, 0, 0, 0.4);
}
.nav-overlay nav a.tone-5 {
  background-color: rgba(0, 0, 0, 0.5);
}
.nav-overlay nav a:hover {
  background-color: #FF8300;
}

.hero {
  position: relative;
  width: 100%;
  /*&:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 50px;
    background-image: url('../pics/dots-white.svg');
    background-repeat: repeat-y;
    background-position: right bottom;
    background-size: 100px;
    z-index: 20;

    @media (min-width: 768px) {
      background-size: 200px;
    }
  }*/
}
.hero .swiper-pagination-bullet {
  opacity: 1;
  border: 1px solid #fff;
  background: transparent;
  margin: 0 6px;
}
.hero .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
.hero .swiper-button-prev, .hero .swiper-button-next {
  color: #fff;
}
.hero .swiper-button-prev:hover, .hero .swiper-button-next:hover {
  color: #FF6A00;
}
.hero .flickity-page-dots {
  bottom: 20px;
}
.hero .flickity-page-dots .dot {
  opacity: 1;
  border: 1px solid #fff;
  background: transparent;
  margin: 0 6px;
}
.hero .flickity-page-dots .dot.is-selected {
  background: #fff;
}
.hero .carousel-cell .hero-desktop {
  display: none;
}
@media (min-width: 768px) {
  .hero .carousel-cell .hero-desktop {
    display: block;
  }
  .hero .carousel-cell .hero-mobile {
    display: none;
  }
}
.hero .carousel-cell .image {
  position: relative;
  width: 100vw;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .hero .carousel-cell .image {
    padding-bottom: 40%;
  }
}
.hero .carousel-cell .image {
  /*&:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    z-index: 19;
  }*/
}

.hero-mini {
  position: relative;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .hero-mini {
    height: 300px;
  }
}
.hero-mini:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 50px;
  background-image: url("../pics/dots-white.svg");
  background-repeat: repeat-y;
  background-position: right bottom;
  background-size: 100px;
  z-index: 20;
}
@media (min-width: 768px) {
  .hero-mini:before {
    background-size: 200px;
  }
}

@media (min-width: 768px) {
  .section-hero.no-hero {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .section-hero.no-hero-xs {
    padding-bottom: 100px;
  }
}
.section-hero.bg-dots {
  background-image: url("../pics/dots-white.svg");
  background-repeat: repeat-y;
  background-position: right bottom;
  background-size: 100px;
}
@media (min-width: 768px) {
  .section-hero.bg-dots {
    background-size: 200px;
  }
}

.section {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .section.bg-dots {
    background-image: url("../pics/dots-white.svg");
    background-repeat: repeat-y;
    background-position: right bottom;
    background-size: 200px;
  }
}
.section.contact-map {
  padding: 0;
  height: 60vh;
}
@media (min-width: 768px) {
  .section.contact-map {
    height: 600px;
  }
}
.section.wtb {
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.section.wtb + .wtb {
  border-top: 1rem solid #FF6A00;
}
.section.wtb:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.section.wtb .container {
  position: relative;
  z-index: 5;
}
.section.wtb h2 {
  text-transform: uppercase;
}
.section.wst {
  padding: 5rem 0;
  background-image: url("../pics/banner-serviciostecnicos.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.section.wst:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.section.wst .container {
  position: relative;
  z-index: 5;
}
.section.wst h2 {
  text-transform: uppercase;
}
.section.igg {
  padding: 5rem 0;
  background-image: url("../pics/generadores-gas-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-top: 1rem solid #FF6A00;
}
.section.igg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.section.igg .container {
  position: relative;
  z-index: 5;
}
.section.igg h2 {
  text-transform: uppercase;
}
.section .section-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section .section-header.prod-header {
  align-items: start;
}
@media (min-width: 992px) {
  .section .section-header.prod-header h1 {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .section .section-header {
    flex-direction: row;
    justify-content: space-between;
  }
}
.section .section-header h1 {
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .section .section-header h1 {
    max-width: calc(100% - 360px);
    text-align: left;
  }
}
.section .section-search {
  background-color: #fff;
  border-radius: 25px;
  width: auto;
  margin-top: 1rem;
}
@media (min-width: 992px) {
  .section .section-search {
    margin-top: 0;
  }
}
.section .section-search .twitter-typeahead {
  display: flex;
  flex: 2;
}
.section .section-search .tt-menu {
  margin: 1px 0 0;
  padding: 1rem;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}
.section .section-search .tt-menu .tt-suggestion {
  cursor: pointer;
  margin: 0.2rem 0;
  color: #1B1B2F;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section .section-search .tt-menu .tt-suggestion:hover {
  color: #FF6A00;
}
.section .section-search .tt-menu .tt-suggestion .tt-highlight {
  font-weight: 600;
}
.section .section-search .form-control {
  border: none;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  padding-left: 1rem;
  margin-right: 0.2rem;
  width: 200px;
  height: 50px;
  transition: all 0.15s ease-in-out;
}
.section .section-search .form-control::placeholder {
  color: #111111;
  font-weight: 600;
}
.section .section-search .form-control.tt-hint {
  width: 100%;
}
.section .section-search .form-control:focus {
  outline: none;
  box-shadow: none;
  width: calc(80vw - 50px);
}
@media (min-width: 768px) {
  .section .section-search .form-control:focus {
    width: calc(60vw - 50px);
  }
}
@media (min-width: 992px) {
  .section .section-search .form-control:focus {
    width: 40vw;
  }
}
@media (min-width: 1200px) {
  .section .section-search .form-control:focus {
    width: 30vw;
  }
}
@media (min-width: 1400px) {
  .section .section-search .form-control:focus {
    width: 20vw;
  }
}
.section .section-search .btn {
  padding: 0;
  width: 50px;
  background-color: #1B1B2F;
  border-radius: 25px !important;
}
.section .section-search .btn:hover {
  background-color: #242C45;
}
.section .section-search .btn .fa-solid {
  margin: 0 !important;
}
.section h1 {
  font-weight: 800;
}
@media (min-width: 768px) {
  .section h1 {
    font-size: 3rem;
  }
}
.section h2 {
  font-weight: 800;
}
.section h3 {
  font-weight: 600;
}
.section .thumb-link {
  display: block;
  position: relative;
  /*filter: grayscale(100);
  transition: filter .15s linear;*/
  transition: opacity 0.15s linear;
  margin-bottom: 1rem;
}
.section .thumb-link:hover {
  /*filter: grayscale(0);*/
  opacity: 0.9;
}
.section .thumb-link.video:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px;
  background-image: url("../pics/icon-play.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
}
.section .swiper {
  padding: 0 1rem;
}
.section .swiper .thumb-link {
  margin: 1rem;
}
.section .swiper .swiper-button-next {
  color: #111111;
  right: 0;
}
.section .swiper .swiper-button-next:hover {
  color: #FF6A00;
}
.section .swiper .swiper-button-prev {
  color: #111111;
  left: 0;
}
.section .swiper .swiper-button-prev:hover {
  color: #FF6A00;
}
.section .cat-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-decoration: none;
  aspect-ratio: 1/0.8;
  margin: 0.75rem 0;
  padding: 1rem;
  overflow: hidden;
  background-color: #111;
}
.section .cat-link:hover .image {
  transform: scale(1.1);
}
.section .cat-link .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.25s ease-in-out;
  z-index: 1;
}
.section .cat-link .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
  z-index: 2;
}
@media (min-width: 768px) {
  .section .cat-link .image:after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 100%);
  }
}
.section .cat-link .name {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: right;
  text-transform: uppercase;
  color: #fff;
  z-index: 3;
}
@media (min-width: 768px) {
  .section .cat-link .name {
    font-size: 1.1rem;
  }
}
.section .cat-link .dots {
  width: 113px;
  height: 5px;
  margin-top: 0.5rem;
  background-image: url("../pics/dots-orange.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 120px;
  z-index: 3;
}
.section .prod-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-decoration: none;
  margin: 0.75rem 0;
  padding: 1rem;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.25s ease-in-out;
}
.section .prod-link.prod-black:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url("../pics/pro-top.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 9;
}
@media (min-width: 768px) {
  .section .prod-link:hover .overlay {
    opacity: 1;
    visibility: visible;
  }
}
.section .prod-link .dots {
  width: 113px;
  height: 5px;
  margin-top: 0.5rem;
  background-image: url("../pics/dots-orange.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 120px;
  z-index: 3;
}
.section .prod-link .image {
  width: 100%;
  padding-bottom: 80%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (min-width: 768px) {
  .section .prod-link .image {
    width: 100%;
    margin: 0 0 1rem;
  }
}
.section .prod-link .name {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: right;
  text-transform: uppercase;
  color: #111111;
  z-index: 3;
}
@media (min-width: 768px) {
  .section .prod-link .name {
    font-size: 0.9rem;
  }
}
@media (min-width: 1400px) {
  .section .prod-link .name {
    font-size: 1.1rem;
  }
}
.section .prod-link .sku {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.1;
  text-align: right;
  text-transform: uppercase;
  color: #111111;
  z-index: 3;
}
@media (min-width: 768px) {
  .section .prod-link .sku {
    font-size: 0.8rem;
  }
}
.section .prod-link .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: all 0.15s linear;
}
.section .prod-link .overlay .btn {
  margin-top: auto;
}
.section .prod-link .overlay .specs {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.section .prod-link .overlay .specs span {
  margin: 0.2rem 0;
  text-align: center;
  line-height: 1.5;
  font-size: 0.8rem;
}
.section .prod-link .overlay .specs span:first-of-type {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
}
.section .blog-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin: 0.75rem 0;
}
.section .blog-link:hover .image {
  opacity: 0.8;
}
.section .blog-link .image {
  width: 100%;
  padding-bottom: 65%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.15s linear;
}
.section .blog-link .name {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: #FF6A00;
}
.section .blog-link .desc {
  color: #111111;
  font-size: 0.9rem;
  line-height: 1.1;
}
.section .blog-link .dots {
  width: 113px;
  height: 5px;
  margin-top: 0.5rem;
  background-image: url("../pics/dots-orange.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 120px;
  z-index: 3;
}
.section .faq-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.section .faq-item .title {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: #FF6A00;
}
.section .faq-item .desc {
  color: #111;
  font-size: 0.9rem;
  line-height: 1.1;
}
.section .faq-item .dots {
  width: 113px;
  height: 5px;
  margin-top: 0.5rem;
  background-image: url("../pics/dots-orange.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 120px;
  z-index: 3;
}
.section .repair-item {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  background-color: #fff;
  margin-bottom: 1rem;
}
.section .repair-item .repair-text {
  display: flex;
  flex-direction: column;
  flex: 2;
  justify-content: space-between;
  max-width: 70%;
  padding: 1rem;
}
.section .repair-item .repair-text .title {
  color: #FF6A00;
  font-weight: 600;
}
.section .repair-item .repair-text .info {
  display: flex;
  flex-direction: row;
  align-items: start;
  margin-top: 0.5rem;
}
.section .repair-item .repair-text .info a {
  color: #111111;
  text-decoration: none;
}
.section .repair-item .repair-text .info a:hover {
  color: #FF6A00;
}
.section .repair-item .repair-text .info span {
  display: flex;
  flex: 2;
  margin-top: -0.15rem;
  margin-left: 0.3rem;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .section .repair-item .repair-text .info span {
    font-size: 0.9rem;
  }
}
.section .repair-item .repair-image {
  display: flex;
  width: 30%;
  padding: 0.5rem;
}
.section .repair-item .repair-image .logo {
  display: block;
  width: 100%;
  padding-bottom: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f3f4f6;
}

.shortcuts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #FF8300;
}
@media (min-width: 768px) {
  .shortcuts {
    flex-wrap: nowrap;
  }
}
.shortcuts a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 50%;
  padding: 2rem 0;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #FF8300;
  transition: all 0.15s linear;
}
.shortcuts a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.shortcuts a:hover img {
  transform: scale(1.1);
}
@media (min-width: 768px) {
  .shortcuts a {
    width: 25%;
    padding: 3rem 0;
    border-bottom: none;
  }
  .shortcuts a:last-of-type {
    border-right: none;
  }
  .shortcuts a:after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #fff;
  }
}
.shortcuts a img {
  width: 110px;
  transition: all 0.15s linear;
}
.shortcuts a span {
  margin-top: 2rem;
  text-align: center;
}

.catalog-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .catalog-selector {
    flex-direction: row;
  }
}
.catalog-selector .catalog {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 200px;
  padding: 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .catalog-selector .catalog {
    width: 50%;
    height: 350px;
    padding: 3rem;
    transition: all 0.5s ease-in-out;
  }
  .catalog-selector .catalog:hover {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .catalog-selector .catalog {
    height: 400px;
  }
}
@media (min-width: 1200px) {
  .catalog-selector .catalog {
    height: 500px;
    padding: 4rem;
  }
}
.catalog-selector .catalog .btn {
  margin-top: auto;
  color: #000;
  background-color: #fff;
}
.catalog-selector .catalog .btn:hover {
  background-color: transparent;
  color: #fff;
}

.product-page .nav-link {
  border-radius: 0;
  border: none;
  color: #1B1B2F;
}
.product-page .nav-link.active {
  color: #fff;
  background-color: #1B1B2F;
}
.product-page .tab-content {
  padding: 1rem 0;
}
.product-page .list-group-flush .list-group-item {
  padding-left: 0;
  border: none;
}
.product-page .list-group-flush a {
  text-decoration: none;
  color: #111111;
  transition: all 0.15s linear;
}
.product-page .list-group-flush a:hover {
  color: #FF6A00;
}
.product-page .list-group-flush.list-specs span {
  font-weight: 600;
}
.product-page .product-thumbs {
  display: flex;
  flex-direction: row;
}
.product-page .product-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: #fff;
}
.product-page .product-image.product-black:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-image: url("../pics/pro-bottom.png");
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 9;
}
.product-page .product-image:hover .overlay {
  opacity: 1;
}
.product-page .product-image:hover .overlay i {
  font-size: 2rem;
}
.product-page .product-image.thumb {
  width: 24%;
  margin: 0.5%;
  border: 1px solid #ddd;
}
.product-page .product-image .image {
  padding-bottom: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.product-page .product-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
  transition: all 0.25s ease-in-out;
  opacity: 0;
}
.product-page .product-image .overlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 1rem;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease-in-out;
}

/* forms */
form:not(.search) {
  margin: auto;
  max-width: 800px;
}

.form-floating label {
  padding-left: 1.2rem;
}
.form-floating .form-select {
  padding-left: 1.2rem;
  border-radius: 30px;
  border: 1px solid #fff;
}
.form-floating .form-control {
  padding-left: 1.2rem;
  border-radius: 30px;
  border: 1px solid #fff;
}

.map {
  height: 60vh;
}
@media (min-width: 768px) {
  .map {
    height: 600px;
  }
}

.gm-style-iw-c {
  border-radius: 0 !important;
  border: 1px solid #fff !important;
  box-shadow: none !important;
}

.infowindow {
  width: 300px;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 0.8rem;
}
.infowindow .store-name {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.infowindow .store-name a {
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  color: #1B1B2F;
}
.infowindow .store-name a:hover {
  color: #FF6A00;
}
.infowindow .store-name span {
  white-space: nowrap;
  margin-left: auto;
  font-weight: 600;
}
.infowindow .store-address {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  margin-bottom: 0.3rem;
}
.infowindow .store-address i {
  color: #FF6A00;
  margin-right: 0.3rem;
}
.infowindow .store-address a {
  color: #1B1B2F;
  text-decoration: none;
}
.infowindow .store-address a:hover {
  color: #FF6A00;
}

.map-list {
  width: 100%;
  height: 30vh;
  background-color: #fff;
}
@media (min-width: 768px) {
  .map-list {
    height: 600px;
  }
}
.map-list .swiper {
  width: 100%;
  height: 100%;
}
.map-list .map-item {
  height: auto;
  padding: 1rem 0;
  font-size: 0.8em;
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
.map-list .map-item .store-name {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.map-list .map-item .store-name a {
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  color: #1B1B2F;
}
.map-list .map-item .store-name a:hover {
  color: #FF6A00;
}
.map-list .map-item .store-name span {
  white-space: nowrap;
  margin-left: auto;
  font-weight: 600;
}
.map-list .map-item .store-address {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  margin-bottom: 0.3rem;
}
.map-list .map-item .store-address i {
  color: #FF6A00;
  margin-right: 0.3rem;
}
.map-list .map-item .store-address a {
  color: #1B1B2F;
  text-decoration: none;
}
.map-list .map-item .store-address a:hover {
  color: #FF6A00;
}

.map-search {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 25px;
  width: 100%;
  height: 50px;
}
@media (min-width: 992px) {
  .map-search {
    width: 50%;
    margin: auto;
  }
}
.map-search .twitter-typeahead {
  display: flex;
  flex: 2;
}
.map-search .tt-menu {
  margin: 1px 0 0;
  padding: 1rem;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}
.map-search .tt-menu .tt-suggestion {
  cursor: pointer;
  margin: 0.2rem 0;
  color: #1B1B2F;
}
.map-search .tt-menu .tt-suggestion:hover {
  color: #FF6A00;
}
.map-search .tt-menu .tt-suggestion .tt-highlight {
  font-weight: 600;
}
.map-search .form-control {
  border: none;
  border-radius: 25px;
  padding-left: 1rem;
  height: 50px;
  transition: all 0.15s ease-in-out;
}
.map-search .form-control::placeholder {
  color: #111111;
  font-weight: 600;
}
.map-search .form-control:focus {
  outline: none;
  box-shadow: none;
}
.map-search .btn {
  padding: 0;
  width: 50px;
  background-color: #1B1B2F;
  border-radius: 25px !important;
}
.map-search .btn:hover {
  background-color: #242C45;
}
.map-search .btn .fa-solid {
  margin: 0 !important;
}

.retailers-list {
  margin-top: 2rem;
  background: #fff;
  z-index: 599;
  position: relative;
}
@media (min-width: 768px) {
  .retailers-list {
    margin-top: -35px;
    margin-left: 100px;
    margin-right: 100px;
  }
}
.retailers-list .table {
  font-size: 0.8rem;
}
.retailers-list a {
  color: inherit;
  text-decoration: none;
}
.retailers-list a:hover {
  color: #FF6A00;
}

/* nosotros */
.nosotros {
  background: rgba(255, 131, 0, 0.8);
}
.nosotros p {
  padding-bottom: 1rem;
}
.nosotros img {
  max-width: 100%;
  height: auto;
}

/* popup */
.popup {
  display: none;
  max-width: 600px;
  padding: 1rem;
}
.popup a {
  text-decoration: none;
  display: block;
}

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