* {
    box-sizing: border-box;
    margin: 0;
    scroll-behavior: smooth;
  }

  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  

  .footer-container {
    padding: 24px 0 18px 0;
    background-color: rgb(19, 53, 98);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: white;
    gap: 20px;
    width: 100%;
}
  
  h1 {
    font-size: 32px;
  }
  
  .d_none {
    display: none !important;
  }

  .no-scroll {
    overflow: hidden !important;
    /* position: fixed;
    width: 100%;
    height: 100vh; */
}