.custom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 2rem;
  gap: 2rem;
  font-size: 1rem;
  color: white;
}

.custom-footer .footer-col {
  flex: 1;
  min-width: 200px;
  /*text-align: center;*/
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

.company-name {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.custom-footer.rtl {
  direction: rtl;
  text-align: right;
}

.footer-logo-img {
    width: 200px;
    height: auto;
}

@media (max-width: 768px) {
  .custom-footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .custom-footer .footer-col {
    width: 100%;
    margin-bottom: 2rem;
  }

  .custom-footer.rtl {
    text-align: center;
  }
  
  .footer-logo-img{
    width: 100px;
    height: auto;

  }
}