@charset "UTF-8";
/*!
# Base
--------------------------------------------------------------*/
:root {
  --primary: #CDF756;
  --secondary: #23ff86;
  --tertiary: #ffa331;
  --hover-pr: #00053b;
  --hover-sec: #00b33c;
  --hover-ter: #cc8400;
  --text-primary: #CDF756;
  --text-w: #fff;
  --text: #0F172B;
  --link: #89d202;
  --link-hover: #6ca502;
  --link-visited: #071943;
  --link-ui: #071943;
  --link-ui-hover: #6ca502;
  --primary-button-bg: linear-gradient(90deg, #CDF756 0%, #C9F453 20%, #C5F14F 40%, #C0EF4B 60%, #BCEC48 80%, #B8E944 100%);
  --primary-button-bg-hover: #000000;
  --primary-button-border: #CDF756;
  --primary-button-border-hover: #000000;
  --primary-button-color: #0F172B;
  --primary-button-color-hover: white;
  --secondary-button-bg: #23ff86;
  --secondary-button-bg-hover: #00b33c;
  --secondary-button-border: #23ff86;
  --secondary-button-border-hover: #00b33c;
  --secondary-button-color: #071943;
  --secondary-button-color-hover: white;
  --tertiary-button-bg: #ffa331;
  --tertiary-button-bg-hover: #cc8400;
  --tertiary-button-border: #ffa331;
  --tertiary-button-border-hover: #cc8400;
  --tertiary-button-color: #071943;
  --tertiary-button-color-hover: white;
  --white: white;
  --border: #EDF1FA;
  --dark: #242F42;
  --item: #F8FBFF;
  --secondary-item: #E3EFFF;
  --gradient-one: linear-gradient(90deg, #EEF4FB 0%, #EFF5ED 100%);
  --gradient-two: linear-gradient(90deg, #EEF4FB 0%, rgba(175, 255, 148, 0.231372549) 100%);
  --gradient-three: linear-gradient(135deg, #f6faf9 0%, #f9fbf4 100%);
  --body-bg: #F5F5F5;
  --body-dark-bg: #151515;
  --success: #2E7D32;
  --warning: #ED6C02;
  --danger: #D32F2F;
  --info: #0288D1;
  --header__bg-top: #f8fbff;
  --header__bg-main: rgb(255, 255, 255);
  --header_bg-bottom: #f8fbff;
  --footer__bg: #0F172B;
  --footer__color: #CDCDCD;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
  --sh-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --sh-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --sh-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --sh-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --sh-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.section--flex {
  display: flex;
  align-items: center;
}

section {
  opacity: 0;
  transform: translateY(16px);
  animation: sectionFadeIn 0.8s ease forwards;
}

@keyframes sectionFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  section {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
main {
  min-height: 100vh;
}

.container {
  max-width: 1468px;
  margin: 0 auto;
}
@media (max-width: 1468px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 576px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

body {
  background-color: var(--body-bg);
  background-image: url("https://www.solarggroup.com.ua/wp-content/uploads/2026/05/page-bg.webp");
  font-family: "Mulish", sans-serif;
}

embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5em;
  font-size: 0.95em;
  line-height: 1.4;
}

thead {
  background: rgba(0, 0, 0, 0.04);
}

th,
td {
  padding: 0.6em 0.8em;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-align: left;
  vertical-align: top;
}

th {
  font-weight: 600;
  background: rgba(0, 0, 0, 0.03);
}

tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}

caption {
  caption-side: bottom;
  margin-top: 0.5em;
  font-size: 0.85em;
  opacity: 0.7;
}

.table-wrap {
  overflow-x: auto;
}

.search-block {
  position: relative;
  width: 100%;
  flex: 0 1 auto;
  max-width: 460px;
}

#searchform {
  width: 100%;
}
#searchform .search-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
#searchform .search-wrapper input[type=search] {
  width: 100%;
  height: 44px;
  padding: 0 44px 0 14px;
  border: 1px solid #dfdfdf;
  border-radius: 4px;
  outline: none;
  font-size: 14px;
  font-weight: 300;
  background: var(--white);
  transition: border-color 0.3s ease;
}
#searchform .search-wrapper input[type=search]:focus {
  border-color: var(--primary);
}
#searchform .search-wrapper #searchsubmit {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  color: #666;
}
#searchform .search-wrapper #searchsubmit .icon {
  width: 20px;
  height: 20px;
  pointer-events: none;
  transition: color 0.3s ease;
}
#searchform .search-wrapper #searchsubmit:hover .icon {
  color: var(--primary);
}

.search-suggestions {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid #ccc;
  border-radius: 8px;
  z-index: 20;
  padding: 8px 8px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.search-suggestions.is-open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search-suggestions .search-empty {
  text-align: center;
}
.search-suggestions .search-suggestions__close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  background: transparent;
  color: var(--text);
}
.search-suggestions .search-suggestions__close:hover {
  color: var(--primary);
}
.search-suggestions .i-load {
  display: none;
  font-size: 18px;
}
.search-suggestions.is-loading .i-load {
  display: inline-block;
  margin: auto;
  animation: spin 0.8s linear infinite;
}
.search-suggestions .search-suggestions__body {
  max-height: 300px;
  overflow-y: auto;
}
.search-suggestions .search-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.search-suggestions .search-list .search-item {
  width: 100%;
}
.search-suggestions .search-list .search-item a {
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.search-suggestions .search-list .search-item a img {
  max-width: 82px;
  height: 48px;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
}
.search-suggestions .search-list .search-item a:hover {
  background-color: var(--gray-100);
  color: var(--primary);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.tabs {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  margin: 40px auto;
}
.tabs .tabs__tablist {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}
.tabs [role=tab] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  padding: 14px 24px;
  border-radius: 100px;
  cursor: pointer;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 400;
  color: #4b5563;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tabs [role=tab] img {
  max-width: 24px;
}
.tabs [role=tab]:focus-visible {
  outline: 2px solid #cbfc34;
  outline-offset: 2px;
}
.tabs [role=tab][aria-selected=true] {
  background: #cbfc34;
  color: #111827;
}
.tabs [role=tab][aria-selected=false]:hover {
  color: #111827;
  background: #f9fafb;
}
.tabs .tabs__panel {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.tabs .tabs__panel[hidden] {
  display: none;
}
.tabs .tabs__panel p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 16px 0;
}
.tabs .tabs__panel p:last-of-type {
  margin-bottom: 24px;
}
.tabs .tabs__panel strong, .tabs .tabs__panel b {
  color: #111827;
  font-weight: 600;
}
.tabs .tabs__panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.tabs .tabs__panel ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.5;
}
.tabs .tabs__panel ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #9ca3af;
  border-radius: 50%;
}
.tabs .tabs__panel img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .tabs .tabs__panel {
    grid-template-columns: 1fr;
  }
  .tabs .tabs__panel img {
    min-height: auto;
    max-height: 400px;
  }
}
@media (max-width: 768px) {
  .tabs {
    padding: 24px;
    border-radius: 16px;
  }
  .tabs [role=tab] {
    padding: 12px 20px;
    font-size: 14px;
  }
}

a {
  color: var(--link);
}
a:visited {
  color: var(--link-visited);
}
a:hover, a:focus, a:active {
  color: var(--link-hover);
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

.link-ui {
  color: var(--link-ui);
  text-decoration: none;
}
.link-ui:hover, .link-ui:focus, .link-ui:active {
  color: var(--link-ui-hover);
}
.link-ui:focus {
  outline: thin dotted;
}
.link-ui:hover, .link-ui:active {
  outline: 0;
}

.secondary-btn,
.secondary-button, .btn-inline,
.btn,
button,
.button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-radius: 50px;
  background: transparent;
  color: inherit;
  line-height: auto;
  padding: 18px 24px;
  cursor: pointer;
  pointer-events: auto;
  margin: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  font-family: "e-Ukraine" !important;
  font-weight: 400;
  font-size: 16px;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.secondary-btn .icon,
.secondary-button .icon, .btn-inline .icon,
.btn .icon,
button .icon,
.button .icon,
input[type=button] .icon,
input[type=reset] .icon,
input[type=submit] .icon {
  width: 20px;
  height: 20px;
}
.secondary-btn:focus-visible,
.secondary-button:focus-visible, .btn-inline:focus-visible,
.btn:focus-visible,
button:focus-visible,
.button:focus-visible,
input[type=button]:focus-visible,
input[type=reset]:focus-visible,
input[type=submit]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.btn-inline,
.btn,
button,
.button,
input[type=button],
input[type=reset],
input[type=submit] {
  border-color: var(--primary-button-border);
  background: var(--primary-button-bg);
  color: var(--primary-button-color);
}
.btn-inline:visited,
.btn:visited,
button:visited,
.button:visited,
input[type=button]:visited,
input[type=reset]:visited,
input[type=submit]:visited {
  color: var(--primary-button-color);
}
.btn-inline:hover,
.btn:hover,
button:hover,
.button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: var(--primary-button-bg-hover);
  color: var(--primary-button-color-hover);
  background: var(--primary-button-bg-hover);
}
.btn-inline:active, .btn-inline:focus,
.btn:active,
.btn:focus,
button:active,
button:focus,
.button:active,
.button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: var(--primary-button-border);
  color: var(--primary-button-color-hover);
  background: var(--primary-button-bg-hover);
}

.secondary-btn,
.secondary-button {
  font-weight: 300;
  border-color: var(--secondary-button-border);
  background: var(--secondary-button-bg);
  color: var(--secondary-button-color);
}
.secondary-btn:visited,
.secondary-button:visited {
  color: var(--secondary-button-color);
}
.secondary-btn:hover,
.secondary-button:hover {
  border-color: var(--secondary-button-bg-hover);
  color: var(--secondary-button-color-hover);
  background: var(--secondary-button-bg-hover);
}
.secondary-btn:active, .secondary-btn:focus,
.secondary-button:active,
.secondary-button:focus {
  border-color: var(--secondary-button-border);
  color: var(--secondary-button-color-hover);
  background: var(--secondary-button-bg);
}

.wpcf7 p {
  margin: 0;
}
.wpcf7 .wpcf7-form p > br {
  display: none;
}
.wpcf7 .cf7-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 992px) {
  .wpcf7 .cf7-grid-3 {
    grid-template-columns: 1fr;
  }
}
.wpcf7 .cf7-grid-3 .btn {
  width: 100%;
  height: 100%;
  min-height: 54px;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  position: relative;
  width: 100%;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 input[type=url],
.wpcf7 input[type=number],
.wpcf7 input[type=date],
.wpcf7 input[type=password],
.wpcf7 textarea,
.wpcf7 select {
  display: block;
  width: 100%;
  padding: 16px 16px 16px 48px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.wpcf7 input[type=text]::-moz-placeholder, .wpcf7 input[type=email]::-moz-placeholder, .wpcf7 input[type=tel]::-moz-placeholder, .wpcf7 input[type=url]::-moz-placeholder, .wpcf7 input[type=number]::-moz-placeholder, .wpcf7 input[type=date]::-moz-placeholder, .wpcf7 input[type=password]::-moz-placeholder, .wpcf7 textarea::-moz-placeholder, .wpcf7 select::-moz-placeholder {
  color: #9ca3af;
  font-weight: 300;
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 input[type=url]::placeholder,
.wpcf7 input[type=number]::placeholder,
.wpcf7 input[type=date]::placeholder,
.wpcf7 input[type=password]::placeholder,
.wpcf7 textarea::placeholder,
.wpcf7 select::placeholder {
  color: #9ca3af;
  font-weight: 300;
}
.wpcf7 input[type=text]:hover,
.wpcf7 input[type=email]:hover,
.wpcf7 input[type=tel]:hover,
.wpcf7 input[type=url]:hover,
.wpcf7 input[type=number]:hover,
.wpcf7 input[type=date]:hover,
.wpcf7 input[type=password]:hover,
.wpcf7 textarea:hover,
.wpcf7 select:hover {
  border-color: #d1d5db;
}
.wpcf7 input[type=text]:focus, .wpcf7 input[type=text]:focus-visible,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=email]:focus-visible,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=tel]:focus-visible,
.wpcf7 input[type=url]:focus,
.wpcf7 input[type=url]:focus-visible,
.wpcf7 input[type=number]:focus,
.wpcf7 input[type=number]:focus-visible,
.wpcf7 input[type=date]:focus,
.wpcf7 input[type=date]:focus-visible,
.wpcf7 input[type=password]:focus,
.wpcf7 input[type=password]:focus-visible,
.wpcf7 textarea:focus,
.wpcf7 textarea:focus-visible,
.wpcf7 select:focus,
.wpcf7 select:focus-visible {
  border-color: var(--primary);
}
.wpcf7 input[type=text]:disabled,
.wpcf7 input[type=email]:disabled,
.wpcf7 input[type=tel]:disabled,
.wpcf7 input[type=url]:disabled,
.wpcf7 input[type=number]:disabled,
.wpcf7 input[type=date]:disabled,
.wpcf7 input[type=password]:disabled,
.wpcf7 textarea:disabled,
.wpcf7 select:disabled {
  background: #f3f4f6;
  color: #6b7280;
  cursor: not-allowed;
}
.wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
  padding-left: 16px;
}
.wpcf7 .wpcf7-form-control-wrap[data-name=your-name]::before,
.wpcf7 .wpcf7-form-control-wrap[data-name=your-tel]::before,
.wpcf7 .wpcf7-form-control-wrap[data-name=your-email]::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-color: var(--primary);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: var(--svg);
  -webkit-mask-image: var(--svg);
  z-index: 2;
  pointer-events: none;
  transition: background-color 0.3s ease;
}
.wpcf7 .wpcf7-form-control-wrap[data-name=your-name]:focus-within::before,
.wpcf7 .wpcf7-form-control-wrap[data-name=your-tel]:focus-within::before,
.wpcf7 .wpcf7-form-control-wrap[data-name=your-email]:focus-within::before {
  background-color: var(--text);
}
.wpcf7 .wpcf7-form-control-wrap[data-name=your-name] {
  --svg: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22M8%207a4%204%200%201%200%208%200a4%204%200%200%200-8%200M6%2021v-2a4%204%200%200%201%204-4h4a4%204%200%200%201%204%204v2%22%2F%3E%3C%2Fsvg%3E");
}
.wpcf7 .wpcf7-form-control-wrap[data-name=your-tel] {
  --svg: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M6.62%2010.79c1.44%202.83%203.76%205.15%206.59%206.59l2.2-2.2c.28-.28.67-.36%201.02-.25c1.12.37%202.32.57%203.57.57a1%201%200%200%201%201%201V20a1%201%200%200%201-1%201A17%2017%200%200%201%203%204a1%201%200%200%201%201-1h3.5a1%201%200%200%201%201%201c0%201.25.2%202.45.57%203.57c.11.35.03.74-.25%201.02z%22%2F%3E%3C%2Fsvg%3E");
}
.wpcf7 .wpcf7-form-control-wrap[data-name=your-email] {
  --svg: url("data:image/svg+xml,...");
}
.wpcf7 .wpcf7-not-valid {
  border-color: #ef4444 !important;
}
.wpcf7 .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #ef4444;
  position: absolute;
  bottom: -18px;
  left: 0;
}
.wpcf7 .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  margin: 0;
}
.wpcf7 .wpcf7-response-output {
  margin: 24px 0 0 0 !important;
  padding: 16px !important;
  border-radius: 4px;
  font-size: 14px;
  grid-column: 1/-1;
}
.wpcf7 form.sent .wpcf7-response-output {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}
.wpcf7 input:is(:-webkit-autofill, :-webkit-autofill) {
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: var(--text) !important;
  border: 1px solid var(--primary) !important;
}
.wpcf7 input:is(:autofill, :-webkit-autofill) {
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: var(--text) !important;
  border: 1px solid var(--primary) !important;
}

.wpcf7-submit {
  border-radius: 12px !important;
  font-size: 15px !important;
}
@media (max-width: 567px) {
  .wpcf7-submit {
    width: 100% !important;
  }
}

body,
button,
input,
select,
optgroup,
textarea {
  color: var(--text);
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

ul,
ol {
  margin: 0 0 1em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: "e-Ukraine";
}

h1 {
  font-size: clamp(2.875rem, 4.6vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: clamp(2.375rem, 3.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: clamp(1.875rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: clamp(1.375rem, 2.2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
}

h5 {
  font-size: clamp(1.125rem, 1.8vw, 1.25rem);
  font-weight: 500;
  line-height: 1.4;
}

h6 {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.site-header {
  display: block;
}

.main-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.6vw, 2rem);
  border-bottom: 1px solid #EDF1FA;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px;
  background: var(--header__bg-main);
}

.site-branding img {
  max-width: 180px;
}

.site-title a {
  text-decoration: none;
  color: var(--link-pr);
  font-size: clamp(1.125rem, 1.8vw, 1.25rem);
  font-weight: 400;
}
.site-title a:hover {
  color: var(--hover-pr);
}

.wp-nav-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-navigation > ul {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.full-menu--btn {
  background: transparent;
  position: relative;
  padding: 0;
  display: inline-block;
  border: transparent;
}
.full-menu--btn .icon {
  background: var(--primary);
  width: 24px;
  height: 24px;
}

.full-menu__content {
  transform: translateX(-250px);
}
.full-menu__content--visible .full-menu__content__content {
  transform: translateX(0);
  opacity: 1;
}

.phone-dropdown {
  display: none;
  position: absolute;
  background: var(--white);
  box-shadow: var(--sh-md);
  padding: 0.5em;
  z-index: 99;
  border-radius: 8px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-btn:hover .phone-dropdown {
  display: block;
}

.phone-btn {
  font-size: 17px;
  font-weight: 600;
}

.phone-btn, .phone-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5em;
  text-decoration: none;
  color: var(--text);
}
.phone-btn .icon, .phone-dropdown-item .icon {
  width: 20px;
  height: 20px;
  transition: all ease 0.3s;
}

.phone-icon {
  width: 16px;
  height: 16px;
}

.contact-btn:hover .icon {
  transform: rotate(180deg);
}

.beadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  padding: 4px;
  font-size: 14px;
  overflow-x: auto;
}
.beadcrumbs a {
  text-decoration: none;
}

.hero-main__beadcrumbs {
  background: #EDF1FA;
}

.hero-secondary__beadcrumbs {
  justify-content: flex-start;
  align-items: flex-start;
}

.home .beadcrumbs {
  display: none;
}

.trp-language-switcher > div {
  border: none;
  z-index: 999;
}
.trp-language-switcher > div a {
  color: var(--f-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.trp-language-switcher > div a:hover {
  color: var(--accent);
}

.trp-ls-shortcode-current-language {
  width: 80px !important;
}

.fixed_header {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.6901960784);
  backdrop-filter: blur(10px);
  z-index: 999;
  margin: 0 auto;
  max-width: 1920px;
  width: 100%;
  border-bottom: 1px solid rgb(219, 219, 219);
  transition: top 0.4s ease;
}

.hide {
  top: -100px;
}

.go-top {
  position: fixed;
  right: 124px;
  bottom: 24px;
  z-index: 999;
  border-radius: 50%;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  background: #111;
  color: var(--f-white);
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.go-top svg {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
  fill: white;
  flex-shrink: 1;
  display: block;
}
.go-top:visited {
  color: var(--white);
}
.go-top:hover {
  background: var(--primary);
}
.go-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.go-top:focus-visible {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #EDF1FA;
}

.mobile-menu__content-modal nav {
  padding-block: 2rem;
}
.mobile-menu__content-modal ul#primary-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu__content-modal ul#primary-menu li {
  padding: 6px;
}
.mobile-menu__content-modal #site-navigation {
  position: relative;
  overflow: hidden;
}
.mobile-menu__content-modal .menu-item-has-children {
  position: static;
}
.mobile-menu__content-modal .sub-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background: #fff;
  z-index: 10;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  flex-direction: column;
  gap: 1rem;
  box-shadow: none;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
}
.mobile-menu__content-modal .sub-menu li {
  padding: 6px;
}
.mobile-menu__content-modal .menu-item.is-open > .sub-menu.is-open-panel {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu__content-modal .menu-item-has-children:hover > .sub-menu,
.mobile-menu__content-modal .menu-item-has-children:focus-within > .sub-menu {
  transform: translateX(100%);
  visibility: hidden;
}
.mobile-menu__content-modal .menu-item.is-open:hover > .sub-menu.is-open-panel,
.mobile-menu__content-modal .menu-item.is-open:focus-within > .sub-menu.is-open-panel {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu__content-modal .submenu_icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  transition: transform 0.2s ease;
  transform: rotate(270deg) !important;
}
.mobile-menu__content-modal .menu-item-has-children.is-open > a .submenu_icon {
  transform: rotate(180deg) !important;
}
.mobile-menu__content-modal .mobile-back {
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}
.mobile-menu__content-modal .mobile-overview {
  border-bottom: 1px solid #eee;
}
.mobile-menu__content-modal .mobile-overview a {
  padding: 15px;
  display: block;
  font-weight: 600;
}

.social_share {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9999;
  --size: 56px;
  --gap: 10px;
  --bg: #111;
  --fg: #fff;
  --btn-bg: #1f2937;
}
.social_share .share__cb {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.social_share .share__fab {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--fg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.social_share .share__fab .icon {
  transition: transform 0.25s ease;
  display: inline-block;
}
.social_share .share__fab:active {
  transform: scale(0.96);
}
.social_share .share__list {
  position: absolute;
  inset: auto 0 calc(var(--size) + 0px) 0;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.social_share .share__list > li {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(0) scale(0.8);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.25s ease;
  transition-delay: calc(var(--i) * 30ms);
}
.social_share .share__btn {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--btn-bg);
  color: var(--fg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.social_share .share__cb:checked ~ .share__list {
  pointer-events: auto;
}
.social_share .share__cb:checked ~ .share__list > li {
  transform: translateY(calc(-1 * var(--i) * (var(--size) + var(--gap)))) scale(1);
  opacity: 1;
}
.social_share .share__cb:checked + .share__fab .icon {
  transform: rotate(180deg);
}
.social_share .share__btn:hover {
  filter: brightness(1.1);
  transform: translateZ(0);
}
@media (prefers-reduced-motion: reduce) {
  .social_share .share__list > li, .social_share .share__fab, .social_share .share__fab .icon {
    transition: none;
  }
}

.button-catalog__inner {
  position: relative;
}

.service-header__nav {
  display: none;
  position: absolute;
  width: 100vh;
}
.service-header__nav ul {
  list-style: none;
  margin: 0;
  padding: 12px;
  background: var(--white);
  box-shadow: var(--sh-md);
  border-radius: 8px;
}
.service-header__nav ul li {
  padding: 8px 12px;
}
.service-header__nav ul li a {
  text-decoration: none;
}

.button-catalog__inner:hover .service-header__nav {
  display: block;
  z-index: 99;
}

.mobile-header {
  display: none;
}

@media (max-width: 768px) {
  .main-header {
    display: none;
  }
  .mobile-header {
    display: flex;
    background: var(--white);
  }
}
.footer {
  background: var(--footer__bg);
  color: var(--footer__color);
  margin-top: 120px;
  display: block;
}

.footer__inner {
  padding-top: 60px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 992px) {
  .footer__top {
    grid-template-columns: 3fr 7fr;
    gap: 64px;
  }
}
@media (min-width: 1200px) {
  .footer__top {
    grid-template-columns: 320px 1fr;
    gap: 120px;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__brand-link {
  display: block;
  max-width: 220px;
}
.footer__brand-img {
  width: 100%;
  height: auto;
  display: block;
}
.footer__brand-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--footer__color);
}
.footer__brand-text p {
  margin: 0;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 576px) {
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.footer-nav__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav__title {
  font-size: 14px;
  font-weight: 300;
  color: var(--primary);
  margin: 0;
}
.footer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 2px solid #333333;
}
.footer-nav .menu-item {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.footer-nav .menu-item a {
  display: block;
  padding-left: 16px;
  font-size: 14px;
  color: var(--footer__color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav .menu-item a:hover {
  color: var(--primary);
}
.footer-nav .menu-item.current-menu-item {
  color: var(--primary) !important;
}
.footer-nav .menu-item.current-menu-item::before, .footer-nav .menu-item:hover::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--primary);
}

.footer__bottom {
  margin-top: 64px;
  padding-block: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 992px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
}
@media (min-width: 992px) {
  .footer-bottom-nav__list {
    justify-content: flex-start;
  }
}
.footer-bottom-nav .menu-item a {
  font-size: 14px;
  color: #A0A0A0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom-nav .menu-item a:hover {
  color: #CDF756;
}

.footer__copyright {
  font-size: 14px;
  color: #A0A0A0;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 8%;
}
.contact-footer .footer-form, .contact-footer .contact-info {
  padding: 42px;
  background: var(--white);
  box-shadow: var(--sh-md);
  border-radius: 8px;
}
@media (max-width: 992px) {
  .contact-footer .footer-form, .contact-footer .contact-info {
    padding: 12px;
  }
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 9.6px + 2vw, 48px);
  align-items: center;
}
@media (min-width: 992px) {
  .footer-form {
    grid-template-columns: 4fr 6fr;
  }
}
.footer-form__col {
  width: 100%;
}
.footer-form__col h3 {
  margin: 0;
  font-size: clamp(24px, 5vw, 32px);
}
.footer-form form {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .footer-form form {
    flex-direction: column;
  }
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .contact-info {
    grid-template-columns: repeat(4, 1fr);
  }
}
.contact-info__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.contact-info__item .icon {
  width: 48px;
  height: 48px;
}
@media (max-width: 567px) {
  .contact-info__item {
    flex-direction: row;
    align-items: center;
    margin-block: 12px;
  }
  .contact-info__item .icon {
    width: 32px;
    height: 32px;
  }
}
.contact-info__text {
  font-size: 20px;
  font-weight: 500;
}
.contact-info__text a {
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.3s ease;
}
.contact-info__text a:hover {
  color: var(--link-hover);
}

.contact-footer__socials {
  padding: 24px;
  box-shadow: var(--sh-md);
  background: var(--white);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
}
.contact-footer__socials ul {
  gap: 24px;
}

.site {
  display: grid;
  grid-template-columns: 25% auto;
  grid-template-areas: "header header" "sidebar main" "footer footer";
}

.site-header {
  grid-area: header;
}

.site-main {
  grid-area: main;
  overflow: hidden; /* Resolves issue with <pre> elements forcing full width. */
}

.widget-area {
  grid-area: sidebar;
}

.site-footer {
  grid-area: footer;
}

.no-sidebar .site {
  display: grid;
  grid-template-columns: auto;
  grid-template-areas: "header" "main" "footer";
}

.site {
  display: grid;
  grid-template-columns: auto 25%;
  grid-template-areas: "header header" "main sidebar" "footer footer";
}

.site-header {
  grid-area: header;
}

.site-main {
  grid-area: main;
  overflow: hidden; /* Resolves issue with <pre> elements forcing full width. */
}

.widget-area {
  grid-area: sidebar;
}

.site-footer {
  grid-area: footer;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
.faq__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}
.faq__desc {
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
}
.faq__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
}
.faq__item {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  background: #fff;
}
.faq__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.faq__accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
}
.faq__accordion summary::-webkit-details-marker {
  display: none;
}
.faq__accordion summary .faq__icon {
  transition: transform 0.3s ease;
  margin-right: 0.5rem;
  font-size: 1.2rem;
}
.faq__accordion[open] .faq__icon {
  transform: rotate(45deg);
}
.faq__answer {
  padding: 0 1.5rem 1rem;
  animation: fade-in 0.3s ease;
}
.faq__answer [itemprop=text] {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-single {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-single__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-single[style*="--hero-bg"] .hero-single__bg {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-single__picture, .hero-single__img {
  width: 100%;
  height: 100%;
}
.hero-single__picture {
  display: block;
}
.hero-single__img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.02);
}
.hero-single__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}
.hero-single__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .hero-single__inner {
    align-items: flex-start;
  }
}
.hero-single .container {
  position: relative;
  z-index: 2;
}
.hero-single__title {
  margin: 0;
  color: #fff;
}
.hero-single__subtitle {
  margin-top: 12px;
  max-width: 900px;
  color: inherit;
}
.hero-single__desc {
  margin-top: 16px;
  max-width: 900px;
  color: inherit;
}
.hero-single__desc * {
  color: inherit;
}
.hero-single .kama_breadcrumbs a {
  text-decoration: none;
  color: var(--white);
}
.hero-single .kama_breadcrumbs .kb_title {
  color: #c0c0c0;
}
.hero-single--simple {
  min-height: auto;
  padding: 60px 0 40px;
  background-color: var(--white);
}
.hero-single--simple .hero-single__overlay {
  display: none;
}
.hero-single--simple .hero-single__inner,
.hero-single--simple .hero-single__title,
.hero-single--simple .hero-single__subtitle,
.hero-single--simple .hero-single__desc {
  color: #1a1a1a;
}
.hero-single--simple .hero-single__meta {
  color: #646970;
}
.hero-single--simple .kama_breadcrumbs {
  color: #646970;
}
.hero-single--simple .kama_breadcrumbs a {
  color: #1a1a1a;
}
.hero-single--simple .kama_breadcrumbs a:hover {
  text-decoration: underline;
}

.hero--slider {
  margin-top: 32px;
}
.hero--slider .hero-splide {
  width: 100%;
  max-width: 1820px;
  margin: auto;
}
.hero--slider .hero__media {
  position: relative;
}
.hero--slider .hero__media .hero__bg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 24px;
  max-height: 700px;
  height: 100%;
}
.hero--slider .hero__media .hero__bg--desk {
  display: block;
}
.hero--slider .hero__media .hero__bg--mob {
  display: none;
}
@media (max-width: 467px) {
  .hero--slider .hero__media .hero__bg--desk {
    display: none;
  }
  .hero--slider .hero__media .hero__bg--mob {
    display: block;
  }
}
.hero--slider .hero__media video.hero__bg {
  background: #000;
}
.hero--slider .hero__overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  border-radius: 24px;
}
.hero--slider .hero-slide__content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  padding: 68px 78px;
  display: inline-flex;
}
@media (max-width: 767px) {
  .hero--slider .hero-slide__content {
    padding: 24px 12px 72px;
  }
}
.hero--slider .content--clm {
  position: relative;
  display: flex;
  flex-direction: column;
}
.hero--slider .content--clm .hero__title {
  margin: 0;
  font-size: clamp(3.625rem, 5.8vw, 3.75rem);
  color: var(--text-w);
}
.hero--slider .content--clm .hero__desc {
  font-size: clamp(1.125rem, 1.8vw, 1.25rem);
  padding: 0;
  margin: 0;
  color: var(--text-w);
}
.hero--slider .content--clm .button, .hero--slider .content--clm button {
  margin-top: auto;
  padding: 12px 42px;
}
@media (max-width: 767px) {
  .hero--slider .content--clm .button, .hero--slider .content--clm button {
    font-size: 14px;
    padding: 12px 28px;
    width: 100%;
  }
}
.hero--slider .hero__extra {
  margin-top: 1rem;
  max-width: 640px;
  max-height: 440px;
}
.hero--slider .hero__extra img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .hero--slider .hero__extra {
    display: none;
  }
}
.hero--slider .splide__arrows {
  position: absolute;
  bottom: 3em;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hero--slider .splide__arrow {
  background: var(--primary);
  border-color: var(--primary);
}
.hero--slider .splide__arrow:hover {
  background-color: var(--secondary);
}
.hero--slider .splide__arrow svg {
  fill: var(--text);
  width: 1em !important;
}
.hero--slider .splide__arrow--prev {
  left: 5em;
  bottom: 5em;
}
.hero--slider .splide__arrow--next {
  left: 14em;
  bottom: 5em;
}
.hero--slider .splide__pagination {
  bottom: 2em;
  left: 7em;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .hero--slider .splide__pagination {
    left: 8em;
  }
}
.hero--slider .splide__pagination__page.is-active {
  background: var(--primary);
}
.hero--slider .splide__pagination__page {
  background: white;
}
@media (max-width: 767px) {
  .hero--slider .splide__arrow--prev {
    left: 1em;
  }
  .hero--slider .splide__arrow--next {
    right: 1em !important;
    left: auto;
  }
}

.hero-splide__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-splide__arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-arrow {
  /* твой внешний вид кнопок */
}

.hero-splide__pagination {
  display: flex;
  gap: 8px;
}

.hero--slider .splide__track {
  overflow: hidden;
}

.tax-filter {
  margin-block: 2rem;
  background-color: var(--white);
  border-radius: 50px;
  padding: 12px 24px;
}
.tax-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tax-filter__item {
  margin: 0;
}
.tax-filter__link {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  color: var(--text-main);
  background-color: var(--bg-pre);
  border: 1px solid var(--border-input);
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}
.tax-filter__link:hover {
  background-color: var(--bg-screen);
  border-color: var(--border-abbr);
  transform: translateY(-1px);
}
.tax-filter__link:active {
  transform: translateY(0);
}
.tax-filter__link.is-active, .tax-filter__link.active_cat {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--text);
}
.tax-filter__link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .tax-filter {
    margin-top: 14px;
  }
  .tax-filter__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    margin-bottom: -6px;
    scrollbar-width: none;
  }
  .tax-filter__list::-webkit-scrollbar {
    display: none;
  }
  .tax-filter__link {
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 12px;
  }
}

.title-section {
  margin-block: 2rem;
}
.title-section__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.title-section__flex {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
.title-section__pre {
  display: block;
  margin: 0 0 0.5rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.875rem;
  line-height: 1;
}
.title-section__title {
  margin: 0 0 0.5rem;
  line-height: 1.2;
  font-size: clamp(26px, 5vw, 32px);
  font-weight: 500;
}
.title-section__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}
.title-section__text p {
  margin: 0 0 0.75em;
}
.title-section__text p:last-child {
  margin-bottom: 0;
}
.title-section--center {
  text-align: center;
}
.title-section--narrow {
  max-width: 60ch;
  margin-inline: auto;
}

.title-section.text-center {
  text-align: center;
}
.title-section.text-center .title-section__inner {
  align-items: center !important;
  text-align: center;
}

.tb-one {
  padding-block: clamp(24px, 4vw, 56px);
}

.tb-one__inner {
  display: grid;
  grid-template-columns: minmax(280px, 560px) minmax(320px, 1fr);
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
}

.tb-one__media {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.tb-one__media img,
.tb-one__media picture,
.tb-one__media figure {
  display: block;
  width: 100%;
}

.tb-one__media img {
  height: clamp(220px, 26vw, 320px);
  -o-object-fit: cover;
     object-fit: cover;
}

.tb-one__content {
  max-width: 720px;
}

.tb-one__text {
  margin-top: 0;
  margin-bottom: 18px;
  max-width: 680px;
}

.tb-one__actions {
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .tb-one__inner {
    grid-template-columns: 1fr 1fr;
  }
  .tb-one__media img {
    height: clamp(200px, 30vw, 300px);
  }
}
@media (max-width: 768px) {
  .tb-one__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tb-one__content {
    max-width: none;
  }
  .tb-one__media img {
    height: 240px;
  }
}
@media (max-width: 420px) {
  .tb-one__media {
    border-radius: 12px;
  }
  .tb-one__media img {
    height: 210px;
  }
}
.grid-list {
  padding-block: clamp(24px, 4vw, 56px);
}

.grid-list__inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

/* карточка: тянется, но не больше 4 в ряд */
.grid-list__item {
  flex: 1 1 calc((100% - 3 * clamp(14px, 2vw, 24px)) / 4);
  min-width: 220px; /* чтобы не становились слишком узкими */
}

/* media */
.grid-list__media {
  border-radius: 12px;
  overflow: hidden;
}

.grid-list__media img,
.grid-list__media picture,
.grid-list__media figure {
  display: block;
  width: 100%;
}

.grid-list__media img {
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.grid-list__title {
  margin: 10px 0 6px;
  font-weight: 600;
  font-size: 16px;
}

.grid-list__text {
  margin: 0;
  opacity: 0.85;
  text-align: center;
}

/* 3 в ряд */
@media (max-width: 1100px) {
  .grid-list__item {
    flex-basis: calc((100% - 2 * clamp(14px, 2vw, 24px)) / 3);
  }
}
/* 2 в ряд */
@media (max-width: 768px) {
  .grid-list__item {
    flex-basis: calc((100% - 1 * clamp(14px, 2vw, 24px)) / 2);
  }
  .grid-list__media img {
    height: 170px;
  }
}
/* 1 в ряд */
@media (max-width: 420px) {
  .grid-list__item {
    flex-basis: 100%;
    min-width: 0;
  }
  .grid-list__media img {
    height: 190px;
  }
}
.masonry {
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .masonry {
    padding: 80px 0;
  }
}
.masonry__grid {
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (min-width: 640px) {
  .masonry__grid {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (min-width: 1024px) {
  .masonry__grid {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.masonry__item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--gray-100);
  box-shadow: var(--sh-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 1024px) {
  .masonry__item {
    margin-bottom: 24px;
  }
}
.masonry__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.masonry__item:hover img {
  transform: scale(1.05);
}
.masonry__link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.masonry img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.list-one {
  padding-block: clamp(24px, 4vw, 56px);
}

.list-one__inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 20px);
  margin: 0;
  padding: 0;
}

/* элемент */
.list-one__item {
  flex: 1 1 calc(50% - clamp(12px, 2vw, 20px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #f6f9fc;
}

/* номер */
.list-one__num {
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

/* текст */
.list-one__title {
  flex: 1;
}

/* mobile */
@media (max-width: 768px) {
  .list-one__item {
    flex-basis: 100%;
  }
}
.lt-block__top {
  display: grid;
  grid-template-columns: minmax(280px, 620px) minmax(320px, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
}

.lt-block__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lt-block__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f6f9fc;
}

.lt-block__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #7fb36a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  overflow: hidden;
}

.lt-block__icon img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.lt-block__item-title {
  font-weight: 600;
}

.lt-block__media {
  border-radius: 14px;
  overflow: hidden;
}

.lt-block__media img,
.lt-block__media picture,
.lt-block__media figure {
  display: block;
  width: 100%;
}

.lt-block__media img {
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
}

/* BOTTOM WYSIWYG */
.lt-block__bottom {
  margin-top: clamp(18px, 3vw, 28px);
  max-width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
  .lt-block__top {
    grid-template-columns: 1fr 1fr;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .lt-block__top {
    grid-template-columns: 1fr;
  }
  .lt-block__media img {
    height: 260px;
  }
}
.acf-tabs__tablist,
.acf-tabs__panel {
  background: var(--bg-secondary);
  padding: 12px;
  border-radius: 12px;
}
.acf-tabs__tablist .acf-tabs__tab,
.acf-tabs__panel .acf-tabs__tab {
  background: white;
}

.post-grid__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.hero-main {
  background-color: #f4f5f7;
  background-size: 200%;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 60px 20px 250px;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-main {
    padding: 180px 20px 550px;
    background-size: cover;
  }
}
.hero-main__content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero-main__content h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: #191c26;
  margin: 0;
}
.hero-main__content p {
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 600;
  line-height: 1.6;
  color: #1c1c1c;
  margin: 0;
}
.hero-main__content a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #CDF756;
  color: #292929;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: filter 0.3s ease;
}
.hero-main__content a:hover {
  filter: brightness(0.9);
}

.advantages_one {
  margin-top: -20px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5254901961);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 38px 48px;
  gap: 48px;
}
@media (max-width: 1024px) {
  .advantages_one {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
  }
}

.advantages__intro {
  max-width: 340px;
  font-size: 16px;
  line-height: 1.5;
  color: #5c626a;
  margin: 0;
}
@media (max-width: 1024px) {
  .advantages__intro {
    max-width: 100%;
  }
}

.advantages__grid {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .advantages__grid {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.advantages__item {
  flex: 1;
  padding-left: 40px;
  border-left: 1px solid #e1e4e8;
}
.advantages__item:first-child {
  padding-left: 0;
  border-left: none;
}
@media (max-width: 1200px) {
  .advantages__item {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .advantages__item {
    flex: 0 0 calc(50% - 15px);
    border-left: none;
    padding-left: 0;
  }
}

.advantages__title {
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1;
}

.advantages__text {
  font-size: 14px;
  color: #5c626a;
  margin: 0;
}

.advantages-two {
  padding: 80px 0;
  background: linear-gradient(135deg, #e9f5f5 0%, #f6faee 50%, #fff0e4 100%);
}

.advantages-two__inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.advantages-two__left {
  flex: 0 0 45%;
  position: sticky;
  top: 0px;
  height: -moz-fit-content;
  height: fit-content;
}
.advantages-two__left button {
  margin-top: 1rem;
}
@media (max-width: 991px) {
  .advantages-two__left {
    position: static;
    top: auto;
    height: auto;
  }
}

.advantages-two__heading {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 800;
  margin: 0;
}

.advantages-two__right {
  flex: 0 0 50%;
}

.advantages-two__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.adv-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.adv-card__media {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: #f0f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-card__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}

.adv-card__title {
  font-size: 17px;
  font-weight: 600;
  color: #0b1c24;
  margin: 0;
}

.adv-card__text {
  font-size: 15px;
  color: #6c7d85;
}

@media (max-width: 991px) {
  .advantages-two__inner {
    flex-direction: column;
    gap: 40px;
  }
  .advantages-two__left,
  .advantages-two__right {
    flex: 0 0 100%;
    width: 100%;
  }
  .advantages-two__heading {
    font-size: 32px;
  }
}
.advantages-three {
  padding-block: 80px;
}
.advantages-three__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}
.advantages-three__item {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.advantages-three__item:nth-child(even) {
  transform: translateY(40px);
}
.advantages-three__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.advantages-three__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
}
.advantages-three__desc {
  color: #161616;
  line-height: 1.6;
  font-size: 17px;
  font-weight: 500;
}
.advantages-three__desc p {
  margin: 0;
}
@media (max-width: 992px) {
  .advantages-three__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }
  .advantages-three__item:nth-child(even) {
    transform: translateY(40px);
  }
}
@media (max-width: 576px) {
  .advantages-three {
    padding: 60px 0;
  }
  .advantages-three__list {
    grid-template-columns: 1fr;
    margin-top: 32px;
    gap: 20px;
  }
  .advantages-three__item:nth-child(even) {
    transform: translateY(0);
  }
}

.hub-link__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(340px + 10vw), 1fr));
  gap: calc(20px + 1vw);
  width: 100%;
}
.hub-link .hub-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  box-shadow: var(--sh-sm);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  padding: 0;
}
.hub-link .hub-card__content {
  padding: calc(16px + 1vw);
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  z-index: 3;
}
.hub-link .hub-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hub-link .hub-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.hub-link .hub-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hub-link .hub-card__title {
  font-size: calc(18px + 0.2vw);
  font-weight: 500;
  margin: 0;
}
.hub-link .hub-card__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hub-link .hub-card__link {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  background: var(--gradient-one);
  color: var(--text);
  padding: 16px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: background 0.3s ease;
  position: relative;
}
.hub-link .hub-card__link .icon {
  width: 12px;
  height: 12px;
}
.hub-link .hub-card__link::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 10px;
}
.hub-link .hub-card__link:hover {
  background: var(--gradient-two);
  color: var(--text);
}
.hub-link .hub-card__link:hover::before {
  background-color: var(--text);
}

.hub-card__bottom {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: -130px;
  z-index: 1;
}

.hl_card-action {
  background: var(--white) !important;
  border-radius: 4px !important;
  padding: 16px !important;
  border: 1px solid var(--text) !important;
  margin-right: 24px;
  margin-bottom: 24px;
  font-size: 15px !important;
  font-weight: 300 !important;
}

.hs {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  overflow: hidden;
  padding-bottom: 38px;
}
@media (min-width: 992px) {
  .hs {
    flex-direction: row;
    align-items: stretch;
  }
}

.hs__content {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
  width: 100%;
}
@media (min-width: 992px) {
  .hs__content {
    width: 55%;
    padding-left: 8%;
  }
}
.hs__content .beadcrumbs {
  margin-bottom: 24px;
}
.hs__content h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 20px 0;
  line-height: 1.2;
}
.hs__content p {
  font-size: 16px;
  line-height: 1.6;
  color: #313539;
  margin: 0 0 40px 0;
  max-width: 748px;
}
@media (max-width: 767px) {
  .hs__content button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.hs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin: 40px 0 0 0;
  padding: 32px 0 0 0;
  list-style: none;
  border-top: 1px solid #e5e7eb;
}

.hs__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hs__item-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  line-height: 1;
}

.hs__item-text {
  font-size: 14px;
  color: #5c626a;
  margin: 0;
}

.hs__media {
  position: relative;
  width: 100%;
  min-height: 400px;
}
@media (min-width: 992px) {
  .hs__media {
    width: 45%;
    min-height: 600px;
  }
}
.hs__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .hs__media img {
    border-bottom-left-radius: 260px;
  }
}

.ttib__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 42px);
  flex-wrap: wrap;
  padding-block: 4rem;
}
.ttib__inner-col {
  flex: 1;
  min-width: 380px;
}
.ttib__inner-col img {
  border-radius: 12px;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ttib.img_left .ttib__inner {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .ttib.img_left .ttib__inner {
    flex-direction: column;
  }
}

.ttlit {
  padding-block: 2rem;
}
@media (max-width: 768px) {
  .ttlit {
    padding-block: 1rem;
  }
}
.ttlit__inner {
  display: flex;
  gap: 42px;
}
@media (max-width: 768px) {
  .ttlit__inner {
    flex-direction: column;
    gap: 1rem;
  }
}
.ttlit__col--content {
  flex: 1;
}
.ttlit__list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-block: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ttlit__list > li:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
@media (max-width: 768px) {
  .ttlit__list {
    grid-template-columns: 1fr;
  }
  .ttlit__list > li:last-child:nth-child(odd) {
    grid-column: auto;
  }
}
.ttlit__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 12px;
  padding: 16px;
  background-color: var(--white);
  border: 0.5px solid #e5e7eb;
}
.ttlit__item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.4;
}
.ttlit__item-title::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: #eff6ff;
  display: inline-block;
}
.ttlit__item-text {
  font-size: 15px;
  color: #2d2d2d;
  margin: 0;
  line-height: 1.6;
  padding-left: 20px;
}
.ttlit__col--img {
  flex: 0 0 40%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.ttlit__col--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .ttlit__col--img img {
    height: 340px;
  }
}

.tticb {
  position: relative;
  padding-block: 180px;
  background: linear-gradient(to right, #f4fbf7 0%, #ffffff 100%);
  overflow: hidden;
}
.tticb__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  z-index: 1;
}
.tticb__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 300px;
  border-bottom-left-radius: 300px;
}
.tticb__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 38px;
  align-items: center;
}
.tticb__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tticb__title {
  font-size: clamp(32px, 4vw, 42px);
  margin: 0;
}
.tticb__text {
  color: #4b5563;
  font-size: 17px;
}
.tticb__text p {
  margin: 0 0 16px 0;
}
.tticb__text p:last-child {
  margin-bottom: 0;
}
.tticb__cards {
  display: flex;
  gap: 24px;
}
.tticb__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  width: calc(50% - 12px);
  max-width: 260px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
}
.tticb__card:nth-child(2) {
  transform: translateY(30px);
}
.tticb__card:nth-child(3) {
  transform: translateY(60px);
}
.tticb__card-img {
  width: 80px;
  height: 80px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}
.tticb__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tticb__card-title {
  font-size: 18px;
  margin: 0 0 12px 0;
}
.tticb__card-text {
  font-size: 15px;
  line-height: 1.5;
  color: #6b7280;
}
.tticb__card-text p {
  margin: 0;
}
@media (max-width: 1200px) {
  .tticb__bg {
    width: 40%;
  }
  .tticb__bg img {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }
}
@media (max-width: 992px) {
  .tticb {
    padding: 60px 0;
  }
  .tticb__bg {
    display: none;
  }
  .tticb__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tticb__content {
    max-width: 100%;
  }
  .tticb__card {
    width: calc(33.333% - 16px);
  }
  .tticb__card:nth-child(2), .tticb__card:nth-child(3) {
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .tticb__card {
    width: calc(50% - 12px);
  }
}
@media (max-width: 480px) {
  .tticb__cards {
    flex-direction: column;
    align-items: center;
  }
  .tticb__card {
    width: 100%;
    max-width: 100%;
  }
}

.lead-section {
  padding: 60px 0;
}

.lead-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  padding: 42px;
  margin: 0 auto;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
}

.lead-block__img {
  flex: 0 0 35%;
  max-width: 450px;
}

.lead-block__img img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.lead-info {
  flex: 0 0 55%;
  padding-left: 40px;
}
.lead-info .phone-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #d1dcdb;
  padding-bottom: 1rem;
}
.lead-info .phone-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lead-info .phone-list a {
  text-decoration: none;
  color: var(--text);
}
.lead-info .phone-list a:hover {
  color: var(--primary);
}

.title_lead {
  font-size: 46px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 24px 0;
}

.text_lead {
  font-size: 18px;
  color: #333333;
  margin: 0 0 20px 0;
}

.lead-contacts {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 20px;
  display: inline-block;
  margin-bottom: 30px;
}
.lead-contacts form {
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lead-form {
  margin-top: 20px;
}

@media (max-width: 991px) {
  .lead-section .container {
    flex-direction: column;
    text-align: center;
    padding: 42px 24px;
  }
  .lead-block__img {
    margin-bottom: 33px;
    flex: 0 0 100%;
  }
  .title_lead {
    text-align: left;
    font-size: 32px;
  }
  .text_lead {
    text-align: left;
    font-size: 17px;
    margin-bottom: 1rem;
  }
  .lead-info {
    flex: 0 0 100%;
    padding-left: 0;
  }
  .lead-contacts {
    display: block;
    border-bottom: none;
    padding-bottom: 0;
  }
  .lead-contacts form {
    flex-direction: column;
  }
}
.steps {
  padding-block: 64px;
  background: var(--gradient-three);
}
.steps__list {
  display: flex;
  flex-direction: column;
  gap: 42px;
  position: relative;
  margin: 0 auto;
}
.steps__item {
  width: calc(50% - 20px);
  position: relative;
}
.steps__item:nth-child(odd) {
  align-self: flex-start;
}
.steps__item:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 110%;
  width: 80px;
  height: calc(50% + 20px);
  border-top: 1px solid #dcdfe4;
  border-right: 1px solid #dcdfe4;
  border-top-right-radius: 12px;
  z-index: 1;
}
.steps__item:nth-child(even) {
  align-self: flex-end;
}
.steps__item:nth-child(even)::after {
  content: "";
  position: absolute;
  bottom: 0%;
  right: 110%;
  width: 80px;
  height: calc(50% + 20px);
  border-top: 1px solid #dcdfe4;
  border-left: 1px solid #dcdfe4;
  border-top-left-radius: 12px;
  z-index: 1;
}
.steps__item:last-child::after {
  display: none;
}
.steps__card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 2;
}
.steps__number {
  background: #f3f4f6;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
}
.steps__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.steps__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.steps__desc {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.steps__desc p {
  margin: 0;
}
@media (max-width: 768px) {
  .steps__list {
    gap: 24px;
  }
  .steps__item {
    width: 100%;
  }
  .steps__item:nth-child(odd)::after, .steps__item:nth-child(even)::after {
    display: none;
  }
  .steps__card {
    padding: 12px;
  }
}

.contact-full {
  padding-block: clamp(24px, 5vw, 80px);
}
.contact-full__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: flex-start;
}
.contact-full__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.contact-full__title {
  font-size: 42px;
  margin: 0;
}
.contact-full__desc {
  color: #6b7280;
}
.contact-full__desc p {
  margin: 0;
}
.contact-full .contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.contact-full .contact-info__item {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 16px;
}
.contact-full .contact-info__item svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-full .contact-info__text {
  font-size: 18px;
  color: #374151;
  font-weight: 500;
  line-height: 1.5;
}
.contact-full .contact-info__text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-full .contact-info__text a:hover {
  color: #059669;
}
.contact-full__socials {
  margin-top: 16px;
}
.contact-full__form-wrap {
  background: var(--text);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.contact-full__form-wrap .contact-form-dark {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.contact-full__form-wrap .contact-form-dark__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.contact-full__form-wrap .contact-form-dark__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-full__form-wrap .contact-form-dark__label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.05em;
}
.contact-full__form-wrap .contact-form-dark__input, .contact-full__form-wrap .contact-form-dark__textarea {
  width: 100%;
  border: 1px solid #3f3f46;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}
.contact-full__form-wrap .contact-form-dark__input::-moz-placeholder, .contact-full__form-wrap .contact-form-dark__textarea::-moz-placeholder {
  color: #52525b;
}
.contact-full__form-wrap .contact-form-dark__input::placeholder, .contact-full__form-wrap .contact-form-dark__textarea::placeholder {
  color: #52525b;
}
.contact-full__form-wrap .contact-form-dark__input:focus, .contact-full__form-wrap .contact-form-dark__textarea:focus {
  border-color: #65a30d;
}
.contact-full__form-wrap .contact-form-dark__textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-full__form-wrap .contact-form-dark__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-full__form-wrap .contact-form-dark__topics .wpcf7-list-item {
  margin: 0;
}
.contact-full__form-wrap .contact-form-dark__topics input[type=radio] {
  display: none;
}
.contact-full__form-wrap .contact-form-dark__topics .wpcf7-list-item-label {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  border: 1px solid #3f3f46;
  border-radius: 30px;
  color: #d9d9d9;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-full__form-wrap .contact-form-dark__topics input[type=radio]:checked + .wpcf7-list-item-label {
  border-color: #65a30d;
  color: #ffffff;
  background-color: rgba(101, 163, 13, 0.1);
}
.contact-full__form-wrap .contact-form-dark__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.contact-full__form-wrap .contact-form-dark__submit {
  width: 100%;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(101, 163, 13, 0.2);
}
.contact-full__form-wrap .contact-form-dark__submit:hover {
  background-color: #4d7c0f;
  box-shadow: 0 4px 25px rgba(101, 163, 13, 0.4);
}
.contact-full__form-wrap .contact-form-dark__policy {
  font-size: 12px;
  color: #71717a;
  text-align: center;
}
.contact-full__form-wrap .contact-form-dark__policy a {
  color: #a1a1aa;
  text-decoration: underline;
  text-decoration-color: rgba(161, 161, 170, 0.4);
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}
.contact-full__form-wrap .contact-form-dark__policy a:hover {
  color: #ffffff;
}
@media (max-width: 992px) {
  .contact-full__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-full__info {
    position: static;
  }
  .contact-full__title {
    font-size: 32px;
  }
  .contact-full__form-wrap {
    padding: 32px 24px;
  }
}

.slider-block {
  padding-block: 80px;
  overflow: hidden;
}
.slider-block__track-wrap {
  width: 100%;
}
.slider-block__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.slider-block__track::-webkit-scrollbar {
  display: none;
}
.slider-block__item {
  flex: 0 0 auto;
  max-width: 100%;
  display: flex;
}
.slider-block__item > * {
  width: 100%;
  flex: 1 1 auto;
}
.slider-block__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.slider-block__nav {
  display: flex;
  gap: 12px;
}
.slider-block__btn svg path {
  stroke: #292929;
}
.slider-block__btn:hover svg path {
  stroke: #ffffff;
}
.slider-block__btn:hover {
  transform: scale(1.05);
}
.slider-block__btn:active {
  transform: scale(0.95);
}
.slider-block__btn:active svg path {
  stroke: #ffffff;
}
.slider-block__progress {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  max-width: 400px;
}
.slider-block__progress-current, .slider-block__progress-total {
  font-size: 14px;
  font-weight: 600;
  color: #18181b;
  min-width: 40px;
}
.slider-block__progress-total {
  color: #6b7280;
}
.slider-block__scrollbar {
  position: relative;
  flex: 1;
  height: 4px;
  background: #f3f4f6;
  border-radius: 4px;
  overflow: hidden;
}
.slider-block__scrollbar-drag {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #18181b;
  border-radius: 4px;
  transition: width 0.2s ease;
}
@media (max-width: 768px) {
  .slider-block {
    padding-block: 38px;
  }
  .slider-block__controls {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .slider-block__progress {
    max-width: 100%;
    width: 100%;
  }
}

.gradient_one {
  background: var(--gradient-one);
}

.gradient_two {
  background: var(--gradient-two);
}

.gradient_three {
  background: var(--gradient-three);
}

.color_white {
  background: var(--white);
}

.margin_sm {
  margin-block: 32px;
}

.margin_md {
  margin-block: 64px;
}

.margin_lg {
  margin-block: 82px;
}
@media (max-width: 768px) {
  .margin_lg {
    margin-block: 42px;
  }
}

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.comments-area {
  margin-top: 48px;
  color: var(--text);
}
.comments-area h2,
.comments-area .comments-title {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 600;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-list > .comment {
  margin-bottom: 24px;
}

.comment-body {
  background: var(--item);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.comment-author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.comment-author .fn {
  font-weight: 600;
  color: var(--text);
}
.comment-author .says {
  display: none;
}

.comment-metadata {
  font-size: 13px;
  color: #71717a;
  margin-bottom: 12px;
}
.comment-metadata a {
  color: inherit;
  text-decoration: none;
}
.comment-metadata a:hover {
  color: var(--primary);
}

.comment-content {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.comment-content p {
  margin: 0 0 12px;
}
.comment-content p:last-child {
  margin-bottom: 0;
}
.comment-content a {
  color: var(--primary);
  text-decoration: underline;
}

.reply {
  margin-top: 12px;
}
.reply a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}
.reply a:hover {
  text-decoration: underline;
}

.children {
  list-style: none;
  margin: 16px 0 0 32px;
  padding: 0;
  border-left: 2px solid var(--secondary-item);
}
.children .comment {
  margin-top: 16px;
}

.comment-respond {
  margin-top: 40px;
  padding: 24px;
  background: var(--item);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.comment-respond .comment-reply-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.comment-form {
  display: grid;
  gap: 16px;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #d4d4d8;
  font-size: 14px;
  color: var(--text);
  background: var(--text-w);
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.comment-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 8px;
}
.form-submit input[type=submit] {
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  background: var(--primary);
  color: var(--text-w);
  font-weight: 600;
  cursor: pointer;
}
.form-submit input[type=submit]:hover {
  opacity: 0.9;
}

.comment-awaiting-moderation {
  font-size: 13px;
  color: #71717a;
  margin-bottom: 8px;
}

.bypostauthor .comment-body {
  border-left: 3px solid var(--primary);
}

.loop-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: var(--sh-md);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.loop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.loop-card:hover .loop-card__img {
  transform: scale(1.03);
}

.loop-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--gray-50);
}

.loop-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.loop-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
}

.loop-card__meta {
  margin-bottom: 12px;
}

.loop-card__date {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.loop-card__header {
  margin-bottom: 12px;
}

.loop-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.loop-card__title a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}
.loop-card__title a:hover {
  color: var(--primary);
}

.loop-card__excerpt {
  font-size: 15px;
  line-height: 1.5;
  color: #4b5563;
  margin-bottom: 24px;
}

.loop-card__footer {
  margin-top: auto;
}

.loop-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}
.loop-card__more svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.3s ease;
}
.loop-card__more:hover {
  color: var(--primary);
}
.loop-card__more:hover svg {
  transform: translateX(4px);
}

.case-card {
  max-width: 720px;
  width: 100%;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--sh-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}
.case-card:hover {
  transform: translateY(-10px);
}

.case-card__media {
  position: relative;
  width: 100%;
  padding: 8px;
}
.case-card__media a {
  display: block;
}
.case-card__media img {
  width: 100%;
  height: clamp(240px, 30vw, 340px);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.case-card__badge-power {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--dark);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 16px;
  z-index: 2;
}

.case-card__badge-type {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.742);
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.case-card__content {
  padding: clamp(12px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-card__title {
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.2;
}
.case-card__title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.case-card__title a:hover {
  color: var(--primary);
}

.case-card__location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5c626a;
  font-size: 16px;
  margin-bottom: 24px;
}
.case-card__location svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.case-card__excerpt {
  margin-bottom: clamp(10px, 5vw, 30px);
  font-size: 15px;
  line-height: 1.5;
}
.case-card__excerpt p {
  margin: 0 0 12px 0;
  font-weight: 600;
  color: var(--dark);
}
.case-card__excerpt ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-card__excerpt ul li {
  position: relative;
  padding-left: 16px;
  color: #5c626a;
}
.case-card__excerpt ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

.case-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: inherit;
  margin-top: auto;
  align-self: flex-start;
  transition: opacity 0.3s ease;
}
.case-card__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}
.case-card__link:hover {
  opacity: 0.8;
}
.case-card__link:hover svg {
  transform: translate(4px, -4px);
}

.post-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--sh-md);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.post-card:hover .post-card__image {
  transform: scale(1.05);
}

.post-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.post-card__media a {
  display: block;
  width: 100%;
  height: 100%;
}
.post-card__media .post-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.post-card__category {
  background-color: var(--dark);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.post-card__date {
  color: #5c626a;
  font-weight: 500;
}

.post-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px 0;
}
.post-card__title a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}
.post-card__title a:hover {
  color: var(--primary);
}

.post-card__excerpt {
  color: #5c626a;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}
.post-card__link svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.3s ease;
}
.post-card__link:hover {
  color: var(--primary);
}
.post-card__link:hover svg {
  transform: translateX(4px);
}

.service-card {
  flex: 1 1 470px;
  max-width: 470px;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--gray-50);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--sh-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}
.service-card:hover .service-card__title a {
  color: var(--primary);
}
.service-card__thumb img {
  display: block;
  width: 100%;
  height: 240px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-card .icon-service-loop {
  width: 42px;
  height: 42px;
  display: inline-flex;
}
.service-card__title {
  margin: 0;
  line-height: 1;
}
.service-card__title a {
  text-decoration: none;
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  color: var(--text);
  font-weight: 500;
}
.service-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 1rem;
}
.service-card__btn {
  text-decoration: none;
  font-weight: 600;
}
.service-card button {
  font-size: 15px;
  padding: 16px 24px;
}

.modal--mobile-menu {
  justify-content: flex-end !important;
  align-items: flex-start !important;
}
.modal--mobile-menu .modal__content {
  width: 90%;
  max-width: 400px !important;
  height: 100vh !important;
  max-height: 100% !important;
  background: var(--white);
  box-shadow: var(--sh-lg);
  padding: 24px !important;
  margin-top: 1rem;
}
.modal--mobile-menu .modal__close {
  z-index: 99;
}
.modal--mobile-menu .mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: #f9f9f9;
}
.modal--mobile-menu .mobile-menu__footer button {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.modal--mobile-menu .mobile-menu__footer .phone-item a {
  font-weight: 600;
}

.consult-content form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.consult-content form .wpcf7-submit {
  width: 100%;
}

nav {
  display: flex;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
}
nav ul li {
  position: relative;
  font-weight: 600;
}
nav ul li ul {
  display: none;
  position: fixed;
  left: 0;
  width: 100vw;
  padding: 42px;
  background: var(--white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  padding: 1em;
  z-index: 999;
  border-radius: 6px;
}
nav ul li ul .submenu_icon {
  display: none;
}
nav ul li ul li {
  padding: 12px;
}
nav ul li ul li ul {
  display: flex;
  flex-direction: column;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
  background: transparent;
  box-shadow: 0 0px 0px rgb(255, 255, 255);
}
nav ul li ul li ul li {
  padding: 0px;
}
nav ul li:hover > ul, nav ul li.focus > ul {
  display: flex;
}
nav ul li a {
  color: var(--text);
}
nav ul li a img {
  max-width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
nav ul li a:visited {
  color: var(--text);
}
nav ul li a:hover, nav ul li a:focus, nav ul li a:active {
  color: var(--link-hover);
}
nav ul li a .icon {
  width: 20px;
  height: 20px;
}
nav a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--link-ui);
  text-decoration: none;
  transition: color 0.3s;
}
nav a:hover, nav a.focus {
  color: var(--link-ui);
}
nav a:visited {
  color: var(--link-ui);
}
nav .current_page_item > a,
nav .current-menu-item > a,
nav .current_page_ancestor > a,
nav .current-menu-ancestor > a {
  color: var(--link-ui-hover) !important;
}

.submenu_icon {
  width: 12px;
  height: 12px;
  display: inline-block;
  transition: transform 0.2s ease;
}
.submenu_icon:hover {
  transform: rotate(180deg);
}

.menu-item-has-children:hover > a .submenu_icon,
.menu-item-has-children:focus-within > a .submenu_icon {
  transform: rotate(180deg);
}

@media screen and (max-width: 37.49em) {
  .main-navigation {
    flex-direction: column;
  }
  .main-navigation ul {
    flex-direction: column;
    gap: 0;
  }
  .main-navigation ul ul {
    position: relative;
    top: auto;
    left: auto;
    box-shadow: none;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

.post-nav {
  margin-top: 3rem;
  padding: 20px 0;
  border-top: 1px solid #eef2f2;
  border-bottom: 1px solid #eef2f2;
}

.post-nav__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}

.post-nav__item {
  flex: 1;
  max-width: 45%;
}

.post-nav__item--next {
  text-align: right;
}

.post-nav__link {
  display: inline-block;
  text-decoration: none;
  color: #0b1c24;
  transition: transform 0.2s ease;
}

.post-nav__link:hover {
  transform: translateY(-2px);
}

.post-nav__label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a9499;
  margin-bottom: 4px;
}

.post-nav__title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #0b1c24;
}

.post-nav__link:hover .post-nav__title {
  color: #6c7d85;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 576px) {
  .post-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .post-nav__item {
    max-width: 100%;
  }
  .post-nav__item--next {
    text-align: left;
  }
  .beadcrumbs {
    overflow-x: scroll;
    width: 100%;
    text-wrap: nowrap;
  }
}
.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}

.phone-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phone-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-icon {
  flex-shrink: 0;
  display: block;
}

.phone-link {
  text-decoration: none;
  color: var(--text);
}
.phone-link:hover {
  color: var(--primary);
}

.socials__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.375rem, 0.6vw, 0.75rem);
  margin: 0;
  padding: 0;
}

.socials__item img {
  width: 30px;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

.socials__item svg {
  width: 30px;
  height: 30px;
}

.socials__item {
  transition: transform 0.25s ease;
}

.socials__item:hover {
  transform: translateY(-4px);
}

.toast--cookie {
  max-width: 680px !important;
}
.toast--cookie .toast__text {
  margin-bottom: 1rem;
}
.toast--cookie button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 300;
}

/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .case-grid {
    margin-left: 0px;
    gap: 12px;
  }
}
.grid-blog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: clamp(1rem, 1.6vw, 2rem);
}

.single-post__body .container {
  padding: 40px 24px;
  background-color: var(--white);
  border-radius: 12px;
  margin-top: 2rem;
}

.post-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.post-hero__categories {
  display: flex;
  gap: 8px;
}

.post-hero__category {
  background-color: var(--primary);
  color: var(--text);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.post-hero__date {
  font-size: 14px;
  color: #5c626a;
}

.post-hero__title {
  font-size: calc(28px + 1.5vw);
  line-height: 1.2;
  color: var(--dark);
  margin: 0 0 30px 0;
  max-width: 900px;
}

.post-hero__media {
  width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.post-hero__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.post-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .post-layout {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}

.post-sidebar {
  width: 100%;
}
@media (min-width: 992px) {
  .post-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 40px;
  }
}

.post-toc {
  background-color: var(--white);
  padding: 12px;
  padding-left: 2rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 1px solid var(--gray-200);
}

.post-toc__title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-toc__link {
  font-size: 15px;
  color: #5c626a;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.4;
}
.post-toc__link:hover {
  color: var(--primary);
}

.post-body {
  width: 100%;
  flex-grow: 1;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
}
.post-body h2 {
  font-size: calc(20px + 0.5vw);
  margin: 40px 0 20px 0;
  scroll-margin-top: 40px;
}
.post-body p {
  margin-bottom: 20px;
}

.post-8 .hub-link {
  margin-top: 8%;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  grid-auto-flow: dense;
  width: 100%;
  align-items: stretch;
}

.archive-grid--service, .archive-grid--solution {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.archive-grid--post {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .archive-grid--post {
    grid-template-columns: repeat(3, 1fr);
  }
}
.archive-grid--case {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .archive-grid--case {
    grid-template-columns: repeat(2, 1fr);
  }
}
.not-found-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 60px 20px;
  animation: fadeIn 1s ease-in-out;
}

.error-code {
  display: flex;
  font-size: clamp(64px, 20vw, 200px);
  font-weight: 800;
  letter-spacing: 10px;
  margin-bottom: 20px;
}

.digit {
  animation: bounce 1.5s infinite alternate ease-in-out;
  display: inline-block;
}

.digit:nth-child(1) {
  animation-delay: 0s;
}

.digit:nth-child(2) {
  animation-delay: 0.2s;
}

.digit:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-12px) scale(1.05);
  }
}
.error-message {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.6;
}

.error-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.error-actions .btn {
  padding: 12px 24px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 8px;
  background: black;
  color: white;
  transition: background 0.3s ease, transform 0.3s ease;
}

.error-actions .btn:hover {
  background: #222;
  transform: scale(1.05);
}

.btn-secondary {
  background: #999;
}

.btn-secondary:hover {
  background: #555;
}

/* Адаптив */
@media (max-width: 600px) {
  .error-code {
    font-size: clamp(48px, 25vw, 120px);
  }
  .error-message {
    font-size: 18px;
  }
  .error-actions .btn {
    width: 100%;
    text-align: center;
  }
}
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

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

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: var(--primary);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: var(--text);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}