.footer {
  background-color: #F2F1F0; }
  .footer__top {
    display: flex;
    padding-top: 4rem;
    padding-bottom: 4rem;
    gap: 2.4rem; }
    @media (max-width: 1099px) {
      .footer__top {
        flex-direction: column;
        padding: 36px 0px;
        gap: 36px; } }
    @media (max-width: 767px) {
      .footer__top {
        padding: 24px 0px 16px;
        gap: 0; } }
  .footer__mid {
    display: flex;
    justify-content: space-between;
    padding: 1.6rem 0px;
    gap: clamp(1.6rem, 3.2rem, 4.8rem);
    border-top: 1px solid #DFDFDF; }
    @media (max-width: 1099px) {
      .footer__mid {
        flex-direction: column;
        padding: 16px 0;
        gap: 16px; } }
  .footer__bottom {
    padding: 1.6rem 0;
    border-top: 1px solid #DFDFDF; }
    @media (max-width: 1099px) {
      .footer__bottom {
        flex-direction: column;
        padding: 16px 0; } }
    @media (max-width: 767px) {
      .footer__bottom .footer-grid {
        gap: 8px; } }
  .footer__left {
    flex: 0 0 auto; }
    @media (max-width: 1099px) {
      .footer__left {
        width: auto;
        display: grid;
        justify-content: space-between;
        padding: 0; } }
    @media (max-width: 767px) {
      .footer__left {
        margin-bottom: 0px;
        gap: 24px;
        grid-template-columns: 1fr; } }
  .footer__right {
    display: flex; }
    @media (max-width: 1099px) {
      .footer__right {
        width: auto;
        padding: 0;
        padding-top: 24px;
        border-top: 1px solid #DFDFDF; } }
    @media (max-width: 767px) {
      .footer__right {
        padding-top: 16px;
        border-top: none; } }
  .footer__payment {
    display: flex;
    gap: clamp(1.6rem, 0.8rem, 2.4rem); }
    .footer__payment > [id^='bx_incl_area'] {
      display: flex; }
    @media (max-width: 1099px) {
      .footer__payment {
        width: 100%;
        justify-content: space-between;
        gap: 24px; } }
    @media (max-width: 767px) {
      .footer__payment {
        gap: 8px; } }
  .footer__payment-item {
    display: flex;
    align-items: center;
    justify-content: center; }
    @media (max-width: 1099px) {
      .footer__payment-item {
        max-width: 65px; } }
  .footer__description {
    max-width: 89rem;
    line-height: 1.2; }
    @media (max-width: 1249px) {
      .footer__description {
        max-width: 56rem; } }
    @media (max-width: 1099px) {
      .footer__description {
        max-width: 100%; } }

.footer-grid {
  width: 75%;
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(3, 1fr); }
  @media (max-width: 1249px) {
    .footer-grid {
      gap: 16px; } }
  @media (max-width: 1099px) {
    .footer-grid {
      width: 100%;
      gap: 24px; } }
  @media (max-width: 767px) {
    .footer-grid {
      gap: 12px;
      grid-template-columns: 1fr; } }

@media (max-width: 1249px) {
  .footer-nav {
    width: 100%; } }

@media (max-width: 767px) {
  .footer-nav {
    padding: 0px;
    border-bottom: 1px solid #DFDFDF; }
    .footer-nav.active .footer-nav__title .icon {
      transform: rotate(180deg); } }

.footer-nav__title {
  margin-top: -1px;
  margin-bottom: 2.4rem; }
  @media (max-width: 767px) {
    .footer-nav__title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0px;
      margin-bottom: 12px;
      padding: 0; } }
  @media (min-width: 768px) {
    .footer-nav__title .icon {
      display: none; } }
  @media (max-width: 767px) {
    .footer-nav__title .icon {
      display: flex;
      fill: #AEB6BE; } }

.back-to-top {
  position: fixed;
  z-index: 20;
  bottom: 6.5rem;
  right: 4rem;
  width: 5.6rem;
  height: 5.6rem;
  display: flex;
  visibility: hidden;
  opacity: 0;
  align-items: center;
  justify-content: center;
  transition: opacity .3s ease, background-color .3s ease, visibility .3s ease;
  transform: rotate(180deg);
  fill: #fff;
  border-radius: 50%;
  background-color: var(--theme-base-color); }
  @media (max-width: 1099px) {
    .back-to-top {
      bottom: 120px;
      right: 20px;
      width: 40px;
      height: 40px; } }
  .back-to-top .icon {
    max-width: 28px;
    max-height: 28px; }
  .back-to-top.active {
    visibility: visible;
    opacity: 1; }
  @media (hover: hover) {
    .back-to-top {
      cursor: pointer; }
      .back-to-top:hover {
        background-color: var(--theme-base-color-light); } }
  .back-to-top:active {
    background-color: var(--theme-base-color-dark); }
