.responsive-img {
  width: 100%;
  height: auto;
}

.responsive-container {
  padding-right: 0px !important;
}

.image-wrapper {
  position: relative;
}

button {
  cursor: pointer;
}

.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-content {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 64px;
    color: red;
    cursor: pointer;
}

.hidden {
  display: none;
}

@media (min-width: 1024px) {
  .responsive-img {
    width: auto;
    height: auto;
  }

  .image-wrapper {
    top: 6rem;
  }
}

@media (max-width: 1023px) {
  .responsive-img {
    width: 100%;
    height: auto;
  }

  .image-wrapper {
    top: 3.5rem;
  }
}
