@media (max-width: 640px) {
  .hide-on-sm {
    display: none;
  }
}
.top-bar {
    /* background-color: #333; */
    /* color: white; */
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}
.top-bar .menu a {
    /* color: white; */
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}
.top-bar .menu i {
    color: #556df5;
    transition: color 0.3s ease;
}
.top-bar .menu a:hover {
    color: #556df5;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.modal-content {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  /* object-fit: cover; */
}