body {
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  padding: 0;
  margin: 0;
}
.site-header {
  width: 100%;
  background: #fff;
  padding: 1em;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  border-bottom: 1px solid #d9dddf;
}
.whatsapp-header .svg {
  width: 32px;
  height: 32px;
  position: relative;
}
.whatsapp-header svg {
  width: 100%;
  height: auto;
}
.whatsapp-header {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
.whatsapp-header a {
  color: #022916;
  font-weight: bold;
}
.main-container {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.title-servicio {
  font-family: 'Passion One', cursive;
  font-weight: bold;
  font-size: 2.375em;
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
}
.imagen {
  text-align: center;
}
.imagen img {
  box-shadow: 0 0 44px 0 rgba(0,0,0,0.2);
  max-width: 495px;
}
@media only screen and (max-width: 48em) {
  .imagen {
    display: none;
  }
}
section {
  width: 100%;
  position: relative;
  padding: 10em 0;
}
*[class*="section_"] {
  color: #fff;
}
.section_lonas {
  background: #070752;
}
.section_diseno-grafico {
  background: #314488;
}
.section_senalizacion {
  background: #af1f23;
}
.section_diseno-impreso {
  background: #178441;
}
.section_etiquetas {
  background: #c13859;
}
.section_rotulacion {
  background: #64a021;
}
.section_impresion-textil {
  background: #d33727;
}
.section_anuncios-luminosos {
  background: #4a4a9e;
}
.section_contacto {
  background: #fff;
  color: #333;
  padding-top: 4em;
  padding-bottom: 0;
}
.section_contacto * {
  color: #333;
}
.section_sublimacion {
  background: #303b5f;
}
.section_sublimacion figure img {
  max-width: 114px;
}
figure {
  margin: 0;
  padding: 0;
}
figure img {
  width: 100%;
  max-width: 160px;
  margin-bottom: 2em;
}
.descripcion {
  font-size: 1.125em;
  text-align: justify;
}
.antispam {
  overflow: hidden;
  width: 1px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #ccc;
  background: #fff;
  padding: 0.5em;
  display: block;
  margin-bottom: 1em;
  resize: none;
  width: 100%;
}
.contact-form input fieldset,
.contact-form textarea fieldset {
  width: 100%;
  display: block;
}
.contact-data p {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 1rem;
  align-content: center;
  align-items: center;
}
.contact-data strong {
  color: #c13859;
  display: none;
}
.contact-data i {
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.9;
}
.contact-data i img {
  width: 100%;
  height: auto;
  display: block;
}
.contact-data a {
  position: relative;
  text-decoration: none;
}
.contact-data a:hover {
  color: #000 !important;
  position: relative;
}
.contact-data a:hover::after {
  content: "";
  width: 100%;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  position: absolute;
  background: #fd4986;
}
input[type="submit"] {
  background: #303133;
  color: #fff;
  display: block;
  border: none;
  border-radius: 2px;
}
.descripcion svg {
  background-blend-mode: darken;
}
.mapa {
  margin-bottom: 2em;
}
.banner {
  width: 100%;
  background: rgba(0,0,0,0.6);
  position: relative;
}
.fondo_video {
  background: url("../images/video_placeholder.jpg") no-repeat top center;
  background-size: cover;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}
@media (orientation: landscape) {
  .fondo_video {
    background: url("../images/video_placeholder_parado.jpg") no-repeat top center;
  }
}
video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.come-in .from-left {
  transform: translateX(-8em);
  opacity: 0;
  animation: come-in 0.8s ease forwards;
}
.come-in .from-left:nth-child(odd) {
  animation-duration: 1.6s;
}
.come-in .from-right {
  transform: translateX(8em);
  opacity: 0;
  animation: come-in 0.8s ease forwards;
}
.come-in .from-right:nth-child(odd) {
  animation-duration: 1.6s;
}
.come-in .from-right figure img {
  opacity: 0;
  animation: opacidad 1s ease-in-out forwards;
}
.go-out .from-left {
  transform: translateX(-8em);
  opacity: 0;
}
.go-out .from-right {
  transform: translateX(8em);
  opacity: 0;
}
@media only screen and (max-width: 48em) {
  .logo {
    text-align: center;
  }
  .banner svg {
    height: 150px;
  }
  video {
    display: none;
  }
}
@-moz-keyframes opacidad {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes opacidad {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@-o-keyframes opacidad {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes opacidad {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@-moz-keyframes come-in {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes come-in {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@-o-keyframes come-in {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes come-in {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
