.st-img-reg-container {
    position: relative;
    overflow: hidden;
     width: 100%;
    margin-top: 30px;
    height: auto;
  }
  
  /* The image fills its container and maintains aspect ratio */
  .st-reg-img{
    width: 100%;
    aspect-ratio: 3/1.2 ;
    object-fit: cover;
    transition: transform 0.5s ease-in-out, padding 0.5s ease-in-out;
    padding: 0; /* Ensure no padding initially */
  }
  
  /* Zoom effect on smaller screens */
  @media (max-width: 950px) {
    .st-reg-img {
        transform: scale(1.1); /* Increase the zoom level */
        padding: 1%; /* Adds padding for a more dynamic effect */
    }
    .st-img-reg-container {
 
        margin-top: 90px;
 
      }
  }
  
  @media screen and (max-width:830px){
     .st-reg-img{
      height: 100%;  
     }
  }

  /* @media screen and (max-width: 767px) {
    .st-reg-img{
      }
} */


.jop-btns{
    margin-top: 100px;
}


/* //////////////////////// */
.form-head_sub{
    position: absolute;
    height: 70px;
    background-color: #457d96;
    top: 80px;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1;
    border-radius: 0;
}
@media screen and (max-width: 767px) {
  .form-head_sub{
    border-radius: 0;
        height: 85px;
    }
}


.form-label_sub{
    position: absolute;
    top: 14px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: white;
    background-color: transparent;
    /* border: 1px solid white; */
    border-radius: 5px;
    text-wrap: nowrap;
           font-size: 12px;

}
@media screen and (max-width:767px){
    .form-label_sub{
       text-align: right;
       font-size: 12px;
       color: white;
           text-wrap: wrap;
           text-align: center;
           line-height: 2em;

   }
  
}