@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
.page-stratiq-limited {
  font-family: "Manrope", "Source Sans 3", sans-serif;
  color: #0f1523;
  background: #fff;
}

.fx-label {
  color: #0f2a5e;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
}

.fx-label_light {
  color: rgba(255, 255, 255, 0.45);
}

.fx-title {
  color: #0f1523;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.26px;
}
@media (max-width: 1100px) {
  .fx-title {
    font-size: 36px;
    letter-spacing: -1.08px;
  }
}
@media (max-width: 900px) {
  .fx-title {
    font-size: 32px;
    letter-spacing: -0.96px;
  }
}
@media (max-width: 600px) {
  .fx-title {
    font-size: 28px;
    letter-spacing: -0.84px;
  }
}

.fx-title_md {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.2px;
}
@media (max-width: 900px) {
  .fx-title_md {
    font-size: 32px;
    letter-spacing: -0.96px;
  }
}

.fx-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 6px 24px 6px 6px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 22.5px;
  color: #fff;
  background: #0f2a5e;
  -webkit-transition: background 0.3s, border-color 0.3s;
  transition: background 0.3s, border-color 0.3s;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.fx-btn:hover {
  background: #10357b;
}
.fx-btn__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: 36px;
  height: 36px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.fx-btn__icon img {
  width: 16px;
  height: 16px;
}
.fx-btn_ghost {
  padding: 7.5px 21.5px 7.5px 7.5px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.fx-btn_ghost:hover {
  background: rgba(255, 255, 255, 0.4);
}
.fx-btn_ghost .fx-btn__icon {
  background: #fff;
}
.fx-btn_ghost .fx-btn__icon img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.fx-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.fx-header__wrap {
  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;
  height: 82px;
  padding-top: 10px;
}
.fx-header__logo {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.fx-header__logo img {
  height: 38px;
  width: auto;
}
.fx-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
}
@media (max-width: 900px) {
  .fx-header__nav {
    display: none;
  }
}
.fx-header__nav-link {
  font-size: 15px;
  font-weight: 500;
  line-height: 22.5px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  white-space: nowrap;
}
.fx-header__nav-link:hover, .fx-header__nav-link.active {
  color: #fff;
}
.fx-header__burger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}
@media (max-width: 900px) {
  .fx-header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.fx-header__burger::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #fff;
  -webkit-box-shadow: 0 -7px 0 #fff, 0 7px 0 #fff;
          box-shadow: 0 -7px 0 #fff, 0 7px 0 #fff;
}

.page-stratiq-limited.mobile-menu-open {
  overflow: hidden;
}
.page-stratiq-limited.mobile-menu-open .fx-header__burger::before {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.page-stratiq-limited.mobile-menu-open .fx-header__burger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.page-stratiq-limited.mobile-menu-open .fx-mobile-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fx-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  width: 335px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  padding: 128px 32px 32px;
  background: rgba(3, 9, 20, 0.5);
  backdrop-filter: blur(24px);
}
@media (max-width: 600px) {
  .fx-mobile-menu {
    padding: 104px 20px 32px;
  }
}
.fx-mobile-menu a {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  text-align: right;
}

.fx-hero {
  position: relative;
}
.fx-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.fx-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
  -webkit-transition: -webkit-transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.fx-hero__bg.is-visible {
  opacity: 1;
}
.fx-hero__bg.is-visible img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.fx-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(123deg, rgba(10, 26, 61, 0.92) 23.72%, rgba(10, 26, 61, 0.75) 58.35%, rgba(10, 26, 61, 0.25) 88.79%);
}
.fx-hero .container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  gap: 107px;
  padding-top: 0;
}
@media (max-width: 1300px) {
  .fx-hero .container {
    gap: 80px;
  }
}
@media (max-width: 900px) {
  .fx-hero .container {
    gap: 48px;
  }
}
.fx-hero__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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
  padding: 192px 0 148px;
  min-height: 100vh;
}
@media (max-width: 1300px) {
  .fx-hero__content {
    padding: 148px 0 88px;
  }
}
@media (max-width: 900px) {
  .fx-hero__content {
    gap: 32px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .fx-hero__content {
    padding: 148px 0 96px;
  }
}
.fx-hero__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
.fx-hero h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1.92px;
  color: #fff;
  max-width: 600px;
}
@media (max-width: 1300px) {
  .fx-hero h1 {
    font-size: 52px;
    letter-spacing: -1.56px;
  }
}
@media (max-width: 1100px) {
  .fx-hero h1 {
    font-size: 44px;
    letter-spacing: -1.32px;
  }
}
@media (max-width: 900px) {
  .fx-hero h1 {
    font-size: 36px;
    letter-spacing: -1.08px;
  }
}
@media (max-width: 600px) {
  .fx-hero h1 {
    font-size: 32px;
    letter-spacing: -0.96px;
  }
}
.fx-hero__desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 29.24px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 540px;
}
@media (max-width: 900px) {
  .fx-hero__desc {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .fx-hero .fx-btn {
    width: 100%;
    max-width: 100%;
  }
}

.fx-about {
  padding: 100px 0;
  background: #fff;
}
@media (max-width: 900px) {
  .fx-about {
    padding: 64px 0;
  }
}
@media (max-width: 600px) {
  .fx-about {
    padding: 48px 0;
  }
}
.fx-about__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 72px;
}
@media (max-width: 1100px) {
  .fx-about__wrap {
    gap: 48px;
  }
}
@media (max-width: 900px) {
  .fx-about__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.fx-about__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  height: 588px;
  border-radius: 16px;
  overflow: hidden;
  background: #e8ecf4;
}
@media (max-width: 900px) {
  .fx-about__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 1300px) {
  .fx-about__image {
    height: 500px;
  }
}
@media (max-width: 1100px) {
  .fx-about__image {
    height: 420px;
  }
}
@media (max-width: 900px) {
  .fx-about__image {
    width: 100%;
    height: 360px;
  }
}
@media (max-width: 600px) {
  .fx-about__image {
    height: 280px;
    border-radius: 12px;
  }
}
.fx-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fx-about__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (max-width: 900px) {
  .fx-about__text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.fx-about__heading {
  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;
}
.fx-about__paragraphs {
  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-bottom: 16px;
}
.fx-about__paragraphs p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28.48px;
  color: #3d4a63;
}

.fx-solutions {
  padding: 100px 0;
  background: #f8f9fb;
}
@media (max-width: 900px) {
  .fx-solutions {
    padding: 64px 0;
  }
}
@media (max-width: 600px) {
  .fx-solutions {
    padding: 48px 0;
  }
}
.fx-solutions__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
}
@media (max-width: 900px) {
  .fx-solutions__wrap {
    gap: 40px;
  }
}
.fx-solutions__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: 16px;
}
.fx-solutions__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.fx-solutions__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 12px);
          flex: 1 1 calc(50% - 12px);
  min-width: 400px;
  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;
  min-height: 262px;
  padding: 32px;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0 2px 6px rgba(15, 42, 94, 0.07);
          box-shadow: 0 2px 6px rgba(15, 42, 94, 0.07);
}
@media (max-width: 1100px) {
  .fx-solutions__item {
    min-width: calc(50% - 12px);
  }
}
@media (max-width: 900px) {
  .fx-solutions__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    min-width: 100%;
    min-height: auto;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .fx-solutions__item {
    padding: 24px;
    min-height: 300px;
  }
}
.fx-solutions__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: 52px;
  height: 52px;
  border-radius: 10px;
  background: #eef1f7;
  -webkit-transform: rotate(-1.75deg);
          transform: rotate(-1.75deg);
  margin-bottom: 8px;
}
.fx-solutions__icon img {
  width: 24px;
  height: 24px;
}
.fx-solutions__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: 14px;
}
.fx-solutions__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.6px;
  color: #0f1523;
}
.fx-solutions__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 25.8px;
  color: #5a6580;
}

.fx-process {
  padding: 100px 0;
  background: #0f2a5e;
}
@media (max-width: 900px) {
  .fx-process {
    padding: 64px 0;
  }
}
@media (max-width: 600px) {
  .fx-process {
    padding: 48px 0;
  }
}
.fx-process__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media (max-width: 900px) {
  .fx-process__wrap {
    gap: 40px;
  }
}
.fx-process__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: 16px;
  padding-top: 16px;
}
.fx-process__head .fx-title_md {
  color: #fff;
}
.fx-process__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 1100px) {
  .fx-process__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.fx-process__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
  padding: 40px 0;
}
@media (max-width: 1100px) {
  .fx-process__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    padding: 0;
    min-width: 0;
  }
  .fx-process__item:not(:last-child) {
    padding-bottom: 16px;
  }
}
@media (max-width: 1100px) {
  .fx-process__step-col {
    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;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.fx-process__step-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1100px) {
  .fx-process__step-row {
    -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;
  }
}
.fx-process__num {
  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: 44px;
  height: 44px;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.fx-process__line {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  margin-left: 12px;
  background: rgba(255, 255, 255, 0.15);
  min-width: 60px;
}
@media (max-width: 1100px) {
  .fx-process__line {
    width: 1px;
    height: 85px;
    min-width: 0;
    margin-left: 0;
    margin-top: 0;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.fx-process__line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 12px;
  background: url("../../img/process-arrow.svg") no-repeat center/contain;
}
@media (max-width: 1100px) {
  .fx-process__line::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}
.fx-process__line_last {
  display: none;
}
.fx-process__dot {
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1100px) {
  .fx-process__dot {
    display: none;
  }
}
.fx-process__dot_1 {
  left: 30%;
}
.fx-process__dot_2 {
  left: 6%;
  opacity: 0.62;
}
.fx-process__dot_3 {
  left: 78%;
}
@media (max-width: 1100px) {
  .fx-process__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-top: 4px;
  }
}
.fx-process__title {
  padding-top: 28px;
  font-size: 17px;
  font-weight: 600;
  line-height: 25.5px;
  letter-spacing: -0.51px;
  color: #fff;
}
@media (max-width: 1100px) {
  .fx-process__title {
    padding-top: 0;
  }
}
.fx-process__desc {
  padding-top: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 23.8px;
  color: rgba(255, 255, 255, 0.58);
}
@media (max-width: 1100px) {
  .fx-process__desc {
    padding-top: 8px;
  }
}

.fx-advantages {
  padding: 100px 0;
  background: #fff;
}
@media (max-width: 900px) {
  .fx-advantages {
    padding: 64px 0;
  }
}
@media (max-width: 600px) {
  .fx-advantages {
    padding: 48px 0;
  }
}
.fx-advantages__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 72px;
}
@media (max-width: 1100px) {
  .fx-advantages__wrap {
    gap: 48px;
  }
}
@media (max-width: 900px) {
  .fx-advantages__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.fx-advantages__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media (max-width: 900px) {
  .fx-advantages__text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
.fx-advantages__head {
  padding-bottom: 16px;
}
.fx-advantages__head .fx-label {
  opacity: 0.7;
  margin-bottom: 16px;
}
.fx-advantages__head .fx-title {
  padding-bottom: 36px;
}
.fx-advantages__list {
  border-top: 1px solid rgba(15, 42, 94, 0.12);
}
.fx-advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 20px 0 21px;
  border-bottom: 1px solid rgba(15, 42, 94, 0.12);
}
.fx-advantages__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: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(15, 42, 94, 0.08);
          box-shadow: 0 2px 4px rgba(15, 42, 94, 0.08);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.fx-advantages__icon img {
  width: 20px;
  height: 20px;
}
.fx-advantages__icon_rotate1 {
  -webkit-transform: rotate(-7.69deg);
          transform: rotate(-7.69deg);
}
.fx-advantages__icon_rotate2 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.fx-advantages__icon_rotate3 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.fx-advantages__icon_rotate4 {
  -webkit-transform: rotate(-0.67deg);
          transform: rotate(-0.67deg);
}
.fx-advantages__icon_rotate5 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.fx-advantages__name {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.54px;
  color: #0f1523;
}
.fx-advantages__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  height: 560px;
  max-height: 560px;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  background: #e8ecf4;
}
@media (max-width: 1100px) {
  .fx-advantages__image {
    height: 480px;
  }
}
@media (max-width: 900px) {
  .fx-advantages__image {
    width: 100%;
    height: 360px;
    min-height: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 600px) {
  .fx-advantages__image {
    height: 280px;
    border-radius: 12px;
  }
}
.fx-advantages__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fx-contact {
  padding: 0 0 100px;
  background: #fff;
}
@media (max-width: 900px) {
  .fx-contact {
    padding-bottom: 64px;
  }
}
.fx-contact__head {
  text-align: center;
  padding-top: 16px;
}
.fx-contact__head .fx-label {
  margin-bottom: 16px;
}
.fx-contact__head .fx-title {
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .fx-contact .fx-btn {
    width: 100%;
    max-width: 100%;
  }
}
.fx-contact__email {
  text-align: center;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #5a6580;
}
.fx-contact__form {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 48px;
  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;
}
.fx-contact__input {
  width: 100%;
  height: 53px;
  padding: 15px 19px;
  border: 1px solid #c9d2e3;
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  color: #0f1523;
  outline: none;
  -webkit-transition: border-color 0.3s, color 0.3s;
  transition: border-color 0.3s, color 0.3s;
}
.fx-contact__input::-webkit-input-placeholder {
  color: #9aa3b8;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.fx-contact__input::-moz-placeholder {
  color: #9aa3b8;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
.fx-contact__input:-ms-input-placeholder {
  color: #9aa3b8;
  -ms-transition: color 0.3s;
  transition: color 0.3s;
}
.fx-contact__input::-ms-input-placeholder {
  color: #9aa3b8;
  -ms-transition: color 0.3s;
  transition: color 0.3s;
}
.fx-contact__input::placeholder {
  color: #9aa3b8;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.fx-contact__input:hover:not(:focus):not(.input-error) {
  border-color: #939fb5;
}
.fx-contact__input:focus {
  border-color: #0367fc;
  color: #0f1523;
}
.fx-contact__input:focus::-webkit-input-placeholder {
  color: #0f1523;
}
.fx-contact__input:focus::-moz-placeholder {
  color: #0f1523;
}
.fx-contact__input:focus:-ms-input-placeholder {
  color: #0f1523;
}
.fx-contact__input:focus::-ms-input-placeholder {
  color: #0f1523;
}
.fx-contact__input:focus::placeholder {
  color: #0f1523;
}
.fx-contact__input.input-error {
  border-color: #e53935;
}
.fx-contact__input.input-error:focus {
  border-color: #e53935;
}
.fx-contact__input_textarea {
  height: 140px;
  min-height: 140px;
  resize: vertical;
}
.fx-contact__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  padding-top: 4px;
  cursor: pointer;
}
.fx-contact__checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.fx-contact__checkbox input:checked + .fx-contact__checkbox-box {
  background: #0f2a5e;
  border-color: #0f2a5e;
}
.fx-contact__checkbox input:checked + .fx-contact__checkbox-box::after {
  opacity: 1;
}
.fx-contact__checkbox-box {
  position: relative;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid #c8cdd9;
  border-radius: 4px;
  background: #f8f9fb;
  margin-top: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.fx-contact__checkbox-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.fx-contact__checkbox-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 20.8px;
  color: #5a6580;
}
.fx-contact__submit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 8px;
}

.fx-footer {
  background: #0a1628;
  padding: 40px 0;
}
@media (max-width: 900px) {
  .fx-footer {
    padding: 32px 0;
  }
}
.fx-footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.fx-footer__top {
  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: 24px;
}
@media (max-width: 900px) {
  .fx-footer__top {
    -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: 32px;
  }
}
.fx-footer__logo img {
  height: 34px;
  width: auto;
}
.fx-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 900px) {
  .fx-footer__nav {
    -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;
  }
}
.fx-footer__nav a {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.fx-footer__nav a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.fx-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 25px;
}
.fx-footer__bottom p {
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
  color: rgba(255, 255, 255, 0.25);
}

.grecaptcha-badge {
  visibility: hidden;
}

.capcha-text {
  text-align: center;
  font-size: 10px;
  opacity: 0;
  height: 0;
  width: 0;
  display: block;
  visibility: hidden;
}

.fancybox__container {
  z-index: 20000;
}
.fancybox__container button,
.fancybox__container input {
  outline: none !important;
}

.carousel__button {
  display: none;
}

.fancybox__slide {
  padding: 24px 20px;
}

.fancybox__backdrop {
  background: rgba(8, 8, 8, 0.12);
  backdrop-filter: blur(20px);
}

.popup {
  width: 100%;
  max-width: 440px;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0 56px 89.1px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 56px 89.1px 0 rgba(0, 0, 0, 0.25);
  padding: 32px;
  color: #5a6580;
}
@media (max-width: 560px) {
  .popup {
    padding: 24px;
  }
}
.popup__wrap {
  width: 100%;
}
.popup__wrap > p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 32px;
  color: #5a6580;
}
.popup__close {
  position: absolute;
  right: 24px;
  top: 24px;
  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: 32px;
  height: 32px;
  cursor: pointer;
  border-radius: 8px;
  color: #0f1523;
}
.popup__close .icon {
  width: 32px;
  height: 32px;
}
@media (max-width: 560px) {
  .popup__close .icon {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 560px) {
  .popup__close {
    right: 16px;
    top: 16px;
  }
}
.popup .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.96px;
  margin-bottom: 16px;
  color: #0f1523;
  padding-right: 32px;
}
@media (max-width: 600px) {
  .popup .title {
    font-size: 28px;
    letter-spacing: -0.84px;
  }
}
.popup.thanks .fx-btn {
  width: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@-webkit-keyframes fx-reveal-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 24px, 0);
            transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fx-reveal-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 24px, 0);
            transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fx-reveal-left {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-32px, 0, 0);
            transform: translate3d(-32px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fx-reveal-left {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-32px, 0, 0);
            transform: translate3d(-32px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fx-reveal-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(32px, 0, 0);
            transform: translate3d(32px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fx-reveal-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(32px, 0, 0);
            transform: translate3d(32px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fx-reveal-down {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -18px, 0);
            transform: translate3d(0, -18px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fx-reveal-down {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -18px, 0);
            transform: translate3d(0, -18px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fx-reveal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fx-reveal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fx-reveal {
  opacity: 0;
}
.fx-reveal.is-visible {
  -webkit-animation: fx-reveal-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--fx-reveal-delay, 0ms) both;
          animation: fx-reveal-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--fx-reveal-delay, 0ms) both;
}
.fx-reveal_left.is-visible {
  -webkit-animation-name: fx-reveal-left;
          animation-name: fx-reveal-left;
}
.fx-reveal_right.is-visible {
  -webkit-animation-name: fx-reveal-right;
          animation-name: fx-reveal-right;
}
.fx-reveal_down.is-visible {
  -webkit-animation-name: fx-reveal-down;
          animation-name: fx-reveal-down;
}
.fx-reveal_fade.is-visible {
  -webkit-animation-name: fx-reveal-fade;
          animation-name: fx-reveal-fade;
}

@media (prefers-reduced-motion: reduce) {
  .fx-reveal {
    opacity: 1;
  }
  .fx-reveal.is-visible {
    -webkit-animation: none;
            animation: none;
  }
  .fx-hero__bg {
    opacity: 1;
  }
  .fx-hero__bg img {
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-width: 375px;
  scroll-behavior: smooth;
}

body.page-stratiq-limited {
  min-height: 100vh;
  min-width: 375px;
}

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

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

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

input,
textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 1300px) {
  .container {
    padding: 0 48px;
  }
}
@media (max-width: 1100px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 32px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
}

.main {
  width: 100%;
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */