@charset "UTF-8";
:root {
  --font-family: "Roboto-Regular", sans-serif;
  --dark-blue: #1F2640;
  --white: #FAFBFC;
  --blue-accent: #6D9DEF;
  --yellow-accent: #DBAD00;
  --blue-text: #DCE3EA;
  --blue-grey: #8FA3B5;
  --blue-dark-text: #5F6C8C;
}

/* stylelint-disable */
@font-face {
  src: url("/wp-content/themes/acquire/assets/fonts/BebasNeue-Regular.woff") format("woff");
  font-family: "BebasNeue-Regular";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("/wp-content/themes/acquire/assets/fonts/Roboto-Bold.woff") format("woff");
  font-family: "Roboto-Bold";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("/wp-content/themes/acquire/assets/fonts/Roboto-SemiBold.woff") format("woff");
  font-family: "Roboto-SemiBold";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("/wp-content/themes/acquire/assets/fonts/Roboto-Medium.woff") format("woff");
  font-family: "Roboto-Medium";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("/wp-content/themes/acquire/assets/fonts/Roboto-Regular.woff") format("woff");
  font-family: "Roboto-Regular";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: var(--dark);
  background: var(--white);
}

body.is-loading {
  overflow: hidden;
}

body.popup-open {
  overflow: hidden !important;
}

body.no-scroll {
  overflow: hidden;
}

html.popup-open {
  overflow: hidden !important;
}

html {
  scrollbar-gutter: stable;
  scroll-behavior: auto;
}

/* Скроллбар для попапа с Lenis */
body::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  border-radius: 10px;
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--blue-text);
}

/* Для Firefox */
html {
  scrollbar-color: var(--blue-dark-text) rgba(0, 0, 0, 0.05);
  scrollbar-width: thin;
}

html {
  font-size: 1rem;
}

@media screen and (max-width: 1920px) {
  html {
    font-size: calc(0.4642857143rem + 0.4464285714vw);
  }
}
.page {
  min-height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

p, h1, h2, h3, h4, h5, h6, ul, li {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

input, textarea, select {
  outline: none;
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.container {
  margin: 0 auto;
  width: 100%;
  height: auto;
  padding: 0 40px;
  max-width: 2000px;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
    max-width: 1620px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
    max-width: 1610px;
  }
}

.hidden {
  display: none;
}

.main {
  background: var(--white);
  position: relative;
}

.h2 {
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .h2 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .h2 {
    font-size: 40px;
  }
}
.h2 span {
  color: var(--blue-accent);
}

.btn-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  min-height: 50px;
  padding: 10px;
  color: var(--blue-accent);
  border: 2px solid var(--blue-accent);
  border-radius: 4px;
  text-decoration: none;
  background: transparent;
  font-family: "Roboto-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: color 0.2s ease, border 0.2s ease, background 0.2s ease;
  transition: color 0.2s ease, border 0.2s ease, background 0.2s ease;
}
@media (any-hover: hover) {
  .btn-arrow:hover {
    color: var(--white);
    background: var(--yellow-accent);
    border-color: var(--yellow-accent);
  }
}
.btn-arrow svg {
  fill: currentColor;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .btn-arrow {
    min-height: 48px;
    border-radius: 2px;
  }
}
.btn-arrow--full {
  background: var(--blue-accent);
  color: var(--white);
}

.pagination-btn {
  width: 354px;
  margin: 40px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .pagination-btn {
    margin: 30px auto 0 auto;
    width: 100%;
  }
}

/* ==== Preloader ==== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.preloader__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.preloader__logo {
  width: min(62vw, 900px);
  max-width: 900px;
  height: auto;
  opacity: 0;
  -webkit-transform: translateY(30px) scale(0.98);
  -ms-transform: translateY(30px) scale(0.98);
  transform: translateY(30px) scale(0.98);
  -webkit-filter: blur(6px);
  filter: blur(6px);
  -webkit-animation: logoReveal 1.2s ease forwards;
  animation: logoReveal 1.2s ease forwards;
}

/* логотип появился */
@-webkit-keyframes logoReveal {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px) scale(0.98);
    transform: translateY(30px) scale(0.98);
    -webkit-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes logoReveal {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px) scale(0.98);
    transform: translateY(30px) scale(0.98);
    -webkit-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
/* логотип уходит */
.preloader__logo.is-hide {
  -webkit-animation: logoHide 0.5s ease forwards;
  animation: logoHide 0.5s ease forwards;
}

@-webkit-keyframes logoHide {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-80px) scale(0.98);
    transform: translateY(-80px) scale(0.98);
    -webkit-filter: blur(4px);
    filter: blur(4px);
  }
}

@keyframes logoHide {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-80px) scale(0.98);
    transform: translateY(-80px) scale(0.98);
    -webkit-filter: blur(4px);
    filter: blur(4px);
  }
}
/* экран уезжает вверх */
.preloader.is-loaded {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 1s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 1s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #1f2640;
  pointer-events: none;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 1;
}

/* уход со старой страницы */
body.is-page-leaving .page-transition {
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* вход на новую страницу: overlay уже сверху */
body.is-page-entering .page-transition {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

/* потом уезжает вверх */
body.is-page-entering.is-page-entering-ready .page-transition {
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 1;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header--dark {
  position: sticky;
  top: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  mix-blend-mode: difference;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header--dark.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 40px;
  padding-left: 40px;
  backdrop-filter: blur(5px);
  background: rgba(250, 251, 252, 0.05);
  border-radius: 0 0 4px 4px;
}
@media (max-width: 1024px) {
  .header__inner {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .header__inner {
    row-gap: 12px;
  }
}

.header__logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__logo img {
  display: block;
  width: auto;
  height: 23px;
}
@media (max-width: 1024px) {
  .header__logo img {
    height: 26px;
  }
}
@media (max-width: 768px) {
  .header__logo img {
    height: 24px;
  }
}

.header__nav {
  margin-left: 50px;
  margin-right: auto;
}
@media (max-width: 768px) {
  .header__nav {
    position: absolute;
    bottom: calc(100% - 75px);
    margin: 0;
  }
}

.header__cta {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  z-index: 41;
}

.nav__item {
  position: relative;
  height: 100%;
}
.nav__item--has-dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.nav__item--has-dropdown:hover .nav__arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.nav__item--has-dropdown.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.nav__item--has-dropdown.is-open .nav__arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.nav__toggle {
  cursor: pointer;
}

.nav__link,
.nav__toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: "Roboto-Regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s ease, color 0.2s ease;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.nav__link:hover,
.nav__toggle:hover {
  color: var(--yellow-accent);
}
@media (max-width: 768px) {
  .nav__link,
  .nav__toggle {
    font-size: 14px;
  }
}

.nav__arrow {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  height: 100%;
}
@media (max-width: 1024px) {
  .nav__list {
    gap: 34px;
  }
}
@media (max-width: 768px) {
  .nav__list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(100vw - 40px);
    gap: 11px;
  }
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 6px;
  width: 387px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(14px);
  -ms-transform: translateY(14px);
  transform: translateY(14px);
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media (max-width: 768px) {
  .nav__dropdown {
    width: calc(100vw - 40px);
    top: calc(100% + 10px);
  }
}

@media (max-width: 768px) {
  .dropdown {
    padding: 8px 0 0;
  }
}

.dropdown__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 4px;
  backdrop-filter: blur(10px);
  background: rgba(250, 251, 252, 0.1);
}

.dropdown__icon {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: var(--yellow-accent);
}

@media (any-hover: hover) {
  .dropdown__item:hover .dropdown__link {
    color: var(--yellow-accent);
  }
  .dropdown__item:hover .dropdown__icon {
    opacity: 1;
  }
}

.dropdown__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  color: var(--white);
  font-family: "Roboto-Regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: color 0.2s ease, opacity 0.2s ease;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.dropdown__link:hover {
  color: var(--yellow-accent);
}
.dropdown__link:hover .dropdown__icon {
  opacity: 1;
}

.dropdown__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.btn-audit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 30px;
  border-radius: 0 0 4px 4px;
  background: var(--blue-accent);
  color: var(--white);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: background 0.2s ease, opacity 0.2s ease;
  transition: background 0.2s ease, opacity 0.2s ease;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
}
@media (any-hover: hover) {
  .btn-audit:hover {
    background: var(--yellow-accent);
  }
}
@media (max-width: 1024px) {
  .btn-audit {
    min-height: 40px;
    padding: 10px 22px;
  }
}

.footer {
  position: relative;
  overflow: hidden;
  background: var(--dark-blue);
  color: var(--white);
  height: 100vh;
  min-height: 750px;
  padding: 60px 0;
  z-index: 110;
}
@media (max-width: 1024px) {
  .footer {
    height: auto;
    min-height: inherit;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0 0;
  }
}
.footer .container {
  height: 100%;
}

.footer__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
@media (max-width: 1024px) {
  .footer__top {
    -ms-grid-columns: 1fr 28px 1fr 28px 1.15fr;
    grid-template-columns: 1fr 1fr 1.15fr;
    -ms-grid-rows: auto 34px auto;
    grid-template-areas: "nav socials services" "location location services";
    gap: 34px 28px;
  }
}
@media (max-width: 768px) {
  .footer__top {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto 30px auto 30px auto;
    grid-template-areas: "nav socials" "services services" "location location";
    gap: 30px;
  }
}

.footer__title {
  text-transform: uppercase;
  font-family: "BebasNeue-Regular", sans-serif;
  font-weight: 400;
  color: var(--white, #FAFBFC);
  font-size: 20px;
  font-style: normal;
  line-height: 100%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .footer__title {
    margin-bottom: 14px;
    font-size: 18px;
  }
}

.footer__locations {
  width: 298px;
}

.footer__menu li,
.footer__socials li {
  margin-bottom: 16px;
}
.footer__menu li:last-child,
.footer__socials li:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .footer__socials {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .footer__socials {
    margin-bottom: 0;
  }
}

.footer__menu a,
.footer__socials a,
.footer__policies a {
  color: var(--blue-grey);
  text-decoration: none;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
  font-size: 14px;
}

.footer__menu a:hover,
.footer__socials a:hover,
.footer__policies a:hover {
  color: var(--yellow-accent);
}

.footer__menu--services li {
  margin-bottom: 10px;
}

.footer__location {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 16px 1fr;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--blue-grey);
}
@media (max-width: 768px) {
  .footer__location {
    margin-bottom: 14px;
  }
}

.footer__location-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 2px;
  fill: var(--blue-grey);
}

.footer__socials a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.footer__socials a svg {
  fill: currentColor;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.footer__company {
  margin-top: 30px;
}
.footer__company:last-child {
  margin-top: 16px;
}
@media (max-width: 1024px) {
  .footer__company {
    margin-top: 0;
  }
  .footer__company:last-child {
    margin-top: 0;
  }
}

.footer__company p {
  margin: 0;
  color: var(--blue-grey);
  line-height: 1.35;
}
@media (max-width: 768px) {
  .footer__company p {
    font-size: 13px;
  }
}

.footer__company p:first-child {
  margin-bottom: 2px;
  text-transform: uppercase;
}

.footer__company-row {
  display: none;
  font-size: 12px;
  color: var(--blue-grey);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 1024px) {
  .footer__company-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .footer__company-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    grid-column: 1/-1;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4/5;
    margin-top: 0;
  }
}

.footer__partners {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(32px, 4vw, 56px);
  margin-bottom: 40px;
  justify-items: center;
}
@media (max-width: 1024px) {
  .footer__partners {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .footer__partners {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 40px;
  }
}

.footer__partner {
  height: 50px;
  width: auto;
}
.footer__partner:not(:first-child) {
  -o-object-position: left;
  object-position: left;
}
.footer__partner img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__policies {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer__policies {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.footer__decor {
  position: relative;
  pointer-events: none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-line-pack: end;
  align-content: end;
  margin-top: 40px;
}
.footer__decor::after {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, color-stop(11.06%, #1F2640), to(rgba(31, 38, 64, 0)));
  background: linear-gradient(0deg, #1F2640 11.06%, rgba(31, 38, 64, 0) 100%);
  width: 100%;
  height: 362px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .footer__decor::after {
    height: 122px;
  }
}

.footer__decor svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .footer__col--nav {
    grid-area: nav;
  }
}

@media (max-width: 1024px) {
  .footer__col--socials {
    grid-area: socials;
  }
}

@media (max-width: 1024px) {
  .footer__col--services {
    grid-area: services;
  }
}

@media (max-width: 1024px) {
  .footer__col--location {
    grid-area: location;
  }
}

@media (max-width: 1024px){
  .footer__col--nav {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .footer__col--socials {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .footer__col--services {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 5;
  }
  .footer__col--location {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}

@media (max-width: 768px){
  .footer__col--nav {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .footer__col--socials {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .footer__col--services {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .footer__col--location {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}

.footer__company--desktop {
  font-size: 12px;
  color: var(--blue-grey);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 1024px) {
  .footer__company--desktop {
    display: none;
  }
}

.awards {
  padding: 110px 0;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .awards {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .awards {
    padding: 60px 0;
  }
}

.awards__inner {
  max-width: 1920px;
  margin: 0 auto;
}

.awards__title {
  text-align: center;
  color: var(--blue-accent);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 10.4375rem;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .awards__title {
    font-size: 12vw;
  }
}
@media (max-width: 768px) {
  .awards__title {
    font-size: 11vw;
  }
}

.awards__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.awards__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: awards-scroll 30s linear infinite;
  animation: awards-scroll 30s linear infinite;
}

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

.award-card {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 0;
}
@media (max-width: 768px) {
  .award-card {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
  }
}

.award-card__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .award-card__logo {
    min-height: 52px;
    margin-bottom: 18px;
  }
}
.award-card__logo img {
  display: block;
  max-width: 100%;
  max-height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.award-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  width: 80%;
  margin: auto 0;
}

.award-card__meta li {
  position: relative;
  margin: 0;
  padding-left: 26px;
  color: var(--dark-blue);
  font-family: "Roboto-Regular", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
}
.award-card__meta li::before {
  content: url("/wp-content/themes/acquire/assets/img/star.svg");
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
}

@-webkit-keyframes awards-scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes awards-scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.numbers {
  overflow: hidden;
  padding: 70px 0 110px;
}
@media (max-width: 1024px) {
  .numbers {
    padding: 50px 0 90px;
  }
}
@media (max-width: 768px) {
  .numbers {
    padding: 30px 0 70px;
  }
}

.numbers__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1024px) {
  .numbers__inner {
    gap: 32px;
  }
}

.numbers__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(200px, 812px) 310px;
  grid-template-columns: minmax(200px, 812px) 310px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px 40px;
}
@media (max-width: 768px) {
  .numbers__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
  }
}

.numbers__title {
  color: var(--dark-blue);
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.numbers__title span {
  color: var(--blue-accent);
}

.numbers__text {
  max-width: 320px;
  font-family: "Roboto-Medium", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: var(--blue-dark-text);
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  grid-row: 2/2;
}
@media (max-width: 768px) {
  .numbers__text {
    font-size: 15px;
  }
}

.numbers__btn {
  width: 100%;
  max-width: 310px;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  align-self: flex-end;
  justify-self: flex-end;
}
@media (max-width: 768px) {
  .numbers__btn {
    -ms-flex-item-align: start;
    align-self: flex-start;
    max-width: 100%;
    margin-top: 8px;
  }
}

.numbers__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr auto;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 100%;
  margin-left: auto;
  padding-left: 126px;
}
@media (max-width: 1280px) {
  .numbers__items {
    padding-left: 20px;
  }
}
@media (max-width: 1024px) {
  .numbers__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .numbers__items {
    gap: 28px;
    padding: 0;
  }
}

.numbers__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .numbers__item {
    gap: 12px;
  }
}
.numbers__item:first-child {
  margin-right: 150px;
}
@media (max-width: 1280px) {
  .numbers__item:first-child {
    margin: 0;
  }
}
.numbers__item:last-child {
  width: 310px;
}
@media (max-width: 1024px) {
  .numbers__item:last-child {
    width: auto;
  }
}

.numbers__value {
  color: #dbad00;
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 150px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -3px;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .numbers__value {
    font-size: 120px;
    letter-spacing: -2px;
  }
}
@media (max-width: 768px) {
  .numbers__value {
    font-size: 96px;
  }
}

.numbers__value--wide {
  letter-spacing: -4px;
}

.numbers__label {
  color: var(--dark-blue);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  .numbers__label {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .numbers__label {
    font-size: 20px;
  }
}

.contact-cta {
  position: relative;
  overflow: hidden;
  background: var(--dark-blue);
  color: var(--white);
}

.contact-cta__bg,
.contact-cta__overlay {
  position: absolute;
  inset: 0;
}

.contact-cta__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contact-cta__overlay {
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(rgba(20, 34, 86, 0.72)), color-stop(35%, rgba(31, 38, 64, 0.58)), to(rgba(31, 38, 64, 0.48)));
  background: linear-gradient(90deg, rgba(20, 34, 86, 0.72) 0%, rgba(31, 38, 64, 0.58) 35%, rgba(31, 38, 64, 0.48) 100%);
  pointer-events: none;
}

.contact-cta .container {
  position: relative;
  z-index: 2;
}

.contact-cta__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(320px, 1fr) minmax(340px, 1fr);
  grid-template-columns: minmax(320px, 1fr) minmax(340px, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(48px, 6vw, 120px);
  padding: 60px 0;
}
@media (max-width: 1024px) {
  .contact-cta__inner {
    min-height: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding: 40px 0;
  }
}

.contact-cta__slogan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
}
@media (max-width: 1024px) {
  .contact-cta__slogan {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    min-height: 277px;
    padding-top: 40px;
  }
}

.contact-cta__slogan-text {
  font-size: clamp(34px, 4.6vw, 50px);
  color: #DCE3EA;
  font-family: "Roboto-Regular", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1px;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .contact-cta__slogan-text {
    letter-spacing: -0.6px;
  }
}

.contact-cta__words {
  display: inline-block;
  overflow: hidden;
  height: 0.98em;
  vertical-align: baseline;
  padding-top: 6px;
}
@media (max-width: 1024px) {
  .contact-cta__words {
    padding-top: 4px;
    height: 1em;
  }
}
@media (max-width: 768px) {
  .contact-cta__words {
    padding-top: 4px;
    height: 0.98em;
  }
}

.contact-cta__words-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.contact-cta__word {
  display: block;
  height: 1em;
  line-height: 1em;
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.contact-cta__content {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .contact-cta__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.contact-cta__title {
  margin-bottom: 20px;
  line-height: 0.95;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .contact-cta__title {
    margin-bottom: 18px;
  }
}

.contact-cta__text {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .contact-cta__text {
    margin-bottom: 40px;
  }
}
.contact-cta__text p {
  color: var(--blue-grey);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  max-width: 420px;
}
@media (max-width: 1024px) {
  .contact-cta__text p {
    max-width: 100%;
  }
}
.contact-cta__text p:not(:last-child) {
  margin-bottom: 16px;
}

.contact-form--dark .contact-form__field input {
  color: var(--dark-blue);
}
.contact-form--dark input:-webkit-autofill,
.contact-form--dark input:-webkit-autofill:hover,
.contact-form--dark input:-webkit-autofill:focus,
.contact-form--dark textarea:-webkit-autofill {
  -webkit-text-fill-color: var(--dark-blue);
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  box-shadow: 0 0 0 1000px transparent inset;
}

.contact-form__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact-form__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.contact-form__field--full {
  grid-column: 1/-1;
}
@media (max-width: 768px) {
  .contact-form__field--full {
    grid-column: auto;
  }
}

.contact-form__field {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-height: 50px;
  border-bottom: 1px solid var(--blue-dark-text);
  -webkit-transition: border-color 0.25s ease;
  transition: border-color 0.25s ease;
}
@media (any-hover: hover) {
  .contact-form__field:hover {
    border-color: var(--blue-accent);
  }
  .contact-form__field:hover .contact-form__label {
    color: var(--blue-accent);
  }
}

.contact-form__label {
  position: absolute;
  left: 0;
  top: 24px;
  font-size: 16px;
  color: var(--blue-grey);
  font-family: "Roboto-Medium", sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  pointer-events: none;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: top 0.28s ease, font-size 0.28s ease, color 0.28s ease, -webkit-transform 0.28s ease;
  transition: top 0.28s ease, font-size 0.28s ease, color 0.28s ease, -webkit-transform 0.28s ease;
  transition: transform 0.28s ease, top 0.28s ease, font-size 0.28s ease, color 0.28s ease;
  transition: transform 0.28s ease, top 0.28s ease, font-size 0.28s ease, color 0.28s ease, -webkit-transform 0.28s ease;
}

.contact-form__field input {
  width: 100%;
  height: 40px;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
  outline: none;
  -webkit-transition: border-color 0.25s ease;
  transition: border-color 0.25s ease;
}
@media (max-width: 768px) {
  .contact-form__field input {
    height: 38px;
    font-size: 16px;
  }
}

.contact-form__error-text {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.35;
  color: #ff5c5c;
  position: absolute;
  bottom: -24px;
}

.contact-form__field:focus-within .contact-form__label,
.contact-form__field.is-filled .contact-form__label {
  top: 0px;
  font-size: 12px;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.contact-form__field:focus-within {
  border-bottom-color: var(--yellow-accent);
}

.contact-form__field.error {
  border-bottom-color: #ff5c5c;
}

.contact-form__field.error .contact-form__label,
.contact-form__field.error input {
  color: #ff5c5c;
}

.contact-form__field.error .contact-form__error-text {
  display: block;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill {
  -webkit-text-fill-color: var(--white);
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  box-shadow: 0 0 0 1000px transparent inset;
}

.contact-form__policy {
  color: var(--blue-grey);
  font-family: "Roboto-Regular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  margin-bottom: 40px;
}
.contact-form__policy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (any-hover: hover) {
  .contact-form__policy a:hover {
    color: var(--yellow-accent);
  }
}
@media (max-width: 768px) {
  .contact-form__policy {
    margin-bottom: 30px;
  }
}

.contact-form__bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(220px, 1fr);
  grid-template-columns: 1fr minmax(220px, 1fr);
  gap: 24px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
@media (max-width: 768px) {
  .contact-form__bottom {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

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

.contact-form__submit {
  width: 100%;
}

.offer {
  position: relative;
  height: 100%;
  background: var(--dark-blue);
}

.offer__wrapper {
  position: relative;
  margin-top: -40px;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .offer__wrapper {
    cursor: none;
  }
}
.offer__wrapper:before {
  content: url("/wp-content/themes/acquire/assets/img/service/grad.webp");
  position: absolute;
  left: 50%;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  bottom: 270px;
  width: 1920px;
  height: 400px;
  pointer-events: none;
  z-index: 1;
  rotate: 90deg;
  opacity: 0.7;
}
@media (hover: hover) and (pointer: fine) {
  .offer__wrapper {
    cursor: none;
  }
}

.offer-swiper {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.offer-swiper picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}
.offer-swiper picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.offer__picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.offer__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

.offer__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.offer__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 38, 64, 0.08)), color-stop(18%, rgba(31, 38, 64, 0.18)), color-stop(42%, rgba(31, 38, 64, 0.42)), to(rgba(31, 38, 64, 0.72))), rgba(31, 38, 64, 0.22);
  background: linear-gradient(180deg, rgba(31, 38, 64, 0.08) 0%, rgba(31, 38, 64, 0.18) 18%, rgba(31, 38, 64, 0.42) 42%, rgba(31, 38, 64, 0.72) 100%), rgba(31, 38, 64, 0.22);
}

.offer__video {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.offer__container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  height: 526px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .offer__container {
    gap: 24px;
    padding: 40px 20px;
    height: 390px;
  }
}
@media (max-width: 768px) {
  .offer__container {
    gap: 20px;
  }
}

.offer__title {
  font-family: "BebasNeue-Regular", sans-serif;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  font-size: 140px;
  font-style: normal;
  font-weight: 400;
  line-height: 80%;
}
@media (max-width: 1024px) {
  .offer__title {
    font-size: 70px;
  }
}
@media (max-width: 768px) {
  .offer__title {
    font-size: 50px;
  }
}

.offer__text {
  color: var(--blue-text);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 768px) {
  .offer__text {
    font-size: 12px;
    text-align: center;
    max-width: 300px;
  }
}

.case {
  padding: 40px 0;
  background: var(--dark-blue);
  position: relative;
  overflow: hidden;
}
.case::before {
  content: url("../img/service/grad.png");
  position: absolute;
  right: -730px;
  bottom: 0;
  width: 100%;
  height: 100%;
  rotate: 240deg;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .case::before {
    right: -670px;
    bottom: -920px;
    width: 100%;
    height: 100%;
    rotate: 560deg;
  }
}
@media (max-width: 768px) {
  .case::before {
    right: -730px;
    bottom: -1010px;
  }
}

.case__inner {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 420px 1fr auto;
  grid-template-columns: 420px 1fr auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1280px) {
  .case__inner {
    -ms-grid-columns: minmax(180px, 232px) 1fr auto;
    grid-template-columns: minmax(180px, 232px) 1fr auto;
  }
}
@media (max-width: 1024px) {
  .case__inner {
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .case__inner {
    -ms-grid-columns: 1fr minmax(100px, 0.6fr);
    grid-template-columns: 1fr minmax(100px, 0.6fr);
    gap: 20px;
  }
}

.case__title {
  color: var(--white);
  margin-bottom: 40px;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
}
@media (max-width: 1024px) {
  .case__title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    margin-bottom: 0;
  }
}
.case__title span {
  color: var(--yellow-accent);
}

.case__brand {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  padding-left: 166px;
  margin-right: 40px;
}
@media (max-width: 1280px) {
  .case__brand {
    padding-left: 20px;
  }
}
@media (max-width: 1024px) {
  .case__brand {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    padding-left: 0;
  }
}

.case__info {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  gap: 14px 6px;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
@media (max-width: 1024px) {
  .case__info {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    margin-left: 0;
    gap: 8px;
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .case__info {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    padding-left: 0;
  }
}
.case__info svg {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.case__info h3 {
  color: var(--white);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
@media (max-width: 768px) {
  .case__info h3 {
    font-size: 24px;
  }
}
.case__info p {
  max-width: 600px;
  color: var(--blue-grey);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  padding-left: 24px;
}
@media (max-width: 768px) {
  .case__info p {
    max-width: 100%;
    font-size: 14px;
  }
}

.case__metrics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding-left: 24px;
  margin-left: 20px;
  padding-right: 166px;
  border-left: 1px solid rgba(220, 227, 234, 0.2);
  color: var(--white);
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1280px) {
  .case__metrics {
    padding-right: 20px;
  }
}
@media (max-width: 1024px) {
  .case__metrics {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    padding-left: 20px;
    border-left: 0;
    padding-right: 0;
    -ms-grid-column-align: start;
    justify-self: start;
  }
}
@media (max-width: 768px) {
  .case__metrics {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    padding-left: 0;
    border-left: 0;
  }
}

.case__metrics-item:not(:first-child) .case__metric-value {
  font-size: 60px;
}

.case__metrics-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.case__metric-label {
  font-family: "Roboto-SemiBold", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 12px;
}

.case__metric-value {
  color: var(--blue-accent);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 90px;
  font-style: normal;
  font-weight: 400;
  line-height: 80%; /* 72px */
  letter-spacing: -1.8px;
}
@media (max-width: 768px) {
  .case__metric-value {
    font-size: 60px;
  }
}

.case__metric-text {
  color: var(--blue-accent);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 768px) {
  .case__metric-text {
    font-size: 24px;
  }
}

.article-popular {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .article-popular {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.article-popular__title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .article-popular__title {
    margin-bottom: 30px;
  }
}

.article-popular__content {
  position: relative;
}

.article-popular__slider {
  overflow: visible;
}

.main-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}
.main-list a {
  display: block;
}

.offer-hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 864px;
  background: var(--dark-blue);
}
@media (max-width: 1024px) {
  .offer-hero {
    min-height: 864px;
  }
}
@media (max-width: 768px) {
  .offer-hero {
    height: calc(100vh - 40px);
    height: calc(100dvh - 40px);
    min-height: 756px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .offer-hero__wrapper {
    cursor: none;
  }
}

.custom-cursor {
  position: absolute;
  left: 0;
  top: 0;
  width: 190px;
  height: 190px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  border-radius: 50%;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  background: rgba(34, 142, 253, 0.2);
  -webkit-filter: blur(15px);
  filter: blur(15px);
  background: rgba(118, 188, 255, 0.8);
  mix-blend-mode: overlay;
}
@media (max-width: 768px) {
  .custom-cursor {
    width: 140px;
    height: 140px;
  }
}

.offer-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.offer-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 38, 64, 0.08)), color-stop(18%, rgba(31, 38, 64, 0.18)), color-stop(42%, rgba(31, 38, 64, 0.42)), to(rgba(31, 38, 64, 0.72))), rgba(31, 38, 64, 0.22);
  background: linear-gradient(180deg, rgba(31, 38, 64, 0.08) 0%, rgba(31, 38, 64, 0.18) 18%, rgba(31, 38, 64, 0.42) 42%, rgba(31, 38, 64, 0.72) 100%), rgba(31, 38, 64, 0.22);
}

.offer-hero__video {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.offer-hero__container {
  position: relative;
  z-index: 4;
  height: calc(100vh - 40px);
  height: calc(100dvh - 40px);
  min-height: 864px;
  padding-top: 170px;
  padding-bottom: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .offer-hero__container {
    min-height: 864px;
    padding-top: 285px;
    padding-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .offer-hero__container {
    min-height: 756px;
    padding: 226px 20px 150px;
  }
}

.offer-hero__logo {
  position: relative;
  width: 860px;
  max-width: calc(100% - 80px);
}
@media (max-width: 1024px) {
  .offer-hero__logo {
    width: 533px;
    max-width: calc(100% - 80px);
  }
}
@media (max-width: 768px) {
  .offer-hero__logo {
    width: 331px;
    max-width: 100%;
  }
}
.offer-hero__logo svg {
  width: 100%;
  height: 100%;
}

.offer-hero__logo img,
.offer-hero__logo svg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.offer-hero__subtitle {
  margin: auto 0 0;
  max-width: 785px;
  text-align: center;
  color: var(--blue-dark-text);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .offer-hero__subtitle {
    font-size: 20px;
  }
}

.offer-hero__brands {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(31, 38, 64, 0.9);
  overflow: hidden;
  padding: 30px 0;
}
@media (max-width: 1024px) {
  .offer-hero__brands {
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .offer-hero__brands {
    padding: 20px 0;
  }
}

.offer-hero__brands::before,
.offer-hero__brands::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 136px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 768px) {
  .offer-hero__brands::before,
  .offer-hero__brands::after {
    width: 72px;
  }
}

.offer-hero__brands::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(var(--dark-blue)), to(rgba(31, 38, 64, 0)));
  background: linear-gradient(90deg, var(--dark-blue) 0%, rgba(31, 38, 64, 0) 100%);
}

.offer-hero__brands::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(var(--dark-blue)), to(rgba(31, 38, 64, 0)));
  background: linear-gradient(270deg, var(--dark-blue) 0%, rgba(31, 38, 64, 0) 100%);
}

.offer-hero__brands-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 43px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0.6;
  -webkit-animation: offer-hero-brands 34s linear infinite;
  animation: offer-hero-brands 34s linear infinite;
}
@media (max-width: 768px) {
  .offer-hero__brands-track {
    gap: 30px;
  }
}

.offer-hero__brands-track img {
  display: block;
  width: auto;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .offer-hero__brands-track img {
    height: 24px;
  }
}

@-webkit-keyframes offer-hero-brands {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes offer-hero-brands {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.expertise {
  padding: 110px 0;
}
@media (max-width: 1024px) {
  .expertise {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .expertise {
    padding: 60px 0;
  }
}

.expertise__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .expertise__head {
    gap: 10px;
    margin-bottom: 30px;
  }
}

.expertise__text {
  width: 100%;
  max-width: 278px;
  color: var(--blue-dark-text);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .expertise__text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .expertise__text {
    max-width: 100%;
    font-size: 14px;
  }
}

.expertise__table-head {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin-bottom: 6px;
}

.expertise__table-label {
  color: var(--blue-text);
  font-family: "Roboto-Regular", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 1024px) {
  .expertise__table-label {
    display: none;
  }
}

.expertise__table-label--service {
  width: 458px;
}

.expertise__table-label--description {
  width: 222px;
}

.expertise__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.expertise__item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--blue-text);
  color: inherit;
  text-decoration: none;
  background: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .expertise__item:hover {
    background: radial-gradient(62.34% 81.66% at 48.47% 1.26%, #5a7fc3 -7.31%, #374061 53.85%, var(--dark-blue) 100%);
  }
  .expertise__item:hover .expertise__item-title, .expertise__item:hover .expertise__item-text {
    color: var(--white);
  }
  .expertise__item:hover .expertise__item-index {
    color: var(--blue-dark-text);
  }
  .expertise__item:hover .expertise__item-arrow {
    border-color: var(--yellow-accent);
    color: var(--yellow-accent);
    opacity: 1;
  }
  .expertise__item:hover .expertise__item-preview {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .expertise__item {
    min-height: 0;
    padding: 20px;
  }
}
.expertise__item:first-child {
  border-top: 1px solid var(--blue-text);
}

.expertise__item-main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .expertise__item-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: auto;
    gap: 8px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}
@media (max-width: 768px) {
  .expertise__item-main {
    gap: 6px;
  }
}

.expertise__item-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  width: 485px;
}
@media (max-width: 1024px) {
  .expertise__item-title-wrap {
    width: auto;
  }
}

.expertise__item-index {
  color: var(--blue-text);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .expertise__item-index {
    font-size: 12px;
    margin-top: 4px;
  }
}

.expertise__item-title {
  margin: 0;
  color: var(--dark-blue);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 768px) {
  .expertise__item-title {
    font-size: 20px;
  }
}

.expertise__item-text {
  width: 222px;
  margin: 0;
  color: var(--blue-dark-text);
  font-family: "Roboto-Regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .expertise__item-text {
    width: 222px;
    padding-left: 24px;
  }
}
@media (max-width: 768px) {
  .expertise__item-text {
    width: 222px;
    padding-left: 24px;
    font-size: 14px;
  }
}

.expertise__item-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .expertise__item-side {
    width: 305px;
    gap: 20px;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
}
@media (max-width: 768px) {
  .expertise__item-side {
    width: 30px;
    gap: 0;
  }
}

.expertise__item-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 5px;
  border: 1px solid var(--blue-grey);
  border-radius: 2px;
  color: var(--blue-grey);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
@media (max-width: 768px) {
  .expertise__item-arrow {
    width: 30px;
    height: 30px;
  }
}

.expertise__item-preview {
  display: block;
  width: 266px;
  height: 196px;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  position: absolute;
  top: 50%;
  right: 60px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .expertise__item-preview {
    position: relative;
    inset: 0;
    width: 223px;
    height: 165px;
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
@media (max-width: 768px) {
  .expertise__item-preview {
    display: none;
  }
}

.expertise__item-preview img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.works {
  padding: 110px 0;
  background: var(--dark-blue);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .works {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .works {
    padding: 60px 0;
  }
}

.works__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(200px, 812px) 310px;
  grid-template-columns: minmax(200px, 812px) 310px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .works__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
  }
}

.works__title {
  color: var(--white);
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.works__title span {
  color: var(--blue-accent);
}

.works__text {
  max-width: 320px;
  font-family: "Roboto-Medium", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: var(--blue-grey);
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  grid-row: 2/2;
}
@media (max-width: 768px) {
  .works__text {
    font-size: 14px;
  }
}

.works__btn {
  width: 100%;
  max-width: 310px;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  align-self: flex-end;
  justify-self: flex-end;
}
@media (max-width: 768px) {
  .works__btn {
    -ms-flex-item-align: start;
    align-self: flex-start;
    max-width: 100%;
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .works__btn--desk {
    display: none;
  }
}
.works__btn--mob {
  display: none;
}
@media (max-width: 768px) {
  .works__btn--mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
  }
}

.works__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
@media (max-width: 1024px) {
  .works__grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .works__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.works-card {
  position: relative;
  aspect-ratio: 3/1.83;
}
.works-card.is-active .works-card__media-inner {
  -webkit-transform: translate3d(0, -14px, 0);
  transform: translate3d(0, -14px, 0);
}
.works-card.is-active .works-card__video {
  opacity: 1;
}
.works-card.is-active .works-card__button {
  border-color: var(--yellow-accent);
  background: var(--yellow-accent);
}
@media (any-hover: hover) {
  .works-card:hover .works-card__media-inner {
    -webkit-transform: translateY(-18px);
    -ms-transform: translateY(-18px);
    transform: translateY(-18px);
  }
  .works-card:hover .works-card__video {
    opacity: 1;
  }
  .works-card:hover .works-card__button {
    border-color: var(--yellow-accent);
    background: var(--yellow-accent);
  }
}

.works-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.works-card__parallax {
  position: absolute;
  inset: -6% 0;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0) translateZ(0);
  transform: translate3d(0, 0, 0) translateZ(0);
}

.works-card__media-inner {
  position: absolute;
  inset: 0;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.works-card__image,
.works-card__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 116%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .works-card__image,
  .works-card__video {
    height: 100%;
  }
}
.works-card__image img,
.works-card__video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.works-card__video {
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.works-card__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 14, 28, 0.08)), color-stop(35%, rgba(10, 14, 28, 0.16)), to(rgba(10, 14, 28, 0.34)));
  background: linear-gradient(180deg, rgba(10, 14, 28, 0.08) 0%, rgba(10, 14, 28, 0.16) 35%, rgba(10, 14, 28, 0.34) 100%);
  z-index: 1;
}

.works-card__content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  padding: 20px;
}

.works-card__title {
  color: var(--white);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 50px */
}
@media (max-width: 1024px) {
  .works-card__title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .works-card__title {
    font-size: 20px;
  }
}

.works-card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
}

.works-card__button {
  border-color: var(--white);
  color: var(--white);
  width: 100%;
  max-width: 162px;
  min-height: 40px;
}
@media (max-width: 1024px) {
  .works-card__button {
    width: 30px;
    height: 30px;
    min-height: inherit;
    border-width: 1px;
  }
  .works-card__button span {
    display: none;
  }
}

.works-card__tags {
  color: var(--blue-text);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: right;
}

.quote-block {
  padding: 110px 126px;
  position: relative;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .quote-block {
    cursor: none;
  }
}
@media (max-width: 1024px) {
  .quote-block {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .quote-block {
    padding: 60px 0;
  }
}
.quote-block::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -19%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: min(70vw, 980px);
  height: min(20vw, 260px);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(126, 168, 255, 0.3) 0%, rgba(85, 127, 212, 0.08) 35%, rgba(40, 81, 166, 0) 75%);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .quote-block::after {
    width: min(90vw, 760px);
    height: 180px;
    bottom: -10%;
  }
}

.custom-cursor--quote-block {
  background: rgba(169, 212, 255, 0.8);
  mix-blend-mode: color-dodge;
}

.quote-block__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}

.quote-block__icon {
  margin-bottom: 20px;
  color: var(--blue-text);
  width: 66px;
  height: 58px;
  aspect-ratio: 33/29;
}
@media (max-width: 768px) {
  .quote-block__icon {
    width: 34px;
    height: 30px;
  }
}

.quote-block__text {
  font-family: "Roboto-Medium", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  color: var(--dark-blue);
  margin: 0;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .quote-block__text {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .quote-block__text {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.quote-block__text span {
  color: var(--blue-accent);
}

.quote-block__brand {
  margin-bottom: 20px;
}
.quote-block__brand img {
  display: block;
  width: auto;
  max-width: 130px;
  max-height: 37px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 768px) {
  .quote-block__brand img {
    max-width: 90px;
    max-height: 25px;
  }
}

.quote-block__name,
.quote-block__position {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Roboto-Regular", sans-serif;
}
@media (max-width: 1024px) {
  .quote-block__name,
  .quote-block__position {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .quote-block__name,
  .quote-block__position {
    font-size: 14px;
  }
}

.quote-block__name {
  color: var(--blue-grey);
  text-transform: uppercase;
}

.quote-block__position {
  color: var(--blue-dark-text);
}

.hero .article-popular {
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .hero .article-popular {
    padding-bottom: 0;
    padding-top: 60px;
  }
}

.service-block {
  padding: 20px 0 60px;
}
@media (max-width: 1024px) {
  .service-block {
    padding: 0px 0 40px;
  }
}

.service-block__intro {
  padding-right: 60px;
  padding-left: 126px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
@media (max-width: 1280px) {
  .service-block__intro {
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .service-block__intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}

.service-block__title {
  color: var(--dark-blue);
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  .service-block__title {
    padding-right: 0;
  }
}

.service-block__btn {
  width: 310px;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
@media (max-width: 1024px) {
  .service-block__btn {
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  .service-block__btn {
    width: 100%;
    margin-left: 0;
  }
}

.service-block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  max-width: 520px;
}
@media (max-width: 1024px) {
  .service-block__content {
    max-width: 510px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .service-block__content {
    max-width: 100%;
    padding: 0;
  }
}
.service-block__content p {
  color: var(--blue-dark-text);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  width: 100%;
  max-width: 510px;
}
@media (max-width: 768px) {
  .service-block__content p {
    font-size: 14px;
  }
}

.sub-services {
  overflow: hidden;
  padding: 60px 0 110px;
}
@media (max-width: 1024px) {
  .sub-services {
    padding: 60px 0 80px;
  }
}
@media (max-width: 768px) {
  .sub-services {
    padding: 40px 0 60px;
  }
}

.sub-services__title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .sub-services__title {
    margin-bottom: 30px;
  }
}

.sub-services__slider-wrap {
  position: relative;
}

.sub-services__slider {
  overflow: visible;
}

.sub-services__title {
  max-width: 90%;
}
@media (max-width: 1024px) {
  .sub-services__title {
    max-width: 100%;
  }
}

.sub-services__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  min-height: 262px;
  gap: 20px 0;
  height: auto;
  padding: 20px;
  border-radius: 6px;
  color: var(--white);
  background: radial-gradient(144.84% 85.08% at var(--x) var(--y), rgba(123, 169, 255, 0.4) 0%, rgba(109, 157, 239, 0.4) 19.23%, rgba(24, 48, 181, 0.08) 63.46%, rgba(31, 38, 64, 0.4) 100%), #1F2640;
}
@media (max-width: 768px) {
  .sub-services__item {
    gap: 14px 0;
  }
}

.sub-services__item:nth-child(4n+1) {
  --x: 0%;
  --y: 0%;
}

.sub-services__item:nth-child(4n+2) {
  --x: 100%;
  --y: 0%;
}

.sub-services__item:nth-child(4n+3) {
  --x: 100%;
  --y: 100%;
}

.sub-services__item:nth-child(4n+4) {
  --x: 0%;
  --y: 100%;
}

.sub-services__item-index {
  color: var(--blue-dark-text);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  width: 24px;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}
@media (max-width: 768px) {
  .sub-services__item-index {
    font-size: 12px;
  }
}

.sub-services__item-title {
  color: var(--white);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
@media (max-width: 768px) {
  .sub-services__item-title {
    font-size: 20px;
  }
}

.sub-services__item-text {
  grid-column: 1/-1;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.sub-services__item-text p {
  color: var(--blue-text);
  font-family: "Roboto-Regular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 768px) {
  .sub-services__item-text p {
    font-size: 14px;
  }
}
.sub-services__item-text p:not(:last-child) {
  margin-bottom: 16px;
}

.sub-services__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 2px;
  border: 1.133px solid var(--blue-accent);
  background: var(--white);
  color: var(--blue-accent);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
@media (any-hover: hover) {
  .sub-services__nav:hover {
    border-color: var(--yellow-accent);
    background: var(--yellow-accent);
    color: var(--white);
  }
}
.sub-services__nav.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.sub-services__nav svg {
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  fill: currentColor;
}
@media (max-width: 768px) {
  .sub-services__nav {
    display: none;
  }
}

.sub-services__nav--prev {
  left: -10px;
}

.sub-services__nav--next {
  right: -10px;
}
.sub-services__nav--next svg {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.service-advantages {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: var(--dark-blue);
}
@media (max-width: 1024px) {
  .service-advantages {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .service-advantages {
    padding: 60px 0;
  }
}

.service-advantages::before {
  content: url("../img/service/grad.png");
  position: absolute;
  left: -920px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 768px) {
  .service-advantages::before {
    left: -110px;
    bottom: -140px;
    width: 240px;
    height: 240px;
  }
}

.service-advantages__inner {
  position: relative;
  z-index: 1;
}

.service-advantages__title {
  margin-bottom: 40px;
  color: var(--white);
  line-height: 100%;
}
.service-advantages__title span {
  color: var(--yellow-accent);
}
@media (max-width: 768px) {
  .service-advantages__title {
    margin-bottom: 30px;
  }
}

.service-advantages__content {
  padding-right: 60px;
  padding-left: 126px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 1280px) {
  .service-advantages__content {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 1024px) {
  .service-advantages__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .service-advantages__content {
    padding: 0;
    gap: 30px;
  }
}

.service-advantages__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 36rem;
}
@media (max-width: 1024px) {
  .service-advantages__list {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .service-advantages__list {
    gap: 30px;
  }
}
.service-advantages__list h3 {
  color: var(--white);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .service-advantages__list h3 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .service-advantages__list h3 {
    margin-bottom: 12px;
    font-size: 24px;
  }
}
.service-advantages__list p {
  color: var(--blue-grey);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
}
.service-advantages__list p:not(:last-child) {
  margin-bottom: 16px;
}

.service-advantages__media {
  position: absolute;
  width: 55.9375rem;
  height: 100%;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  overflow: hidden;
  z-index: -1;
}
@media (max-width: 1024px) {
  .service-advantages__media {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
    width: 100%;
    height: auto;
    border-radius: 6px;
    position: relative;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: inherit;
  }
}
@media (max-width: 768px) {
  .service-advantages__media {
    border-radius: 4px;
  }
}
.service-advantages__media img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.service-page .service-numbers {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .service-page .service-numbers {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .service-page .service-numbers {
    padding: 40px 0;
  }
}

.service-faq {
  padding: 110px 0;
}
@media (max-width: 1024px) {
  .service-faq {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .service-faq {
    padding: 60px 0;
  }
}
@media (max-width: 1024px) {
  .service-faq .container {
    padding: 0;
  }
}

.service-faq__title {
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .service-faq__title {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .service-faq__title {
    margin-bottom: 30px;
  }
}

.service-faq__list {
  padding-right: 166px;
  padding-left: 166px;
}
@media (max-width: 1280px) {
  .service-faq__list {
    padding: 0;
  }
}

.service-faq__item {
  border-bottom: 1px solid var(--blue-text);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.service-faq__item[open] {
  background: radial-gradient(62.34% 81.66% at 48.47% 1.26%, #4f6ca2 -7.31%, #1c2856 53.85%, var(--dark-blue) 100%);
  border-bottom: 1px solid transparent;
}
@media (max-width: 1024px) {
  .service-faq__item[open] {
    background: radial-gradient(62.34% 81.66% at 48.47% -8.74%, #4f6ca2 -17.31%, #1c2856 73.85%, var(--dark-blue) 100%);
  }
}
.service-faq__item[open] .service-faq__question {
  border-bottom: 1px solid rgba(196, 217, 255, 0.1);
}
.service-faq__item[open] .service-faq__question-index,
.service-faq__item[open] .service-faq__question-text {
  color: var(--white);
}
.service-faq__item[open] .service-faq__question-icon {
  border: 1px solid var(--blue-dark-text);
  color: var(--blue-dark-text);
}
.service-faq__item[open] .service-faq__question-index {
  color: var(--blue-dark-text);
}
.service-faq__item[open] .service-faq__question-icon::after {
  color: var(--blue-dark-text);
}
.service-faq__item[open] .service-faq__question-icon::before {
  opacity: 0;
  color: var(--blue-dark-text);
}
@media (any-hover: hover) {
  .service-faq__item[open]:hover .service-faq__question-text {
    color: var(--white);
  }
  .service-faq__item[open]:hover .service-faq__question-icon {
    border: 1px solid var(--white);
  }
  .service-faq__item[open]:hover .service-faq__question-icon::before,
  .service-faq__item[open]:hover .service-faq__question-icon::after {
    color: var(--white);
  }
}
@media (any-hover: hover) {
  .service-faq__item:hover .service-faq__question-text {
    color: var(--blue-accent);
  }
  .service-faq__item:hover .service-faq__question-icon {
    border: 1px solid var(--blue-accent);
  }
  .service-faq__item:hover .service-faq__question-icon::before,
  .service-faq__item:hover .service-faq__question-icon::after {
    color: var(--blue-accent);
  }
}

.service-faq__question {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  padding: 20px 40px;
  cursor: pointer;
  list-style: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1024px) {
  .service-faq__question {
    padding: 20px 40px;
  }
}
@media (max-width: 768px) {
  .service-faq__question {
    padding: 20px;
  }
}

.service-faq__question::-webkit-details-marker {
  display: none;
}

.service-faq__question-index {
  width: 24px;
  color: var(--blue-text);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .service-faq__question-index {
    font-size: 12px;
  }
}

.service-faq__question-text {
  color: var(--dark-blue);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  width: 100%;
  max-width: 797px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1024px) {
  .service-faq__question-text {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .service-faq__question-text {
    font-size: 24px;
  }
}

.service-faq__question-icon {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  margin-top: 4px;
  border-radius: 2px;
  padding: 5px;
  border: 1px solid var(--blue-text);
  margin-left: auto;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.service-faq__question-icon::before,
.service-faq__question-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: currentColor;
  color: var(--blue-text);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.service-faq__question-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-faq__answer-inner {
  padding: 20px 0;
}

.service-faq__answer {
  height: 0;
  overflow: hidden;
  padding: 0 64px;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
@media (max-width: 1024px) {
  .service-faq__answer {
    max-width: 100%;
    padding: 0 64px;
  }
}
@media (max-width: 768px) {
  .service-faq__answer {
    padding: 0 44px;
  }
}
.service-faq__answer p {
  width: 100%;
  max-width: 698px;
  color: var(--blue-text);
  font-family: "Roboto-Regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 140%;
}
@media (max-width: 1024px) {
  .service-faq__answer p {
    max-width: 100%;
  }
}

.contacts-info {
  position: relative;
  overflow: hidden;
  padding: 20px 0 60px;
}
@media (max-width: 768px) {
  .contacts-info {
    padding: 0 0 40px;
  }
}

.contacts-info__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(320px, 1fr) minmax(340px, 1fr);
  grid-template-columns: minmax(320px, 1fr) minmax(340px, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1024px) {
  .contacts-info__inner {
    min-height: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

.contact-offices__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
@media (max-width: 768px) {
  .contact-offices__list {
    gap: 20px;
  }
}

.contact-offices__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  min-height: 248px;
  overflow: hidden;
  border-radius: 6px;
  height: 100%;
}
@media (max-width: 768px) {
  .contact-offices__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
  }
}
.contact-offices__item .contact-offices__card:before {
  content: url("/wp-content/themes/acquire/assets/img/service/grad.webp");
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.contact-offices__item:first-child .contact-offices__card:before {
  left: 952px;
  rotate: -200deg;
  bottom: 0;
}
.contact-offices__item:last-child .contact-offices__card:before {
  left: -880px;
  bottom: 210px;
}

.contact-offices__map {
  min-height: 248px;
}
@media (max-width: 768px) {
  .contact-offices__map {
    min-height: 190px;
  }
}

.contact-offices__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-offices__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  min-height: 248px;
  padding: 20px;
  color: var(--white);
  background: var(--dark-blue);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact-offices__card {
    min-height: auto;
  }
}

.contact-offices__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--white);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .contact-offices__title {
    margin-bottom: 16px;
    font-size: 24px;
  }
}
.contact-offices__title svg {
  width: 16px;
  height: 16px;
  color: var(--blue-text);
}

.contact-offices__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  z-index: 1;
}
@media (max-width: 768px) {
  .contact-offices__info {
    gap: 14px;
  }
}

.contact-offices__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
}

.contact-offices__info-item svg,
.contact-offices__phone svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--blue-grey);
}

.contact-offices__info-item p,
.contact-offices__phone {
  color: var(--blue-text);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
@media (max-width: 768px) {
  .contact-offices__info-item p,
  .contact-offices__phone {
    font-size: 14px;
  }
}

.contact-offices__phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .contact-offices__phone:hover {
    color: var(--yellow-accent);
  }
}

.news-articles {
  padding: 0 0 40px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-articles {
    padding: 0 0 40px;
  }
}

.news-articles__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
@media (max-width: 1024px) {
  .news-articles__grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .news-articles__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.news-articles-card {
  position: relative;
  aspect-ratio: 3/1.83;
}
.news-articles-card.is-active .news-articles-card__media-inner {
  -webkit-transform: translate3d(0, -14px, 0);
  transform: translate3d(0, -14px, 0);
}
.news-articles-card.is-active .news-articles-card__video {
  opacity: 1;
}
.news-articles-card.is-active .news-articles-card__button {
  border-color: var(--yellow-accent);
  background: var(--yellow-accent);
}
@media (any-hover: hover) {
  .news-articles-card:hover .news-articles-card__media-inner {
    -webkit-transform: translateY(-18px);
    -ms-transform: translateY(-18px);
    transform: translateY(-18px);
  }
  .news-articles-card:hover .news-articles-card__video {
    opacity: 1;
  }
  .news-articles-card:hover .news-articles-card__button {
    border-color: var(--yellow-accent);
    background: var(--yellow-accent);
  }
}

.news-articles-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.news-articles-card__parallax {
  position: absolute;
  inset: -6% 0;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.news-articles-card__media-inner {
  position: absolute;
  inset: 0;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.news-articles-card__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 116%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .news-articles-card__image {
    height: 100%;
  }
}

.news-articles-card__video {
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.news-articles-card__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 14, 28, 0.08)), color-stop(35%, rgba(10, 14, 28, 0.16)), to(rgba(10, 14, 28, 0.34)));
  background: linear-gradient(180deg, rgba(10, 14, 28, 0.08) 0%, rgba(10, 14, 28, 0.16) 35%, rgba(10, 14, 28, 0.34) 100%);
  z-index: 1;
}

.news-articles-card__content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  padding: 20px;
}
@media (max-width: 768px) {
  .news-articles-card__content {
    padding: 16px;
  }
}

.news-articles-card__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news-articles-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .news-articles-card__info {
    gap: 0;
  }
}

.news-articles-card__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 8px;
  color: var(--blue-text);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media (max-width: 768px) {
  .news-articles-card__info-item {
    font-size: 14px;
  }
}
.news-articles-card__info-item svg {
  color: var(--blue-text);
  width: 24px;
  height: 24px;
}

.news-articles-card__title {
  color: var(--white);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  max-width: 450px;
}
@media (max-width: 1024px) {
  .news-articles-card__title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .news-articles-card__title {
    font-size: 24px;
  }
}

.news-articles-card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
}

.news-articles-card__button {
  border-color: var(--white);
  color: var(--white);
  width: 100%;
  max-width: 162px;
  min-height: 40px;
}
@media (max-width: 1024px) {
  .news-articles-card__button {
    width: 30px;
    height: 30px;
    min-height: inherit;
    border-width: 1px;
  }
  .news-articles-card__button span {
    display: none;
  }
}

.news-articles-card__tags {
  color: var(--blue-text);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: right;
}

.article-offer {
  margin-top: -40px;
}

.article-post {
  padding-top: 100px;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .article-post {
    padding-top: 72px;
  }
}
@media (max-width: 768px) {
  .article-post {
    padding-top: 62px;
    padding-bottom: 40px;
  }
}

.article-post__container {
  margin: 0 auto;
  width: 100%;
  max-width: 882px;
}
@media (max-width: 1024px) {
  .article-post__container {
    max-width: 100%;
  }
}

.article-post__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-bottom: 1px solid var(--blue-text);
  padding-bottom: 40px;
  gap: 60px;
}
@media (max-width: 1024px) {
  .article-post__header {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .article-post__header {
    padding-bottom: 30px;
    gap: 30px;
  }
}

.article-post__title {
  width: 100%;
  font-family: "BebasNeue-Regular", sans-serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 80%; /* 56px */
  text-transform: uppercase;
  color: var(--dark-blue);
}
@media (max-width: 1024px) {
  .article-post__title {
    font-size: 50px;
    line-height: 100%;
  }
}
@media (max-width: 768px) {
  .article-post__title {
    font-size: 30px;
  }
}

.article-post__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .article-post__intro {
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.article-post__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 768px) {
  .article-post__author {
    gap: 12px;
  }
}

.article-post__author-avatar {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 100px;
  width: 80px;
  height: 80px;
  background-image: url("/wp-content/themes/acquire/assets/img/back.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .article-post__author-avatar {
    width: 60px;
    height: 60px;
  }
}

.article-post__author-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
}

.article-post__author-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 8px;
}

.article-post__author-name {
  font-family: "Roboto-Medium", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--dark-blue);
}
@media (max-width: 768px) {
  .article-post__author-name {
    font-size: 18px;
  }
}

.article-post__author-role {
  font-family: "Roboto-Medium", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--blue-grey);
}

.article-post__author-company {
  font-size: 16px;
  line-height: 1;
  color: var(--dark-blue);
}
@media (max-width: 768px) {
  .article-post__author-company {
    font-size: 14px;
  }
}

.article-post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  color: var(--blue-grey);
  gap: 8px;
}

.article-post__meta-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--blue-grey);
}

.article-post__date,
.article-post__meta-separator,
.article-post__read-time {
  font-family: "Roboto-Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.article-post__share-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.article-post__share-link {
  display: block;
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .article-post__share-link {
    height: 26px;
    width: 26px;
  }
}
.article-post__share-link svg {
  width: 100%;
  height: 100%;
  display: block;
  color: var(--blue-grey);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media (any-hover: hover) {
  .article-post__share-link svg:hover {
    color: var(--yellow-accent);
  }
}

.article-post__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 40px;
  gap: 60px;
}
@media (max-width: 768px) {
  .article-post__content {
    gap: 30px;
    padding-top: 30px;
  }
}
.article-post__content figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.article-post__content img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 881/400;
}
.article-post__content figure figcaption {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: var(--blue-grey);
}
@media (max-width: 768px) {
  .article-post__content figure figcaption {
    font-size: 14px;
  }
}
.article-post__content section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .article-post__content section {
    gap: 12px;
  }
}
.article-post__content section h2 {
  font-family: "BebasNeue-Regular", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--dark-blue);
}
@media (max-width: 768px) {
  .article-post__content section h2 {
    font-size: 24px;
  }
}
.article-post__content section p, .article-post__content section li, .article-post__content section a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 16px;
  line-height: 1.5;
  color: var(--blue-dark-text);
  gap: 20px;
}
@media (max-width: 768px) {
  .article-post__content section p, .article-post__content section li, .article-post__content section a {
    font-size: 14px;
  }
}
.article-post__content section ul {
  list-style: none;
}
.article-post__content section ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
}
.article-post__content section ul li::before {
  content: "•";
  position: relative;
}
.article-post__content section a {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media (any-hover: hover) {
  .article-post__content section a:hover {
    color: var(--yellow-accent);
  }
}

.no-found-block {
  padding: 20px 0 60px;
}
@media (max-width: 1024px) {
  .no-found-block {
    padding: 0px 0 40px;
  }
}

.no-found-block__intro {
  padding-right: 60px;
  padding-left: 126px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: (auto)[2];
  grid-template-rows: repeat(2, auto);
  gap: 20px 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
@media (max-width: 1024px) {
  .no-found-block__intro {
    padding-right: 0;
    padding-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .no-found-block__intro {
    padding-left: 0;
  }
}

.no-found-block__title {
  color: var(--dark-blue);
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  .no-found-block__title {
    padding-right: 0;
  }
}

.no-found-block__btn {
  width: 310px;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}
@media (max-width: 768px) {
  .no-found-block__btn {
    width: 100%;
  }
}

.no-found-block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  max-width: 520px;
}
@media (max-width: 1024px) {
  .no-found-block__content {
    max-width: 510px;
  }
}
@media (max-width: 768px) {
  .no-found-block__content {
    max-width: 100%;
  }
}
.no-found-block__content p {
  color: var(--blue-dark-text);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  width: 100%;
  max-width: 340px;
}
@media (max-width: 768px) {
  .no-found-block__content p {
    font-size: 14px;
  }
}

.legal-post {
  padding: 70px 0 110px;
}
@media (max-width: 1024px) {
  .legal-post {
    padding: 60px 0 80px;
  }
}
@media (max-width: 768px) {
  .legal-post {
    padding: 0 0 60px;
  }
}

.legal-post__layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
@media (max-width: 1024px) {
  .legal-post__layout {
    -ms-grid-columns: 180px minmax(0, 1fr);
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .legal-post__layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.legal-post__aside {
  position: sticky;
  top: 60px;
}
@media (max-width: 768px) {
  .legal-post__aside {
    position: sticky;
    top: 80px;
    z-index: 20;
    -webkit-transition: opacity 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  }
}
@media (max-width: 768px) {
  .legal-post__aside.is-hidden-on-scroll {
    -webkit-transform: translateY(-120%);
    -ms-transform: translateY(-120%);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
  }
}
.legal-post__aside.is-open {
  background: var(--white);
}
.legal-post__aside.is-open .legal-post__nav-toggle-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .legal-post__aside.is-open .legal-post__nav {
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    height: 100vh;
  }
}
.legal-post__aside.is-open .legal-post__nav-list {
  visibility: visible;
  width: 100%;
}

.legal-post__nav-toggle {
  display: none;
}
@media (max-width: 768px) {
  .legal-post__nav-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 12px 0;
    border-radius: 2px;
    color: var(--dark-blue);
  }
}

.legal-post__nav-toggle-text {
  color: var(--dark-blue);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.legal-post__nav-toggle-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.legal-post__nav-toggle-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.legal-post__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  counter-reset: nav-item;
}
@media (max-width: 768px) {
  .legal-post__nav-list {
    min-height: 0;
    max-height: calc(100dvh - 140px);
    overflow-y: auto;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
  }
}

.legal-post__nav-item {
  counter-increment: nav-item;
}

.legal-post__nav-link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 8px;
  color: var(--dark-blue);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .legal-post__nav-link:hover {
    color: var(--yellow-accent);
  }
}
.legal-post__nav-link.is-active {
  color: var(--blue-accent);
}
.legal-post__nav-link::before {
  content: counter(nav-item);
  position: relative;
  line-height: 1;
}

.legal-post__section {
  padding-bottom: 34px;
}
.legal-post__section:not(:last-child) {
  margin-bottom: 34px;
}
@media (max-width: 768px) {
  .legal-post__section {
    padding-bottom: 24px;
  }
  .legal-post__section:not(:last-child) {
    margin-bottom: 24px;
  }
}
.legal-post__section h2 {
  margin-bottom: 18px;
  color: var(--dark-blue);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .legal-post__section h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .legal-post__section h2 {
    margin-bottom: 14px;
    font-size: 24px;
  }
}
.legal-post__section p, .legal-post__section li {
  color: var(--blue-dark-text);
  font-family: "Roboto-Regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 768px) {
  .legal-post__section p, .legal-post__section li {
    font-size: 13px;
    line-height: 145%;
  }
}
.legal-post__section p:not(:last-child) {
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .legal-post__section p:not(:last-child) {
    margin-bottom: 12px;
  }
}
.legal-post__section li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 8px;
}
.legal-post__section li::before {
  content: "•";
}
.legal-post__section li:not(:last-child) {
  margin-bottom: 4px;
}
.legal-post__section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .legal-post__nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
    padding-bottom: 20px;
    overflow: hidden;
    min-height: 0;
    -webkit-transition: grid-template-rows 0.25s ease-in-out;
    transition: grid-template-rows 0.25s ease-in-out;
    transition: grid-template-rows 0.25s ease-in-out, -ms-grid-rows 0.25s ease-in-out;
  }
}

@media (max-width: 768px) {
  .legal-post__nav-list {
    position: absolute;
    visibility: hidden;
    min-height: 0;
    max-height: calc(100dvh - 148px);
    overflow-y: auto;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
  }
}

.about-us-offer .offer__wrapper:before {
  bottom: 340px;
}

.our-story {
  padding: 80px 0;
  background: var(--dark-blue);
  margin-top: -40px;
}
@media (max-width: 768px) {
  .our-story {
    padding: 60px 0;
  }
}

.our-story__title {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  margin-bottom: 40px;
  color: var(--white);
}
.our-story__title span {
  color: var(--yellow-accent);
}
@media (max-width: 768px) {
  .our-story__title {
    margin-bottom: 30px;
  }
}
.our-story__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: (auto)[2];
  grid-template-rows: repeat(2, auto);
  gap: 40px;
  padding: 0 126px;
}
.our-story__content .description p{
  margin-bottom: 1.4em;
}
@media (max-width: 1024px) {
  .our-story__content {
    gap: 30px 20px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .our-story__content {
    padding: 0;
    gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.our-story__content p {
  color: var(--blue-grey);
  font-family: "Roboto-Medium", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
@media (max-width: 768px) {
  .our-story__content p {
    font-size: 14px;
  }
}

.our-story__picture {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
}
.our-story__picture img {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .our-story__picture--one {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
}

.sub-about-us {
  overflow: hidden;
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .sub-about-us {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .sub-about-us {
    padding: 40px 0;
  }
}

.sub-about-us__title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .sub-about-us__title {
    margin-bottom: 30px;
  }
}

.sub-about-us__slider-wrap {
  position: relative;
}

.sub-about-us__slider {
  overflow: visible;
}

.sub-about-us__title {
  max-width: 90%;
}
@media (max-width: 1024px) {
  .sub-about-us__title {
    max-width: 100%;
  }
}

.sub-about-us__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  gap: 8px;
  justify-items: stretch;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
@media (max-width: 768px) {
  .sub-about-us__item {
    gap: 14px 0;
  }
}

.sub-about-us__item-picture {
  width: 100%;
  aspect-ratio: 340/322;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  grid-column: 1/-1;
}
.sub-about-us__item-picture:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 165%;
  height: 165%;
  background: url("/wp-content/themes/acquire/assets/img/team-bg.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%) rotate(var(--rotate));
  -ms-transform: translate(-50%, -50%) rotate(var(--rotate));
  transform: translate(-50%, -50%) rotate(var(--rotate));
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
.sub-about-us__item-picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -o-object-position: bottom;
  object-position: bottom;
}

.sub-about-us__item:nth-child(4n+1) .sub-about-us__item-picture {
  --rotate: -28deg;
}

.sub-about-us__item:nth-child(4n+2) .sub-about-us__item-picture {
  --rotate: 0deg;
}

.sub-about-us__item:nth-child(4n+3) .sub-about-us__item-picture {
  --rotate: 90deg;
}

.sub-about-us__item:nth-child(4n+4) .sub-about-us__item-picture {
  --rotate: 180deg;
}

.sub-about-us__item-name {
  color: var(--dark-blue);
  font-family: "BebasNeue-Regular", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}
@media (max-width: 1024px) {
  .sub-about-us__item-name {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .sub-about-us__item-name {
    font-size: 24px;
  }
}

.sub-about-us__item-work {
  color: var(--blue-grey);
  font-family: "Roboto-semibold", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  justify-self: flex-end;
}
@media (max-width: 768px) {
  .sub-about-us__item-work {
    font-size: 12px;
  }
}

.sub-about-us__item-text {
  grid-column: 1/-1;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.sub-about-us__item-text p {
  color: var(--blue-text);
  font-family: "Roboto-Regular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 768px) {
  .sub-about-us__item-text p {
    font-size: 14px;
  }
}
.sub-about-us__item-text p:not(:last-child) {
  margin-bottom: 16px;
}

.sub-about-us__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 2px;
  border: 1.133px solid var(--blue-accent);
  background: var(--white);
  color: var(--blue-accent);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
@media (any-hover: hover) {
  .sub-about-us__nav:hover {
    border-color: var(--yellow-accent);
    background: var(--yellow-accent);
    color: var(--white);
  }
}
.sub-about-us__nav.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.sub-about-us__nav svg {
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  fill: currentColor;
}
@media (max-width: 768px) {
  .sub-about-us__nav {
    display: none;
  }
}

.sub-about-us__nav--prev {
  left: -10px;
}

.sub-about-us__nav--next {
  right: -10px;
}
.sub-about-us__nav--next svg {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.works-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.works-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.works-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 25, 47, 0.36);
}

@media (max-width: 768px) {
  .works-modal__container {
    padding: 0;
  }
}

.works-modal__dialog {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .works-modal__dialog {
    padding: 0;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

.works-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0.5;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--blue-grey);
  border: 1px solid var(--blue-grey);
  -webkit-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
@media (max-width: 768px) {
  .works-modal__close {
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
  }
}
.works-modal__close svg {
  width: 20px;
  height: 20px;
}
@media (any-hover: hover) {
  .works-modal__close:hover {
    color: var(--yellow-accent);
    border: 1px solid var(--yellow-accent);
    opacity: 1;
  }
}

.case--modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--white);
}
.case--modal::before {
  display: none;
}
.case--modal .case__title {
  color: var(--dark-blue);
}
.case--modal .case__title span {
  color: var(--yellow-accent);
}
.case--modal .case__info h3 {
  color: var(--dark-blue);
}
.case--modal .case__info p {
  color: var(--blue-grey);
}
.case--modal .case__inner {
  -ms-grid-columns: 220px 1fr auto;
  grid-template-columns: 220px 1fr auto;
}
.case--modal .case__brand {
  padding-left: 0;
  margin-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.case--modal .case__metrics {
  border-left: 1px solid var(--blue-text);
  color: var(--dark-blue);
}
@media (max-width: 768px) {
  .case--modal .case__metrics {
    border: none;
  }
}
.case--modal .case__metric-value {
  color: var(--blue-accent);
}
.case--modal .case__metric-label {
  color: var(--dark-blue);
}/*# sourceMappingURL=main.css.map */
