@font-face {
  font-family: 'Fontello';
  src: url("../font/fontello.ttf"); }

@font-face {
  font-family: 'Goodtimes';
  src: url("../font/goodtime.ttf"); }

@font-face {
  font-family: 'Century';
  src: url("../font/century.ttf") format("truetype"); }

:root {
  --colors-li-nav:  rgb(9, 9, 119);
  --colors-li-p:black;
  --colors-li-titles: black;
  --colors-li-brand: rgb(9, 9, 119);
  --colors-li-active: #64ffda;
  --colors-li-a: white;
  --colors-li-header:rgb(230, 230, 230);
  --colors-li-header-text: #5e5e5e;
  --colors-li-section-odd: rgb(247, 247, 247);
  --colors-li-section-even:rgb(230, 230, 230);
  --colors-drk-nav: #171717;
  --colors-drk-p: #ccc;
  --colors-drk-titles: #64ffda;
  --colors-drk-brand: #171717;
  --colors-drk-a: #999;
  --colors-drk-header:#252525;
  --colors-drk-header-text: white;
  --colors-drk-section-odd: #373737;
  --colors-drk-section-even:#444;
  --colors-nav:  var(-colors-li-nav);
  --colors-p: var(--colors-li-p);
  --colors-titles: var(--colors-li-titles);
  --colors-brand: var(--colors-li-brand);
  --colors-active: var(--colors-li-active);
  --colors-a: var(--colors-li-a);
  --colors-header: var(--colors-li-header);
  --colors-header-text: var(--colors-li-header-text);
  --colors-section-odd: var(--colors-li-section-odd);
  --colors-section-even: var(--colors-li-section-even); }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

h1 {
  margin: auto;
  padding-top: 3px;
  font-family: "Goodtimes", sans-serif;
  text-align: center;
  color: var(--colors-header-text);
  font-size: 40px; }

h2 {
  letter-spacing: 1.5px;
  font-family: "Century", arial;
  font-weight: bold;
  text-align: center;
  color: var(--colors-titles);
  text-transform: uppercase;
  font-size: 30px; }

h3 {
  letter-spacing: 1.5px;
  font-family: "Century", arial;
  font-weight: bold;
  text-align: center;
  color: var(--colors-titles);
  font-size: 18px; }

.row {
  font-family: "Century", arial;
  color: var(--colors-titles);
  font-size: 15px; }

p {
  font-family: "Century", arial;
  text-align: justify;
  font-size: 18px;
  color: var(--colors-p); }

body {
  width: 100%;
  max-width: 1300px;
  min-width: 320px;
  margin: 0 auto; }

.no-scroll {
  overflow: hidden; }

.preloader {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2b2b2b; }

@keyframes clockwise {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes counter-clockwise {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(-360deg); } }

.gearbox {
  background: #111;
  height: 150px;
  width: 200px;
  position: relative;
  border: none;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.1); }

.gearbox .overlay {
  border-radius: 6px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  box-shadow: inset 0px 0px 20px black;
  transition: background 0.2s; }

.gearbox .overlay {
  background: transparent; }

.gear {
  position: absolute;
  height: 60px;
  width: 60px;
  box-shadow: 0px -1px 0px 0px #888888, 0px 1px 0px 0px black;
  border-radius: 30px; }

.gear.large {
  height: 120px;
  width: 120px;
  border-radius: 60px; }

.gear.large:after {
  height: 96px;
  width: 96px;
  border-radius: 48px;
  margin-left: -48px;
  margin-top: -48px; }

.gear.one {
  top: 12px;
  left: 10px; }

.gear.two {
  top: 61px;
  left: 60px; }

.gear.three {
  top: 110px;
  left: 10px; }

.gear.four {
  top: 13px;
  left: 128px; }

.gear:after {
  content: "";
  position: absolute;
  height: 36px;
  width: 36px;
  border-radius: 36px;
  background: #111;
  top: 50%;
  left: 50%;
  margin-left: -18px;
  margin-top: -18px;
  z-index: 3;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1), inset 0px 0px 10px rgba(0, 0, 0, 0.1), inset 0px 2px 0px 0px #090909, inset 0px -1px 0px 0px #888888; }

.gear-inner {
  position: relative;
  height: 100%;
  width: 100%;
  background: #555;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1); }

.large .gear-inner {
  border-radius: 60px; }

.gear.one .gear-inner {
  animation: counter-clockwise 3s infinite linear; }

.gear.two .gear-inner {
  animation: clockwise 3s infinite linear; }

.gear.three .gear-inner {
  animation: counter-clockwise 3s infinite linear; }

.gear.four .gear-inner {
  animation: counter-clockwise 6s infinite linear; }

.gear-inner .bar {
  background: #555;
  height: 16px;
  width: 76px;
  position: absolute;
  left: 50%;
  margin-left: -38px;
  top: 50%;
  margin-top: -8px;
  border-radius: 2px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1); }

.large .gear-inner .bar {
  margin-left: -68px;
  width: 136px; }

.gear-inner .bar:nth-child(2) {
  transform: rotate(60deg); }

.gear-inner .bar:nth-child(3) {
  transform: rotate(120deg); }

.gear-inner .bar:nth-child(4) {
  transform: rotate(90deg); }

.gear-inner .bar:nth-child(5) {
  transform: rotate(30deg); }

.gear-inner .bar:nth-child(6) {
  transform: rotate(150deg); }

.nav-link {
  font-family: "Century", arial;
  font-weight: bold; }

.navbar-brand {
  font-family: "Goodtimes", sans-serif;
  font-size: 25px; }

.navbar-toggler {
  border: none; }

/* REEMPLAZA ICONO DEL MENU */
.navbar-toggler-icon {
  background-image: url(../img/logo.png) !important;
  background-size: cover;
  height: 50px;
  width: 50px;
  position: relative;
  transition: all 0.50s ease-out;
  transform-origin: center;
  border-radius: 50%; }

nav {
  position: fixed;
  display: block;
  width: 50px;
  height: 100vh;
  background-color: var(--colors-nav);
  text-align: center; }
  nav .brand {
    height: 50px;
    font-size: 3rem;
    font-weight: 600;
    display: block;
    background-color: var(--colors-brand); }
    nav .brand img {
      padding-top: 15px; }
  nav .menu {
    display: block;
    margin-top: 5rem; }
    nav .menu a {
      display: block;
      color: var(--colors-a);
      -webkit-transition: color 320ms ease-in;
      -moz-transition: color 320ms ease-in;
      -ms-transition: color 320ms ease-in;
      -o-transition: color 320ms ease-in;
      transition: color 320ms ease-in; }
      nav .menu a:hover {
        color: var(--colors-active); }
      nav .menu a.active {
        color: var(--colors-active); }
      nav .menu a:after {
        display: none; }
  nav .toggle {
    border-top: 1px solid white;
    padding-top: 17px; }
  nav .theme-toggle:hover {
    color: var(--colors-active); }

.main {
  padding-left: 50px;
  padding-right: 0%;
  background-color: var(--colors-header); }
  .main .banner {
    position: relative;
    height: 100%;
    margin-top: 15px;
    margin-bottom: 35px; }
    .main .banner .swiper {
      min-width: 200px;
      max-width: 320px;
      width: 40%;
      height: 100%;
      border-radius: 10px;
      box-shadow: 10px 10px 15px black; }
      .main .banner .swiper .swiper-wrapper .swiper-slide {
        background-position: center;
        background-size: cover;
        max-width: 320px;
        width: 100%;
        height: 100%; }
        .main .banner .swiper .swiper-wrapper .swiper-slide img {
          display: block;
          width: 100%; }
  .main header {
    margin-top: 20px;
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: center; }
    .main header h1 {
      padding-left: 15px;
      padding-right: 15px; }
  .main section {
    min-height: 70vh; }
  .main section:nth-child(odd) {
    background-color: var(--colors-section-odd); }
  .main section:nth-child(even) {
    background-color: var(--colors-section-even); }
  .main #productos a {
    color: var(--colors-titles);
    text-decoration: none;
    font-weight: bold; }
  .main #productos .articulos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }
  .main #productos .buscar-prod {
    margin-top: 5px;
    margin-bottom: 25px;
    width: 380px; }
    .main #productos .buscar-prod .btn {
      font-family: "Century", arial !important;
      text-align: center;
      letter-spacing: 1.5px;
      font-weight: bold;
      width: 100px; }
    .main #productos .buscar-prod .row {
      margin-top: 10px; }
    .main #productos .buscar-prod input {
      text-align: right; }
    .main #productos .buscar-prod input::-webkit-outer-spin-button,
    .main #productos .buscar-prod input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0; }
  .main #productos .tabla-prod {
    margin-top: 25px;
    margin-bottom: 30px;
    font-family: "Century", arial;
    width: 380px;
    height: fit-content;
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: scroll; }
    .main #productos .tabla-prod table th {
      background-color: var(--colors-section-odd);
      position: sticky;
      top: 0px;
      text-align: center; }
    .main #productos .tabla-prod table tr {
      color: var(--colors-p); }
      .main #productos .tabla-prod table tr td {
        text-align: center; }
  .main #servicios ul li {
    font-family: "Century", arial;
    text-align: justify;
    font-size: 18px;
    color: var(--colors-p); }
  .main #contact p {
    text-align: center; }
  .main #contact a {
    color: var(--colors-p);
    text-decoration: none;
    font-weight: normal;
    font-size: 95%; }
  .main #contact .a-phones {
    color: var(--colors-p);
    font-weight: normal; }
  .main #works .consultas {
    max-width: 600px; }
    .main #works .consultas input {
      height: 40px; }
    .main #works .consultas textarea {
      height: 150px; }
    .main #works .consultas .btn {
      font-family: "Century", arial;
      text-align: center;
      letter-spacing: 1.5px;
      font-weight: bold;
      width: 100px; }
    .main #works .consultas .btn-disabled {
      pointer-events: none;
      cursor: not-allowed;
      background-color: darkgray;
      color: white; }

footer {
  padding-left: 50px;
  padding-right: 0%;
  background-color: var(--colors-header); }
  footer div {
    font-family: "Century", arial;
    font-size: 13px;
    color: var(--colors-p);
    font-weight: bold; }
    footer div a {
      color: var(--colors-p);
      text-decoration: none; }
      footer div a:hover {
        text-decoration: none;
        color: var(--colors-p); }

        .vacaciones-img{
          align-content: center;
          justify-items: center;
          background-image: url("../../img/vacaciones.jpg");
          background-repeat: no-repeat;
          background-size: cover;
          height: 330px;
          padding: 25px;
          border-radius: 5px;
          margin-bottom: 15px;
      }

      .texto-vacaciones{
        display: inline-block;
        justify-items: center;
        align-content: center;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 25px;
        padding: 10px;
      }
      .vacaciones-txt{
        color:white;
      }

@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px; }
  h2 {
    font-size: 25px; }
  p {
    font-size: 17px; }
  .main #servicios ul li {
    font-size: 17px; } }

@media only screen and (max-width: 575px) {
  h1 {
    font-size: 25px; }
  h2 {
    font-size: 20px; }
  p {
    font-size: 15px; }
  .main #servicios ul li {
    font-size: 15px; } }
