.is-blurred {
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

.MainHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  margin-bottom: 30px;
  padding: 10px 0;
  background-color: #fff;
}

.Heading {
  font-size: 34px;
  font-weight: bold;
}


/* Overlay */

.Modal {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: 0.5s;
  overflow: auto;
  transition: all 0.3s linear;
}

.Modal-content {
/*background-color: #d5d4da;*/
  margin: auto;
  padding: 30px;
  border-radius: 4px;
  max-width: 80%;
  /*height: 450px;*/
}

.ModalOpen { overflow: hidden; }

/*.is-hidden { display: none; }
.is-visuallyHidden { opacity: 0; }*/

/* The Close Button */

.Close {
  color: #000;
  float: right;
  font-size: 22px;
}

.Close:hover, .Close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.Modal-content img{display: block;margin: auto;}

@media(max-width: 1360px)
{
  .Modal-content{max-width: 100%;}
}

@media(max-width: 767px)
{
  .Modal-content{padding: 20px;}
}

