@media (max-width: 767px) {
  .mobile-none {
    display: none;
  }
  .header-links-container,
  .login-header-links-container {
    position: fixed;
    right: 0;
    background: #e8f8ff;
    top: 0px;
    box-shadow: -4px 6px 7px 0px #75757530;
    transform: translateX(100%);
    transition: 1s all;
    width: 100%;
    height: 100vh;
    z-index: 9;
    display: flex;
    flex-direction: column;
  }
  .header_list {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    z-index: 99;
    align-items: start;
    gap: 40px;
    width: 100%;
  }
  .desktop-none {
    display: flex;
    flex-wrap: wrap;
  }
  .header-links-container.expand,
  .login-header-links-container.login-expand {
    transform: translateX(0px);
  }
  .login-btn-container {
    width: 100%;
    padding: 20px;
  }

  .banner-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .form-inner-section {
    flex-wrap: wrap;
  }
  .form-image {
    min-height: 500px;
  }
  form {
    min-width: 100%;
  }
  .resources-grid {
    grid-template-columns: auto;
  }
  .footer-list,
  .footer-links-container {
    flex-direction: column;
  }
  .copy-rights {
    text-align: center;
  }
  .estimate-disclaimer {
    align-items: start;
    gap: 0.75rem;
  }
  /* .form-output-title li {
    flex-direction: column;
  }
  .form-output-title {
    display: grid;
  } */
   .mobile-block {
    display: block;
    text-align: center;
  }
}
@media (max-width: 1200px) {
  .form-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .form-image-inner-container {
    padding-bottom: 150px;
  }
}

@media only screen and (max-width:500px){
  .form-grid-content ul.output-data li p:first-child{
    max-width: 200px;
    min-width: 200px;
  }
  .form-grid {
    padding: 60px clamp(15px, 3vw, 64px) 20px;
}
}

@media only screen and (max-width:400px){
  .form-grid-content ul.output-data li p:first-child{
    max-width: 180px;
    min-width: 180px;
  }
}

@media only screen and (max-width:330px){
  .form-grid-content ul.output-data li p:first-child{
    max-width: 150px;
    min-width: 150px;
  }
}