@charset "utf-8";
#contenido {
  opacity: 1;
  transition: opacity 0.5s ease;
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ed1c24;
  border-top: 6px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
html, body {
  /*height: 100%;*/
  margin: 0;
  padding: 0;
  background: #000;
  font-family: trade-gothic-next, sans-serif;
  font-weight: 300;
  font-style: normal;
  /*overflow-x: hidden;
  overflow-y: auto;*/
}
.menu {
  position: fixed;
  margin-top: 100px;
  z-index: 999999;
  opacity: 0;
  transform: translateX(-100px);
  pointer-events: none;
}
.menu ul {
  margin: 0;
  padding: 0 20px;
  list-style: none;
  background: #000;
  border-top: #fff solid 1px;
  border-right: #fff solid 1px;
  border-bottom: #fff solid 1px;
}
.menu ul li {
  border-bottom: #fff solid 1px;
}
.menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  height: 100px;
  width: 60px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
  transition: 400ms ease;
}
.menu ul li + li {
  border-bottom: none;
}
.menu ul li a:hover {
  color: red;
}
@media (max-width: 1024px) {
  .menu {
    margin-top: 0;
  }
  .menu ul {
    padding: 0 10px;
  }
  .menu ul li a {
    font-size: 16px;
    height: 70px;
    width: 50px;
  }
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.container svg {
  width: 400px;
}
.logo-fill {
  fill: #ed1c24;
  opacity: 0;
}
.logo-outline {
  stroke: #ed1c24;
  stroke-width: 2;
  fill: none;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
}
.popup-img {
  width: 100%;
  height: auto;
}
.close-btn {
  position: absolute;
  top: -30px;
  right: -30px;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
.hidden {
  display: none;
}
@media (max-width: 600px) {
  .popup-content {
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .popup-img {
    width: 100%;
    height: auto;
  }
  .close-btn {
    top: -35px;
    right: -5px;
    font-size: 1.5rem;
  }
}
@media (max-width: 450px) {
  .container {
    width: 90%;
    margin: 0 5%;
  }
}

