.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}
.modal-box {
  background-color: #fff;
  margin: 15% auto;
  width: 80%;
  animation-name: modalopen;
  animation-duration: 1s;
  position: relative;
  padding: 60px 60px;
}
.modalClose{
  position: absolute;
  top: 0;
  right: 1.2rem;
  font-size: 4rem;
  color: #000;
}
.modalOpen {
  text-align: inherit;
}
.modalOpen p {
  font-size: 1.7rem;
  text-decoration: underline;
  white-space: nowrap;
  font-family: 'AudiTypeExtendBold', 'DFHSBold'!important;
  color: #000;
}
.modal-box p {
  font-size: 1.6rem;
  line-height: 1.7!important;
}
.modal-box a {
  font-size: 1.7rem;
}
@media screen and (max-width: 1000px) {
  .modalOpen p {
    font-size: 1.6rem;
  }
  .modal-box {
    width: 90%;
    padding: 40px 40px 30px;
    margin: 10% auto;
  }
}
@media screen and (max-width: 820px) {
  .modal-box {
    width: 90%;
    padding: 40px 40px 30px;
  }
}
@media screen and (max-width: 640px) {
  .modalOpen p {
    font-size: 1.5rem;
  }
  .modal-box {
    width: 94%;
    padding: 40px 30px 30px;
  }
}
