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

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}

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

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px 20px;
  background: #1a1d20;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  z-index: 9999;
  transform: translateY(-110%);
  transition: transform 0.25s ease;
}
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid #e8f27a;
  outline-offset: 2px;
}

:focus-visible {
  outline: 3px solid #e8f27a;
  outline-offset: 2px;
  border-radius: 2px;
}

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

main:focus {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.placeholder {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #dcdcdc;
  color: transparent;
}
.placeholder--logo {
  width: 200px;
  height: 56px;
  flex-shrink: 0;
}
.placeholder--icon {
  width: 48px;
  height: 48px;
}
.placeholder--square {
  aspect-ratio: 1/1;
}
.placeholder--wide {
  aspect-ratio: 16/9;
}
.placeholder--tall {
  aspect-ratio: 3/4;
}
.placeholder--hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: stretch;
  height: 48px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn__label {
  display: flex;
  align-items: center;
  padding-inline: 24px 16px;
}
.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  background-color: transparent;
}
.btn__icon svg {
  width: 14px;
  height: 14px;
}
.btn--primary {
  background-color: #e8f27a;
  color: #1a1d20;
  border-color: #e8f27a;
}
.btn--primary .btn__icon {
  color: #1a1d20;
}
.btn--primary:hover {
  background-color: #d4e052;
  border-color: #d4e052;
}
.btn--outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #e8f27a;
}
.btn--outline .btn__icon {
  color: #ffffff;
}
.btn--outline:hover {
  background-color: rgba(232, 242, 122, 0.12);
}
.btn--outline-dark {
  background-color: transparent;
  color: #1a1d20;
  border-color: #1a1d20;
}
.btn--outline-dark .btn__icon {
  color: #1a1d20;
}
.btn--outline-dark:hover {
  background-color: rgba(26, 29, 32, 0.06);
}

.page-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.page-label__line {
  flex-shrink: 0;
  width: 32px;
  height: 3px;
  background-color: #e8f27a;
}
.page-label__text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1d20;
}
.page-label--light .page-label__text {
  color: #e8f27a;
}
.page-label--no-line .page-label__line {
  display: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 88px;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(26, 29, 32, 0.06);
}
.header__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .header__container {
    padding-inline: 16px;
  }
}
.header__container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.header__logo {
  display: block;
  flex-shrink: 0;
}
.header__nav {
  display: flex;
  justify-content: center;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__menu-item {
  position: relative;
}
.header__menu-item--dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}
.header__menu-item--dropdown:hover .header__dropdown, .header__menu-item--dropdown.is-open .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header__menu-item--dropdown:hover .header__menu-link, .header__menu-item--dropdown.is-open .header__menu-link {
  color: #1a1d20;
}
.header__menu-item--dropdown:hover .header__menu-link::after, .header__menu-item--dropdown.is-open .header__menu-link::after {
  transform: scaleX(1);
}
.header__menu-item--dropdown:hover .header__menu-chevron, .header__menu-item--dropdown.is-open .header__menu-chevron {
  transform: rotate(180deg);
}
.header__menu-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1d20;
  transition: color 0.25s ease;
  position: relative;
  padding-block: 8px;
  white-space: nowrap;
}
.header__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #e8f27a;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.header__menu-link:hover, .header__menu-link.is-active {
  color: #1a1d20;
}
.header__menu-link:hover::after, .header__menu-link.is-active::after {
  transform: scaleX(1);
}
.header__menu-chevron {
  width: 10px;
  height: 10px;
  transition: transform 0.25s ease;
}
.header__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  transform: translateY(8px);
  min-width: 280px;
  padding: 8px 0;
  background-color: #ffffff;
  border: none;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(26, 29, 32, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  overflow: visible;
}
.header__dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  transform: rotate(45deg);
  box-shadow: -2px -2px 4px rgba(26, 29, 32, 0.04);
}
.header__dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1d20;
  position: relative;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.header__dropdown-link svg {
  flex-shrink: 0;
  color: #888888;
  transition: transform 0.25s ease, color 0.25s ease;
}
.header__dropdown-link:hover {
  background-color: #f4f4f4;
  color: #1a1d20;
}
.header__dropdown-link:hover svg {
  color: #1a1d20;
  transform: translateX(3px);
}
.header__dropdown-link.is-active {
  background-color: #f4f4f4;
  color: #1a1d20;
}
.header__dropdown li:not(:last-child) .header__dropdown-link::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background-color: rgba(26, 29, 32, 0.1);
}
.header__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  height: 48px;
  padding-inline: 20px;
  background-color: #e8f27a;
  border-radius: 0;
  color: #1a1d20;
  text-align: center;
  transition: background-color 0.25s ease;
}
.header__phone:hover {
  background-color: #d4e052;
}
.header__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header__phone-icon svg {
  width: 22px;
  height: 22px;
}
.header__phone-number {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  margin-left: auto;
}
.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1a1d20;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.header__burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header__overlay {
  display: none;
}
.header__mobile-cta {
  display: none;
}
@media (max-width: 1100px) {
  .header__container {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }
  .header__burger {
    display: flex;
    grid-column: 3;
  }
  .header__phone {
    display: none;
  }
  .header__nav {
    position: fixed;
    inset: 88px 0 0 0;
    z-index: 1002;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px;
    background-color: #ffffff;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .header__nav.is-open {
    transform: translateX(0);
  }
  .header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .header__menu-item {
    border-bottom: 1px solid rgba(26, 29, 32, 0.08);
  }
  .header__menu-item--dropdown::after {
    display: none;
  }
  .header__menu-item--dropdown:hover .header__dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
  }
  .header__menu-item--dropdown.is-open .header__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .header__menu-link {
    width: 100%;
    justify-content: space-between;
    padding-block: 18px;
    font-size: 15px;
    font-weight: 700;
  }
  .header__menu-link::after {
    display: none;
  }
  .header__dropdown {
    position: static;
    min-width: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 0.25s ease, visibility 0.25s ease;
  }
  .header__dropdown::before {
    display: none;
  }
  .header__menu-item--dropdown.is-open .header__dropdown {
    max-height: min(400px, 60vh);
    overflow-y: auto;
    visibility: visible;
  }
  .header__dropdown-link {
    width: 100%;
    padding: 14px 20px;
    font-size: 13px;
    background-color: transparent;
  }
  .header__dropdown li:not(:last-child) .header__dropdown-link::after {
    left: 20px;
    right: 20px;
  }
  .header__overlay {
    display: block;
    position: fixed;
    inset: 88px 0 0 0;
    z-index: 1001;
    background-color: rgba(26, 29, 32, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .header__overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header__mobile-cta {
    display: flex;
    margin-top: 24px;
  }
  .header__phone--mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    padding-inline: 20px;
  }
  .header__phone--mobile .header__phone-number {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .header {
    height: 64px;
  }
  .header__nav {
    inset: 64px 0 0 0;
    padding: 16px;
  }
  .header__overlay {
    inset: 64px 0 0 0;
  }
}

body {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: max(640px, 100vh - 88px);
  background-color: #1a1d20;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 29, 32, 0.94) 0%, rgba(26, 29, 32, 0.82) 38%, rgba(26, 29, 32, 0.45) 62%, rgba(26, 29, 32, 0.15) 100%);
}
.hero__body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: max(640px, 100vh - 88px);
  padding-block: 64px 160px;
}
.hero__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .hero__container {
    padding-inline: 16px;
  }
}
.hero__container {
  width: 100%;
}
.hero__content-inner {
  max-width: 620px;
}
.hero__title {
  margin-bottom: 32px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
  color: #ffffff;
}
.hero__title-line {
  display: block;
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: -0.02em;
}
.hero__title-line--accent {
  color: #e8f27a;
}
.hero__features {
  margin-bottom: 40px;
}
.hero__features li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
}
.hero__features li:last-child {
  margin-bottom: 0;
}
.hero__check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 2px solid #e8f27a;
  border-radius: 50%;
}
.hero__check svg {
  width: 11px;
  height: 11px;
  color: #e8f27a;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 1200px) {
  .hero__body {
    padding-bottom: 48px;
  }
}
@media (max-width: 992px) {
  .hero {
    min-height: auto;
  }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(26, 29, 32, 0.35) 0%, rgba(26, 29, 32, 0.88) 55%, rgba(26, 29, 32, 0.95) 100%);
  }
  .hero__body {
    align-items: flex-end;
    min-height: max(560px, 100vh - 88px);
    padding-block: 48px;
  }
  .hero__content-inner {
    max-width: none;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .hero__body {
    align-items: center;
    min-height: auto;
    padding-block: 40px 48px;
  }
}

.hero-wrap {
  position: relative;
}

.hero-services {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: #1a1d20;
  padding-block: 20px;
}
.hero-services__inner {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .hero-services__inner {
    padding-inline: 16px;
  }
}
.hero-services__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.hero-services__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 20px;
}
.hero-services__item:first-child {
  padding-left: 0;
}
.hero-services__item:last-child {
  padding-right: 0;
}
.hero-services__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  right: 0;
  width: 1px;
  background-color: rgba(232, 242, 122, 0.35);
}
.hero-services__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  color: #ffffff;
}
.hero-services__icon svg {
  width: 32px;
  height: 32px;
}
.hero-services__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding-top: 2px;
}
.hero-services__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.25;
}
.hero-services__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 10px;
  background-color: #e8f27a;
}
.hero-services__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 1200px) {
  .hero-services {
    position: static;
    padding-block: 24px;
  }
  .hero-services__inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-services__item {
    padding: 12px 16px;
  }
  .hero-services__item:not(:last-child)::after {
    display: none;
  }
  .hero-services__item:nth-child(1)::after, .hero-services__item:nth-child(2)::after, .hero-services__item:nth-child(4)::after {
    display: block;
  }
  .hero-services__item:nth-child(3)::after {
    display: none;
  }
  .hero-services__item:nth-child(1)::before, .hero-services__item:nth-child(2)::before, .hero-services__item:nth-child(3)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: rgba(232, 242, 122, 0.35);
  }
  .hero-services__title {
    font-size: 13px;
  }
  .hero-services__desc {
    font-size: 13px;
  }
}
@media (max-width: 992px) {
  .hero-services {
    padding-block: 24px;
  }
  .hero-services__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-services__item::after {
    display: none !important;
  }
  .hero-services__item:nth-child(1)::before, .hero-services__item:nth-child(2)::before, .hero-services__item:nth-child(3)::before, .hero-services__item:nth-child(4)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: rgba(232, 242, 122, 0.35);
  }
}
@media (max-width: 576px) {
  .hero-services {
    padding-block: 20px;
  }
  .hero-services__inner {
    grid-template-columns: 1fr;
  }
  .hero-services__item {
    padding-inline: 0;
  }
  .hero-services__item::after {
    display: none !important;
  }
  .hero-services__item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: rgba(232, 242, 122, 0.35);
  }
}

.authorized {
  background-color: #ffffff;
  padding-block: 56px;
}
.authorized__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .authorized__container {
    padding-inline: 16px;
  }
}
.authorized__top {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 36px;
}
.authorized__label {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1d20;
  white-space: nowrap;
}
.authorized__logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px 40px;
  width: 100%;
}
.authorized__logo {
  display: block;
  width: auto;
  height: 56px;
  max-width: 160px;
  object-fit: contain;
}
.authorized__action {
  display: flex;
  justify-content: center;
}
.authorized__btn {
  display: inline-flex;
  align-items: stretch;
  height: 52px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1d20;
  background-color: transparent;
  border: 2px solid rgba(26, 29, 32, 0.2);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.authorized__btn-label {
  display: flex;
  align-items: center;
  padding-inline: 28px 12px;
}
.authorized__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: auto;
  padding-right: 24px;
}
.authorized__btn-icon svg {
  width: 14px;
  height: 14px;
}
.authorized__btn:hover {
  border-color: #1a1d20;
  background-color: rgba(26, 29, 32, 0.04);
}
@media (max-width: 992px) {
  .authorized {
    padding-block: 44px;
  }
  .authorized__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 32px;
  }
  .authorized__label {
    white-space: normal;
  }
  .authorized__logos {
    gap: 24px 32px;
  }
  .authorized__logo {
    height: 48px;
    max-width: 140px;
  }
  .authorized__btn {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .authorized {
    padding-block: 36px;
  }
  .authorized__label {
    font-size: 15px;
  }
  .authorized__logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .authorized__logo {
    justify-self: center;
    width: 100%;
    max-width: 160px;
    height: 48px;
  }
  .authorized__btn {
    width: 100%;
  }
}

.audience {
  background-color: #ffffff;
  padding-block: 72px;
}
.audience__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .audience__container {
    padding-inline: 16px;
  }
}
.audience__heading {
  margin-bottom: 48px;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
  color: #1a1d20;
}
.audience__heading span {
  color: #e8f27a;
}
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.audience__card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(26, 29, 32, 0.15);
  border-radius: 4px;
  overflow: hidden;
}
.audience__media {
  position: relative;
}
.audience__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
}
.audience__media-icon {
  position: absolute;
  left: 16px;
  bottom: -20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #e8f27a;
  color: #1a1d20;
}
.audience__media-icon svg {
  width: 22px;
  height: 22px;
}
.audience__body {
  flex: 1;
  padding: 28px 20px 22px;
}
.audience__title {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1a1d20;
  line-height: 1.3;
}
.audience__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 12px;
  background-color: #e8f27a;
}
.audience__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1d20;
}
.audience__list li:last-child {
  margin-bottom: 0;
}
.audience__check {
  display: flex;
  flex-shrink: 0;
  margin-top: 3px;
  color: #e8f27a;
}
.audience__check svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 992px) {
  .audience {
    padding-block: 56px;
  }
  .audience__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: none;
    margin-inline: 0;
  }
}
@media (max-width: 576px) {
  .audience {
    padding-block: 48px;
  }
  .audience__heading {
    margin-bottom: 36px;
  }
  .audience__body {
    padding-inline: 16px;
  }
  .audience__media-icon {
    width: 40px;
    height: 40px;
    left: 14px;
    bottom: -18px;
  }
  .audience__media-icon svg {
    width: 20px;
    height: 20px;
  }
  .audience__title {
    font-size: 15px;
  }
}

.chamber {
  position: relative;
  min-height: 380px;
  background-color: #1a1d20;
}
.chamber__bg {
  position: absolute;
  inset: 0;
}
.chamber__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chamber__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 29, 32, 0.94) 0%, rgba(26, 29, 32, 0.82) 38%, rgba(26, 29, 32, 0.45) 62%, rgba(26, 29, 32, 0.15) 100%);
}
.chamber__body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 380px;
  padding-block: 48px;
}
.chamber__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .chamber__container {
    padding-inline: 16px;
  }
}
.chamber__container {
  width: 100%;
}
.chamber__content {
  max-width: 520px;
}
.chamber__title {
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
  color: #ffffff;
}
.chamber__title-line {
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
}
.chamber__title-line--accent {
  color: #e8f27a;
}
.chamber__list {
  margin-bottom: 28px;
}
.chamber__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}
.chamber__list li:last-child {
  margin-bottom: 0;
}
.chamber__check {
  display: flex;
  flex-shrink: 0;
  margin-top: 3px;
  color: #e8f27a;
}
.chamber__check svg {
  width: 14px;
  height: 14px;
}
.chamber__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: clamp(24px, 18vw, 280px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background-color: transparent;
  border: 2px solid #e8f27a;
  border-radius: 50%;
  color: #e8f27a;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.25s ease, color 0.25s ease;
}
.chamber__play svg {
  width: 22px;
  height: 22px;
  margin-left: 4px;
}
.chamber__play:hover {
  background-color: rgba(232, 242, 122, 0.15);
}
@media (max-width: 992px) {
  .chamber {
    min-height: auto;
  }
  .chamber__overlay {
    background: linear-gradient(180deg, rgba(26, 29, 32, 0.35) 0%, rgba(26, 29, 32, 0.88) 55%, rgba(26, 29, 32, 0.95) 100%);
  }
  .chamber__body {
    min-height: auto;
    padding-block: 40px 100px;
  }
  .chamber__content {
    max-width: none;
  }
  .chamber__content .btn {
    width: 100%;
  }
  .chamber__play {
    top: auto;
    bottom: 24px;
    right: 50%;
    transform: translateX(50%);
  }
}
@media (max-width: 576px) {
  .chamber__body {
    padding-block: 36px 88px;
  }
  .chamber__content {
    max-width: none;
  }
  .chamber__title {
    margin-bottom: 20px;
  }
  .chamber__list {
    margin-bottom: 24px;
  }
  .chamber__play {
    bottom: 36px;
    width: 64px;
    height: 64px;
  }
  .chamber__play svg {
    width: 20px;
    height: 20px;
  }
}

.specialties {
  background-color: #ffffff;
  padding-block: 72px;
}
.specialties__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .specialties__container {
    padding-inline: 16px;
  }
}
.specialties__heading {
  margin-bottom: 20px;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
  color: #1a1d20;
}
.specialties__heading span {
  color: #e8f27a;
}
.specialties__heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 16px auto 0;
  background-color: #e8f27a;
}
.specialties__intro {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 48px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: #888888;
}
.specialties__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.specialties__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  border: 1px solid rgba(26, 29, 32, 0.15);
  border-radius: 4px;
  overflow: hidden;
}
.specialties__content {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
}
.specialties__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.specialties__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: #e8f27a;
  border-radius: 4px;
  color: #1a1d20;
}
.specialties__icon svg {
  width: 22px;
  height: 22px;
}
.specialties__title {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1a1d20;
}
.specialties__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 12px;
  background-color: #e8f27a;
}
.specialties__desc {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: #888888;
}
.specialties__list {
  margin-top: auto;
}
.specialties__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1d20;
}
.specialties__list li:last-child {
  margin-bottom: 0;
}
.specialties__check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 2px solid #e8f27a;
  border-radius: 50%;
  color: #e8f27a;
}
.specialties__check svg {
  width: 11px;
  height: 11px;
}
.specialties__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .specialties {
    padding-block: 56px;
  }
  .specialties__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: none;
    margin-inline: 0;
  }
  .specialties__card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .specialties__media {
    order: -1;
  }
  .specialties__media img {
    aspect-ratio: 16/9;
    min-height: auto;
  }
}
@media (max-width: 576px) {
  .specialties {
    padding-block: 48px;
  }
  .specialties__intro {
    margin-bottom: 36px;
    font-size: 14px;
  }
  .specialties__content {
    padding: 24px 20px;
  }
  .specialties__head {
    align-items: flex-start;
    gap: 10px;
  }
  .specialties__icon {
    width: 40px;
    height: 40px;
  }
  .specialties__icon svg {
    width: 20px;
    height: 20px;
  }
  .specialties__title {
    font-size: 14px;
  }
}

.insurance {
  position: relative;
  min-height: 420px;
  background-color: #1a1d20;
}
.insurance__bg {
  position: absolute;
  inset: 0;
}
.insurance__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insurance__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 29, 32, 0.94) 0%, rgba(26, 29, 32, 0.82) 38%, rgba(26, 29, 32, 0.45) 62%, rgba(26, 29, 32, 0.15) 100%);
}
.insurance__body {
  position: relative;
  z-index: 1;
  padding-block: 56px;
}
.insurance__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .insurance__container {
    padding-inline: 16px;
  }
}
.insurance__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.insurance__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8f27a;
}
.insurance__label::before {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #e8f27a;
}
.insurance__title {
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
  color: #ffffff;
}
.insurance__title-line {
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
}
.insurance__title-line--accent {
  color: #e8f27a;
}
.insurance__title-line--accent::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 12px;
  background-color: #e8f27a;
}
.insurance__desc {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
}
.insurance__list {
  margin-bottom: 32px;
}
.insurance__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}
.insurance__list li:last-child {
  margin-bottom: 0;
}
.insurance__check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 2px solid #e8f27a;
  border-radius: 50%;
  color: #e8f27a;
}
.insurance__check svg {
  width: 11px;
  height: 11px;
}
.insurance__partners-heading {
  margin-bottom: 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: left;
  text-transform: uppercase;
  color: #ffffff;
}
.insurance__partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.insurance__partner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 24px 20px;
  background-color: #ffffff;
  border-radius: 4px;
}
.insurance__partner img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 56px;
  object-fit: contain;
}
.insurance__partner-add {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 140px;
  padding: 24px 20px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  text-align: center;
}
.insurance__partner-add-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #ffffff;
}
.insurance__partner-add-icon svg {
  width: 18px;
  height: 18px;
}
.insurance__partner-add-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
  color: #ffffff;
}
.insurance__partners-note {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 992px) {
  .insurance {
    min-height: auto;
  }
  .insurance__overlay {
    background: linear-gradient(180deg, rgba(26, 29, 32, 0.35) 0%, rgba(26, 29, 32, 0.88) 55%, rgba(26, 29, 32, 0.95) 100%);
  }
  .insurance__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .insurance__desc {
    max-width: none;
  }
  .insurance__partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insurance .btn {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .insurance__body {
    padding-block: 48px;
  }
  .insurance__list {
    margin-bottom: 28px;
  }
  .insurance__list li {
    font-size: 14px;
  }
  .insurance__partners-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .insurance__partner, .insurance__partner-add {
    min-height: 120px;
  }
  .insurance .btn {
    width: 100%;
  }
}

.oskp {
  background-color: #f4f4f4;
  padding-block: 28px 48px;
}
.oskp__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .oskp__container {
    padding-inline: 16px;
  }
}
.oskp__card {
  position: relative;
  overflow: hidden;
  background-color: #f4f4f4;
  border: 1px solid rgba(26, 29, 32, 0.12);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(26, 29, 32, 0.08);
}
.oskp__bg {
  position: absolute;
  inset: 0;
  left: 32%;
}
.oskp__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.oskp__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f4f4f4 0%, rgba(244, 244, 244, 0.96) 14%, rgba(244, 244, 244, 0.78) 28%, rgba(244, 244, 244, 0.45) 44%, rgba(244, 244, 244, 0.12) 58%, transparent 72%);
}
.oskp__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto;
  gap: 24px 32px;
  align-items: center;
  max-width: 58%;
  padding: 28px 32px;
}
.oskp__text {
  max-width: 342px;
}
.oskp__icon-wrap {
  align-self: start;
  padding-top: 4px;
}
.oskp__head-line {
  display: block;
  width: 32px;
  height: 2px;
  margin-bottom: 12px;
  background-color: #e8f27a;
}
.oskp__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: #e8f27a;
  border-radius: 4px;
  color: #1a1d20;
}
.oskp__icon svg {
  width: 22px;
  height: 22px;
}
.oskp__title {
  margin-bottom: 12px;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a1d20;
}
.oskp__title span {
  color: #e8f27a;
}
.oskp__desc {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #888888;
}
.oskp__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding-inline: 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1d20;
  background-color: transparent;
  border: 2px solid #e8f27a;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.oskp__btn svg {
  width: 14px;
  height: 14px;
}
.oskp__btn:hover {
  background-color: rgba(232, 242, 122, 0.12);
}
.oskp__aside {
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  padding-block: 8px;
}
.oskp__divider {
  flex-shrink: 0;
  width: 1px;
  align-self: center;
  height: 136px;
  background-color: rgba(26, 29, 32, 0.18);
}
.oskp__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1d20;
}
.oskp__list li:last-child {
  margin-bottom: 0;
}
.oskp__check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 2px solid #e8f27a;
  border-radius: 50%;
  color: #e8f27a;
}
.oskp__check svg {
  width: 11px;
  height: 11px;
}
@media (max-width: 1100px) {
  .oskp__body {
    max-width: 100%;
    grid-template-columns: auto 1fr;
    gap: 20px 24px;
    padding: 24px;
  }
  .oskp__text {
    max-width: none;
  }
  .oskp__aside {
    grid-column: 1/-1;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding-block: 0;
  }
  .oskp__divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
}
@media (max-width: 992px) {
  .oskp {
    padding-block: 24px 40px;
  }
  .oskp__bg {
    left: 0;
  }
  .oskp__bg::after {
    background: linear-gradient(180deg, rgba(244, 244, 244, 0.15) 0%, rgba(244, 244, 244, 0.72) 42%, #f4f4f4 68%);
  }
  .oskp__body {
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding-top: 160px;
  }
  .oskp__icon-wrap {
    grid-row: 1;
    padding-top: 0;
  }
  .oskp__text {
    grid-row: 1;
  }
}
@media (max-width: 576px) {
  .oskp {
    padding-block: 20px 36px;
  }
  .oskp__body {
    padding: 140px 20px 20px;
  }
  .oskp__head-line {
    width: 28px;
    margin-bottom: 12px;
  }
  .oskp__icon {
    width: 40px;
    height: 40px;
  }
  .oskp__icon svg {
    width: 20px;
    height: 20px;
  }
  .oskp__desc {
    margin-bottom: 18px;
    font-size: 14px;
  }
  .oskp__btn {
    width: 100%;
    justify-content: center;
  }
}

.trusted {
  background-color: #ffffff;
  padding-block: 32px 48px;
}
.trusted__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .trusted__container {
    padding-inline: 16px;
  }
}
.trusted__card {
  padding: 48px 32px 40px;
  background-color: #ffffff;
  border: 1px solid rgba(26, 29, 32, 0.12);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(26, 29, 32, 0.08);
}
.trusted__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #1a1d20;
}
.trusted__heading span {
  color: #e8f27a;
}
.trusted__heading::before, .trusted__heading::after {
  content: "";
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background-color: #e8f27a;
}
.trusted__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin-inline: auto;
  margin-bottom: 32px;
}
.trusted__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 24px 20px;
  background-color: #ffffff;
  border: 1px solid rgba(26, 29, 32, 0.1);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(26, 29, 32, 0.06);
}
.trusted__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 52px;
  object-fit: contain;
}
.trusted__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.trusted__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background-color: rgba(26, 29, 32, 0.18);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.trusted__dot--active {
  background-color: #e8f27a;
}
.trusted__dot:hover:not(.trusted__dot--active) {
  background-color: rgba(26, 29, 32, 0.32);
}
@media (max-width: 992px) {
  .trusted {
    padding-block: 28px 40px;
  }
  .trusted__card {
    padding: 40px 24px 32px;
  }
  .trusted__heading {
    margin-bottom: 32px;
    gap: 16px;
  }
  .trusted__heading::before, .trusted__heading::after {
    width: 32px;
  }
  .trusted__logos {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 420px;
  }
  .trusted__logo {
    min-height: 100px;
  }
  .trusted__logo img {
    height: 44px;
  }
}
@media (max-width: 576px) {
  .trusted {
    padding-block: 24px 36px;
  }
  .trusted__card {
    padding: 32px 20px 28px;
  }
  .trusted__heading {
    margin-bottom: 28px;
    font-size: clamp(24px, 6vw, 26px);
  }
  .trusted__heading::before, .trusted__heading::after {
    display: none;
  }
}

.footer {
  background-color: #ffffff;
  padding-block: 32px 48px;
}
.footer__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .footer__container {
    padding-inline: 16px;
  }
}
.footer__card {
  overflow: hidden;
  background-color: #1a1d20;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(26, 29, 32, 0.12);
}
.footer__main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 48px 40px 40px;
}
.footer__col {
  padding-inline: 32px;
}
.footer__col:first-child {
  padding-left: 0;
}
.footer__col:last-child {
  padding-right: 0;
}
.footer__col:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.footer__logo {
  display: block;
  margin-bottom: 20px;
}
.footer__logo img {
  display: block;
  width: auto;
  height: 48px;
  max-width: 180px;
  object-fit: contain;
}
.footer__desc {
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: #ffffff;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}
.footer__social-link svg {
  width: 16px;
  height: 16px;
}
.footer__social-link:hover {
  border-color: #e8f27a;
  color: #e8f27a;
}
.footer__heading {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}
.footer__heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 12px;
  background-color: #e8f27a;
}
.footer__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
.footer__list li:last-child {
  margin-bottom: 0;
}
.footer__list li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer__list li a:hover {
  color: #e8f27a;
}
.footer__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: #ffffff;
}
.footer__icon svg {
  width: 18px;
  height: 18px;
}
.footer__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 40px;
}
.footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.footer__copy {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}
.footer__privacy {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer__privacy:hover {
  color: #e8f27a;
}
@media (max-width: 992px) {
  .footer {
    padding-block: 28px 40px;
  }
  .footer__main {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 32px 32px;
  }
  .footer__col {
    padding: 0 0 28px;
    border-left: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  .footer__col:first-child {
    border-top: none;
    padding-bottom: 28px;
  }
  .footer__col:last-child {
    padding-bottom: 0;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 32px;
  }
  .footer__bottom::before {
    left: 32px;
    right: 32px;
  }
  .footer .btn {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .footer {
    padding-block: 24px 32px;
  }
  .footer__main {
    padding: 32px 24px 28px;
  }
  .footer__bottom {
    padding: 18px 24px;
  }
  .footer__bottom::before {
    left: 24px;
    right: 24px;
  }
}

.floty-hero {
  background-color: #ffffff;
}
.floty-hero__inner {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .floty-hero__inner {
    padding-inline: 16px;
  }
}
.floty-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  min-height: 520px;
  padding-top: 0;
  padding-bottom: 64px;
}
.floty-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.floty-hero__title {
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a1d20;
}
.floty-hero__title-line {
  display: block;
  font-size: clamp(28px, 3.2vw, 42px);
}
.floty-hero__title-line--accent {
  color: #e8f27a;
}
.floty-hero__desc {
  max-width: 520px;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.65;
  color: #888888;
}
.floty-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.floty-hero__media {
  position: relative;
  min-height: 360px;
  border-radius: 0;
  overflow: hidden;
}
.floty-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.floty-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.2) 18%, transparent 35%);
  pointer-events: none;
}
@media (max-width: 1200px) {
  .floty-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding-bottom: 48px;
  }
  .floty-hero__media {
    order: -1;
    width: calc(100% + 48px);
    margin-inline: -24px;
    min-height: 320px;
  }
  .floty-hero__media img {
    min-height: 320px;
  }
  .floty-hero__media::after {
    background: linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, 0.95) 100%);
  }
}
@media (max-width: 992px) {
  .floty-hero__inner {
    padding-bottom: 40px;
  }
  .floty-hero__media {
    min-height: 280px;
  }
  .floty-hero__media img {
    min-height: 280px;
  }
  .floty-hero__desc {
    max-width: none;
  }
  .floty-hero__actions {
    flex-direction: column;
  }
  .floty-hero__actions .btn {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .floty-hero__inner {
    padding-bottom: 32px;
  }
  .floty-hero__media {
    width: calc(100% + 32px);
    margin-inline: -16px;
    min-height: 240px;
  }
  .floty-hero__media img {
    min-height: 240px;
  }
  .floty-hero__title-line {
    font-size: clamp(24px, 6.5vw, 28px);
  }
  .floty-hero__desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.floty-benefits {
  background-color: #ffffff;
  padding-block: 72px;
}
.floty-benefits__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .floty-benefits__container {
    padding-inline: 16px;
  }
}
.floty-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.floty-benefits__card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 28px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(26, 29, 32, 0.12);
}
.floty-benefits__card > div {
  min-width: 0;
}
.floty-benefits__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  color: #1a1d20;
}
.floty-benefits__icon svg {
  width: 72px;
  height: 72px;
}
.floty-benefits__title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1d20;
}
.floty-benefits__text {
  font-size: 14px;
  line-height: 1.6;
  color: #888888;
}
@media (max-width: 1200px) {
  .floty-benefits {
    padding-block: 56px 64px;
  }
  .floty-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .floty-benefits__icon {
    width: 80px;
    height: 80px;
  }
  .floty-benefits__icon svg {
    width: 64px;
    height: 64px;
  }
}
@media (max-width: 992px) {
  .floty-benefits {
    padding-block: 48px 56px;
  }
  .floty-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .floty-benefits__card {
    padding: 28px 24px;
  }
}
@media (max-width: 576px) {
  .floty-benefits {
    padding-block: 40px 48px;
  }
  .floty-benefits__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .floty-benefits__card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 16px;
  }
  .floty-benefits__icon {
    width: 64px;
    height: 64px;
  }
  .floty-benefits__icon svg {
    width: 52px;
    height: 52px;
  }
  .floty-benefits__title {
    font-size: 15px;
  }
  .floty-benefits__text {
    font-size: 13px;
  }
}

.floty-cta {
  position: relative;
  min-height: 320px;
  background-color: #1a1d20;
}
.floty-cta__bg {
  position: absolute;
  inset: 0;
}
.floty-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floty-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 29, 32, 0.92) 0%, rgba(26, 29, 32, 0.75) 45%, rgba(26, 29, 32, 0.35) 100%);
}
.floty-cta__body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 320px;
  padding-block: 64px;
}
.floty-cta__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .floty-cta__container {
    padding-inline: 16px;
  }
}
.floty-cta__container {
  width: 100%;
}
.floty-cta__content {
  max-width: 560px;
}
.floty-cta__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.floty-cta__label-line {
  width: 32px;
  height: 3px;
  background-color: #e8f27a;
}
.floty-cta__title {
  margin-bottom: 16px;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}
.floty-cta__desc {
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 1200px) {
  .floty-cta {
    min-height: 360px;
  }
  .floty-cta__body {
    min-height: 360px;
    padding-block: 56px;
  }
}
@media (max-width: 992px) {
  .floty-cta {
    min-height: 400px;
  }
  .floty-cta__overlay {
    background: linear-gradient(180deg, rgba(26, 29, 32, 0.4) 0%, rgba(26, 29, 32, 0.92) 55%, rgba(26, 29, 32, 0.95) 100%);
  }
  .floty-cta__body {
    align-items: flex-end;
    min-height: 400px;
    padding-block: 48px;
  }
  .floty-cta__content {
    max-width: none;
  }
  .floty-cta .btn {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .floty-cta {
    min-height: 360px;
  }
  .floty-cta__body {
    min-height: 360px;
    padding-block: 40px;
  }
  .floty-cta__title {
    font-size: clamp(18px, 5vw, 22px);
    letter-spacing: 0.02em;
  }
  .floty-cta__desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.leasingi-hero {
  background-color: #ffffff;
}
.leasingi-hero__inner {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .leasingi-hero__inner {
    padding-inline: 16px;
  }
}
.leasingi-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  min-height: 480px;
  padding-top: 0;
  padding-bottom: 48px;
}
.leasingi-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leasingi-hero__title {
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a1d20;
}
.leasingi-hero__title-line {
  display: block;
  font-size: clamp(28px, 3.2vw, 42px);
}
.leasingi-hero__title-line--accent {
  color: #e8f27a;
}
.leasingi-hero__desc {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.65;
  color: #888888;
}
.leasingi-hero__media {
  position: relative;
  min-height: 360px;
  border-radius: 0;
  overflow: hidden;
}
.leasingi-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.leasingi-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.2) 18%, transparent 35%);
  pointer-events: none;
}
@media (max-width: 1200px) {
  .leasingi-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding-bottom: 32px;
  }
  .leasingi-hero__media {
    order: -1;
    width: calc(100% + 48px);
    margin-inline: -24px;
    min-height: 320px;
  }
  .leasingi-hero__media img {
    min-height: 320px;
  }
  .leasingi-hero__media::after {
    background: linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, 0.95) 100%);
  }
}
@media (max-width: 992px) {
  .leasingi-hero__media {
    min-height: 280px;
  }
  .leasingi-hero__media img {
    min-height: 280px;
  }
  .leasingi-hero__desc {
    max-width: none;
  }
}
@media (max-width: 576px) {
  .leasingi-hero__inner {
    padding-bottom: 24px;
  }
  .leasingi-hero__media {
    width: calc(100% + 32px);
    margin-inline: -16px;
    min-height: 240px;
  }
  .leasingi-hero__media img {
    min-height: 240px;
  }
  .leasingi-hero__title-line {
    font-size: clamp(24px, 6.5vw, 28px);
  }
  .leasingi-hero__desc {
    font-size: 14px;
  }
}

.leasingi-features {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  padding-bottom: 72px;
  background-color: #ffffff;
}
.leasingi-features__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .leasingi-features__container {
    padding-inline: 16px;
  }
}
.leasingi-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.leasingi-features__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 32px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(26, 29, 32, 0.12);
  min-width: 0;
}
.leasingi-features__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 20px;
  color: #1a1d20;
}
.leasingi-features__icon svg {
  width: 72px;
  height: 72px;
}
.leasingi-features__title {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1d20;
}
.leasingi-features__title::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin: 10px auto 0;
  background-color: #e8f27a;
}
.leasingi-features__text {
  font-size: 14px;
  line-height: 1.6;
  color: #888888;
}
@media (max-width: 1200px) {
  .leasingi-features {
    margin-top: -24px;
    padding-bottom: 56px;
  }
  .leasingi-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .leasingi-features__icon {
    width: 80px;
    height: 80px;
  }
  .leasingi-features__icon svg {
    width: 64px;
    height: 64px;
  }
}
@media (max-width: 992px) {
  .leasingi-features {
    margin-top: -20px;
    padding-bottom: 48px;
  }
  .leasingi-features__grid {
    gap: 20px;
  }
  .leasingi-features__card {
    padding: 32px 24px 28px;
  }
}
@media (max-width: 576px) {
  .leasingi-features {
    margin-top: -12px;
    padding-bottom: 40px;
  }
  .leasingi-features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .leasingi-features__card {
    padding: 28px 20px 24px;
  }
  .leasingi-features__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
  }
  .leasingi-features__icon svg {
    width: 56px;
    height: 56px;
  }
  .leasingi-features__title {
    font-size: 15px;
  }
  .leasingi-features__text {
    font-size: 13px;
  }
}

.leasingi-partner {
  padding-block: 0 72px;
  background-color: #ffffff;
}
.leasingi-partner__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .leasingi-partner__container {
    padding-inline: 16px;
  }
}
.leasingi-partner__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 56px;
  background-color: #1a1d20;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(26, 29, 32, 0.15);
}
.leasingi-partner__info {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 24px;
  row-gap: 16px;
  align-items: start;
  max-width: 520px;
}
.leasingi-partner__shield {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  grid-row: 1/span 2;
  align-self: center;
  width: 72px;
  height: 72px;
  color: #e8f27a;
}
.leasingi-partner__shield svg {
  width: 72px;
  height: 72px;
}
.leasingi-partner__title {
  grid-column: 2;
  margin-bottom: 0;
  min-width: 0;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}
.leasingi-partner__desc {
  grid-column: 2;
  min-width: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}
.leasingi-partner__aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.leasingi-partner__partners {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.leasingi-partner__partners-label {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.leasingi-partner__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 32px;
}
.leasingi-partner__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  opacity: 0.85;
}
.leasingi-partner__logo img {
  height: 100%;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.leasingi-partner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 1200px) {
  .leasingi-partner {
    padding-bottom: 64px;
  }
  .leasingi-partner__card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 40px;
  }
  .leasingi-partner__info {
    max-width: none;
  }
  .leasingi-partner__logos {
    justify-content: flex-start;
  }
  .leasingi-partner__actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 280px);
  }
}
@media (max-width: 992px) {
  .leasingi-partner {
    padding-bottom: 56px;
  }
  .leasingi-partner__card {
    padding: 40px 32px;
  }
  .leasingi-partner__aside {
    gap: 28px;
  }
  .leasingi-partner__actions {
    flex-direction: column;
  }
  .leasingi-partner__actions .btn {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 576px) {
  .leasingi-partner {
    padding-bottom: 48px;
  }
  .leasingi-partner__card {
    padding: 32px 24px;
    gap: 32px;
  }
  .leasingi-partner__info {
    column-gap: 16px;
    row-gap: 12px;
  }
  .leasingi-partner__shield {
    width: 56px;
    height: 56px;
    align-self: start;
  }
  .leasingi-partner__shield svg {
    width: 56px;
    height: 56px;
  }
  .leasingi-partner__title {
    font-size: clamp(18px, 5vw, 22px);
  }
  .leasingi-partner__desc {
    font-size: 14px;
  }
  .leasingi-partner__partners {
    padding-bottom: 24px;
  }
  .leasingi-partner__logos {
    gap: 16px 20px;
    justify-content: center;
  }
  .leasingi-partner__logo {
    height: 28px;
  }
  .leasingi-partner__logo img {
    max-width: 80px;
  }
  .leasingi-partner__aside {
    gap: 24px;
  }
}

.oskp-sub-hero {
  background-color: #ffffff;
}
.oskp-sub-hero__inner {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .oskp-sub-hero__inner {
    padding-inline: 16px;
  }
}
.oskp-sub-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  min-height: 520px;
  padding-top: 0;
  padding-bottom: 56px;
}
.oskp-sub-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.oskp-sub-hero__title {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a1d20;
}
.oskp-sub-hero__subtitle {
  margin-bottom: 20px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  color: #1a1d20;
}
.oskp-sub-hero__desc {
  max-width: 520px;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.65;
  color: #888888;
}
.oskp-sub-hero__highlights {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  max-width: 560px;
}
.oskp-sub-hero__highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 160px;
  padding: 12px 20px;
}
.oskp-sub-hero__highlight:first-child {
  padding-left: 0;
}
.oskp-sub-hero__highlight:not(:last-child) {
  border-right: 1px solid rgba(26, 29, 32, 0.15);
}
.oskp-sub-hero__highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: #1a1d20;
}
.oskp-sub-hero__highlight-icon svg {
  width: 32px;
  height: 32px;
}
.oskp-sub-hero__highlight-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1d20;
}
.oskp-sub-hero__media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.oskp-sub-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.oskp-sub-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.2) 18%, transparent 35%);
  pointer-events: none;
}
@media (max-width: 1200px) {
  .oskp-sub-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding-bottom: 40px;
  }
  .oskp-sub-hero__media {
    order: -1;
    width: calc(100% + 48px);
    margin-inline: -24px;
    min-height: 320px;
  }
  .oskp-sub-hero__media img {
    min-height: 320px;
  }
  .oskp-sub-hero__media::after {
    background: linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, 0.95) 100%);
  }
  .oskp-sub-hero__highlights {
    max-width: none;
  }
  .oskp-sub-hero__highlight {
    flex: 1 1 200px;
  }
}
@media (max-width: 992px) {
  .oskp-sub-hero__media {
    min-height: 280px;
  }
  .oskp-sub-hero__media img {
    min-height: 280px;
  }
  .oskp-sub-hero__desc {
    max-width: none;
  }
  .oskp-sub-hero__highlights {
    flex-direction: column;
    gap: 0;
  }
  .oskp-sub-hero__highlight {
    flex: none;
    width: 100%;
    padding: 14px 0;
    border-right: none !important;
    border-bottom: 1px solid rgba(26, 29, 32, 0.12);
  }
  .oskp-sub-hero__highlight:last-child {
    border-bottom: none;
  }
}
@media (max-width: 576px) {
  .oskp-sub-hero__inner {
    padding-bottom: 32px;
  }
  .oskp-sub-hero__title {
    font-size: clamp(22px, 6vw, 26px);
  }
  .oskp-sub-hero__subtitle {
    font-size: clamp(16px, 4.5vw, 18px);
    margin-bottom: 16px;
  }
  .oskp-sub-hero__media {
    width: calc(100% + 32px);
    margin-inline: -16px;
    min-height: 240px;
  }
  .oskp-sub-hero__media img {
    min-height: 240px;
  }
  .oskp-sub-hero__desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .oskp-sub-hero__highlight-text {
    font-size: 12px;
  }
}

.oskp-sub-services {
  padding-block: 0 72px;
  background-color: #ffffff;
}
.oskp-sub-services__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .oskp-sub-services__container {
    padding-inline: 16px;
  }
}
.oskp-sub-services__heading {
  margin-bottom: 32px;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1d20;
}
.oskp-sub-services__heading::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  margin-top: 12px;
  background-color: #e8f27a;
}
.oskp-sub-services__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.oskp-sub-services__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px 24px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(26, 29, 32, 0.12);
  min-width: 0;
}
.oskp-sub-services__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  color: #1a1d20;
}
.oskp-sub-services__icon svg {
  width: 56px;
  height: 56px;
}
.oskp-sub-services__title {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1d20;
}
.oskp-sub-services__title::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin: 10px auto 0;
  background-color: #e8f27a;
}
.oskp-sub-services__text {
  font-size: 13px;
  line-height: 1.55;
  color: #888888;
}
@media (max-width: 1200px) {
  .oskp-sub-services {
    padding-bottom: 56px;
  }
  .oskp-sub-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .oskp-sub-services {
    padding-bottom: 48px;
  }
  .oskp-sub-services__heading {
    margin-bottom: 28px;
    font-size: clamp(20px, 4vw, 24px);
  }
  .oskp-sub-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .oskp-sub-services__card {
    padding: 24px 16px 20px;
  }
}
@media (max-width: 576px) {
  .oskp-sub-services {
    padding-bottom: 40px;
  }
  .oskp-sub-services__heading {
    margin-bottom: 24px;
  }
  .oskp-sub-services__grid {
    grid-template-columns: 1fr;
  }
  .oskp-sub-services__icon {
    width: 64px;
    height: 64px;
  }
  .oskp-sub-services__icon svg {
    width: 48px;
    height: 48px;
  }
  .oskp-sub-services__title {
    font-size: 13px;
  }
  .oskp-sub-services__text {
    font-size: 12px;
  }
}

.oskp-sub-booking {
  padding-block: 0 72px;
  background-color: #ffffff;
}
.oskp-sub-booking__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .oskp-sub-booking__container {
    padding-inline: 16px;
  }
}
.oskp-sub-booking__bar {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 1px minmax(0, 1.5fr) auto;
  align-items: center;
  padding: 24px 32px;
  background-color: #1a1d20;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(26, 29, 32, 0.15);
}
.oskp-sub-booking__main {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  max-width: 480px;
  padding-right: 24px;
}
.oskp-sub-booking__calendar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: #e8f27a;
}
.oskp-sub-booking__calendar svg {
  width: 48px;
  height: 48px;
}
.oskp-sub-booking__copy {
  min-width: 0;
}
.oskp-sub-booking__title {
  margin-bottom: 4px;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}
.oskp-sub-booking__desc {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}
.oskp-sub-booking__divider {
  flex-shrink: 0;
  width: 1px;
  align-self: stretch;
  min-height: 48px;
  background-color: rgba(255, 255, 255, 0.18);
}
.oskp-sub-booking__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  padding-inline: 24px;
}
.oskp-sub-booking__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  height: 100%;
  padding-block: 4px;
}
.oskp-sub-booking__item:first-child {
  padding-right: 20px;
}
.oskp-sub-booking__item:last-child {
  padding-left: 20px;
}
.oskp-sub-booking__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #e8f27a;
}
.oskp-sub-booking__item-icon svg {
  width: 28px;
  height: 28px;
}
.oskp-sub-booking__item-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: #ffffff;
}
.oskp-sub-booking__item-text span {
  display: block;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.oskp-sub-booking__action {
  flex-shrink: 0;
  padding-left: 24px;
}
@media (max-width: 1100px) {
  .oskp-sub-booking__bar {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .oskp-sub-booking__main {
    max-width: none;
    padding-right: 0;
  }
  .oskp-sub-booking__divider:not(.oskp-sub-booking__divider--meta) {
    display: none;
  }
  .oskp-sub-booking__meta {
    padding-inline: 0;
  }
  .oskp-sub-booking__action {
    padding-left: 0;
  }
  .oskp-sub-booking__action .btn {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .oskp-sub-booking {
    padding-bottom: 64px;
  }
  .oskp-sub-booking__bar {
    padding: 28px 32px;
  }
}
@media (max-width: 992px) {
  .oskp-sub-booking {
    padding-bottom: 56px;
  }
  .oskp-sub-booking__bar {
    padding: 24px 24px;
  }
  .oskp-sub-booking__item:first-child {
    padding-right: 16px;
  }
  .oskp-sub-booking__item:last-child {
    padding-left: 16px;
  }
}
@media (max-width: 576px) {
  .oskp-sub-booking {
    padding-bottom: 48px;
  }
  .oskp-sub-booking__bar {
    padding: 24px 20px;
    gap: 20px;
  }
  .oskp-sub-booking__main {
    align-items: flex-start;
  }
  .oskp-sub-booking__meta {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .oskp-sub-booking__item:first-child, .oskp-sub-booking__item:last-child {
    padding-inline: 0;
  }
  .oskp-sub-booking__divider--meta {
    display: none;
  }
  .oskp-sub-booking__calendar {
    width: 44px;
    height: 44px;
  }
  .oskp-sub-booking__calendar svg {
    width: 44px;
    height: 44px;
  }
  .oskp-sub-booking__title {
    font-size: 16px;
  }
  .oskp-sub-booking__desc {
    font-size: 12px;
  }
  .oskp-sub-booking__item-text {
    font-size: 12px;
  }
}

.uslugi-hero {
  position: relative;
  min-height: 420px;
  background-color: #1a1d20;
}
.uslugi-hero__bg {
  position: absolute;
  inset: 0;
}
.uslugi-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.uslugi-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 29, 32, 0.94) 0%, rgba(26, 29, 32, 0.82) 42%, rgba(26, 29, 32, 0.45) 68%, rgba(26, 29, 32, 0.2) 100%);
}
.uslugi-hero__body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 420px;
  padding-top: 48px;
  padding-bottom: 64px;
}
.uslugi-hero__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .uslugi-hero__container {
    padding-inline: 16px;
  }
}
.uslugi-hero__container {
  width: 100%;
}
.uslugi-hero__content {
  max-width: 620px;
}
.uslugi-hero__title {
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.uslugi-hero__title-line {
  display: block;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  text-transform: none;
}
.uslugi-hero__title-line--accent {
  font-size: clamp(24px, 3vw, 36px);
  color: #e8f27a;
}
.uslugi-hero__desc {
  max-width: 540px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}
.uslugi-hero__desc::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 24px;
  background-color: #e8f27a;
}
@media (max-width: 992px) {
  .uslugi-hero {
    min-height: auto;
  }
  .uslugi-hero__overlay {
    background: linear-gradient(180deg, rgba(26, 29, 32, 0.35) 0%, rgba(26, 29, 32, 0.88) 55%, rgba(26, 29, 32, 0.95) 100%);
  }
  .uslugi-hero__body {
    align-items: flex-end;
    min-height: 480px;
    padding-top: 40px;
    padding-bottom: 48px;
  }
  .uslugi-hero__content {
    max-width: none;
  }
}
@media (max-width: 576px) {
  .uslugi-hero__body {
    min-height: 420px;
    padding-top: 32px;
    padding-bottom: 40px;
  }
  .uslugi-hero__title-line {
    font-size: clamp(20px, 5.5vw, 24px);
  }
  .uslugi-hero__title-line--accent {
    font-size: clamp(22px, 6vw, 26px);
  }
  .uslugi-hero__desc {
    font-size: 14px;
  }
  .uslugi-hero__desc::after {
    margin-top: 20px;
  }
}

.uslugi-about {
  padding-block: 72px;
  background-color: #ffffff;
}
.uslugi-about__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .uslugi-about__container {
    padding-inline: 16px;
  }
}
.uslugi-about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.uslugi-about__heading {
  margin-bottom: 20px;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  color: #1a1d20;
}
.uslugi-about__text {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.65;
  color: #888888;
}
.uslugi-about__text:last-of-type {
  margin-bottom: 32px;
}
.uslugi-about__features {
  display: flex;
  align-items: stretch;
}
.uslugi-about__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 12px;
  padding-inline: 16px;
  text-align: center;
}
.uslugi-about__feature:not(:last-child) {
  border-right: 1px solid rgba(26, 29, 32, 0.15);
}
.uslugi-about__feature:first-child {
  padding-left: 0;
}
.uslugi-about__feature:last-child {
  padding-right: 0;
}
.uslugi-about__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #1a1d20;
}
.uslugi-about__feature-icon svg {
  width: 32px;
  height: 32px;
}
.uslugi-about__feature-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1d20;
}
.uslugi-about__media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 29, 32, 0.12);
}
.uslugi-about__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .uslugi-about {
    padding-block: 56px;
  }
  .uslugi-about__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .uslugi-about__media {
    order: -1;
  }
}
@media (max-width: 992px) {
  .uslugi-about__features {
    flex-wrap: wrap;
    gap: 0;
  }
  .uslugi-about__feature {
    flex: 1 1 50%;
    padding: 16px;
    border-right: none !important;
    border-bottom: 1px solid rgba(26, 29, 32, 0.12);
  }
  .uslugi-about__feature:nth-child(odd) {
    border-right: 1px solid rgba(26, 29, 32, 0.12) !important;
  }
  .uslugi-about__feature:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
@media (max-width: 992px) {
  .uslugi-about {
    padding-block: 48px;
  }
  .uslugi-about__heading {
    font-size: clamp(20px, 4vw, 26px);
  }
}
@media (max-width: 576px) {
  .uslugi-about {
    padding-block: 48px;
  }
  .uslugi-about__text {
    font-size: 14px;
  }
  .uslugi-about__feature {
    flex: 1 1 100%;
    border-right: none !important;
    border-bottom: 1px solid rgba(26, 29, 32, 0.12) !important;
    padding-inline: 0;
  }
  .uslugi-about__feature:last-child {
    border-bottom: none !important;
  }
}

.uslugi-scope {
  padding-block: 72px;
  background-color: #f4f4f4;
}
.uslugi-scope__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .uslugi-scope__container {
    padding-inline: 16px;
  }
}
.uslugi-scope__intro {
  margin-bottom: 40px;
}
.uslugi-scope__heading {
  margin-bottom: 16px;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  color: #1a1d20;
}
.uslugi-scope__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.uslugi-scope__card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(26, 29, 32, 0.12);
  min-width: 0;
}
.uslugi-scope__card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.uslugi-scope__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: #e8f27a;
  font-size: 16px;
  font-weight: 800;
  color: #1a1d20;
}
.uslugi-scope__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: #1a1d20;
}
.uslugi-scope__icon svg {
  width: 28px;
  height: 28px;
}
.uslugi-scope__title {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1d20;
}
.uslugi-scope__desc {
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.55;
  color: #888888;
}
.uslugi-scope__list {
  margin-top: auto;
}
.uslugi-scope__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #1a1d20;
}
.uslugi-scope__list li:last-child {
  margin-bottom: 0;
}
.uslugi-scope__check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  background-color: transparent;
  border: 2px solid #e8f27a;
  border-radius: 50%;
  color: #e8f27a;
}
.uslugi-scope__check svg {
  width: 11px;
  height: 11px;
}
@media (max-width: 1200px) {
  .uslugi-scope {
    padding-block: 56px;
  }
  .uslugi-scope__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .uslugi-scope {
    padding-block: 48px;
  }
  .uslugi-scope__intro {
    margin-bottom: 32px;
  }
  .uslugi-scope__heading {
    font-size: clamp(20px, 4vw, 26px);
  }
  .uslugi-scope__grid {
    gap: 20px;
  }
  .uslugi-scope__card {
    padding: 24px 20px;
  }
  .uslugi-scope__card-top {
    align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .uslugi-scope {
    padding-block: 40px;
  }
  .uslugi-scope__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .uslugi-scope__card-top {
    gap: 10px;
  }
  .uslugi-scope__icon {
    width: 32px;
    height: 32px;
  }
  .uslugi-scope__icon svg {
    width: 24px;
    height: 24px;
  }
  .uslugi-scope__num {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .uslugi-scope__title {
    font-size: 14px;
  }
}

.uslugi-why {
  position: relative;
  min-height: 360px;
  background-color: #1a1d20;
}
.uslugi-why__bg {
  position: absolute;
  inset: 0;
}
.uslugi-why__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.uslugi-why__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 29, 32, 0.94) 0%, rgba(26, 29, 32, 0.88) 50%, rgba(26, 29, 32, 0.75) 100%);
}
.uslugi-why__body {
  position: relative;
  z-index: 1;
  padding-block: 72px;
}
.uslugi-why__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 576px) {
  .uslugi-why__container {
    padding-inline: 16px;
  }
}
.uslugi-why__container .page-label, .uslugi-why__heading, .uslugi-why__grid {
  margin-right: 200px;
}
.uslugi-why__heading {
  max-width: 640px;
  margin-bottom: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.uslugi-why__heading-line {
  display: block;
  font-size: clamp(22px, 2.5vw, 30px);
  text-transform: none;
}
.uslugi-why__heading-line--accent {
  color: #e8f27a;
}
.uslugi-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.uslugi-why__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-inline: 24px;
}
.uslugi-why__item:first-child {
  padding-left: 0;
}
.uslugi-why__item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.uslugi-why__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #e8f27a;
}
.uslugi-why__icon svg {
  width: 32px;
  height: 32px;
}
.uslugi-why__title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}
.uslugi-why__text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 1200px) {
  .uslugi-why__container .page-label, .uslugi-why__heading, .uslugi-why__grid {
    margin-right: 0;
  }
  .uslugi-why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }
  .uslugi-why__item {
    padding: 0 24px 24px 0;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .uslugi-why__item:nth-child(odd) {
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.18) !important;
  }
  .uslugi-why__item:nth-child(even) {
    padding-left: 24px;
    padding-right: 0;
  }
  .uslugi-why__item:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media (max-width: 992px) {
  .uslugi-why {
    min-height: auto;
  }
  .uslugi-why__overlay {
    background: linear-gradient(180deg, rgba(26, 29, 32, 0.35) 0%, rgba(26, 29, 32, 0.88) 55%, rgba(26, 29, 32, 0.95) 100%);
  }
  .uslugi-why__body {
    padding-block: 56px;
  }
  .uslugi-why__heading {
    max-width: none;
    margin-bottom: 32px;
  }
}
@media (max-width: 576px) {
  .uslugi-why__body {
    padding-block: 48px;
  }
  .uslugi-why__heading-line {
    font-size: clamp(20px, 5.5vw, 24px);
  }
  .uslugi-why__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .uslugi-why__item {
    padding: 0 0 20px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
  }
  .uslugi-why__item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }
}

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