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

:where(ul, ol):where([class]) {
  padding-left: 0;
}

:where(blockquote, figure):where([class]) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

p {
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: 24px;
}

img:where(:not([class])) {
  display: block;
  max-width: 100%;
}

input,
textarea,
select,
button {
  font: inherit;
}

svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

svg * {
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #3f4042;
}

a {
  text-decoration: none;
  color: #a3a921;
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #3f4042;
}

h1 {
  font-size: 3rem;
}
@media (min-width: 992px) {
  h1 {
    font-size: 3.6rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (min-width: 992px) {
  h2 {
    font-size: 2.3rem;
  }
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

.text-muted {
  color: #7b7b7b;
}

.animate--hidden {
  opacity: 0;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.animate--hidden.animate--visible {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.animate--hidden:nth-child(1) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}
.animate--hidden:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.animate--hidden:nth-child(3) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.animate--hidden:nth-child(4) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.animate--hidden:nth-child(5) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.animate--hidden:nth-child(6) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.card.animate--hidden:nth-child(1),
.features__item.animate--hidden:nth-child(1),
.iblocks__item.animate--hidden:nth-child(1),
.blur-card.animate--hidden:nth-child(1) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}
.card.animate--hidden:nth-child(2),
.features__item.animate--hidden:nth-child(2),
.iblocks__item.animate--hidden:nth-child(2),
.blur-card.animate--hidden:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.card.animate--hidden:nth-child(3),
.features__item.animate--hidden:nth-child(3),
.iblocks__item.animate--hidden:nth-child(3),
.blur-card.animate--hidden:nth-child(3) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.card.animate--hidden:nth-child(4),
.features__item.animate--hidden:nth-child(4),
.iblocks__item.animate--hidden:nth-child(4),
.blur-card.animate--hidden:nth-child(4) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.card.animate--hidden:nth-child(5),
.features__item.animate--hidden:nth-child(5),
.iblocks__item.animate--hidden:nth-child(5),
.blur-card.animate--hidden:nth-child(5) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.card.animate--hidden:nth-child(6),
.features__item.animate--hidden:nth-child(6),
.iblocks__item.animate--hidden:nth-child(6),
.blur-card.animate--hidden:nth-child(6) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.container,
[class*=__container] {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1200px) {
  .container,
  [class*=__container] {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.row,
[class*=__row] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

[class*=col-] {
  padding-left: 1rem;
  padding-right: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
.gutter-sm {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.gutter-sm {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.gutter-lg {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.gutter-lg {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.gutter-none {
  margin-left: 0;
  margin-right: 0;
}
.gutter-none {
  padding-left: 0;
  padding-right: 0;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.align-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

[class*=__grid] {
  display: grid;
  gap: 24px;
}

[class*=__grid-1] {
  grid-template-columns: repeat(1, 1fr);
}
@media (max-width: 576px) {
  [class*=__grid-1] {
    grid-template-columns: 1fr;
  }
}

[class*=__grid-2] {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 576px) {
  [class*=__grid-2] {
    grid-template-columns: 1fr;
  }
}

[class*=__grid-3] {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 576px) {
  [class*=__grid-3] {
    grid-template-columns: 1fr;
  }
}

[class*=__grid-4] {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 576px) {
  [class*=__grid-4] {
    grid-template-columns: 1fr;
  }
}

[class*=__grid-5] {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 576px) {
  [class*=__grid-5] {
    grid-template-columns: 1fr;
  }
}

[class*=__grid-6] {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 576px) {
  [class*=__grid-6] {
    grid-template-columns: 1fr;
  }
}

.revers .section__content {
  oreder: -1;
}

.header {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 10;
  border-bottom: 1px solid rgba(123, 123, 123, 0.15);
}
.header--scrolled {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.header__container {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 72px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .header__container {
    min-height: 80px;
  }
}
.header--menu-open .header__container {
  position: relative;
  z-index: 501;
}
@media (max-width: 991px) {
  .header {
    background-color: rgba(241, 241, 241, 0.98);
  }
  .header__container {
    min-height: 64px;
  }
}

.footer {
  padding: 70px 0;
  background: #3f4042;
  color: #ffffff;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  color: #f1f1f1;
  background-color: #a3a921;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: background-color 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.btn:hover {
  background-color: rgb(121.8465346535, 126.3316831683, 24.6683168317);
  text-decoration: none;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn:focus-visible {
  outline: 3px solid #a3a921;
  outline-offset: 2px;
}
.btn--sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 16px 40px;
  font-size: 1.25rem;
}
.btn--secondary {
  background-color: #fff216;
}
.btn--secondary:hover {
  background-color: rgb(226, 213.3905579399, 0);
}
.btn--accent {
  background-color: #00b894;
}
.btn--accent:hover {
  background-color: rgb(0, 133, 106.9782608696);
}
.btn--outline {
  background-color: transparent;
  color: #a3a921;
  border-color: #a3a921;
}
.btn--outline:hover {
  background-color: #a3a921;
  color: #f1f1f1;
}
.btn--outline-light {
  background-color: transparent;
  color: #f1f1f1;
  border-color: #f1f1f1;
}
.btn--outline-light:hover {
  background-color: #f1f1f1;
  color: #3f4042;
}
.btn--danger {
  background-color: #e17055;
}
.btn--danger:hover {
  background-color: rgb(217.35, 75.535, 41.65);
}
.btn--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.btn--disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}
.btn--phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 10px 24px;
  background-color: #a3a921;
  color: #f1f1f1;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.btn--phone:hover {
  background-color: rgb(121.8465346535, 126.3316831683, 24.6683168317);
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.btn--phone img {
  width: 18px;
  height: 18px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.btn--phone--primary {
  background-color: #a3a921;
}
.btn--phone--primary:hover {
  background-color: rgb(121.8465346535, 126.3316831683, 24.6683168317);
}
.btn--phone--secondary {
  background-color: #fff216;
}
.btn--phone--secondary:hover {
  background-color: rgb(226, 213.3905579399, 0);
}
.btn--phone--accent {
  background-color: #00b894;
}
.btn--phone--accent:hover {
  background-color: rgb(0, 133, 106.9782608696);
}
.btn--phone--dark {
  background-color: #3f4042;
}
.btn--phone--dark:hover {
  background-color: rgb(38.0930232558, 38.6976744186, 39.9069767442);
}
.btn--phone--light {
  background-color: #f1f1f1;
}
.btn--phone--light:hover {
  background-color: rgb(215.5, 215.5, 215.5);
}
.btn--phone--gray {
  background-color: #7b7b7b;
}
.btn--phone--gray:hover {
  background-color: rgb(97.5, 97.5, 97.5);
}
.btn--phone--danger {
  background-color: #e17055;
}
.btn--phone--danger:hover {
  background-color: rgb(217.35, 75.535, 41.65);
}
.btn--phone--success {
  background-color: #00b894;
}
.btn--phone--success:hover {
  background-color: rgb(0, 133, 106.9782608696);
}
.btn--phone--warning {
  background-color: #fdcb6e;
}
.btn--phone--warning:hover {
  background-color: rgb(252.306122449, 184.9591836735, 59.693877551);
}
.btn--phone--info {
  background-color: #0984e3;
}
.btn--phone--info:hover {
  background-color: rgb(7.0550847458, 103.4745762712, 177.9449152542);
}
.btn--phone--white {
  background-color: #ffffff;
}
.btn--phone--white:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
.btn--phone--black {
  background-color: #000000;
}
.btn--phone--black:hover {
  background-color: black;
}
.btn--phone--transparent {
  background-color: transparent;
}
.btn--phone--transparent:hover {
  background-color: rgba(0, 0, 0, 0);
}
.btn--phone--sm {
  padding: 6px 16px;
  font-size: 0.875rem;
}
.btn--phone--sm img {
  width: 14px;
  height: 14px;
}
.btn--phone--lg {
  padding: 14px 32px;
  font-size: 1.25rem;
}
.btn--phone--lg img {
  width: 22px;
  height: 22px;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.logo__link {
  display: block;
  text-decoration: none;
  line-height: 0;
}
.logo__link:hover {
  text-decoration: none;
}
.logo__image {
  display: block;
  max-height: 48px;
  width: auto;
  height: auto;
}
@media (min-width: 992px) {
  .logo__image {
    max-height: 56px;
  }
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 80vw;
    z-index: 500;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2rem;
    background: rgba(63, 64, 66, 0.97);
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    cursor: default;
  }
  .nav::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .nav::after {
    content: "✕";
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #f1f1f1;
    cursor: pointer;
    -webkit-transition: color 0.15s ease;
    transition: color 0.15s ease;
  }
  .nav::after:hover {
    color: #00b894;
  }
  .header--menu-open .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .header--menu-open .nav::before {
    opacity: 1;
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    text-align: center;
    margin-left: -30px;
  }
}
.nav__item {
  position: relative;
}
.nav__link {
  display: block;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #3f4042;
  text-decoration: none;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
.nav__link:hover {
  color: #a3a921;
  text-decoration: none;
}
.nav__link--active {
  color: #a3a921;
  font-weight: 600;
}
.nav__link--active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #a3a921;
  border-radius: 9999px;
}
@media (max-width: 991px) {
  .nav__link {
    color: #f1f1f1;
    font-size: 1.5rem;
    padding: 0.5rem 2rem;
  }
  .nav__link:hover {
    color: #00b894;
  }
  .nav__link--active::after {
    background-color: #00b894;
  }
}

.burger {
  display: none;
  cursor: pointer;
}
@media (max-width: 991px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 1000;
  }
}
.burger__btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  outline: none;
  width: 32px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.burger__btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #3f4042;
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, background-color 0.15s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.15s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.15s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.15s ease, -webkit-transform 0.3s ease;
}
.burger__btn span:nth-child(1) {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.burger__btn span:nth-child(2) {
  -ms-flex-item-align: center;
      align-self: center;
  width: 80%;
}
.burger__btn span:nth-child(3) {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.burger__btn--active span:nth-child(1) {
  -webkit-transform: translateY(11px) rotate(45deg);
      -ms-transform: translateY(11px) rotate(45deg);
          transform: translateY(11px) rotate(45deg);
}
.burger__btn--active span:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}
.burger__btn--active span:nth-child(3) {
  -webkit-transform: translateY(-11px) rotate(-45deg);
      -ms-transform: translateY(-11px) rotate(-45deg);
          transform: translateY(-11px) rotate(-45deg);
}
.burger__btn--active span {
  background-color: #f1f1f1;
}
.burger__btn--active span:hover {
  background-color: #00b894;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  height: 100%;
  text-decoration: none;
}
.card:hover {
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
}
.card__image {
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.card__image img {
  width: 100%;
  height: auto;
  display: block;
}
.card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.card__text {
  color: #7b7b7b;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.card__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(123, 123, 123, 0.2);
}
.card--shadow-hover:hover {
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
          transform: translateY(-8px);
}
.card--border {
  border: 1px solid rgba(123, 123, 123, 0.2);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.card--border:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #a3a921;
}
.card--center {
  text-align: center;
}
.card--dark {
  background: rgba(241, 241, 241, 0.05);
  color: #f1f1f1;
}
.card--dark h3 {
  color: #f1f1f1;
}
.card--dark p {
  color: rgba(241, 241, 241, 0.7);
}
.card--flat {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.card--flat:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #3f4042 0%, rgb(80.6930693069, 83.6633663366, 16.3366336634) 100%);
  color: #f1f1f1;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .hero {
    min-height: 80vh;
  }
}
.hero__content {
  max-width: 600px;
}
.hero__badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(241, 241, 241, 0.15);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.hero__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f1f1f1;
}
@media (min-width: 992px) {
  .hero__title {
    font-size: 4rem;
  }
}
.hero__title span {
  color: #00b894;
}
.hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.hero__image {
  display: none;
}
@media (min-width: 992px) {
  .hero__image {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 50%;
  }
}
.hero__image img {
  width: 100%;
  height: auto;
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}
@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

.section {
  padding: 50px 0px;
}
.section--light {
  background-color: #f1f1f1;
}
.section--light ol.list {
  padding: 10px 25px;
  background: #fff;
  border-radius: 8px;
}
.section--light .block__content {
  background: #fff;
}
.section--light .tabs__panel {
  background: #fff;
  padding: 10px 30px;
  border-radius: 8px;
}
.section--light .section__content {
  background: #fff;
}
.section--dark {
  background-color: #3f4042;
  color: #f1f1f1;
}
.section--dark .section__title, .section--dark .section__title--mega, .section--dark .section__title--xl,
.section--dark .section__subtitle {
  color: #f1f1f1;
}
.section--primary {
  background-color: #a3a921;
  color: #f1f1f1;
}
.section--primary .section__title, .section--primary .section__title--mega, .section--primary .section__title--xl,
.section--primary .section__subtitle {
  color: #f1f1f1;
}
.section--gradient {
  background: linear-gradient(135deg, #a3a921, #fff216);
  color: #f1f1f1;
}
.section--gradient .section__title, .section--gradient .section__title--mega, .section--gradient .section__title--xl,
.section--gradient .section__subtitle {
  color: #f1f1f1;
}
.section--background {
  position: relative;
  padding: 150px 0px;
  color: #ffffff;
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
}
.section--background .section__info {
  width: 70%;
  padding: 30px;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.section--title-left .section__container, .section--title-right .section__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .section--title-left .section__container, .section--title-right .section__container {
    grid-template-columns: 1fr;
  }
}
.section--title-right .section__header {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: right;
}
.section--title-right .section__description {
  max-width: 100%;
}
.section--small {
  padding: 2rem 0;
}
.section--large {
  padding: 8rem 0;
}
.section--none {
  padding: 0;
}
.section__title, .section__title--mega, .section__title--xl {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: inherit;
}
.section__title--xl {
  font-size: 3rem;
}
.section__title--mega {
  font-size: 4rem;
}
.section__title--mega {
  font-size: 1rem;
}
.section__title span, .section__title--xl span, .section__title--mega span {
  color: #a3a921;
}
.section--dark .section__title, .section--dark .section__title--xl, .section--dark .section__title--mega {
  color: #f1f1f1;
}
.section--dark .section__title span, .section--dark .section__title--xl span, .section--dark .section__title--mega span {
  color: #00b894;
}
.section--primary .section__title, .section--primary .section__title--xl, .section--primary .section__title--mega {
  color: #f1f1f1;
}
.section--primary .section__title span, .section--primary .section__title--xl span, .section--primary .section__title--mega span {
  color: rgb(31, 255, 211.1739130435);
}
.section__subtitle, .section__description {
  font-size: 1rem;
  font-weight: 500;
  color: #7b7b7b;
  max-width: 60%;
  line-height: 1.2;
}
.section--dark .section__subtitle, .section--dark .section__description {
  color: rgba(241, 241, 241, 0.8);
}
.section--primary .section__subtitle, .section--primary .section__description {
  color: rgba(241, 241, 241, 0.85);
}
.section__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a3a921;
  margin-bottom: 0.5rem;
}
.section--dark .section__label {
  color: #00b894;
}
.section--primary .section__label {
  color: rgba(241, 241, 241, 0.8);
}
.section__header {
  margin-bottom: 3rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.section__header--left {
  text-align: left;
}
.section__header--left .section__subtitle {
  margin-left: 0;
  margin-right: 0;
}
.section__content {
  background: #f1f1f1;
  padding: 10px 30px;
  border-radius: 8px;
}
.section__image {
  width: 100%;
  height: auto;
}
.section__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.section__footer {
  margin-top: 3rem;
  text-align: center;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background-color: #a3a921;
  color: #f1f1f1;
  border: none;
  font-size: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.15s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.15s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, background-color 0.15s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, background-color 0.15s ease, -webkit-transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  z-index: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.back-to-top:hover {
  background-color: rgb(121.8465346535, 126.3316831683, 24.6683168317);
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.back-to-top:focus-visible {
  outline: 2px solid #a3a921;
  outline-offset: 2px;
}
.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.back-to-top__wrapper {
  position: relative;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .back-to-top {
    bottom: 1rem;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

.blur-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 2rem;
}
.blur-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(63, 64, 66, 0.7)), to(transparent));
  background: linear-gradient(to top, rgba(63, 64, 66, 0.7), transparent);
  z-index: 1;
}
.blur-card__content {
  position: relative;
  z-index: 2;
  color: #f1f1f1;
}
.blur-card__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f1f1f1;
}
.blur-card__content p {
  opacity: 0.9;
  margin: 0;
}
.blur-card__footer {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
}

.accordion {
  border-bottom: 1px solid rgba(123, 123, 123, 0.2);
  margin-bottom: 0;
}
.accordion:first-child {
  border-top: 1px solid rgba(123, 123, 123, 0.2);
}
.accordion__header {
  padding: 1.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 3rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.accordion__header::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: #a3a921;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.accordion__header:hover {
  color: #a3a921;
}
.accordion__header--active {
  color: #a3a921;
}
.accordion__header--active::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.accordion__body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}
.accordion__body--open {
  max-height: 1000px;
  padding-bottom: 1.5rem;
}
.accordion__body p {
  margin-bottom: 1rem;
}
.accordion__body p:last-child {
  margin-bottom: 0;
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .features--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.features__item {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.features__item:hover {
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.features__icon {
  max-width: 64px;
  height: auto;
  margin-bottom: 1rem;
}
.features__description {
  font-size: 1rem;
  color: #3f4042;
  margin: 0;
}

.block__content {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
}
.block__content p {
  margin-bottom: 1rem;
}
.block__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.block__content ul, .block__content ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.block__content ul {
  list-style: disc;
}
.block__content ol {
  list-style: decimal;
}
.block__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(123, 123, 123, 0.2);
}

ol.list {
  list-style-type: none;
  counter-reset: num;
  color: #a3a921;
}
ol.list li {
  padding: 20px 0px;
  border-bottom: 1px solid #7b7b7b;
  position: relative;
}
ol.list li:last-child {
  border-bottom: none;
}
ol.list li::before {
  font-size: 22px;
  line-height: 29px;
  content: counter(num) ".";
  counter-increment: num;
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 0px;
  width: 40px;
  color: #a3a921;
}
ol.list li h3 {
  margin: 0;
  padding-left: 40px;
  font-size: 22px;
  line-height: 29px;
  font-weight: 500;
  color: inherit;
}
ol.list li p {
  padding-left: 40px;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #3f4042;
}

.banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 3rem;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f1f1f1;
  min-height: 480px;
  overflow: hidden;
  isolation: isolate;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(63, 64, 66, 0.8), rgba(63, 64, 66, 0.4));
  z-index: 1;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.banner__header {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.banner__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f1f1f1;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .banner__title {
    font-size: 3rem;
  }
}
.banner__title span {
  color: #00b894;
}
.banner__description {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .banner__description {
    font-size: 1.5rem;
  }
}
.banner__info {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 2rem;
}
.banner__info p {
  opacity: 0.9;
  margin-bottom: 1rem;
}
.banner__info p:last-child {
  margin-bottom: 0;
}
.banner__info ul, .banner__info ol {
  opacity: 0.9;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.banner__info ul {
  list-style: disc;
}
.banner__info ol {
  list-style: decimal;
}
.banner .btn--more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 12px 32px;
  background-color: #a3a921;
  color: #f1f1f1;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.banner .btn--more:hover {
  background-color: rgb(121.8465346535, 126.3316831683, 24.6683168317);
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.banner .btn--more::after {
  content: "→";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: inline-block;
}
.banner .btn--more:hover::after {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.banner--left .banner__header {
  max-width: 600px;
}
.banner--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.banner--center .banner__header {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.banner--center .banner__info {
  text-align: center;
}
.banner--right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
}
.banner--right .banner__header {
  max-width: 600px;
  margin-left: auto;
}
.banner--right .banner__info {
  text-align: right;
}
@media (min-width: 992px) {
  .banner--split {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
    min-height: 400px;
    padding: 4rem;
  }
  .banner--split .banner__header {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }
  .banner--split .banner__info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
    padding-top: 0;
  }
  .banner--split.banner--right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.banner--transparent::before {
  display: none;
}
.banner--transparent .banner__title {
  color: #3f4042;
}
.banner--transparent .banner__title span {
  color: #a3a921;
}
.banner--transparent .banner__description {
  color: #7b7b7b;
}
.banner--transparent .banner__info p, .banner--transparent .banner__info ul, .banner--transparent .banner__info ol {
  color: #3f4042;
}
.banner--overlay-primary::before {
  background: rgba(163, 169, 33, 0.85);
}
.banner--overlay-secondary::before {
  background: rgba(255, 242, 22, 0.85);
}
.banner--overlay-dark::before {
  background: rgba(63, 64, 66, 0.85);
}
.banner--overlay-gradient::before {
  background: linear-gradient(135deg, rgba(163, 169, 33, 0.85), rgba(255, 242, 22, 0.85));
}
.banner--small {
  min-height: 200px;
  padding: 2rem;
}
.banner--small .banner__title {
  font-size: 1.5rem;
}
.banner--small .banner__description {
  font-size: 1rem;
}
.banner--medium {
  min-height: 300px;
  padding: 3rem;
}
.banner--large {
  min-height: 400px;
  padding: 4rem;
}
@media (min-width: 992px) {
  .banner--large {
    min-height: 500px;
  }
}
.banner--full {
  min-height: 500px;
  padding: 4rem;
  border-radius: 0;
}
@media (min-width: 992px) {
  .banner--full {
    min-height: 80vh;
  }
}
.banner--animated .banner__header,
.banner--animated .banner__info {
  opacity: 0;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: bannerFadeIn 0.8s ease forwards;
          animation: bannerFadeIn 0.8s ease forwards;
}
.banner--animated .banner__info {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
@media (max-width: 767px) {
  .banner {
    padding: 2rem;
    min-height: 250px;
  }
  .banner__title {
    font-size: 1.5rem;
  }
  .banner__description {
    font-size: 1rem;
  }
  .banner .btn--more {
    padding: 10px 24px;
    font-size: 0.875rem;
  }
}
@media (max-width: 575px) {
  .banner {
    padding: 1.5rem;
    min-height: 200px;
  }
  .banner__title {
    font-size: 1.25rem;
  }
  .banner__description {
    font-size: 0.875rem;
  }
  .banner__info {
    padding-top: 1rem;
  }
}

@-webkit-keyframes bannerFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes bannerFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.contact-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  height: 100%;
}
.contact-card:hover {
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
}
.contact-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 1rem;
  border: 3px solid #a3a921;
}
.contact-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.contact-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 1rem;
}
@media (min-width: 768px) {
  .contact-card__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.contact-card__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contact-card__info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3f4042;
  margin-bottom: 0.25rem;
}
.contact-card__info h5 {
  font-size: 0.875rem;
  font-weight: 400;
  color: #7b7b7b;
  margin-bottom: 1rem;
}
.contact-card__action {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .contact-card__action {
    width: 100%;
  }
  .contact-card__action .btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contact-card__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #3f4042;
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.contact-card__contact:hover {
  color: #a3a921;
  text-decoration: none;
}
.contact-card__contact img {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-card__contact--phone img {
  -webkit-filter: none;
          filter: none;
}
.contact-card__contact--email img {
  -webkit-filter: none;
          filter: none;
}
.contact-card__messengers {
  display: block;
  font-size: 0.875rem;
  color: #7b7b7b;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
}
.contact-card__messengers .messenger-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 0.25rem;
  vertical-align: middle;
}
.contact-card--horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-card--horizontal .contact-card__avatar {
  margin-bottom: 0;
  width: 100px;
  height: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-card--horizontal .contact-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .contact-card--horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .contact-card--horizontal .contact-card__avatar {
    margin-bottom: 1rem;
  }
}
.contact-card--center {
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-card--center .contact-card__avatar {
  margin-left: auto;
  margin-right: auto;
}
.contact-card--center .contact-card__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-card--center .contact-card__contact {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-card--center .contact-card__action {
  width: 100%;
}
.contact-card--center .contact-card__action .btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-card--dark {
  background: rgba(241, 241, 241, 0.05);
  border: 1px solid rgba(241, 241, 241, 0.1);
}
.contact-card--dark h3 {
  color: #f1f1f1;
}
.contact-card--dark h5 {
  color: rgba(241, 241, 241, 0.6);
}
.contact-card--dark .contact-card__contact {
  color: rgba(241, 241, 241, 0.8);
}
.contact-card--dark .contact-card__contact:hover {
  color: #00b894;
}
.contact-card--dark .contact-card__messengers {
  color: rgba(241, 241, 241, 0.5);
}
.contact-card--dark .contact-card__avatar {
  border-color: #00b894;
}
.contact-card--bordered {
  border: 1px solid rgba(123, 123, 123, 0.2);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contact-card--bordered:hover {
  border-color: #a3a921;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.contact-card--flat {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contact-card--flat:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.contact-card--gradient-border {
  position: relative;
  background-clip: padding-box;
  border: 2px solid transparent;
}
.contact-card--gradient-border::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, #a3a921, #fff216);
  z-index: -1;
}
.contact-card--avatar-sm .contact-card__avatar {
  width: 60px;
  height: 60px;
}
.contact-card--avatar-lg .contact-card__avatar {
  width: 120px;
  height: 120px;
}
@media (min-width: 992px) {
  .contact-card--avatar-lg .contact-card__avatar {
    width: 140px;
    height: 140px;
  }
}
.contact-card--action-bottom .contact-card__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact-card--action-bottom .contact-card__action {
  width: 100%;
  margin-top: 1rem;
}
.contact-card--action-bottom .contact-card__action .btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .contact-card {
    padding: 1.5rem;
  }
  .contact-card__avatar {
    width: 64px;
    height: 64px;
  }
  .contact-card__info h3 {
    font-size: 1rem;
  }
  .contact-card__info h5 {
    font-size: 0.875rem;
  }
  .contact-card__contact {
    font-size: 0.875rem;
  }
}
@media (max-width: 575px) {
  .contact-card {
    padding: 1rem;
  }
  .contact-card__avatar {
    width: 56px;
    height: 56px;
    border-width: 2px;
  }
  .contact-card__info h3 {
    font-size: 1rem;
  }
  .contact-card__info h5 {
    font-size: 0.875rem;
  }
  .contact-card__contact {
    font-size: 0.875rem;
    gap: 0.25rem;
  }
  .contact-card__contact img {
    width: 16px;
    height: 16px;
  }
  .contact-card .btn {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
}

.tabs {
  margin-top: 2rem;
}
.tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid rgba(63, 64, 66, 0.1);
  margin-bottom: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs__nav::-webkit-scrollbar {
  display: none;
}
.tabs__item {
  position: relative;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  color: #7b7b7b;
  -webkit-transition: color 0.15s ease, border-color 0.15s ease;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.tabs__item:hover {
  color: #3f4042;
}
.tabs__item:focus-visible {
  outline: 2px solid #a3a921;
  outline-offset: 2px;
}
.tabs__item--active {
  color: #a3a921;
  border-bottom-color: #a3a921;
}
.tabs__content {
  min-height: 80px;
}
.tabs__panel {
  display: none;
  opacity: 0;
  -webkit-transform: translateY(0.5rem);
      -ms-transform: translateY(0.5rem);
          transform: translateY(0.5rem);
  -webkit-animation: none;
          animation: none;
}
.tabs__panel--active {
  display: block;
  -webkit-animation: tabsFadeIn 0.3s ease forwards;
          animation: tabsFadeIn 0.3s ease forwards;
}
@media (max-width: 768px) {
  .tabs__nav {
    gap: 0.25rem;
  }
  .tabs__item {
    padding: 20px 30px;
    font-size: 0.875rem;
  }
}

@-webkit-keyframes tabsFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes tabsFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}