footer {
    background-color: #005ca9;
    color: white;
    padding: 60px 0 50px;
    margin-top: 100px;
    font-family: Roboto;
  }
  
  footer a,
  footer a:hover,
  footer a:focus,
  footer a:active {
    font-size: 12px;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
  }
  
  footer .footer-container {
    display: flex;
    flex-flow: row;
  }
  
  footer .logo-section {
    flex-grow: 1;
  }
  
  footer .menu-section {
    flex-grow: 3;
  }
  
  footer .social-row {
    display: flex;
    flex-flow: row;
    justify-content: end;
  }
  
  footer .social-row a {
    margin-left: 20px;
  }
  
  footer .menu-row {
    display: flex;
    flex-flow: row;
  }
  
  footer .menu-col {
    display: flex;
    flex-flow: column;
  }
  
  footer .menu-col:not(:last-child) {
    margin-right: 80px;
  }
  
  footer .menu-col .section-name {
    font-family: RobotoBold;
    font-weight: bold;
    margin-bottom: 10px;
    min-height: 23px;
    font-size: 16px;
  }
  
  @media screen and (max-width: 1139px) {
    footer .footer-container {
      flex-flow: column;
      margin-top: 20px;
    }
  }
  
  @media screen and (max-width: 767px) {
    footer .footer-container {
      padding: 0 20px;
    }
  
    footer .footer-container .menu-row {
      flex-wrap: wrap;
    }
  
    footer .footer-container .menu-col {
      margin-bottom: 25px;
    }
  }
  
  @media screen and (max-width: 575px) {
    footer .social-row {
      margin-top: 25px;
      margin-bottom: 25px;
    }
  }