footer {
    background: #1B2650;
    background-image: url(/assets/images/footer-images/footer-bg.png);
    background-size: cover;
    color: #ffffff;
    padding: 55px 0;
    font-family: Helvetica Neue;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
  
  footer div {
    display: inline-block;
  }
  
  footer ul {
    list-style-type: none;
    padding-left: 10px;
    margin-top: 16px;
  }
  
  footer ul li {
    margin-bottom: 16px;
  }
  
  footer .footer-content {
    max-width: 1172px;
    margin: auto;
  }
  
  footer a,
  footer a:hover,
  footer a:visited {
    text-decoration: none;
    color: #ffffff;
  }
  
  footer .footer-content,
  footer .main-footer,
  footer .sub-footer {
    display: block;
  }
  
  footer .main-footer {
    display: grid;
    grid-template-columns: 370px 1fr;
    margin-bottom: 40px;
  }
  
  footer .main-footer .branding div{
    display: block;
  }
  
  footer .main-footer .branding .lotto-results-img {
    margin-bottom: 30px;
  }
  
  footer .main-footer .branding .lotto-results-img img {
    max-width: 170px;
  }
  
  footer .main-footer .branding .desc {
    margin-bottom: 22px;
  }
  
  footer .main-footer .branding .socials img {
    max-width: 42px;
  }
  
  footer .main-footer .subsidiaries {
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr; */
    display: flex;
    justify-content: space-between;
  }
  
  footer .main-footer .sub-label {
    font-weight: bold;
  }
  
  footer .main-footer .subsidiaries .faq-section ul {
    padding-left: 0;
  }
  
  footer .main-footer .subsidiaries .faq-section .flags {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 160px;
    max-width: 160px;
    grid-row-gap: 5px;
    grid-column-gap: 5px;
  }

  footer .main-footer .subsidiaries .faq-section .flags img {
      width: 50px;
      height: 25px;
  }
  
  footer .sub-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 13px;
    display: flex;
    justify-content: space-between;
  }
  
  footer .sub-footer .copyright span {
    display: block;
  }
  
  footer .sub-footer .company-logo img {
    max-width: 131px;
  }
  
  /* RESPONSIVE */
  @media only screen and (max-width: 1024px) {
    footer {
      padding: 55px 20px;
    }
  
    footer .main-footer {
      grid-template-columns: 250px 1fr;
    }
  }
  
  @media only screen and (max-width: 768px) {
    footer .main-footer {
      grid-template-columns: 1fr;
      grid-row-gap: 20px;
    }
  }
  
  @media only screen and (max-width: 425px) {
    footer .main-footer .branding {
      text-align: center;
    }
  
    footer .main-footer .subsidiaries {
      display: block;
    }
  
    footer .main-footer .subsidiaries .au-games,
    footer .main-footer .subsidiaries .au-results,
    footer .main-footer .subsidiaries .faq-section {
      display: block;
      width: 220px;
      margin: auto;
      margin-bottom: 50px;
    }
  }
  
  @media only screen and (max-width: 320px) {
    footer .sub-footer {
      display: block;
      text-align: center;
    }
  
    footer .sub-footer img {
      margin-top: 50px;
    }
  }