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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #111111;
  background-color: #ffffff;
}

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

a {
  color: #0066cc;
  text-decoration: underline;
}
a:hover {
  color: #004499;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  line-height: 1.2;
}

p {
  margin-top: 0;
}

ul, ol {
  padding-left: 2rem;
}

button {
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1280px;
  max-width: calc(100% - 40px);
  z-index: 100;
  pointer-events: none;
}

.site-header__card {
  pointer-events: auto;
  background: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  gap: 20px;
}

.site-header__logo {
  flex-shrink: 0;
  width: 147px;
  height: 59px;
}

.site-header__logo-link,
.site-header__logo .custom-logo-link {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
}

.site-header__logo svg,
.site-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header__logo .custom-logo {
  display: block;
}

.site-header__logo .site-logo__text {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #200807;
}

.site-header__nav-area {
  display: flex;
  align-items: center;
  gap: 41px;
  flex: 1;
  justify-content: flex-end;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav__item {
  position: relative;
}
.site-nav__item:hover > .site-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav__link {
  font-family: "Sora", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.18px;
  color: #200807;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}
.site-nav__link:hover {
  color: #66c228;
}
.site-nav__link .site-nav__arrow {
  width: 20px;
  height: 20px;
  display: inline-flex;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

.site-nav__item:hover .site-nav__arrow {
  transform: rotate(0deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.site-nav__dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: #200807;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav__dropdown li a:hover {
  background: rgba(102, 194, 40, 0.08);
  color: #66c228;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.site-header__search-btn {
  background: none;
  border: none;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #200807;
  width: 30px;
  height: 30px;
}
.site-header__search-btn svg {
  width: 24px;
  height: 24px;
}
.site-header__search-btn:hover {
  color: #66c228;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  background: #66c228;
  color: #fff;
  border-radius: 6px;
  font-family: "Sora", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.18px;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.site-header__cta:hover {
  background: rgb(84.2153846154, 160.1743589744, 33.0256410256);
  color: #fff;
}

.site-header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 32px;
}
.site-header__mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #200807;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-header__mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.site-header__mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  padding: 100px 30px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.site-header__mobile-nav.is-open {
  transform: translateX(0);
}
.site-header__mobile-nav .site-nav__list {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.site-header__mobile-nav .site-nav__item {
  width: 100%;
  border-bottom: 1px solid rgba(32, 8, 7, 0.08);
}
.site-header__mobile-nav .site-nav__link {
  padding: 16px 0;
  font-size: 1.5rem;
  justify-content: space-between;
  width: 100%;
}
.site-header__mobile-nav .site-nav__dropdown {
  position: static;
  transform: none;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  display: none;
  padding: 0 0 0 16px;
  border-radius: 0;
}
.site-header__mobile-nav .site-nav__dropdown.is-open {
  display: block;
}
.site-header__mobile-nav .site-nav__dropdown li a {
  padding: 12px 0;
  font-size: 1.125rem;
}
.site-header__mobile-nav .site-header__cta {
  margin-top: 30px;
  width: 100%;
  justify-content: center;
  font-size: 1.25rem;
}

@media (max-width: 1279px) {
  .site-header {
    top: 20px;
  }
  .site-nav__list {
    gap: 20px;
  }
  .site-nav__link {
    font-size: 1.125rem;
  }
  .site-header__cta {
    font-size: 1.125rem;
    padding: 14px 18px;
  }
}
@media (max-width: 1023px) {
  .site-header__nav-area {
    display: none;
  }
  .site-header__mobile-toggle {
    display: flex;
  }
  .site-header__mobile-nav {
    display: block;
  }
}
@media (max-width: 767px) {
  .site-header {
    top: 10px;
    max-width: calc(100% - 24px);
  }
  .site-header__card {
    padding: 14px 20px;
  }
  .site-header__logo {
    width: 110px;
    height: 44px;
  }
}
body:not(.has-hero-block) .site-main {
  padding-top: calc(99px + 40px + 40px);
}

.site-footer {
  margin-top: 0;
  background: linear-gradient(104.61deg, #0f4062 1%, #15527b 102.78%);
  color: #fff;
}

.site-footer__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: 80px 30px 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 2.5fr);
  gap: 80px 93px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.site-footer__logo {
  width: 168px;
  min-height: 68px;
}

.site-footer__logo-link,
.site-footer__logo .custom-logo-link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.site-footer__logo svg,
.site-footer__logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.site-footer__logo .custom-logo {
  display: block;
}

.site-footer__logo-text {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.site-footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__contact-link {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.875;
  color: #fff;
  text-decoration: none;
}
.site-footer__contact-link:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer__nav-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 40px 136px;
}

.site-footer__nav-group {
  min-width: 0;
}

.site-footer__heading {
  margin: 0 0 20px;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 600;
  color: #fff;
}

.site-footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__menu li {
  margin: 0;
}
.site-footer__menu a {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.875;
  color: #fff;
  text-decoration: none;
}
.site-footer__menu a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer__bottom {
  grid-column: 1/-1;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer__copy {
  margin: 0;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.875;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1023px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 64px;
  }
  .site-footer__nav-columns {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .site-footer__inner {
    padding: 48px 20px 28px;
    gap: 40px;
  }
  .site-footer__nav-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.search-overlay.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

.search-overlay__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1024px) {
  .search-overlay__inner {
    padding: 32px 30px;
  }
}

.search-overlay__form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 12px 20px;
}

.search-overlay__input {
  flex: 1;
  border: none;
  background: none;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  color: #200807;
  outline: none;
}
.search-overlay__input::placeholder {
  color: #666666;
}

.search-overlay__submit {
  background: #66c228;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.search-overlay__submit:hover {
  background: rgb(84.2153846154, 160.1743589744, 33.0256410256);
}

.search-overlay__close {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #200807;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s ease;
  font-size: 1.5rem;
  line-height: 1;
}
.search-overlay__close:hover {
  background: rgba(32, 8, 7, 0.06);
}

.dict-hero {
  position: relative;
  background-image: linear-gradient(96.89deg, #0f4062 0.99%, #15527b 102.78%);
  min-height: 874px;
  display: flex;
  align-items: center;
}
.dict-hero__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding: 120px 80px 80px;
  display: flex;
  align-items: center;
  gap: 39px;
}
.dict-hero__content {
  flex: 0 0 583px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.dict-hero__heading {
  display: flex;
  flex-direction: column;
}
.dict-hero__heading .dict-hero__line--white {
  font-size: 80px;
  font-weight: 600;
  line-height: 94px;
  letter-spacing: -2.4px;
  color: #ffffff;
  margin: 0;
}
.dict-hero__heading .dict-hero__line--green {
  font-size: 80px;
  font-weight: 600;
  line-height: 94px;
  letter-spacing: -2.4px;
  color: #66c228;
  margin: 0 0 20px;
}
.dict-hero__heading .dict-hero__subtitle {
  font-size: 21px;
  color: #e3e3ec;
  line-height: 1.52;
  text-align: justify;
  margin: 0;
}
.dict-hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.dict-hero__btn {
  display: inline-block;
  padding: 22px 27px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.16px;
  transition: opacity 0.2s ease;
}
.dict-hero__btn:hover {
  opacity: 0.9;
}
.dict-hero__btn--primary {
  background-color: #66c228;
  color: #ffffff;
}
.dict-hero__btn--secondary {
  background-color: #ffffff;
  color: #14517b;
}
.dict-hero__image-wrap {
  flex: 0 0 658px;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.dict-hero__image-arch {
  position: relative;
  z-index: 1;
  width: 100%;
}
.dict-hero__image-arch img {
  width: 100%;
  height: 100%;
  display: block;
}
.dict-hero__green-pill {
  position: absolute;
  right: -40px;
  bottom: 60px;
  width: 220px;
  height: 88px;
  background-color: #66c228;
  border-radius: 44px;
  z-index: 0;
}
@media (max-width: 1023px) {
  .dict-hero {
    min-height: auto;
  }
  .dict-hero__inner {
    padding: 100px 40px 60px;
    gap: 30px;
    flex-direction: column;
  }
  .dict-hero__content {
    flex: none;
    width: 100%;
  }
  .dict-hero__heading .dict-hero__line--white,
  .dict-hero__heading .dict-hero__line--green {
    font-size: 56px;
    line-height: 66px;
  }
  .dict-hero__image-wrap {
    flex: none;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .dict-hero__inner {
    padding: 80px 20px 40px;
  }
  .dict-hero__heading .dict-hero__line--white,
  .dict-hero__heading .dict-hero__line--green {
    font-size: 40px;
    line-height: 50px;
  }
  .dict-hero__heading .dict-hero__subtitle {
    font-size: 18px;
  }
  .dict-hero__btn {
    padding: 16px 20px;
  }
}

.dict-inner-hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  padding-top: calc(99px + 40px);
  padding-bottom: 0;
}

.dict-inner-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.dict-inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 31, 101, 0.6);
  mix-blend-mode: hard-light;
  z-index: 1;
}

.dict-inner-hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 136% 145%, rgba(24, 93, 140, 0) 0%, rgba(16, 66, 100, 0.5) 50%, rgb(8, 38, 59) 100%);
  z-index: 2;
}

.dict-inner-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 30px;
  text-align: center;
}

.dict-inner-hero__title {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.175;
  font-size: var(--dict-hero-font-size, 5rem);
}
@media (max-width: 1023px) {
  .dict-inner-hero__title {
    font-size: var(--dict-hero-font-size-tablet, var(--dict-hero-font-size, 3.75rem));
  }
}
@media (max-width: 767px) {
  .dict-inner-hero__title {
    font-size: var(--dict-hero-font-size-mobile, var(--dict-hero-font-size-tablet, var(--dict-hero-font-size, 3rem)));
  }
}

@media (max-width: 1023px) {
  .dict-inner-hero[data-bg-tablet] .dict-inner-hero__bg {
    background-image: var(--dict-hero-bg-tablet) !important;
  }
}
@media (max-width: 767px) {
  .dict-inner-hero[data-bg-mobile] .dict-inner-hero__bg {
    background-image: var(--dict-hero-bg-mobile) !important;
  }
}
.editor-styles-wrapper .dict-inner-hero {
  margin-top: 0;
  padding-top: 60px;
  min-height: 400px;
}

.dict-section {
  position: relative;
  overflow: hidden;
  background-color: var(--dict-section-background-color, transparent);
  padding-top: var(--dict-section-padding-top, 100px);
  padding-bottom: var(--dict-section-padding-bottom, 100px);
}

.dict-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.dict-section__container {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-inline: auto;
}

.dict-section__container--wide {
  max-width: 1440px;
  padding-inline: 80px;
}

.dict-section__container--content {
  max-width: 720px;
  padding-inline: 30px;
}

.dict-section__container--narrow {
  max-width: 960px;
  padding-inline: 30px;
}

.dict-section__container--full {
  max-width: none;
}

@media (max-width: 1023px) {
  .dict-section {
    padding-top: var(--dict-section-padding-top-tablet, var(--dict-section-padding-top, 80px));
    padding-bottom: var(--dict-section-padding-bottom-tablet, var(--dict-section-padding-bottom, 80px));
  }
}
@media (max-width: 767px) {
  .dict-section {
    padding-top: var(--dict-section-padding-top-mobile, var(--dict-section-padding-top-tablet, 60px));
    padding-bottom: var(--dict-section-padding-bottom-mobile, var(--dict-section-padding-bottom-tablet, 60px));
  }
  .dict-section__container--wide,
  .dict-section__container--content,
  .dict-section__container--narrow {
    padding-inline: 20px;
  }
}
.editor-styles-wrapper .dict-section {
  min-height: 140px;
}

.dict-contact-section {
  padding: 80px 0;
  background: #fff;
}

.dict-contact-section__inner {
  width: min(100%, 752px);
  margin: 0 auto;
}

.dict-contact-section__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.dict-contact-section__title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #101624;
  text-align: center;
}

.dict-contact-section__description {
  width: min(100%, 752px);
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #101624;
  text-align: center;
}

.dict-contact-section__details {
  display: flex;
  justify-content: center;
  gap: 120px;
  width: 100%;
}

.dict-contact-section__detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: min(100%, 238px);
}

.dict-contact-section__icon {
  display: inline-flex;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  color: #66c228;
}
.dict-contact-section__icon svg {
  width: 100%;
  height: 100%;
}

.dict-contact-section__detail-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.dict-contact-section__detail-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #202024;
}

.dict-contact-section__detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #101624;
}

.dict-contact-section__contact-link {
  color: inherit;
  text-decoration: none;
}

.dict-contact-section__card {
  width: min(100%, 678px);
  margin: 40px auto 0;
  padding: 30px 40px;
  border-radius: 20px;
  background: #f6f6f6;
}

.dict-contact-section__card-title {
  margin: 0 0 30px;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #141414;
}

.dict-contact-section__form-shell .wpcf7 {
  width: 100%;
}

.dict-contact-section__form-shell .wpcf7 *,
.dict-contact-section__form-shell .wpcf7 *::before,
.dict-contact-section__form-shell .wpcf7 *::after {
  box-sizing: border-box;
}

.dict-contact-section__form-shell .wpcf7-form,
.dict-contact-section__editor-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 281px));
  justify-content: space-between;
  gap: 20px 26px;
}

.dict-contact-section__form-shell .wpcf7-form {
  align-items: start;
}

.dict-contact-section__form-shell .wpcf7-form > p,
.dict-contact-section__form-shell .dict-contact-form__field,
.dict-contact-section__editor-row {
  margin: 0;
}

.dict-contact-section__form-shell p {
  margin: 0;
}

.dict-contact-section__form-shell .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.dict-contact-section__form-shell .dict-contact-form__field,
.dict-contact-section__form-shell .dict-contact-form__checkbox-row,
.dict-contact-section__form-shell .dict-contact-form__submit {
  width: 100%;
}

.dict-contact-section__form-shell .dict-contact-form__field > p,
.dict-contact-section__form-shell .dict-contact-form__submit > p,
.dict-contact-section__form-shell .dict-contact-form__checkboxes > p,
.dict-contact-section__form-shell .dict-contact-form__checkbox-row > p {
  margin: 0;
}

.dict-contact-section__editor-row {
  display: contents;
}

.dict-contact-section__form-shell .dict-contact-form__field--full,
.dict-contact-section__form-shell .dict-contact-form__checkboxes,
.dict-contact-section__form-shell .dict-contact-form__required-note,
.dict-contact-section__form-shell .dict-contact-form__submit,
.dict-contact-section__form-shell .wpcf7-response-output,
.dict-contact-section__form-placeholder,
.dict-contact-section__editor-field--full,
.dict-contact-section__editor-shortcode {
  grid-column: 1/-1;
}

.dict-contact-section__form-shell label,
.dict-contact-section__form-shell .wpcf7-list-item-label,
.dict-contact-section__form-placeholder,
.dict-contact-section__editor-shortcode {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #141414;
}

.dict-contact-section__form-shell input[type=text],
.dict-contact-section__form-shell input[type=email],
.dict-contact-section__form-shell input[type=tel],
.dict-contact-section__form-shell textarea {
  display: block;
  max-width: none;
  width: 100%;
  height: 54px;
  padding: 16px 0 17px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid #e3e3ec;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #141414;
  appearance: none;
}
.dict-contact-section__form-shell input[type=text]::placeholder,
.dict-contact-section__form-shell input[type=email]::placeholder,
.dict-contact-section__form-shell input[type=tel]::placeholder,
.dict-contact-section__form-shell textarea::placeholder {
  color: #141414;
  opacity: 1;
}
.dict-contact-section__form-shell input[type=text]:focus,
.dict-contact-section__form-shell input[type=email]:focus,
.dict-contact-section__form-shell input[type=tel]:focus,
.dict-contact-section__form-shell textarea:focus {
  border-bottom-color: #66c228;
  outline: none;
}

.dict-contact-section__form-shell textarea {
  min-height: 54px;
  height: 54px;
  resize: none;
  overflow: hidden;
}

.dict-contact-section__form-shell .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 0.75rem;
  line-height: 1.3;
}

.dict-contact-section__form-shell .wpcf7-list-item {
  margin: 0;
}

.dict-contact-section__form-shell .dict-contact-form__checkboxes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 2px;
}

.dict-contact-section__form-shell .dict-contact-form__checkbox-row .wpcf7-form-control-wrap {
  display: block;
}

.dict-contact-section__form-shell .dict-contact-form__checkbox-row > p {
  display: block;
}

.dict-contact-section__form-shell .dict-contact-form__checkbox-row > label {
  display: flex;
  align-items: flex-start;
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  color: #141414;
}

.dict-contact-section__form-shell .dict-contact-form__checkbox-row a {
  color: #2062f0;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.dict-contact-section__form-shell .wpcf7-checkbox,
.dict-contact-section__form-shell .wpcf7-acceptance {
  display: block;
}

.dict-contact-section__form-shell .wpcf7-list-item-label {
  font-size: 0.75rem;
  line-height: 1.2;
  color: #141414;
}

.dict-contact-section__form-shell input[type=checkbox] {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin: 1px 13px 0 0;
  border: 1px solid #767676;
  border-radius: 2.5px;
  background: #fff;
  vertical-align: top;
}

.dict-contact-section__form-shell .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
}

.dict-contact-section__form-shell .dict-contact-form__checkbox-row label,
.dict-contact-section__form-shell .wpcf7-list-item label {
  gap: 0;
}

.dict-contact-section__form-shell .dict-contact-form__checkbox-row span,
.dict-contact-section__form-shell .wpcf7-list-item-label {
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  color: #141414;
}

.dict-contact-section__form-shell .wpcf7-acceptance .wpcf7-list-item,
.dict-contact-section__form-shell .wpcf7-checkbox .wpcf7-list-item {
  display: block;
}

.dict-contact-section__form-shell .wpcf7-acceptance label,
.dict-contact-section__form-shell .wpcf7-checkbox label {
  display: flex;
  align-items: flex-start;
}

.dict-contact-section__form-shell .dict-contact-form__required-note {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.2;
  color: #141414;
}

.dict-contact-section__form-shell .wpcf7-response-output {
  margin: 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.4;
}

.dict-contact-section__form-shell .dict-contact-form__submit,
.dict-contact-section__form-shell .wpcf7-submit {
  margin-top: 0;
}

.dict-contact-section__form-shell .dict-contact-form__submit {
  padding-top: 6px;
}

.dict-contact-section__form-shell .dict-contact-form__submit > p {
  display: flex;
  justify-content: flex-start;
}

.dict-contact-section__form-shell .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 155px;
  height: 60px;
  padding: 22px 50px;
  border: 0;
  border-radius: 6px;
  background: #66c228;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.dict-contact-section__form-shell .wpcf7-submit:hover, .dict-contact-section__form-shell .wpcf7-submit:focus {
  background: #559e1f;
  outline: none;
}

.dict-contact-section__form-shell .wpcf7-spinner {
  margin: 12px 0 0 12px;
}

.dict-contact-section__legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.dict-contact-section__legal-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.dict-contact-section__legal-row p {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  color: #141414;
}

.dict-contact-section__checkbox {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border: 1px solid #767676;
  border-radius: 2.5px;
  background: #fff;
}

.dict-contact-section__policy-link {
  color: #2062f0;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.dict-contact-section__policy-text {
  color: #141414;
}

.dict-contact-section__required-note {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.2;
  color: #141414;
}

.dict-contact-section__form-placeholder,
.dict-contact-section__editor-shortcode {
  padding: 18px 20px;
  border: 1px dashed #cfcfe0;
  border-radius: 12px;
  background: #fff;
  line-height: 1.5;
}

.dict-contact-section__editor-field {
  display: block;
  width: 100%;
  height: 54px;
  border-bottom: 1px solid #e3e3ec;
}

.editor-styles-wrapper .dict-contact-section {
  padding-inline: 20px;
}

@media (max-width: 1023px) {
  .dict-contact-section__details {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .dict-contact-section {
    padding: 60px 0;
  }
  .dict-contact-section__inner {
    width: 100%;
  }
  .dict-contact-section__title {
    font-size: 2rem;
  }
  .dict-contact-section__details,
  .dict-contact-section__form-shell .wpcf7-form,
  .dict-contact-section__editor-preview {
    grid-template-columns: 1fr;
    display: grid;
    justify-content: stretch;
  }
  .dict-contact-section__details {
    justify-items: stretch;
  }
  .dict-contact-section__detail {
    width: 100%;
  }
  .dict-contact-section__card {
    width: 100%;
    padding: 24px 20px;
  }
  .dict-contact-section__form-shell .dict-contact-form__submit {
    padding-top: 0;
  }
  .dict-contact-section__form-shell .wpcf7-submit {
    width: 100%;
  }
}
.dict-row {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--dict-row-gap, 2rem);
  align-items: var(--dict-row-align-items, stretch);
  justify-content: var(--dict-row-justify, flex-start);
}

.dict-column {
  flex: 1 1 var(--dict-column-width, 0%);
  min-width: 0;
  align-self: var(--dict-column-align-self, stretch);
}

@media (max-width: 1023px) {
  .dict-row {
    flex-wrap: var(--dict-row-wrap, nowrap);
    gap: var(--dict-row-gap-tablet, var(--dict-row-gap, 1.5rem));
  }
  .dict-column {
    flex-basis: var(--dict-column-width-tablet, var(--dict-column-width, 0%));
  }
}
@media (max-width: 767px) {
  .dict-row {
    flex-wrap: wrap;
    gap: var(--dict-row-gap-mobile, var(--dict-row-gap-tablet, 1rem));
  }
  .dict-column {
    flex: 1 1 var(--dict-column-width-mobile, 100%);
  }
}
.dict-row .dict-column .wp-block-image:only-child {
  display: block;
  margin: 0;
  line-height: 0;
  overflow: hidden;
  height: 100%;
}
.dict-row .dict-column .wp-block-image:only-child img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dict-row .dict-column h1, .dict-row .dict-column h2, .dict-row .dict-column h3, .dict-row .dict-column h4, .dict-row .dict-column h5, .dict-row .dict-column h6 {
  margin: 0;
}
.dict-row .dict-column p {
  margin: 0;
}
.dict-row .dict-column ul, .dict-row .dict-column ol {
  margin: 0;
  padding-left: 1.5rem;
}

.dict-row .dict-column .wp-block-heading {
  font-family: "Sora", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #101624;
}

.dict-row .dict-column .wp-block-paragraph {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #101624;
  text-align: justify;
}

.dict-row .dict-column .wp-block-list {
  list-style: disc;
}
.dict-row .dict-column .wp-block-list li {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
  color: #101624;
}

.dict-row .dict-column .wp-block-paragraph:has(+ .wp-block-buttons) {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #66c228;
  text-align: left;
}

.dict-row .dict-column .wp-block-button__link {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 1.375rem 3.125rem;
  border-radius: 6px;
  background-color: #66c228;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
}
.dict-row .dict-column .wp-block-button__link:hover {
  background-color: #559e1f;
  color: #fff;
}

.dict-row .dict-column .wp-block-heading + * {
  margin-top: 1.25rem;
}

.dict-row .dict-column .wp-block-paragraph + .wp-block-paragraph {
  margin-top: 1.875rem;
}

.dict-row .dict-column .wp-block-paragraph + .wp-block-paragraph:has(+ .wp-block-buttons) {
  margin-top: 1.25rem;
}

.dict-row .dict-column .wp-block-paragraph + .wp-block-list,
.dict-row .dict-column .wp-block-list + .wp-block-paragraph {
  margin-top: 1.25rem;
}

.dict-row .dict-column .wp-block-buttons {
  margin-top: 3.125rem;
}

@media (max-width: 767px) {
  .dict-row .dict-column .wp-block-heading {
    font-size: 2rem;
  }
  .dict-row .dict-column .wp-block-paragraph:has(+ .wp-block-buttons) {
    font-size: 1.25rem;
  }
}
.dict-services {
  background-color: #ffffff;
  padding-block: 100px;
}
.dict-services__container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 80px;
}
.dict-services__header {
  text-align: center;
  margin-bottom: 40px;
}
.dict-services__title {
  font-size: 3rem;
  font-weight: 700;
  color: #101624;
  letter-spacing: -0.03em;
  line-height: 1.4;
  margin-bottom: 20px;
}
.dict-services__subtitle {
  font-size: 1.25rem;
  color: #101624;
  line-height: 1.5;
}
.dict-services__slider {
  position: relative;
  overflow: hidden;
}
.dict-services__track {
  align-items: stretch;
}
.dict-services__card {
  background-color: #f6f6f6;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  height: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  box-sizing: border-box;
}
.dict-services__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.dict-services__card-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.dict-services__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.dict-services__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dict-services__card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dict-services__card-body .wp-block-heading,
.dict-services__card-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #101624;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin: 0;
}
.dict-services__card-body p {
  font-size: 1rem;
  color: #101624;
  line-height: 1.5;
  margin: 0;
  text-align: justify;
  min-height: 80px;
}
.dict-services__card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #66c228;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
}
.dict-services__card-link:hover {
  text-decoration: underline;
}
.dict-services__arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.dict-services__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 20px;
  margin-top: 40px;
  position: static !important;
  bottom: auto !important;
}
.dict-services__dot {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #dfdfdf;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 10px;
  transition: background-color 0.2s ease;
  position: relative;
  display: inline-block;
}
.dict-services__dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid #101624;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.dict-services__dot.is-active {
  background-color: #101624;
}
.dict-services__dot.is-active::after {
  opacity: 1;
}
@media (max-width: 1023px) {
  .dict-services {
    padding-block: 80px;
  }
  .dict-services__container {
    padding-inline: 40px;
  }
  .dict-services__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .dict-services {
    padding-block: 60px;
  }
  .dict-services__container {
    padding-inline: 20px;
  }
  .dict-services__title {
    font-size: 2rem;
  }
  .dict-services__subtitle {
    font-size: 1rem;
  }
}

.dict-choose-us {
  background-color: #ffffff;
  padding-block: 80px;
}
.dict-choose-us__container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.dict-choose-us__image-wrap {
  flex-shrink: 0;
  width: 542px;
  height: 482px;
  position: relative;
}
.dict-choose-us__image {
  width: 100%;
  height: 100%;
}
.dict-choose-us__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 649px;
}
.dict-choose-us__content .wp-block-heading,
.dict-choose-us__content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #101624;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
}
.dict-choose-us__content p,
.dict-choose-us__content .wp-block-paragraph {
  font-size: 1.125rem;
  color: #101624;
  line-height: 1.6;
  margin: 0;
}
.dict-choose-us__content .wp-block-list,
.dict-choose-us__content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dict-choose-us__content .wp-block-list li,
.dict-choose-us__content ul li {
  font-size: 1rem;
  font-weight: 600;
  color: #101624;
  line-height: 1.6;
}
.dict-choose-us__btn {
  display: inline-block;
  align-self: flex-start;
  background-color: #66c228;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 3rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.dict-choose-us__btn:hover {
  background-color: rgb(84.2153846154, 160.1743589744, 33.0256410256);
  transform: translateY(-1px);
}
@media (max-width: 1279px) {
  .dict-choose-us__container {
    padding-inline: 40px;
    gap: 40px;
  }
  .dict-choose-us__image-wrap {
    width: 420px;
    height: 375px;
  }
}
@media (max-width: 1023px) {
  .dict-choose-us {
    padding-block: 80px;
  }
  .dict-choose-us__container {
    flex-direction: column;
    padding-inline: 40px;
  }
  .dict-choose-us__image-wrap {
    width: 100%;
    max-width: 480px;
    height: 360px;
    align-self: center;
  }
  .dict-choose-us__content {
    max-width: 100%;
  }
  .dict-choose-us__content .wp-block-heading, .dict-choose-us__content h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .dict-choose-us {
    padding-block: 60px;
  }
  .dict-choose-us__container {
    padding-inline: 20px;
  }
  .dict-choose-us__image-wrap {
    height: 280px;
    border-radius: 100px 0 100px 0;
  }
  .dict-choose-us__content .wp-block-heading, .dict-choose-us__content h2 {
    font-size: 2rem;
  }
}

.dict-tech-partners {
  background-color: #ffffff;
  padding-block: 60px;
}
.dict-tech-partners__container {
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}
.dict-tech-partners__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #101624;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1.6;
}
.dict-tech-partners__marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.dict-tech-partners__marquee-wrap::before, .dict-tech-partners__marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 1;
  pointer-events: none;
}
.dict-tech-partners__marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}
.dict-tech-partners__marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}
.dict-tech-partners__marquee {
  display: flex;
  align-items: center;
  animation: dict-marquee 30s linear infinite;
  width: max-content;
}
.dict-tech-partners__marquee:hover {
  animation-play-state: paused;
}
.dict-tech-partners__logos {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.dict-tech-partners__logos .wp-block-image {
  margin: 0;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 215px;
  height: 100px;
  flex-shrink: 0;
}
.dict-tech-partners__logos .wp-block-image:hover {
  opacity: 1;
}
.dict-tech-partners__logos .wp-block-image img {
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.dict-tech-partners__logos .wp-block-image figcaption {
  display: none;
}
@media (max-width: 767px) {
  .dict-tech-partners {
    padding-block: 60px;
  }
  .dict-tech-partners__title {
    font-size: 1.5rem;
    padding-inline: 20px;
  }
  .dict-tech-partners__logos .wp-block-image {
    width: 160px;
    height: 90px;
  }
}

@keyframes dict-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.dict-contact-cta {
  background-color: #ffffff;
  padding-block: 100px;
}
.dict-contact-cta__container {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.dict-contact-cta__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.dict-contact-cta__text h2,
.dict-contact-cta__text h2.wp-block-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #101624;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
}
.dict-contact-cta__text p,
.dict-contact-cta__text .wp-block-paragraph {
  font-size: 1.25rem;
  color: #101624;
  line-height: 1.5;
  margin: 0;
}
.dict-contact-cta__text h4,
.dict-contact-cta__text h4.wp-block-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #101624;
  line-height: 1.5;
  margin: 10px 0 0;
}
.dict-contact-cta__btn {
  display: inline-block;
  background-color: #66c228;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 3rem;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 30px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.dict-contact-cta__btn:hover {
  background-color: rgb(84.2153846154, 160.1743589744, 33.0256410256);
  transform: translateY(-1px);
}
@media (max-width: 1023px) {
  .dict-contact-cta {
    padding-block: 80px;
  }
  .dict-contact-cta__container {
    padding-inline: 40px;
  }
  .dict-contact-cta__text h2, .dict-contact-cta__text h2.wp-block-heading {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .dict-contact-cta {
    padding-block: 60px;
  }
  .dict-contact-cta__container {
    padding-inline: 20px;
  }
  .dict-contact-cta__text h2, .dict-contact-cta__text h2.wp-block-heading {
    font-size: 2rem;
  }
  .dict-contact-cta__text p, .dict-contact-cta__text .wp-block-paragraph {
    font-size: 1rem;
  }
  .dict-contact-cta__text h4, .dict-contact-cta__text h4.wp-block-heading {
    font-size: 1.25rem;
  }
}

.dict-about-apart {
  background-color: #ffffff;
  padding-block: 100px;
}
.dict-about-apart__container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.dict-about-apart__header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.dict-about-apart__title {
  font-size: 3rem;
  font-weight: 600;
  color: #101624;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
}
.dict-about-apart__desc {
  font-size: 1.125rem;
  color: #101624;
  line-height: 1.6;
  text-align: justify;
  margin: 0;
}
.dict-about-apart__body {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
}
.dict-about-apart__left {
  flex-shrink: 0;
  width: 558px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dict-about-apart__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.dict-about-apart__quote {
  font-size: 1.75rem;
  font-weight: 700;
  color: #66c228;
  line-height: 1.5;
  margin: 0;
  padding-top: 30px;
}
.dict-about-apart__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1279px) {
  .dict-about-apart__container {
    padding-inline: 40px;
  }
  .dict-about-apart__left {
    width: 440px;
  }
}
@media (max-width: 1023px) {
  .dict-about-apart {
    padding-block: 80px;
  }
  .dict-about-apart__container {
    padding-inline: 40px;
    gap: 40px;
  }
  .dict-about-apart__body {
    flex-direction: column;
    gap: 40px;
  }
  .dict-about-apart__left {
    width: 100%;
    justify-content: flex-start;
    gap: 24px;
  }
  .dict-about-apart__image {
    height: 340px;
  }
  .dict-about-apart__quote {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .dict-about-apart {
    padding-block: 60px;
  }
  .dict-about-apart__container {
    padding-inline: 20px;
    gap: 32px;
  }
  .dict-about-apart__title {
    font-size: 2rem;
  }
  .dict-about-apart__body {
    gap: 32px;
  }
  .dict-about-apart__image {
    height: 260px;
  }
  .dict-about-apart__quote {
    font-size: 1.375rem;
  }
  .dict-about-apart__right {
    gap: 32px;
  }
}
@media (max-width: 479px) {
  .dict-about-apart {
    padding-block: 48px;
  }
  .dict-about-apart__container {
    padding-inline: 16px;
  }
  .dict-about-apart__title {
    font-size: 1.75rem;
  }
  .dict-about-apart__image {
    height: 220px;
  }
  .dict-about-apart__quote {
    font-size: 1.25rem;
  }
}

.dict-about-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.dict-about-item__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}
.dict-about-item__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dict-about-item__body h3,
.dict-about-item__body .wp-block-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #101624;
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin: 0;
}
.dict-about-item__body p {
  font-size: 1rem;
  color: #101624;
  line-height: 1.5;
  text-align: justify;
  margin: 0;
}
.dict-about-item__body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dict-about-item__body ul li {
  font-size: 1rem;
  color: #101624;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .dict-about-item {
    gap: 20px;
  }
}

.dict-about-approach {
  background-color: #f6f6f6;
  padding-block: 100px;
}
.dict-about-approach__container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.dict-about-approach__header {
  width: 100%;
  text-align: center;
}
.dict-about-approach__title {
  font-size: 3rem;
  font-weight: 600;
  color: #101624;
  letter-spacing: -0.03em;
  line-height: 1.4;
  margin: 0;
}
.dict-about-approach__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1279px) {
  .dict-about-approach__container {
    padding-inline: 40px;
  }
}
@media (max-width: 1023px) {
  .dict-about-approach {
    padding-block: 80px;
  }
  .dict-about-approach__container {
    padding-inline: 40px;
  }
  .dict-about-approach__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .dict-about-approach {
    padding-block: 60px;
  }
  .dict-about-approach__container {
    padding-inline: 20px;
  }
  .dict-about-approach__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dict-about-approach__title {
    font-size: 2rem;
  }
}
@media (max-width: 479px) {
  .dict-about-approach {
    padding-block: 48px;
  }
  .dict-about-approach__container {
    padding-inline: 16px;
  }
  .dict-about-approach__title {
    font-size: 1.75rem;
  }
}

.dict-about-approach-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.dict-about-approach-card__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.dict-about-approach-card__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
}
.dict-about-approach-card__body h3,
.dict-about-approach-card__body .wp-block-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #101624;
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin: 0;
}
.dict-about-approach-card__body p {
  font-size: 1rem;
  color: #101624;
  line-height: 1.5;
  text-align: justify;
  margin: 0;
}
@media (max-width: 767px) {
  .dict-about-approach-card {
    padding: 20px;
  }
}/**
 * Swiper 12.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 27, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
