.custom-footer-2 {
  padding: 40px 0 48px;
  background-color: var(--primary-bg-color);
  border-top: 1px solid var(--border-color);
}

.custom-footer-2__container {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.custom-footer-2__soc {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: -8px;
}

[dir] .custom-footer-2__soc a {
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .05);
  transition: all .3s ease;
}

[dir] .custom-footer-2__soc a:hover {
  background-color: rgba(0, 0, 0, .075);
}

[dir] .custom-footer-2__soc a:active:focus {
  background-color: rgba(0, 0, 0, .1);
  box-shadow: none;
}

[dir] .custom-footer-2__soc a:focus {
  background-color: rgba(0, 0, 0, .0 .5);
  box-shadow: 0 0 0 2px #0460CC inset, 0 0 0 2px #0000004D inset, 0 0 0 4px #0460CC4D;
}

[dir] .custom-footer-2__soc a img {
  display: block;
  width: 24px;
  height: 24px;
}

.custom-footer-2__apps {
  display: flex;
  align-items: center;
  gap: 14px;
}

[dir] .custom-footer-2__apps a {
  display: block;
  border: none;
  border-radius: 6px;
  background-color: transparent;
  transition: all .3s ease;
}

[dir] .custom-footer-2__apps a:hover {
  background-color: rgba(0, 0, 0, 0.025);
}

[dir] .custom-footer-2__apps a:active:focus {
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: none;
}

[dir] .custom-footer-2__apps a:focus {
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 2px #0460CC inset, 0 0 0 2px #0000004D inset, 0 0 0 4px #0460CC4D;
}

[dir] .custom-footer-2__apps img {
  display: block;
  height: 40px;
}

.custom-footer-2__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-footer-2__menu li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
}

.custom-footer-2__menu li + li::before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  position: absolute;
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
  background-color: currentColor;
}

.custom-footer-2__menu li a {
  transition: all .3s ease;
  font-weight: bold;
}

.custom-footer-2__menu li a:not(:hover) {
  border-color: transparent;
}

.custom-footer-2__copy {
  font-size: 12px;
  line-height: 16px;
  color: var(--tertiary-text-color);
}

@media (min-width: 768px) {
  .custom-footer-2 {
    padding: 64px 0;
  }

  .custom-footer-2__container {
    gap: 32px;
  }
}
