/* IE ERROR */
  .error_container {
    height: 100vh;
    background-color: #162D5D;
    font-family: 'Inter', sans-serif;
    text-align: center;
    display: flex;
    position: relative;
  }
    
  .error_container > .card {
    background-color:#FFFFFF;
    color:#2B2B35;
    border-radius: 5px;
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    padding: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  
  .card_heading_1 {
    font-weight: bold;
    font-size: 25px;
    align-self: center;
    width: 100%;
    font-family: inherit;
    color: #2B2B35;
    line-height: 35px;
  }
  
  .card_heading_2 {
    margin-top: 20px;
    font-size: 20px;
    width: 70%;
    align-self: center;
    color: #000000;
    text-align: center;
    font-family: inherit;
    line-height: 25px;
  }
  
  .card_logos {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .card_logo_group {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .card_logo_image {
    width: 70px;
    height: 70px;
  }
  
  .card_logo_link {
    margin-top: 10px;
    font-size: 13px;
    color: #2B2B35;
    text-decoration: none;
  }
  
  .card_logo_link:hover {
    color: #0082FF;
  }
   