@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Lato";
}

body {
  background-color: #000000;
}

.color-blue {
  color: #4b4bc5;
  font-weight: 700;
  font-size: 1.2rem;
}

.white-icon {
  color: #ffffff;
}

.bg-black {
  background-color: #000000;
}

.bg-white {
  background-color: #ffffff;
}

.shadow-box {
  -webkit-box-shadow: 10px 10px 15px #000000;
          box-shadow: 10px 10px 15px #000000;
}

.bg-wave {
  background-image: url(../assets/wave2.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.hr-color {
  background: -webkit-gradient(linear, right top, left top, color-stop(10%, #09ff00c9), color-stop(70%, #000000));
  background: linear-gradient(to left, #09ff00c9 10%, #000000 70%);
  height: 10px !important;
  margin: 0;
  opacity: 1;
}

@-webkit-keyframes efecto {
  50% {
    color: #09ff0077;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes efecto {
  50% {
    color: #09ff0077;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes animate {
  0% {
    -webkit-transform: translate(-50%, -75%) rotate(0deg);
            transform: translate(-50%, -75%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -75%) rotate(360deg);
            transform: translate(-50%, -75%) rotate(360deg);
  }
}

@keyframes animate {
  0% {
    -webkit-transform: translate(-50%, -75%) rotate(0deg);
            transform: translate(-50%, -75%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -75%) rotate(360deg);
            transform: translate(-50%, -75%) rotate(360deg);
  }
}

@keyframes efecto {
  50% {
    color: #09ff0077;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animate {
  0% {
    -webkit-transform: translate(-50%, -75%) rotate(0deg);
            transform: translate(-50%, -75%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -75%) rotate(360deg);
            transform: translate(-50%, -75%) rotate(360deg);
  }
}

.btn-orange {
  background: #ff4400;
  border: none;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

/* Boton enviar del formulario de contacto */
.button {
  --color: #09ff00c9;
  --color2: rgb(10, 25, 30);
  padding: 0.8em 1.75em;
  background-color: transparent;
  border-radius: 6px;
  border: 0.3px solid var(--color);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  font-weight: 300;
  font-size: 16px;
  font-family: "Roboto", "Segoe UI", sans-serif;
  text-transform: uppercase;
  color: var(--color);
}

.button::after, .button::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  -webkit-transform: skew(90deg) translate(-50%, -50%);
          transform: skew(90deg) translate(-50%, -50%);
  position: absolute;
  inset: 50%;
  left: 25%;
  z-index: -1;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  background-color: var(--color);
}

.button::before {
  top: -50%;
  left: -25%;
  -webkit-transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
          transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}

.button:hover::before {
  -webkit-transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
          transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}

.button:hover::after {
  -webkit-transform: skew(45deg) translate(-50%, -50%);
          transform: skew(45deg) translate(-50%, -50%);
}

.button:hover {
  color: var(--color2);
}

.button:active {
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

.button-secundario {
  font-size: 15px;
  margin: 1rem;
  text-transform: uppercase;
  font-family: "Roboto", "Segoe UI", sans-serif;
  display: inline-block;
  text-align: center;
  font-weight: 500;
  padding: 0.7em 2em;
  border: 1px solid #176417;
  border-radius: 2px;
  position: relative;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #09ff00c9;
  text-decoration: none;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  z-index: 1;
  background: #000000;
}

.button-secundario:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: #ffffff;
  z-index: -1;
}

.button-secundario:hover, .button-secundario:focus {
  color: #000000;
  border: 1px solid #000000;
}

.button-secundario:hover:before, .button-secundario:focus:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
  border-radius: 5px;
}

.button-secundario:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.newsletter__btn {
  position: relative;
  padding: 15px 10px;
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #000000;
}

@media only screen and (min-width: 1236px) {
  .newsletter__btn {
    margin-left: 2rem;
  }
}

@media screen and (max-width: 575px) {
  .newsletter__btn {
    margin: 1rem;
  }
}

.newsletter__btn span {
  position: relative;
  color: #fff;
  z-index: 1;
}

.newsletter__btn .liquid {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 200px;
  background: red;
  -webkit-box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.newsletter__btn .liquid::after,
.newsletter__btn .liquid::before {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -75%);
          transform: translate(-50%, -75%);
  background: #fff;
}

.newsletter__btn .liquid::before {
  border-radius: 45%;
  background: #141414;
  -webkit-animation: animate 5s linear infinite;
          animation: animate 5s linear infinite;
}

.newsletter__btn .liquid::after {
  border-radius: 40%;
  background: rgba(20, 20, 20, 0.5);
  -webkit-animation: animate 10s linear infinite;
          animation: animate 10s linear infinite;
}

.newsletter__btn:hover .liquid {
  top: -120px;
}

/*Boton EMPEZAR YA de Section PC index */
.section__btn {
  cursor: pointer;
  font-weight: 700;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding: 10px 20px;
  border-radius: 100px;
  background: #cfef00;
  font-family: "Nunito";
  border: 1px solid transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  margin-left: 1rem;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .section__btn {
    margin-top: 1rem;
  }
}

.section__btn:hover {
  background: #a6c900;
}

.section__btn > svg {
  width: 34px;
  margin-left: 10px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.section__btn:hover svg {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.section__btn:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.header--bg {
  background-color: #0f1011;
}

.header__title {
  font-family: "Alfa Slab One", cursive;
  text-shadow: 2px 0px 10px #07880d;
  color: #09ff0077;
  -webkit-animation-name: efecto;
          animation-name: efecto;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  margin-left: 5rem;
}

@media screen and (max-width: 575px) {
  .header__title {
    margin-left: 4.5rem !important;
  }
}

.header__item {
  font-size: 1.3rem;
  padding: 5px;
  color: #ffffff;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  text-shadow: 5px 4.3px 4px #000000;
}

.header__item:hover {
  border-bottom: 4px solid #09ff00c9;
  -webkit-transform: skewX(3deg);
          transform: skewX(3deg);
}

.header__link {
  text-decoration: none;
  color: #ffffff;
}

.header__link:visited {
  color: #ffffff;
}

.header__sesion {
  font-size: 1rem;
  color: #ffffff;
  background-color: #000000;
  padding: 10px;
  text-decoration: none;
  border: 1px solid #09ff0077;
  border-radius: 5px;
}

.header__sesion:hover {
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #000000;
}

.header__registro {
  font-size: 1rem;
  color: #000000;
  background-color: #ffffff;
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
}

.header__registro:hover {
  color: #ffffff;
  background-color: #000000;
  border: 1px solid #ffffff37;
}

.header .search, .header .search-btn {
  border: 1px solid #09ff0077;
  color: #ffffff;
  background-color: #000000;
}

.header .search:focus, .header .search-btn:focus {
  outline: none;
}

.header .search-btn {
  color: #09ff0077;
}

.header .search-btn:hover {
  color: #09ff00c9;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header .position-m {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin-left: 30px;
  }
}

.navbar-dark .navbar-toggler {
  color: transparent;
  border-color: green;
}

.navbar-toggler {
  border: 1px solid transparent;
}

.form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .form-flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header--bg {
  background-color: #0f1011;
}

.header__title {
  font-family: "Alfa Slab One", cursive;
  text-shadow: 2px 0px 10px #07880d;
  color: #09ff0077;
  -webkit-animation-name: efecto;
          animation-name: efecto;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  margin-left: 5rem;
}

@media screen and (max-width: 575px) {
  .header__title {
    margin-left: 4.5rem !important;
  }
}

.header__item {
  font-size: 1.3rem;
  padding: 5px;
  color: #ffffff;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  text-shadow: 5px 4.3px 4px #000000;
}

.header__item:hover {
  border-bottom: 4px solid #09ff00c9;
  -webkit-transform: skewX(3deg);
          transform: skewX(3deg);
}

.header__link {
  text-decoration: none;
  color: #ffffff;
}

.header__link:visited {
  color: #ffffff;
}

.header__sesion {
  font-size: 1rem;
  color: #ffffff;
  background-color: #000000;
  padding: 10px;
  text-decoration: none;
  border: 1px solid #09ff0077;
  border-radius: 5px;
}

.header__sesion:hover {
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #000000;
}

.header__registro {
  font-size: 1rem;
  color: #000000;
  background-color: #ffffff;
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
}

.header__registro:hover {
  color: #ffffff;
  background-color: #000000;
  border: 1px solid #ffffff37;
}

.header .search, .header .search-btn {
  border: 1px solid #09ff0077;
  color: #ffffff;
  background-color: #000000;
}

.header .search:focus, .header .search-btn:focus {
  outline: none;
}

.header .search-btn {
  color: #09ff0077;
}

.header .search-btn:hover {
  color: #09ff00c9;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header .position-m {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin-left: 30px;
  }
}

.navbar-dark .navbar-toggler {
  color: transparent;
  border-color: green;
}

.navbar-toggler {
  border: 1px solid transparent;
}

.form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .form-flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer {
  background-image: url(../assets/layered-waves-haikei2.svg);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    place-content: center;
  }
}

@media screen and (max-width: 575px) {
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    place-content: center;
  }
}

.footer__subtitulo {
  color: #09ff00c9;
  font-size: 1.8rem;
  padding: 10px;
  text-shadow: 3px 3px 4px #000000;
}

.footer_link {
  text-shadow: 3px 3px 4px #000000;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.2rem;
  padding: 5px;
  display: block;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}

.footer_link:visited {
  color: #ffffff;
}

.footer_link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.footer__redes {
  width: 30px;
  height: 30px;
  margin: 0.5rem;
}

.footer p {
  text-shadow: 3px 3px 5px #000000;
  color: #ffffff;
  font-size: 1.2rem;
  padding: 5px;
}

.footer iframe {
  border-radius: 1rem;
}

.newsletter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-color: #c42020;
  padding: 10px;
}

@media only screen and (min-width: 1236px) {
  .newsletter {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1235px) {
  .newsletter {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    place-items: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .newsletter {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    place-items: center;
  }
}

@media screen and (max-width: 575px) {
  .newsletter {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    place-items: center;
  }
}

.newsletter__label {
  font-size: 1.5rem;
  color: #ffffff;
}

@media only screen and (min-width: 1236px) {
  .newsletter__label {
    margin-top: 0.5rem;
  }
}

.newsletter__redes {
  width: 35px;
  height: 35px;
  margin: 0px 1rem;
}

@media only screen and (min-width: 1236px) {
  .newsletter__redes {
    margin-top: 0.5rem;
  }
}

.newsletter__input {
  font-size: 1.2rem;
  width: 300px;
  padding: 5px;
  border: 2px #000000 double;
  color: #000000;
  margin-left: 2rem;
}

.newsletter__input:focus {
  outline: none;
}

@media only screen and (min-width: 1025px) and (max-width: 1235px) {
  .newsletter__input {
    margin: 1rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .newsletter__input {
    margin: 1rem;
  }
}

@media screen and (max-width: 575px) {
  .newsletter__input {
    margin-top: 1rem;
  }
}

.section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 575px) {
  .section {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section__box-img {
  width: 100%;
  height: 100%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.section__parrafo {
  color: #ffffff;
  font-size: 2rem;
  margin-top: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .section__parrafo {
    font-size: 1.2rem;
  }
}

.section__parrafo p {
  padding: 30px;
}

.section .resaltador {
  background-color: #00000073;
  padding: 10px 30px;
  border-radius: 10px;
  color: #09ff00;
  font-size: 2rem;
  font-weight: 900;
  font-family: "Lato";
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .section .resaltador {
    font-size: 1.5rem;
  }
}

.section2 .titulo-productoDestacado {
  text-align: center;
  padding: 5rem;
  text-shadow: 0px 0px 10px #000000;
}

.section2 .titulo-productoDestacado h2 {
  font-size: 3rem;
}

@media screen and (max-width: 575px) {
  .section2 .titulo-productoDestacado h2 {
    font-size: 2.5rem;
  }
}

.section2 .card-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section2 .card-width {
  width: 20rem;
}

.section2__info {
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  border: 2px solid #09ff0059;
}

@media screen and (max-width: 575px) {
  .section2__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section2__info p {
  color: #ffffff;
  font-size: 1rem;
  padding: 10px;
}

.section2 .reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #00000073;
  padding: 5rem;
}

@media only screen and (min-width: 1025px) and (max-width: 1235px) {
  .section2 .reviews {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .section2 .reviews {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 575px) {
  .section2 .reviews {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.section2 .reviews__subtitulo {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 300;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 1rem;
}

@media only screen and (min-width: 1025px) and (max-width: 1235px) {
  .section2 .reviews__subtitulo {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .section2 .reviews__subtitulo {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.section2 .reviews__img {
  width: 220px;
  height: 200px;
  margin: 1rem;
  border: 1px solid #09ff0077;
  border-radius: 20px;
}

.section2 .servicio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5))), url(../assets/fondo7.jpg);
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5)), url(../assets/fondo7.jpg);
  background-position: center;
  background-size: cover;
  padding: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 1236px) {
  .section2 .servicio {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1235px) {
  .section2 .servicio {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .section2 .servicio {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.section2 .servicio__title {
  color: #ffffff;
  text-shadow: 3px 4px 3px #000000;
}

@media only screen and (min-width: 1236px) {
  .section2 .servicio__title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

.section2 .servicio__title h2 {
  text-transform: uppercase;
  font-family: "nunito";
}

.section2 .servicio div p {
  background-color: #00000073;
  color: #ffffff;
  padding: 20px;
  margin: 2rem 3rem;
  font-size: 1.1rem;
  border-radius: 10px;
  border: 1px solid #ffffff37;
}

.section2 .servicio__btn {
  font-size: 1.2rem;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #000000;
  background-color: #ffffff;
}

.section2 .servicio__btn:hover {
  background-color: #c42020;
  border: #000000;
  color: #ffffff;
  text-shadow: 3px 3px 5px #000000;
}

.section2 .marcas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
}

.section2 .marcas__img {
  height: 70px;
  margin-left: 1rem;
}

.section2 .subtitulo-marcas {
  color: #ffffff;
  background-color: #00000073;
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .carousel {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .carousel-height {
    height: 236px;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1235px) {
  .carousel-height {
    height: 399px;
  }
}

@media only screen and (min-width: 1236px) {
  .carousel-height {
    height: 450px;
  }
}

.ayuda {
  background-color: #000000;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1200px;
      grid-template-columns: 1200px;
  -ms-grid-rows: (250px)[5];
      grid-template-rows: repeat(5, 250px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0px 10px 10px #ffffff;
          box-shadow: 0px 10px 10px #ffffff;
  grid-row-gap: 50px;
  padding-bottom: 5rem;
}

@media only screen and (min-width: 1025px) and (max-width: 1235px) {
  .ayuda {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    padding: 3rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ayuda {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    padding: 3rem;
  }
}

@media screen and (max-width: 575px) {
  .ayuda {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    padding: 3rem;
  }
}

.ayuda__title {
  color: #ffffff;
  text-align: center;
  position: relative;
  top: 100px;
  font-size: 3rem;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ayuda__title {
    top: auto;
  }
}

@media screen and (max-width: 575px) {
  .ayuda__title {
    top: auto;
  }
}

.ayuda__compra {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #09ff0077;
  border-radius: 5px;
  line-height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  -webkit-box-shadow: 5px 7px 10px #14f30073;
          box-shadow: 5px 7px 10px #14f30073;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ayuda__compra {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.ayuda__compra h4 {
  color: #09ff00c9;
}

.ayuda__subtitle {
  font-size: 2rem;
}

.contact {
  background-color: #000000;
  background-image: url(../assets/background2.jpg);
  background-repeat: no-repeat;
}

.contact__subtitulo {
  padding: 2rem;
  font-size: 2.5rem;
  margin-bottom: 5rem;
}

.contact__form {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact__label {
  margin: 10px;
  font-size: 1.5rem;
  color: #ffffff;
  text-shadow: 0px 1px 1.5px #000000;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  opacity: 1;
}

.contact__label-position {
  position: relative;
  bottom: 6rem;
}

.contact__input {
  padding: 10px;
  width: 18rem;
  background-color: #0c0c0c;
  color: #ffffff;
  border: none;
  border-bottom: 4px solid #09ff00c9;
}

.contact__input:focus {
  outline: none;
}

.contact__input:placeholder-shown + label {
  position: relative;
  bottom: 3rem;
  right: 6rem;
  opacity: 0;
}

.contact__input:checked + label {
  color: #09ff00c9;
}

.contact__selector {
  padding: 5px;
  margin: 15px;
  width: 10rem;
  background-color: #000000;
  color: #ffffff;
  border-radius: 5px;
  border: 1px solid #09ff0077;
  font-size: 1.2rem;
}

.contact__textArea {
  position: relative;
  top: 2rem;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #09ff0077;
  margin: 15px;
  resize: none;
}

.contact__textArea:focus {
  outline: none;
}

.contact__textArea:placeholder-shown + label {
  position: relative;
  right: 4rem;
  bottom: 8rem;
  opacity: 0;
}

.contact__area-position {
  position: relative;
  bottom: 10rem;
  color: white;
  margin-top: 1rem;
}

@media screen and (max-width: 575px) {
  .contact__area-position {
    margin-top: 2rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact__area-position {
    margin-top: 2rem;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1235px) {
  .contact__area-position {
    margin-top: 2rem;
  }
}

.contenedor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 20vw;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url(../assets/fondo9.jpg);
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../assets/fondo9.jpg);
  background-size: cover;
  background-position: top;
}

.contenedor:hover :first-child {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.contenedor__title {
  color: #ffffff;
  font-size: 3.5rem;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  text-shadow: 3px 3px 5px #000000;
}

@media screen and (max-width: 575px) {
  .contenedor__title {
    font-size: 1.8rem;
  }
}

.productos {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7))), url(../assets/fondo4.jpg);
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7)), url(../assets/fondo4.jpg);
  background-position: center;
  background-size: cover;
  background-color: #000000;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (250px)[4];
      grid-template-columns: repeat(4, 250px);
  -ms-grid-rows: (200px)[4];
      grid-template-rows: repeat(4, 200px);
      grid-template-areas: "header header header" "productos productos productos" "footer footer footer";
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 50px 0px;
}

@media only screen and (min-width: 1025px) and (max-width: 1235px) {
  .productos {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    padding: 3rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .productos {
    background-image: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 575px) {
  .productos {
    background-image: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 3rem;
  }
}

.productos__items {
  position: relative;
}

.productos__links {
  color: #ffffff;
  text-decoration: none;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.5rem;
  text-shadow: 3px 3px 5px #000000;
  font-weight: 400;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

.productos__links:hover {
  color: #ffffff;
  font-size: 1.6rem;
}

.productos__links:hover ~ img {
  border-top: none;
}

.productos__links:visited {
  color: #ffffff;
}

.productos__img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .productos__img {
    width: 250px;
    height: 100%;
  }
}

@media screen and (max-width: 575px) {
  .productos__img {
    height: 200px;
    width: 250px;
  }
}

.productos__img:hover {
  opacity: 1;
  border: none;
  border-bottom: 4px solid #09ff00c9;
}

.productos__img:hover ~ a {
  font-size: 1.6rem;
}

main {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: productos;
}

header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: header;
}

footer {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: footer;
}

.armar-pc__parrafo {
  width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.armar-pc h3 {
  color: #ffffff;
  font-size: 1.9rem;
  padding: 20px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.armar-pc__marcas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 5rem 0rem;
  overflow: hidden;
}

@media only screen and (min-width: 1025px) and (max-width: 1235px) {
  .armar-pc__marcas {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    place-items: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .armar-pc__marcas {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    place-items: center;
  }
}

.armar-pc__container {
  width: 400px;
  height: 400px;
}

@media screen and (max-width: 575px) {
  .armar-pc__container {
    width: 350px;
  }
}

.armar-pc__container--amd {
  -webkit-box-shadow: 0px 20px 50px #d40b0b;
          box-shadow: 0px 20px 50px #d40b0b;
}

.armar-pc__container--intel {
  -webkit-box-shadow: 0px 20px 50px #0035e2;
          box-shadow: 0px 20px 50px #0035e2;
}

.armar-pc__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
}

.armar-pc__img:hover {
  opacity: 1;
}
/*# sourceMappingURL=main.css.map */