/* =========================================
   Bontoy global footer
   ========================================= */

.bon-site-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #646464;
  font-family: var(--bon-font-main, 'Stratos LC Web', Arial, sans-serif);
}

.bon-site-footer,
.bon-site-footer * {
  box-sizing: border-box;
}

.bon-site-footer__main {
  padding: 58px 0 52px;
  border-top: 1px solid #f0f0f0;
}

.bon-site-footer__layout {
  display: grid;
  grid-template-columns: minmax(150px, .8fr) minmax(0, 4fr);
  align-items: start;
  gap: 70px;
}

.bon-site-footer__brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 28px;
}

.bon-site-footer__logo {
  display: inline-flex;
  align-items: center;
  width: 130px;
  max-width: 100%;
  text-decoration: none;
}

.bon-site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.bon-site-footer__socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.bon-site-footer__socials--mobile {
  display: none;
}

.bon-site-footer__socials--column {
  display: flex;

  margin-top: auto;
  padding-top: 28px;
}

.bon-site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: #a54bd9;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

.bon-site-footer__social:hover,
.bon-site-footer__social:focus {
  color: #a54bd9;
  opacity: .72;
  text-decoration: none;
  transform: translateY(-1px);
  outline: none;
}

.bon-site-footer__social svg {
  display: block;
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  color: currentColor;
}

.bon-site-footer__social svg [stroke]:not([stroke="none"]) {
  stroke: currentColor !important;
}

.bon-site-footer__social svg [fill]:not([fill="none"]) {
  fill: currentColor !important;
}

.bon-site-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;

  gap: 42px;
}

.bon-site-footer__column {
  display: flex;
  flex-direction: column;

  min-width: 0;
  height: 100%;
}

.bon-site-footer__title {
  margin: 0 0 16px;
  color: #a54bd9;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.bon-site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bon-site-footer__list-item {
  margin: 0 0 10px;
  padding: 0;
}

.bon-site-footer__list-item:last-child {
  margin-bottom: 0;
}

.bon-site-footer__link {
  color: #5f5f5f;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
  transition: color .2s ease;
}

.bon-site-footer__link:hover,
.bon-site-footer__link:focus {
  color: #a54bd9;
  text-decoration: none;
  outline: none;
}

.bon-site-footer__bottom {
  min-height: 36px;
  background: #a54bd9;
  color: #ffffff;
}

.bon-site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  gap: 70px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.bon-site-footer__copyright,
.bon-site-footer__tagline {
  display: block;
}

@media (max-width: 991.98px) {
  .bon-site-footer__layout {
    gap: 38px;
  }

  .bon-site-footer__columns {
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .bon-site-footer__main {
    padding: 30px 0 28px;
  }

  .bon-site-footer__layout {
    display: block;
  }

  .bon-site-footer__brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    margin-bottom: 26px;
    gap: 20px;
  }

  .bon-site-footer__logo {
    width: 95px;
  }

  .bon-site-footer__socials {
    justify-content: flex-end;
    gap: 12px;
  }

  .bon-site-footer__socials--mobile {
    display: flex;
  }

  .bon-site-footer__socials--column {
    display: none;

    margin-top: 0;
    padding-top: 0;
  }

  .bon-site-footer__social {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }

  .bon-site-footer__social svg {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
  }

  .bon-site-footer__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;

    column-gap: 28px;
    row-gap: 26px;
  }

  .bon-site-footer__column {
    height: auto;
  }

  .bon-site-footer__title {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .bon-site-footer__list-item {
    margin-bottom: 9px;
  }

  .bon-site-footer__link {
    font-size: 11px;
  }

  .bon-site-footer__bottom,
  .bon-site-footer__bottom-inner {
    min-height: 34px;
  }

  .bon-site-footer__bottom-inner {
    justify-content: space-between;
    gap: 12px;
    font-size: 8px;
    text-align: left;
  }

  .bon-site-footer__tagline {
    flex: 0 0 auto;
    text-align: right;
  }
}

@media (max-width: 374px) {
  .bon-site-footer__brand {
    gap: 14px;
  }

  .bon-site-footer__logo {
    width: 86px;
  }

  .bon-site-footer__columns {
    column-gap: 20px;
  }

  .bon-site-footer__bottom-inner {
    font-size: 7px;
  }
}
