body.noscrol {
  overflow: hidden;
  transition: all 400ms ease;
}

.bodoverlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0 0 0 / 33%);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}

.bodoverlay.actve {
  visibility: visible;
  opacity: 1;
  z-index: 6;
}

.modalc {
  /*  margin: 70px auto;*/
  padding: 6rem 0;
  background: #f6f6f6;
  border-radius: 20px;
  width: 40%;
  position: absolute;
  transition: all 0.2s linear;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.modalc .close {
  position: absolute;
  top: -9px;
  right: 10px;
  transition: all 200ms;
  font-size: 41px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  background-color: unset;
  border: none;
}
.modalc .close:hover {
  color: #cfa33f;
}
.modalc .content {
  max-height: 30%;
  overflow: auto;
}
.modalc .contmsgmo .csmsgm {
  text-align: center;
  padding: 0 1rem;
}
.modalc .contmsgmo .csmsgm iframe {
  width: 100%;
  height: 100%;
}
.modalc .contmsgmo .csmsgm h2 {
  font-size: 23px;
  color: #022031;
  margin-bottom: 1rem;
}
.modalc .contmsgmo .csmsgm h2 span {
  color: #0165a0;
}
.modalc .contmsgmo .csmsgm p {
  color: #022031;
  margin-bottom: 0;
  font-size: 20px;
}

@media (max-width: 991px) {
  .modalc {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .modalc {
    width: 95%;
  }
}
@media (max-width: 540px) {
  .modalc .contmsgmo .csmsgm {
    padding: 0 4rem;
  }
}
