.footer {
    background-color: #1E2027;
    color: #fff;
    padding: 60px 20px;

  }
  
  .footer__container {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
  }
  
  .about-us-icons {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .icon-wrapper {
    position: relative;
    display: inline-block;
  }
  
  .icon-wrapper img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .icon-wrapper img:hover {
    transform: scale(1.1);
  }
  
  .icon-wrapper::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
  }
  
  .icon-wrapper:hover::before {
    opacity: 1;
    visibility: visible;
  }
  
  .icon-wrapper::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .icon-wrapper:hover::after {
    opacity: 1;
    visibility: visible;
  }
  
  .about-us-icons img {
    width: 60px;
    height: 60px;
    background-color: #2a7fff;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .about-us-icons img:hover {
    transform: scale(1.1);
  }
  
  .footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
   
    padding-bottom: 40px;
    border-bottom: 1px solid #444;
  }
  
  .footer__logo img {
    height: 60px;
  }
  
  .footer__nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .footer__nav-list a {
    color: #bbb;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .footer__nav-list a:hover {
    color: #fff;
  }
  
  .footer__departments {
    margin: 50px 0;
  }
  
  .footer__subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ddd;
  }
  
  .footer__logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .footer__logos img {
    height: 50px;
    transition: transform 0.3s ease;
  }
  
  .footer__logos img:hover {
    transform: scale(1.1);
  }
  
  .menu-list-footer {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .menu-list-footer li {
    display: inline-block;
    margin: 0 15px;
  }
  
  .menu-list-footer a {
    text-decoration: none;
    color: white !important;
    font-weight: 300;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background 0.3s;
  }
  
  .footer__bottom {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #bbb;
    text-align: center;
  }
  
  @media (max-width: 1200px) {
    .about-us-icons img {
        width: 70px;
        height: 70px;
    }
  }
  
  @media (max-width: 992px) {
    .about-us-icons img {
        width: 60px;
        height: 60px;
    }
  }
  
  @media (max-width: 768px) {
    .about-us-icons img {
        width: 50px;
        height: 50px;
    }
  }
  
  @media (max-width: 976px) {
    .footer__top{
        justify-content: center !important;
        display: block;
    }
    .footer__nav-list{
      justify-content: center;
		padding-top: 5%;
    }
    .about-us-icons img {
        width: 50px;
        height: 50px;
    }
  }
  
  @media (max-width: 600px) {
    .menu-list-footer li {
        display: block;
        margin: 10px 0;
    }
  }
  