﻿:root {
  --font-sans: 'Inter Tight', 'Inter Tight Fallback', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-serif: 'Podkova', 'Podkova Fallback', Georgia, serif;
  --color-text: #333;
  --color-text-dark: #232323;
  --color-bg: #fff;
  --color-bg-soft: #f7f7f7;
  --color-bg-dark: #283c28;
  --color-primary: #0f96dc;
  --color-success: #28a745;
  --color-success-dark: #1f7a32;
  --color-info-bg: #e8f0fe;
  --color-info-text: #1a3c6e;
  --color-ok-bg: #d4edda;
  --color-ok-text: #155724;
  --color-err-bg: #f8d7da;
  --color-err-text: #721c24;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
h1 { font-size: calc(1.375rem + 1.5vw); }
h2 { font-size: calc(1.325rem + 0.9vw); }
h3 { font-size: calc(1.3rem + 0.6vw); }
h4 { font-size: calc(1.275rem + 0.3vw); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }
@media (min-width: 1200px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.5rem; }
}
p          { margin-top: 0; margin-bottom: 1rem; }
ol, ul     { margin-top: 0; margin-bottom: 1rem; }
b, strong  { font-weight: 600; }
small      { font-size: 0.875em; }
button     { font-family: inherit; font-size: inherit; line-height: inherit; }
button:focus { outline: none; }
[hidden]   { display: none !important; }

.container,
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 12px;
  padding-left: 12px;
}
@media (min-width: 576px)  { .container { max-width: 540px; } }
@media (min-width: 768px)  { .container { max-width: 720px; } }
@media (min-width: 992px)  { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}
.row > * {
  box-sizing: border-box;
  padding-right: 12px;
  padding-left: 12px;
}
[class*="col-"] { width: 100%; }

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

@media (min-width: 576px) {
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
}
@media (min-width: 768px) {
  .col-md-6  { flex: 0 0 50%;  max-width: 50%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}
@media (min-width: 992px) {
  .col-lg-2  { flex: 0 0 16.6667%; max-width: 16.6667%; }
  .col-lg-3  { flex: 0 0 25%;      max-width: 25%; }
  .col-lg-4  { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-lg-6  { flex: 0 0 50%;      max-width: 50%; }
  .col-lg-8  { flex: 0 0 66.6667%; max-width: 66.6667%; }
  .col-lg-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
  .col-lg-12 { flex: 0 0 100%;     max-width: 100%; }
}

.d-block        { display: block !important; }
.d-flex         { display: flex !important; }
.justify-content-center { justify-content: center !important; }
.w-100          { width: 100% !important; }

.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.p-2  { padding: 0.5rem !important; }

.text-muted { color: #6c757d !important; }
.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-group { margin-bottom: 1rem; }
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-family: inherit;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-control:focus { outline: 0; }
.form-text { display: block; margin-top: 0.25rem; font-size: 0.875em; }
label { display: inline-block; }

.carousel { position: relative; }
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-item {
  display: none;
  width: 100%;
}
.carousel-item.active {
  display: block;
}

.carousel-fade .carousel-inner { display: grid; }
.carousel-fade .carousel-item {
  display: block;
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0s linear 0.6s;
}
.carousel-fade .carousel-item.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease-in-out, visibility 0s;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  color: #fff;
  text-align: center;
}

.carousel-control-prev,
.carousel-control-next,
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
  z-index: 5;
}
.carousel-control-prev,
.carousel-control.carousel-control-prev { left: 0; }
.carousel-control-next,
.carousel-control.carousel-control-next { right: 0; }
.carousel-control-prev:hover,
.carousel-control-next:hover,
.carousel-control:hover { color: #fff; opacity: 0.9; }

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0 15% 1rem;
  list-style: none;
}
.carousel-indicators li,
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin: 0 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
.carousel-indicators .active { opacity: 1; }

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link { display: block; }
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  cursor: pointer;
}
.collapse:not(.show) { display: none; }

@media (min-width: 992px) {
  .navbar-expand-lg { flex-wrap: nowrap; justify-content: flex-start; }
  .navbar-expand-lg .navbar-nav { flex-direction: row; }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler { display: none; }
}

.navbar-fixed-top {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1030;
}

.dropdown { position: relative; }
.dropdown-toggle {
  cursor: pointer;
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown.show > .dropdown-menu,
.dropdown.open > .dropdown-menu { display: block; }
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 350;
  color: #212529;
  text-align: inherit;
  background: 0 0;
  border: 0;
  text-decoration: none;
}

@font-face {
  font-family: 'Inter Tight Fallback';
  src: local('Arial');
  size-adjust: 107%;
  ascent-override: 92%;
  descent-override: 23%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Podkova Fallback';
  src: local('Georgia');
  size-adjust: 96%;
  ascent-override: 95%;
  descent-override: 25%;
  line-gap-override: 0%;
}

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

html {
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font-sans);
  font-weight: 350;
  line-height: 1.5;
  color: var(--color-text-dark);
  background-color: #333;
  overflow-x: hidden;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s, background-size 0.3s ease;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
}
a:hover,
a:focus,
a:active { text-decoration: none; background-size: 100% 1px; }
img { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }

section {
  position: relative;
  background-color: #fff;
  border-radius: 0.6rem;
  margin: 3px 4px;
  word-wrap: break-word;
}

.display-1 {
  font-family: var(--font-serif);
  font-size: 4.4rem;
  font-weight: 400;
  line-height: 1;
}
.display-2,
.display-4,
.display-5,
.display-7 {
  font-family: var(--font-sans);
  font-weight: 350;
}
.display-2 { font-size: 3rem;    line-height: 1; }
.display-4 { font-size: 1rem;    line-height: 1.5; }
.display-5 { font-size: 1.9rem;  line-height: 1.5; }
.display-7 { font-size: 1.25rem; line-height: 1.3; }

@media (max-width: 767.98px) {
  .display-1 { font-size: clamp(2.2rem, 6vw, 3.1rem); }
  .display-2 { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  .display-5 { font-size: clamp(1.3rem, 4vw, 1.5rem); }
  .display-7 { font-size: clamp(1rem, 3vw, 1.1rem); }
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .display-1 { font-size: clamp(2.5rem, 4vw, 4rem); }
  .display-2 { font-size: clamp(2rem, 3vw, 2.8rem); }
}

.align-center { text-align: center; }
.align-left   { text-align: left; }
.text-white    { color: #fafafa !important; }
a.text-white   { text-decoration: none; }
a.text-white:hover { text-decoration: none; }
.text-secondary { color: #333 !important; }
.text-primary  { color: #0f96dc !important; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-width: 2px;
  border-style: solid;
  border-radius: 100px;
  padding: 0.7rem 1.5rem;
  white-space: normal;
  word-break: break-word;
  transition: all 0.25s;
  cursor: pointer;
  font-family: var(--font-sans);
}
.btn-white,
.btn-white-outline {
  background: #fff;
  border-color: #fff;
  color: #fff;
}

.sec-btn { margin: -0.6rem; font-size: 0; }
.sec-btn .btn { margin: 0.6rem; }

.navbar-dropdown {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: all 0.3s;
  border: none;
  box-shadow: none;
}

.navbar-dropdown.navbar-short {
  background: #fff;
}
.navbar-dropdown .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  height: 90px;
  padding: 0.5rem 0.6rem;
  border-radius: 100vw;
  transition: height 0.3s;
}
.navbar-dropdown.navbar-short .container {
  height: 72px;
}
.navbar-brand {
  flex-shrink: 0;
  margin-right: 0;
  padding: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  background-image: none !important;
}
.navbar-brand:hover { background-size: 0 0 !important; }
.navbar-brand a,
.navbar-logo a {
  background-image: none !important;
  background-size: 0 0 !important;
}
.navbar-brand img { border-radius: 0 !important; }
.navbar-logo {
  padding-left: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
}
.navbar-nav {
  margin: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
}
.navbar-nav .nav-item { padding: 0; }
.navbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  padding: 16px !important;
  background: none !important;
  border-radius: 0;
  background-image: linear-gradient(currentColor, currentColor) !important;
  background-repeat: no-repeat !important;
  background-position: 16px calc(100% - 12px) !important;
  background-size: 0 1px !important;
  transition: background-size 0.3s ease, color 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus { background-size: calc(100% - 32px) 1px !important; }
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.iconfont-wrapper:focus,
.iconfont-wrapper:active,
.navbar-toggler:focus,
.dropdown-item:focus,
.dropdown-item:active {
  outline: none;
  box-shadow: none;
}

.navbar-dropdown .nav-link { color: #fff !important; }
.navbar-dropdown.navbar-short .nav-link { color: #333 !important; }

.icons-menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 0.3rem 1rem;
}
.iconfont-wrapper {
  color: #fff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  background-image: none !important;
  transition: color 0.3s, opacity 0.3s, transform 0.3s;
}
.iconfont-wrapper:hover {
  opacity: 0.75;
  background-size: 0 0 !important;
}
.navbar-short .iconfont-wrapper {
  color: #333 !important;
}

button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  position: relative;
  align-self: center;
  background: transparent;
  border: none;
  margin-left: 12px;
  order: 1000;
}
.hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  background: #fff;
  transition: all 0.2s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 8px; }
.hamburger span:nth-child(4) { top: 16px; }
nav.opened .hamburger span:nth-child(1) { top: 8px; width: 0; opacity: 0; right: 50%; }
nav.opened .hamburger span:nth-child(2) { transform: rotate(45deg); }
nav.opened .hamburger span:nth-child(3) { transform: rotate(-45deg); }
nav.opened .hamburger span:nth-child(4) { top: 8px; width: 0; opacity: 0; right: 50%; }
.navbar-short .hamburger span { background: #333; }

.navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
  padding: 12px 4px;
  border-radius: 1.5rem;
  background: #fff;
  min-width: auto;
}
.dropdown-item {
  padding: 12px;
  border-radius: 0.5rem;
  margin: 0 8px;
  transition: background 0.3s;
}
.dropdown-item:hover { background: rgba(27, 31, 10, 0.06); }
.dropdown-item.active,
.dropdown-item:active { background: transparent; }
.navbar .dropdown.open > .dropdown-menu { display: flex; }

.navbar-dropdown .navbar-brand img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s, height 0.3s;
}
.navbar-dropdown.navbar-short .navbar-brand img {
  filter: none;
  height: 1.6rem !important;
}

/* Always-solid navbar (eds pages) */
body.page-solid-nav .navbar-dropdown { background: #fff; }
body.page-solid-nav .navbar-dropdown .container { height: 72px; }
body.page-solid-nav .navbar-dropdown .nav-link { color: #333 !important; }
body.page-solid-nav .iconfont-wrapper { color: #333 !important; }
body.page-solid-nav .hamburger span { background: #333; }
body.page-solid-nav .navbar-dropdown .navbar-brand img {
  filter: none;
  height: 1.6rem !important;
}

@media (max-width: 991.98px) {
  .navbar { min-height: 72px; }
  .navbar-brand { margin-right: auto; }
  .navbar-dropdown .container {
    width: 95%;
    height: 56px;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .navbar .navbar-logo { padding-left: 0; }
  .navbar .navbar-logo img { height: 2rem !important; }
  .navbar-toggler { margin-right: 0.5rem; }
  
  .navbar-dropdown.opened { background: #fff; }
  .navbar-dropdown.opened .navbar-brand img { filter: none; }
  .navbar-dropdown.opened .hamburger span { background: #333; }
  .navbar-collapse {
    z-index: -1;
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 0;
    background: #fff;
  }
  .navbar-collapse .nav-link { color: #333 !important; }
  .navbar-collapse .iconfont-wrapper { color: #333 !important; }
  .navbar .dropdown > .dropdown-menu {
    max-width: 100%;
    transform: none;
    top: 10px; left: 0;
    border-radius: 1rem;
    background: rgba(27, 31, 10, 0.04);
  }
  .icons-menu {
    justify-content: flex-start;
    padding: 0.5rem 0;
  }
}

.section-hero {
  background: #333;
  padding: 0;
}
.section-hero .carousel { width: 100%; }
.section-hero .carousel-inner {
  display: grid;
  align-items: center;
}
.section-hero .carousel-item img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  border-radius: 0.6rem;
  filter: brightness(60%);
}
.section-hero .item-wrapper {
  width: 100%;
  border-radius: 0.6rem;
}
.section-hero .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  bottom: auto;
  right: auto;
}
.section-hero .carousel-control {
  top: 50%;
  width: 60px; height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  display: none;
}
.section-hero .carousel-control:hover {
  background: #1b1b1b;
  opacity: 1;
}
.section-hero .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem;
}
.section-hero .carousel-indicators li {
  width: 10px; height: 10px;
  margin: 5px;
  background: transparent !important;
  border: 2px solid #fff !important;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.section-hero .carousel-indicators li.active { background: #fff !important; }
.section-hero .carousel-indicators li::after,
.section-hero .carousel-indicators li::before { background: #fff !important; }

.section-hero .display-1 { font-size: 60px; line-height: 60px; }
@media (max-width: 767.98px) { .section-hero .display-1 { font-size: 52px; line-height: 52px; } }
@media (min-width: 1400px)   { .section-hero .display-1 { font-size: 70px; line-height: 70px; } }

.section-hero .btn {
  background: #fff !important;
  color: #222 !important;
  border-width: 1px !important;
  font-weight: 350 !important;
  padding: 0.7rem 1.5rem !important;
}
.section-hero .btn:hover {
  background: transparent !important;
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .section-hero .sec-subtitle,
  .section-hero .sec-btn { text-align: center; }
}

.section-about {
  padding: 5rem 0 3rem;
  background: #283c28;
  color: #fff;
}
.section-about .sec-title,
.section-about .sec-subtitle { color: #fff; }
.section-about .sec-text { color: #fff; }

.section-about .side-features {
  display: flex;
  flex-wrap: wrap;
}
.section-about .item-wrapper {
  border-radius: 0 !important;
  background: #283c28;
  overflow: hidden;
  margin-bottom: 2rem;
  padding: 0;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.section-about .item-head {
  border-top: 2px solid #fff;
  background: #283c28;
  padding: 1.5rem 0;
}
.section-about .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #283c28;
}
.section-about .item-content p { margin-bottom: 0; }
.section-about .item-mb { margin-bottom: 1rem; }
.section-about .side-features .item { padding: 0 16px; }
@media (max-width: 767.98px) {
  .section-about .side-features {
    margin-left: -8px;
    margin-right: -8px;
  }
  .section-about .side-features .item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 8px;
  }
  .section-about .side-features .item-wrapper { margin-bottom: 1rem; }
}
.section-about .display-4,
.section-about .display-7 { font-weight: 300; }

.section-about .display-1 { font-size: 60px; line-height: 60px; }
@media (max-width: 767.98px) { .section-about .display-1 { font-size: 44px; line-height: 44px; } }
@media (min-width: 1400px)   { .section-about .display-1 { font-size: 70px; line-height: 70px; } }
.section-about .display-2 { font-size: 40px; line-height: 40px; }
@media (min-width: 1400px)   { .section-about .display-2 { font-size: 50px; line-height: 50px; } }

.section-about .btn {
  background: transparent !important;
  color: #fff !important;
  border-width: 1px !important;
  font-weight: 350 !important;
}
.section-about .btn:hover {
  background: #fff !important;
  color: #333 !important;
}
.section-about .col-lg-6 { width: 50%; }
.section-about .col-md-6 { width: 50% !important; }
@media (max-width: 991.98px) {
  .section-about .col-lg-6,
  .section-about .col-md-6 { width: 100% !important; }
  .section-about > .container > .row > .col-lg-6:first-child { margin-bottom: 2rem; }
}
@media (max-width: 767.98px) {
  .section-about { padding: 4rem 0 3rem; }
  .section-about .item-head { padding: 1rem 0; }
  .section-about .item-wrapper { margin-bottom: 1rem; }
  .section-about .item-mb { margin-bottom: 0; }
}

.section-services {
  padding: 3rem 0 1rem;
  background: #fff;
}
.section-services .sec-title { color: #232323; }
.section-services .item {
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}
.section-services .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.section-services img,
.section-services .item-img {
  border-radius: 0.6rem !important;
  filter: brightness(60%);
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
}
.section-services .item-img { margin-bottom: 0 !important; }
.section-services .item-content {
  position: absolute;
  padding: 2rem;
  bottom: 0; left: 0; right: 0;
}
.section-services .item-content-top {
  position: absolute;
  padding: 2rem;
  top: 0; left: 0; right: 0;
}
.section-services .item-content-middle {
  position: absolute;
  padding: 0 2rem;
  left: 0; right: 0;
  top: 5rem;
}
.section-services .item-content-middle .item-title {
  margin: 0 !important;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.25;
  text-align: left;
}
.section-services .item-title { color: #fff; margin-bottom: 1.5rem !important; }
.section-services .sec-text { color: #fff; }
.section-services .display-4 { font-weight: 300; font-size: 1.1rem; }
.section-services .display-5 { font-weight: 350; font-size: 1.7rem; }
.section-services .display-7 { font-weight: 300; font-size: 1.1rem; }
.section-services a { font-weight: 300; }
.section-services .content-head { max-width: 95%; }

.section-mission {
  padding: 0;
  background: #aa96ff;
}
.section-mission .sec-title {
  color: #222;
  padding: 2rem 0 1rem;
}
@media (max-width: 767.98px) { .section-mission .sec-title { padding: 0.5rem 0 0; } }
.section-mission .sec-subtitle { color: #222; }
.section-mission .display-2 {
  font-size: 40px;
  line-height: 40px;
}
@media (max-width: 767.98px) { .section-mission .display-2 { font-size: 30px; line-height: 30px; } }
@media (min-width: 1400px)   { .section-mission .display-2 { font-size: 50px; line-height: 55px; } }

.section-mission .row { padding: 1rem 0 3rem; }
@media (max-width: 767.98px) { .section-mission .row { padding: 0 0 3rem; } }
@media (min-width: 1400px) {
  .section-mission .row { padding: 2rem 0 3rem; }
  .section-mission .container { max-width: 90%; }
}

.section-mission .btn {
  background: transparent !important;
  color: #222 !important;
  border: 1px solid #222 !important;
  font-weight: 350 !important;
}
.section-mission .btn:hover {
  background: #222 !important;
  color: #fff !important;
}

.section-privacy {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  background-color: #fff;
  background-image: url("../images/bgm-13.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767.98px) {
  .section-privacy { background-size: cover; }
}
.section-privacy .content-wrap { padding: 5rem 1rem; }
@media (min-width: 992px) { .section-privacy .content-wrap { padding: 3rem 1rem; } }
.section-privacy .sec-title { text-align: center; color: #333; }
.section-privacy .sec-text {
  text-align: left;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  color: #333;
  line-height: 1.7;
}
.section-privacy a { color: #333; }
@media (max-width: 991.98px) {
  .section-privacy { padding: 3rem 0 2rem; }
  .section-privacy .content-wrap { padding: 3rem 1rem; }
}
@media (max-width: 767.98px) {
  .section-privacy { padding: 3rem 0 2rem; }
  .section-privacy .content-wrap { width: 100%; padding: 2rem 1rem; }
}

.section-partners {
  padding: 4rem 0;
  background: #bee6f0;
}
.section-partners .sec-title { color: #222; text-align: center; }
.section-partners img { width: 100%; border-radius: 2rem !important; }
.section-partners .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.section-partners .item { padding: 0 8px; margin: 0; }
.section-partners .row { margin: 0 -8px; }
@media (max-width: 991.98px) {
  .section-partners .col-lg-2 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .section-partners .item-wrapper { margin-bottom: 1rem; }
}

.section-newsletter {
  padding: 5rem 0;
  background: #503ce6;
}
.section-newsletter .sec-title { text-align: center; color: #fff; }
.section-newsletter .btn {
  border-width: 1px !important;
  font-weight: 350 !important;
  background: transparent !important;
  color: #fff !important;
  padding: 0.7rem 1.7rem;
}
.section-newsletter .btn:hover {
  background: #fff !important;
  color: #333 !important;
}
.section-newsletter .sec-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 0rem;
}
.section-newsletter .display-2 { font-size: 40px; line-height: 40px; }
@media (max-width: 767.98px) { .section-newsletter .display-2 { font-size: 30px; line-height: 30px; } }
@media (min-width: 1400px)   { .section-newsletter .display-2 { font-size: 50px; line-height: 50px; } }

.section-footer {
  padding: 1rem 0 0;
  background: #f7f7f7;
}
.section-footer .row {
  background: #f7f7f7;
  padding: 2rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767.98px) { .section-footer .row { padding: 2rem 0.5rem; text-align: center; } }
@media (min-width: 768px) and (max-width: 991.98px) { .section-footer .row { padding: 2.25rem 1.25rem; } }

.section-footer .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767.98px) {
  .section-footer .footer-col { flex-direction: column; }
  .section-footer .ext-row { justify-content: center; }
}

.section-footer .ext-row { display: flex; flex-wrap: wrap; flex-direction: row; align-items: center; }

.section-footer .ext-item { margin: 8px; display: inline-block; }
.section-footer .ext-item a .ext-icon {
  width: 25px; height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  background: #f7f7f7;
  color: #333;
  transition: all 0.3s;
}
.section-footer .ext-item a .ext-svg { font-size: inherit; }
.section-footer .ext-item a .ext-svg svg { display: block; }
.section-footer .ext-item a:hover .ext-tg { color: #26A5E4; }
.section-footer .ext-item a:hover .ext-ig svg {
  fill: url(#ig-grad);
}
.section-footer .ext-item a:hover .ext-fb { color: #1877F2; }

.section-footer .list { color: #502274; }
@media (max-width: 991.98px) { .section-footer .list { margin-bottom: 2rem; } }

#lang-switcher .dropdown-toggle:focus,
#lang-switcher .dropdown-toggle:active,
#lang-switcher .dropdown-toggle:hover {
  box-shadow: none;
  outline: none;
  text-decoration: none;
}
#lang-switcher .dropdown-toggle,
#lang-switcher .dropdown-item {
  background-image: none !important;
  background-size: 0 0 !important;
}
#lang-switcher {
  position: relative;
}
#lang-switcher .dropdown-menu {
  min-width: auto;
  border-radius: 0.75rem;
  padding: 6px 4px;
  box-shadow: none;
  border: 1px solid #ddd;
  left: 0;
  right: auto;
  transform: none;
}
#lang-switcher .dropdown-item {
  color: #333 !important;
  border-radius: 0.5rem;
  padding: 6px 14px;
  margin: 0;
  font-weight: 300;
}
#lang-switcher .dropdown-item strong { font-weight: 300; }
#lang-switcher .dropdown-item.active strong { font-weight: 600; }
#lang-switcher .dropdown-item:hover,
#lang-switcher .dropdown-item:focus {
  background: rgba(27, 31, 10, 0.06);
  color: #333 !important;
  box-shadow: none;
  outline: none;
}
#lang-switcher .dropdown-item:active {
  background: rgba(27, 31, 10, 0.06);
  color: #333 !important;
}

.section-footer .sec-text,
.section-footer .sec-subtitle,
.section-footer .list,
.section-footer .item-wrap { color: #333; text-align: left; }
.section-footer .item-wrap a:hover { background-size: 100% 1px; }
.section-footer .copyright {
  color: #333;
  text-align: left;
  border-top: 1px solid #ccc;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 767.98px) { .section-footer .copyright { text-align: center; } }

.section-eds {
  padding: 6rem 0 3rem;
  background-color: #f7f7f7;
  border-radius: 0.6rem;
  margin: 3px 4px;
}
.section-eds .row {
  padding: 2rem 0;
}
@media (max-width: 991.98px) {
  .section-eds .row {
    padding: 1rem 0;
  }
}
@media (max-width: 767.98px) {
  .section-eds .row {
    padding: 0;
  }
}
.section-eds .form-control {
  font-family: var(--font-sans);
  border-radius: 0.5rem;
  padding: 0.7rem 1rem;
}
.section-eds .form-control[type="file"] {
  border-radius: 0.5rem;
  cursor: pointer;
}
.section-eds .form-control[type="file"]::file-selector-button,
.section-eds .form-control[type="file"]::-webkit-file-upload-button {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
  margin-right: 1rem;
  border: none;
  border-radius: 100px;
  background-color: #28a745 !important;
  color: #fff !important;
  cursor: pointer;
  transition: background-color 0.25s;
}
.section-eds .form-control[type="file"]:hover::file-selector-button,
.section-eds .form-control[type="file"]:hover::-webkit-file-upload-button {
  background-color: #1f7a32 !important;
}
/* ---- EDS buttons (shared base) ---- */
.btn-primary-eds,
.btn-success-eds {
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: 100px;
  padding: 0.6rem 2rem;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-primary-eds          { background-color: #4479d9; }
.btn-primary-eds:hover    { background-color: #3568c0; color: #fff; }
.btn-primary-eds:disabled { background-color: #a0b4d9; cursor: not-allowed; }
.btn-success-eds          { background-color: var(--color-success); }
.btn-success-eds:hover    { background-color: #218838; color: #fff; }

/* ---- EDS status (initial state in HTML) ---- */
.eds-status {
  padding: 0.8rem 1.2rem;
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  margin-top: 1rem;
}
.eds-info { background-color: var(--color-info-bg); color: var(--color-info-text); }

/* ---- EDS info section ---- */
.eds-info-section {
  background: #fff;
  border-radius: 0.6rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-sans);
}
.eds-info-section summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}
.eds-lang-tabs { display: flex; gap: 0.5rem; margin: 1rem 0; }
.eds-lang-tab {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.35rem 1rem;
  border: none;
  border-radius: 100px;
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: all 0.25s;
}
.eds-lang-tab:hover       { background-color: #dee2e6; color: var(--color-text); }
.eds-lang-tab.active      { background-color: #e9ecef; color: #555; }
.eds-lang-content         { display: none; }
.eds-lang-content.active  { display: block; }
.eds-info-body {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
}
.eds-info-body h6 { color: var(--color-text); margin-top: 1rem; font-weight: 600; }
.eds-info-body ul { padding-left: 1.2rem; }
.eds-info-body a  { color: #4479d9; }
.eds-card-section {
  background: #fff;
  border: 1px solid #e3e6ea;
  border-radius: 0.6rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* ---- Подписанты (eds_check) — единый стиль внутри .eds-card-section ---- */
#signers .card {
  background: #fff;
  border: 1px solid #e3e6ea;
  border-radius: 0.55rem;
  box-shadow: none;
  overflow: hidden;
  margin-bottom: 1rem;
}
#signers .card:last-child { margin-bottom: 0; }
#signers .card-header {
  background: #4479d9;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 0.65rem 1rem;
  border-bottom: 0;
}
#signers .card-header strong { font-weight: 700; }
#signers .card-body { padding: 0; background: #fff; }
#signers .table-responsive { margin: 0; }
#signers table {
  background: #fff;
  margin-bottom: 0;
  font-weight: 400;
  border: 0;
}
#signers table th,
#signers table td {
  padding: 0.6rem 1rem;
  vertical-align: top;
  border: 0;
  border-top: 1px solid #eef0f3;
  text-align: left;
  font-weight: 400;
  line-height: 1.45;
}
#signers table tr:first-child th,
#signers table tr:first-child td { border-top: 0; }
#signers table th {
  width: 38%;
  color: #6b7280;
  background: #fafbfc;
}
#signers table td {
  color: #1f2937;
  word-break: break-word;
}

/* ---- EDS runtime status & banner (set by JS) ---- */
.section-eds .status {
  padding: 0.8rem 1.2rem;
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  margin-top: 1rem;
}
.section-eds .status.info    { background-color: var(--color-info-bg); color: var(--color-info-text); }
.section-eds .status.success { background-color: var(--color-ok-bg);   color: var(--color-ok-text); }
.section-eds .status.error   { background-color: var(--color-err-bg);  color: var(--color-err-text); }

.section-eds .valid-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
}
.section-eds .valid-banner .icon { font-size: 1.5rem; }
.section-eds .valid-banner.ok   { background-color: var(--color-ok-bg);  color: var(--color-ok-text); }
.section-eds .valid-banner.fail { background-color: var(--color-err-bg); color: var(--color-err-text); }

.section-footer h5 { color: #333; }
.section-footer .mt-5 { margin-top: 0 !important; }

.form-control {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.3;
  border-radius: 40px !important;
}
.form-control:hover,
.form-control:focus {
  box-shadow: 0 1px 1px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.03);
  border-color: #0f96dc !important;
}

@media (max-width: 1399.98px) { .container { max-width: 100%; } }
@media (min-width: 768px) and (max-width: 1399.98px) {
  .container, .container-fluid { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 767.98px) {
  .container-fluid { padding-left: 16px; padding-right: 16px; }
}

img,
.item-wrapper { border-radius: 1rem; }

.is-fullscreen {
  display: flex;
  align-items: center;
  min-height: 100vh;
}