/*
    - Name: "footer.scss"
    - Description: "Footer custom styles"
*/
/* Media query breakpoints */
.back-top {
  position: fixed;
  bottom: -50px;
  right: 15px;
  z-index: 100;
  cursor: pointer;
}

.rtl.back-top {
  right: auto;
  left: 15px;
}

.back-top:hover .back-top__item {
  background: #ee9982;
}

.back-top:hover .back-top__item svg {
  fill: #fff;
}

.back-top svg {
  fill: #fff;
}

.back-top.show {
  bottom: 15px;
}

.back-top.show.nav_active {
  bottom: 80px;
}

@media only screen and (min-width: 640px) {
  .back-top.nav_active {
    bottom: 90px;
  }
}
.back-top .back-top__item {
  background: rgba(0, 0, 0, 0.6);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 32px;
  transform: rotate(90deg);
}

.back-top .back-top__item svg {
  width: 24px;
}

.back-top__item {
  cursor: pointer;
  opacity: 1;
}

.back-top__item svg {
  fill: #fff;
}

.back-top__item svg .handle {
  transform: translateX(8px);
}

.back-top__item svg .bar {
  opacity: 0;
  transform-origin: left center;
  transform: translateX(16px);
}

.back-top__item:hover .handle {
  transform: translateX(4px);
}

.back-top__item:hover .bar {
  opacity: 1;
  transform: translateX(4px) scale(0.8);
}

.menu--footer {
  margin: 0;
  width: 100%;
  color: var(--white);
  list-style: none;
}
@media (min-width: 768px) {
  .menu--footer {
    font-size: 1rem;
  }
}
@media (min-width: 1420px) {
  .menu--footer {
    font-size: 1.0625rem;
  }
}
.menu--footer ul {
  display: flex;
  margin: 0;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--spacing-xs) var(--spacing-md);
  padding-left: 0;
  list-style: none;
}
@media (max-width: 479px) {
  .menu--footer ul li {
    flex: 0 1 100%;
    text-align: center;
  }
}
.menu--footer a {
  color: var(--white);
  font-family: var(--font-regular);
  font-size: 0.9375rem;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
}
.menu--footer a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: all var(--base-trans);
}
.menu--footer a:hover::after {
  width: 100%;
}

.footer {
  padding: 20px 0;
}
@media (min-width: 992px) {
  .footer {
    padding: var(--spacing-md) 0;
  }
}
.footer .footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer .footer__inner {
    gap: 16px;
  }
}
@media (min-width: 992px) {
  .footer .footer__inner {
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .footer .footer__inner {
    gap: 30px;
  }
}
.footer .c-title {
  width: 100%;
  margin: 0 auto;
}

.page--front .footer {
  padding: 12px 0 var(--spacing-md);
}
@media (min-width: 992px) {
  .page--front .footer {
    padding: 12px 0 var(--spacing-md);
  }
}
/*# sourceMappingURL=footer.css.map */
