/*.content-area p {
  font-size: 1.7em;
  line-height: 0.8;
  padding: 0;
}
.content-area #playBtn i {
  color: #BA3144;
  display: block;
  font-size: 4em;
  padding: 40px;
  transition: all 0.3s;
}
.content-area #playBtn i:hover {
  color: white;
  cursor: pointer;
}
*/

/* Make Video Responsive */
.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* The Modal */
.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 */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.7);
  /* Black w/ opacity */
  z-index: 99999;
}
.modal .modal-content {
  background-color: white;
  margin: auto;
  padding: 0;
  position: relative;
  border: 3px solid #B93645;
  width: 80%;
  max-width: 600px;
}

/* Close Button */
.close {
  background-color: #B93645;
  color: black;
  right: 0px;
  top: -3px;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  padding: 0px 12px;
  transition: all 0.3s;
    z-index: 99999;
}
.close:hover, .close:focus {
  background-color: white;
  color: #B93645;
  text-decoration: none;
  cursor: pointer !important;
}