.glassmorphism-background, .contact-form, textarea,
input, .send-button, .featured-wrapper, .animation-video-wrapper, .contact-social ul .social-button {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18); }

.flex-center-all, .contact-section, .item-img, .contact-head, .nosotros-head {
  display: flex;
  justify-content: center;
  align-items: center; }

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

::selection {
  color: #cf0fc6;
  background: #99c6fa; }

a {
  text-decoration: none;
  color: white; }

body {
  font-family: "Montserrat", sans-serif;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, #ab66ff 0%, #74b6f7 90%);
  color: white; }

/* NAV BAR */
nav {
  margin: 0;
  position: sticky;
  background-color: #000000; }

.nav-desk {
  display: none; }

.marquee {
  position: absolute;
  background-color: white;
  color: black;
  width: 100%;
  overflow: hidden;
  text-transform: uppercase;
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
  bottom: 0; }
  .marquee span {
    padding: 0 20px;
    font-weight: 700;
    font-size: 13px;
    font-style: italic;
    white-space: nowrap; }

@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0); }
  100% {
    transform: translate3d(var(--move-final), 0, 0); } }
  .marquee:hover .marquee__inner {
    animation-play-state: running; }

.marquee__inner {
  width: fit-content;
  display: flex;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 8s linear infinite;
  animation-play-state: running; }

.offcanvas {
  background-color: #000000; }

.offcanvas-title {
  color: #ffff; }

.btn-close {
  background-color: #aaaaaa;
  border-radius: 20px; }

/* CONTENIDO PRINCIPAL */
.main-wrapper {
  margin: 60px auto;
  display: grid;
  gap: 20px;
  margin-top: 80px;
  animation-name: fade-in-up;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-duration: 1s; }

@keyframes fade-in-up {
  0% {
    opacity: 0%; }
  100% {
    opacity: 100%; } }

.btn {
  background-color: #ab66ff;
  border: none;
  color: white; }
  .btn:hover {
    background-color: violet;
    color: white; }

.contact-form {
  left: 0;
  right: 0;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  color: white;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  margin-top: 30px; }

.form-info {
  padding: 15px;
  font-weight: 300;
  text-align: center; }
  .form-info label {
    display: flex;
    justify-content: center;
    font-weight: 500;
    padding: 5px; }
  .form-info textarea {
    width: 100px;
    max-width: 100px;
    min-width: 190px;
    max-height: 500px;
    min-height: 200px; }

textarea:focus,
input:focus {
  outline: 3.5px solid rgba(15, 15, 15, 0.24);
  transition: 0.1s all ease-in-out; }

.form-input {
  border-radius: 5px;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(179, 179, 179, 0);
  font-family: "Montserrat", sans-serif;
  font-weight: 500; }

.send-button-container {
  display: flex;
  justify-content: center; }

.send-button {
  background: #800ae580;
  min-width: 130px;
  height: 40px;
  color: #fff;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 5px;
  border: none;
  background-size: 120% auto; }
  .send-button:hover {
    background: #fff;
    color: #7605da; }

.footer-section {
  display: flex;
  gap: 10px;
  padding: 60px;
  background-color: #000000;
  width: 100%;
  color: white;
  justify-content: center;
  text-align: center; }

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  grid-template-areas: "footer-img" "footer-nav" "redes" "productos"; }

.footer-img img {
  width: auto;
  height: 50px; }

.footer-links {
  grid-area: footer-nav;
  padding-left: 0px; }

.footer-social {
  grid-area: redes; }
  .footer-social .footer-social--logos img {
    width: auto;
    height: 20px; }

.footer-products {
  grid-area: productos;
  padding-left: 0px; }
  .footer-products ul {
    text-align: center; }
    .footer-products ul a {
      text-decoration: none;
      color: #000000;
      text-align: center; }

.footer-nav label,
.footer-social label,
.footer-products label {
  padding: 20px;
  font-size: 12px;
  font-weight: 800; }

.footer-nav ul,
.footer-social ul,
.footer-products ul {
  padding-left: 0px; }

.footer-nav li,
.footer-social li,
.footer-products li {
  font-size: 12px;
  justify-content: center;
  margin: 0;
  padding: 5px;
  padding-top: 20px; }

.footer-nav a:hover,
.footer-social a:hover,
.footer-products a:hover {
  opacity: 60%; }

.footer-social li a,
.footer-links li a {
  color: white;
  transition: all 0.2s ease; }

.head-section {
  grid-area: header;
  display: grid;
  grid-template-columns: 1fr;
  height: 80vh;
  text-align: center;
  place-items: center;
  transition: 0.3s all ease; }
  .head-section::before {
    content: "";
    position: fixed;
    top: 0%;
    right: 0%;
    bottom: 0%;
    left: 0%;
    background-image: url(https://res.cloudinary.com/djccefmjp/image/upload/v1653526473/Mechanical-Keyboard_audpv3.png);
    background-position: top;
    background-size: cover;
    opacity: 0.07;
    z-index: -3; }

#header-text {
  grid-area: header-text;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  padding-bottom: 50px; }

.header-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .header-buttons .buyNow-button, .header-buttons .us-button {
    padding: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 230px;
    text-align: center;
    justify-content: center;
    transition: all 0.3s ease 0s;
    background-color: #79c279;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    left: 0;
    right: 0; }
    .header-buttons .buyNow-button i, .header-buttons .us-button i {
      display: none;
      color: #79c279;
      text-shadow: none; }
    .header-buttons .buyNow-button:hover, .header-buttons .us-button:hover {
      background-color: white; }
      .header-buttons .buyNow-button:hover span, .header-buttons .us-button:hover span {
        display: none; }
      .header-buttons .buyNow-button:hover i, .header-buttons .us-button:hover i {
        display: inline-block; }
  .header-buttons .us-button {
    background-color: white;
    color: #ab66ff;
    text-shadow: none; }
    .header-buttons .us-button a {
      color: #ab66ff; }
    .header-buttons .us-button i {
      color: #ab66ff; }
    .header-buttons .us-button:hover {
      box-shadow: none; }

#header-img {
  grid-area: header-img;
  display: none; }
  #header-img img {
    width: auto;
    height: 100px; }

.links {
  font-weight: 700;
  color: black;
  transition: all 0.3s ease 0s;
  text-decoration: none; }
  .links:hover {
    color: white; }

#featured-section--headh3 {
  font-size: 1.5em;
  text-align: center;
  margin-top: 15%;
  font-weight: 800;
  text-transform: capitalize; }

.featured-p {
  text-align: center;
  margin-left: 5%;
  margin-right: 5%; }

.featured-wrapper {
  border: 0px;
  border-radius: 10px;
  margin-bottom: 100px; }

.featured-images {
  grid-area: featured-imgs;
  display: flex;
  flex-direction: column; }
  .featured-images div {
    text-align: center;
    padding: 20px; }
    .featured-images div img {
      padding: 10px;
      background-color: white;
      width: 100%;
      height: 100%;
      margin: auto;
      transition: all 0.3s ease 0s;
      border-radius: 10px; }

.carousel {
  z-index: 0; }

.carousel-caption {
  background: rgba(0, 0, 0, 0.459);
  width: fit-content;
  padding: 10px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin: auto;
  display: none; }

.animation-video-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border-radius: 20px;
  margin: 10px; }
  .animation-video-wrapper div h3 {
    padding: 10px;
    font-size: 1.4em;
    font-weight: 700;
    margin: 30px;
    margin-bottom: 30px; }

.animation-video {
  display: flex;
  width: 100%;
  height: fit-content;
  border-radius: 20px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  justify-content: center; }

.contact-section {
  grid-area: contact; }

.product-page-wrapper {
  width: 95%;
  margin: auto;
  margin-top: 5vh; }

.card {
  padding-top: 10px;
  width: 70%;
  border: none;
  background-color: white;
  border-radius: 5px; }
  .card .card-body {
    background-color: white;
    box-shadow: none;
    margin-top: 20px;
    border-radius: 5px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    justify-content: center;
    align-items: center;
    border: none; }
    .card .card-body .card-text {
      color: black; }
      .card .card-body .card-text h5 {
        font-size: 1.1em; }

.card-img-top {
  width: 75%;
  height: auto;
  margin: auto; }

.product-head {
  text-align: center;
  display: flex;
  flex-flow: column;
  padding: 50px;
  align-items: center;
  color: white; }
  .product-head p {
    padding-top: 50px;
    max-width: 400px; }
  .product-head a {
    color: black;
    transition: all 0.3s ease 0s; }
    .product-head a:hover {
      color: #3b3b3b; }

.breadcrumb-wrapper {
  display: flex;
  background-color: #ffff;
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  padding-left: 20px;
  border-radius: 15px; }
  .breadcrumb-wrapper .breadcrumb-container {
    background-color: #ffff; }
    .breadcrumb-wrapper .breadcrumb-container li {
      font-weight: 500; }
    .breadcrumb-wrapper .breadcrumb-container .breadcrumb-item a {
      color: #3e80fc; }

.product-wrapper {
  padding-top: 30px;
  padding-bottom: 40px; }

.item-head {
  display: grid;
  grid-template-areas: "item-img" "item-title";
  width: 100%;
  margin: auto;
  place-items: center;
  gap: 60px;
  padding: 20px;
  background-color: white;
  border-radius: 20px; }

.product-buy-button {
  background-color: #79c279;
  border: 0;
  color: white;
  font-weight: 600;
  border-radius: 20px;
  transition: 0.3s all ease; }
  .product-buy-button:hover {
    background-color: #ffffff;
    color: #79c279; }

.item-title {
  grid-area: item-title;
  order: 2;
  color: #000000;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  border-radius: 20px;
  gap: 10px;
  border-radius: 20px;
  background: #e0e0e0;
  box-shadow: 20px 20px 60px #9b9b9b, -20px -20px 60px #ffffff; }
  .item-title p {
    max-width: 700px;
    margin: auto;
    text-align: center; }

.item-img {
  grid-area: item-img; }

.keyboard-img--page {
  border-radius: 10px;
  width: fit-content;
  height: 86px;
  transition: all 0.3s ease; }
  .keyboard-img--page:hover {
    transform: scale(1.1); }

.contact-head {
  flex-flow: column;
  text-align: center;
  padding: 20px;
  color: white; }

.contact-social {
  display: flex;
  flex-flow: column;
  text-align: center;
  color: white; }
  .contact-social ul {
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .contact-social ul .social-button {
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease 0s;
      color: white;
      padding: 14px;
      margin: 20px 0 20px 0;
      width: fit-content;
      text-align: center;
      color: white;
      transition: all 0.3s ease 0s; }
      .contact-social ul .social-button:hover {
        background: #adadad40; }
      .contact-social ul .social-button i {
        padding-right: 10px; }

.nosotros-wrapper {
  margin: auto;
  margin-top: 5vh;
  display: grid;
  gap: 20px;
  animation-name: fade-in-up;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-duration: 1s; }

.nosotros-head {
  flex-flow: column;
  text-align: center;
  color: white;
  position: relative;
  padding: 30px;
  height: 100vh;
  min-height: 200px;
  font-size: 1.1em;
  background: rgba(255, 255, 255, 0.05); }
  .nosotros-head div h1 {
    position: relative;
    margin: 20px;
    font-weight: 800; }
    .nosotros-head div h1 p {
      position: relative;
      max-width: 500px;
      padding-top: 20px;
      font-weight: 500; }
  .nosotros-head #nosotros-p2 {
    position: relative;
    font-weight: 700;
    max-width: 180px;
    margin: auto; }
    .nosotros-head #nosotros-p2 .p2-link {
      color: black;
      font-weight: 800;
      transition: 0.3s all ease;
      border-radius: 10px; }
      .nosotros-head #nosotros-p2 .p2-link i {
        display: none; }
      .nosotros-head #nosotros-p2 .p2-link:hover {
        color: white;
        padding: 5px;
        background-color: #000000; }
  .nosotros-head::before {
    content: "";
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-image: url(../resources/custom-keyboard.png);
    background-size: cover;
    background-position: top center;
    opacity: 0.07;
    z-index: -1; }

.nosotros-icons {
  margin-top: 20px;
  display: flex;
  flex-direction: column; }
  .nosotros-icons .boton-redes-twitter {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    margin-right: 20px;
    margin-top: 20px;
    border-radius: 10px;
    color: white;
    border: none;
    background-color: #74ccff;
    transition: 0.3s all ease; }
    .nosotros-icons .boton-redes-twitter:hover {
      background-color: white;
      color: #74ccff; }
  .nosotros-icons .boton-redes-instagram {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    margin-right: 20px;
    margin-top: 20px;
    border-radius: 10px;
    color: white;
    border: none;
    background-color: #ff38cd;
    transition: 0.3s all ease; }
    .nosotros-icons .boton-redes-instagram:hover {
      background-color: white;
      color: #ff38cd; }

/* TABLET */
@media (min-width: 765px) {
  nav {
    width: 80%; }
  .head-section {
    grid-template-columns: repeat(2 1fr);
    grid-template-areas: "header-text header-img";
    margin-left: 5%;
    margin-right: 5%;
    text-align: left;
    place-items: center start; }
  #header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0;
    max-width: 800px; }
    #header-text p {
      max-width: 700px; }
  #header-img {
    display: flex; }
    #header-img img {
      width: auto;
      height: 150px;
      display: flex; }
  .header-buttons {
    flex-direction: row; }
  .buyNow-button, .header-buttons .us-button {
    width: 180px; }
  .us-button {
    width: 180px;
    margin-left: 20px; }
  .video-section {
    margin-bottom: 60px; }
    .video-section .animation-video-wrapper {
      flex-direction: row-reverse; }
      .video-section .animation-video-wrapper .video-title {
        justify-content: flex-start;
        font-size: 1.2em; }
      .video-section .animation-video-wrapper .animation-video {
        width: 70%;
        height: fit-content;
        border-radius: 20px;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        justify-content: flex-start; }
  .form-info textarea {
    width: 400px;
    max-width: 400px;
    min-width: 400px; }
  .featured-images {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  #featured-section--headh3 {
    margin-top: 0; }
  .product-card {
    flex-direction: column;
    width: 100%;
    text-align: center;
    justify-content: space-between;
    align-items: center; }
  .keyboard-img {
    height: 65px; }
  .keyboard-img--page {
    height: 180px; }
  .item-title {
    width: 90%; }
  .nosotros-wrapper {
    height: 95vh; }
    .nosotros-wrapper .nosotros-head #nosotros-p2 {
      max-width: 480px; }
      .nosotros-wrapper .nosotros-head #nosotros-p2 .p2-link i {
        display: inline-block; }
  .nosotros-icons {
    flex-direction: row; }
  .nosotros-head div p {
    max-width: 800px; } }

/* LAPTOP */
@media (min-width: 1024px) {
  .nav--links {
    flex-direction: row;
    gap: 5%;
    max-height: 100%; }
  .nav-desk {
    display: flex;
    margin-top: 20px; }
  .nav-item-desk a {
    color: white;
    transition: all ease 0.3s; }
    .nav-item-desk a:hover {
      color: #8d8d8d; }
  .label-toggle {
    display: none; }
  .featured-section--header {
    max-width: none; }
  .carousel-caption {
    display: flex; }
  .video-section {
    margin-left: 5%;
    margin-right: 5%; }
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(4 1fr);
    gap: 50px;
    align-items: center;
    grid-template-areas: "footer-img footer-nav redes productos"; }
  .form-info textarea {
    width: 400px;
    max-width: 400px;
    min-width: 400px; }
  .keyboard-img {
    height: 65px; }
  .item-head {
    display: grid;
    grid-template-areas: "item-img item-title";
    width: 100%;
    margin: auto;
    place-items: center;
    gap: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: white;
    border-radius: 20px; }
  .product-wrapper {
    padding-top: 40px;
    padding-bottom: 40px; }
  .contact-head {
    margin-top: 40px; }
  .nosotros-head {
    padding: 150px; } }

/* DESKTOP FULL SIZE */
@media (min-width: 1440px) {
  #header-img img {
    height: 200px; }
  .featured-images div {
    padding-left: 25px;
    padding-right: 25px; }
  .product-wrapper {
    padding-top: 50px;
    padding-bottom: 50px; }
  .keyboard-img--page {
    height: 300px; }
  .item-title {
    font-size: 20px; }
  .item-head {
    padding: 50px; } }
