*, *:before, *:after {
    box-sizing: border-box;
  }
  
  html {
    font-size: 100%;
  }
  
  .footer {
    display: flex;
    flex-flow: row wrap;
    text-align: left !important;
    padding: 40px 30px 20px 30px;
    color: white;
    background-color: #001689;
    font-size: 14px;
    position: relative;
    border-top: 4px solid #f68b1f;
    font-family: 'Segoe UI', 'Montserrat', sans-serif;
  }
  
  .footer > * {
    flex: 1 100%;
  }
  
  .footer__addr {
    margin-right: 1.25em;
    margin-bottom: 2em;
  }
  
  .footer__title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0.5em;
    color: #f68b1f;
  }
  
  .footer address {
    font-style: normal;
    line-height: 1.6em;
    color: #ffffff;
  }
  
  .footer__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    background-color: #f68b1f;
    border-radius: 100px;
    color: white;
    font-weight: bold;
    margin-top: 1em;
    font-size: 1rem;
    padding: 0 1.5em;
    transition: background-color 0.3s ease;
  }
  
  .footer__btn:hover {
    background-color: #d8781a;
  }
  
  .footer ul {
    list-style: none;
    padding-left: 0;
  }
  
  .footer li {
    line-height: 2em;
  }
  
  .footer a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
  }
  
  .footer a:hover {
    color: #f68b1f;
  }
  
  .footer__nav {
    display: flex;
    flex-flow: row wrap;
    gap: 2rem;
  }
  
  .footer__nav > * {
    flex: 1 1 200px;
  }
  
  .nav__title {
    font-weight: 600;
    font-size: 15px;
    color: #f68b1f;
    margin-bottom: 0.5em;
  }
  
  .nav__ul--extra {
    column-count: 2;
    column-gap: 1.25em;
  }
  
  .legal {
    display: flex;
    flex-wrap: wrap;
    color: white;
    margin-top: 2em;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1em;
    justify-content: space-between;
  }
  
  .footer-logo-bottom {
    position: absolute;
    right: 32px;
    bottom: 18px;
    z-index: 2;
  }
  
  .footer-logo-bottom img {
    height: 48px;
    width: auto;
    opacity: 0.95;
  }
  
  @media (max-width: 600px) {
    .footer-logo-bottom {
      right: 12px;
      bottom: 12px;
    }
    .footer-logo-bottom img {
      height: 25px;
    }
  }