.img-container {
  display: none;
}
.hidden {
  display: none;
}

.modal {
  display: none;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}
.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal img {
  width: 100%;
  /* height: 550px; */
}
.left-button {
  position: relative;
  left: 20%;
  font-size: 40px;
  color: #0db14b;
}
.right-button {
  position: relative;
  right: 20%;
  font-size: 40px;
  color: #0db14b;
}
.modal-content {
  margin: auto;
  /* display: block; */
  width: 80%;

  max-width: 700px;
  /* display: block; */
}

#menu-image {
  width: 30px;
  margin: 2px 10px 0 0;
}
.dropdown-toggle {
  color: #173965;
}
.dropdown {
  background-color: rgb(251, 251, 251);
  padding: 10px;
}
@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media screen and (max-width: 1224px) {
  .modal-content {
    width: 80%;
  }
  .left-button {
    left: 2%;
  }
  .right-button {
    right: 2%;
  }
}
