.custom-modal {
  display: none; /* Hidden by default */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s ease;
}

.custom-modal-content {
  background: #111;
  color: #fff;
  width: 85%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 10px;
  position: relative;
  padding: 20px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.custom-modal-close { 
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



.mrgn1 {margin-top: -180px;}

@media all and (max-width: 768px) {
  .logoMda {width: 80% !important;}
  .mrgn1 {margin-top: -50px;}
}