.pop-up-container {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #000000bf;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.pop-up-container .outer-popup {
  margin: 6% auto;
  padding: 0;
  background: #1B191A;
  width: 50vw;
  text-align: center;
  height: 39rem;
  z-index: 99999;
  max-width: 620px;
  position: relative;
}
@media (max-width: 767px) {
  .pop-up-container .outer-popup {
    width: 75vw;
    height: auto;
    max-width: unset;
  }
}
.pop-up-container .outer-popup .close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  padding: 1rem;
  z-index: 999;
}
.pop-up-container .outer-popup .close-popup:hover {
  cursor: pointer;
}
.pop-up-container .outer-popup .inner-popup {
  height: calc(100% - 75px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: auto;
  position: relative;
  /*overflow: hidden;*/
  margin: 20px;
  padding: 28px 10px 10px;
  background: #1B191A;
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  border: solid 1px rgba(247, 120, 22, 0.8);
}
@media (max-width: 380px) {
  .pop-up-container .outer-popup .inner-popup {
    height: auto;
  }
}
.pop-up-container .outer-popup .inner-popup img {
  width: calc(100% + 60px);
  height: auto;
  transform: translateX(-30px);
}


.pop-up-container .outer-popup .inner-popup p {
  text-align: left;
  color: #ffffff;
  line-height: 2rem;
}

@media (max-width: 767px) {
  .pop-up-container .outer-popup .inner-popup p {
    font-size: 14px;
    line-height: 1.6em;
  }
}
.pop-up-container .outer-popup .inner-popup p:first-of-type {
  margin-bottom: 1rem;
  margin-top: 10px;
}
@media (max-width: 330px) {
  .pop-up-container .outer-popup .inner-popup p:first-of-type {
    margin-bottom: 0.6rem;
  }
}
.pop-up-container .outer-popup .inner-popup a {
  text-decoration: underline;
  color: #ffffff;
}
.pop-up-container .outer-popup .inner-popup:first-child {
  margin: 3rem 1.5rem;
}
 