/* плашка куки в футере */

.clients-block .swiper-slide-image {
	padding: 0px 32px 0px 32px
}

.accept-cookies-cont {
	display: none;
}

.accept-cookies-cont.active {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 1000;
	background-color: #fff;
	width: 100%;
	padding: 20px 10px;
}

a.accept-cookies-link,
a.accept-cookies-link:hover,
a.accept-cookies-link:visited {
	color: #777af1;
}

.accept-cookies-button {
	margin-left: 30px;
	color: #fff;
	background-color: #777af1;
	border: 0;
	padding: 5px 20px;
}

.accept-cookies-button-mobile {
	display: none;
}

@media (max-width: 700px) {
	.accept-cookies-button {
		display: none;
	}
	
    .accept-cookies-button.accept-cookies-button-mobile {
		display: inline;
	}
}

/* ==========================================
Back to top
========================================== */

.back-to-top {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 50;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--accent-color);
}

.back-to-top__icon {
  display: block;
}

@media (max-width: 767px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  padding: 70px 0 28px;
  background: #f5f5f5;
  color: var(--color-text, #111);
}

.footer a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer a:hover {
  opacity: 0.65;
}

.site-footer {
  margin-top: var(--section-mb);
}

/* ==================== Footer top ==================== */

.footer__top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  padding-bottom: 50px;
}

@media (max-width: 1200px) {
  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 60px;
  }
}

@media (max-width: 767px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
}


/* ==================== Footer columns ==================== */

.footer__column {
  min-width: 0;
}

.footer__column--services .footer__menu {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.footer__column--services .footer__menu .menu-item-has-children > a{
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.footer__column--contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__menu-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__column:not(.footer__column--services) .footer__menu-group + .footer__menu-group {
  margin-top: 38px;
}


/* ==================== Footer titles ==================== */

.footer__title {
  display: inline-block;
  width: fit-content;
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}


/* ==================== Footer menus ==================== */

.footer__menu,
.footer__legal-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__menu-item,
.footer__menu > li {
  margin: 0;
  padding: 0;
}

.footer__menu-link,
.footer__menu a {
  display: inline-block;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

@media (max-width: 767px) {
  .footer__menu {
    gap: 10px;
  }

  .footer__menu-link,
  .footer__menu a {
    font-size: 15px;
  }
}


/* ==================== Footer contacts ==================== */

.footer__column--contacts > .footer__title {
  margin-top: 38px;
}

.footer__socials {
  margin-top: 34px;
}

.footer__socials-title {
  margin-bottom: 16px;
}

.footer__socials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}

.footer__social-link svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer__payments {
  width: 100%;
  max-width: 250px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
}

.footer__payments-image {
  display: block;
  width: 100%;
  height: auto;
}

.footer__rating {
  margin-top: 20px;
}

.footer__rating iframe {
  display: block;
  max-width: 100%;
  border: 0;
}


/* ==================== Footer bottom ==================== */

.footer__bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  padding-top: 30px;
  border-top: 1px solid rgba(17, 17, 17, 0.18);
}

@media (max-width: 768px) {
  .footer__bottom {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
    padding-top: 28px;
  }
}


/* ==================== Footer brand ==================== */

.footer__brand {
  grid-column: 1/3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .footer__brand {
    grid-column: -1/1;
  }
}

.footer__logo {
  display: block;
  width: fit-content;
}

.footer__logo img {
  display: block;
  width: auto;
  max-width: 200px;
  height: auto;
}

.footer__brand-caption {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.45;
}


/* ==================== Footer legal ==================== */

.footer__legal {
  grid-column: 3/5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 430px;
}

@media (max-width: 768px) {
  .footer__legal {
    grid-column: -1/1;
    justify-self: start;
    max-width: none;
  }
}

.footer__copyright {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
}

.footer__legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__legal-links li {
  margin: 0;
}

.footer__legal-links a {
  font-size: 14px;
  line-height: 1.45;
}


/* ==================== WordPress menu cleanup ==================== */

.footer .menu-item {
  list-style: none;
}

.footer .current-menu-item > a,
.footer .current_page_item > a {
  font-weight: 600;
}