@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
figure, hr {
  margin: 0;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  text-decoration: none;
}

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

[hidden] {
  display: none !important;
}

:focus {
  outline: 2px solid #104791;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: #104791;
}
a:hover {
  color: #0b3163;
}

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

::selection {
  background-color: rgba(16, 71, 145, 0.2);
  color: #212529;
}

::-moz-selection {
  background-color: rgba(16, 71, 145, 0.2);
  color: #212529;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
  background: #dee2e6;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #c1c9d0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #212529;
  margin-bottom: 16px;
}

h1 {
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.75rem;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h4 {
    font-size: 1.25rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}

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

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

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

.text-bold {
  font-weight: 700;
}

.text-normal {
  font-weight: 400;
}

.text-light {
  color: #6c757d;
}

.text-primary {
  color: #104791;
}

.text-success {
  color: #28a745;
}

.text-danger {
  color: #dc3545;
}

.text-small {
  font-size: 14px;
}

.text-large {
  font-size: 18px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}
@media (min-width: 576px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-8px);
}

[class*=col-] {
  padding: 0 calc(8px);
  width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
header {
  background-color: #ffffff;
  padding: 0;
  position: relative;
  background-image: none;
}
header .header-top {
  display: none;
  background: #ffffff;
  padding: 8px 24px;
  border-bottom: 1px solid rgba(1, 17, 42, 0.1);
}
@media (min-width: 992px) {
  header .header-top {
    display: block;
  }
}
header .header-top-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  justify-content: center;
}
@media (min-width: 576px) {
  header .header-top-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
header .header-top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
header .header-top-nav a {
  color: #01102A;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.15s ease;
  padding: 4px 0;
}
header .header-top-nav a:hover {
  color: rgba(1, 17, 42, 0.8);
}
header .header-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1029;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 991px) {
  header .header-menu-overlay {
    display: block;
    pointer-events: none;
  }
  header.is-menu-open .header-menu-overlay {
    pointer-events: auto;
    opacity: 1;
  }
}
header .header-bar {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  background-image: none;
}
header .header-services-bar {
  display: none;
  background: rgba(1, 17, 42, 0.09);
  border-bottom: 1px solid rgba(1, 17, 42, 0.08);
  padding: 10px 24px;
}
@media (min-width: 992px) {
  header .header-services-bar {
    display: block;
  }
}
header .header-services-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 0.8rem;
}
@media (min-width: 576px) {
  header .header-services-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
header .header-services-inner a {
  color: #01102A;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.15s ease;
  padding: 4px 0;
  border-right: 1px solid rgba(1, 17, 42, 0.2);
  padding-right: 0.8rem;
}
header .header-services-inner a:last-child {
  border-right: none;
  padding-right: 0;
}
header .header-services-inner a:hover {
  color: rgba(1, 17, 42, 0.8);
}
header.is-fixed .header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: 0 1px 3px rgba(1, 17, 42, 0.08);
}
header .header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 100px;
}
@media (min-width: 576px) {
  header .header-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 992px) {
  header .header-container {
    justify-content: space-between;
    gap: 48px;
  }
}
@media screen and (max-width: 991px) {
  header .header-container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
header .logo {
  font-size: 20px;
  font-weight: 700;
  color: #01102A;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
header .logo img {
  max-height: 80px;
  max-width: 286px;
  width: 100vw;
  object-fit: cover;
}
@media (max-width: 767px) {
  header .logo img {
    max-height: 70px;
    max-width: 250px;
  }
}
header .header-burger {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #01102A;
  font-size: 26px;
  z-index: 1050;
  border-radius: 4px;
  transition: all 0.15s ease;
  display: none;
  margin-left: auto;
}
header .header-burger:hover {
  background: rgba(1, 17, 42, 0.06);
}
@media (max-width: 991px) {
  header .header-burger {
    display: flex;
  }
}
header .header-info {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  margin-left: 0;
}
@media (min-width: 992px) {
  header .header-info {
    display: flex;
  }
}
@media (min-width: 1200px) {
  header .header-info {
    justify-content: space-between;
  }
}
header .header-divider {
  display: none;
  width: 1px;
  min-width: 1px;
  height: 48px;
  background: rgba(1, 17, 42, 0.2);
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  header .header-divider {
    display: block;
    margin: 0 32px;
  }
}
header .header-address-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 2px 0;
  flex-basis: 50%;
}
header .header-address-block .header-address-link {
  color: #01102A;
  font-size: 14px;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  transition: all 0.15s ease;
  line-height: 1.4;
}
header .header-address-block .header-address-link:hover {
  color: rgba(1, 17, 42, 0.8);
}
header .header-address-block .header-address-link i {
  font-size: 18px;
  opacity: 0.9;
  flex-shrink: 0;
  margin-top: 2px;
}
header .header-address-block .header-address-link span {
  line-height: 1.4;
}
header .header-address-block .header-hours {
  color: rgba(1, 17, 42, 0.8);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  width: 90%;
}
header .header-contacts-block {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 30px;
  padding: 2px 0;
  min-width: 0;
}
@media (min-width: 1200px) {
  header .header-contacts-block {
    align-items: flex-start;
  }
}
header .header-contacts-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
@media (min-width: 1200px) {
  header .header-contacts-phones {
    align-items: flex-start;
  }
}
header .header-contacts-phones a {
  color: #01102A;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}
header .header-contacts-phones a:hover {
  color: rgba(1, 17, 42, 0.8);
}
header .header-contacts-messengers {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
@media (min-width: 1200px) {
  header .header-contacts-messengers {
    align-items: flex-start;
  }
}
header .header-contacts-messengers .header-messengers-label {
  color: rgba(1, 17, 42, 0.7);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
header .header-contacts-messengers .header-messengers-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
header .header-contacts-messengers .header-messenger-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #01102A;
  font-size: 24px;
  transition: color 0.2s, transform 0.15s ease;
  line-height: 1;
}
header .header-contacts-messengers .header-messenger-link img {
  width: 24px;
  height: 24px;
}
header .header-contacts-messengers .header-messenger-link:hover {
  color: rgba(1, 17, 42, 0.8);
  transform: scale(1.08);
}
header .header-contacts-messengers .header-messenger-phone {
  color: #01102A;
  font-size: 14px;
  font-weight: 500;
}
header .header-contacts-messengers .header-messenger-phone:hover {
  color: rgba(1, 17, 42, 0.8);
}
header .header-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #01102A;
  font-size: 16px;
  margin-top: 2px;
}
header .header-email:hover {
  color: rgba(1, 17, 42, 0.8);
}
header .header-email i {
  font-size: 16px;
  opacity: 0.9;
}
header .header-nav-mobile {
  display: none;
}
@media (max-width: 991px) {
  header .header-nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 0;
    z-index: 1030;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.3s ease, visibility 0.3s ease;
    transition: transform 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    overflow-y: auto;
    display: flex;
  }
}
header .header-nav nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  header .header-nav nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 24px;
  }
  header .header-nav nav a {
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(1, 17, 42, 0.1);
    color: #01102A;
    font-weight: 500;
  }
  header .header-nav nav a:hover {
    color: rgba(1, 17, 42, 0.7);
  }
}
header .header-info-mobile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(1, 17, 42, 0.1);
}
header .header-address-mobile,
header .header-email-link-mobile {
  color: #01102A;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
header .header-address-mobile:hover,
header .header-email-link-mobile:hover {
  color: rgba(1, 17, 42, 0.8);
}
header .header-address-mobile i,
header .header-email-link-mobile i {
  font-size: 18px;
  flex-shrink: 0;
}
header .header-address-mobile span {
  line-height: 1.4;
}
header .header-email-link-mobile {
  font-weight: 500;
}
header .header-mobile-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
header .header-mobile-phones a {
  color: #01102A;
  font-size: 16px;
}
header .header-mobile-phones a:hover {
  color: rgba(1, 17, 42, 0.8);
}
header .header-mobile-messengers {
  display: flex;
  align-items: center;
  gap: 12px;
}
header .header-mobile-messengers .header-messenger-link {
  color: #01102A;
  font-size: 1.5rem;
}
header .header-mobile-messengers .header-messenger-link img {
  width: 24px;
  height: 24px;
}
header .header-mobile-messengers .header-messenger-link:hover {
  color: rgba(1, 17, 42, 0.8);
}
@media (max-width: 991px) {
  header.is-menu-open .header-nav-mobile {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
  }
}

body.menu-open {
  overflow: hidden;
}

footer {
  color: #ffffff;
  padding: 100px 0 50px;
  margin-top: auto;
}
footer .footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
@media (min-width: 576px) {
  footer .footer-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 768px) {
  footer .footer-container {
    flex-direction: row;
  }
}
footer .footer-logo img {
  max-height: 90px;
  width: 100vw;
  max-width: 267px;
}
@media (min-width: 768px) {
  footer .footer-logo img {
    width: auto;
  }
}
footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  margin-bottom: 24px;
}
@media (min-width: 576px) {
  footer .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
@media screen and (max-width: 768px) {
  footer .footer-content {
    width: auto;
  }
}
footer .footer-section h3 {
  color: #ffffff;
  margin-bottom: 16px;
}
footer .footer-section ul li {
  margin-bottom: 8px;
}
footer .footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
}
footer .footer-section ul li a:hover {
  color: #ffffff;
}
footer .footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}
footer .footer-messengers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
footer .footer-messengers .footer-messenger-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s;
}
footer .footer-messengers .footer-messenger-link img {
  width: 24px;
  height: 24px;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.5s ease;
  min-height: 44px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn.btn-sm {
  padding: 4px 8px;
  font-size: 14px;
}
.btn.btn-lg {
  padding: 16px 24px;
  font-size: 18px;
}
.btn.btn-primary {
  background-color: #104791;
  color: #ffffff;
  border-color: #173b6b;
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 10px 26px;
}
.btn.btn-primary:hover:not(:disabled) {
  background-color: #0b3163;
  border-color: #0b3163;
}
.btn.btn-secondary {
  color: #ffffff;
  border-color: #6c757d;
  background: #1D2D41;
  background: linear-gradient(50deg, rgb(29, 45, 65) 0%, rgb(70, 89, 112) 100%);
  padding: 10px 35px;
}
.btn.btn-secondary:hover:not(:disabled) {
  background: linear-gradient(50deg, rgba(29, 45, 65, 0.8) 0%, rgba(70, 89, 112, 0.8) 100%);
  border-color: #545b62;
}
.btn.btn-outline {
  background-color: transparent;
  color: #104791;
  border-color: #104791;
}
.btn.btn-outline:hover:not(:disabled) {
  background-color: #104791;
  color: #ffffff;
}
.btn.btn-ghost {
  background-color: transparent;
  color: #212529;
  border-color: transparent;
}
.btn.btn-ghost:hover:not(:disabled) {
  background-color: #f8f9fa;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  color: #212529;
}
.form-group .form-control {
  display: block;
  width: 100%;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.form-group .form-control:focus {
  outline: none;
  border-color: #104791;
  box-shadow: 0 0 0 3px rgba(16, 71, 145, 0.1);
}
.form-group .form-control:disabled {
  background-color: #f8f9fa;
  opacity: 0.6;
  cursor: not-allowed;
}
.form-group .form-control::placeholder {
  color: #6c757d;
}
.form-group textarea.form-control {
  min-height: 100px;
  resize: vertical;
}
.form-group .form-error {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: #dc3545;
}
.form-group .form-help {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: #6c757d;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.form-check input[type=checkbox],
.form-check input[type=radio] {
  margin-right: 8px;
  cursor: pointer;
}
.form-check label {
  margin-bottom: 0;
  cursor: pointer;
}

.card {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card .card-header {
  padding: 16px;
  border-bottom: 1px solid #dee2e6;
  background-color: #f8f9fa;
}
.card .card-header h3, .card .card-header h4, .card .card-header h5 {
  margin-bottom: 0;
}
.card .card-body {
  padding: 16px;
}
.card .card-footer {
  padding: 16px;
  border-top: 1px solid #dee2e6;
  background-color: #f8f9fa;
}
.card .card-image {
  width: 100%;
  height: auto;
  display: block;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 480px) {
  .modal-overlay {
    padding: 20px;
  }
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-overlay.is-open .modal-box {
  transform: scale(1);
  opacity: 1;
}

.modal-box {
  background: linear-gradient(180deg, #1a2435 0%, #0f1823 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  max-width: 100%;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
@media (min-width: 480px) {
  .modal-box {
    max-width: 480px;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.modal-close i {
  font-size: 20px;
}

.modal-content {
  padding: 32px 20px 24px;
}
@media (min-width: 480px) {
  .modal-content {
    padding: 40px 32px 32px;
  }
}

.modal-title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  padding-right: 40px;
}

.modal-form .form-group {
  margin-bottom: 20px;
}
.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
}
.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.modal-form textarea {
  min-height: 100px;
  resize: vertical;
}
.modal-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  background: #4A7E63;
  background: linear-gradient(190deg, rgb(74, 126, 99) 0%, rgb(41, 98, 65) 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 8px;
}
.modal-form .btn:hover {
  background: #385f4a;
}
.modal-form .modal-privacy {
  margin-bottom: 20px;
  margin-top: 4px;
}
.modal-form .modal-privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.modal-form .modal-privacy-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: #4A7E63;
  cursor: pointer;
}
.modal-form .modal-privacy-checkbox a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}
.modal-form .modal-privacy-checkbox a:hover {
  color: #fff;
}

.modal-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.modal-success.is-visible {
  display: block;
}
.modal-success i {
  font-size: 48px;
  color: #fff;
  margin-bottom: 16px;
}
.modal-success .modal-success-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.modal-success .modal-success-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.modal-form-wrap.is-hidden {
  display: none;
}

.bg-texture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #003a97;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  /* Слой градиентов (световой центр, виньетка, диагональные тени) */
  /* Слой шума */
}
@media (max-width: 767px) {
  .bg-texture {
    background: #004fcd;
  }
}
.bg-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(100% 100% at 60% 30%, rgba(150, 190, 255, 0.2) 0%, rgba(60, 110, 180, 0.1) 35%, rgba(10, 20, 35, 0) 70%), radial-gradient(120% 120% at 60% 45%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0.55) 100%), linear-gradient(135deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.3) 100%);
  -webkit-filter: saturate(1.05) contrast(1.05);
  filter: saturate(1.05) contrast(1.05);
  z-index: 0;
}
.bg-texture::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/images/bg-lic.png);
  background-size: cover;
  -webkit-filter: contrast(200%) brightness(80%);
  filter: contrast(200%) brightness(80%);
  opacity: 0.3;
  z-index: 1;
}
@media (max-width: 767px) {
  .bg-texture::after {
    background-position: center;
  }
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.align-start {
  align-items: flex-start !important;
}

.align-end {
  align-items: flex-end !important;
}

.align-center {
  align-items: center !important;
}

.gap-sm {
  gap: 8px !important;
}

.gap-md {
  gap: 16px !important;
}

.gap-lg {
  gap: 24px !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 4px !important;
}

.mt-1 {
  margin-top: 4px !important;
}

.mr-1 {
  margin-right: 4px !important;
}

.mb-1 {
  margin-bottom: 4px !important;
}

.ml-1 {
  margin-left: 4px !important;
}

.mx-1 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.m-2 {
  margin: 8px !important;
}

.mt-2 {
  margin-top: 8px !important;
}

.mr-2 {
  margin-right: 8px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.ml-2 {
  margin-left: 8px !important;
}

.mx-2 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.m-3 {
  margin: 16px !important;
}

.mt-3 {
  margin-top: 16px !important;
}

.mr-3 {
  margin-right: 16px !important;
}

.mb-3 {
  margin-bottom: 16px !important;
}

.ml-3 {
  margin-left: 16px !important;
}

.mx-3 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.my-3 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.m-4 {
  margin: 24px !important;
}

.mt-4 {
  margin-top: 24px !important;
}

.mr-4 {
  margin-right: 24px !important;
}

.mb-4 {
  margin-bottom: 24px !important;
}

.ml-4 {
  margin-left: 24px !important;
}

.mx-4 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.my-4 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 4px !important;
}

.pt-1 {
  padding-top: 4px !important;
}

.pr-1 {
  padding-right: 4px !important;
}

.pb-1 {
  padding-bottom: 4px !important;
}

.pl-1 {
  padding-left: 4px !important;
}

.px-1 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.p-2 {
  padding: 8px !important;
}

.pt-2 {
  padding-top: 8px !important;
}

.pr-2 {
  padding-right: 8px !important;
}

.pb-2 {
  padding-bottom: 8px !important;
}

.pl-2 {
  padding-left: 8px !important;
}

.px-2 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.p-3 {
  padding: 16px !important;
}

.pt-3 {
  padding-top: 16px !important;
}

.pr-3 {
  padding-right: 16px !important;
}

.pb-3 {
  padding-bottom: 16px !important;
}

.pl-3 {
  padding-left: 16px !important;
}

.px-3 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.py-3 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.p-4 {
  padding: 24px !important;
}

.pt-4 {
  padding-top: 24px !important;
}

.pr-4 {
  padding-right: 24px !important;
}

.pb-4 {
  padding-bottom: 24px !important;
}

.pl-4 {
  padding-left: 24px !important;
}

.px-4 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.py-4 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.rounded {
  border-radius: 8px !important;
}

.rounded-sm {
  border-radius: 4px !important;
}

.rounded-lg {
  border-radius: 12px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1) !important;
}

.shadow-none {
  box-shadow: none !important;
}

@supports not (height: 100dvh) {
  .header-nav-mobile {
    height: 100vh;
    height: -webkit-fill-available;
  }
}
html {
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

.service-gallery-item {
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
  page-break-inside: avoid;
}

.contacts-content-form {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

summary::-webkit-details-marker {
  display: none;
}

input[type=search] {
  -webkit-appearance: none;
  appearance: none;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.service-card,
.about-advantage-card,
.about-document-card,
.service-benefit-card,
.service-other-card,
.news-card,
.services-card,
.why-choose-card {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

main.page-index .hero {
  display: none !important;
}
main .hero {
  width: 100%;
  min-height: clamp(400px, 70vh, 600px);
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  main .hero {
    height: calc(100vh - 170px);
    min-height: 500px;
  }
}
main .hero.hero-slider .hero-swiper {
  width: 100%;
  height: 100%;
  min-height: inherit;
}
main .hero.hero-slider .hero-swiper .swiper-wrapper {
  min-height: inherit;
  height: 100%;
}
main .hero .hero-slide {
  min-height: inherit;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .hero .hero-slide--static {
  min-height: inherit;
}
@media (min-width: 768px) {
  main .hero .hero-slide--static {
    height: calc(100vh - 170px);
  }
}
main .hero .hero-pagination {
  bottom: 20px;
  z-index: 2;
}
main .hero .hero-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
main .hero .hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
}
main .hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: 600px;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
@media (min-width: 576px) {
  main .hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
main .hero-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: clamp(23px, 1.8vw, 35px);
  font-size: clamp(30px, 3vw, 60px);
  text-align: center;
}
main .hero-subtitle {
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: clamp(30px, 5vw, 100px);
  font-size: clamp(18px, 1.4vw, 28px);
}
main .hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  main .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
main .services {
  position: relative;
  z-index: 3;
  background: transparent;
}
main .services-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: clamp(30px, 8vh, 100px);
}
@media (min-width: 576px) {
  main .services-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 767px) {
  main .services-content {
    padding-bottom: 0 !important;
  }
}
main .services-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: clamp(23px, 1.8vw, 35px);
  font-size: clamp(30px, 3vw, 60px);
  padding-bottom: 5px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}
main .services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
}
@media (min-width: 576px) {
  main .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  main .services-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  main .services-list--count-5 .services-card:nth-child(3) {
    grid-row: 1/3;
  }
}
main .services-list .services-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 0 4px 15px 0px rgba(0, 0, 0, 0.56);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .services-list .services-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px 0px rgba(0, 0, 0, 0.6);
}
main .services-list .services-card-image {
  width: 100%;
  height: 100%;
  min-height: 120px;
  flex: 1;
}
main .services-list .services-card-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 200px;
}
@media (min-width: 576px) {
  main .services-list .services-card-image img {
    max-height: 226px;
  }
}
@media (min-width: 768px) {
  main .services-list .services-card--tall .services-card-image img {
    max-height: none;
    min-height: 100%;
    object-position: right;
  }
}
main .services-list .services-card .services-item-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  font-size: 16px;
  padding: 15px 20px;
  margin-bottom: 0;
}
main .services-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}
main .services-button .btn {
  background: #4A7E63;
  background: linear-gradient(190deg, rgb(74, 126, 99) 0%, rgb(41, 98, 65) 50%, rgb(38, 70, 53) 100%);
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.25);
}
main .services-button .btn:hover {
  background: #385f4a;
  background: linear-gradient(190deg, rgba(74, 126, 99, 0.8) 0%, rgba(41, 98, 65, 0.8) 50%, rgba(38, 70, 53, 0.8) 100%);
}
main .why-choose {
  position: relative;
}
main .why-choose .bg-texture::before {
  background: radial-gradient(100% 100% at 75% 20%, rgba(150, 190, 255, 0.2) 0%, rgba(60, 110, 180, 0.1) 35%, rgba(10, 20, 35, 0) 70%), radial-gradient(120% 120% at 100% 50%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0.55) 100%), linear-gradient(135deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.3) 100%);
}
main .why-choose-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: clamp(50px, 17vh, 100px) 15px;
}
@media (min-width: 576px) {
  main .why-choose-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
main .why-choose-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: clamp(23px, 1.8vw, 35px);
  font-size: clamp(30px, 3vw, 60px);
  padding-bottom: 5px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}
main .why-choose-list {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: column;
}
@media (min-width: 576px) {
  main .why-choose-list {
    flex-direction: row;
    gap: 30px;
  }
}
main .why-choose-list .why-choose-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background-color: rgba(255, 255, 255, 0.01);
  border-radius: 4px;
  box-shadow: 0 4px 15px 0px rgba(0, 0, 0, 0.56);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .why-choose-list .why-choose-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
main .why-choose-list .why-choose-card-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  font-size: 16px;
  padding: 15px 20px;
  margin-bottom: 0;
  text-align: center;
}
main .why-choose-list .why-choose-card-description {
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
  font-size: 14px;
  padding: 15px 20px;
  margin-bottom: 0;
}
main .section-images {
  width: 100%;
  min-height: 200px;
  height: 50vh;
  background-image: url("/assets/images/bg-section.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  main .section-images {
    height: 100vh;
    max-height: 600px;
  }
}
main .licenses-documents {
  position: relative;
  overflow: hidden;
}
main .licenses-documents::before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 10%;
  width: 650px;
  height: 650px;
  background-image: url("/assets/images/licenses-documents-3.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
}
@media (max-width: 2400px) {
  main .licenses-documents::before {
    right: 0%;
  }
}
@media (max-width: 1800px) {
  main .licenses-documents::before {
    width: clamp(350px, 35vw, 641px);
    height: clamp(250px, 28vw, 500px);
  }
}
@media (max-width: 767px) {
  main .licenses-documents::before {
    width: 200px;
    height: 150px;
    right: 5%;
    bottom: -20px;
    opacity: 0.5;
  }
}
@media (max-width: 400px) {
  main .licenses-documents::before {
    display: none;
  }
}
main .licenses-documents-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: clamp(50px, 17vh, 100px) 15px;
}
@media (min-width: 576px) {
  main .licenses-documents-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
main .licenses-documents-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(30px, 3vw, 60px);
}
main .licenses-documents-description {
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
  font-size: 18px;
  margin-bottom: clamp(23px, 1.8vw, 35px);
}
main .licenses-documents-list {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
  flex-direction: column;
}
@media (min-width: 768px) {
  main .licenses-documents-list {
    max-width: 75%;
    flex-direction: row;
  }
}
main .licenses-documents-list .licenses-documents-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
main .licenses-documents-list .licenses-documents-card:last-child {
  border-right: none;
}
main .licenses-documents-list .licenses-documents-card:first-child {
  padding-left: 0;
}
@media (max-width: 767px) {
  main .licenses-documents-list .licenses-documents-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
  }
  main .licenses-documents-list .licenses-documents-card:last-child {
    border-bottom: none;
  }
  main .licenses-documents-list .licenses-documents-card:first-child {
    padding-left: 20px;
  }
}
main .licenses-documents-list .licenses-documents-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
main .licenses-documents-list .licenses-documents-card-image img {
  max-height: 70px;
  object-fit: contain;
}
main .licenses-documents-list .licenses-documents-card-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  font-size: 16px;
  margin-bottom: 20px;
}
main .licenses-documents-list .licenses-documents-card-description {
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
  font-size: 16px;
  margin-bottom: 0;
}
main .licenses-documents-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  main .licenses-documents-button {
    width: 75%;
  }
}
main .licenses-documents-button .btn {
  background: #4A7E63;
  background: linear-gradient(190deg, rgb(74, 126, 99) 0%, rgb(41, 98, 65) 50%, rgb(38, 70, 53) 100%);
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.25);
}
main .licenses-documents-button .btn:hover {
  background: #385f4a;
  background: linear-gradient(190deg, rgba(74, 126, 99, 0.8) 0%, rgba(41, 98, 65, 0.8) 50%, rgba(38, 70, 53, 0.8) 100%);
}
main .news {
  position: relative;
  overflow: hidden;
}
main .news .bg-texture::before {
  background: radial-gradient(100% 100% at 50% 40%, rgba(150, 190, 255, 0.2) 0%, rgba(60, 110, 180, 0.1) 35%, rgba(10, 20, 35, 0) 70%), radial-gradient(120% 120% at 50% 50%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0.55) 100%), linear-gradient(135deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.3) 100%);
}
main .news-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: clamp(50px, 17vh, 100px) 15px;
}
@media (min-width: 576px) {
  main .news-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
main .news-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(30px, 3vw, 60px);
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}
main .news-description {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  font-size: 18px;
  margin-bottom: clamp(30px, 3vw, 50px);
}
main .news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  main .news-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
}
main .news-list .news-card {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 0 4px 15px 0px rgba(0, 0, 0, 0.56);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .news-list .news-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px 0px rgba(0, 0, 0, 0.6);
}
main .news-list .news-card:hover .news-card-more {
  color: rgb(255, 255, 255);
}
main .news-list .news-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
main .news-list .news-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
@supports not (aspect-ratio: 1/1) {
  main .news-list .news-card-image {
    position: relative;
    overflow: hidden;
  }
  main .news-list .news-card-image::before {
    content: "";
    display: block;
    padding-bottom: 62.5%;
  }
  main .news-list .news-card-image img,
  main .news-list .news-card-image > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
main .news-list .news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .news-list .news-card-body {
  display: flex;
  flex-direction: column;
  padding: 20px;
  flex: 1;
}
main .news-list .news-card-date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 10px;
}
main .news-list .news-card-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
main .news-list .news-card-excerpt {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
main .news-list .news-card-more {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}
main .news-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
main .news-button .btn {
  background: #4A7E63;
  background: linear-gradient(190deg, rgb(74, 126, 99) 0%, rgb(41, 98, 65) 50%, rgb(38, 70, 53) 100%);
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.25);
}
main .news-button .btn:hover {
  background: #385f4a;
  background: linear-gradient(190deg, rgba(74, 126, 99, 0.8) 0%, rgba(41, 98, 65, 0.8) 50%, rgba(38, 70, 53, 0.8) 100%);
}
main .contacts {
  position: relative;
}
main .contacts-content {
  padding-top: 0 !important;
}
@media (max-width: 767px) {
  main .contacts-content {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  main .contacts-content-form {
    margin-top: 0 !important;
    padding: 20px 16px !important;
  }
}
main .contacts .bg-texture::before {
  background: radial-gradient(100% 100% at 60% 60%, rgba(150, 190, 255, 0.2) 0%, rgba(60, 110, 180, 0.1) 35%, rgba(10, 20, 35, 0) 70%), radial-gradient(120% 120% at 60% 45%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0.55) 100%), linear-gradient(135deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.3) 100%);
}
main .contacts-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: clamp(50px, 17vh, 100px) 15px;
  gap: 30px;
}
@media (min-width: 576px) {
  main .contacts-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
main .contacts-content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  width: 100%;
}
main .contacts-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(30px, 3vw, 60px);
  margin-bottom: clamp(23px, 1.8vw, 35px);
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
main .contacts-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 40px;
  flex: 1;
  gap: 20px;
}
main .contacts-card {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  padding: 25px 20px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 4px 15px 0px rgba(0, 0, 0, 0.56);
  background-color: rgba(255, 255, 255, 0.01);
  width: 100%;
  gap: 20px;
}
main .contacts-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgb(255, 255, 255);
  margin-bottom: 20px;
  font-size: 24px;
  box-shadow: inset 0px 3px 0px 0 rgba(0, 0, 0, 0.5);
}
main .contacts-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
main .contacts-card-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  font-size: 16px;
  margin-bottom: 10px;
}
main .contacts-card-data {
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
  font-size: 14px;
  margin-bottom: 0;
  display: block;
}
main .contacts-card-data + main .contacts-card-data {
  margin-top: 6px;
}
main .contacts-card-messengers {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
main .contacts-card-schedule {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  margin-top: 20px;
}
main .contacts-card-schedule-data {
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
  font-size: 14px;
  margin-bottom: 0;
}
main .contacts-content-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  width: 100%;
  gap: 20px;
  padding: 25px;
  background-color: rgba(41, 55, 80, 0.05);
  backdrop-filter: blur(3px);
  margin-top: 60px;
}
main .contacts-content-form form {
  width: 100%;
}
main .contacts-content-form .title-form {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  font-size: 24px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  width: fit-content;
}
main .contacts-content-form .form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  width: 100%;
  gap: 10px;
}
main .contacts-content-form .form-group:last-child {
  margin-bottom: 30px;
}
main .contacts-content-form .form-group input,
main .contacts-content-form .form-group textarea {
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
  font-size: 14px;
  margin-bottom: 5px;
  width: 100%;
  height: 40px;
  padding: 12px 15px;
  outline: none;
  background-color: #4D5B72;
  border: none;
}
main .contacts-content-form .form-group input::placeholder,
main .contacts-content-form .form-group textarea::placeholder {
  color: #939DAD;
}
main .contacts-content-form .form-group textarea {
  height: 100px;
  min-height: 100px;
  max-height: 200px;
}
main .contacts-content-form .form-group-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 20px;
  color: #ffffff;
  cursor: pointer;
}
main .contacts-content-form .form-group-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  line-height: 1.5;
}
main .contacts-content-form .form-group-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: #4A7E63;
  cursor: pointer;
}
main .contacts-content-form .form-group-checkbox a {
  color: #ffffff;
  text-decoration: underline;
}
main .contacts-content-form .btn {
  background: #4A7E63;
  background: linear-gradient(190deg, rgb(74, 126, 99) 0%, rgb(41, 98, 65) 50%, rgb(38, 70, 53) 100%);
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.25);
  width: 100%;
}
main .map {
  width: 100%;
  min-height: 300px;
  height: 50vh;
  position: relative;
}
@media (min-width: 768px) {
  main .map {
    height: 100vh;
    max-height: 600px;
  }
}
main .map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.page-services .page-banner {
  position: relative;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .page-services .page-banner {
    min-height: 280px;
  }
}
.page-services .page-banner-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vh, 80px) 16px;
  padding-bottom: 0;
}
@media (min-width: 576px) {
  .page-services .page-banner-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-services .page-banner-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(28px, 2.5vw, 48px);
  margin-bottom: 12px;
}
.page-services .page-banner-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.5;
}
.page-services .services-list-page-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  position: relative;
  z-index: 2;
  padding: clamp(50px, 10vh, 80px) 16px;
  padding-bottom: 0;
}
@media (min-width: 576px) {
  .page-services .services-list-page-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-services .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) {
  .page-services .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
  }
}
.page-services .service-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 0 4px 15px 0px rgba(0, 0, 0, 0.56);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-services .service-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px 0px rgba(0, 0, 0, 0.6);
}
.page-services .service-card:hover .service-card-link {
  color: #ffffff;
}
.page-services .service-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
@supports not (aspect-ratio: 1/1) {
  .page-services .service-card-image {
    position: relative;
    overflow: hidden;
  }
  .page-services .service-card-image::before {
    content: "";
    display: block;
    padding-bottom: 62.5%;
  }
  .page-services .service-card-image img,
  .page-services .service-card-image > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.page-services .service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-services .service-card-body {
  display: flex;
  flex-direction: column;
  padding: 24px;
  flex: 1;
}
.page-services .service-card-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.page-services .service-card-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}
.page-services .service-card-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.page-services .services-cta {
  margin-top: 40px;
  padding: 24px;
  text-align: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
@media (min-width: 576px) {
  .page-services .services-cta {
    margin-top: 60px;
    padding: 40px;
  }
}
.page-services .services-cta-text {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 24px;
}
.page-services .services-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 400px) {
  .page-services .services-cta-buttons {
    flex-direction: row;
    gap: 16px;
  }
}
.page-services .services-cta .btn {
  background: #4A7E63;
  background: linear-gradient(190deg, rgb(74, 126, 99) 0%, rgb(41, 98, 65) 50%, rgb(38, 70, 53) 100%);
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.25);
}
.page-services .services-cta .btn:hover {
  background: #385f4a;
  background: linear-gradient(190deg, rgba(74, 126, 99, 0.8) 0%, rgba(41, 98, 65, 0.8) 50%, rgba(38, 70, 53, 0.8) 100%);
}
.page-services .services-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.page-services .services-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-service-landing .service-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-service-landing .service-hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: clamp(50px, 12vh, 140px) 16px;
}
@media (min-width: 576px) {
  .page-service-landing .service-hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-service-landing .service-hero-content {
  max-width: 600px;
}
.page-service-landing .service-hero-title {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(32px, 3.2vw, 56px);
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-service-landing .service-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
  margin-bottom: 32px;
}
.page-service-landing .service-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.page-service-landing .service-hero-cta .btn {
  background: #4A7E63;
  background: linear-gradient(190deg, rgb(74, 126, 99) 0%, rgb(41, 98, 65) 50%, rgb(38, 70, 53) 100%);
  color: #ffffff;
  border: none;
}
.page-service-landing .service-hero-cta .btn:hover {
  background: #385f4a;
  transform: translateY(-2px);
}
.page-service-landing .service-hero-cta .btn.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.page-service-landing .service-hero-cta .btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}
.page-service-landing .service-hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-service-landing .service-hero-features li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-service-landing .service-hero-features li i {
  font-size: 20px;
  color: #fff;
}
.page-service-landing .service-hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.page-service-landing .service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 640px;
}
.page-service-landing .service-hero .service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  flex-wrap: wrap;
}
.page-service-landing .service-hero .service-breadcrumb a, .page-service-landing .service-hero .service-breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}
.page-service-landing .service-hero .service-breadcrumb a:hover {
  color: #ffffff;
}
.page-service-landing .service-hero .service-breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}
.page-service-landing .service-hero .service-breadcrumb i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
}
@media (max-width: 992px) {
  .page-service-landing .service-hero-inner {
    grid-template-columns: 1fr;
  }
  .page-service-landing .service-hero-image {
    order: -1;
    max-height: 300px;
  }
  .page-service-landing .service-hero-image img {
    max-height: 300px;
  }
}
.page-service-landing .service-section-title {
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 36px);
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.page-service-landing .service-intro,
.page-service-landing .service-benefits,
.page-service-landing .service-objects,
.page-service-landing .service-gallery,
.page-service-landing .service-steps,
.page-service-landing .service-trust,
.page-service-landing .service-faq,
.page-service-landing .service-other {
  position: relative;
}
.page-service-landing .service-intro-content,
.page-service-landing .service-benefits-content,
.page-service-landing .service-objects-content,
.page-service-landing .service-gallery-content,
.page-service-landing .service-steps-content,
.page-service-landing .service-trust-content,
.page-service-landing .service-faq-content,
.page-service-landing .service-other-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  position: relative;
  z-index: 2;
  padding: clamp(60px, 10vh, 100px) 16px;
  padding-top: 0;
}
@media (min-width: 576px) {
  .page-service-landing .service-intro-content,
  .page-service-landing .service-benefits-content,
  .page-service-landing .service-objects-content,
  .page-service-landing .service-gallery-content,
  .page-service-landing .service-steps-content,
  .page-service-landing .service-trust-content,
  .page-service-landing .service-faq-content,
  .page-service-landing .service-other-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-service-landing .service-intro-text {
  max-width: 800px;
}
.page-service-landing .service-intro-text .service-intro-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
}
.page-service-landing .service-intro-text p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 16px;
}
.page-service-landing .service-intro-text .service-intro-paragraph {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.page-service-landing .service-intro-text .service-intro-paragraph p {
  margin-bottom: 16px;
  color: #fff !important;
  background: unset !important;
}
.page-service-landing .service-intro-text .service-intro-paragraph p:last-child {
  margin-bottom: 0;
}
.page-service-landing .service-intro-text .service-intro-paragraph p span {
  color: #fff !important;
  background: unset !important;
  font-size: 16px !important;
}
.page-service-landing .service-intro-text .service-intro-paragraph ul, .page-service-landing .service-intro-text .service-intro-paragraph ol {
  margin: 0 0 16px 24px;
  padding: 0;
  color: #fff !important;
  background: unset !important;
}
.page-service-landing .service-intro-text .service-intro-paragraph li {
  margin-bottom: 8px;
  color: #fff !important;
  background: unset !important;
}
.page-service-landing .service-intro-text .service-intro-paragraph a {
  color: #fff !important;
  text-decoration: underline;
  background: unset !important;
}
.page-service-landing .service-intro-text .service-intro-paragraph a:hover {
  color: #9ef1bc;
}
.page-service-landing .service-intro-text .service-intro-paragraph strong {
  font-weight: 600;
}
.page-service-landing .service-intro-text .service-intro-paragraph em {
  font-style: italic;
}
.page-service-landing .service-intro-text .service-intro-paragraph h2, .page-service-landing .service-intro-text .service-intro-paragraph h3, .page-service-landing .service-intro-text .service-intro-paragraph h4 {
  font-weight: 600;
  margin: 24px 0 12px;
  color: #fff !important;
  background: unset !important;
}
.page-service-landing .service-intro-text .service-intro-paragraph h2:first-child, .page-service-landing .service-intro-text .service-intro-paragraph h3:first-child, .page-service-landing .service-intro-text .service-intro-paragraph h4:first-child {
  margin-top: 0;
}
.page-service-landing .service-intro-text .service-intro-paragraph h2 {
  font-size: 1.25em;
}
.page-service-landing .service-intro-text .service-intro-paragraph h3 {
  font-size: 1.1em;
}
.page-service-landing .service-intro-text .service-intro-paragraph h4 {
  font-size: 1em;
}
.page-service-landing .service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.page-service-landing .service-benefit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 28px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-service-landing .service-benefit-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}
.page-service-landing .service-benefit-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 126, 99, 0.3), rgba(41, 98, 65, 0.2));
  border-radius: 8px;
  margin-bottom: 20px;
}
.page-service-landing .service-benefit-card-icon i {
  font-size: 24px;
  color: #fff;
}
.page-service-landing .service-benefit-card h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 12px;
}
.page-service-landing .service-benefit-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}
.page-service-landing .service-objects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.page-service-landing .service-gallery-masonry {
  column-count: 3;
  column-gap: 20px;
}
@media (max-width: 992px) {
  .page-service-landing .service-gallery-masonry {
    column-count: 2;
  }
}
@media (max-width: 576px) {
  .page-service-landing .service-gallery-masonry {
    column-count: 1;
  }
}
.page-service-landing .service-gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.page-service-landing .service-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.page-service-landing .service-gallery-item:hover {
  border-color: rgba(74, 126, 99, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.page-service-landing .service-gallery-caption {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.5;
}
.page-service-landing .service-object-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.page-service-landing .service-object-card:hover {
  border-color: rgba(74, 126, 99, 0.5);
  background: rgba(74, 126, 99, 0.08);
}
.page-service-landing .service-object-card i {
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
}
.page-service-landing .service-object-card span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.page-service-landing .service-steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.page-service-landing .service-step {
  position: relative;
}
.page-service-landing .service-step-number {
  font-size: 48px;
  font-weight: 700;
  color: rgba(74, 126, 99, 0.4);
  line-height: 1;
  margin-bottom: 16px;
}
.page-service-landing .service-step h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 12px;
}
.page-service-landing .service-step p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
}
.page-service-landing .service-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .page-service-landing .service-trust-grid {
    grid-template-columns: 1fr;
  }
}
.page-service-landing .service-trust-item {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
.page-service-landing .service-trust-item .service-trust-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.page-service-landing .service-trust-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}
.page-service-landing .service-cta-block {
  position: relative;
  background: linear-gradient(135deg, rgba(74, 74, 126, 0.2) 0%, rgba(41, 45, 98, 0.15) 100%);
  border-top: 1px solid rgba(74, 126, 99, 0.3);
  border-bottom: 1px solid rgba(74, 126, 99, 0.3);
}
.page-service-landing .service-cta-block .bg-texture::before {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}
.page-service-landing .service-cta-block-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  position: relative;
  z-index: 2;
  padding: 60px 16px;
  text-align: center;
}
@media (min-width: 576px) {
  .page-service-landing .service-cta-block-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-service-landing .service-cta-block-title {
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  margin-bottom: 12px;
}
.page-service-landing .service-cta-block-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}
.page-service-landing .service-cta-block-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.page-service-landing .service-cta-block .btn {
  background: #4A7E63;
  background: linear-gradient(190deg, rgb(74, 126, 99) 0%, rgb(41, 98, 65) 100%);
  color: #ffffff;
  border: none;
}
.page-service-landing .service-cta-block .btn:hover {
  background: #385f4a;
  transform: translateY(-2px);
}
.page-service-landing .service-cta-block .btn.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.page-service-landing .service-cta-block .btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}
.page-service-landing .service-faq-list {
  max-width: 800px;
}
.page-service-landing .service-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}
.page-service-landing .service-faq-item summary {
  padding: 20px 24px;
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-service-landing .service-faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5);
}
.page-service-landing .service-faq-item[open] summary::after {
  content: "−";
}
.page-service-landing .service-faq-item p {
  padding: 0 24px 24px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 14px;
}
.page-service-landing .service-request {
  position: relative;
}
.page-service-landing .service-request-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: clamp(60px, 10vh, 100px) 16px;
}
@media (min-width: 576px) {
  .page-service-landing .service-request-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 992px) {
  .page-service-landing .service-request-content {
    grid-template-columns: 1fr;
  }
}
.page-service-landing .service-request-text p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 24px;
}
.page-service-landing .service-request-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-service-landing .service-request-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.page-service-landing .service-request-phone:hover {
  color: #c4e6d0;
}
.page-service-landing .service-request-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-service-landing .service-request-form input,
.page-service-landing .service-request-form textarea {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #ffffff;
  font-size: 16px;
}
.page-service-landing .service-request-form input::placeholder,
.page-service-landing .service-request-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.page-service-landing .service-request-form textarea {
  min-height: 120px;
  resize: vertical;
}
.page-service-landing .service-request-form .btn-block {
  width: 100%;
  padding: 18px;
  font-size: 16px;
}
.page-service-landing .service-request-form .btn {
  background: #4A7E63;
  background: linear-gradient(190deg, rgb(74, 126, 99) 0%, rgb(41, 98, 65) 100%);
  color: #ffffff;
  border: none;
}
.page-service-landing .service-request-form .btn:hover {
  background: #385f4a;
}
.page-service-landing .service-request-privacy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.page-service-landing .service-request-privacy label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  line-height: 1.5;
}
.page-service-landing .service-request-privacy input[type=checkbox] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: #4A7E63;
  cursor: pointer;
}
.page-service-landing .service-request-privacy a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}
.page-service-landing .service-request-privacy a:hover {
  color: #fff;
}
.page-service-landing .service-other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .page-service-landing .service-other-grid {
    grid-template-columns: 1fr;
  }
}
.page-service-landing .service-other-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-service-landing .service-other-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}
.page-service-landing .service-other-card:hover span {
  color: #ffffff;
}
.page-service-landing .service-other-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.page-service-landing .service-other-card span {
  padding: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: all 0.15s ease;
}

.page-about .page-banner {
  position: relative;
}
.page-about .page-banner-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vh, 80px) 16px;
  padding-bottom: 0;
}
@media (min-width: 576px) {
  .page-about .page-banner-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-about .page-banner-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(28px, 2.5vw, 48px);
  margin-bottom: 12px;
}
.page-about .page-banner-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.5;
}
.page-about .about-section-title {
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 36px);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.page-about .about-intro,
.page-about .about-advantages,
.page-about .about-documents,
.page-about .about-contacts {
  position: relative;
}
.page-about .about-intro-content,
.page-about .about-advantages-content,
.page-about .about-documents-content,
.page-about .about-contacts-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  position: relative;
  z-index: 2;
  padding: clamp(50px, 10vh, 80px) 16px;
  padding-bottom: 0;
}
@media (min-width: 576px) {
  .page-about .about-intro-content,
  .page-about .about-advantages-content,
  .page-about .about-documents-content,
  .page-about .about-contacts-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-about .about-intro-text {
  max-width: 800px;
}
.page-about .about-intro-text .about-intro-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
  line-height: 1.7;
}
.page-about .about-intro-text p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 16px;
}
.page-about .about-advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) {
  .page-about .about-advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
}
.page-about .about-advantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 28px 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-about .about-advantage-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}
.page-about .about-advantage-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.page-about .about-advantage-card-icon img {
  max-height: 64px;
  object-fit: contain;
}
.page-about .about-advantage-card h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 12px;
}
.page-about .about-advantage-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.page-about .about-documents-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.page-about .about-documents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) {
  .page-about .about-documents-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
}
.page-about .about-document-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 28px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-about .about-document-card:hover {
  border-color: rgba(74, 126, 99, 0.5);
  background: rgba(74, 126, 99, 0.08);
}
.page-about .about-document-card:hover .about-document-link {
  color: #fff;
}
.page-about .about-document-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 126, 99, 0.25), rgba(41, 98, 65, 0.15));
  border-radius: 8px;
  margin-bottom: 20px;
}
.page-about .about-document-card-icon i {
  font-size: 28px;
  color: #fff;
}
.page-about .about-document-card h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 12px;
}
.page-about .about-document-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.page-about .about-document-card-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.page-about .about-contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 576px) {
  .page-about .about-contacts-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
}
.page-about .about-contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-about .about-contact-card:hover {
  border-color: rgba(74, 126, 99, 0.5);
  background: rgba(74, 126, 99, 0.08);
  color: #ffffff;
}
.page-about .about-contact-card i {
  font-size: 28px;
  color: #fff;
}

.page-contacts .page-banner {
  position: relative;
  min-height: clamp(200px, 40vh, 280px);
}
@media (min-width: 768px) {
  .page-contacts .page-banner {
    min-height: 280px;
  }
}
.page-contacts .page-banner-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(200px, 40vh, 280px);
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vh, 80px) 16px;
}
@media (min-width: 576px) {
  .page-contacts .page-banner-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-contacts .page-banner-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(28px, 2.5vw, 48px);
  margin-bottom: 12px;
}
.page-contacts .page-banner-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.5;
}

.page-document .page-banner {
  position: relative;
  min-height: clamp(200px, 40vh, 280px);
}
@media (min-width: 768px) {
  .page-document .page-banner {
    min-height: 280px;
  }
}
.page-document .page-banner-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(200px, 40vh, 280px);
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vh, 80px) 16px;
}
@media (min-width: 576px) {
  .page-document .page-banner-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-document .page-banner-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(28px, 2.5vw, 48px);
  margin-bottom: 0;
}
.page-document .page-content {
  position: relative;
}
.page-document .page-content-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  position: relative;
  z-index: 2;
  padding: clamp(50px, 10vh, 80px) 16px;
  max-width: 900px;
}
@media (min-width: 576px) {
  .page-document .page-content-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-document .page-content-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}
.page-document .page-content-text h2 {
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 24px);
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.page-document .page-content-text h2:first-child {
  margin-top: 0;
}
.page-document .page-content-text p {
  margin-bottom: 16px;
}

.page-news .page-banner {
  position: relative;
  min-height: clamp(200px, 40vh, 280px);
}
@media (min-width: 768px) {
  .page-news .page-banner {
    min-height: 280px;
  }
}
.page-news .page-banner-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(200px, 40vh, 280px);
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vh, 80px) 16px;
}
@media (min-width: 576px) {
  .page-news .page-banner-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-news .page-banner-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(28px, 2.5vw, 48px);
  margin-bottom: 12px;
}
.page-news .page-banner-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.5;
}
.page-news .news-list-section {
  position: relative;
}
.page-news .news-list-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vh, 80px) 16px;
}
@media (min-width: 576px) {
  .page-news .news-list-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-news .news-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 576px) {
  .page-news .news-list-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
  }
}
.page-news .news-card {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 0 4px 15px 0px rgba(0, 0, 0, 0.56);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-news .news-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px 0px rgba(0, 0, 0, 0.6);
}
.page-news .news-card:hover .news-card-more {
  color: rgb(255, 255, 255);
}
.page-news .news-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.page-news .news-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
@supports not (aspect-ratio: 1/1) {
  .page-news .news-card-image {
    position: relative;
    overflow: hidden;
  }
  .page-news .news-card-image::before {
    content: "";
    display: block;
    padding-bottom: 62.5%;
  }
  .page-news .news-card-image img,
  .page-news .news-card-image > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.page-news .news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news .news-card-body {
  display: flex;
  flex-direction: column;
  padding: 20px;
  flex: 1;
}
.page-news .news-card-date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 10px;
}
.page-news .news-card-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-news .news-card-excerpt {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-news .news-card-more {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}

.page-news-item .news-item {
  position: relative;
}
.page-news-item .news-item-header {
  position: relative;
}
.page-news-item .news-item-header-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vh, 80px) 16px clamp(24px, 4vh, 40px);
}
@media (min-width: 576px) {
  .page-news-item .news-item-header-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-news-item .news-item-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}
.page-news-item .news-item-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.15s ease;
}
.page-news-item .news-item-breadcrumb a:hover {
  color: #4A7E63;
}
.page-news-item .news-item-breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
}
.page-news-item .news-item-breadcrumb i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}
.page-news-item .news-item-date {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 16px;
}
.page-news-item .news-item-title {
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 40px);
  line-height: 1.2;
  margin-bottom: 20px;
}
.page-news-item .news-item-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
}
.page-news-item .news-item-media {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  padding: 0 16px clamp(40px, 6vh, 60px);
  position: relative;
  z-index: 2;
}
@media (min-width: 576px) {
  .page-news-item .news-item-media {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-news-item .news-item-media img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.page-news-item .news-item-body {
  position: relative;
}
.page-news-item .news-item-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  max-width: 800px;
  padding: 0 16px clamp(60px, 10vh, 80px);
  position: relative;
  z-index: 2;
}
@media (min-width: 576px) {
  .page-news-item .news-item-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-news-item .news-item-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.page-news-item .news-item-content h2 {
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 28px);
  margin: 40px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.page-news-item .news-item-content ul {
  margin: 0 0 24px;
  padding-left: 24px;
}
.page-news-item .news-item-content ul li {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 8px;
}
.page-news-item .news-item-content a {
  color: #fff;
  text-decoration: none;
  transition: all 0.15s ease;
}
.page-news-item .news-item-content a:hover {
  text-decoration: underline;
}
.page-news-item .news-item-cta {
  margin-top: 40px;
}
.page-news-item .news-item-footer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  padding: 0 16px clamp(40px, 6vh, 60px);
  position: relative;
  z-index: 2;
}
@media (min-width: 576px) {
  .page-news-item .news-item-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-news-item .news-item-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.page-news-item .news-item-back:hover {
  color: #4A7E63;
}
.page-news-item .news-item-back:hover i {
  transform: translateX(-4px);
}
.page-news-item .news-item-back i {
  font-size: 20px;
  transition: all 0.15s ease;
}
