footer {
  background-color: var(--clrAccent);
  color: white;
  padding-top: 50px;
  padding-bottom: 60px;
  font-size: 16px;
  position: relative;
  margin-left: calc(-1*var(--body-side-pad));
  margin-right: calc(-1*var(--body-side-pad));
}
@media screen and (min-width: 768px) {
  footer {
    background-color: var(--clrAccent);
    color: white;
    padding-top: 206px;
    padding-bottom: 167px;
    font-size: 24px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 1440px) {
  footer {
    padding-top: 137px;
    padding-bottom: 137px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1920px) {
  footer {
    padding-top: 206px;
    padding-bottom: 167px;
    font-size: 32px;
  }
}
footer .rowV2 {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  footer .rowV2 {
    flex-direction: row;
  }
}
footer .logo {
  display: none;
}
footer h4 {
  font-size: 24px;
  text-align: center;
  border-top: 1px Solid White;
  border-bottom: 1px Solid White;
  padding: 10px 0;
  margin-top: 10px;
  margin-bottom: 10px;
}
footer .column_footer2 h4 {
  border-top: none;
}
@media screen and (min-width: 768px) {
  footer .logo {
    width: 240px;
    display: inline;
  }
  footer h4 {
    text-align: left;
    font-size: 30px;
    border: none;
  }
}
@media screen and (min-width: 1440px) {
  footer .logo {
    width: 282px;
    display: inline;
  }

  footer h4 {
    font-size: 36px;
  }
}
@media screen and (min-width: 1920px) {
  footer .logo {
    width: 341px;
    display: inline;
  }
  footer h4 {
    font-size: 40px;
  }
}
footer.dark a:hover {
  color: var(--clrLightGray);
}
footer .logo {
  margin-top: -50px;
}
footer .socials {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
footer .socials img {
  width: 48px; height: 48px;
}
@media screen and (min-width: 768px) {
  footer .socials {
    gap: 28px;
    margin-top: 0;
  }
  footer .socials img {
    width: auto; height: auto;
  }
}
@media screen and (min-width: 1440px) {
  footer .socials {
    gap: 38px;
  }
  footer .socials img {
    width: 68px; height: 68px;
  }
}
@media screen and (min-width: 1920px) {
  footer .socials {
    gap: 51px;
  }
  footer .socials img {
    width: 80px; height: 80px;
  }
}



footer ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  footer ul {
    margin-top: 31px;
    gap: 15px;
    font-size: 32px;
    margin-bottom: 0;
  }
}
footer .rowV2 .column_footer1 {
  display: flex; flex-direction: column; gap: 61px;
  align-items: center;
  order: 5;
}

footer .column_footer3 h4 {
  margin-top: 20px;
}
footer .column_footer3 h4.specOffset {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  footer .rowV2 .column_footer1 {
    order: initial;
  }
  footer .column_footer2 {
    width: 440px;
  }

  footer .column_footer3 {
    width: 440px;
  }
  footer .column_footer3 h4.specOffset {
    margin-top: 2rem;
  }
}

/* Онлайн-бот технической поддержки (правая колонка футера): текст сверху, иконка снизу */
footer .footer-support-bot {
  margin-top: 1.25rem;
}
footer .footer-support-bot__link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.875em;
  font-weight: bold;
}
footer .footer-support-bot__link:hover {
  text-decoration: underline;
  color: #fff;
}
footer .footer-support-bot__link:hover .footer-support-bot__text {
  text-decoration: underline;
}
footer .footer-support-bot__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
}
