.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav .navbar-brand {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 6px;
}

html.ar .main-nav .navbar-brand {
  letter-spacing: 0px;
}

.main-nav img {
  user-select: none;
  --webkit-user-select: none;
  -webkit-user-drag: none;
}

.main-nav .links-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.main-nav .links-container .language-switch {
  color: #fff;
  font-family: var(--en-regular-font);
  font-size: 24px;
  font-weight: 500;
}

.main-nav .links-container .language-switch + p {
  color: #fff;
  font-family: var(--en-regular-font);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

.main-nav .social-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav .social-links a {
  transition: all 0.3s;
  color: #fff;
  font-size: 20px;
}

.main-nav .social-links a:hover {
  transform: translateY(-4px);
}

@media screen and (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .main-nav .social-links {
    flex-direction: row;
  }
}
