/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 0 auto;
  /* padding: 20px; */
  border: 1px solid #888;
  width: 60%;
  height: 425px;
  overflow: hidden;
  color: black;
}

.modal-content img {
  width: 100%;
  padding-bottom: 0;
  margin-bottom: 0;
}

.modal-content .cta {
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 175px;
  height: 50px;
  display: flex;
  border: 2px solid;
  border-radius: 50px;
  transition: all 0.2s ease;
  cursor: pointer;
  font-weight: bold;
  margin-top: 30px;
}

.cta:hover {
  color: white;
  background-color: #4c6986;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

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