footer {
   background-color: var(--color-bg-gray);
}
.footer {
      display: flex;
		flex-direction: column;
      font-size: var(--font-small);
      
   }

   /* .footer > * {
      max-width: var(--max-size-w);
      margin: 0 auto;
   } */
   .footer__contact--phones {
      font-size: 15px;
      font-family: Bold, Arial, "Helvetica Neue", Helvetica, sans-serif;
      display: inline-block;
      vertical-align: middle;
      white-space: nowrap;
      text-align: left;
   }
   .footer__contacts {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      width: 100%;
      justify-content: space-around;
      gap: 10px;
      max-width: fit-content;
      height: 100%;
   }
   .footer__contact-separator {
      color: var(--color-black);
      user-select: none;
   }
   .footer__language {
      display: none;
   }

   .footer__language-nav {
      width: 100%;
   }

   .footer__language-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      list-style: none;
      margin: 0;
      padding: 0;
      justify-content: center;
   }

   .footer__language-list li {
      display: inline-block;
      padding: 6px 12px;
      color: #414141;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      border: 1px solid #eaeaea;
      border-radius: 4px;
      transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
   }

   .footer__language-list li:hover,
   .footer__language-list li:focus,
   .footer__language-list li.current-lang {
      background-color: #0f253d;
      border-color: #0f253d;
      color: #FFFFFF;
   }
   .footer__row {
display: flex;
flex-direction: column;
gap: 5px;
   }

   .footer__row--top {
justify-content: center;
align-items: center;
text-align: center;
background-color: var(--color-bg-gray);
border-bottom: 10px solid var(--color-accent);
padding: 1rem;
   }

   .footer__row--center {
background-color: var(--color-bg-gray);
border-bottom: 10px solid var(--color-accent);
padding: 1rem;
   }

   .footer__row--bottom {
padding: 1rem;
text-align: center;
   }

   .footer .custom-logo {
   max-height: 60px;
      width: auto;
   }

    .footer__socials {
      display: flex;
      gap: 10px;
      order: 9;
    }

   .footer__socials span {
display: none;
   }

   .footer__bottom-nav {
      width: 100%;
   }

   .footer__bottom-list, .footer__bottom-list li {
      list-style: none;
      margin: 0;
      padding: 0;
   }

   .footer__bottom-list li a {
    text-decoration: none;
    display: block;
	}

.footer__bottom-list > li > a {
    /* font-size: 1.1rem; */
    font-weight: 900;
    color: var(--color-accent);
    padding: .2rem;
    text-transform: uppercase;
    transition: background-color 0.2s ease, padding-left 0.2s ease;
    position: relative;
}

.footer__bottom-list > li > a:hover,
.footer__bottom-list > li > a:focus {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 1.25rem;
}

.footer__bottom-list .sub-menu {
padding-inline-start: 5%;
}

.footer__bottom-list .sub-menu li a {
    color: #000;
    padding: 0.2rem 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.footer__bottom-list .sub-menu li a:hover,
.footer__bottom-list .sub-menu li a:focus {
    color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.1);
}

   .footer__docs-nav {
      width: 100%;
   }

   .footer__docs-list, .footer__docs-list li {
      list-style: none;
      margin: 0;
      padding: 0;
   }

   .footer__docs-list li a {
    text-decoration: none;
    display: block;
	}

.footer__docs-list > li > a {
    color: var(--color-black);
    padding: .2rem;
    transition: background-color 0.2s ease, padding-left 0.2s ease;
    position: relative;
}

.footer__docs-list > li > a:hover,
.footer__docs-list > li > a:focus {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 1.25rem;
}

   @media (min-width: 768px) {
         .footer__row {
flex-direction: row;
         justify-content: space-between;
gap: 5px;
   }

      .footer__row--top {
text-align: left;
   }

   .footer__row--center {
      flex-wrap: wrap;
   }

      .footer__bottom-nav {
      width: auto;
      flex: 1;
   }

   .footer__docs-list {
      display: flex;
      justify-content: flex-start;
      gap: 20px;
   }
   }

      @media (min-width: 900px) {
         .footer {
            max-width: var(--max-size-w);
            margin: 0 auto;
         }
         .footer__row {
            gap: 1rem;
            padding: 2rem 5%;
         }

         .footer__bottom-text {
            flex: 1;
         }
      }