.close {
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  font-size: 13px;
  color: #FFF;
  font-family: gotham_mediumregular !important;
  padding: 10px;
}
.close:hover{
  color: #d7182a;
  cursor: pointer;
}
.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transition: 0.7s;
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 400px;
  margin-left: -300px;
  margin-top: -200px;
  background: #FFFFFF;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease-out;
  transform: translateY(45px);
}
.modal p{
  margin: 0;
  padding: 25px;
  text-align-last: justify;
  font-size: 17px;
  color: #000;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  line-height: 32px;
  font-weight: lighter;
}

.modal img{
  width: auto;
}
.active {
  visibility: visible;
  opacity: 1;
}
.active + .modal {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}



@media only screen and (max-width: 768px) {
  
  .close {
    position: absolute;
    top: 0px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #FFF;
    font-family: gotham_mediumregular !important;
    padding: 10px;
  }
  .close:hover{
    color: #d7182a;
    cursor: pointer;
  }
  .modal img{
    width: 100vw;
    padding: 30px 0 30px 0;
    background-color: #000;
  }
  .modal {
    position: fixed;
    margin: 0;
    top: 0;
    left: 0;
    padding: 0;
    width: 100vw;
    height: auto;
    background: #FFFFFF;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease-out;
    transform: translateY(45px);
  }
  .modal p{
    margin: 0;
    padding: 25px;
    text-align: justify;
    text-align-last: left;
    font-size: 17px;
    color: #000;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    line-height: 32px;
    font-weight: lighter;
  }

  .modal p br{
    display: none;
  }

}