:root {
    --Default-Content: #033d53;
    --Main-Blue: #0092c8;
    --V-Orange: linear-gradient(89deg, #ff9623 1.31%, #f07d00 98.69%);
    --Brand-Orange: #f07d00;
  }
  
  body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Helvetica;
    font-style: normal;   
    overflow-y: scroll !important;
  }
  
  .overlay{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-items: center;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
  }
  
  .hidden{
    display: none;
  }
  
  .pre_container{
    max-width: 640px;
    margin: 100px auto 120px auto;
  }
  
  .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 15px;
    margin-right: 15px;
  }
  /* .left-logo {
    width: 329px;
    height: 60.192px;
  } */
  .left-logo img {
    width: 329px;
    height: 60.192px;
    display: block;
  }
  
  .right-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
  }
  .right-logo-content p {
    margin: 0;
    color: var(--Default-Content);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .right-logo-content .right-logo-review {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  .right-logo-review img {
    width: 96.107px;
    height: 16.018px;
    display: block;
  }
  .right-logo-review span {
    color: var(--Default-Content);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-top: 4px;
  }
  
  /* progress bar  */
  .progress-container {
    width: 100%;
    background-color: #ccc;
    border-radius: 4px;
    margin: 66.5px 0 50px 0;
  }
  .progress-bar {
    /* width: 70%; */
    height: 20px;
    background-color: var(--Main-Blue);
    border-radius: 4px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    transition: width 1.5s ease;
  }
  
  /* main content  */
  .main-content {
    color: var(--Default-Content);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .main-content .heading {
    font-size: 32px;
    margin-bottom: 42.5px;
  }
  .main-content .list-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .main-content .list-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 190%; /* 34.2px */
    margin: 0 0 0 14px;
  }
  .main-content .footer {
    font-size: 20px;
    margin-top: 49.5px;
    margin-bottom: 47.5px;
  }
  
  /* button section  */
  .content-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    background-color: var(--Brand-Orange);
    border: none;
    border-radius: 4px;
  }
  .content-button span {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    margin-right: 16px;
  }
  
  @media (max-width: 700px) {

    .pre_container{
      margin: 25px auto;
      padding: 25px;
    }
    
    .logo{
      display: block;
    }
    
    .logo img{
      width: 100%;
      height: auto;
    }
    
    .left-logo{
      margin-bottom: 15px;
    }
    
    .progress-container{
      margin: 20px 0;
    }
    
    .main-content{
      margin: 15px;
    }
    
    .main-content .heading{
      font-size: 20px;
      margin-bottom: 25px;
    }
    
    .main-content .list-content{
      align-items: flex-start;
      margin-bottom: 10px;
    }
    
    .main-content .list-content p{
      font-size: 16px;
    }
    
    .main-content .list-content img{
      margin-top: 6px;
    }
    
    .footer{
      width: 100%;
      font-size: 18px;
      margin: 25px  0 !important;
    }
    
    .content-button{
      width: 100%;
    }
  }