@media only screen and (min-width: 768px) {
  .effect-box-text {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows .4s ease, opacity .3s ease;
  }

  .effect-box-text > div {
      overflow: hidden;
  }

  .effect-box:hover .effect-box-text {
      grid-template-rows: 1fr;
      opacity: 1;
  }
}

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

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

@media screen and (max-width: 1366px) {
  body {
    overflow-x: hidden;
  }
  
}

@media screen and (max-width: 1280px) {
  
}
@media screen and (max-width: 1024px) {
    .woocommerce-breadcrumb-custom {
        padding: 12px 20px;
    }
}
@media screen and (max-width: 767px) {
    .custom-upload-button {
        padding: 10px 20px;
        font-size: 14px;
        display: inline;
    }
    .custom-upload-wrapper {
        display: block;
        width: 100%;
    }
    .woocommerce-breadcrumb-custom {
        padding: 10px 20px;
    }
}
