* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
}

body {
  background: linear-gradient(to top left, black, rgb(27, 27, 27)) !important;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100vh;
}

nav {
  background: rgba(0, 0, 0, 0.61) !important;
  border-bottom: 1px solid rgba(92, 90, 90, 0.616);
  padding: 0 50px !important;
  font-size: 14px;
}
nav img {
  fill: #CB070F;
}
nav .nav-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
nav .nav-items ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0 10px 0 0;
}
nav .nav-items ul li {
  display: inline-block;
  list-style: outside none none;
  margin: 0.5em 1em;
  padding: 0;
}
nav .nav-items ul a {
  padding: 0.5em 0.8em;
  color: aliceblue;
  position: relative;
  text-decoration: none;
  font-size: 14px;
}
nav .nav-items ul a::before,
nav .nav-items ul a::after {
  content: "";
  height: 10px;
  width: 10px;
  position: absolute;
  transition: all 0.35s ease;
  opacity: 0;
}
nav .nav-items ul a::before {
  content: "";
  right: 0;
  top: 0;
  border-top: 3px solid rgba(203, 7, 13, 0.6862745098);
  border-right: 3px solid #CB070F;
  transform: translate(-100%, 50%);
}
nav .nav-items ul a:after {
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 3px solid rgba(203, 7, 13, 0.6862745098);
  border-left: 3px solid #CB070F;
  transform: translate(100%, -50%);
}
nav .nav-items ul a:hover:before,
nav .nav-items ul a:hover:after {
  transform: translate(0, 0);
  opacity: 1;
}
nav .nav-items ul a:hover {
  color: #CB070F;
}
nav .navbar-toggler {
  display: none;
}
nav .navbar-toggler span {
  color: aliceblue !important;
}
nav .navbar-toggler-icon {
  color: aliceblue !important;
}

#inicio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  height: 100vh;
  padding: 0 100px;
}
#inicio h1 {
  font-size: 60px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: rgba(203, 7, 13, 0.6862745098);
}
#inicio h2 {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  color: aliceblue;
  animation: write 2.5s steps(35), transparent 0.5s step-end infinite alternate;
  overflow: hidden;
  white-space: nowrap;
  width: 245px;
  border-right: 2px solid white;
}
#inicio h3 {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: rgba(240, 248, 255, 0.685);
}
@keyframes write {
  from {
    width: 0px;
  }
}
@keyframes transparent {
  50% {
    border-color: transparent;
  }
}
#inicio .btn {
  cursor: pointer;
  position: relative;
  padding: 10px 25px;
  margin-top: 30px;
  background: #222424;
  color: aliceblue;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: all 1s;
  text-align: center;
}
#inicio .btn:after, #inicio .btn:before {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  border: 0px solid #fff;
  transition: all 1s;
}
#inicio .btn:after {
  top: -1px;
  left: -1px;
  border-top: 5px solid #CB070F;
  border-left: 5px solid #CB070F;
}
#inicio .btn:before {
  bottom: -1px;
  right: -1px;
  border-bottom: 5px solid #CB070F;
  border-right: 5px solid #CB070F;
}
#inicio .btn:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
#inicio .btn:hover:before, #inicio .btn:hover:after {
  width: 100%;
  height: 100%;
}
#inicio .btn i {
  margin-left: 5px;
}
#inicio .pc-container {
  margin-left: 20px;
  animation: updown 7s linear infinite;
}
#inicio .pc-container img {
  width: 550px;
  filter: drop-shadow(1em 1em 20px rgba(165, 0, 5, 0.6862745098));
}
@keyframes updown {
  0% {
    transform: translateY(5%);
  }
  50% {
    transform: translateY(-2.5%);
  }
  100% {
    transform: translateY(5%);
  }
}

#productos {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 50px 50px;
  background: linear-gradient(to bottom, #080808, #141717);
}
#productos h2 {
  color: aliceblue;
  margin: 50px 0px;
  font-size: 40px;
  font-family: "Ubuntu", sans-serif;
}
#productos .card-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#productos .card-container .card {
  width: 280px;
  background-color: #272727;
  overflow: hidden;
  box-shadow: 0px 2px 4px #CB070F;
  margin: 20px;
  color: aliceblue;
}
#productos .card-container .card img {
  width: 100%;
  height: 250px;
}
#productos .card-container .card .card-content {
  padding: 15px;
}
#productos .card-container .card .card-content h3 {
  font-size: 20px;
}
#productos .card-container .card .card-content h4 {
  display: flex;
  width: 100%;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  color: white;
  font-weight: bold;
}
#productos .card-container .card .card-content h4 i {
  margin-left: 5px;
  color: #CB070F;
}
#productos .card-container .card .card-content .card-text {
  margin: 10px 0;
}
#productos .card-container .card .card-content .card-text span {
  display: inline-block;
  font-size: small;
}
#productos .card-container .card .card-content .card-text span b {
  margin-right: 10px;
}
#productos .card-container .card .card-content .btn-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
#productos .card-container .card .card-content button {
  padding: 7px 20px;
  border: 1px solid aliceblue;
  background: #141717;
  color: aliceblue;
  margin: 5px;
  font-size: 16px;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
#productos .card-container .card .card-content button .overlay {
  position: absolute;
  background: linear-gradient(to right, #CB070F, rgba(158, 5, 10, 0.5058823529));
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transition: 0.8s;
  z-index: -1;
}
#productos .card-container .card .card-content button:hover .overlay {
  width: 100%;
}
#productos .card-container .card:hover {
  box-shadow: -2px 5px 15px #CB070F;
  transition: 0.4s;
}

#sobreNosotros {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 980px;
  padding: 50px 50px;
  background: linear-gradient(to bottom, #141717, #080808);
}
#sobreNosotros h2 {
  color: aliceblue;
  margin: 50px 0px;
  font-size: 40px;
  font-family: "Ubuntu", sans-serif;
}
#sobreNosotros .info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0px 2px 4px #CB070F;
  margin: 10px 0;
}
#sobreNosotros .info-container .info-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  width: 400px;
  height: 350px;
  background: #272727;
  color: aliceblue;
  padding: 20px;
  font-size: 18px;
}
#sobreNosotros .info-container .info-img {
  height: 350px;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#sobreNosotros .coments-container {
  display: flex;
  position: relative;
  width: 300px;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
}
#sobreNosotros .coments-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  display: none;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
}
#sobreNosotros .coments-img img {
  width: 100%;
  margin-left: 50px;
}
#sobreNosotros .coments-img p {
  margin-top: 20px;
  color: aliceblue;
  width: 300px;
  text-align: center;
}
#sobreNosotros .coments-img.active {
  animation-name: fadeIn;
  z-index: 2;
}
#sobreNosotros .coments-img.fade-out {
  animation-name: fadeOut;
  z-index: 0;
}

#contacto {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 90vh;
  padding: 50px 150px;
  background: linear-gradient(to top right, black, rgb(27, 27, 27));
}
#contacto h2 {
  color: aliceblue;
  margin: 50px 0px;
  font-size: 40px;
  font-family: "Ubuntu", sans-serif;
  text-align: center;
}
#contacto h5 {
  display: flex;
  width: 100%;
  align-items: start;
  color: aliceblue;
}
#contacto .contacts-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
  width: 80%;
}
#contacto .contacts-container a {
  text-decoration: none;
}
#contacto .contacts-container .contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border: 2px solid aliceblue;
  border-radius: 10px;
  margin: 30px;
  font-size: 50px;
  color: aliceblue;
  cursor: pointer;
  position: relative;
  z-index: 10;
  box-shadow: 5px 5px 20px #CB070F;
}
#contacto .contacts-container .contact .overlay {
  position: absolute;
  background: linear-gradient(to top, rgb(3, 170, 3), rgba(5, 158, 120, 0.5254901961));
  border-radius: 10px;
  bottom: 0;
  width: 100%;
  height: 0%;
  transition: 0.8s;
  z-index: -1;
}
#contacto .contacts-container .insta .overlay {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
#contacto .contacts-container .contact:hover .overlay {
  height: 100%;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  padding: 20px 50px;
  border-top: 1px solid rgba(92, 90, 90, 0.616);
  color: aliceblue;
}
footer p {
  margin: 0;
  margin-right: 20px;
}
footer .info-contact {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}
footer .info-contact span {
  margin-bottom: 5px;
}

@media (max-width: 980px) {
  #inicio {
    flex-direction: column;
    height: 780px;
    justify-content: center;
  }
  #inicio .pc-container {
    width: 450px;
    height: auto;
    margin-top: 20px;
  }
  #inicio .pc-container img {
    width: 100%;
  }
}
@media (max-width: 920px) {
  #sobreNosotros {
    height: 1250px;
  }
  #sobreNosotros .info-container {
    width: 400px;
  }
  #sobreNosotros .info-container .info-content {
    height: 300px;
  }
  #sobreNosotros .info-container .info-img {
    height: 300px;
  }
  #sobreNosotros .info-container .info-img iframe {
    height: 300px;
  }
  #contacto {
    padding: 0 50px;
  }
}
@media (max-width: 870px) {
  nav .nav-items ul {
    display: none;
  }
  nav .navbar-toggler {
    display: block;
    color: #CB070F;
  }
  nav .offcanvas {
    max-width: 300px;
  }
  #inicio {
    padding: 0 50px;
  }
}
@media (max-width: 650px) {
  #contacto {
    padding: 0 20px;
  }
}
@media (max-width: 580px) {
  #contacto {
    height: 850px;
  }
}
@media (max-width: 520px) {
  nav {
    padding: 0 10px !important;
  }
  #inicio {
    padding: 0 20px;
  }
  #inicio .pc-container {
    width: 300px;
  }
  #sobreNosotros {
    height: 1250px;
    padding: 0 20px;
  }
  #sobreNosotros .info-container {
    width: 300px;
  }
  #sobreNosotros .info-container .info-content {
    width: 300px;
    height: 330px;
  }
  #sobreNosotros .info-container .info-img {
    width: 300px;
  }
  #sobreNosotros .info-container .info-img iframe {
    height: 330px;
    width: 300px;
  }
  footer {
    padding: 20px;
    font-size: 14px;
  }
}/*# sourceMappingURL=index.css.map */