.footer-dark {
  padding: 80px 0 50px;
  color: #f0f9ff;
  background-color: #282d32;
  position: relative;
  margin-top: 100px;
}

.footer-dark::before {
  content: '';
  position: absolute;
  background-image: url(../../assets/img/design-csik.png?h=614b5e21569ab669d948a2871110331b);
  width: 100%;
  height: 45px;
  background-repeat: repeat-x;
  top: -1px;
  z-index: 1;
  transform: rotate(180deg);
}

.footer-dark h3 {
  font-family: 'Anton';
  color: var(--bs-primary);
  text-shadow: 1px 1px 4px black;
}

.footer-dark ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
}

.footer-dark ul a, .footer-dark .copyright a {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
}

.footer-dark ul a:hover, .footer-dark .copyright a:hover {
  opacity: 0.8;
}

.footer-dark .item:not(.social) i {
  margin-right: 6px;
}

.footer-dark .item:not(.social) {
  padding: 10px 10px 0;
}

@media (min-width: 1200px) {
  .footer-dark .item.social {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.footer-dark .item.social > a {
  font-size: 20px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
  margin: 5px;
  color: #fff;
  opacity: 0.75;
  transition: all 0.3s;
}

.footer-dark .item.social > a:hover {
  opacity: 1;
  box-shadow: 0 0 0 1px white;
}

.footer-dark .copyright {
  text-align: center;
  padding: 20px 0;
}

.footer-dark .copyright p {
  text-align: center;
  margin-bottom: 0;
}

.footer-dark .copyright img {
  width: 25px;
  height: auto;
  vertical-align: bottom;
}

.footer-dark .item:not(.item.social) a {
  display: inline-block;
}

.footer-dark .item:not(.item.social) a::after {
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-property: all;
  transition-property: all;
  background: var(--bs-primary);
  content: "";
  display: block;
  height: 1px;
  width: 0;
  margin: 0 auto;
}

.footer-dark .item:not(.item.social) a:hover::after {
  width: 100%;
}

