
@media (max-width: 576px) { 
  .uni-heading{
    display: none;
    
  }
 }

 
@media (max-width: 768px) {
  .bg-full {
    display: none !important;
    
  }


}



/* ================= MOBILE ONLY HERO ================= */

/* Hide on Desktop */
.mobile-hero {
  display: none;
}

/* ========== MOBILE VIEW ========== */
@media (max-width:768px){

/* Show on Mobile */
.mobile-hero{
  display:block;
  background:#ffd400;
  padding:15px;
  animation:fadeUp .8s ease;
}

/* Banner */
.mobile-banner{
  border-radius:15px;
  margin-bottom:15px;
}

.mobile-banner h2{
  font-size:22px;
  font-weight:bold;
}

.mobile-banner p{
  font-size:14px;
  opacity:.9;
}

/* Form Box */
.mobile-form-box{
  background:#fff;
  padding:22px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* Title */
.mobile-form-box h4{
  text-align:center;
  color:#0c5c2d;
  margin-bottom:15px;
}

/* Fields */
.m-field{
  margin-bottom:14px;
}

.m-field input,
.m-field select{
  width:100%;
  padding:12px 16px;
  border-radius:30px;
  border:1.5px solid #bbb;
  font-size:16px;
  outline:none;
  transition:.3s;
}

/* Focus Animation */
.m-field input:focus,
.m-field select:focus{
  border-color:#0c5c2d;
  box-shadow:0 0 8px rgba(12,92,45,.4);
  transform:scale(1.02);
}

/* Error */
.m-error{
  color:red;
  font-size:12px;
  margin-left:12px;
}

/* Button */
.m-submit{
  width:100%;
  padding:12px;
  background:#0c5c2d;
  color:#fff;
  border:none;
  border-radius:30px;
  font-size:17px;
  font-weight:bold;
  cursor:pointer;
  transition:.3s;
}

.m-submit:hover{
  background:#083d1e;
  transform:scale(1.05);
  box-shadow:0 6px 15px rgba(0,0,0,.3);
}

/* Success */
#m-success{
  text-align:center;
  color:green;
  margin-top:10px;
  font-weight:bold;
}

/* Animation */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

}


/* add css */

