@font-face {
  font-family: "Druk Cyr";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../../fonts/DrukCyr-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Druk Cyr";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../../fonts/DrukCyr-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Druk Cyr";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../fonts/DrukCyr-Heavy.woff2") format("woff2");
}
@font-face {
  font-family: "Druk Cyr";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../../fonts/DrukCyr-Super.woff2") format("woff2");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #151515;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  margin: 0 0 16px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: #e4ba00;
}

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

::-moz-selection {
  background-color: #e4ba00;
  color: #151515;
}

::selection {
  background-color: #e4ba00;
  color: #151515;
}

.text-xs {
  font-size: 12px;
}

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

.text-md {
  font-size: 16px;
}

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

.text-xl {
  font-size: 20px;
}

.text-2xl {
  font-size: 24px;
}

.text-3xl {
  font-size: 32px;
}

.text-4xl {
  font-size: 40px;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

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

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

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

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

.text-muted {
  color: #a3a3a3;
}

.text-primary {
  color: #e4ba00;
}

.text-white {
  color: #ffffff;
}

.text-dark {
  color: #151515;
}

.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
  margin-top: 48px;
  margin-bottom: 16px;
}
.content h1:first-child, .content h2:first-child, .content h3:first-child, .content h4:first-child, .content h5:first-child, .content h6:first-child {
  margin-top: 0;
}
.content p {
  margin-bottom: 16px;
}
.content p:last-child {
  margin-bottom: 0;
}
.content ul, .content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.content ul li, .content ol li {
  margin-bottom: 8px;
}
.content ul {
  list-style: disc;
}
.content ol {
  list-style: decimal;
}
.content a {
  color: #e4ba00;
  text-decoration: underline;
}
.content a:hover {
  text-decoration: none;
}
.content blockquote {
  margin: 32px 0;
  padding: 24px;
  background-color: #F9F9F9;
  border-left: 4px solid #e4ba00;
}
.content blockquote p:last-child {
  margin-bottom: 0;
}
.content img {
  margin: 32px 0;
  border-radius: 8px;
}
.content table {
  width: 100%;
  margin-bottom: 32px;
  border-collapse: collapse;
}
.content table th, .content table td {
  padding: 16px;
  border: 1px solid #D9D9D9;
  text-align: left;
}
.content table th {
  background-color: #F9F9F9;
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: #ffffff;
  border-bottom: 1px solid #D9D9D9;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  height: 40px;
  width: auto;
}
.header__logo a {
  display: block;
}
.header__logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #151515;
}
.header__nav {
  display: none;
}
@media (min-width: 992px) {
  .header__nav {
    display: block;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__menu a {
  font-size: 16px;
  font-weight: 500;
  color: #151515;
  transition: color 0.15s ease;
}
.header__menu a:hover {
  color: #e4ba00;
}
.header__menu .current-menu-item a,
.header__menu .current-page-ancestor a {
  color: #e4ba00;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__lang {
  display: none;
}
@media (min-width: 768px) {
  .header__lang {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.header__lang a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.15s ease;
}
.header__lang a:hover, .header__lang a.current-lang {
  opacity: 1;
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .header__burger {
    display: none;
  }
}
.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #151515;
  transition: transform 0.3s ease;
}
.header__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.footer {
  background-color: #151515;
  color: #ffffff;
  padding: 80px 0 32px;
}
.footer__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .footer__wrapper {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.footer__logo {
  margin-bottom: 16px;
}
.footer__logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer__logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
.footer__text {
  color: #a3a3a3;
  font-size: 14px;
  max-width: 300px;
}
.footer__nav h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  color: #a3a3a3;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__menu a {
  color: #ffffff;
  font-size: 16px;
  transition: color 0.15s ease;
}
.footer__menu a:hover {
  color: #e4ba00;
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: #202020;
  color: #ffffff;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.footer__social-link:hover {
  background-color: #e4ba00;
  color: #151515;
}
.footer__social-link svg {
  width: 20px;
  height: 20px;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid #202020;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__copyright {
  color: #a3a3a3;
  font-size: 14px;
}
.footer__privacy {
  color: #a3a3a3;
  font-size: 14px;
  transition: color 0.15s ease;
}
.footer__privacy:hover {
  color: #ffffff;
}

.btn, .block-contacts .gform_wrapper .gform_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  border-radius: 8px;
  transition: all 0.15s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn span, .block-contacts .gform_wrapper .gform_button span {
  display: block;
}
.btn svg, .block-contacts .gform_wrapper .gform_button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn:disabled, .block-contacts .gform_wrapper .gform_button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn--primary, .block-contacts .gform_wrapper .gform_button {
  background-color: #e4ba00;
  color: #151515;
  border-color: #e4ba00;
}
.btn--primary:hover, .block-contacts .gform_wrapper .gform_button:hover {
  background-color: rgb(177, 144.3947368421, 0);
  border-color: rgb(177, 144.3947368421, 0);
  color: #151515;
}
.btn--outline {
  background-color: transparent;
  color: #151515;
  border-color: #151515;
}
.btn--outline:hover {
  background-color: #151515;
  color: #ffffff;
}
.btn--outline-light {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn--outline-light:hover {
  background-color: #ffffff;
  color: #151515;
}
.btn--ghost {
  background-color: transparent;
  color: #151515;
  padding: 8px 16px;
}
.btn--ghost:hover {
  color: #e4ba00;
}
.btn--sm {
  padding: 8px 16px;
  font-size: 14px;
}
.btn--lg, .block-contacts .gform_wrapper .gform_button {
  padding: 24px 48px;
  font-size: 18px;
}
.btn--block {
  width: 100%;
}

.post-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.post-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.post-card:hover .post-card__thumbnail img {
  transform: scale(1.05);
}
.post-card__thumbnail {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.post-card__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 14px;
}
.post-card__category {
  color: #e4ba00;
  font-weight: 600;
}
.post-card__category:hover {
  text-decoration: underline;
}
.post-card__date {
  color: #a3a3a3;
}
.post-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.post-card__title a {
  color: #151515;
}
.post-card__title a:hover {
  color: #e4ba00;
}
.post-card__excerpt {
  color: #a3a3a3;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}
.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #151515;
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}
.post-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.15s ease;
}
.post-card__link:hover {
  color: #e4ba00;
}
.post-card__link:hover svg {
  transform: translateX(4px);
}

.block-hero {
  position: relative;
  min-height: 100vh;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.block-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.block-hero .hero__wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 120px);
}
.block-hero .hero__title-area {
  align-self: end;
  padding-bottom: 100px;
}
.block-hero .hero__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  max-width: 400px;
}
.block-hero .hero__center {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.block-hero .hero__image {
  max-width: 700px;
  width: 100%;
  height: auto;
  display: block;
}
.block-hero .hero__features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  padding-left: 40px;
  max-width: 350px;
  margin-left: auto;
}
.block-hero .hero__feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.block-hero .hero__feature-number {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #e4ba00;
}
.block-hero .hero__feature-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}
.block-hero .hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.block-hero .hero__scroll-text {
  font-size: 14px;
  color: #404040;
}
.block-hero .hero__scroll-arrow {
  width: 24px;
  height: 24px;
  color: #000000;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.block-hero-simple {
  padding: 80px 0;
  background-color: #151515;
  text-align: center;
}
@media (max-width: 768px) {
  .block-hero-simple {
    padding: 64px 0;
  }
}
.block-hero-simple .hero-simple__wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.block-hero-simple .hero-simple__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.block-hero-simple .hero-simple__subtitle {
  font-size: 20px;
  color: #D9D9D9;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
.block-hero-simple .hero-simple__breadcrumbs {
  margin-top: 32px;
  font-size: 14px;
}
.block-hero-simple .hero-simple__breadcrumbs a {
  color: #a3a3a3;
  text-decoration: none;
  transition: color 0.15s ease;
}
.block-hero-simple .hero-simple__breadcrumbs a:hover {
  color: #e4ba00;
}
.block-hero-simple .hero-simple__breadcrumbs span {
  color: #a3a3a3;
  margin: 0 8px;
}
.block-hero-simple .hero-simple__breadcrumbs .current {
  color: #ffffff;
}
.block-hero-simple.is-light {
  background-color: #ffffff;
}
.block-hero-simple.is-light .hero-simple__title {
  color: #151515;
}
.block-hero-simple.is-light .hero-simple__subtitle {
  color: #404040;
}
.block-hero-simple.is-light .hero-simple__breadcrumbs a {
  color: #404040;
}
.block-hero-simple.is-light .hero-simple__breadcrumbs .current {
  color: #151515;
}
.block-hero-simple.has-background {
  position: relative;
  background-size: cover;
  background-position: center;
}
.block-hero-simple.has-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(21, 21, 21, 0.7);
}
.block-hero-simple.has-background .container {
  position: relative;
  z-index: 1;
}

.block-benefits {
  padding: 120px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .block-benefits {
    padding: 64px 0;
  }
}
.block-benefits .benefits__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}
@media (max-width: 768px) {
  .block-benefits .benefits__header {
    margin-bottom: 48px;
  }
}
.block-benefits .benefits__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #151515;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.block-benefits .benefits__subtitle {
  font-size: 18px;
  color: #404040;
  line-height: 1.6;
}
.block-benefits .benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .block-benefits .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .block-benefits .benefits__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.block-benefits .benefit-card {
  background-color: #F9F9F9;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.block-benefits .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.block-benefits .benefit-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e4ba00;
  border-radius: 8px;
}
.block-benefits .benefit-card__icon img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
}
.block-benefits .benefit-card__icon svg {
  width: 32px;
  height: 32px;
  fill: #151515;
}
.block-benefits .benefit-card__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #151515;
  margin-bottom: 8px;
  line-height: 1.3;
}
.block-benefits .benefit-card__text {
  font-size: 16px;
  color: #404040;
  line-height: 1.6;
}
.block-benefits.is-dark {
  background-color: #151515;
}
.block-benefits.is-dark .benefits__title {
  color: #ffffff;
}
.block-benefits.is-dark .benefits__subtitle {
  color: #D9D9D9;
}
.block-benefits.is-dark .benefit-card {
  background-color: #202020;
}
.block-benefits.is-dark .benefit-card:hover {
  background-color: rgb(44.75, 44.75, 44.75);
}
.block-benefits.is-dark .benefit-card__title {
  color: #ffffff;
}
.block-benefits.is-dark .benefit-card__text {
  color: #D9D9D9;
}

.block-about {
  padding: 120px 0;
  background-color: #151515;
}
@media (max-width: 768px) {
  .block-about {
    padding: 64px 0;
  }
}
.block-about .about__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 992px) {
  .block-about .about__wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.block-about .about__media {
  position: relative;
}
@media (max-width: 992px) {
  .block-about .about__media {
    max-width: 400px;
    margin: 0 auto;
  }
}
.block-about .about__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .block-about .about__content {
    text-align: center;
  }
}
.block-about .about__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.block-about .about__name {
  font-size: 20px;
  font-weight: 600;
  color: #e4ba00;
  margin-bottom: 8px;
}
.block-about .about__role {
  font-size: 16px;
  color: #a3a3a3;
  margin-bottom: 32px;
}
.block-about .about__text {
  font-size: 18px;
  line-height: 1.7;
  color: #D9D9D9;
  margin-bottom: 32px;
}
.block-about .about__text p {
  margin-bottom: 16px;
}
.block-about .about__text p:last-child {
  margin-bottom: 0;
}
.block-about .about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 992px) {
  .block-about .about__actions {
    justify-content: center;
  }
}
.block-about .about__popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  padding: 32px;
  overflow-y: auto;
}
.block-about .about__popup.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-about .about__popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 400;
}
.block-about .about__popup-content {
  position: relative;
  background-color: #202020;
  border-radius: 16px;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  z-index: 500;
}
.block-about .about__popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 24px;
  transition: color 0.15s ease;
}
.block-about .about__popup-close:hover {
  color: #e4ba00;
}
.block-about .about__popup-title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}
.block-about .about__popup-text {
  font-size: 16px;
  line-height: 1.7;
  color: #D9D9D9;
}
.block-about .about__popup-text p {
  margin-bottom: 16px;
}
.block-about .about__popup-text p:last-child {
  margin-bottom: 0;
}
.block-about.is-light {
  background-color: #ffffff;
}
.block-about.is-light .about__title {
  color: #151515;
}
.block-about.is-light .about__role {
  color: #404040;
}
.block-about.is-light .about__text {
  color: #404040;
}

.block-values {
  padding: 120px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .block-values {
    padding: 64px 0;
  }
}
.block-values .values__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}
.block-values .values__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #151515;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.block-values .values__subtitle {
  font-size: 18px;
  color: #404040;
  line-height: 1.6;
}
.block-values .values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .block-values .values__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.block-values .value-card {
  text-align: center;
  padding: 48px;
  background-color: #F9F9F9;
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.block-values .value-card:hover {
  transform: translateY(-4px);
}
.block-values .value-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e4ba00;
  border-radius: 50%;
}
.block-values .value-card__icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}
.block-values .value-card__icon svg {
  width: 40px;
  height: 40px;
  fill: #151515;
}
.block-values .value-card__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #151515;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.block-values .value-card__text {
  font-size: 16px;
  color: #404040;
  line-height: 1.6;
}
.block-values.is-dark {
  background-color: #151515;
}
.block-values.is-dark .values__title {
  color: #ffffff;
}
.block-values.is-dark .values__subtitle {
  color: #D9D9D9;
}
.block-values.is-dark .value-card {
  background-color: #202020;
}
.block-values.is-dark .value-card__title {
  color: #ffffff;
}
.block-values.is-dark .value-card__text {
  color: #D9D9D9;
}

.block-carousel {
  padding: 120px 0;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .block-carousel {
    padding: 64px 0;
  }
}
.block-carousel .carousel__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}
.block-carousel .carousel__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #151515;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.block-carousel .carousel__subtitle {
  font-size: 18px;
  color: #404040;
  line-height: 1.6;
}
.block-carousel .carousel__slider {
  position: relative;
}
.block-carousel .swiper {
  padding-bottom: 64px;
}
.block-carousel .swiper-slide {
  height: auto;
}
.block-carousel .carousel-card {
  background-color: #F9F9F9;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.block-carousel .carousel-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}
.block-carousel .carousel-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.block-carousel .carousel-card__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #151515;
  margin-bottom: 8px;
}
.block-carousel .carousel-card__text {
  font-size: 16px;
  color: #404040;
  line-height: 1.6;
  flex-grow: 1;
}
.block-carousel .carousel-card__link {
  margin-top: 24px;
}
.block-carousel .carousel-card__link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #e4ba00;
  transition: color 0.15s ease;
}
.block-carousel .carousel-card__link a:hover {
  color: rgb(177, 144.3947368421, 0);
}
.block-carousel .carousel-card__link a svg {
  width: 16px;
  height: 16px;
}
.block-carousel .swiper-button-prev,
.block-carousel .swiper-button-next {
  width: 48px;
  height: 48px;
  background-color: #e4ba00;
  border-radius: 50%;
  color: #151515;
  transition: background-color 0.15s ease;
}
.block-carousel .swiper-button-prev::after,
.block-carousel .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}
.block-carousel .swiper-button-prev:hover,
.block-carousel .swiper-button-next:hover {
  background-color: rgb(177, 144.3947368421, 0);
}
@media (max-width: 768px) {
  .block-carousel .swiper-button-prev,
  .block-carousel .swiper-button-next {
    display: none;
  }
}
.block-carousel .swiper-pagination {
  bottom: 0;
}
.block-carousel .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #D9D9D9;
  opacity: 1;
  transition: background-color 0.15s ease;
}
.block-carousel .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e4ba00;
}
.block-carousel.is-dark {
  background-color: #151515;
}
.block-carousel.is-dark .carousel__title {
  color: #ffffff;
}
.block-carousel.is-dark .carousel__subtitle {
  color: #D9D9D9;
}
.block-carousel.is-dark .carousel-card {
  background-color: #202020;
}
.block-carousel.is-dark .carousel-card__title {
  color: #ffffff;
}
.block-carousel.is-dark .carousel-card__text {
  color: #D9D9D9;
}

.block-timeline {
  padding: 120px 0;
  background-color: #151515;
}
@media (max-width: 768px) {
  .block-timeline {
    padding: 64px 0;
  }
}
.block-timeline .timeline__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}
.block-timeline .timeline__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.block-timeline .timeline__subtitle {
  font-size: 18px;
  color: #D9D9D9;
  line-height: 1.6;
}
.block-timeline .timeline__items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .block-timeline .timeline__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .block-timeline .timeline__items {
    grid-template-columns: 1fr;
  }
}
.block-timeline .timeline__items::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #404040;
}
@media (max-width: 768px) {
  .block-timeline .timeline__items::before {
    display: none;
  }
}
.block-timeline .timeline-item {
  position: relative;
  text-align: center;
  padding-top: 64px;
}
@media (max-width: 768px) {
  .block-timeline .timeline-item {
    padding-top: 0;
    padding-left: 64px;
    text-align: left;
  }
}
.block-timeline .timeline-item__marker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background-color: #e4ba00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .block-timeline .timeline-item__marker {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
  }
}
.block-timeline .timeline-item__year {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #151515;
}
.block-timeline .timeline-item__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .block-timeline .timeline-item__title {
    margin-top: 0;
  }
}
.block-timeline .timeline-item__text {
  font-size: 16px;
  color: #D9D9D9;
  line-height: 1.6;
}
.block-timeline.is-light {
  background-color: #ffffff;
}
.block-timeline.is-light .timeline__title {
  color: #151515;
}
.block-timeline.is-light .timeline__subtitle {
  color: #404040;
}
.block-timeline.is-light .timeline__items::before {
  background-color: #D9D9D9;
}
.block-timeline.is-light .timeline-item__title {
  color: #151515;
}
.block-timeline.is-light .timeline-item__text {
  color: #404040;
}

.block-faq {
  padding: 120px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .block-faq {
    padding: 64px 0;
  }
}
.block-faq .faq__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}
.block-faq .faq__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #151515;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.block-faq .faq__subtitle {
  font-size: 18px;
  color: #404040;
  line-height: 1.6;
}
.block-faq .faq__list {
  max-width: 900px;
  margin: 0 auto;
}
.block-faq .faq-item {
  border-bottom: 1px solid #D9D9D9;
}
.block-faq .faq-item:first-child {
  border-top: 1px solid #D9D9D9;
}
.block-faq .faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s ease;
}
.block-faq .faq-item__question:hover {
  color: #e4ba00;
}
.block-faq .faq-item__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: inherit;
}
@media (max-width: 768px) {
  .block-faq .faq-item__title {
    font-size: 18px;
  }
}
.block-faq .faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}
.block-faq .faq-item__icon::before, .block-faq .faq-item__icon::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  transition: transform 0.3s ease;
}
.block-faq .faq-item__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.block-faq .faq-item__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.block-faq .faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.block-faq .faq-item__content {
  padding-bottom: 24px;
  font-size: 16px;
  color: #404040;
  line-height: 1.7;
}
.block-faq .faq-item__content p {
  margin-bottom: 16px;
}
.block-faq .faq-item__content p:last-child {
  margin-bottom: 0;
}
.block-faq .faq-item__content ul, .block-faq .faq-item__content ol {
  margin: 16px 0;
  padding-left: 24px;
}
.block-faq .faq-item__content ul li, .block-faq .faq-item__content ol li {
  margin-bottom: 8px;
}
.block-faq .faq-item.is-active .faq-item__question {
  color: #e4ba00;
}
.block-faq .faq-item.is-active .faq-item__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.block-faq .faq-item.is-active .faq-item__answer {
  max-height: 1000px;
}
.block-faq.is-dark {
  background-color: #151515;
}
.block-faq.is-dark .faq__title {
  color: #ffffff;
}
.block-faq.is-dark .faq__subtitle {
  color: #D9D9D9;
}
.block-faq.is-dark .faq-item {
  border-color: #404040;
}
.block-faq.is-dark .faq-item__title {
  color: #ffffff;
}
.block-faq.is-dark .faq-item__content {
  color: #D9D9D9;
}

.block-cta {
  padding: 80px 0;
  background-color: #e4ba00;
}
@media (max-width: 768px) {
  .block-cta {
    padding: 64px 0;
  }
}
.block-cta .cta__wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.block-cta .cta__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: #151515;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.block-cta .cta__text {
  font-size: 18px;
  color: #151515;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.8;
}
.block-cta .cta__button .btn, .block-cta .cta__button .block-contacts .gform_wrapper .gform_button, .block-contacts .gform_wrapper .block-cta .cta__button .gform_button {
  background-color: #151515;
  color: #ffffff;
  border-color: #151515;
}
.block-cta .cta__button .btn:hover, .block-cta .cta__button .block-contacts .gform_wrapper .gform_button:hover, .block-contacts .gform_wrapper .block-cta .cta__button .gform_button:hover {
  background-color: rgb(46.5, 46.5, 46.5);
  border-color: rgb(46.5, 46.5, 46.5);
}
.block-cta.is-dark {
  background-color: #151515;
}
.block-cta.is-dark .cta__title {
  color: #ffffff;
}
.block-cta.is-dark .cta__text {
  color: #D9D9D9;
}
.block-cta.is-dark .cta__button .btn, .block-cta.is-dark .cta__button .block-contacts .gform_wrapper .gform_button, .block-contacts .gform_wrapper .block-cta.is-dark .cta__button .gform_button {
  background-color: #e4ba00;
  color: #151515;
  border-color: #e4ba00;
}
.block-cta.is-dark .cta__button .btn:hover, .block-cta.is-dark .cta__button .block-contacts .gform_wrapper .gform_button:hover, .block-contacts .gform_wrapper .block-cta.is-dark .cta__button .gform_button:hover {
  background-color: rgb(177, 144.3947368421, 0);
  border-color: rgb(177, 144.3947368421, 0);
}

.block-social-channels {
  padding: 120px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .block-social-channels {
    padding: 64px 0;
  }
}
.block-social-channels .social-channels__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 992px) {
  .block-social-channels .social-channels__wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 992px) {
  .block-social-channels .social-channels__content {
    text-align: center;
  }
}
.block-social-channels .social-channels__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #151515;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.block-social-channels .social-channels__text {
  font-size: 18px;
  color: #404040;
  line-height: 1.7;
}
.block-social-channels .social-channels__text p {
  margin-bottom: 16px;
}
.block-social-channels .social-channels__text p:last-child {
  margin-bottom: 0;
}
.block-social-channels .social-channels__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .block-social-channels .social-channels__list {
    grid-template-columns: 1fr;
  }
}
.block-social-channels .social-channel {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background-color: #F9F9F9;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.block-social-channels .social-channel:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.block-social-channels .social-channel__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e4ba00;
  border-radius: 8px;
}
.block-social-channels .social-channel__icon img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
}
.block-social-channels .social-channel__icon svg {
  width: 32px;
  height: 32px;
  fill: #151515;
}
.block-social-channels .social-channel__label {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #151515;
}
.block-social-channels.is-dark {
  background-color: #151515;
}
.block-social-channels.is-dark .social-channels__title {
  color: #ffffff;
}
.block-social-channels.is-dark .social-channels__text {
  color: #D9D9D9;
}
.block-social-channels.is-dark .social-channel {
  background-color: #202020;
}
.block-social-channels.is-dark .social-channel__label {
  color: #ffffff;
}

.block-info-links {
  padding: 120px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .block-info-links {
    padding: 64px 0;
  }
}
.block-info-links .info-links__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}
.block-info-links .info-links__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #151515;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.block-info-links .info-links__subtitle {
  font-size: 18px;
  color: #404040;
  line-height: 1.6;
}
.block-info-links .info-links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .block-info-links .info-links__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .block-info-links .info-links__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .block-info-links .info-links__grid {
    grid-template-columns: 1fr;
  }
}
.block-info-links .info-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: #F9F9F9;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  min-height: 80px;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.block-info-links .info-link:hover {
  background-color: #e4ba00;
  transform: translateY(-2px);
}
.block-info-links .info-link:hover .info-link__label {
  color: #151515;
}
.block-info-links .info-link__label {
  font-size: 16px;
  font-weight: 600;
  color: #151515;
  line-height: 1.4;
  transition: color 0.15s ease;
}
.block-info-links .info-links__cta {
  text-align: center;
  margin-top: 48px;
}
.block-info-links.is-dark {
  background-color: #151515;
}
.block-info-links.is-dark .info-links__title {
  color: #ffffff;
}
.block-info-links.is-dark .info-links__subtitle {
  color: #D9D9D9;
}
.block-info-links.is-dark .info-link {
  background-color: #202020;
}
.block-info-links.is-dark .info-link:hover {
  background-color: #e4ba00;
}
.block-info-links.is-dark .info-link__label {
  color: #ffffff;
}

.block-latest-posts {
  padding: 120px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .block-latest-posts {
    padding: 64px 0;
  }
}
.block-latest-posts .latest-posts__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .block-latest-posts .latest-posts__header {
    flex-direction: column;
    text-align: center;
  }
}
.block-latest-posts .latest-posts__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #151515;
  text-transform: uppercase;
}
.block-latest-posts .latest-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .block-latest-posts .latest-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .block-latest-posts .latest-posts__grid {
    grid-template-columns: 1fr;
  }
}
.block-latest-posts.is-dark {
  background-color: #151515;
}
.block-latest-posts.is-dark .latest-posts__title {
  color: #ffffff;
}

.post-card {
  background-color: #F9F9F9;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.post-card:hover .post-card__image img {
  transform: scale(1.05);
}

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

.post-card__content {
  padding: 24px;
}

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

.post-card__category {
  color: #e4ba00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-card__date {
  color: #a3a3a3;
}

.post-card__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}
.post-card__title a {
  color: #151515;
  text-decoration: none;
  transition: color 0.15s ease;
}
.post-card__title a:hover {
  color: #e4ba00;
}

.post-card__excerpt {
  font-size: 16px;
  color: #404040;
  line-height: 1.6;
}

.is-dark .post-card,
.block-latest-posts.is-dark .post-card {
  background-color: #202020;
}
.is-dark .post-card .post-card__title a,
.block-latest-posts.is-dark .post-card .post-card__title a {
  color: #ffffff;
}
.is-dark .post-card .post-card__title a:hover,
.block-latest-posts.is-dark .post-card .post-card__title a:hover {
  color: #e4ba00;
}
.is-dark .post-card .post-card__excerpt,
.block-latest-posts.is-dark .post-card .post-card__excerpt {
  color: #D9D9D9;
}

.block-contacts {
  padding: 120px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .block-contacts {
    padding: 64px 0;
  }
}
.block-contacts .contacts__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 992px) {
  .block-contacts .contacts__wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 992px) {
  .block-contacts .contacts__info {
    text-align: center;
  }
}
.block-contacts .contacts__title {
  font-family: "Druk Cyr", "Inter", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #151515;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.block-contacts .contacts__text {
  font-size: 18px;
  color: #404040;
  line-height: 1.7;
  margin-bottom: 32px;
}
.block-contacts .contacts__text p {
  margin-bottom: 16px;
}
.block-contacts .contacts__text p:last-child {
  margin-bottom: 0;
}
.block-contacts .contacts__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 992px) {
  .block-contacts .contacts__details {
    align-items: center;
  }
}
.block-contacts .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.block-contacts .contact-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e4ba00;
  border-radius: 8px;
}
.block-contacts .contact-item__icon svg {
  width: 24px;
  height: 24px;
  fill: #151515;
}
.block-contacts .contact-item__content a {
  color: #151515;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.block-contacts .contact-item__content a:hover {
  color: #e4ba00;
}
.block-contacts .contacts__form {
  background-color: #F9F9F9;
  border-radius: 16px;
  padding: 48px;
}
@media (max-width: 768px) {
  .block-contacts .contacts__form {
    padding: 32px;
  }
}
.block-contacts .gform_wrapper .gfield {
  margin-bottom: 24px;
}
.block-contacts .gform_wrapper .gfield_label {
  font-size: 16px;
  font-weight: 500;
  color: #151515;
  margin-bottom: 8px;
}
.block-contacts .gform_wrapper .gfield_required {
  color: #e4ba00;
}
.block-contacts .gform_wrapper input[type=text],
.block-contacts .gform_wrapper input[type=email],
.block-contacts .gform_wrapper input[type=tel],
.block-contacts .gform_wrapper textarea {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border: 2px solid #D9D9D9;
  border-radius: 8px;
  background-color: #ffffff;
  transition: border-color 0.15s ease;
}
.block-contacts .gform_wrapper input[type=text]:focus,
.block-contacts .gform_wrapper input[type=email]:focus,
.block-contacts .gform_wrapper input[type=tel]:focus,
.block-contacts .gform_wrapper textarea:focus {
  outline: none;
  border-color: #e4ba00;
}
.block-contacts .gform_wrapper input[type=text]::-moz-placeholder, .block-contacts .gform_wrapper input[type=email]::-moz-placeholder, .block-contacts .gform_wrapper input[type=tel]::-moz-placeholder, .block-contacts .gform_wrapper textarea::-moz-placeholder {
  color: #a3a3a3;
}
.block-contacts .gform_wrapper input[type=text]::placeholder,
.block-contacts .gform_wrapper input[type=email]::placeholder,
.block-contacts .gform_wrapper input[type=tel]::placeholder,
.block-contacts .gform_wrapper textarea::placeholder {
  color: #a3a3a3;
}
.block-contacts .gform_wrapper textarea {
  min-height: 150px;
  resize: vertical;
}
.block-contacts .gform_wrapper .gform_button {
  width: 100%;
}
.block-contacts .gform_wrapper .validation_error {
  background-color: rgba(220, 53, 69, 0.1);
  border-color: #dc3545;
  color: #dc3545;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.block-contacts .gform_wrapper .gfield_error input,
.block-contacts .gform_wrapper .gfield_error textarea {
  border-color: #dc3545;
}
.block-contacts.is-dark {
  background-color: #151515;
}
.block-contacts.is-dark .contacts__title {
  color: #ffffff;
}
.block-contacts.is-dark .contacts__text {
  color: #D9D9D9;
}
.block-contacts.is-dark .contact-item__content a {
  color: #ffffff;
}
.block-contacts.is-dark .contact-item__content a:hover {
  color: #e4ba00;
}
.block-contacts.is-dark .contacts__form {
  background-color: #202020;
}
.block-contacts.is-dark .gform_wrapper .gfield_label {
  color: #ffffff;
}
.block-contacts.is-dark .gform_wrapper input[type=text],
.block-contacts.is-dark .gform_wrapper input[type=email],
.block-contacts.is-dark .gform_wrapper input[type=tel],
.block-contacts.is-dark .gform_wrapper textarea {
  background-color: #151515;
  border-color: #404040;
  color: #ffffff;
}
.block-contacts.is-dark .gform_wrapper input[type=text]:focus,
.block-contacts.is-dark .gform_wrapper input[type=email]:focus,
.block-contacts.is-dark .gform_wrapper input[type=tel]:focus,
.block-contacts.is-dark .gform_wrapper textarea:focus {
  border-color: #e4ba00;
}
.block-contacts.is-dark .gform_wrapper input[type=text]::-moz-placeholder, .block-contacts.is-dark .gform_wrapper input[type=email]::-moz-placeholder, .block-contacts.is-dark .gform_wrapper input[type=tel]::-moz-placeholder, .block-contacts.is-dark .gform_wrapper textarea::-moz-placeholder {
  color: #a3a3a3;
}
.block-contacts.is-dark .gform_wrapper input[type=text]::placeholder,
.block-contacts.is-dark .gform_wrapper input[type=email]::placeholder,
.block-contacts.is-dark .gform_wrapper input[type=tel]::placeholder,
.block-contacts.is-dark .gform_wrapper textarea::placeholder {
  color: #a3a3a3;
}
/*# sourceMappingURL=main.css.map */
