@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --text: #000000;
  --text-muted: rgba(0, 0, 0, 0.7);
  --text-soft: rgba(0, 0, 0, 0.5);
  --text-faint: rgba(0, 0, 0, 0.2);
  --white-soft: rgba(255, 255, 255, 0.68);
  --blue: #0a4ae1;
  --dark: #131313;
  --line: rgba(0, 0, 0, 0.08);
  --radius-sm: 7px;
  --radius-md: 10px;
  --radius-pill: 1000px;
  --container: 1298px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

input,
textarea {
  border: 0;
  outline: none;
  background: transparent;
}

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.page {
  background: var(--bg);
}

.container {
  width: min(100% - 24px, var(--container));
  margin: 0 auto;
}

.container--wide {
  width: min(100% - 24px, 1298px);
}

.section-title {
  font-family: "Roboto", sans-serif;
  font-size: 64px;
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.lang-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang-switcher .lang-item {
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #00000042;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  background: #fff;
  transition: 0.25s ease;
  text-align: center;
}

.lang-switcher .lang-item:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.lang-switcher .lang-item.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.section-title span {
  color: var(--blue);
  display: block;
}

.section-title--stacked,
.section-title--blog,
.section-title--footer {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.section-title--blog {
  align-items: center;
  width: 100%;
  text-align: center;
  margin-bottom: 37px;
}

.section-title--footer {
  font-size: 54px;
  color: var(--blue);
}

.section-title--problems {
  max-width: 1000px;
}

.section-title--reviews {
  max-width: 491px;
}

.section-label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 0.84;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.section-arrows {
  display: flex;
  gap: 4px;
}

.section-arrows--right {
  margin-left: auto;
}

.section-arrows__button {
  position: relative;
  width: 35px;
  height: 35px;
  border: 1px solid var(--blue);
  border-radius: 2px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-arrows__button::before {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.769231 14.5714L15 1M15 1V16M15 1H0' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.section-arrows__button--ghost {
  background: transparent;
}

.section-arrows__button--ghost::before {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.769231 14.5714L15 1M15 1V16M15 1H0' stroke='%23131313' stroke-width='2'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.header {
  position: absolute;
  top: 23px;
  left: 0;
  width: 100%;
  z-index: 10;
  overflow-x: clip;
}

.section-title-2 {
  color: #0a4ae1;
  /* твой цвет */
}

.mob__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.entry-date {
  color: #0000008f;
  margin-bottom: 5px;
  margin-top: 5px;
  display: block;
}

.single-post .entry-date {
  display: none;
}

.single-post .post-thumbnail img {
  height: auto;
  width: auto;
  margin: 0 auto;
  margin-bottom: 30px;
}

.post-thumbnail img {
  border-radius: 7px;
  width: 100%;
  height: 309px;
  object-fit: cover;
}

.archive .entry-content {
  display: none;
}

.archive .entry-title {
  font-size: 25px;
  text-transform: uppercase;
}

.page-title.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.site-main {
  margin-top: 150px;
}

.custom-logo-link {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* .custom-logo-link:after {
  content: '(АВАЛ)';
  font-size: 20px;
  font-weight: 600;
} */

.custom-logo {
  max-width: 50px;

}

.header__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  background: #F5F5F5;
  backdrop-filter: blur(10px);

  a {
    font-weight: 500;
  }
}

.header__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header__brand-image {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  -o-object-fit: cover;
  object-fit: cover;
}

.header__brand-name {
  font-size: 31px;
  font-family: "Roboto", sans-serif;
  line-height: 0.84;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.header__mobile-panel {
  display: none;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  padding-top: 100px;
}

.header__menu ul {
  display: flex;
  gap: 26px;
}

.header__link {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.header__lang {
  display: flex;
  gap: 6px;
}

.header__lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 43px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  font-size: 14px;
}

.header__lang-link--active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  margin-left: auto;
  position: relative;
  z-index: 100;
  border: none;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header--menu-open .header__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header--menu-open .header__burger span:nth-child(2) {
  opacity: 0;
}

.header--menu-open .header__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.body--menu-open {
  overflow: hidden;
}

.hero,
.service-card,
.footer__map,
.contact-cta {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero {
  min-height: 810px;
  /* padding: 480px 0 100px; */
  color: #fff;
  display: flex;
  align-items: center;
}

.hero__content {
  position: relative;
  min-height: 259px;
  /* text-align: center; */
}

.hero__topline {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  max-width: 686px;
  /* justify-content: center; */
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 69px;
  padding: 20px 40px;
  border: 2px solid #fff;
  border-radius: var(--radius-pill);
  font-family: "Roboto", sans-serif;
  font-size: 35px;
  line-height: 0.84;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero__toptext {
  max-width: 173px;
  font-size: 18px;
  line-height: 0.96;
}

.hero__title {
  max-width: 686px;
  margin-bottom: 18px;
  font-family: "Roboto", sans-serif;
  font-size: 64px;
  line-height: 0.84;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 400;
}

.hero__text {
  max-width: 506px;
  font-size: 18px;
  line-height: 0.96;
}

.hero__wrap-2 {
  max-width: 686px;
  /* display: flex;
  /* justify-content: center; */
}

.hero__button {
  position: absolute;
  right: 0;
  bottom: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 243px;
  min-height: 57px;
  padding: 20px 40px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.hero__button:hover {
  background: var(--blue);
  color: #fff;
  transition: 0.25s ease;
}

.problems {
  padding: 73px 0 0;
  background: #fff;
  border-top-right-radius: 30px;
  margin-top: -30px;
  border-top-left-radius: 30px;
}

.problems__wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
}

.problems__heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px 40px;
  align-items: start;
  margin-bottom: 36px;
}

.problems .section-label {
  grid-column: 1/-1;
}

.problems__slider {
  margin: 0 10px;
  max-width: 1000px;
}

.problems__slider .slick-list {
  overflow: hidden;
}

.problems__slider .slick-track {
  display: flex;
}

.problems__slide {
  padding: 0 10px;
}

.problem-card {
  position: relative;
  min-height: 466px;
  padding: 35px 29px 26px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
}

.problem-card__index {
  position: absolute;
  top: 23px;
  right: 25px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.4);
}

.problem-card__title {
  max-width: 320px;
  margin-bottom: 57px;
  font-size: 30px;
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.problem-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 171px;
  margin: 0 auto 73px;
  background: #f0f0f0;
}

.problem-card__icon img {
  max-width: 100%;
  max-height: 100%;
}

.problem-card__text {
  max-width: 234px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--text-muted);
}

.services {
  padding: 97px 0 124px;
  background: var(--bg-soft);
}

.services__heading {
  grid-template-columns: repeat(2, minmax(0, 639px));
  gap: 20px;
  display: grid;
  align-items: end;
  margin-bottom: 45px;
}

.services__lead {
  max-width: 208px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--text-muted);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 639px));
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 292px;
  padding: 24px 29px 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  color: #fff;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 -5px;
  height: 195px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

.service-card__badge {
  position: relative;
  z-index: 1;
  width: 19px;
  height: 18px;
  margin-bottom: 125px;
}

.service-card__body {
  position: relative;
  z-index: 1;
  max-width: 307px;
}

.service-card__title {
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.service-card__text {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--white-soft);
}

.service-card::before {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.769231 14.5714L15 1M15 1V16M15 1H0' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  position: absolute;
  bottom: 16px;
  right: 32px;
  width: 16px;
  height: 16px;
  z-index: 1;
  transform: translateY(-50%);
}

.reviews {
  padding: 119px 0 115px;
  background: #fff;
}

.reviews__heading {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 47px;
  justify-content: space-between;
}

.reviews__grid .slick-track {
  display: flex;
  gap: 20px;
}


.review-card {
  min-height: 421px;
  padding: 35px 30px 22px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
}

.review-card__text {
  max-width: 239px;
  margin-bottom: 160px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: -0.03em;
  color: var(--text-muted);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 19px;
}

.review-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.review-card__name,
.review-card__role {
  display: block;
  font-size: 16px;
  line-height: 1;
  color: var(--text-muted);
}

.review-card__name {
  margin-bottom: 8px;
}

.blog {
  padding: 81px 0 76px;
  background: var(--bg-soft);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 418px));
  gap: 57px 22px;
  margin-bottom: 65px;
}

.blog__actions {
  display: flex;
  justify-content: center;
}

.blog__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 207px;
  min-height: 54px;
  padding: 20px 40px;
  border-radius: var(--radius-pill);
  background: var(--dark);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: lowercase;
}

.blog-card__image {
  width: 100%;
  height: 309px;
  border-radius: var(--radius-sm);
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 11px;
}

.blog-card__date {
  display: block;
  margin-bottom: 11px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--text-soft);
}

.blog-card__title {
  max-width: 327px;
  font-size: 25px;
  font-weight: 500;
  line-height: 0.84;
  text-transform: uppercase;
}

.contact-cta {
  padding: 59px 0 58px;
  color: #fff;
}

.contact-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 639px;
  gap: 18px;
  align-items: center;

  .social__block {
    justify-content: center;
  }
}

.entry-title {
  text-align: center;
}

.contact-cta__phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-cta__content {
  min-height: 693px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 33px;
}

.contact-cta__phone-tag {
  align-self: start;
  margin-bottom: 10px;
  padding: 12px 19px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-pill);
  font-size: 16px;
  line-height: 0.84;
}

.contact-cta__title {
  max-width: 576px;
  margin-bottom: 13px;
  font-family: "Roboto", sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.contact-cta__title span {
  color: var(--blue);
  display: block;
}

.contact-cta__text {
  max-width: 239px;
  margin-bottom: 19px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.contact-cta__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-width: 232px;
  min-height: 57px;
  padding: 20px 40px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.request-card {
  min-height: 693px;
  padding: 66px 64px 62px;
  border-radius: 14px;
  background: #fff;
  color: #000;
}

.request-card__title {
  max-width: 511px;
  margin-bottom: 65px;
  font-family: "Roboto", sans-serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.request-card__title span {
  color: var(--blue);
  display: block;
}

.request-card__field {
  display: block;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

.request-card__label {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgba(0, 0, 0, 0.5);
}

.request-card__input {
  width: 100%;
  min-height: 22px;
}

.request-card__input--textarea {
  min-height: 44px;
  resize: vertical;
}

.request-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 243px;
  min-height: 57px;
  padding: 20px 40px;
  border-radius: var(--radius-pill);
  background: var(--dark);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-cta form {

  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="password"],
  input[type="search"],
  input[type="number"],
  input[type="tel"],
  input[type="range"],
  input[type="date"],
  input[type="month"],
  input[type="week"],
  input[type="time"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="color"],
  textarea {
    border: none;
    border-bottom: 1.5px solid #00000026;
    padding: 20px 10px;
    width: 100%;
  }

  input[type="submit"] {
    background: var(--blue);
    font-size: 16px;
    color: #fff;
    font-family: 'Inter';
    padding: 20px 40px;
    border-radius: 1000px;
    text-transform: uppercase;
    margin-top: 80px;
    cursor: pointer;
    width: 100%;
  }

}

.for-who {
  padding: 88px 0 76px;
  background: #fff;
  background: var(--bg-soft);
}

.for-who__header {
  margin-left: auto;
  max-width: 48%;
  margin-bottom: 43px;
}

.for-who__image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.for-who__image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.for-who__title {
  max-width: 700px;
}

.for-who__list {
  position: relative;
  border-top: 1px solid var(--line);
}

.for-who__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 21px;
  border-bottom: 1px solid var(--line);
}

.for-who__thumb {
  position: absolute;
  top: 50%;
  right: 78px;
  width: 152px;
  height: 178px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  transform: translateY(-50%) translateX(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 2;
}

.for-who__thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.for-who__item:hover .for-who__thumb,
.for-who__item--active .for-who__thumb {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.for-who__item:hover {
  color: var(--bg);
  background: var(--blue);

  .for-who__num {
    color: var(--bg);
  }
}

@media screen and (max-width: 1200px) {
  .for-who__item {
    padding-right: 26px;
  }

  .for-who__thumb {
    display: none;
  }

  .p-about__image {
    max-width: 500px;
  }
}

.for-who__num {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  align-items: end;
  color: rgba(0, 0, 0, 0.6);
}

.for-who__name {
  font-size: 30px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 350px;
  width: 100%;
}

.for-who__desc {
  max-width: 430px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  width: 100%;
}

.for-who__arrow {
  justify-self: end;
  flex-shrink: 0;
}

.includes {
  padding: 94px 0 112px;
  background: #fff;
}

.includes__title {
  margin-bottom: 44px;
}

.includes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.includes-card__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.includes-card {
  min-height: 341px;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 10px;
  /* justify-content: space-between; */
}

.includes-card__num {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
}

.includes-card__title {
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.includes-card__text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text-muted);
}

.includes-card .wrap-2 {
  display: flex;
  gap: 12px;
  justify-content: space-between;

  flex-direction: column;

  /* .includes-card__text {
    max-width: 116px;
  } */
}

.includes-2 {
  .includes__title {
    max-width: 300px;
    margin-bottom: 0;
  }


}


.includes__heading {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: end;
  margin-bottom: 44px;
}

.includes-card__title-2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 100%;
}

.p-about {
  padding: 88px 0 76px;
  background: var(--bg-soft);
}

.p-about .hero__button {
  position: relative;
  background: var(--blue);
  color: #fff;
}

.p-about__image {
  max-height: 700px;
  max-width: 700px;
  object-fit: cover;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--blue);
}

.section-title--about {
  max-width: 500px;
}

.page-id-311,
.page-id-368 {
  .p-about__content {
    max-width: 700px;
  }

  .p-about__image {
    max-height: 500px;
    object-fit: cover;
  }

}

.p-about__text {
  max-width: 296px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  margin-top: 50px;
}

.p-about__wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.video-works {
  padding: 98px 0 88px;
  background: #fff;
}

.video-works__title {
  margin-bottom: 46px;
}

.video-works__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 20px;
  margin-bottom: 56px;
}

.video-card__thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}

.video-card__thumb img {
  width: 100%;
  height: 286px;
  object-fit: cover;
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card__label {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-soft);
}

.video-card__title {
  font-size: 25px;
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.video-works__actions,
.gallery__actions {
  display: flex;
  justify-content: center;
}

.gallery {
  padding: 84px 0 90px;
  background: #fff;
}

.gallery__title {
  margin-bottom: 42px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
  margin-bottom: 58px;
}

.gallery-card__img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
}

.gallery-card__img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-card__caption {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 290px;
}

.footer__contact-phone {
  display: flex;
  align-items: center;
  gap: 4px;
}

.social__block {
  display: flex;
  align-items: center;
  gap: 7px;

  a {
    width: 40px;
    display: flex;
    height: 40px;
    border: 1px solid #8989898a;
    align-items: center;
    justify-content: center;
  }
}

.footer {
  padding: 68px 0 80px;
  background: #fff;
}

.footer__map {
  position: relative;
  min-height: 388px;
  margin-bottom: 105px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer__map-marker {
  position: absolute;
  top: 130px;
  left: 357px;
  width: 49px;
  height: 68px;
}

.footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 177px 205px;
  gap: 48px;
  align-items: start;
}

.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 56px;
  justify-content: space-between;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 229px;
}

.footer__contact-item p,
.footer__contact-item a {
  font-size: 16px;
  line-height: 1.2;
}

.footer__contact-icon {
  width: 24px;
  height: 24px;
  margin-top: 1px;
}

.footer__contact-icon--phone,
.footer__contact-icon--time {
  width: 19px;
  height: 19px;
}

.footer__menu-label {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 0.84;
  color: #d7daf2;
  text-transform: uppercase;
}

.footer__menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 13px 45px;
}

.footer__menu a {
  font-size: 16px;
  line-height: 1.1;
}

.footer__policy {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.footer__policy a {
  font-size: 16px;
  line-height: 1.1;
}

.footer__socials {
  display: flex;
  gap: 7px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  background: #fff;
}

.footer__social img {
  width: 24px;
  height: 24px;
}

.mobile {
  display: none
}

@media screen and (max-width: 1350px) {}

@media screen and (max-width: 1200px) {
  .header {
    position: relative;
    top: 0;
    padding: 16px 0;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 72px 0;
  }

  .hero__button {
    position: static;
    margin-top: 28px;
  }



  .problems__grid,
  .services__grid,
  .blog__grid,
  .video-works__grid,
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .includes__grid {
    grid-template-columns: 1fr 1fr;
  }

  .for-who__item {
    grid-template-columns: 80px 1fr;
    align-items: start;
    row-gap: 12px;
    padding-right: 26px;
  }

  .for-who__item::after {
    display: none;
  }

  .for-who__desc {
    grid-column: 1 / -1;
    max-width: none;
  }

  .for-who__arrow {
    grid-column: 2;
    justify-self: start;
  }

  .contact-cta__grid {
    display: grid;
  }

  .request-card {
    min-height: auto;
  }

  .problems__slider {
    max-width: 900px;
    margin: 0;
  }

  .problems__wrap {
    gap: 20px;
  }
}

@media screen and (max-width: 992px) {

  .footer__bottom {
    grid-template-columns: 1fr 1fr;
  }

  .p-about__wrapper {
    flex-direction: column;
  }

  .p-about__text,
  .section-title--about {
    max-width: 100%;
  }

  .p-about__image {
    max-width: 100%;
    margin: 0 auto;
  }


  .footer__contacts {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer__contacts {
    gap: 24px;
  }

  .section-title,
  .hero__title,
  .request-card__title,
  .contact-cta__title {
    font-size: 46px;
  }

  .header__panel {
    position: relative;
  }

  .header__burger {
    display: inline-flex;
  }

  .header__mobile-panel {
    position: fixed;
    top: -16px;
    right: -100%;
    width: min(86vw, 360px);
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 44px 20px 24px;
    margin-left: 0;
    background: #fff;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.16);
    transition: right 0.25s ease;
    z-index: 30;
  }

  .header--menu-open .header__mobile-panel {
    display: flex;
    overflow-y: scroll;
  }

  .header__panel-desk {
    display: none;
  }

  .header__menu ul {
    flex-direction: column;
    margin-top: 70px;
    font-size: 30px;
  }

  .header__nav {
    width: 100%;
  }

  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .header__link {
    font-size: 22px;
    line-height: 1.1;
  }

  .header__lang {
    margin-top: auto;
  }

  .header--menu-open .header__mobile-panel {
    right: 0;
  }

  .hero__topline {
    flex-direction: column;
    align-items: flex-start;
  }


  .for-who__name,
  .includes-card__title,
  .video-card__title {
    font-size: 24px;
  }

  .video-card__thumb img,
  .gallery-card__img img {
    height: 260px;
  }

  .contact-cta__content {
    min-height: auto;
    border-radius: 14px;
    background: #fff;
    color: #000;
    text-align: center;
    padding: 40px 24px;
  }

  .contact-cta__phone-tag {
    display: none;
  }

  .contact-cta__title,
  .contact-cta__text,
  .request-card__title {
    max-width: 100%;
  }

  .contact-cta__call {
    margin: 0 auto;
    background: var(--blue);
    color: #fff;
  }

  .request-card {
    padding: 40px 24px 20px;
    text-align: center;
  }

  .footer__map-marker {
    left: 30%;
  }

  .problems__wrap:has(.slick-list) {
    flex-direction: column;
  }

  .problems .section-label {
    order: 1;
  }

  .contact-cta__grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .header__brand-name {
    font-size: 24px;
  }

  .mobile {
    display: flex;
  }

  .desk {
    display: none !important;
  }

  .for-who__header {
    margin-left: 0;
    max-width: 100%;
  }

  .wrap__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-top: 28px;
  }

  .hero__toptext {
    display: flex;
    align-items: center;
    gap: 11px;
  }

  .hero__button {
    min-width: 193px;
    min-height: 45px;
    font-size: 14px;
    padding: 15px 20px;
    margin-top: 0;
    max-width: 205px;

  }

  .hero__toptext:before {
    content: '';
    background: url(../img/location.svg) no-repeat center;
    width: 16px;
    height: 20px;
    display: inline-block;
    flex-shrink: 0;
    background-size: contain;
  }

  .services__grid,
  .blog__grid,
  .includes__grid,
  .video-works__grid,
  .gallery__grid {
    grid-template-columns: 1fr;
  }


  .problems__heading,
  .reviews__heading,
  .contact-cta__grid,
  .for-who__header {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .section-title,
  .hero__title,
  .request-card__title,
  .contact-cta__title {
    font-size: 34px;
  }

  .hero__pill {
    min-width: auto;
    min-height: unset;
    padding: 10px 20px;
    font-size: 15px;
  }

  .header {
    position: relative;
    top: 0;
    padding: 0;
    background: #F5F5F5;
  }

  .problem-card,
  .review-card,
  .service-card,
  .includes-card {
    min-height: auto;
  }

  .for-who,
  .includes,
  .video-works,
  .gallery {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .for-who__item {
    padding: 18px 16px;
  }

  .for-who__name {
    font-size: 21px;
  }

  .for-who__desc,
  .includes-card__text,
  .gallery-card__caption {
    font-size: 12px;
  }

  .problem-card__icon {
    margin-bottom: 32px;
  }

  .review-card__text {
    margin-bottom: 48px;
  }

  .blog-card__image {
    height: 240px;
  }

  .footer__contacts {
    flex-direction: column;
  }

  .footer__menu {
    grid-template-columns: 1fr 1fr;
  }

  .custom-logo-link:after {
    font-size: 12px;
  }

  .custom-logo-link {
    gap: 10px;
  }

  .custom-logo {
    max-width: 30px;
  }

  .for-who__item .mobile {
    flex-direction: column;
    gap: 14px;
  }

  .for-who__item {
    padding: 18px 0px;
    gap: 20px;
  }

  .for-who__num {
    font-size: 12px;
  }

  .includes-card__num {
    font-size: 14px;
  }

  .includes-card__title-2 {
    font-size: 20px;
  }

  .p-about__text {
    font-size: 12px;
    max-width: 50%;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

@media screen and (max-width: 576px) {

  .container,
  .container--wide {
    width: min(100% - 20px, var(--container));
  }

  .header__panel {
    padding: 12px;
  }

  .header__mobile-panel {
    width: 100%;
    max-width: none;
    padding: 184px 16px 20px;
  }

  .header__link {
    font-size: 20px;
  }

  .hero {
    padding: 148px 0 50px;
  }

  .hero__toptext,

  .services__lead {
    font-size: 12px;
  }

  .hero__text {
    max-width: 240px;
    font-size: 12px;
  }

  .service-card__title {
    max-width: 200px;
    font-size: 25px;
  }

  .service-card::before {
    bottom: 25px;
  }

  .review-card__text {
    font-size: 12px;
  }

  .section-title--blog {
    align-items: start;
  }

  .service-card__text {
    max-width: 200px;
    font-size: 12px;
  }

  .hero__toptext {
    font-size: 10px;
  }

  .blog-card__title {
    font-size: 20px;
  }

  .blog-card__date,
  .contact-cta__text {
    font-size: 12px;
  }

  .contact-cta__text {
    max-width: 150px;
    margin: 0 auto;
    margin-bottom: 18px;
    text-align: center;
  }

  .contact-cta form {
    input[type="submit"] {
      margin-top: 50px;
    }
  }

  .contact-cta__call {
    padding: 10px 20px;
    font-size: 12px;
  }

  .footer__contact-item p,
  .footer__contact-item a {
    font-size: 12px;
  }

  .footer {
    padding: 68px 0 40px;
  }

  .section-label {
    font-size: 12px;
  }

  .problem-card__title {
    max-width: 210px;
    margin-bottom: 57px;
    font-size: 25px;
    font-weight: 600;
  }

  .problem-card__text {
    font-size: 12px;
    max-width: 190px;
  }

  .for-who__title,
  .includes__title,
  .video-works__title,
  .gallery__title {
    margin-bottom: 24px;
  }

  .video-works__grid,
  .gallery__grid {
    gap: 20px;
    margin-bottom: 36px;
  }

  .video-card__thumb img,
  .gallery-card__img img {
    height: 220px;
  }

  .hero__button,
  .contact-cta__call,
  .request-card__button,
  .blog__button {
    width: 100%;
  }

  .footer__map {
    min-height: 260px;
    margin-bottom: 48px;
  }

  .footer__map-marker {
    width: 36px;
    height: 48px;
    top: 84px;
  }

  .header__menu .menu-item>a {
    display: flex;
    align-items: center;
    justify-content: end;
    text-transform: uppercase;
  }

  .header__menu ul {
    gap: 0px;
  }

  .mob__wrap {
    margin-top: 50px;
  }

  .header__menu .sub-menu a {
    font-size: 20px;
  }

  .footer__contacts {
    margin-top: 25px;
  }
}



/* ПО МЕНЮ */

/* Основні стилі для меню */
.header__menu .dlist {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menu .menu-item {
  position: relative;
}

/* Стилі для посилань */
.header__menu .menu-item>a {
  /* display: block; */
  padding: 15px 18px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.header__menu .menu-item:hover>a {
  color: #007bff;
  /* або ваш основний колір */
}

/* Субменю */
.header__menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  border-radius: 4px;
  flex-direction: column;
}

.header__menu .menu-item:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Елементи субменю */
.header__menu .sub-menu .menu-item {
  margin: 0;
}

.header__menu .sub-menu a {
  padding: 10px 20px;
  white-space: nowrap;
}

.header__menu .sub-menu a:hover {
  background: #f8f9fa;
  color: #007bff;
}

/* Стрілочка для батьківського пункту (опціонально) */
.header__menu .menu-item-has-children>a:after {
  content: " ▼";
  font-size: 10px;
  margin-left: 5px;
  opacity: 0.7;
}

/* Якщо потрібно підтримка на мобільних */
@media (max-width: 992px) {
  .header__menu .sub-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    /* буде відкриватися по кліку через JS */
  }

  .header__menu .menu-item:hover>.sub-menu {
    display: block;
  }
}

.header__menu .menu-item-has-children.active>.sub-menu {
  display: block;
}

/* MODAL */

.aval-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
}

.aval-gallery-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.aval-gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  transition: opacity .28s ease;
}

.aval-gallery-modal.is-open .aval-gallery-modal__backdrop {
  opacity: 1;
}

.aval-gallery-modal__dialog {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aval-gallery-modal__media {
  width: 100%;
  text-align: center;
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .32s ease, opacity .32s ease;
  will-change: transform, opacity;
  touch-action: pan-y;
}

.aval-gallery-modal.is-open .aval-gallery-modal__media {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.aval-gallery-modal__img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  user-select: none;
  -webkit-user-drag: none;
  margin: 0 auto;
}

.aval-gallery-modal__caption {
  margin-top: 14px;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  opacity: .95;
}

.aval-gallery-modal__close,
.aval-gallery-modal__nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s ease, transform .2s ease;
}

.aval-gallery-modal__close:hover,
.aval-gallery-modal__nav:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%) scale(1.05);
}

.aval-gallery-modal__close {
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}

.aval-gallery-modal__close:hover {
  transform: scale(1.05);
}

.gallery-card {
  cursor: pointer;
}

.aval-gallery-modal__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 34px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  z-index: 3;
}

.aval-gallery-modal__nav--prev {
  left: 12px;
}

.aval-gallery-modal__nav--next {
  right: 12px;
}

body.aval-gallery-lock {
  overflow: hidden;
}

@media (max-width: 767px) {
  .aval-gallery-modal__dialog {
    padding: 20px 16px;
  }

  .aval-gallery-modal__nav {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .aval-gallery-modal__caption {
    font-size: 14px;
  }
}

.p-about-3 .p-about__text {
  max-width: 100%;
}


.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  /* или нужная тебе высота */
  display: flex;
  align-items: center;
}

/* Видео на весь фон */
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Fallback-картинка */
.hero__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Затемнение поверх видео (как был градиент) */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.72) 78%, rgba(0, 0, 0, 0.92) 100%);
  z-index: 1;
}

/* Контент поверх всего */
.hero__content {
  position: relative;
  z-index: 2;
}

/*# sourceMappingURL=main.css.map */