@charset "UTF-8";
/* tus estilos */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,700&display=swap");
@import url("https://fonts.cdnfonts.com/css/dozer-one");
html {
  font-size: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Dozer One", sans-serif;
  font-weight: bold;
  margin: 0;
  padding: 1em 0;
  line-height: 1.5;
}

h1, .h1 {
  font-size: 3em;
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 2em;
  }
}
@media (max-width: 575px) {
  h1, .h1 {
    font-size: 1.5em;
  }
}

h2, .h2 {
  font-size: 2.5em;
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 1.8em;
  }
}
@media (max-width: 575px) {
  h2, .h2 {
    font-size: 1.3em;
  }
}

h3, .h3 {
  font-size: 1.5em;
}
@media (max-width: 991px) {
  h3, .h3 {
    font-size: 1.25em;
  }
}

h4, .h4 {
  font-size: 1.25em;
}
@media (max-width: 991px) {
  h4, .h4 {
    font-size: 1.2em;
  }
}

h5, .h5 {
  font-size: 1.15em;
}
@media (max-width: 991px) {
  h5, .h5 {
    font-size: 1em;
  }
}

h6, .h6 {
  font-size: 1em;
}
@media (max-width: 991px) {
  h6, .h6 {
    font-size: 1em;
  }
}

p {
  font-size: 1.25em;
  line-height: 1.5;
  margin: 1.5em 0;
}

li {
  font-size: 1.25em;
  line-height: 1.5;
  margin: 0.5em 0;
}

.readable-blocktext p, .readable-blocktext li {
  max-width: 33em;
}

.psize {
  font-size: 1.25em;
  line-height: 1.5;
}

.fs-small {
  font-size: 1em;
}

.fs-big {
  font-size: 2em;
}
@media (max-width: 575px) {
  .fs-big {
    font-size: 1.5em;
  }
}

em {
  font-style: normal;
  font-weight: bold;
  text-decoration: underline;
}

.dont-break-out {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  hyphens: auto;
}

.fs-italic {
  font-style: italic;
}

.text-center {
  text-align: center;
}
.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.text-right {
  text-align: right;
}

input, textarea {
  font-family: "Poppins", sans-serif;
}

.legal {
  padding: 1em 0;
}
.legal h2 {
  font-size: 1.2em;
  padding-top: 0;
  padding-bottom: 1em;
}
.legal p {
  font-size: 0.8em;
  margin: 0 0 1em;
}

/* Shared styles */
.drop-shadow {
  position: relative;
  background: #fff;
}

.drop-shadow:before,
.drop-shadow:after {
  content: "";
  position: absolute;
  z-index: -2;
}

/* Lifted corners */
.lifted {
  border-radius: 4px;
}

.lifted:before,
.lifted:after {
  bottom: 15px;
  left: 10px;
  width: 50%;
  height: 20%;
  max-width: 300px;
  max-height: 100px;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
  transform: rotate(-3deg);
}

.lifted:after {
  right: 10px;
  left: auto;
  transform: rotate(3deg);
}

/* Curled corners */
.curled {
  border: 1px solid #efefef;
  border-radius: 0 0 120px 120px/0 0 6px 6px;
}

.curled:before,
.curled:after {
  bottom: 12px;
  left: 10px;
  width: 50%;
  height: 55%;
  max-width: 200px;
  max-height: 100px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
  transform: skew(-8deg) rotate(-3deg);
}

.curled:after {
  right: 10px;
  left: auto;
  transform: skew(8deg) rotate(3deg);
}

/* Perspective */
.perspective:before {
  left: 80px;
  bottom: 5px;
  width: 50%;
  height: 35%;
  max-width: 200px;
  max-height: 50px;
  box-shadow: -80px 0 8px rgba(0, 0, 0, 0.4);
  transform: skew(50deg);
  transform-origin: 0 100%;
}

.perspective:after {
  display: none;
}

/* Raised shadow - no pseudo-elements needed */
.raised {
  box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

/* Curved shadows */
.curved:before {
  top: 10px;
  bottom: 10px;
  left: 0;
  right: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  border-radius: 10px/100px;
}

.curved-vt-2:before {
  right: 0;
}

.curved-hz-1:before {
  top: 50%;
  bottom: 0;
  left: 10px;
  right: 10px;
  border-radius: 100px/10px;
}

.curved-hz-2:before {
  top: 0;
  bottom: 0;
  left: 10px;
  right: 10px;
  border-radius: 100px/10px;
}

/* Rotated box */
.rotated {
  box-shadow: none;
  transform: rotate(-3deg);
}

.rotated > :first-child:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.bg-2 {
  background-color: #797e82 !important;
  color: #fff;
}

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

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

.bg-5 {
  background-color: #2F5FA0 !important;
  color: #fff;
}

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

.margin__bottom {
  margin-bottom: 3em;
}

.margin__top {
  margin-bottom: 3em;
}

img {
  width: auto;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: -199px;
  background: #004380;
  color: white;
  border: solid 1px white;
  padding: 10px;
  z-index: 100000;
  font-family: "Montserrat", serif;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  padding: 0;
}

section {
  position: relative;
  margin: 0 0 3em;
}
section .anchor {
  position: absolute;
  top: -10px;
  height: 2px;
  width: 100%;
}
section .title h2 {
  padding-bottom: 0;
}
section .title p {
  margin-top: 0;
}
section .title p.large {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  clip-path: inset(50%);
}

.btn {
  background: #fff;
  border: 1px solid #000;
  padding: 0.5em 1em;
  text-align: left;
  font-size: 100%;
  line-height: 1.25;
  cursor: pointer;
  margin: 0.5em 0;
  text-decoration: none;
  transition: all 0.3s linear;
  color: #000;
  display: inline-block;
}
.btn:hover {
  background: #000;
  color: #fff;
}
.btn.btn-lg {
  font-size: 1.5em;
}

.btn.btn-primary {
  background-color: #808285;
  color: #fff;
}
.btn.btn-primary:hover {
  background-color: #fff;
  color: #808285;
}

.btn.btn-secondary {
  background-color: #797e82;
  color: #fff;
}
.btn.btn-secondary:hover {
  background-color: #fff;
  color: #797e82;
}

label {
  display: flex;
  font-size: 1em;
  margin-bottom: 1em;
}
label span {
  width: 100px;
  line-height: 2em;
}

input, textarea {
  padding: 0.5em;
  width: 100%;
  display: block;
  font-size: 0.9em;
  min-height: 25px;
  border: 1px dashed #000;
  background: none;
}

textarea {
  height: 100px;
  resize: vertical;
}

.hp {
  display: none;
}

body .cta {
  background-color: #3d76bb;
  color: #fff;
  margin-bottom: 0;
  padding-top: 3em;
  padding-bottom: 3em;
}
body > footer {
  border-top: 2px solid #3d76bb;
  background-color: #797e82;
  color: #fff;
  padding: 2em 0;
}
body > footer section {
  margin: 0;
}
body > footer h2 {
  padding-top: 0;
}
body > footer h2 img {
  display: block;
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
}
body > footer h3 {
  text-transform: uppercase;
  color: #808285;
  font-size: 1.25rem;
}
body > footer a {
  display: block;
  padding: 0 0 0.5em;
  text-decoration: none;
  color: #000;
  font-size: 0.75rem;
}
body > footer .cc {
  background-color: #797e82;
  margin: 0;
  padding: 0.5em 1em;
  text-align: center;
  color: #fff;
}
body > footer .cc p {
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-size: 0.75rem;
}
body > footer .serving {
  background-color: #eee;
  padding: 2em 0;
}
body > footer .serving h2 {
  color: #808285;
  padding-top: 0;
  font-size: 1.5rem;
}
body > footer .cities {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  body > footer .cities {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  body > footer .cities {
    grid-template-columns: repeat(2, 1fr);
  }
}
body > footer .cities li {
  font-size: 1rem;
  margin: 0.3em 0;
}
@media (max-width: 575px) {
  body > footer .cities li {
    font-size: 0.75rem;
  }
}

/*
**********************************************************
*/
body {
  padding-top: 70px;
}

header {
  position: fixed;
  width: 100%;
  height: 70px;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1010;
  border-bottom: 1px solid #797e82;
}
header .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 0 1em;
}
header .top-bar .logo {
  width: 240px;
}
header .top-bar .main-navigation {
  flex-grow: 1;
}
header .top-bar .main-navigation nav a {
  display: inline-block;
  padding: 0.5em 1em;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
}
@media (max-width: 1100px) {
  header .top-bar .main-navigation nav a {
    display: block;
    color: #fff;
  }
}
@media (max-width: 1100px) {
  header .top-bar .main-navigation nav {
    position: absolute;
    width: 100%;
    height: calc(100vh - 140px);
    top: 100px;
    left: 0;
    display: none;
    text-align: left;
    align-items: center;
    justify-content: center;
  }
}
header .top-bar .main-navigation nav .items {
  width: 100%;
}
@media (max-width: 1100px) {
  header .top-bar .main-navigation nav .items {
    transform: translate(-100%, 0%);
  }
}
header .top-bar .main-navigation #btnMb {
  display: none;
  background: transparent;
  cursor: pointer;
  border: transparent;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1100px) {
  header .top-bar .main-navigation #btnMb {
    display: block;
  }
}
header.mb-inactive .top-bar .main-navigation nav .items {
  opacity: 0;
  transform: translate(-100%, 0%);
  visibility: hidden;
  transition: opacity 0.3s, transform 0.5s, visibility 1s;
}
header.mb-active .top-bar .main-navigation nav {
  display: block !important;
}
header.mb-active .top-bar .main-navigation nav .items {
  opacity: 1;
  transform: translate(0, 0%);
  visibility: visible;
  transition-delay: 0.3s;
  transition: opacity 0.3s, transform 0.4s, visibility 1s;
}

.announcement-bar {
  background-color: #3d76bb;
  color: #fff;
  padding: 0.5em 0;
}
.announcement-bar .btn {
  margin: 0;
  padding: 0.3em 0.5em;
}

header.mb-active .icon-bar:first-child {
  transform: rotate(45deg);
  top: -1px;
  left: 0;
}

header.mb-active .icon-bar:nth-child(2) {
  width: 0;
  opacity: 0;
}

header.mb-active .icon-bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 23px;
  left: 0;
}

.bars {
  width: 36px;
  height: 26px;
  position: relative;
}

.icon-bar {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #808285;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.icon-bar:first-child {
  top: 0;
  transform-origin: left center;
}

.icon-bar:nth-child(2) {
  top: 12px;
  transform-origin: left center;
}

.icon-bar:nth-child(3) {
  bottom: 0;
  transform-origin: left center;
}

#blackout {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

#blackout.active {
  opacity: 1;
  visibility: visible;
}

/*
**********************************************************
*/
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero .content {
  padding: 2em;
  color: #fff;
}
.hero .content h1, .hero .content h2 {
  padding: 0.5em 0;
  margin: 0;
  color: #fff;
}
.hero .content ul {
  list-style: none;
  padding: 0;
}
.hero .content ul li {
  line-height: 1;
  margin: 0.5em 0;
}
.hero .content .btn {
  margin: 0;
  padding: 0.3em 0.5em;
}

/* Slides */
.hero__slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 16s infinite;
}

/* Delay por imagen (4 imágenes → 4s cada una) */
.hero__slides img:nth-child(1) {
  animation-delay: 0s;
}

.hero__slides img:nth-child(2) {
  animation-delay: 8s;
}

.hero__slides img:nth-child(3) {
  animation-delay: 16s;
}

.hero__slides img:nth-child(4) {
  animation-delay: 24s;
}

/* Animación */
@keyframes heroFade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* Overlay oscuro */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

/* Contenido */
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home .hero {
  min-height: 100vh;
}
.home .hero .content {
  background: rgba(39, 82, 149, 0.6);
}
.home .hero .content h2 {
  padding-top: 0;
}

.hero__slides img {
  transform: scale(1);
  animation: heroFade 32s infinite, heroZoom 32s infinite;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.icon-bullet {
  list-style: none;
  padding: 0;
}
.icon-bullet li {
  line-height: 1;
  margin: 0.5em 0;
}

.home .hero {
  min-height: 100vh;
}
.home .hero .content h2 {
  padding-top: 0;
}

.what .usedin {
  display: flex;
  gap: 1%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.what .usedin .item {
  width: 23%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  margin-bottom: 3em;
}
@media (max-width: 1200px) {
  .what .usedin .item {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .what .usedin .item {
    width: 100%;
  }
}
.what .usedin .item .text {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

main h2, main .h2 {
  color: #808285;
  text-transform: uppercase;
}
main .band {
  background-color: #808285;
  color: #fff;
  padding: 0.5em 1em;
  margin-top: 3em;
  margin-bottom: 2em;
}

.what .hero {
  background: url("/images/home/hero/01.jpg") no-repeat center center;
  background-size: cover;
  color: #000;
}
.what .hero .content {
  background-color: rgba(61, 118, 187, 0.8);
}

.specifications .hero {
  background: url("/images/home/hero/02.jpg") no-repeat center center;
  background-size: cover;
  color: #000;
}
.specifications .hero .content {
  background-color: rgba(61, 118, 187, 0.8);
}

.applications .hero {
  background: url("/images/home/hero/03.jpg") no-repeat center center;
  background-size: cover;
  color: #000;
}
.applications .hero .content {
  background-color: rgba(61, 118, 187, 0.8);
}

.contact .hero {
  background: url("/images/home/hero/04.jpg") no-repeat center center;
  background-size: cover;
  color: #000;
}
.contact .hero .content {
  background-color: rgba(61, 118, 187, 0.8);
}

.input-group-text {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
}

.form-control:focus {
  box-shadow: none;
}

.t.form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #000;
}
