@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



*{
    font-family: "Poppins", sans-serif;
   
  }





  .form-header {
    border-radius: 0;
    border: 1px solid #FFCC33;
}



.usb_personzalizas {
    text-align: center;
    font-family: Montserrat;
    padding-top: 55px
}


.modify {
    border-radius: 10px 10px;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
    margin-top: 6px;
}

.card-modificado {
    display: table;

    height: 80px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2px;
    padding-right: 2px;
}

.title-modificado {
    display: table-cell;
    vertical-align: middle;
}

.card a {
    text-decoration: none;
    color: black;
}

.card .card-img-top {
    width: 150px;
    height: 150px;
    border-radius: 10px 10px;
}

.contacto {
    margin-top: 5px;
}

.contacto li {
    /* border: red 1px solid ; */
    padding: 5px 5px;
}

.contacto li a {
    text-decoration: none;
    color: black;
}



  
.slider{
  width: 100%;
  height: var(--height);
  background: white;
  overflow: hidden;
  z-index: 40;
  mask-image: linear-gradient(
      to right,
      transparent,
      #000 10% 90%,
      transparent
  );

}
.slider .list{
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}
.slider .list .item{
  width: var(--width);
  height: var(--height);
  position: absolute;
  display: flex;
  align-items: center;
  left: 100%;
  animation: autoRun 55s linear infinite;
  transition: filter 0.5s;
  animation-delay: calc( (55s / var(--quantity)) * (var(--position) - 1) - 55s)!important;
}
.slider .list .item img{
  width: 80%;
}
@keyframes autoRun{
  from{
      left: 100%;
  }to{
      left: calc(var(--width) * -1);
  }
}

.slider[reverse="true"] .item{
  animation: reversePlay 55s linear infinite;
}
@keyframes reversePlay{
  from{
      left: calc(var(--width) * -1);
  }to{
      left: 100%;
  }
}




.item-menu{
  cursor: pointer;
}
.menu-grid{
  opacity: 0;
  transform: translateY(-100px);
  transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1);
}
.menu-grid.visible {
  opacity: 1;
  transform: translateY(-10px);
  pointer-events: auto;
  transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1);

}
.arrow-active {
  transform: rotate(180deg); 
  transition: transform 0.3s ease;
}

.menu-movil{

  transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1);
}





@media screen and (max-width: 768px) {

  .menu-movil{
    transform: translateX(100%);
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1);
  }

  
  .menu-grid{
    opacity: 0;
    transform: translateY(-100px);
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  .menu-grid.visible {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: auto;
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1);
    display: grid;
  }
}