@charset "UTF-8";
/*
The styles were transferred on 04.01.2024,
from the "style.min.css" file to WordPress.
*/
:root {
  --main-font-family: "Open Sans", sans-serif;
  --white: #ffffff;
  --cyan: #14fff2;
  --cyan-dark: #00a4ee;
  --blue-dark: #163170;
  --light-gray: #eaf0f6;
  --gray: #b3b8c9;
  --red: #ff2d55;
  --green: #32d74b;
  --orange: #ff9500;
  --blue-medium: #4fa7ff;
  --box-shadow-dropdown: #;
  --border-dropdown-color: #023074;
  --ticker-color: #0771a3;
  --bg-footer: #183766;
  --bg-footer-input: #25477b;
  --bg-section-tender: #013788;
  --bg-benefits-item: linear-gradient(
    180deg,
    rgba(255, 251, 251, 0.15) 0%,
    rgba(255, 251, 251, 0.0225) 100%
  );
  --bg-benefits-about: linear-gradient(
    180deg,
    rgba(255, 251, 251, 0.12) 0%,
    rgba(255, 251, 251, 0.03) 100%
  );
  --bg-faq-accordion-item: #043c8e;
  --border-input: #2d5289;
  --bg-faq-accordion-item-opacity: rgba(4, 60, 142, 0.5);
  --bg-sections-intro-statistic-faq: linear-gradient(
    138.93deg,
    #012d6e 14.42%,
    #0149b5 64.04%
  );
  --faq-alt-bg: #0f3773;
  --bg-section-products: #082b5f;
  --bg-pricing-item: #002f74;
  --bg-divider: #2c64b9;
  --bg-statistic-expanded: linear-gradient(
    139deg,
    #012d6e 14.42%,
    #0149b5 64.04%
  );
  --bg-statistic-item: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07) 23.23%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(91deg, #033278 0.92%, #033786 99.23%);
  --input-border-footer: #34578c;
  --faq-border-item: #ba90ff;
  --background-scrollbar-track: #fff;
  --background-scrollbar-thumb: #043c8e;
  --border-radius-xxs: 0.125rem;
  --border-radius-xs: 0.25rem;
  --border-radius-s: 0.5rem;
  --border-radius-m: 0.625rem;
  --box-shadow-header: 0 5px 10px rgb(0 0 0 / 25%);
  --box-shadow-image: 0px 12.396px 30.99px 0px rgba(0, 0, 0, 0.3);
}

body {
  font-family: var(--main-font-family);
  font-style: normal;
}

h1 {
  font-weight: 800;
  font-size: 5rem;
  line-height: 6.25rem;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
}

@media only screen and (max-width: 112.5em) {
  h1 {
    font-size: 3rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 37.5em) {
  h1 {
    font-size: 2rem;
  }
}
h2 {
  font-weight: 800;
  font-size: 4rem;
  line-height: 4rem;
  text-transform: uppercase;
  color: var(--white);
}

@media only screen and (max-width: 112.5em) {
  h2 {
    font-size: 2rem;
    line-height: 1.5;
  }
}
h3 {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 4rem;
  text-transform: uppercase;
  color: #082b5f;
}

@media only screen and (max-width: 112.5em) {
  h3 {
    font-size: 1.75rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 37.5em) {
  h3 {
    font-size: 1rem;
  }
}
h4 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

h5 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.75rem;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

a {
  color: var(--blue-light);
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  box-sizing: border-box;
  background: var(--bg-section-tender);
}
body::-webkit-scrollbar {
  width: 0.75rem;
  height: 0.5rem;
}
body::-webkit-scrollbar-track {
  background: var(--background-scrollbar-track);
}
body::-webkit-scrollbar-thumb {
  background: var(--background-scrollbar-thumb);
  border-radius: 0.75rem;
}

.pages-nav {
  position: fixed;
  z-index: 500;
  right: 0;
  top: 300px;
  background: #00e2ff;
  padding: 0.5rem;
  overflow: hidden;
  display: none;
}

.pages-nav h4 {
  color: #000;
  text-align: center;
}

.pages-nav ol {
  display: none;
  padding-left: 1.5rem;
}

.pages-nav ol li a {
  display: block;
  padding: 0.2rem 0.2rem;
  color: #000;
  font-size: 1.2rem;
  white-space: nowrap;
}

.pages-nav:hover ol {
  display: block;
}

.container {
  width: 100%;
  max-width: 1522px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container__products {
  width: 100%;
  max-width: 1792px;
  margin: 0 auto;
}

@media only screen and (max-width: 112.5rem) {
  .container__products {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.container.xl {
  max-width: 114rem;
}

@media only screen and (max-width: 112.5em) {
  .container {
    max-width: 992px;
  }
}
@media only screen and (max-width: 1800px) and (min-width: 1500px) {
  .container {
    max-width: 1260px;
  }
}
a {
  text-decoration: none;
}

li {
  list-style: none;
}

input {
  border: 0;
  outline: none;
}

.mb-2 {
  margin-bottom: 1.25rem;
}

.screen-container {
  display: flex;
  flex-direction: column;
}

.screen-container.no-swiper .line-slider {
  display: none;
}

.screen-content {
  min-height: calc(100vh - 37rem);
  background-color: var(--background);
  overflow-x: hidden;
}
.screen-content.overflow-x-visible {
  overflow-x: visible;
}

.page-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 79.375rem;
  margin: 0 auto;
  gap: 1.5rem;
}

.bg__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg__image:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg__image.bg::before {
  content: "";
  background: rgb(0, 32, 108);
  background: linear-gradient(90deg, rgb(0, 32, 108) 0%, rgb(0, 53, 132) 20%, rgb(0, 64, 159) 51%, rgb(0, 66, 161) 69%, rgb(0, 75, 187) 100%);
  opacity: 0.4;
}

.bg__image.bg-sec::before {
  content: "";
  background: rgb(1, 51, 126);
  background: linear-gradient(180deg, rgb(1, 51, 126) 0%, rgba(18, 67, 144, 0.8771883754) 51%, rgba(102, 147, 230, 0.7455357143) 100%);
}

.bg__image .bg,
.bg__image .bg-sec {
  height: auto;
}

.bg__image .bg img,
.bg__image .bg-sec img {
  width: 100%;
  height: 100%;
}

.bg__image svg {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.bg__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg__image.blue-dark {
  background: var(--bg-section-products);
}

.bg__image.first-intro-screen svg {
  top: auto;
  bottom: 0;
  transform: translateY(0);
}

.bg__image.middle-screen svg {
  top: 3vw;
  transform: translateY(0);
}

@media only screen and (min-width: 2020px) {
  .bg__image.middle-screen svg {
    width: calc(100% + 10rem);
    left: -10rem;
    top: -2vw;
  }
}
@media only screen and (min-width: 2077px) {
  .bg__image.middle-screen svg {
    top: -5vw;
  }
}
@media only screen and (min-width: 2203px) {
  .bg__image.middle-screen svg {
    top: -8vw;
  }
}
@media only screen and (min-width: 160.25em) {
  .bg__image.middle-screen svg {
    transform: translateY(0) rotateY(-180deg);
    left: 0;
    top: -83rem;
    width: calc(100% + 20rem);
  }
}
@media only screen and (min-width: 3839px) {
  .bg__image.middle-screen svg {
    top: -66rem;
  }
}
@media only screen and (min-width: 5000px) {
  .bg__image.middle-screen svg {
    top: -63rem;
  }
}
@media only screen and (max-width: 112.5em) {
  .bg__image.middle-screen svg {
    width: 120rem;
    top: 7vh;
    left: calc(50% - 8rem);
    transform: translateX(-50%);
  }
}
.bg__image.bottom-screen svg {
  top: 0;
  transform: translateY(0);
}

@media only screen and (min-width: 2203px) {
  .bg__image.bottom-screen svg {
    top: -3vw;
  }
}
@media only screen and (min-width: 5000px) {
  .bg__image.bottom-screen svg {
    top: -16rem;
  }
}
@media only screen and (max-width: 75em) {
  .bg__image.bottom-screen svg {
    width: 80rem;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.bg__image.events-screen svg,
.bg__image.pricing-screen svg {
  bottom: 0;
  width: 100%;
  top: unset;
  transform: unset;
}

.tab__content {
  display: none;
}

.tab__content-active {
  display: flex;
}

.tabs__nav {
  display: flex;
  justify-content: center;
  transition: 0.2s;
}

.tabs__nav .tab {
  white-space: nowrap;
  position: relative;
  font-weight: 600;
  font-size: 24px;
  line-height: 44px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.4;
  cursor: pointer;
  padding-bottom: 10px;
  transition: 0.3s;
}

.tabs__nav .tab:hover {
  color: var(--cyan);
  opacity: 1;
}

.tabs__nav .tab::after {
  content: "";
  position: absolute;
  width: 2.25rem;
  height: 0.25rem;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--cyan);
  opacity: 0;
  transition: 0.3s;
}

@media only screen and (max-width: 112.5em) {
  .tabs__nav .tab {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 112.5em) {
  .tabs__nav .tab {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 48em) {
  .tabs__nav {
    flex-direction: column;
    gap: 0 !important;
    margin-bottom: 0.25rem !important;
  }
  .tabs__nav .tab {
    text-align: center;
  }
}
@media only screen and (max-width: 48em) {
  .tabs__nav .tab {
    padding-bottom: 0;
    line-height: 2.2rem;
  }
  .tabs__nav .tab::after {
    height: 0.125rem;
  }
}
.tabs__nav .tab__active {
  color: var(--cyan);
  opacity: 1;
  pointer-events: none;
}

.tabs__nav .tab__active::after {
  opacity: 1;
}

.tabs__nav.can_be_sticky {
  position: absolute;
  width: 100%;
}

@media only screen and (max-width: 56.25em) {
  .tabs__nav.can_be_sticky {
    position: relative;
  }
}
.tabs__nav.sticky {
  position: fixed;
  top: 5rem;
  z-index: 1;
  left: 0;
  padding: 1rem;
  width: 100%;
  background-color: var(--bg-section-products);
  box-shadow: var(--box-shadow-header);
}

@media only screen and (max-width: 65.625em) {
  .tabs__nav.sticky {
    top: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .tabs__nav.sticky {
    position: relative;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    top: 0;
  }
}
.section__intro {
  position: relative;
  padding: 8rem 0 15%;
  overflow: hidden;
}

.section__intro--products {
  position: relative;
  padding: 8rem 0 6.625rem;
  overflow: hidden;
  background: #082b5f;
}
.section__intro--products .bg__image {
  z-index: 0;
}
.section__intro--products .tender__block-left {
  gap: 20px;
  padding-top: 0;
}
.section__intro--products .tender__buttons .btn-primary,
.section__intro--products .tender__buttons .btn-secondary,
.section__intro--products .tender__buttons .btn-transparent {
  padding: 20px 32px;
}
@media (width <= 767px) {
  .section__intro--products .tender__buttons .btn-primary,
  .section__intro--products .tender__buttons .btn-secondary,
  .section__intro--products .tender__buttons .btn-transparent {
    padding: 0.75rem 1rem;
  }
}
.section__intro--products.products-link-list .bg__image {
  z-index: 0;
  height: auto;
  bottom: 400px;
}
.section__intro--products .container {
  z-index: 2;
  position: relative;
  max-width: 1752px;
  padding-top: 44px;
}
@media (width <= 1600px) {
  .section__intro--products .container {
    max-width: 1312px;
  }
}
@media (width <= 1300px) {
  .section__intro--products .container {
    max-width: 992px;
    padding-top: 0;
  }
}
.section__intro--products .stats__block {
  padding: 24px 32px;
}
.section__intro--products .stats__block.stats__fax {
  align-items: center;
}
.section__intro--products .stats__bottom {
  gap: 0;
}
.section__intro--products .stats__bottom span {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}
@media only screen and (max-width: 101.5rem) {
  .section__intro--products .stats__bottom span {
    font-size: 24px;
    line-height: 24px;
  }
}
.section__intro--products p {
  color: var(--Website-white, #fff);
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.6px;
}
.section__intro--products .bottom__info p,
.section__intro--products .bottom__info a {
  color: var(--Website-white, #fff);
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 2px;
}
@media only screen and (max-width: 101.5rem) {
  .section__intro--products .bottom__info p,
  .section__intro--products .bottom__info a {
    font-size: 16px;
  }
}
@media (max-width: 40rem) {
  .section__intro--products .bottom__info p,
  .section__intro--products .bottom__info a {
    font-size: 10px;
  }
}
.section__intro--products .bottom__info-stats svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 1600px) {
  .section__intro--products .chart__stats .stats__block {
    align-items: center;
  }
}

.section__intro .bg__image {
  background: var(--bg-sections-intro-statistic-faq);
}

.section__intro h1 {
  margin-bottom: 0.25rem;
}

.section__intro h1 span {
  color: var(--cyan);
}

.section__intro .title__intro.center-side {
  max-width: 78rem;
  padding: 7.5rem 0 25rem;
  margin: 0 auto;
}

.section__intro .title__intro.center-side h1 {
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.19;
}

@media only screen and (max-width: 112.5em) {
  .section__intro .title__intro.center-side h1 {
    font-size: 3rem;
  }
}
.section__intro .title__intro.center-side b {
  color: var(--cyan);
}

.section__intro .title__intro.left-side {
  max-width: 33.125rem;
}

.section__intro .title__intro.left-side h1 {
  text-align: left;
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 112.5em) {
  .section__intro .title__intro.left-side h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}
.section__intro .title__intro.left-side p {
  font-weight: 400;
  font-size: 1.125rem;
  text-align: left;
  margin-bottom: 3rem;
  letter-spacing: 0.11rem;
}

@media only screen and (max-width: 112.5em) {
  .section__intro .title__intro.left-side p {
    font-style: 1rem;
    margin-bottom: 2rem;
  }
}
.section__intro .title__intro p {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 2.25rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 6.25rem;
}

.section__intro .tabs__intro .tabs__nav {
  gap: 4.5rem;
  margin-bottom: 2.75rem;
}

@media only screen and (max-width: 56.25em) {
  .section__intro .tabs__intro .tabs__nav {
    gap: 2rem;
  }
}
.section__intro .tabs__intro .tabs__intro-contents {
  justify-content: space-between;
  gap: 4.5rem;
}

@media only screen and (max-width: 112.5em) {
  .section__intro .tabs__intro .tabs__intro-contents {
    gap: 1.5rem;
    align-items: center;
  }
}
@media only screen and (max-width: 48em) {
  .section__intro .tabs__intro .tabs__intro-contents {
    flex-direction: column;
  }
}
.section__intro .tabs__intro .tabs__intro-contents-image img {
  width: 54rem;
  height: 29.5rem;
  object-fit: contain;
}

@media only screen and (max-width: 112.5em) {
  .section__intro .tabs__intro .tabs__intro-contents-image {
    width: 50%;
    height: auto;
  }
  .section__intro .tabs__intro .tabs__intro-contents-image img {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 48em) {
  .section__intro .tabs__intro .tabs__intro-contents-image {
    width: 100%;
  }
}
.section__intro .tabs__intro .tabs__intro-contents-text {
  padding-top: 3.5rem;
}

.section__intro .tabs__intro .tabs__intro-contents-text p {
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 2.5rem;
}

@media only screen and (max-width: 112.5em) {
  .section__intro .tabs__intro .tabs__intro-contents-text {
    width: 50%;
    height: auto;
    padding-top: 0;
  }
  .section__intro .tabs__intro .tabs__intro-contents-text p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 48em) {
  .section__intro .tabs__intro .tabs__intro-contents-text {
    width: 100%;
    max-width: 28rem;
  }
}
.section__intro .tabs__intro .tabs__intro-contents-buttons {
  display: flex;
  gap: 2.5rem;
}

@media only screen and (max-width: 25em) {
  .section__intro .tabs__intro .tabs__intro-contents-buttons {
    flex-direction: column;
  }
  .section__intro .tabs__intro .tabs__intro-contents-buttons a {
    width: 100%;
  }
}
@media only screen and (max-width: 112.5em) {
  .section__intro .title__intro p {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .section__intro {
    padding: 6rem 0 8.5rem;
  }
  .section__intro .title__intro p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 48em) {
  .section__intro {
    padding: 6rem 0 3rem;
  }
}
.ticker {
  margin-bottom: 6rem;
  padding: 0.75rem 0 0.75rem;
  transition: 0.25s;
  user-select: none;
  width: 100%;
  overflow: hidden;
  padding-left: 100%;
  box-sizing: content-box;
  position: relative;
}

.ticker:before,
.ticker::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: linear-gradient(to right, transparent 60%, var(--ticker-color) 0%);
  background-position: bottom;
  background-size: 1.5rem 0.125rem;
  background-repeat: repeat-x;
  top: 0;
  left: 0;
}

.ticker::after {
  background-position: top;
}

.ticker .ticker__list {
  display: inline-flex;
  align-items: center;
  gap: 2.143rem;
  animation: ticker 50s linear infinite;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  cursor: pointer;
}

.ticker .ticker__list:hover {
  animation-play-state: paused;
}

.ticker .ticker__item {
  width: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticker .ticker__item ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ticker .ticker__item ul li {
  font-weight: 600;
  font-size: 12px;
  line-height: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
}

.ticker .ticker__item ul .ticker__item-percentage.percentage-red,
.ticker .ticker__item ul .ticker__item-percentage.percentage-green {
  opacity: 1;
  position: relative;
}

.ticker .ticker__item ul .ticker__item-percentage.percentage-red::after,
.ticker .ticker__item ul .ticker__item-percentage.percentage-green::after {
  content: "";
  width: 1rem;
  height: 1rem;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
}

.ticker .ticker__item ul .ticker__item-percentage.percentage-red {
  color: var(--red);
}

.ticker .ticker__item ul .ticker__item-percentage.percentage-red::after {
  background-image: url("../img/arrow-bottom.png");
}

.ticker .ticker__item ul .ticker__item-percentage.percentage-green {
  color: var(--green);
}

.ticker .ticker__item ul .ticker__item-percentage.percentage-green::after {
  background-image: url("../img/arrow-top.png");
}

.ticker .ticker__item ul .ticker__item-percentage.percentage-orange {
  color: var(--orange);
  opacity: 1;
}

@media only screen and (max-width: 112.5em) {
  .ticker {
    margin-bottom: 2rem;
  }
}
@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.section__company h3 {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__company h4 {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin: 0 auto 3.5rem;
}

.section__company_title--products {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 3.5rem;
  padding-inline: 2rem;
}

@media only screen and (max-width: 112.5em) {
  .section__company_title--products {
    font-size: 1.75rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 37.5em) {
  .section__company_title--products {
    margin-bottom: 1rem;
    font-size: 1rem;
    padding-inline: 1rem;
  }
}
.section__company .line-img {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.section__company .line-img svg {
  width: 100%;
}

.section__company .company-slider {
  user-select: none;
  cursor: pointer;
  padding: 0 2.875rem;
  position: relative;
  height: 6rem;
}

.section__company .company-slider .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: linear;
  width: auto;
}

.section__company .company-slider .swiper-slide {
  width: auto;
  transition: 0.2s;
  display: flex;
  align-items: center;
  max-height: 2.5rem;
  max-width: 15rem;
}

@media only screen and (max-width: 112.5em) {
  .section__company .company-slider .swiper-slide {
    max-width: 20rem;
    max-height: 5rem;
  }
  .section__company .company-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.section__company .company-slider .swiper-slide img {
  width: 100%;
  max-height: 5.625rem;
}

.section__company .company-slider .swiper-slide:hover {
  filter: grayscale(0);
}

@media only screen and (max-width: 112.5em) {
  .section__company {
    padding: 2rem 0;
  }
  .section__company .line-img {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section__company h3 {
    margin-bottom: 1rem;
  }
  .section__company .line-img {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
.section__statistic {
  background: var(--bg-sections-intro-statistic-faq);
  padding: 10rem 0 9.75rem;
}

.section__statistic .statistic__title {
  text-align: center;
  margin: 0 auto 3.5rem;
  max-width: 77.5rem;
}

.section__statistic .view-products {
  position: relative;
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  cursor: pointer;
}

.section__statistic .view-products::after {
  content: "";
  width: 2rem;
  height: 2rem;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  display: inline-block;
  background-image: url("../img/arrow-bottom-long.png");
  background-repeat: no-repeat;
  animation-name: arrow;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@media only screen and (max-width: 112.5em) {
  .section__statistic {
    padding: 4rem 0;
  }
}
@keyframes arrow {
  0% {
    opacity: 1;
    top: 2rem;
  }
  50% {
    top: 2.5rem;
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    top: 2rem;
  }
}
.statistic__list {
  display: flex;
  justify-content: space-between;
  gap: 3.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

@media only screen and (max-width: 112.5em) {
  .statistic__list {
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .statistic__list {
    gap: 1rem;
  }
}
@media only screen and (max-width: 48em) {
  .statistic__list {
    flex-direction: column;
    align-items: center;
  }
}
.statistic__item-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  max-width: 359px;
}
.statistic__item-wrap h4 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.286;
}
.statistic__item-wrap p {
  opacity: 0.8;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
}

.section__statistic.statistic__expanded {
  position: relative;
  padding: 8.25rem 0;
  background: none;
}
.section__statistic.statistic__expanded .bg__image.test-intro-screen:before {
  content: none;
}
.section__statistic.statistic__expanded .bg__image.right-screen svg {
  height: 90%;
  left: 52.3rem;
  top: auto;
  bottom: 0;
  transform: translateY(0);
}
.section__statistic.statistic__expanded .statistic__item-wrap {
  justify-content: start;
}
.section__statistic.statistic__expanded .statistic__title {
  font-size: 3rem;
  line-height: 1.33;
  max-width: 75.188rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4.5rem;
}
.section__statistic.statistic__expanded .bg__image {
  background: var(--bg-statistic-expanded);
}
.section__statistic.statistic__expanded .statistic__list {
  margin-bottom: 8.25rem;
  gap: 6.25rem;
}
.section__statistic.statistic__expanded .statistic__item {
  width: 17.5rem;
  height: 17.5rem;
  padding: 0;
}
.section__statistic.statistic__expanded .statistic__item .ellipse-img {
  width: calc(100% - 32px);
  height: calc(100% - 32px);
}
.section__statistic.statistic__expanded .statistic__item .ellipse-img::after {
  width: 1.5rem;
  height: 1.5rem;
}

@media only screen and (max-width: 112.5em) {
  .section__statistic.statistic__expanded {
    padding: 6.6rem 0;
  }
  .section__statistic.statistic__expanded .bg__image.right-screen svg {
    height: 100%;
    left: 42%;
    top: auto;
    bottom: 0;
    transform: translateY(0);
  }
  .section__statistic.statistic__expanded .statistic__title {
    font-size: 2.4rem;
    margin-bottom: 3.6rem;
  }
  .section__statistic.statistic__expanded .statistic__list {
    margin-bottom: 6.6rem;
    gap: 3rem;
  }
  .section__statistic.statistic__expanded .statistic__item {
    width: 14rem;
    height: 14rem;
  }
  .section__statistic.statistic__expanded .statistic__item .ellipse-img::after {
    width: 1.2rem;
    height: 1.2rem;
  }
  .statistic__item-wrap {
    max-width: 18rem;
  }
  .statistic__item-wrap h4 {
    font-size: 1.4rem;
  }
  .statistic__item-wrap p {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .section__statistic.statistic__expanded {
    padding: 5rem 0;
  }
  .section__statistic.statistic__expanded .bg__image.right-screen svg {
    height: 60%;
    left: -9%;
  }
  .section__statistic.statistic__expanded .statistic__list {
    margin-bottom: 5rem;
  }
}
.statistic__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 25rem;
  height: 25rem;
  padding: 2rem;
  background: var(--bg-statistic-item);
  border-radius: 50%;
  position: relative;
}

.statistic__item h5 {
  width: 6.813rem;
  position: relative;
}

.statistic__item h5::after {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  top: 2rem;
  right: -2.5rem;
  position: absolute;
  display: inline-block;
  background-image: url("../img/arrow-right.png");
  background-repeat: no-repeat;
  display: none;
}

.statistic__item p {
  font-weight: 700;
  font-size: 5.625rem;
  line-height: 6.5rem;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.3;
}

.statistic__item .ellipse-img {
  position: absolute;
  width: calc(100% - 3.75rem);
  height: calc(100% - 3.75rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 0.25rem solid var(--faq-border-item);
  border-radius: 50%;
  transition: 3s;
}

.statistic__item .ellipse-img::after {
  content: "";
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--cyan);
  border-radius: 50%;
}

.statistic__item.loading .ellipse-img {
  transform: translate(-50%, -50%) rotate(765deg);
}

@media only screen and (max-width: 112.5em) {
  .statistic__item {
    width: 17rem;
    height: 17rem;
  }
  .statistic__item p {
    font-size: 4.5rem;
  }
}
@media only screen and (max-width: 112.5em) {
  .statistic__item .ellipse-img {
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
  }
  .statistic__item p {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .statistic__item {
    width: 14rem;
    height: 14rem;
  }
  .statistic__item h5 {
    font-size: 0.875rem;
  }
  .statistic__item p {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 48em) {
  .statistic__item {
    width: 25rem;
    height: 25rem;
  }
  .statistic__item h5 {
    font-size: 1rem;
  }
  .statistic__item p {
    font-size: 5.625rem;
  }
}
@media only screen and (max-width: 25em) {
  .statistic__item {
    width: 20rem;
    height: 20rem;
  }
}
@media only screen and (max-width: 48em) {
  .statistic__item {
    width: 16rem;
    height: 16rem;
  }
  .statistic__item h5 {
    font-size: 0.875rem;
  }
  .statistic__item p {
    font-size: 3rem;
  }
}
.section__product {
  position: relative;
  padding: 6.25rem 0 23.438rem;
  overflow: hidden;
}

.section__product .bg__image {
  background: var(--bg-section-products);
}

.section__product .tabs__products {
  display: flex;
  flex-direction: column;
  gap: 7rem;
  position: relative;
}

.section__product .tabs__products .tabs__nav {
  gap: 3.5rem;
}

.section__product .tabs__products .tabs__nav .tab {
  font-size: 1.125rem;
  line-height: 2rem;
}

@media only screen and (max-width: 112.5em) {
  .section__product .tabs__products .tabs__nav {
    gap: 2rem;
  }
  .section__product .tabs__products .tabs__nav .tab {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 75em) {
  .section__product .tabs__products .tabs__nav {
    gap: 1rem;
  }
  .section__product .tabs__products .tabs__nav .tab {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 48em) {
  .section__product .tabs__products .tabs__nav .tab {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .section__product .tabs__products {
    gap: 2rem;
  }
}
@media only screen and (max-width: 48em) {
  .section__product .tabs__products {
    gap: 0;
  }
}
.section__product .product__blocks {
  flex-direction: column;
  gap: 19.5rem;
}

.section__product .product__block-wrap {
  display: flex;
  flex-direction: column;
}

.section__product .product__block-wrap .product__block {
  padding-top: 17.25rem;
  display: flex;
  gap: 7rem;
}

.section__product .product__block-wrap .product__block:first-child {
  padding-top: 7.25rem;
}

.section__product .product__block-wrap .product__block:nth-child(even) {
  flex-direction: row-reverse;
}

.section__product .product__block-wrap .product__block:nth-child(even) .product__block-right {
  margin-right: 0;
  margin-left: -24%;
}

.section__product .product__block-wrap .product__block:nth-child(even) .product__block-right img {
  width: 1252px;
  height: 688px;
}

.section__product .product__block-wrap .product__block .product__block-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 5.625rem;
}

.section__product .product__block-wrap .product__block .product__block-left h3 {
  font-size: 3.5rem;
  color: var(--white);
}

.section__product .product__block-wrap .product__block .product__block-left p {
  font-size: 0.938rem;
}

.section__product .product__block-wrap .product__block .product__block-right {
  margin-right: -31.1%;
}

@media only screen and (max-width: 112.5em) {
  .section__product .product__block-wrap .product__block {
    padding-top: 8rem;
    gap: 2rem;
  }
  .section__product .product__block-wrap .product__block .product__block-left {
    gap: 1rem;
    padding-top: 3rem;
    min-width: 25rem;
  }
  .section__product .product__block-wrap .product__block .product__block-left h3 {
    font-size: 2rem;
  }
  .section__product .product__block-wrap .product__block .product__block-right {
    margin-right: 0;
  }
  .section__product .product__block-wrap .product__block .product__block-right img {
    width: 800px;
    height: 420px;
  }
  .section__product .product__block-wrap .product__block:nth-child(even) .product__block-right img {
    width: 800px;
    height: 420px;
  }
}
@media only screen and (max-width: 48em) {
  .section__product .product__block-wrap .product__block {
    flex-direction: column;
    padding-top: 5rem;
  }
  .section__product .product__block-wrap .product__block .product__block-left {
    padding-top: 0;
  }
  .section__product .product__block-wrap .product__block .product__block-right {
    margin-right: 0;
  }
  .section__product .product__block-wrap .product__block .product__block-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .section__product .product__block-wrap .product__block:nth-child(even) {
    flex-direction: column;
  }
  .section__product .product__block-wrap .product__block:nth-child(even) .product__block-right {
    margin-left: 0;
  }
  .section__product .product__block-wrap .product__block:nth-child(even) .product__block-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
.section__product .product__blocks-small {
  display: flex;
  gap: 6.875rem;
}

.section__product .product__blocks-small .product__block-small {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}

.section__product .product__blocks-small .product__block-small .product__block-small-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section__product .product__blocks-small .product__block-small .product__block-small-text h3 {
  line-height: 2.75rem;
  color: var(--white);
}

.section__product .product__blocks-small .product__block-small .product__block-small-text p {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 2.25rem;
}

@media only screen and (max-width: 112.5em) {
  .section__product {
    padding: 6.25rem 0 12rem;
  }
}
@media only screen and (max-width: 48em) {
  .section__product {
    padding: 4rem 0 8rem;
  }
}
.section__faq {
  position: relative;
  padding: 0 0 10.25rem;
}

.section__faq .bg__image {
  background: var(--bg-sections-intro-statistic-faq);
}

.section__faq .faq-block-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4.125rem 5rem;
  background-image: url("../img/bgFaq.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2rem 2rem 0 2rem;
  position: relative;
  top: -7.25rem;
  gap: 4rem;
}

.section__faq .faq-block-top--products {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.125rem 5rem;
  background-image: url("../img/bgFaq.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2rem 2rem 0 2rem;
  position: relative;
  top: -7.25rem;
  flex-direction: column;
  gap: 2.5rem;
  z-index: 2;
}

@media only screen and (max-width: 112.5em) {
  .section__faq .faq-block-top--products {
    padding: 1.5rem;
  }
}
.section__faq .faq__title {
  max-width: 61.063rem;
  width: 100%;
  font-size: 3.5rem;
  line-height: 4.75rem;
  text-align: center;
  letter-spacing: 0.1em;
  margin: 10rem auto 3.75rem;
}

.section__faq .faq-block-text {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.section__faq .faq-block-text .faq-block-title {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 21.938rem;
  width: 100%;
}

.section__faq .faq-block-text .faq-block-subtitle {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--white);
  max-width: 25.5rem;
  width: 100%;
}

.section__faq .faq-block-text .faq-block-subtitle--products {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--white);
  max-width: 56rem;
  width: 100%;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  line-height: 166.667%;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

@media only screen and (max-width: 112.5em) {
  .section__faq .faq__title {
    font-size: 3rem;
  }
  .section__faq .faq-block-top {
    padding: 1.5rem;
    top: -4rem;
    gap: 2rem;
  }
  .section__faq .faq-block-text {
    gap: 2rem;
  }
  .section__faq .faq-block-text .faq-block-title {
    font-size: 1.5rem;
    max-width: 15rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 48em) {
  .section__faq .faq__title {
    font-size: 2rem;
    margin-top: 2rem;
  }
  .section__faq .faq-block-top {
    flex-direction: column;
    gap: 1rem;
    top: -6rem;
  }
  .section__faq .faq-block-text {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .section__faq .faq-block-text .faq-block-title {
    max-width: 100%;
    text-align: center;
  }
  .section__faq .faq-block-text .faq-block-subtitle {
    text-align: center;
  }
}
.accordion-item {
  border: 2px solid;
  border-color: transparent;
  transition: 0.2s;
  border-radius: var(--border-radius-s);
}

.accordion-item .accordion-item__head {
  background-color: var(--bg-faq-accordion-item-opacity);
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3rem 6.5rem;
  border-radius: var(--border-radius-s);
  width: 100%;
}

@media only screen and (max-width: 112.5em) {
  .accordion-item .accordion-item__head {
    padding: 2rem 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .accordion-item .accordion-item__head {
    padding: 1.5rem 3rem 1.5rem 2rem;
    font-size: 1.25rem;
  }
}
.accordion-item .accordion-item__body {
  display: block;
  flex-direction: column;
  gap: 2rem;
  padding: 0 6.5rem;
  transition: 0.2s;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
}

.accordion-item .accordion-item__body .accordion-text {
  padding-bottom: 3rem;
}

@media only screen and (max-width: 112.5em) {
  .accordion-item .accordion-item__body {
    padding: 0 2rem;
  }
  .accordion-item .accordion-item__body .accordion-text {
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .accordion-item .accordion-item__body {
    padding: 0 1.5rem;
  }
  .accordion-item .accordion-item__body .accordion-text {
    padding-bottom: 2rem;
  }
}
.accordion-item:hover {
  border-color: var(--cyan);
}

.accordion-item.active {
  background-color: var(--bg-faq-accordion-item);
  border-radius: var(--border-radius-s);
  border-color: var(--faq-border-item);
}

.accordion-item.active .accordion-item__head {
  position: relative;
  color: var(--cyan);
}

.accordion-item.active .accordion-item__head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55px;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 0.125rem;
  background-color: var(--cyan);
}

@media only screen and (max-width: 112.5em) {
  .accordion-item.active .accordion-item__head::before {
    left: 1rem;
    width: 1rem;
  }
}
@media only screen and (max-width: 25em) {
  .accordion-item.active .accordion-item__head::before {
    left: 0.75rem;
    width: 0.75rem;
  }
}
.accordion-item.active .accordion-item__body {
  opacity: 1;
}

.faq__accordion-item {
  border: 1px solid;
  border-color: transparent;
  transition: 0.2s;
  border-radius: var(--border-radius-s);
}

.faq__accordion-item:hover {
  border-color: var(--cyan);
}

.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 74.06rem;
  margin: 0 auto;
}

.faq__accordion.second .accordion-item__head {
  background-color: var(--faq-alt-bg);
}

.faq__accordion.second .accordion-item__head.active {
  background-color: var(--faq-alt-bg);
  border-color: var(--cyan);
}

.faq__accordion.second .accordion-item__body {
  background-color: var(--faq-alt-bg);
}

.section__pricing {
  position: relative;
  padding: 20.2rem 0 15rem;
  text-align: center;
}

.section__pricing .bg__image {
  background: var(--bg-section-products);
}

.section__pricing h2 {
  margin-bottom: 0.5rem;
}

@media only screen and (max-width: 112.5em) {
  .section__pricing h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 112.5em) {
  .section__pricing {
    padding: 5rem 0;
  }
}
@media only screen and (max-width: 48em) {
  .section__pricing {
    padding: 3rem 0;
  }
}
.pricing__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 1rem;
  margin-top: 2.25rem;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 112.5em) {
  .pricing__wrapper {
    margin-top: 2rem;
    margin-bottom: 8rem;
    grid-column-gap: 0.5rem;
  }
}
@media only screen and (max-width: 75em) {
  .pricing__wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 1rem;
    grid-column-gap: 1rem;
  }
}
@media only screen and (max-width: 48em) {
  .pricing__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 37.5em) {
  .pricing__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pricing__item {
  position: relative;
  background-color: var(--bg-pricing-item);
  border-radius: 1rem;
  padding: 3.5rem 2.25rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.pricing__item ul {
  text-align: left;
}

.pricing__item ul li {
  margin-bottom: 2rem;
}

.pricing__item ul li .name {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.1rem;
  font-weight: 400;
  color: var(--white);
}

.pricing__item ul li .value {
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  letter-spacing: 0.17rem;
  color: var(--cyan-dark);
}

@media only screen and (max-width: 112.5em) {
  .pricing__item {
    padding: 2rem 1rem 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pricing__item {
    padding: 3.5rem 2.25rem 3rem;
  }
}
.pricing__color-level {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 1rem;
  border-radius: 1rem 1rem 0 0;
  z-index: 1;
}

.pricing__head {
  min-height: 4.9rem;
}

.pricing__head h3 {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.15rem;
  line-height: 2rem;
  margin-bottom: 0.4rem;
}

.pricing__head p {
  font-size: 0.875rem;
  opacity: 0.72;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: 0;
}

.pricing__head a {
  font-size: 1rem;
  color: var(--cyan-dark);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 20%;
  line-height: 1rem;
}

@media only screen and (max-width: 112.5em) {
  .pricing__head h3 {
    font-size: 1rem;
    margin-bottom: 0rem;
  }
  .pricing__head p {
    font-size: 0.725rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pricing__head h3 {
    font-size: 1.5rem;
    margin-bottom: 0rem;
  }
  .pricing__head p {
    font-size: 0.875rem;
  }
}
.divider {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 1.75rem 0;
  background-color: var(--bg-divider);
}

.product__inner .product__item:nth-child(even),
.product__inner .product__item-wrapper .product__item:nth-child(even) {
  flex-direction: row-reverse;
}

.product__inner .product__item-wrapper:nth-child(even) .product__item {
  flex-direction: row-reverse;
}

.product__inner .product__item-wrapper:nth-child(even) .product__item {
  flex-direction: row;
}

.product__inner .product__item:nth-child(even) .product__text .product__text-inner,
.product__inner .product__item-wrapper:nth-child(even) .product__item .product__text .product__text-inner {
  float: left;
}

.product__inner .product__item:nth-child(odd) .product__img img,
.product__inner .product__item-wrapper:nth-child(odd) .product__item .product__img img {
  object-position: right;
  height: 100%;
}

.product__inner .product__item:nth-child(even) .product__img img,
.product__inner .product__item-wrapper:nth-child(even) .product__item .product__img img {
  left: 0;
  object-position: left;
  height: 100%;
}

.product__inner .product__item-wrapper:nth-child(even) .product__item .product__img img {
  left: initial;
}

@media only screen and (max-width: 48em) {
  .product__inner .product__item:nth-child(even) .product__img img,
  .product__inner .product__item-wrapper:nth-child(even) .product__item .product__img img {
    left: 0;
  }
  .product__inner .product__item-wrapper:nth-child(even) .product__item .product__img img {
    left: initial;
  }
}
@media only screen and (max-width: 37.5em) {
  .product__inner .product__item:nth-child(even),
  .product__inner .product__item-wrapper .product__item:nth-child(even) {
    flex-direction: row;
  }
}
@media only screen and (max-width: 56.25em) {
  .product__inner .product__item:first-child {
    padding-top: 8rem;
  }
}
.product__inner.right .product__item:nth-child(even) {
  flex-direction: row;
}

.product__inner.right .product__item:nth-child(even) .product__text .product__text-inner {
  float: right;
}

.product__inner.right .product__item:nth-child(even) .product__img img {
  right: 0;
  left: auto;
}

@media only screen and (max-width: 48em) {
  .product__inner.right .product__item:nth-child(odd) .product__img img {
    right: 0;
  }
}
@media only screen and (max-width: 112.5em) {
  .product__inner.right .product__item:first-child {
    padding-top: 0;
  }
}
.product__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9.75rem;
  padding-top: 14rem;
}

@media only screen and (min-width: 156.25em) {
  .product__item {
    padding-top: 20rem;
    gap: 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .product__item {
    flex-wrap: wrap;
    padding-top: 4rem;
  }
}
.product__text {
  width: 50%;
}

.product__text .product__text-inner {
  max-width: 39rem;
  text-align: left;
  float: right;
}

.product__text .product__text-inner h2 {
  letter-spacing: 0.05rem;
  margin-bottom: 2.5rem;
  font-size: 4rem;
  color: var(--white);
}

@media only screen and (max-width: 112.5em) {
  .product__text .product__text-inner h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.product__text .product__text-inner h3 {
  font-size: 3.6rem;
  letter-spacing: 0.05rem;
  margin-bottom: 2.5rem;
  color: var(--white);
}

@media only screen and (max-width: 112.5em) {
  .product__text .product__text-inner h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.product__text .product__text-inner p {
  letter-spacing: 0.1rem;
  line-height: 2rem;
  margin-bottom: 2.5rem;
}

@media only screen and (max-width: 112.5em) {
  .product__text .product__text-inner p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}
.product__text .product__text-inner a {
  margin-bottom: 5rem;
}

@media only screen and (max-width: 48em) {
  .product__text {
    width: 70%;
  }
}
@media only screen and (max-width: 37.5em) {
  .product__text {
    width: 100%;
  }
}
.product__img {
  width: 50%;
  height: 43rem;
  position: relative;
}

@media only screen and (max-width: 48em) {
  .product__img {
    width: 30%;
    height: 30rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .product__img {
    width: 100%;
    height: auto;
  }
}
.product__img img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 78.25rem;
  object-fit: contain;
}

@media only screen and (min-width: 156.25em) {
  .product__img img {
    width: 85rem;
  }
}
@media only screen and (max-width: 48em) {
  .product__img img {
    right: 0;
    width: 60rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .product__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    top: 0;
    transform: translateY(0);
  }
}
.section__bottom-info {
  padding: 8.2rem 0 7.5rem;
  position: relative;
}

@media only screen and (max-width: 48em) {
  .section__bottom-info {
    padding: 5rem 0;
  }
}
.info-text__inner {
  max-width: 40rem;
}

.info-text__inner h3 {
  color: var(--white);
  letter-spacing: 0.05rem;
  margin-bottom: 0.8rem;
}

@media only screen and (max-width: 48em) {
  .info-text__inner h3 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .info-text__inner h3 {
    font-size: 1.5rem;
  }
}
.info-text__inner p {
  letter-spacing: 0.11rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 3.7rem;
}

@media only screen and (max-width: 48em) {
  .info-text__inner p {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .info-text__inner p {
    font-size: 0.875rem;
  }
}
.section__tender {
  position: relative;
  padding: 11.25rem 0 12.938rem;
  z-index: 2;
}

.section__tender .bg__image {
  background: var(--bg-section-tender);
}

@media only screen and (max-width: 37.5em) {
  .section__tender {
    padding: 10rem 0 7.75rem;
  }
}
.tender__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.938rem;
}

@media only screen and (max-width: 48em) {
  .tender__wrap {
    flex-direction: column-reverse;
  }
}
.section__intro.full-visible-image .content-block h1 {
  font-size: 4rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.section__intro.full-visible-image .content-block span {
  display: block;
  opacity: 0.8;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.14;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.section__intro.full-visible-image .tender__block-left {
  width: 55%;
  margin-bottom: 8.375rem;
}
.section__intro.full-visible-image .tender__img {
  width: 45%;
  height: 42.5rem;
}
.section__intro.full-visible-image .tender__img img {
  width: 54.5rem;
}
.section__intro.full-visible-image .btn-primary,
.section__intro.full-visible-image .btn-secondary,
.section__intro.full-visible-image .btn-transparent {
  letter-spacing: 0.188rem;
}

@media only screen and (max-width: 112.5em) {
  .section__intro.full-visible-image .content-block h1 {
    font-size: 36px;
  }
  .section__intro.full-visible-image .tender__img {
    width: 45%;
    height: 34rem;
  }
  .section__intro.full-visible-image .tender__img img {
    width: 43.6rem;
  }
  .section__intro.full-visible-image .tender__block-left {
    margin-bottom: 6.7rem;
  }
}
@media only screen and (max-width: 48em) {
  .section__intro.full-visible-image .tender__block-left {
    width: 100%;
    margin-bottom: 2rem;
  }
  .section__intro.full-visible-image .tender__img {
    width: 100%;
    height: auto;
  }
  .section__intro.full-visible-image .tender__img img {
    width: 100%;
  }
}
.tender__block-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 54px;
  max-width: 700px;
  width: 100%;
}
@media (width <= 1300px) {
  .tender__block-left {
    padding-top: 0;
  }
}

.tender__block-left .tender__text span {
  display: block;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  letter-spacing: 0;
}

.tender__block-left .tender__text h2,
.tender__block-left .tender__text h4 {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  letter-spacing: 1.8px;
}

.tender__block-left .tender__text h1 {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}
.tender__block-left .tender__text h1 strong {
  color: var(--Website-cyan, #14fff2);
  font-weight: 800;
}

.tender__block-left .tender__text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  line-height: 2.25rem;
  letter-spacing: 1.4px;
}

.tender__text_below {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
}

.tender__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media only screen and (max-width: 112.5em) {
  .tender__text {
    gap: 1rem;
  }
  .tender__block-left {
    width: 50%;
    gap: 2rem;
  }
  .tender__block-left .tender__text span {
    font-size: 1rem;
    line-height: 1.5;
  }
  .tender__block-left .tender__text h2,
  .tender__block-left .tender__text h4 {
    font-size: 1rem;
    line-height: 1.5;
  }
  .tender__block-left .tender__text h1 {
    font-size: 36px;
  }
  .tender__block-left .tender__text p {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 56.25em) {
  .tender__block-left {
    gap: 1rem;
  }
  .tender__block-left .tender__text span {
    font-size: 0.75rem;
  }
  .tender__block-left .tender__text h2,
  .tender__block-left .tender__text h4 {
    font-size: 0.75rem;
  }
  .tender__block-left .tender__text h1 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 48em) {
  .tender__block-left {
    width: 100%;
  }
}
.tender__buttons {
  display: flex;
  gap: 1.25rem;
}
@media (max-width: 480px) {
  .tender__buttons {
    flex-direction: column;
  }
}

.tender__img {
  width: 50%;
  height: 49.5rem;
  position: relative;
}

.tender__img img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 78.25rem;
  object-fit: contain;
}

@media only screen and (max-width: 48em) {
  .tender__img {
    width: 100%;
    height: auto;
  }
  .tender__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    top: 0;
    transform: translateY(0);
  }
}
/* .tender__img img {
  max-width: 47.69rem;
  height: auto;
}
@media only screen and (max-width: 112.5em) {
  .tender__img {
    width: 50%;
  }
  .tender__img img {
    width: 100%;
    object-fit: contain;
  }
}
@media only screen and (max-width: 48em) {
  .tender__img {
    width: 100%;
  }
} */
.section__conditions {
  position: relative;
  padding: 11.25rem 0 17rem;
  z-index: 2;
}

.section__conditions h2 {
  font-size: 2.5rem;
  line-height: 3.5rem;
  text-align: center;
  max-width: 75.188rem;
  margin: 0 auto 3rem;
}

.section__conditions h5 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.section__conditions .tabs__conditions {
  margin-bottom: 11.25rem;
}

.section__conditions .tabs__conditions .tabs__nav {
  gap: 5rem;
  margin-bottom: 5rem;
}

.section__conditions .tabs__conditions .tab__content {
  justify-content: space-between;
  align-items: center;
  gap: 4.06rem;
}

.section__conditions .tabs__conditions .tab__content-text {
  font-size: 1.5rem;
  line-height: 2.75rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 5rem;
  max-width: 44.06rem;
}

@media only screen and (max-width: 112.5em) {
  .section__conditions {
    padding: 7rem 0 12rem;
  }
  .section__conditions h5 {
    font-size: 1.875rem;
  }
  .section__conditions .tabs__conditions {
    margin-bottom: 6rem;
  }
  .section__conditions .tabs__conditions .tab__content-text {
    width: 100%;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .section__conditions h2 {
    font-size: 1.875rem;
    line-height: 1.5;
  }
  .section__conditions h5 {
    font-size: 1.2rem;
  }
  .section__conditions .tabs__conditions .tab__content {
    gap: 1rem;
  }
}
@media only screen and (max-width: 48em) {
  .section__conditions {
    padding: 4rem 0 12rem;
  }
  .section__conditions h2 {
    font-size: 1.5rem;
  }
  .section__conditions h5 {
    font-size: 1rem;
  }
  .section__conditions .tabs__conditions .tab__content {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .section__conditions .tabs__conditions .tab__content-text {
    line-height: 1.5;
  }
}
.tab__content-image {
  max-width: 43.75rem;
  max-height: 31.25rem;
  position: relative;
}

.tab__content-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tab__content-image .reflect {
  position: absolute;
  width: 100%;
  height: 6rem;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  mask-image: linear-gradient(transparent 80%, white 150%);
  -webkit-mask-image: linear-gradient(transparent 0%, white 250%);
}

.tab__content-image .reflect img {
  width: 100%;
  object-position: bottom;
  object-fit: cover;
}

@media only screen and (max-width: 112.5em) {
  .tab__content-image {
    width: 100%;
  }
}
.section__benefits {
  padding: 15.375rem 0 26.56rem;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 112.5em) {
  .section__benefits {
    padding: 13.375rem 0 13.56rem;
  }
}
@media only screen and (max-width: 48em) {
  .section__benefits {
    padding: 15.375rem 0 10.56rem;
  }
}
.quote {
  width: 100%;
  border-radius: 2rem 2rem 0 2rem;
  padding: 4rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: rgb(138, 98, 221);
  background: linear-gradient(180deg, rgb(138, 98, 221) 0%, rgb(102, 147, 230) 100%, rgb(102, 147, 230) 100%);
}

.quote.comas::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 3.6rem;
  width: 14.5rem;
  height: 12.125rem;
  background-image: url(../img/comas.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.quote p {
  color: var(--white);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.7;
  max-width: 39rem;
}

.quote.top {
  margin: -27rem 0 8.75rem;
}

@media only screen and (max-width: 112.5em) {
  .quote {
    padding: 2rem 3rem;
  }
  .quote.top {
    margin: -23rem 0 8.75rem;
  }
}
@media only screen and (max-width: 48em) {
  .quote {
    padding: 1rem 2rem;
    border-radius: 1rem 1rem 0 1rem;
    flex-direction: column;
    gap: 1.5rem;
  }
  .quote p {
    font-size: 1.5rem;
  }
  .quote.top {
    margin: -23rem 0 3rem;
  }
}
.quote__text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 54.25rem;
}

.quote__text p {
  font-size: 2rem;
  font-style: italic;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

@media only screen and (max-width: 112.5em) {
  .quote__text {
    gap: 2rem;
  }
  .quote__text p {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 48em) {
  .quote__text {
    gap: 1rem;
  }
  .quote__text p {
    font-size: 1.25rem;
  }
}
.quote__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quote__author .avatar {
  width: 3.75rem;
  height: 3.75rem;
}

.quote__author .avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quote__author .author-info .name {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.05rem;
}

.quote__author .author-info .info {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white);
}

.section__quote.quote__column {
  padding: 8.25rem 0;
}
.section__quote.quote__column .quote__column-container {
  display: flex;
  gap: 24px;
}
.section__quote.quote__column .quote-item {
  padding: 3rem;
  width: 31rem;
  background-image: url(../img/bgFaq.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.section__quote.quote__column .quote-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 13rem;
  height: 9.25rem;
  background-image: url(../img/bg-paper.png);
  background-repeat: no-repeat;
  z-index: 1;
}
.section__quote.quote__column .quote-img__bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(2.125rem, 2.125rem);
  z-index: 2;
}
.section__quote.quote__column .quote-description.quote-description__long-image {
  flex-direction: row;
}
.section__quote.quote__column .quote-description__long-image .quote-img__bottom {
  transform: translate(2rem, 2rem);
}
.section__quote.quote__column .quote-description.quote-description__long-image .quote-img {
  max-width: 7rem;
}
.section__quote.quote__column .quote-content .quote-title p {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.12rem;
}
.section__quote.quote__column .quote-content .quote-description .author p {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.125rem;
}
.section__quote.quote__column .quote-content .quote-description .position p {
  font-size: 0.813rem;
  font-weight: 400;
  line-height: 1.54;
  letter-spacing: 0.081rem;
  max-width: 21.75rem;
}
.section__quote.quote__column .quote-description__text {
  min-height: 6rem;
}
.section__quote.quote__column .quote-content::after {
  width: 8.25rem;
  height: 7rem;
}

@media only screen and (max-width: 112.5em) {
  .section__quote.quote__column {
    padding: 6.6rem 0;
  }
  .section__quote.quote__column .quote__column-container {
    gap: 19.2px;
    flex-direction: column;
  }
  .section__quote.quote__column .quote-item {
    padding: 2.4rem;
    width: 100%;
  }
  .section__quote.quote__column .quote-img__bottom {
    transform: translate(0.75rem, 1rem);
  }
  .section__quote.quote__column .quote-description__long-image .quote-img__bottom {
    transform: translate(1.75rem, 1.25rem);
  }
}
.btn-circle {
  width: 16.25rem;
  min-width: 16.25rem;
  height: 16.25rem;
  border: 0.25rem solid var(--cyan);
  border-radius: 50%;
  font-size: 1.75rem;
  text-align: center;
  letter-spacing: 0.15rem;
  line-height: 1.7;
  font-weight: 700;
  transition: 0.2s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--cyan);
  padding: 3rem;
}

.btn-circle:after {
  content: "";
  position: relative;
  min-width: 1.2rem;
  min-height: 1.2rem;
  border-top: 0.25rem solid var(--cyan);
  border-right: 0.25rem solid var(--cyan);
  transform: rotate(45deg);
  top: -0.875rem;
  left: -1rem;
  transition: 0.2s;
}

.btn-circle:hover {
  background-color: var(--cyan);
  color: var(--white);
}

.btn-circle:hover::after {
  border-top: 0.25rem solid var(--white);
  border-right: 0.25rem solid var(--white);
}

@media only screen and (max-width: 112.5em) {
  .btn-circle {
    min-width: 10rem;
    width: 10rem;
    height: 10rem;
    font-size: 1.3rem;
    padding: 1rem 2rem;
    line-height: 1.5;
    align-items: center;
  }
  .btn-circle::after {
    min-width: 0.75rem;
    min-height: 0.75rem;
    top: 0;
    left: 0;
  }
}
.benefits__list-wrap {
  margin-bottom: 12.5rem;
}

.benefits__list-wrap .benefits__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2.5rem;
  margin-bottom: 5rem;
}

@media only screen and (max-width: 112.5em) {
  .benefits__list-wrap {
    margin-bottom: 6rem;
  }
  .benefits__list-wrap .benefits__list {
    grid-gap: 1rem;
  }
}
@media only screen and (max-width: 48em) {
  .benefits__list-wrap .benefits__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.benefits__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  padding: 5rem 3.25rem;
  border-radius: 2.25rem;
  background: var(--bg-benefits-item);
}

.benefits__item .benefits__item-title {
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.75rem;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.benefits__item .benefits__item-number {
  font-weight: 700;
  font-size: 5.625rem;
  line-height: 6.25rem;
  text-align: center;
}

@media only screen and (max-width: 112.5em) {
  .benefits__item {
    gap: 1rem;
    padding: 3rem 1.5rem;
    border-radius: 1.5rem;
  }
  .benefits__item .benefits__item-number {
    font-size: 3rem;
  }
}
.benefits__buttons {
  justify-content: center;
}

.professionals {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.professionals h3 {
  font-size: 3rem;
  line-height: 4rem;
  text-align: center;
  color: var(--white);
  max-width: 70rem;
  margin: 0 auto;
}

.professionals .professionals__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  grid-gap: 6.25rem;
}

.professionals .professionals__list .professionals__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.25rem;
}

.professionals .professionals__list .professionals__item .professionals__item-image {
  width: 18.75rem;
  height: 18.75rem;
  padding: 5.125rem;
  border-radius: 50%;
  position: relative;
}

.professionals .professionals__list .professionals__item .professionals__item-image img {
  max-width: 8.5rem;
}

.professionals .professionals__list .professionals__item .professionals__item-image .ellipse-img svg {
  width: 16.25rem;
  height: 16.25rem;
}

.professionals .professionals__list h4 {
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.75rem;
  text-align: center;
  letter-spacing: 0;
}

.professionals .professionals__list p {
  font-size: 1.5rem;
  line-height: 2.25rem;
  text-align: center;
  letter-spacing: 0;
  opacity: 0.8;
}

@media only screen and (max-width: 112.5em) {
  .professionals h3 {
    font-size: 2rem;
  }
  .professionals .professionals__list {
    grid-gap: 1.5rem;
  }
  .professionals .professionals__list h4 {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .professionals .professionals__list p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 75em) {
  .professionals h3 {
    font-size: 1.5rem;
  }
  .professionals .professionals__list {
    grid-gap: 1rem;
  }
  .professionals .professionals__list .professionals__item .professionals__item-image {
    width: 12.75rem;
    height: 12.75rem;
    padding: 2.125rem;
  }
  .professionals .professionals__list .professionals__item .professionals__item-image img {
    max-width: 4.5rem;
  }
  .professionals .professionals__list h4 {
    font-size: 1.25rem;
  }
  .professionals .professionals__list p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 48em) {
  .professionals .professionals__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.section__questions {
  position: relative;
  padding: 6.125rem 0 11.25rem;
  background: var(--bg-section-products);
  z-index: 1;
}

.section__questions::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% - 0.25rem);
  width: 100%;
  transform: translateX(-50%);
  height: 100%;
  background-image: url(../img/top_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}

@media only screen and (max-width: 112.5em) {
  .section__questions {
    padding: 4rem 0 8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .section__questions {
    padding: 3rem 0 6rem;
  }
}
.section__questions h2 {
  font-size: 3.75rem;
  line-height: 4rem;
  text-align: center;
  margin-bottom: 3.75rem;
}

@media only screen and (max-width: 112.5em) {
  .section__questions h2 {
    font-size: 3rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 56.25em) {
  .section__questions h2 {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.section__questions .accordion__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  max-width: 74.06rem;
  margin: 0 auto 12.5rem;
}

.section__questions .accordion__wrap .accordion__contents {
  width: 100%;
}

.section__questions .accordion__wrap .accordion__contents .accordion-item-active {
  background-color: var(--bg-question-accordion-item);
  border-color: var(--question-border-item);
}

.section__questions .accordion__wrap .accordion__contents .accordion-btn {
  background-color: var(--bg-question-accordion-btn);
}

.section__questions .accordion__wrap .accordion__contents .accordion-btn-active {
  background-color: var(--bg-question-accordion-item);
}

.section__questions .accordion__wrap p {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 2rem;
  letter-spacing: 4px;
  color: #ffffff;
}

.section__questions .accordion__wrap p a {
  color: var(--cyan);
}

.section__questions .block__top {
  max-width: 74.125rem;
  margin: 0 auto;
  gap: 3.125rem;
}

.section__questions .block__top .block__top-content {
  max-width: 38rem;
}

.section__questions .block__top .block__top-title {
  font-weight: 600;
  font-size: 2rem;
  line-height: 3rem;
}

.beyond-slider-wrap {
  position: relative;
  margin-top: 12.5rem;
}

@media only screen and (max-width: 56.25em) {
  .beyond-slider-wrap {
    margin-top: 6rem;
  }
}
.beyond-slider-wrap .beyond-slider {
  margin-bottom: 11.25rem;
  max-width: 75.313rem;
}

.beyond-slider-wrap .beyond-slider .beyond-slide {
  display: flex;
  flex-direction: column;
}

.beyond-slider-wrap .beyond-slider .beyond-slide .beyond-slide-img {
  margin-bottom: 2.25rem;
  display: flex;
  justify-content: center;
}

.beyond-slider-wrap .beyond-slider .beyond-slide .beyond-slide-img img {
  max-width: 21.25rem;
  border-radius: 50%;
}

@media only screen and (max-width: 112.5em) {
  .beyond-slider-wrap .beyond-slider .beyond-slide .beyond-slide-img {
    margin-bottom: 2rem;
  }
  .beyond-slider-wrap .beyond-slider .beyond-slide .beyond-slide-img img {
    max-width: 15rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .beyond-slider-wrap .beyond-slider .beyond-slide .beyond-slide-img {
    margin-bottom: 1.5rem;
  }
  .beyond-slider-wrap .beyond-slider .beyond-slide .beyond-slide-img img {
    max-width: 12rem;
  }
}
.beyond-slider-wrap .beyond-slider .beyond-slide h5 {
  font-weight: 400;
  letter-spacing: 4px;
  opacity: 0.8;
  margin-bottom: 1rem;
  text-align: left;
}

.beyond-slider-wrap .beyond-slider .beyond-slide p {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 2.25rem;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
}

.beyond-slider-wrap .beyond-slider .beyond-slide a {
  font-weight: 600;
  font-size: 0.938rem;
  line-height: 1.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  position: relative;
  text-align: left;
}

.beyond-slider-wrap .beyond-slider .beyond-slide a::after {
  content: "";
  width: 2rem;
  height: 1.5rem;
  top: 50%;
  right: -2.5rem;
  transform: translateY(-50%);
  position: absolute;
  display: block;
  background-image: url(../img/arrow-right-long.png);
  background-repeat: no-repeat;
  transition: 0.3s;
}

.beyond-slider-wrap .beyond-slider .beyond-slide a:hover::after {
  right: -3rem;
}

.swiper-button-prev,
.swiper-button-next {
  width: 3rem;
  height: 7.75rem;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  top: 37%;
}

@media only screen and (max-width: 112.5em) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 1rem;
  }
}
.swiper-button-prev {
  left: 35px;
  background-image: url(../img/btn-prev.png);
}

.swiper-button-prev::after {
  display: none;
}

@media only screen and (max-width: 112.5em) {
  .swiper-button-prev {
    left: 0;
  }
}
.swiper-button-next {
  right: 45px;
  background-image: url(../img/btn-next.png);
}

.swiper-button-next::after {
  display: none;
}

@media only screen and (max-width: 112.5em) {
  .swiper-button-next {
    right: -0.5rem;
  }
}
.info-text {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.25rem;
  line-height: 1.5;
}

.info-text a {
  color: var(--cyan);
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  position: relative;
  transition: 0.2s;
}

.info-text a::before {
  content: "";
  position: absolute;
  opacity: 0;
  bottom: -0.25rem;
  left: 0;
  transition: 0.3s;
  width: 0;
  height: 0.125rem;
  background: var(--cyan);
}

.info-text a:hover {
  color: var(--white);
}

.info-text a:hover::before {
  opacity: 1;
  width: 100%;
}

.contact-us__section {
  padding: 11.2rem 0 6rem;
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 37rem);
}

@media only screen and (max-width: 56.25em) {
  .contact-us__section {
    padding: 7rem 0 4rem;
  }
}
@media only screen and (max-width: 48em) {
  .contact-us__section {
    padding: 5rem 0 4rem;
  }
}
.contact-us__inner {
  display: flex;
  gap: 12rem;
}

@media only screen and (max-width: 112.5em) {
  .contact-us__inner {
    gap: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .contact-us__inner {
    gap: 2rem;
  }
}
@media only screen and (max-width: 48em) {
  .contact-us__inner {
    flex-direction: column;
  }
}
.contact-us__text {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 2rem 0;
}

.contact-us__text h1 {
  text-align: left;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 2.6rem;
  line-height: 1.5;
}

.contact-us__text p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.contact-us__text ul {
  padding-left: 0;
  margin-bottom: 0;
}

.contact-us__text ul li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}

.contact-us__text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--cyan);
}

@media only screen and (max-width: 112.5em) {
  .contact-us__text h1 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .contact-us__text h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.contact-us__form {
  background: var(--bg-section-products);
  border-radius: 0.5rem;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 36.375rem;
  min-width: 36.375rem;
  padding-top: 24px;
  padding-bottom: 48px;
}

.contact-us__form h4 {
  text-align: center;
  font-weight: 800;
  letter-spacing: 2.4px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 112.5em) {
  .contact-us__form {
    padding: 2.5rem;
    min-width: auto;
    width: 100%;
  }
}
@media only screen and (max-width: 56.25em) {
  .contact-us__form {
    padding: 2rem 1rem;
  }
}
.recapcha {
  width: 100%;
}

.recapcha img {
  width: 100%;
  object-fit: contain;
}

.form__top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

input[type=text],
input[type=email],
input[type=number],
textarea {
  width: 100%;
  border: 1px solid var(--border-input);
  border-radius: 0.25rem;
  padding: 1.4rem 1.25rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 400;
  background-color: transparent;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: var(--gray);
}

textarea {
  resize: none;
  height: 11.25rem;
  outline: none;
}

.textarea {
  position: relative;
}

.textarea:after {
  position: absolute;
  content: "";
  top: 1.5rem;
  right: 1.5rem;
  width: 0.4rem;
  height: 0.4rem;
  transition: 0.2s;
  transform: rotate(45deg);
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=submit] {
  width: 100%;
}

.checkbox {
  display: flex;
  position: relative;
  padding-left: 2.5rem;
}

.checkbox p {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.6;
}

.checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.checkbox .checkbox__indicator {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--white);
  transition: 0.2s;
  border-radius: 0.25rem;
  opacity: 0.2;
}

.checkbox .checkbox__indicator:hover {
  opacity: 1;
}

.checkbox .checkbox__indicator::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 0.4rem;
  height: 0.6rem;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: 0.2s;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  opacity: 0;
}

.checkbox input:checked ~ .checkbox__indicator {
  opacity: 1;
}

.checkbox input:checked ~ .checkbox__indicator::before {
  opacity: 1;
}

.section__about {
  position: relative;
  padding: 12.5rem 0 0;
}

.section__about .bg__image {
  background: var(--bg-sections-intro-statistic-faq);
}

.section__about .bg__image svg {
  transform: translateY(-91%);
}

.section__about .ticker {
  position: absolute;
  top: 0;
  left: 0;
}

.about__inner {
  flex-direction: row-reverse;
}

.about__inner .about__text .about__text-inner {
  float: left;
}

.about__inner.right .about__item:nth-child(odd) {
  flex-direction: row;
}

.video__wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  max-width: 50.5rem;
  width: 100%;
  max-height: 35rem;
}

.video__wrap video {
  width: 100%;
  height: 100%;
}

.video__wrap .video__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video__wrap .video__play-icon img {
  width: 6.25rem;
  height: 6.25rem;
}

.about__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6.25rem;
}

@media only screen and (max-width: 112.5em) {
  .about__item {
    gap: 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .about__item {
    flex-wrap: wrap;
    padding-top: 4rem;
  }
}
.about__text {
  width: 40%;
}

@media only screen and (max-width: 112.5em) {
  .about__text {
    width: 60%;
  }
}
@media only screen and (max-width: 37.5em) {
  .about__text {
    width: 100%;
  }
}
.about__text .about__text-inner h2 {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.14;
  margin-bottom: 2.5rem;
  color: var(--white);
}

@media only screen and (max-width: 112.5em) {
  .about__text .about__text-inner h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.about__text .about__text-inner p {
  font-weight: 400;
  font-size: 0.938rem;
  line-height: 1.87;
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
}

.about__text .about__link {
  margin-top: 26.75rem;
  margin-bottom: 16.5rem;
}

@media only screen and (max-width: 37.5em) {
  .about__text .about__link {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.about__text .about__link h3 {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.14;
  color: var(--white);
  margin-bottom: 5.625rem;
  max-width: 35rem;
}

@media only screen and (max-width: 37.5em) {
  .about__text .about__link h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.about__text .about__link ul {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media only screen and (max-width: 37.5em) {
  .about__text .about__link ul {
    gap: 1.5rem;
  }
}
.about__text .about__link a {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.17;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
}

@media only screen and (max-width: 37.5em) {
  .about__text .about__link a {
    font-size: 1rem;
  }
}
.about__text .about__link a::after {
  content: "";
  width: 2rem;
  height: 1.5rem;
  top: 50%;
  right: -3.125rem;
  transform: translateY(-50%);
  position: absolute;
  display: block;
  background-image: url(../img/arrow-right-long.png);
  background-repeat: no-repeat;
  transition: 0.3s;
}

.about__img {
  position: absolute;
  top: 0;
  transform: translate(31%, -6%);
}

@media only screen and (max-width: 37.5em) {
  .about__img {
    top: 0;
    left: 0;
  }
}
.about__benefits-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1.25rem;
}

@media only screen and (max-width: 56.25em) {
  .about__benefits-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about__benefits-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 3.75rem 1.3rem;
  max-width: 17.625rem;
  border-radius: 1.5rem;
  background: var(--bg-benefits-about);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  margin-bottom: -3.75rem;
}

@media only screen and (max-width: 56.25em) {
  .about__benefits-item {
    max-width: 43.75rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .about__benefits-item:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.about__benefits-item h4 {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.25;
  color: var(--cyan);
}

.about__benefits-item p {
  font-weight: 700;
  font-size: 0.938rem;
  line-height: 1.87;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  text-align: center;
}

@media only screen and (max-width: 112.5em) {
  .about__benefits-item {
    padding: 2rem 0.5rem;
  }
  .about__benefits-item h4 {
    font-size: 2.7rem;
  }
  .about__benefits-item p {
    font-size: 0.625rem;
  }
}
.section__solutions {
  position: relative;
  padding: 16.875rem 0 12.5rem;
}

.section__solutions .bg__image {
  background: var(--bg-section-products);
}

.section__solutions h2 {
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

@media only screen and (max-width: 37.5em) {
  .section__solutions h2 {
    font-size: 3rem;
  }
}
.section__solutions p {
  max-width: 74.5rem;
  text-align: center;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: 0 auto 8.75rem;
}

@media only screen and (max-width: 37.5em) {
  .section__solutions p {
    font-size: 0.8rem;
    margin-bottom: 4rem;
  }
}
.section__solutions .quote-slider {
  overflow: hidden;
}

.section__solutions .quote-slider__wrapper {
  box-sizing: border-box;
}

.section__solutions .swiper-pagination-bullet-active {
  background-color: var(--cyan);
  width: 3.75rem;
  height: 0.5rem;
  border-radius: 2.5rem;
}

.section__solutions .swiper-pagination-bullet {
  width: 3.75rem;
  height: 0.5rem;
  border-radius: 2.5rem;
  margin: 8.938rem 0.625rem !important;
}

.section__solutions .quote {
  padding-bottom: 3.125rem;
  padding-right: 6.25rem;
}

@media only screen and (max-width: 37.5em) {
  .section__solutions .quote {
    padding: 1.5rem;
  }
  .section__solutions .quote .author-info .name {
    font-size: 1rem;
  }
  .section__solutions .quote .author-info .info {
    font-size: 0.8rem;
  }
}
.section__solutions .quote p {
  font-style: italic;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: start;
  margin: 0 0 3.125rem 0;
}

@media only screen and (max-width: 37.5em) {
  .section__solutions .quote p {
    font-size: 1.5rem;
  }
}
.section__solutions .quote .avatar {
  max-width: 5rem;
  width: 100%;
}

@media only screen and (max-width: 37.5em) {
  .section__solutions .quote .avatar {
    max-width: 3rem;
  }
}
.section__solutions .quote .btn-circle {
  line-height: 1.43;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3rem 2rem 4rem 3rem;
}

@media only screen and (max-width: 112.5em) {
  .section__solutions .quote .btn-circle {
    padding: 3rem;
  }
}
.section__solutions .quote.comas::before {
  left: 52%;
}

.units__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 2rem;
}

@media only screen and (max-width: 56.25em) {
  .units__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 37.5em) {
  .units__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.utils__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}

@media only screen and (max-width: 56.25em) {
  .utils__item {
    margin-bottom: 5.625rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .utils__item:not(:last-child) {
    margin-bottom: 2.8rem;
  }
}
.utils__item img {
  width: 4rem;
  margin-bottom: 0.5rem;
}

.utils__item h6 {
  position: relative;
  font-weight: 700;
  font-size: 2rem;
  line-height: 0.75;
  color: var(--cyan);
}

@media only screen and (max-width: 112.5em) {
  .utils__item h6 {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .utils__item h6 {
    font-size: 1.8rem;
  }
}
.utils__item p {
  font-weight: 700;
  font-size: 0.938rem;
  line-height: 1.87;
  letter-spacing: 0.2;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 13rem;
}

@media only screen and (max-width: 112.5em) {
  .utils__item p {
    font-size: 0.8rem;
  }
}
.team__slider-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 22.063rem;
  margin-bottom: 12.5rem;
}

@media only screen and (max-width: 37.5em) {
  .team__slider-wrap {
    margin-top: 8rem;
    margin-bottom: 5rem;
  }
}
.team__slider-wrap h3 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.33;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  margin-bottom: 5rem;
}

@media only screen and (max-width: 37.5em) {
  .team__slider-wrap h3 {
    font-size: 2rem;
  }
}
.team__slider-wrap .beyond-slider-wrap {
  margin: 0;
  width: 100%;
}

.team__slider-wrap .beyond-slider {
  margin-bottom: 2.75rem;
}

.team__slider-wrap .beyond-slide.swiper-slide .beyond-slide-img img {
  max-width: 16.875rem;
}

@media only screen and (max-width: 112.5em) {
  .team__slider-wrap .beyond-slide.swiper-slide .beyond-slide-img img {
    max-width: 15.5rem;
  }
}
.team__slider-wrap .swiper-button-prev,
.team__slider-wrap .swiper-button-next {
  top: 30%;
  z-index: 1;
}

@media only screen and (max-width: 112.5em) {
  .team__slider-wrap .swiper-button-prev,
  .team__slider-wrap .swiper-button-next {
    top: 25%;
  }
}
.team__slider-wrap .swiper-button-prev {
  left: 0;
}

.team__slider-wrap .swiper-button-next {
  right: 0;
}

.container-header {
  width: 100%;
  max-width: 1825px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 10;
  padding: 2.5rem 0;
  transition: 0.25s;
}

@media only screen and (max-width: 56.25em) {
  .header {
    padding: 2rem 0;
  }
}
.header.scroll-active {
  background-color: #043c8e;
  box-shadow: var(--box-shadow-header);
  padding: 1rem 0;
}

.header.scroll-active .ticker {
  margin-top: 1rem;
}

.header.scroll-active .line-slider {
  margin-top: 1rem;
}

@media only screen and (max-width: 65.625em) {
  .header.scroll-active nav {
    height: calc(100vh - 4rem);
  }
}
.header.open-menu {
  background-color: #043c8e;
  box-shadow: var(--box-shadow-header);
}

.header.open-menu nav {
  top: 100%;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14.563rem;
}

@media only screen and (max-width: 112.5em) {
  .header__inner {
    gap: 8rem;
  }
}
@media only screen and (max-width: 75em) {
  .header__inner {
    gap: 2rem;
  }
}
.burger {
  width: 2rem;
  height: 2rem;
  position: relative;
  cursor: pointer;
  display: none;
}

@media only screen and (max-width: 65.625em) {
  .burger {
    display: block;
  }
}
.burger .burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.burger .burger-line:after,
.burger .burger-line:before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: 0.2s;
  transform: translateX(-50%);
}

.burger .burger-line:after {
  top: 0.5rem;
}

.burger.active .burger-line {
  background-color: rgba(255, 255, 255, 0);
}

.burger.active .burger-line::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.burger.active .burger-line::before {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
  left: 50%;
}

.header__inner-wrap {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
}

@media only screen and (max-width: 112.5em) {
  .header__inner-wrap {
    gap: 6rem;
  }
}
@media only screen and (max-width: 75em) {
  .header__inner-wrap {
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
  }
}
.logo {
  max-width: 184px;
  width: 100%;
  height: auto;
}

.logo img {
  width: 100%;
  object-position: left;
  height: auto;
  object-fit: contain;
  max-height: 24px;
}

@media only screen and (max-width: 112.5em) {
  .logo {
    max-width: 220px;
  }
}
@media only screen and (max-width: 75em) {
  .logo {
    max-width: 180px;
  }
}
.nav {
  flex-grow: 1;
}

.nav ul {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.nav ul li {
  font-weight: 800;
  font-size: 0.938rem;
  line-height: 1.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.6;
  transition: 0.25s;
  padding: 0.76rem 0;
}

.nav ul li:hover {
  color: var(--cyan);
  opacity: 1;
}

@media only screen and (max-width: 112.5em) {
  .nav ul li {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 75em) {
  .nav ul li {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 65.625em) {
  .nav {
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    height: calc(100vh - 7rem);
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 4rem 1rem;
    background-color: var(--bg-faq-accordion-item);
    transition: 0.2s;
    overflow-y: auto;
    overflow-x: hidden;
    flex-direction: column;
  }
  .nav .login {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }
  .nav ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .nav ul li {
    width: 13.5rem;
    font-size: 1.5rem;
    opacity: 1;
  }
}
.login {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media only screen and (max-width: 112.5em) {
  .login a {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 65.625em) {
  .login a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 75em) {
  .login {
    gap: 1rem;
  }
}
@media only screen and (max-width: 65.625em) {
  .login {
    gap: 1.5rem;
  }
}
.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown .dropdown-item {
  flex-direction: column;
  gap: 1.5rem;
  transition: 0.2s;
  min-width: 25rem;
  display: none;
  position: absolute;
  z-index: -1;
  top: 100%;
  left: -2rem;
  padding: 0 2.5rem;
  border-radius: 0.5rem;
  background: #01327b;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0px 12px 40px 0px rgba(2, 5, 15, 0.25);
  opacity: 0;
}

.dropdown .dropdown-item.biggest {
  min-width: 31.35rem;
}

.dropdown .dropdown-item .back {
  cursor: pointer;
  position: relative;
  padding-left: 1.5rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--blue-medium);
  letter-spacing: 0.1rem;
  width: 13.5rem;
  margin: 0 auto 3rem;
  display: none;
}

.dropdown .dropdown-item .back:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  border-bottom: 1px solid var(--blue-medium);
  border-left: 1px solid var(--blue-medium);
  transform: translateY(-50%) rotate(45deg);
}

.dropdown:hover .dropdown-item {
  display: flex;
  z-index: 1;
  padding: 2.5rem;
  opacity: 1;
  border-radius: 8px;
}

@media only screen and (max-width: 112.5em) {
  .dropdown .dropdown-item {
    padding: 1rem !important;
    gap: 0.75rem;
    min-width: 17rem;
  }
  .dropdown .dropdown-item.biggest {
    min-width: 22rem;
  }
}
@media only screen and (max-width: 65.625em) {
  .dropdown {
    position: initial;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .dropdown::after {
    content: "";
    position: relative;
    width: 0.75rem;
    height: 0.75rem;
    border-top: 1px solid var(--gray);
    border-right: 1px solid var(--gray);
    transform: rotate(45deg);
  }
  .dropdown .dropdown-item {
    position: absolute;
    top: 0;
    left: 100vw;
    width: 100%;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    overflow-y: auto;
    background: var(--bg-faq-accordion-item) !important;
  }
  .dropdown .dropdown-item.biggest {
    min-width: 100%;
  }
  .dropdown .dropdown-item .back {
    display: block;
  }
  .dropdown.active .dropdown-item {
    left: 0;
    z-index: 3;
    opacity: 1;
    display: flex !important;
  }
}
@media only screen and (max-width: 37.5em) {
  .dropdown .dropdown-item {
    padding: 1.5rem 1rem;
  }
  .dropdown .dropdown-item.biggest {
    padding: 1.5rem 1rem;
  }
}
.dropdown-item__link a {
  color: var(--Grays-White, #fff);
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 175%;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.dropdown-item__link.accent a {
  color: var(--cyan);
  padding-top: 24px;
  display: flex;
  gap: 8px;
}

.dropdown-item__link.accent a::after {
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  display: block;
  background-image: url(../img/arrow-right-long.png);
  background-repeat: no-repeat;
  transition: 0.3s;
}

.dropdown-item__link.accent:hover a::after {
  transform: translateX(0.5rem);
}

.dropdown-item__link.accent::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: rgba(255, 255, 255, 0.16);
}

.dropdown-item__link.accent a {
  color: var(--cyan);
}

.dropdown-item__link:hover a {
  color: var(--cyan);
}

.dropdown-item__link p {
  opacity: 0.8;
  text-transform: initial;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Open Sans", sans-serif;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 186.667%;
  letter-spacing: 0.09375rem;
}

@media only screen and (max-width: 112.5em) {
  .dropdown-item__link a {
    font-size: 0.875rem;
  }
  .dropdown-item__link p {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 65.625em) {
  .dropdown-item__link {
    width: 13.5rem;
    margin: 0 auto;
  }
  .dropdown-item__link a {
    font-size: 1.125rem;
  }
  .dropdown-item__link p {
    font-size: 0.875rem;
  }
}
.footer {
  background-color: var(--bg-footer);
  padding: 3.75rem 0 2.5rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 27.313rem;
  margin-bottom: 6.25rem;
}

@media only screen and (max-width: 112.5em) {
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 1rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 48em) {
  .footer__top {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 2rem;
    margin-bottom: 1.5rem;
  }
}
.footer__nav h4 {
  margin-bottom: 1.5rem;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media only screen and (max-width: 112.5em) {
  .footer__nav ul {
    gap: 0.5rem;
  }
}
.footer__nav ul li a {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: 0.25s;
}

.footer__nav ul li a:hover {
  color: var(--cyan);
}

.footer__nav p {
  margin-bottom: 2rem;
}

.footer__nav .footer__social {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
}

.footer__nav .footer__social li a {
  display: block;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  transition: transform 0.2s;
}

.footer__nav .footer__social li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__nav .footer__social li a:hover {
  transform: scale(1.2);
}

.footer__nav .input__group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__nav .input__group input {
  font-size: 0.875rem;
  color: var(--gray);
  background-color: var(--bg-footer-input);
  border: 1px solid;
  border-color: var(--input-border-footer);
  border-radius: var(--border-radius-xs);
  max-width: 15.75rem;
  padding: 0.875rem 1.5rem;
}

.logo__footer {
  display: flex;
  margin-bottom: 1.75rem;
}

.footer__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 2.5rem;
}

@media only screen and (max-width: 112.5em) {
  .footer__bottom {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.footer__bottom ul {
  display: flex;
  gap: 3rem;
}

@media only screen and (max-width: 48em) {
  .footer__bottom ul {
    flex-wrap: wrap;
  }
}
.footer__bottom ul li a {
  transition: 0.25s;
}

.footer__bottom ul li:hover {
  color: var(--cyan);
}

.footer__bottom ul,
.footer__bottom p {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--white);
  opacity: 0.6;
}

.footer__bottom:before {
  content: "";
  max-width: 96.875rem;
  width: 100%;
  height: 1px;
  background-color: var(--light-gray);
  top: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.1;
}

.btn-primary,
.btn-secondary,
.btn-transparent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  user-select: none;
  font-style: normal;
  font-weight: 600;
  font-size: 0.938rem;
  text-transform: uppercase;
  border: 2px solid;
  padding: 1.125rem 2.375rem;
  transition: 0.25s;
  border-color: var(--cyan);
  cursor: pointer;
  width: fit-content;
  text-align: center;
  line-height: 1.5;
}

.btn-primary.lg,
.btn-secondary.lg,
.btn-transparent.lg {
  font-size: 1rem;
  font-weight: 600;
  padding: 1.375rem 2.25rem;
  letter-spacing: 0.2rem;
}

.btn_xl {
  font-size: 16px;
  font-weight: 700;
}

@media only screen and (max-width: 112.5em) {
  .btn-primary.lg,
  .btn-secondary.lg,
  .btn-transparent.lg {
    font-size: 0.875rem;
    padding: 1rem 1.5rem;
  }
}
@media only screen and (max-width: 112.5em) {
  .btn-primary,
  .btn-secondary,
  .btn-transparent {
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
  }
}
.btn-primary {
  color: var(--cyan);
  background-color: transparent;
  border-radius: var(--border-radius-s);
}

.btn-primary:hover {
  background-color: var(--cyan);
  color: var(--blue-dark);
}

.btn-secondary {
  color: var(--blue-dark);
  background-color: var(--cyan);
  border-radius: var(--border-radius-xs);
  letter-spacing: 3.2px;
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--cyan);
}

.btn-transparent {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  color: var(--cyan);
  padding: 0;
  position: relative;
  transition: 0.2s;
}

.btn-transparent::before {
  content: "";
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 0;
  transition: 0.3s;
  width: 0;
  height: 0.125rem;
  background: var(--cyan);
}

.btn-transparent:hover {
  color: var(--white);
}

.btn-transparent:hover::before {
  opacity: 1;
  width: 100%;
}

.btn-transparent-border {
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: var(--border-radius-xs);
  background-color: transparent;
}

.btn-transparent-border:hover {
  background-color: var(--cyan);
  color: var(--blue-dark);
  border-color: var(--cyan);
}

.btn-transparent-border-cyan {
  border: 1px solid var(--cyan);
  border-radius: 0.25rem;
}

.btn-transparent-border.btn-transparent-border-cyan {
  color: var(--cyan);
}

.btn-transparent-border.btn-transparent-border-cyan:hover {
  color: var(--blue-dark);
}

.btn-primary.btn-with-arrow,
.btn-secondary.btn-with-arrow,
.btn-transparent.btn-with-arrow {
  display: flex;
  gap: 0.625rem;
}
.btn-primary.btn-with-arrow::after,
.btn-secondary.btn-with-arrow::after,
.btn-transparent.btn-with-arrow::after {
  content: "";
  min-width: 1.5rem;
  min-height: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M26.668 16L27.3751 15.2929L28.0822 16L27.3751 16.7071L26.668 16ZM6.66797 17C6.11568 17 5.66797 16.5523 5.66797 16C5.66797 15.4477 6.11568 15 6.66797 15V17ZM19.3751 7.29289L27.3751 15.2929L25.9609 16.7071L17.9609 8.70711L19.3751 7.29289ZM27.3751 16.7071L19.3751 24.7071L17.9609 23.2929L25.9609 15.2929L27.3751 16.7071ZM26.668 17H6.66797V15H26.668V17Z' fill='%2314FFF2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(0px);
  transition: 0.2s;
}
.btn-primary.btn-with-arrow:hover::after,
.btn-secondary.btn-with-arrow:hover::after,
.btn-transparent.btn-with-arrow:hover::after {
  transform: translateX(6px);
  filter: brightness(0) saturate(100%) invert(17%) sepia(17%) saturate(5379%) hue-rotate(200deg) brightness(96%) contrast(97%);
}

.btn-secondary.btn-with-arrow::after {
  filter: brightness(0) saturate(100%) invert(17%) sepia(17%) saturate(5379%) hue-rotate(200deg) brightness(96%) contrast(97%);
}
.btn-secondary.btn-with-arrow:hover::after {
  filter: none;
}

.sign__in {
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--Website-white, var(--Grays-White, #fff));
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 133.333%;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.sign__in:hover {
  color: var(--cyan);
}

.sign__up {
  color: var(--Website-white, var(--Grays-White, #fff));
  /* Platform/Button */
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 133.333%;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  padding: 14px 21px;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid var(--Website-cyan, #14fff2);
}
.sign__up:hover {
  color: var(--Website-BG-section, #082b5f);
  background-color: var(--Website-cyan, #14fff2);
}

.sign__get {
  padding: 14px 21px;
  color: var(--Website-BG-section, #082b5f);
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 133.333%;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.add-to-email {
  padding: 0.844rem 1.8rem;
  font-size: 0.75rem;
}

button {
  border: 0;
  outline: none;
  background-color: transparent;
}

.custom-select {
  position: relative;
  border: 1px solid var(--border-input);
  border-radius: 0.25rem;
  background-color: transparent;
  font-family: "Open Sans", sans-serif;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: transparent;
  color: var(--white);
  font-size: 0.75rem;
  padding: 1.25rem;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.5rem;
  width: 0.4rem;
  height: 0.4rem;
  transition: 0.2s;
  transform: rotate(45deg) translateY(-50%);
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

.select-selected.select-arrow-active:after {
  transform: rotate(-135deg) translateY(-30%);
}

.select-selected {
  cursor: pointer;
}

.select-items div {
  cursor: pointer;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  color: var(--white);
  background: var(--bg-section-products);
  border: none !important;
}

.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: calc(100% - 0.125rem);
  left: -1px;
  right: 0;
  z-index: 99;
  border: 1px solid var(--border-input);
  border-top: none;
  width: calc(100% + 0.125rem);
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: var(--bg-pricing-item);
}

.content-block h2,
.content-block h1 {
  letter-spacing: 0.6px;
}

.content-block h2,
.content-block h1,
.content-block h3,
.content-block h4,
.content-block h5,
.content-block h6 {
  margin-bottom: 1.5rem;
}

.content-block h2 {
  font-size: 3.5rem;
}

@media only screen and (max-width: 112.5em) {
  .content-block h2 {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.content-block p {
  margin-top: 1.5rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

a.play {
  gap: 0.75rem;
  border-color: var(--cyan);
  border-width: 0.125rem;
  color: var(--cyan);
}

a.play::before {
  height: 1.75rem;
  width: 1.75rem;
  content: "";
  transition: 0.25s;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOCAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzLjk5OTkgMjUuNjY1NEMyMC40NDMyIDI1LjY2NTQgMjUuNjY2NiAyMC40NDIgMjUuNjY2NiAxMy45OTg3QzI1LjY2NjYgNy41NTUzOCAyMC40NDMyIDIuMzMyMDMgMTMuOTk5OSAyLjMzMjAzQzcuNTU2NiAyLjMzMjAzIDIuMzMzMjUgNy41NTUzOCAyLjMzMzI1IDEzLjk5ODdDMi4zMzMyNSAyMC40NDIgNy41NTY2IDI1LjY2NTQgMTMuOTk5OSAyNS42NjU0WiIgc3Ryb2tlPSIjMTRGRkYyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTExLjY2NjcgOS4zMzIwM0wxOC42NjY3IDEzLjk5ODdMMTEuNjY2NyAxOC42NjU0VjkuMzMyMDNaIiBmaWxsPSIjMTRGRkYyIiBzdHJva2U9IiMxNEZGRjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
}

a.play:hover::before {
  filter: brightness(0.4);
}

.accordion-text p {
  margin-bottom: 2.5rem;
}

.accordion-text a {
  color: #64d2ff;
  overflow: auto;
}

table {
  color: #ffffff;
  border-collapse: unset !important;
  border-spacing: 16px 16px !important;
  margin: -16px !important;
  width: auto !important;
  line-height: 32px;
}

thead {
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.1em;
}

tbody {
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.1em;
}

table br {
  margin-bottom: 8px;
}

table td {
  line-height: 34px;
}

.block-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chart__stats {
  display: flex;
  gap: 8px;
  width: 100%;
}

.stats__block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  background: #082b5f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px 24px 24px;
  box-shadow: 0px 12px 100px 0px rgba(174, 202, 255, 0.32), 0px 2px 8px 0px rgba(159, 227, 255, 0.16), 0px 2px 20px 0px rgba(130, 219, 255, 0.08);
}

.stats__current {
  flex-grow: 1;
}

.stats__top p {
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8395af;
}

.stats__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats__bottom span {
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  text-transform: uppercase;
  color: #14fff2;
}

.stats__movers {
  flex-grow: 2;
}

.stats__volatility {
  flex-grow: 1;
}

.bottom__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.bottom__info p,
.bottom__info a {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}

.bottom__info-stats {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bottom__info-stats__up {
  color: #00c868;
}

.bottom__info-stats__down {
  color: #ff144d;
}

@media only screen and (max-width: 101.5rem) {
  .stats__bottom span {
    font-size: 24px;
    line-height: 24px;
  }
  .stats__block {
    min-height: 102px;
    padding: 16px 20px 20px;
  }
  .bottom__info p,
  .bottom__info a {
    font-size: 10px;
    line-height: 16px;
  }
  .stats__bottom {
    gap: 6px;
  }
}
@media only screen and (max-width: 33rem) {
  .chart__stats {
    flex-direction: column;
  }
  .stats__block {
    width: 100%;
  }
}
@media only screen and (max-width: 112.5rem) {
  .products__block-left {
    width: 100%;
  }
}
@media only screen and (max-width: 65.6rem) {
  .products__wrap {
    flex-direction: column-reverse;
  }
}
.products__img {
  position: relative;
  max-width: 920px;
  width: 50%;
  margin: 0 auto;
}

.products__img img {
  max-width: 100%;
  height: auto;
  position: relative;
}

.section__transit {
  position: relative;
  padding: 10rem 0 12rem;
  z-index: 2;
  background: var(--bg-section-products);
}

.section__transit .bg__image {
  background: var(--bg-section-tender);
}

@media only screen and (max-width: 37.5em) {
  .section__transit {
    padding: 4rem 0 12rem;
  }
}
.transit__flex {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3.75rem;
}

@media only screen and (max-width: 56.25em) {
  .transit__flex {
    gap: 2rem;
  }
}
.transit__img {
  position: relative;
  max-width: 1490px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
}
.transit__img .img__wrap {
  width: 100%;
  max-height: 440px;
  height: 100%;
  display: block;
}
.transit__img img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: contain;
}

.transit__info {
  max-width: 884px;
}
.transit__info p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-style: italic;
  line-height: 180%;
  letter-spacing: 2px;
}

@media only screen and (max-width: 112.5rem) {
  .transit__img {
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .transit__img {
    flex-direction: column;
  }
  .transit__img .img__wrap {
    width: 100%;
  }
  .transit__info p {
    font-size: 16px;
  }
}
.transit__img_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

@media only screen and (max-width: 48em) {
  .transit__img_text {
    gap: 1rem;
  }
  .transit__info p {
    font-size: 14px;
  }
}
.transit__img_text p {
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

@media only screen and (max-width: 112.5em) {
  .transit__img_text p {
    font-size: 14px;
    line-height: 20px;
  }
}
.transit__text {
  width: 61rem;
  text-align: center;
}
.transit__text h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.22;
  text-align: center;
  text-transform: uppercase;
}
.transit__text h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.28;
  text-align: center;
  text-transform: capitalize;
  margin-top: 32px;
}

@media only screen and (max-width: 112.5em) {
  .transit__text {
    width: 100%;
  }
  .transit__text h2 {
    font-size: 32px;
  }
  .transit__text h3 {
    font-size: 22px;
    margin-top: 22px;
  }
  .transit__text p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 56.25em) {
  .transit__text h2 {
    font-size: 24px;
  }
  .transit__text h3 {
    font-size: 20px;
    margin-top: 20px;
  }
  .transit__text p {
    font-size: 12px;
  }
}
.transit__flex h3 {
  color: var(--white);
}

.section__events {
  position: relative;
  padding: 8.75rem 0;
}

@media only screen and (max-width: 37.5em) {
  .section__events {
    padding: 5.25rem 0;
  }
}
.events__flex {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4.5rem;
}

.events__text {
  width: 60rem;
  text-align: center;
}
.events__text h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.22;
  text-align: center;
}
.events__text h3 {
  color: var(--white);
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.28;
  text-align: center;
  margin-top: 32px;
  text-transform: capitalize;
}
.events__text p {
  margin-top: 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-align: center;
}

@media only screen and (max-width: 112.5em) {
  .events__text {
    width: 100%;
  }
  .events__text h2 {
    font-size: 32px;
  }
  .events__text h3 {
    font-size: 22px;
  }
  .events__text p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 56.25em) {
  .events__flex {
    gap: 2.5rem;
  }
  .events__text {
    width: 100%;
  }
  .events__text h2 {
    font-size: 24px;
  }
  .events__text h3 {
    font-size: 20px;
    margin-top: 20px;
  }
  .events__text p {
    font-size: 12px;
  }
}
.events__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.events__list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.events__list li {
  position: relative;
  margin-bottom: 8px;
}

.events__list li:last-child {
  margin-bottom: 24px;
}

.event__block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 48px 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--Website-blue-dark, #163170);
}

@media only screen and (max-width: 112.5em) {
  .event__block {
    padding: 14px 24px 16px;
  }
}
.fourth-block {
  opacity: 0.6;
  background: linear-gradient(to bottom, rgba(8, 43, 95, 0.5) 0%, rgba(8, 43, 95, 0) 100%);
}

.event__block_stats {
  display: flex;
  align-items: center;
  gap: 40px;
}

.stats__text {
  display: flex;
  gap: 4px;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
@media (width <= 1600px) {
  .stats__text {
    font-size: 14px;
  }
}

.stats__activity {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
}

.stats__status--low {
  color: #00c868;
}

.stats__status--medium {
  color: #f6b54a;
}

.stats__status--high {
  color: #ff2d55;
}

.stats__date {
  color: rgba(255, 255, 255, 0.6);
}

.event__block_description {
  width: 100%;
}

.event__block_description p {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media (width <= 1600px) {
  .event__block_description p {
    font-size: 18px;
  }
}

.view-more-btn {
  margin-top: 14px;
}

.section__product-reusable {
  background: linear-gradient(145deg, #012d6e -6.15%, #0149b5 60.34%);
}

.section__product-reusable .product__text .product__text-inner {
  max-width: 40rem;
}

.section__product-reusable .product__text .product__text-inner::after {
  display: none;
}

@media only screen and (min-width: 56.25em) {
  .section__product-reusable .product__item {
    padding: 6rem 0;
  }
}
@media only screen and (min-width: 156.25em) {
  .section__product-reusable .product__item {
    padding: 15rem 0;
  }
}
@media only screen and (max-width: 56.25em) {
  .section__product-reusable .product__item {
    padding: 6rem 0;
  }
}
.section__faq-reusable {
  padding-top: 10rem;
}

.grows__tabs {
  gap: 2rem;
  display: flex;
  flex-direction: column;
}

.content-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 128px;
}

@media only screen and (max-width: 112.5em) {
  .content-item {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 48em) {
  .content-item {
    margin-bottom: 60px;
  }
}
.content-item .content__text {
  max-width: 51.375rem;
  text-align: center;
}

.swiper-pagination {
  position: relative;
  margin: 3.5rem auto 2rem;
  gap: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination .swiper-pagination-bullet {
  cursor: pointer;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #007aff;
  opacity: 1;
  border: none;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #14fff2;
  width: 1.25rem;
  height: 1.25rem;
}

.section__grows {
  padding: 8.25rem 0;
}

.bg__image.bg-gradient::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 10%, rgba(255, 255, 255, 0.2) 60%, rgba(255, 255, 255, 0.1) 95%);
}

.bg__image.bg-dark {
  background: #04347d;
}

.section__grows .grows__title h2 {
  color: var(--white);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.14;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}

@media only screen and (max-width: 56.25em) {
  .section__grows .grows__title h2 {
    font-size: 42px;
  }
}
.section__grows .tabs__nav {
  margin-bottom: 2rem;
  gap: 3.25rem;
}

@media only screen and (max-width: 56.25em) {
  .section__grows .tabs__nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section__grows .tabs__nav li {
    font-size: 14px;
  }
}
@media only screen and (max-width: 56.25em) {
  .section__grows .content__image {
    max-width: 80%;
  }
  .section__grows .content__image img {
    width: 100%;
  }
}
.section__quote {
  padding: 8.25rem 0;
}

.features__wrapper {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.features__wrapper li {
  flex: 1;
}

@media only screen and (max-width: 56.25em) {
  .features__wrapper {
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
  gap: 1.5rem;
  padding: 4.625rem 3.75rem;
  border-radius: 1rem;
  background-color: rgba(25, 28, 40, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.feature-item h4 {
  color: #14fff2;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
}

.feature-item p {
  opacity: 0.8;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 10%;
  font-weight: 400;
}

.feature-icon {
  margin-bottom: 1rem;
  width: 6rem;
  height: 6rem;
  border-radius: 0.25rem;
}

.feature-icon img {
  width: 100%;
  object-fit: contain;
}

.section__quote,
.section__grows {
  position: relative;
}

.section__grows .section__quote .quote-item {
  height: auto;
}

.section__grows .section__quote .quote-item .quote-content {
  gap: 60px;
}

@media only screen and (max-width: 48em) {
  .section__grows .section__quote .quote-item .quote-content {
    gap: 32px;
  }
}
.title-slider__button-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.features__button-wrapper {
  display: flex;
  justify-content: center;
}

.section__product-reusable .product__text .product__text-inner ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
}

.section__product-reusable .product__text .product__text-inner ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1.5px;
}

.section__product-reusable .product__text .product__text-inner ul li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8" fill="none"><circle cx="4" cy="4" r="4" fill="%2364D2FF"/></svg>') center/contain no-repeat;
}

.section__statistic-reusable {
  background: linear-gradient(47deg, #012d6e 14.29%, #0149b5 59.22%), #04347d;
}

.section__statistic-reusable .statistic__item {
  flex-direction: column-reverse;
  gap: 16px;
  width: 25rem;
  height: 25rem;
}

.section__statistic-reusable .statistic__item h5 {
  width: 80%;
  line-height: 1.5rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.section__statistic-reusable .statistic__item h5::after {
  display: none;
}

.section__statistic-reusable .statistic__item p {
  font-size: 5.5rem;
  line-height: 6.25rem;
}

@media only screen and (max-width: 112.5em) {
  .section__statistic-reusable .statistic__item {
    width: 17rem;
    height: 17rem;
    gap: 8px;
  }
  .section__statistic-reusable .statistic__item h5 {
    line-height: 1.15rem;
    font-size: 0.625rem;
  }
  .section__statistic-reusable .statistic__item p {
    font-size: 3.5rem;
    line-height: 3.25rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .section__statistic-reusable .statistic__list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.section__text-slider.section__company-secondary {
  padding: 6.25rem 0;
  background: var(--blue-dark);
}
.section__text-slider.section__company-secondary .section__text-slider {
  background: var(--blue-dark);
}

input[type=checkbox] {
  cursor: pointer;
}

.contact-us__section.secondary .contact-us__text {
  padding: 0;
}
.contact-us__section.secondary .contact-us__text h3 {
  line-height: 140%;
}

@media only screen and (max-width: 112.5em) {
  .contact-us__section.secondary .container {
    max-width: 1200px;
  }
}
.contact-us__form .gform_legacy_markup_wrapper ul li.gfield .ginput_container {
  margin-top: 0 !important;
}

.gform_legacy_markup_wrapper ul.gfield_checkbox {
  margin-top: 32px !important;
}

.contact-us__form {
  max-width: 582px;
  padding-right: 40px;
}

.contact-us__inner {
  justify-content: space-between;
}

@media screen and (max-width: 1800px) and (min-width: 56.25em) {
  .contact-us__form {
    padding-right: 8px !important;
  }
}
span.text-wrap {
  text-wrap: nowrap;
}

.fbx .chart-paper__title,
.fax .chart-paper__title {
  font-size: 16px;
  line-height: 1.5;
}

.fbx .chart-paper__header,
.fax .chart-paper__header {
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(0, 122, 255, 0.2);
  margin: 32px 32px 0 32px;
  align-items: center;
}

.fbx .chart-paper,
.fax .chart-paper {
  border-radius: 16px;
  background: linear-gradient(0deg, rgba(25, 28, 40, 0.8) 0%, rgba(25, 28, 40, 0.8) 100%), #03337d;
  box-shadow: 0px 30px 100px 0px rgba(0, 0, 0, 0.25);
  filter: none;
}

.fbx .chart-paper__buttons a,
.fax .chart-paper__buttons a {
  width: 100%;
  height: 72px;
}

.fbx .chart-paper__footer,
.fax .chart-paper__footer {
  display: flex;
  gap: 16px;
}

.section__intro--products .fbx .stats__block,
.section__intro--products .fax .stats__block {
  padding: 12px 16px;
  min-width: 150px;
  text-align: center;
}

.fbx .stats__block,
.fax .stats__block {
  min-height: 75px;
  box-shadow: none;
  height: 75px;
  background: none;
}

.fbx .stats__bottom span,
.fax .stats__bottom span {
  font-size: 24px;
  text-align: center;
}

.fbx .chart-paper__buttons,
.fax .chart-paper__buttons {
  width: 100%;
  box-shadow: 0px 10px 40px 0px rgba(133, 98, 40, 0.3);
}

.fbx .stats__top,
.fax .stats__top {
  justify-content: center;
}

.fbx .svg__strike,
.fax .svg__strike {
  margin: -2px 0 0 2px;
}

@media only screen and (max-width: 768px) {
  .fbx .chart-paper__footer {
    display: block;
  }
  .fbx .chart-paper__buttons {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 576px) {
  .fax .chart-paper__footer {
    display: block;
  }
  .fax .chart-paper__buttons {
    margin-top: 10px;
  }
  .fax .stats__top {
    text-align: center;
  }
}
.section__repeated-text-image {
  position: relative;
}
.section__repeated-text-image .bg__image {
  background: transparent;
}
.section__repeated-text-image .bg__image.test-intro-screen:before {
  content: none;
}

.repeated-text-image {
  position: relative;
  padding: 8.25rem 0 0;
}
.repeated-text-image .bg__image {
  background: var(--bg-sections-intro-statistic-faq);
  z-index: -2;
}

.repeated-text-image__title {
  max-width: 71rem;
  text-align: center;
  font-size: 3.25rem;
  line-height: 1.23;
  margin-bottom: 5rem;
  margin-left: auto;
  margin-right: auto;
}

.repeated-text-image__container {
  display: flex;
  flex-direction: column;
  gap: 12rem;
  padding: 0 0 8.25rem;
}

.repeated-text-image__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7.125rem;
}
.repeated-text-image__item:nth-child(2n) {
  flex-direction: row-reverse;
}

.repeated-text-image__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}
.repeated-text-image__text h3 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.5;
  color: var(--white);
}
.repeated-text-image__text p {
  font-size: 0.938rem;
  line-height: 1.87;
}

.repeated-text-image__img {
  width: 50%;
  box-shadow: var(--box-shadow-image);
}
.repeated-text-image__img img {
  width: 100%;
}

.сall-to-action {
  position: relative;
  padding: 8.25rem 0;
}
.сall-to-action .bg__image {
  background-color: var(--blue-dark);
  z-index: -2;
}

@media only screen and (max-width: 112.5em) {
  .repeated-text-image__title {
    max-width: 100%;
    font-size: 2.6rem;
    margin-bottom: 4rem;
  }
  .repeated-text-image {
    padding: 6.6rem 0 0;
  }
  .repeated-text-image__container {
    gap: 5.6rem;
    padding: 0 0 6.6rem;
  }
  .repeated-text-image__item {
    gap: 5.7rem;
  }
  .repeated-text-image__text {
    gap: 1.2rem;
  }
  .repeated-text-image__text h3 {
    font-size: 1.75rem;
  }
  .сall-to-action {
    padding: 6.6rem 0;
  }
}
@media only screen and (max-width: 48em) {
  .repeated-text-image__item {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .repeated-text-image__item:nth-child(2n) {
    flex-direction: column-reverse;
  }
  .repeated-text-image__img {
    width: 80%;
  }
}
.action-block {
  display: flex;
  align-items: center;
  gap: 9.2rem;
  padding: 3rem 4.25rem;
  background-image: url(../img/bgFaq.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.5rem;
  max-width: 79.813rem;
  margin: 0 auto;
}
.action-block .action-block__text {
  flex: 1;
  max-width: 37.5rem;
}
.action-block .action-block__text p {
  font-size: 1.75rem;
  line-height: 1.57;
  letter-spacing: 0.175rem;
}
.action-block .action-block__text span {
  font-weight: 700;
}
.action-block .action-block__buttons {
  display: flex;
  gap: 1.5rem;
}
.action-block .btn-primary,
.action-block .btn-secondary,
.action-block .btn-transparent {
  letter-spacing: 0.188rem;
}

@media only screen and (max-width: 112.5em) {
  .action-block {
    gap: 7rem;
    padding: 2.4rem 3.4rem;
    max-width: 100%;
  }
  .action-block .action-block__text p {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .action-block {
    flex-direction: column;
    gap: 2rem;
    padding: 2.4rem 3.4rem;
    max-width: 100%;
  }
  .action-block .action-block__text {
    max-width: 100%;
  }
}
.section__comparison {
  position: relative;
  overflow: hidden;
  padding: 8.25rem 0;
}
.section__comparison .bg__image.test-intro-screen::before {
  content: none;
}

.comparison__text {
  width: 90%;
  margin: 0 auto 3.75rem;
}
.comparison__text h2 {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.comparison__text p {
  text-align: center;
  opacity: 0.8;
  width: 80%;
  margin: 0 auto;
}

.comparison__table-wrap {
  border-radius: 8px;
  border: 1px solid #292E40;
  background: #163170;
  padding: 0.75rem;
}

.comparison__table {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 2fr;
}

.comparison__table-cell {
  display: flex;
  align-items: center;
  padding: 1.875rem 2.5rem;
  opacity: 0.8;
  border-right: 2px solid #082B5F;
  border-bottom: 2px solid #082B5F;
  font-size: 0.938rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
}
.comparison__table-cell:nth-child(4n) {
  border-right: none;
}
.comparison__table-cell:nth-last-child(-n+4) {
  border-bottom: none;
}
.comparison__table-cell.accent {
  justify-content: center;
  color: #14FFF2;
}
.comparison__table-cell.opacity-1 {
  opacity: 1;
  text-align: center;
  justify-content: center;
}
.comparison__table-cell.comparison__table-cell--head {
  min-height: 7.625rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06rem;
  margin-top: -0.75rem;
}

@media only screen and (max-width: 112.5em) {
  .section__comparison {
    padding: 6.6rem 0;
  }
  .comparison__text {
    margin-bottom: 3rem;
  }
  .comparison__text h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  .comparison__table-wrap {
    padding: 0.6rem;
  }
  .comparison__table-cell {
    padding: 1.5rem 2rem;
    font-size: 0.938rem;
    font-weight: 400;
    line-height: 1.6;
  }
  .comparison__table-cell.comparison__table-cell--head {
    min-height: 6.1rem;
    font-size: 1.2rem;
    margin-top: -0.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .comparison__text {
    width: 100%;
  }
  .comparison__text p {
    width: 90%;
  }
  .comparison__table-wrap {
    overflow-x: auto;
  }
  .comparison__table {
    width: 76.75rem;
  }
  .comparison__table-wrap::-webkit-scrollbar-track {
    background: transparent;
    margin: 0 9.6px;
  }
}
.section__subscribe {
  position: relative;
  padding: 3.75rem 0;
}

.section__subscribe .bg__image svg {
  height: 100%;
  left: -50rem;
}

.subscribe__container {
  display: flex;
  max-width: 79.813rem;
  margin: 0 auto;
  gap: 6rem;
  justify-content: space-between;
  align-items: center;
}

.subscribe__title {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 3.6px;
  max-width: 20.125rem;
}

.subscribe__description {
  max-width: 30.125rem;
}

.subscribe__description p {
  font-weight: 600;
  line-height: 1.5;
}

@media only screen and (max-width: 112.5em) {
  .subscribe__container {
    max-width: 100%;
    gap: 2.5rem;
  }
  .subscribe__title {
    font-size: 1.5rem;
    max-width: 13.75rem;
  }
  .subscribe__description {
    max-width: 24.063rem;
  }
  .subscribe__description p {
    font-size: 0.938rem;
    font-weight: 600;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 48em) {
  .subscribe__container {
    flex-direction: column;
    max-width: 100%;
    gap: 2rem;
  }
  .subscribe__title {
    max-width: 80%;
  }
  .subscribe__description {
    max-width: 80%;
    text-align: center;
  }
}
.section__text-image {
  position: relative;
  padding: 5.25rem 0 9rem;
  overflow: hidden;
}
.section__text-image .bg__image {
  background: var(--bg-sections-intro-statistic-faq);
}
.section__text-image .bg__image svg {
  height: 100%;
  left: -53rem;
  opacity: 0.4;
}

.text-image__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.938rem;
}

.text-image__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 50%;
  padding-left: 4rem;
  margin-bottom: 2.375rem;
}
.text-image__content .text-image__title {
  font-size: 3rem;
  line-height: 1.33;
  margin-bottom: 0.5rem;
}
.text-image__content p {
  font-size: 0.938rem;
  line-height: 1.87;
  letter-spacing: 0.094rem;
}

.text-image__img {
  position: relative;
  width: 45%;
  height: 39rem;
}
.text-image__img .video-play-button {
  top: 55%;
  right: 0;
  transform: translateY(-50%);
}

@media only screen and (max-width: 112.5em) {
  .section__text-image {
    padding: 5.8rem 0;
  }
  .section__text-image .bg__image svg {
    left: -45rem;
  }
  .text-image__content {
    gap: 1.6rem;
    padding-left: 0;
  }
  .text-image__content .text-image__title {
    font-size: 2.4rem;
  }
  .text-image__img .video-play-button {
    transform: translate(11px, -50%);
  }
}
@media only screen and (max-width: 56.25em) {
  .text-image__container {
    flex-direction: column;
    gap: 0.5rem;
  }
  .text-image__content {
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
  }
  .text-image__img {
    width: 100%;
  }
  .text-image__img .video-play-button {
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 56.25em) {
  .text-image__img .video-play-button {
    transform: translate(-25%, -50%);
  }
  .section__text-image .bg__image svg {
    left: -18rem;
  }
}
@media only screen and (max-width: 32em) {
  .text-image__img .video-play-button {
    transform: translate(0%, -50%);
  }
  .section__text-image .bg__image svg {
    left: -14rem;
  }
}
.form-top-promo-wrapper {
  background-color: #007aff;
  border-radius: 8px;
}

.form-top-promo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 14px;
}
.form-top-promo h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.form-top-promo h4 {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 112.5% */
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

section.background_wrapper > section {
  background: none;
}
section.background_wrapper > section .bg__image {
  display: none;
}

section.background_wrapper {
  position: relative;
}
section.background_wrapper.bg-blue {
  background: #04347D;
}
section.background_wrapper.bg-dark-blue {
  background-color: var(--bg-section-products);
}
section.background_wrapper.bg-medium-blue {
  background-color: #04347D;
}
section.background_wrapper.bg-gradient {
  background: var(--bg-sections-intro-statistic-faq);
}
section.background_wrapper.bg-gradient-two {
  background: linear-gradient(145deg, #012D6E -6.15%, #0149B5 60.34%);
}
section.background_wrapper.border-bottom-dashed {
  border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
}
section.background_wrapper.border-top-dashed {
  border-top: 2px dashed rgba(255, 255, 255, 0.2);
}
section.background_wrapper .bg__image {
  z-index: 0;
}
section.background_wrapper .section__grows {
  padding: 0;
}
section.background_wrapper .section__grows .container {
  padding-block: 80px;
}
@media only screen and (max-width: 1080px) {
  section.background_wrapper .section__grows .container {
    padding-block: 40px;
  }
}
section.background_wrapper .section__grows .container.slider-container {
  padding-block: 132px;
}
@media only screen and (max-width: 1080px) {
  section.background_wrapper .section__grows .container.slider-container {
    padding-block: 66px;
  }
}
section.background_wrapper .section__grows .features__wrapper {
  margin: 0;
}
section.background_wrapper .section__statistic {
  padding-block: 80px;
}
@media only screen and (max-width: 1080px) {
  section.background_wrapper .section__statistic {
    padding-block: 40px;
  }
}
section.background_wrapper .section__company {
  padding-block: 48px 80px;
}
@media only screen and (max-width: 1080px) {
  section.background_wrapper .section__company {
    padding-block: 32px 40px;
  }
}
section.background_wrapper .section__company.variant-two {
  padding-block: 6.25rem 0;
}
@media only screen and (max-width: 1080px) {
  section.background_wrapper .section__company.variant-two {
    padding-block: 3.25rem 0;
  }
}
section.background_wrapper .section__quote {
  padding-block: 136px;
}
@media only screen and (max-width: 1080px) {
  section.background_wrapper .section__quote {
    padding-block: 68px;
  }
}
section.background_wrapper .section__product-reusable {
  padding-block: 132px;
}
@media only screen and (max-width: 1080px) {
  section.background_wrapper .section__product-reusable {
    padding-block: 66px;
  }
}
section.background_wrapper .section__faq {
  padding-block: 132px;
}
@media only screen and (max-width: 1080px) {
  section.background_wrapper .section__faq {
    padding-block: 68px;
  }
}
section.background_wrapper .section__faq .faq__title {
  margin: 0 auto 60px;
}
@media only screen and (max-width: 1080px) {
  section.background_wrapper .section__faq .faq__title {
    margin: 0 auto 32px;
  }
}

select.a-select {
  display: none;
}

.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 38px;
  line-height: 36px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  transform: rotate(-135deg);
}
.nice-select.open .nice-select-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .nice-select-dropdown {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .nice-select-dropdown {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .nice-select-dropdown {
  margin-top: 4px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(19px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  opacity: 0;
}
.nice-select .list {
  border-radius: 5px;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
  max-height: 210px;
  overflow-y: auto;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.nice-select .optgroup {
  font-weight: bold;
}

.no-csspointerevents .nice-select .nice-select-dropdown {
  display: none;
}
.no-csspointerevents .nice-select.open .nice-select-dropdown {
  display: block;
}

.nice-select .list::-webkit-scrollbar {
  width: 0;
}

.nice-select .has-multiple {
  white-space: inherit;
  height: auto;
  padding: 7px 12px;
  min-height: 36px;
  line-height: 22px;
}
.nice-select .has-multiple span.current {
  border: 1px solid #CCC;
  background: #EEE;
  padding: 0 10px;
  border-radius: 3px;
  display: inline-block;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 3px;
  margin-right: 3px;
}
.nice-select .has-multiple .multiple-options {
  display: block;
  line-height: 24px;
  padding: 0;
}
.nice-select .nice-select-search-box {
  box-sizing: border-box;
  width: 100%;
  padding: 5px;
  pointer-events: none;
  border-radius: 5px 5px 0 0;
}
.nice-select .nice-select-search {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  color: #444;
  display: inline-block;
  vertical-align: middle;
  padding: 7px 12px;
  margin: 0 10px 0 0;
  width: 100%;
  min-height: 36px;
  line-height: 22px;
  height: auto;
  outline: 0 !important;
  font-size: 14px;
}

#legend-container {
  border-top: 1px solid var(--platform-white-10, rgba(255, 255, 255, 0.1));
  border-bottom: 1px solid var(--platform-white-10, rgba(255, 255, 255, 0.1));
  background: rgba(9, 12, 25, 0.4);
}
#legend-container .fax-select {
  background: transparent;
  color: var(--Platform-primary-light, #4FA7FF);
  border: none;
}
#legend-container .fax-select:after {
  border-bottom: 2px solid #4FA7FF;
  border-right: 2px solid #4FA7FF;
}
#legend-container .fax-select .nice-select-dropdown {
  background: var(--Website-screen-BG, #1C3D70);
  box-shadow: 0px 2px 6px 0px rgba(6, 20, 43, 0.3), 0px 4px 20px 0px rgba(6, 20, 43, 0.2), 0px 8px 48px 0px rgba(6, 20, 43, 0.4);
}
#legend-container .fax-select .nice-select-dropdown .list {
  padding: 8px;
}
#legend-container .fax-select .nice-select-dropdown .option:hover, #legend-container .fax-select .nice-select-dropdown .option.focus, #legend-container .fax-select .nice-select-dropdown .option.selected.focus {
  border-radius: 4px;
  background: #2C5084;
}
#legend-container .fax-select .nice-select-dropdown .option.selected {
  font-weight: normal;
}

.product-image-text {
  position: relative;
}
.product-image-text .product-image-text__wrap {
  max-width: 1600px;
  width: 100%;
  display: flex;
  margin: 0 auto;
  gap: 100px;
  padding: 120px 32px 200px;
  align-items: center;
}
@media (max-width: 1600px) {
  .product-image-text .product-image-text__wrap {
    gap: 48px;
  }
}
@media (max-width: 1200px) {
  .product-image-text .product-image-text__wrap {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .product-image-text .product-image-text__wrap {
    padding: 60px 16px 100px;
  }
}
.product-image-text .product-image-text__img {
  margin-left: -60px;
  width: 100%;
  max-width: 710px;
}
.product-image-text .product-image-text__img img {
  width: 100%;
  height: auto;
  max-width: 710px;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .product-image-text .product-image-text__img img {
    max-width: 640px;
  }
}
@media (max-width: 1200px) {
  .product-image-text .product-image-text__img {
    margin-left: 0;
  }
}
.product-image-text .product-image-text__content {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 100%;
  max-width: 848px;
}
@media (max-width: 1440px) {
  .product-image-text .product-image-text__content {
    gap: 24px;
  }
}
.product-image-text .product-image-text__content h3 {
  color: var(--Website-white, #FFF);
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 140%;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .product-image-text .product-image-text__content h3 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .product-image-text .product-image-text__content h3 {
    font-size: 24px;
  }
}
.product-image-text .product-image-text__content h3 strong {
  color: var(--Website-blue-medium, #4FA7FF);
}
.product-image-text .product-image-text__content p {
  color: var(--Website-white, #FFF);
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 180% */
  letter-spacing: 2px;
}
@media (max-width: 1440px) {
  .product-image-text .product-image-text__content p {
    font-size: 18px;
    line-height: 140%;
  }
}
@media (max-width: 768px) {
  .product-image-text .product-image-text__content p {
    font-size: 16px;
    line-height: 140%;
  }
}

.product-provided {
  background: #082B5F;
}
.product-provided .product-provided__wrapper {
  max-width: 1484px;
  width: 100%;
  margin: 0 auto;
  padding: 132px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media (max-width: 768px) {
  .product-provided .product-provided__wrapper {
    padding: 60px 16px;
  }
}
.product-provided .product-provided__title {
  color: var(--Website-white, #FFF);
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 140%;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .product-provided .product-provided__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .product-provided .product-provided__title {
    font-size: 24px;
  }
}
.product-provided .product-provided__title strong {
  color: var(--Website-cyan, #14FFF2);
}
.product-provided .product-provided__content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-provided .product-provided__content li {
  flex-basis: calc(50% - 10px);
  flex-grow: 1;
  display: flex;
  padding: 24px;
  align-items: center;
  justify-content: flex-start;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  color: var(--Website-Light-gray, #EAF0F6);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
@media (max-width: 1080px) {
  .product-provided .product-provided__content li {
    flex-basis: 100%;
  }
}
.product-provided .product-provided__content li:before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='11' height='11' rx='5.5' fill='%2314FFF2' stroke='%2314FFF2'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
}
.product-provided .product-provided__sub-content {
  color: var(--Website-white, #FFF);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 2px;
}
@media (max-width: 1440px) {
  .product-provided .product-provided__sub-content {
    font-size: 18px;
    line-height: 140%;
  }
}
@media (max-width: 768px) {
  .product-provided .product-provided__sub-content {
    font-size: 16px;
    line-height: 140%;
  }
}

.banner-quote .container {
  padding-block: 80px;
}
@media only screen and (max-width: 1080px) {
  .banner-quote .container {
    padding-block: 40px;
  }
}
.banner-quote .banner-quote--products {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 64px 72px;
  background-image: url("../img/bgFaq.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2rem 2rem 0 2rem;
  position: relative;
  gap: 6.5rem;
}
@media only screen and (max-width: 112.5em) {
  .banner-quote .banner-quote--products {
    padding: 32px 36px;
    gap: 3.5rem;
  }
}
@media only screen and (max-width: 1080px) {
  .banner-quote .banner-quote--products {
    gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .banner-quote .banner-quote--products {
    flex-direction: column;
  }
}
.banner-quote .banner-quote-text {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media only screen and (max-width: 112.5em) {
  .banner-quote .banner-quote-text {
    gap: 2rem;
  }
}
@media only screen and (max-width: 1080px) {
  .banner-quote .banner-quote-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.banner-quote .banner-quote-subtitle--products {
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  max-width: 33.5rem;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
}
.banner-quote .banner-quote-title {
  color: var(--white, #FFF);
  font-family: "Open Sans", sans-serif;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 133%; /* 133.333% */
  letter-spacing: 0.225rem;
  text-transform: uppercase;
  max-width: 21.938rem;
  width: 100%;
}
@media only screen and (max-width: 112.5em) {
  .banner-quote .banner-quote-title {
    font-size: 1.5rem;
    max-width: 15rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 1080px) {
  .banner-quote .banner-quote-title {
    max-width: 100%;
  }
}

.modal__cross {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  fill: #444;
  cursor: pointer;
  transition: all 0.3s linear;
}
@media (max-width: 768px) {
  .modal__cross {
    top: 2rem;
    right: 2rem;
  }
}
@media (max-width: 580px) {
  .modal__cross {
    top: 2rem;
    right: 1.5rem;
  }
}

.modals {
  background: none;
  margin: auto;
  border: none;
  max-width: 82.25rem;
  padding: 1rem;
}
.modals .modal__wrapper {
  border-radius: 0.25rem;
  border: 2px solid var(--website-white-10, rgba(255, 255, 255, 0.1));
  background: var(--Website-screen-BG, #1C3D70);
}
.modals::backdrop {
  background: rgba(29, 31, 39, 0.4);
  backdrop-filter: blur(20px);
}

.modal.roi-calculator {
  max-width: 86.25rem;
}
.modal.roi-calculator .modal__wrapper {
  max-width: 82.25rem;
  padding: 0;
}

.modals.roi-calculator {
  max-width: 82.25rem;
  width: 100%;
}

.roi-calculator--head {
  padding: 3.5rem 4rem 0;
}
@media (max-width: 1440px) {
  .roi-calculator--head {
    padding: 3rem 3rem 0;
  }
}
@media (max-width: 768px) {
  .roi-calculator--head {
    padding: 2rem 1.5rem 0;
  }
}
.roi-calculator--head h2 {
  color: var(--Platform-white, #FFF);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
}
.roi-calculator--head span {
  text-align: center;
  display: block;
  color: var(--platform-white-60, rgba(255, 255, 255, 0.6));
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  width: 100%;
  margin-top: 0.5rem;
}
@media (max-width: 1440px) {
  .roi-calculator--head span {
    font-size: 0.75rem;
  }
}
.roi-calculator__content {
  margin-top: 2.5rem;
}
@media (max-width: 1440px) {
  .roi-calculator__content {
    margin-top: 2rem;
  }
}
.roi-calculator__content span {
  text-align: center;
}
.roi-calculator__content .select-type {
  padding: 0 4rem 4rem;
}
@media (max-width: 1440px) {
  .roi-calculator__content .select-type {
    padding: 0 3rem 3rem;
  }
}
@media (max-width: 768px) {
  .roi-calculator__content .select-type {
    padding: 0 1.5rem 2rem;
  }
}
.roi-calculator__content .select-type span {
  margin-bottom: 1.5rem;
  display: block;
  color: var(--platform-white-60, rgba(255, 255, 255, 0.6));
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  width: 100%;
}
.roi-calculator__content .select-type__block {
  display: flex;
  gap: 1.5rem;
}
.roi-calculator__content .select-type__item {
  display: flex;
  padding: 3rem 2.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(50% - 0.75rem);
  gap: 0.75rem;
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s linear;
  cursor: pointer;
}
.roi-calculator__content .select-type__item .icon svg {
  width: 4rem;
  height: 4rem;
}
.roi-calculator__content .select-type__item p, .roi-calculator__content .select-type__item svg {
  transition: all 0.2s linear;
}
.roi-calculator__content .select-type__item:hover {
  border-radius: 0.5rem;
  border: 2px solid var(--Website-cyan, #14FFF2);
  background: rgba(255, 255, 255, 0.04);
}
.roi-calculator__content .select-type__item:hover svg {
  fill: var(--Platform-white, #FFF);
}
.roi-calculator__content .select-type__item:hover p {
  color: var(--Platform-white, #FFF);
}
.roi-calculator__content .roi-calculator__form--head {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 0 4rem;
}
@media (max-width: 1440px) {
  .roi-calculator__content .roi-calculator__form--head {
    padding: 0 3rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .roi-calculator__content .roi-calculator__form--head {
    gap: 1rem;
    padding: 0 1.5rem;
  }
}
.roi-calculator__content .roi-calculator__form--head:before {
  content: "";
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.roi-calculator__content .roi-calculator__form--head:after {
  content: "";
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.roi-calculator__content .roi-calculator__form--title {
  display: flex;
  padding: 0.5rem 2.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}
.roi-calculator__content .roi-calculator__form--title svg {
  width: 1.75rem;
  height: 1.75rem;
}
.roi-calculator__content .roi-calculator__form form .fields-group {
  display: flex;
  gap: 1.5rem;
  padding: 0 4rem;
  align-items: flex-end;
  margin-top: 1.5rem;
  position: relative;
}
.roi-calculator__content .roi-calculator__form form .fields-group:first-child {
  margin-top: 0;
}
@media (max-width: 1440px) {
  .roi-calculator__content .roi-calculator__form form .fields-group {
    align-items: flex-start;
    gap: 1rem;
    padding: 2.5rem 3rem 0;
    margin-top: 2.5rem;
  }
  .roi-calculator__content .roi-calculator__form form .fields-group:before {
    position: absolute;
    content: "";
    width: calc(100% - 6rem);
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
  }
  .roi-calculator__content .roi-calculator__form form .fields-group:first-child {
    margin-top: 0;
    padding: 0 3rem;
  }
  .roi-calculator__content .roi-calculator__form form .fields-group:first-child:before {
    display: none;
  }
}
@media (max-width: 768px) {
  .roi-calculator__content .roi-calculator__form form .fields-group {
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 1.5rem 0;
    margin-top: 2rem;
  }
  .roi-calculator__content .roi-calculator__form form .fields-group:before {
    width: calc(100% - 3rem);
  }
  .roi-calculator__content .roi-calculator__form form .fields-group:first-child {
    margin-top: 0;
    padding: 0 1.5rem;
  }
}
.roi-calculator__content .roi-calculator__form form .fields-group__wrap {
  display: flex;
  gap: 1.5rem;
  width: 100%;
}
@media (max-width: 1440px) {
  .roi-calculator__content .roi-calculator__form form .fields-group__wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .roi-calculator__content .roi-calculator__form form .fields-group__wrap {
    width: calc(100% - 3rem);
  }
}
.roi-calculator__content .roi-calculator__form form .fields-group__wrap .field {
  width: 100%;
}
.roi-calculator__content .roi-calculator__form form .fields-group__wrap .field:nth-child(1), .roi-calculator__content .roi-calculator__form form .fields-group__wrap .field:nth-child(2) {
  max-width: 10.75rem;
}
@media (max-width: 1440px) {
  .roi-calculator__content .roi-calculator__form form .fields-group__wrap .field:nth-child(1), .roi-calculator__content .roi-calculator__form form .fields-group__wrap .field:nth-child(2) {
    max-width: calc(50% - 0.75rem);
  }
}
@media (max-width: 768px) {
  .roi-calculator__content .roi-calculator__form form .fields-group__wrap .field:nth-child(1), .roi-calculator__content .roi-calculator__form form .fields-group__wrap .field:nth-child(2) {
    max-width: 100%;
  }
}
.roi-calculator__content .roi-calculator__form form .fields-group__wrap .field:nth-child(3) {
  max-width: 16.2rem;
}
@media (max-width: 1440px) {
  .roi-calculator__content .roi-calculator__form form .fields-group__wrap .field:nth-child(3) {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .roi-calculator__content .roi-calculator__form form .fields-group__wrap .field:nth-child(3) {
    max-width: 100%;
  }
}
.roi-calculator__content .roi-calculator__form form .fields-group__wrap .field:nth-child(4) {
  max-width: 16.2rem;
}
@media (max-width: 1440px) {
  .roi-calculator__content .roi-calculator__form form .fields-group__wrap .field:nth-child(4) {
    max-width: calc(50% - 0.75rem);
  }
}
@media (max-width: 768px) {
  .roi-calculator__content .roi-calculator__form form .fields-group__wrap .field:nth-child(4) {
    max-width: 100%;
  }
}
.roi-calculator__content .roi-calculator__form form .fields-group__wrap .field:nth-child(5) {
  max-width: 10.75rem;
}
@media (max-width: 1440px) {
  .roi-calculator__content .roi-calculator__form form .fields-group__wrap .field:nth-child(5) {
    max-width: calc(50% - 0.75rem);
  }
}
@media (max-width: 768px) {
  .roi-calculator__content .roi-calculator__form form .fields-group__wrap .field:nth-child(5) {
    max-width: 100%;
  }
}
.roi-calculator__content .roi-calculator__form form .fields-group__wrap p.label {
  color: var(--Platform-white, #FFF);
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: 1.1px;
  margin-bottom: 0.75rem;
}
.roi-calculator__content .roi-calculator__form form .fields-group__wrap p.label span {
  color: var(--platform-white-60, rgba(255, 255, 255, 0.6));
}
.roi-calculator__content .roi-calculator__form form .remove-fields {
  height: 3.5rem;
  width: 100%;
  max-width: 2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 1440px) {
  .roi-calculator__content .roi-calculator__form form .remove-fields {
    margin-top: 1.75rem;
  }
}
.roi-calculator__content .roi-calculator__form form .remove-fields svg {
  cursor: pointer;
  width: 2rem;
  max-width: 2rem;
  height: 2rem;
  transition: all 0.2s linear;
}
.roi-calculator__content .roi-calculator__form form .remove-fields svg:hover {
  stroke: var(--Website-cyan, #14FFF2);
  stroke-opacity: 1;
}
.roi-calculator__content .roi-calculator__form form .navigation-button {
  padding: 1.5rem 4rem 2rem;
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--website-white-10, rgba(255, 255, 255, 0.1));
}
@media (max-width: 1440px) {
  .roi-calculator__content .roi-calculator__form form .navigation-button {
    padding: 1.25rem 3rem 1.5rem;
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .roi-calculator__content .roi-calculator__form form .navigation-button {
    padding: 1rem 1.5rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .roi-calculator__content .roi-calculator__form form .navigation-button {
    flex-direction: column;
  }
}
.roi-calculator__content .roi-calculator__form form .navigation-button button[type=submit] {
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
  padding: 1rem 2rem;
}
@media (max-width: 1440px) {
  .roi-calculator__content .roi-calculator__form form .navigation-button button[type=submit] {
    padding: 1rem 2rem;
  }
}
@media (max-width: 480px) {
  .roi-calculator__content .roi-calculator__form form .navigation-button button[type=submit] {
    width: 100%;
  }
}
.roi-calculator__content .roi-calculator__form form .navigation-button button.add-new-fields {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--Website-cyan, #14FFF2);
  font-family: "Open Sans", sans-serif;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
}
.roi-calculator__content .roi-calculator__form form .navigation-button button.add-new-fields svg {
  width: 2rem;
  height: 2rem;
}
.roi-calculator__content .roi-calculator__form .nice-select, .roi-calculator__content .roi-calculator__form input {
  width: 100%;
  display: flex;
  height: 3.5rem;
  padding: 0.625rem 1rem 0.75rem 1rem;
  align-items: center;
  gap: 1.25rem;
  align-self: stretch;
  border-radius: 0.25rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.roi-calculator__content .roi-calculator__form .nice-select .current, .roi-calculator__content .roi-calculator__form input .current {
  color: var(--Platform-white, #FFF);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.roi-calculator__content .roi-calculator__form .nice-select .nice-select-dropdown, .roi-calculator__content .roi-calculator__form input .nice-select-dropdown {
  width: 100%;
}
.roi-calculator__content .roi-calculator__form .nice-select .list, .roi-calculator__content .roi-calculator__form input .list {
  padding-block: 0.25rem;
  border-radius: 0.25rem;
  border: 1px solid var(--website-white-10, rgba(255, 255, 255, 0.1));
  background: #2C5084;
  box-shadow: 0px 2px 8px 0px rgba(10, 13, 27, 0.15), 0px 6px 20px 0px rgba(10, 13, 27, 0.2), 0px 12px 60px 0px rgba(10, 13, 27, 0.2);
  max-height: 9.063rem;
}
@media (max-width: 1440px) {
  .roi-calculator__content .roi-calculator__form .nice-select .list, .roi-calculator__content .roi-calculator__form input .list {
    max-height: 7.813rem;
  }
}
@media (max-width: 480px) {
  .roi-calculator__content .roi-calculator__form .nice-select .list, .roi-calculator__content .roi-calculator__form input .list {
    max-height: 12.063rem;
  }
}
.roi-calculator__content .roi-calculator__form .nice-select .option, .roi-calculator__content .roi-calculator__form input .option {
  color: white;
  line-height: 1.4;
  padding: 0.8rem 1rem;
  white-space: normal;
}
.roi-calculator__content .roi-calculator__form .nice-select .option:hover, .roi-calculator__content .roi-calculator__form .nice-select .option.focus, .roi-calculator__content .roi-calculator__form .nice-select .option.selected.focus, .roi-calculator__content .roi-calculator__form input .option:hover, .roi-calculator__content .roi-calculator__form input .option.focus, .roi-calculator__content .roi-calculator__form input .option.selected.focus {
  color: var(--Website-cyan, #14FFF2);
  font-weight: normal;
  background: var(--Website-screen-BG, #1C3D70);
}
.roi-calculator__content .roi-calculator__form .nice-select {
  padding: 0.625rem 2.5rem 0.75rem 1rem;
}
.roi-calculator__content .roi-calculator__form .nice-select:after {
  width: 10px;
  height: 10px;
  right: 1rem;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.roi-calculator__content .roi-calculator__form .nice-select.open:after {
  border-bottom: 2px solid var(--Website-cyan, #14FFF2);
  border-right: 2px solid var(--Website-cyan, #14FFF2);
}
.roi-calculator__content .roi-calculator__result-chart {
  padding: 0 4rem 4rem;
}
@media (max-width: 1440px) {
  .roi-calculator__content .roi-calculator__result-chart {
    padding: 0 3rem 3rem;
  }
}
@media (max-width: 768px) {
  .roi-calculator__content .roi-calculator__result-chart {
    padding: 0 1.5rem 2rem;
  }
}
.roi-calculator__content .result-chart {
  display: flex;
  gap: 3rem;
}
@media (max-width: 1080px) {
  .roi-calculator__content .result-chart {
    flex-direction: column;
    gap: 2rem;
  }
}
.roi-calculator__content .result-chart__chart {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 5rem;
  width: 100%;
  max-width: 29rem;
  height: 22.75rem;
  border-radius: 13.532px;
  border: 2px solid var(--website-white-10, rgba(255, 255, 255, 0.1));
  background: var(--website-white-10, rgba(255, 255, 255, 0.1));
}
@media (max-width: 1080px) {
  .roi-calculator__content .result-chart__chart {
    margin: 0 auto;
  }
}
@media (max-width: 580px) {
  .roi-calculator__content .result-chart__chart {
    padding: 1rem 1rem;
    height: 18.55rem;
  }
}
.roi-calculator__content .result-chart__report {
  padding: 2rem 0;
  flex: 1;
}
@media (max-width: 1080px) {
  .roi-calculator__content .result-chart__report {
    padding: 0;
  }
}
.roi-calculator__content .result-chart__report p {
  color: var(--platform-white-60, rgba(255, 255, 255, 0.6));
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 1440px) {
  .roi-calculator__content .result-chart__report p {
    font-size: 0.75rem;
  }
}
.roi-calculator__content .result-chart__report form {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}
@media (max-width: 580px) {
  .roi-calculator__content .result-chart__report form {
    flex-direction: column;
  }
}
.roi-calculator__content .result-chart__report form label {
  width: 100%;
  color: var(--platform-white-60, rgba(255, 255, 255, 0.6));
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.roi-calculator__content .result-chart__report form label span {
  margin-bottom: 0.5rem;
  display: block;
  text-align: start;
}
.roi-calculator__content .result-chart__report form input {
  padding: 1.25rem 1.25rem;
}
.roi-calculator__content .result-chart__report form button[type=submit] {
  padding: 1rem 2rem;
  display: flex;
  gap: 0.625rem;
}
@media (max-width: 580px) {
  .roi-calculator__content .result-chart__report form button[type=submit] {
    width: 100%;
  }
}
.roi-calculator__content .result-chart__report form button[type=submit] svg {
  transition: 0.25s;
}
.roi-calculator__content .result-chart__report form button[type=submit]:hover svg {
  stroke: var(--cyan);
}

.section__tabs {
  position: relative;
}
.section__tabs .bg__image svg {
  top: 0;
  transform: none;
}
.section__tabs--wrap {
  max-width: 1535px;
}
@media (max-width: 1800px) {
  .section__tabs--wrap {
    max-width: 992px;
  }
}

.tabs {
  display: flex;
  gap: 60px;
  padding-block: 10rem 9rem;
}
@media (width <= 112.5rem) {
  .tabs {
    gap: 48px;
    padding-block: 8rem 6.6rem;
  }
}
@media (width <= 61.938rem) {
  .tabs {
    flex-direction: column;
    padding-block: 60px;
    gap: 32px;
  }
}
.tabs__sitebar {
  max-width: 460px;
  width: 100%;
  position: relative;
  overflow: visible;
}
@media (width <= 112.5rem) {
  .tabs__sitebar {
    max-width: 280px;
  }
}
@media (width <= 61.938rem) {
  .tabs__sitebar {
    max-width: 100%;
  }
}
.tabs__sitebar--wrap {
  position: sticky;
  top: 200px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(100px);
  display: flex;
  flex-direction: column;
  height: fit-content;
}
.tabs__sitebar--head {
  padding: 22px 32px 20px;
  border-bottom: 1px solid var(--Website-BG-section, #082B5F);
}
@media (width <= 112.5rem) {
  .tabs__sitebar--head {
    padding: 16px 16px 12px;
  }
}
.tabs__sitebar--head h4 {
  color: var(--Website-white, var(--Grays-White, #FFF));
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 175%;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
@media (width <= 112.5rem) {
  .tabs__sitebar--head h4 {
    font-size: 16px;
  }
}
@media (width <= 61.938rem) {
  .tabs__sitebar--head h4 {
    text-align: center;
  }
}
.tabs__sitebar--button {
  display: flex;
  padding: 31px;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  align-self: stretch;
}
@media (width <= 112.5rem) {
  .tabs__sitebar--button {
    gap: 20px;
    padding: 16px;
  }
}
@media (width <= 61.938rem) {
  .tabs__sitebar--button {
    gap: 12px;
  }
}
.tabs__sitebar--button li {
  cursor: pointer;
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
}
@media (width <= 112.5rem) {
  .tabs__sitebar--button li {
    font-size: 14px;
    line-height: 150%;
  }
}
.tabs__sitebar--button li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M5 8C6.65685 8 8 6.65685 8 5C8 3.34315 6.65685 2 5 2C3.34315 2 2 3.34315 2 5C2 6.65685 3.34315 8 5 8Z' fill='white' fill-opacity='0.4'/%3E%3Cpath d='M5 9C7.20914 9 9 7.20914 9 5C9 2.79086 7.20914 1 5 1C2.79086 1 1 2.79086 1 5C1 7.20914 2.79086 9 5 9Z' stroke='white' stroke-opacity='0.2' stroke-width='2'/%3E%3C/svg%3E");
}
.tabs__sitebar--button li.tab__active {
  font-weight: 700;
  color: var(--Website-cyan, #14FFF2);
}
.tabs__sitebar--button li.tab__active:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  background: var(--Website-cyan, #14FFF2);
}
.tabs__sitebar--bottom {
  display: flex;
  padding: 32px 32px 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 0px 0px 12px 12px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.16) 100%), #082B5F;
  box-shadow: 0px 4px 24px 0px rgba(128, 169, 215, 0.06);
}
@media (width <= 112.5rem) {
  .tabs__sitebar--bottom {
    padding: 16px 16px 24px 16px;
  }
}
.tabs__sitebar--bottom h5 {
  max-width: 320px;
  color: var(--Website-white, var(--Grays-White, #FFF));
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 175%;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
@media (width <= 112.5rem) {
  .tabs__sitebar--bottom h5 {
    font-size: 14px;
  }
}
.tabs__sitebar--bottom .btn-secondary {
  padding: 0.8rem 1.5rem;
}
.tabs__contents {
  padding: 0;
  width: 100%;
  position: relative;
}
.tabs__contents:after {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  border-radius: 32px;
  background: #082B5F;
  filter: blur(30px);
  z-index: -1;
}
.tabs__content {
  padding: 0;
  width: 100%;
  margin-top: 120px;
}
@media (width <= 112.5rem) {
  .tabs__content {
    margin-top: 80px;
  }
}
@media (width <= 61.938rem) {
  .tabs__content {
    margin-top: 48px;
  }
}
.tabs__content:first-child {
  margin-top: 0px;
}
.tabs__content h1, .tabs__content h2, .tabs__content h3, .tabs__content h4 {
  color: var(--Grays-White, #FFF);
  text-transform: uppercase;
  text-align: left;
  margin-block: 24px;
  letter-spacing: 0.47px;
  line-height: 140%;
}
.tabs__content :first-child {
  margin-top: 0;
}
.tabs__content ul, .tabs__content ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-block: 25px;
}
.tabs__content ul li, .tabs__content ol li {
  list-style: inside;
  color: var(--Grays-White, #FFF);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: 1.6px;
}
.tabs__content ul li::marker, .tabs__content ol li::marker {
  color: var(--Website-cyan, #14FFF2);
}
.tabs__content p {
  margin-block: 16px;
  letter-spacing: 1.6px;
}
.tabs__content p img {
  margin-block: 23px !important;
}
.tabs__content img {
  width: 100%;
  height: fit-content;
  object-fit: contain;
  margin-block: 40px;
}
@media (width <= 61.938rem) {
  .tabs__content img {
    margin-block: 24px;
  }
}

.ui-tabs-vertical .ui-tabs-nav li {
  width: 100%;
  border-bottom-width: 1px !important;
  border-right-width: 0 !important;
  margin: 0 -1px 0.2em 0;
}
.ui-tabs-vertical .ui-tabs-nav li a {
  display: block;
}

#gform_wrapper_14 {
  margin-top: 2.8rem;
  max-width: 520px;
}
#gform_wrapper_14 .gform_anchor, #gform_wrapper_14 .gform_heading {
  display: none;
}
#gform_wrapper_14 .gform_validation_errors {
  display: none;
}
#gform_wrapper_14 .gfield_validation_message {
  border: none;
  position: absolute;
  top: 110%;
  color: #ffffff;
  background: transparent;
  padding: 0;
}
@media (max-width: 580px) {
  #gform_wrapper_14 .gfield_validation_message {
    top: 105%;
    margin: 0;
  }
}
#gform_wrapper_14 #gform_14 {
  width: 100%;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 43, 95, 0.2);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
}
#gform_wrapper_14 #gform_14 .gform-body {
  width: 100%;
}
#gform_wrapper_14 #gform_14 .gfield_label {
  display: none;
}
#gform_wrapper_14 #gform_14 input[type=text], #gform_wrapper_14 #gform_14 input[type=email], #gform_wrapper_14 #gform_14 input[type=number], #gform_wrapper_14 #gform_14 textarea {
  border: none;
  padding: 16px 26px;
}
#gform_wrapper_14 #gform_14 input[type=text]::placeholder, #gform_wrapper_14 #gform_14 input[type=email]::placeholder, #gform_wrapper_14 #gform_14 input[type=number]::placeholder, #gform_wrapper_14 #gform_14 textarea::placeholder {
  color: var(--platform-white-60, rgba(255, 255, 255, 0.6));
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: 1.6px;
}
#gform_wrapper_14 #gform_14 .gform_footer {
  padding: 0;
  margin: 0;
}
#gform_wrapper_14 #gform_14 .gform_footer .gform_ajax_spinner {
  display: none;
}
#gform_wrapper_14 #gform_14 .gform_footer input[type=submit] {
  color: var(--Website-BG-section, #082B5F);
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin: 0;
  padding: 12px 21px;
  transition: 0.25s;
  border: 2px solid var(--Website-cyan, #14FFF2);
}
#gform_wrapper_14 #gform_14 .gform_footer input[type=submit]:hover {
  background: transparent;
  color: var(--Website-cyan, #14FFF2);
  border: 2px solid var(--Website-cyan, #14FFF2);
}
@media (width <= 61.938rem) {
  #gform_wrapper_14 #gform_14 .gform_footer input[type=submit] {
    padding: 16px;
    letter-spacing: 2px;
  }
}

.features-list {
  position: relative;
  padding-block: 8.15rem 9.25rem;
}
@media (max-width: 991px) {
  .features-list {
    padding-block: 3rem 4rem;
  }
}
.features-list__wrap {
  max-width: 1570px;
  display: flex;
  gap: 9.13rem;
}
@media (max-width: 1800px) {
  .features-list__wrap {
    gap: 2rem;
    max-width: 992px;
  }
}
@media (max-width: 991px) {
  .features-list__wrap {
    gap: 5rem;
    flex-direction: column;
  }
}
.features-list__head {
  max-width: 532px;
  width: 100%;
  padding-top: 3px;
}
@media (max-width: 1800px) {
  .features-list__head {
    padding-top: 0;
  }
}
.features-list__head h3 {
  color: var(--Grays-White, #FFF);
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  line-height: 140%;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
@media (max-width: 768px) {
  .features-list__head h3 {
    font-size: 1.5rem;
  }
}
.features-list__head a {
  padding: 1.25rem 1.9rem;
  margin-top: 3rem;
  letter-spacing: 0.1875rem;
}
@media (max-width: 1800px) {
  .features-list__head a {
    padding: 0.75rem 1rem;
  }
}
@media (max-width: 991px) {
  .features-list__head a {
    margin-top: 1.5rem;
  }
}
.features-list__list {
  display: flex;
  flex-direction: column;
  gap: 5.25rem;
  max-width: 46.9rem;
}
@media (max-width: 1800px) {
  .features-list__list {
    gap: 4rem;
  }
}
@media (max-width: 991px) {
  .features-list__list {
    gap: 3rem;
  }
}
.features-list__item {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 580px) {
  .features-list__item {
    gap: 1rem;
  }
}
.features-list__item .img {
  max-width: 6.5rem;
  max-height: 6.5rem;
  width: 100%;
  height: 100%;
}
@media (max-width: 1800px) {
  .features-list__item .img {
    max-width: 4.5rem;
    max-height: 4.5rem;
  }
}
@media (max-width: 580px) {
  .features-list__item .img {
    max-width: 3.5rem;
    max-height: 3.5rem;
  }
}
.features-list__item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.features-list__item .text h4 {
  font-style: normal;
  font-weight: 800;
  line-height: 145%;
  letter-spacing: 2.6px;
  margin-bottom: 10px;
}
@media (max-width: 1800px) {
  .features-list__item .text h4 {
    font-size: 1.25rem;
    letter-spacing: 1.6px;
  }
}
.faq-image {
  position: relative;
}
.faq-image .bg__image {
  background: rgba(8, 43, 95, 0.5);
}
.faq-image__wrap {
  padding-block: 8.75rem;
  max-width: 1570px;
}
@media (max-width: 1800px) {
  .faq-image__wrap {
    max-width: 992px;
  }
}
@media (max-width: 991px) {
  .faq-image__wrap {
    padding-block: 4rem;
  }
}
.faq-image__head {
  margin-bottom: 4.3rem;
}
@media (max-width: 991px) {
  .faq-image__head {
    margin-bottom: 2rem;
  }
}
.faq-image__head h2 {
  color: var(--Grays-White, #FFF);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 800;
  line-height: 122.222%;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
}
@media (max-width: 1800px) {
  .faq-image__head h2 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .faq-image__head h2 {
    font-size: 1.5rem;
  }
}
.faq-image__content {
  display: flex;
  align-items: flex-start;
  gap: 4.45rem;
}
@media (max-width: 1800px) {
  .faq-image__content {
    gap: 2rem;
  }
}
@media (max-width: 991px) {
  .faq-image__content {
    flex-direction: column-reverse;
  }
}
.faq-image__faq {
  max-width: 30rem;
  width: 100%;
}
@media (max-width: 1800px) {
  .faq-image__faq {
    max-width: 20rem;
  }
}
@media (max-width: 991px) {
  .faq-image__faq {
    max-width: 100%;
  }
}
.faq-image__faq .accordion-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-image__faq .accordion-block__item {
  border-radius: 0.5rem;
  background: rgba(8, 43, 95, 0.7);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 2rem;
  gap: 1.25rem;
}
@media (max-width: 1800px) {
  .faq-image__faq .accordion-block__item {
    padding: 1rem 1rem;
  }
}
.faq-image__faq .accordion-block__label {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 1800px) {
  .faq-image__faq .accordion-block__label {
    gap: 1rem;
  }
}
.faq-image__faq .accordion-block__label h5 {
  color: var(--Grays-White, #FFF);
  font-size: 1rem;
  font-style: normal;
  text-align: start;
  font-weight: 800;
  line-height: 150%;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}
@media (max-width: 1800px) {
  .faq-image__faq .accordion-block__label h5 {
    font-size: 0.875rem;
  }
}
@media (max-width: 991px) {
  .faq-image__faq .accordion-block__label h5 {
    font-size: 1rem;
  }
}
.faq-image__faq .accordion-block__label:after {
  transition: all 0.2s linear;
  content: "";
  max-width: 24px;
  width: 100%;
  height: 24px;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 9L12 15L6 9' stroke='white' stroke-opacity='0.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.faq-image__faq .accordion-block__label.active:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 9L12 15L6 9' stroke='%2314FFF2' stroke-opacity='0.6' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}
.faq-image__faq .accordion-block__body p {
  color: var(--Grays-White, #FFF);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 186.667%;
  letter-spacing: 0.09375rem;
}
@media (max-width: 1800px) {
  .faq-image__faq .accordion-block__body p {
    font-size: 0.75rem;
  }
}
@media (max-width: 991px) {
  .faq-image__faq .accordion-block__body p {
    font-size: 0.875rem;
  }
}
.faq-image__faq .btn {
  margin-top: 2.5rem;
  width: 100%;
  letter-spacing: 0.18rem;
}
@media (max-width: 991px) {
  .faq-image__faq .btn {
    margin-top: 1.5rem;
  }
}
.faq-image__image {
  max-width: 876px;
  width: 100%;
  max-height: 41.25rem;
  height: 100%;
}
.faq-image__image img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*
The styles were transferred on 04.01.2024,
from the "style.css" file to WordPress.
*/
body,
html {
  scroll-behavior: smooth;
}

.tabs__intro-contents .js-tab-content {
  min-height: 272px;
}

.tabs__conditions-contents .js-tab-content {
  min-height: 392px;
}

.section__conditions .tabs__conditions .tab__content {
  display: flex;
  min-width: 100%;
  animation: none;
  opacity: 1;
  transition: 0.7s;
  margin-left: -100%;
}

.section__conditions .tabs__conditions .tab__content-active {
  margin-left: 0;
}

.section__conditions .tabs__conditions .tab__content-active ~ .tab__content {
  margin-left: 0;
}

.section__conditions .tabs__conditions-contents {
  display: flex;
  overflow: hidden;
}

.retreat {
  padding-top: 23rem;
}

.wpcf7 form .wpcf7-response-output,
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  color: white;
  padding: 10px !important;
  border-radius: 10px !important;
}

.video__wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}

.video__wrap {
  max-width: 100%;
  width: 50.5rem;
}

.tabs__price-wrapper {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  display: flex;
  justify-content: center;
}

.tabs__price {
  display: flex;
  gap: 3.5rem;
}

.tabs__price .tab {
  font-size: 1rem;
  line-height: 2.25rem;
}

.price__container {
  width: 100%;
  max-width: 1900px;
  margin: auto;
}

.price-list__container .tab-body {
  display: none;
}

.price-list__container .tab-body.active {
  display: block;
}

.price-list__container {
  padding-left: 4rem;
  padding-right: 4rem;
}

.price-list__wrapper {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  padding-bottom: 1rem;
  padding-left: 4rem;
  padding-right: 4rem;
  margin-left: -4rem;
  margin-right: -4rem;
  overflow: auto;
}

.price-list__wrapper::-webkit-scrollbar-track {
  background: transparent;
  margin: 0 4rem;
}

@media only screen and (max-width: 48rem) {
  .price-list__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .price-list__wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .price-list__wrapper::-webkit-scrollbar-track {
    margin: 0 2rem;
  }
}
@media only screen and (max-width: 25rem) {
  .price-list__container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .price-list__wrapper {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    scroll-snap-type: x mandatory;
  }
  .price-list__wrapper::-webkit-scrollbar-track {
    margin: 0 0.5rem;
  }
  .price-list__plan-wrapper {
    scroll-snap-align: center;
  }
}
.price-list__options-list {
  display: flex;
  flex-direction: column;
}

.price-list__option-item {
  height: 3.5rem;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  border-top: solid 1px rgba(255, 255, 255, 0.1019607843);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.price-list__option-item.centered {
  justify-content: center;
}

.price-list__option-item:last-of-type {
  border-bottom: solid 1px rgba(255, 255, 255, 0.1019607843);
}

.price-list__plan-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  width: 466px;
  min-width: 350px;
}
@media only screen and (max-width: 93.75em) {
  .price-list__plan-wrapper {
    padding: 0.5rem;
  }
}

.price-list__plan-wrapper.with-bg {
  background: #002f74;
  border: 1px solid #292e40;
}

.price-list__color-line {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 1rem;
}

.price-list__plan-header-wrapper {
  display: flex;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  align-items: flex-start;
}

.price-list__plan-header-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.price-list__price {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 2.25rem;
  text-transform: uppercase;
  color: #14fff2;
}

.price-list__price-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.price-list__price-wrapper span {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
}

.price-list__plan-ticket {
  display: flex;
  border: 1px solid #14fff2;
  border-radius: 4px;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 0.688rem;
  line-height: 1rem;
  color: #ffffff;
  white-space: nowrap;
  position: absolute;
}

.price-list__plan-header-name {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.price-list__plan-bottom {
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 112.5em) {
  .product__inner.right .product__item:first-child {
    padding-top: 8rem;
  }
}
@media only screen and (max-width: 112.5em) {
  .section__pricing {
    padding: 15rem 0 10rem;
  }
}
@media only screen and (max-width: 48em) {
  .section__pricing {
    padding: 10rem 0 2rem;
  }
  .product__inner.right .product__item:first-child {
    padding-top: 4rem;
  }
  .price-list__plan-header-wrapper {
    padding-top: 2rem;
  }
}
.price-list__plan-wrapper:nth-child(2) .price-list__color-line {
  background-color: #bf5af2;
}

.price-list__plan-wrapper:nth-child(3) .price-list__color-line {
  background-color: #0a84ff;
}

.price-list__plan-wrapper:nth-child(4) .price-list__color-line {
  background-color: #ff9f0a;
}

.nav ul li.active {
  color: var(--cyan);
  opacity: 1;
}

.swiper-pagination {
  z-index: 2;
}

.about__link li a {
  transition: 0.2s;
}

.about__link li a::after {
  transition: 0.2s;
}

.about__link li:hover a {
  color: var(--cyan);
}

.about__link li:hover a::after {
  transform: translateY(-50%) translateX(0.5rem);
}

.section__solutions .beyond-slide-img img {
  transition: 0.2s;
  opacity: 0.8;
}

.section__solutions .beyond-slide-img-box {
  border-radius: 50%;
  overflow: hidden;
}

.section__solutions .beyond-slide-img:hover img {
  transform: scale(1.15);
  opacity: 1;
}

.section__solutions .team__slider-wrap .beyond-slider {
  padding-top: 2rem;
}

.section__solutions .team__slider-wrap .swiper-button-next {
  top: 50%;
  transform: translate(50%, -50%);
  transition: 0.2s;
}

.section__solutions .team__slider-wrap .swiper-button-next:hover {
  transform: translate(70%, -50%);
}

.section__solutions .team__slider-wrap .swiper-button-prev {
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}

.section__solutions .team__slider-wrap .swiper-button-prev:hover {
  transform: translate(-70%, -50%);
}

.expiria_link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5019607843);
}

.footer__bottom ul {
  opacity: 1;
  gap: 0.75rem 2rem;
}

@media only screen and (max-width: 48em) {
  .footer__bottom ul {
    gap: 0.75rem 1rem;
  }
}
.section__faq .faq-block-top {
  border-radius: 2rem;
}

.select-items {
  max-height: 17.5rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.select-items::-webkit-scrollbar {
  width: 0.25rem;
  background-color: #eee;
  border-radius: 0.25rem;
}

.select-items::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  background-color: rgb(57, 99, 173);
}

.select-items::-webkit-scrollbar-track {
  border-radius: 0.25rem;
}

.units__list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-transparent-border {
  color: var(--white);
  padding: 1rem 1.5rem;
  border-width: 0.125rem;
}

.about__benefits-list {
  grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 56.25em) {
  .about__benefits-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  display: none;
}

.popup.active {
  display: flex;
}

.popup-container-blur {
  background: rgba(29, 31, 39, 0.7);
  /* backdrop-filter: blur(12px); */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.popup-container {
  position: relative;
}

.popup-container.primary {
  max-height: 90vh;
  overflow: auto;
  padding: 56px;
  background: #082b5f;
  border: 2px solid #012d6e;
  box-shadow: 0px 12px 40px rgba(2, 5, 15, 0.25);
  border-radius: 8px;
  z-index: 10;
}

.popup-container.md {
  width: 700px;
  max-width: 90vw;
  height: auto;
}

.popup-container.lg {
  width: 100rem;
  max-width: 90vw;
  height: auto;
}

.popup-embed iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}

.popup-container.sm {
  width: 500px;
  height: auto;
  padding: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.popup-close::after,
.popup-close::before {
  content: "";
  height: 1px;
  width: 100%;
  background: gray;
  display: block;
  position: absolute;
}

.popup-close::after {
  transform: rotate(45deg);
}

.popup-close::before {
  transform: rotate(-45deg);
}

input[type=tel],
select {
  width: 100%;
  border: 1px solid var(--border-input);
  border-radius: 0.25rem;
  padding: 1.4rem 1.25rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 400;
  background-color: transparent;
}

input[type=tel]::placeholder {
  color: var(--gray);
}

option {
  color: black;
}

.gform_legacy_markup_wrapper input,
.gform_legacy_markup_wrapper select,
.gform_legacy_markup_wrapper textarea {
  padding: 19px !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  line-height: 16px !important;
  border: 1px solid var(--border-input) !important;
  margin-top: 0 !important;
}

.gfield {
  max-width: 100% !important;
  border: none !important;
  background: transparent !important;
}

.gform_legacy_markup_wrapper {
  margin-top: 0;
  margin-bottom: 0;
}

input[type=checkbox] {
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 4px !important;
  height: 24px;
  width: 24px;
}

.gchoice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.gchoice label {
  color: rgba(255, 255, 255, 0.6);
}

.gform_button {
  background: #14fff2;
  border-radius: 4px;
  width: 100% !important;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00206c;
  cursor: pointer;
}

.gform_legacy_markup_wrapper .gform_footer {
  display: flex;
  gap: 16px;
}

.gform_legacy_markup_wrapper div.validation_error,
.gform_legacy_markup_wrapper ol.validation_list,
.gform_legacy_markup_wrapper .gform_validation_errors > h2,
.gform_legacy_markup_wrapper .validation_message {
  color: #e23c3c !important;
}

.gform_legacy_markup_wrapper div.validation_error,
.gform_legacy_markup_wrapper ol.validation_list {
  margin-bottom: 16px !important;
}

.gform_legacy_markup_wrapper div.validation_error {
  border-color: #e23c3c !important;
}

.gform_legacy_markup_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error {
  margin-top: 0;
  margin-bottom: 0 !important;
}

.gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
  padding-top: 4px;
}

.gform_confirmation_message {
  color: rgba(255, 255, 255, 0.6);
}

.gform_legacy_markup_wrapper h3.gform_title {
  font-size: 2rem;
  line-height: 2rem;
}

.gform_title {
  color: var(--white);
}

.footer__nav .gform_legacy_markup_wrapper {
  margin-bottom: 0px;
  margin-top: 0px;
}

.footer__nav .gform_legacy_markup_wrapper .gfield:not(.gfield--type-checkbox) input {
  width: 100% !important;
}

.footer__nav .gform_legacy_markup_wrapper .gfield {
  margin-top: 0;
}

.footer__nav .gform_heading {
  margin-bottom: 8px !important;
}

.footer__nav .gform_title {
  margin: 0;
}

.footer__nav .gform_description {
  margin: 0;
}

.footer__nav .gform_footer {
  margin-top: 0 !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.footer__nav .gform_footer .gform_button {
  padding: 16px !important;
}

.section__intro .tender__img .video-play-button {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media only screen and (max-width: 48em) {
  .section__intro .tender__img .video-play-button {
    right: unset;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.video-play-button {
  display: flex;
  align-items: center;
  padding: 8px 40px 8px 40px;
  gap: 16px;
  position: absolute;
  z-index: 5;
  background: rgba(0, 102, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.24), 0px 10px 30px rgba(0, 0, 0, 0.3), 0px 20px 50px rgba(0, 0, 0, 0.4), inset 0px 4px 20px rgba(255, 255, 255, 0.12), inset 0px 1px 4px rgba(255, 255, 255, 0.2), inset 0px 4px 32px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

/* chart paper */
.chart-paper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  filter: drop-shadow(0px 2px 20px rgba(130, 219, 255, 0.08)) drop-shadow(0px 2px 8px rgba(159, 227, 255, 0.16)) drop-shadow(0px 12px 100px rgba(174, 202, 255, 0.32));
  padding: 0;
  background: #082b5f;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  min-width: 500px;
  max-width: 100%;
}

#fbxChart, #faxChart {
  padding: 0 2rem;
}
@media (width <= 767px) {
  #fbxChart, #faxChart {
    padding: 0 1rem;
  }
}

#legend-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 0;
}
#legend-container .legend-container__title {
  padding: 0 2rem;
  color: var(--platform-white-60, rgba(255, 255, 255, 0.6));
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
  margin-bottom: 4px;
}
@media (width <= 767px) {
  #legend-container .legend-container__title {
    font-size: 12px;
    padding: 0 1rem;
  }
}
#legend-container div.nice-select {
  padding: 0 2rem;
}
@media (width <= 767px) {
  #legend-container div.nice-select {
    padding: 0 1rem;
  }
}

.chart-paper__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 2rem 0;
}
@media (width <= 767px) {
  .chart-paper__header {
    padding: 1rem 1rem 0;
  }
}

.chart-paper__ticker {
  border: 1px solid #0a84ff;
  border-radius: 2px;
  color: #ffffff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  padding: 6px 8px;
}

.chart-paper__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
}

.products__wrap {
  gap: 64px;
}

.section__intro--products .block-right {
  width: 100%;
  max-width: 920px;
}
@media (width <= 1600px) {
  .section__intro--products .block-right {
    max-width: 720px;
  }
}
@media (width <= 1440px) {
  .section__intro--products .block-right {
    max-width: 680px;
  }
}
@media (width <= 1300px) {
  .section__intro--products .block-right {
    max-width: 100%;
  }
}

.products-link-list .link-list {
  margin-top: 60px;
  margin-bottom: 56px;
}
@media (width <= 600px) {
  .products-link-list .link-list {
    margin-bottom: 36px;
  }
}
.products-link-list .link-list__wrap {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(28, 61, 112, 0.6);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: 48px 60px;
}
@media (width <= 1600px) {
  .products-link-list .link-list__wrap {
    padding: 48px;
  }
}
@media (width <= 767px) {
  .products-link-list .link-list__wrap {
    padding: 16px;
  }
}
.products-link-list .link-list__wrap h4 {
  color: var(--Website-white, #FFF);
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.66;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
}
@media (width <= 992px) {
  .products-link-list .link-list__wrap h4 {
    font-size: 20px;
    line-height: 1.4;
  }
}
.products-link-list .link-list ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px 40px;
}
@media (width <= 1600px) {
  .products-link-list .link-list ul {
    gap: 32px;
  }
}
@media (width <= 1300px) {
  .products-link-list .link-list ul {
    flex-direction: column;
    gap: 16px;
  }
}
.products-link-list .link-list ul li {
  width: calc(50% - 40px);
  color: var(--Website-Light-gray, #EAF0F6);
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
@media (width <= 1600px) {
  .products-link-list .link-list ul li {
    width: calc(50% - 16px);
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 2.24px;
  }
}
@media (width <= 1300px) {
  .products-link-list .link-list ul li {
    width: 100%;
  }
}
.products-link-list .link-list ul li a {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (width <= 1600px) {
  .products-link-list .link-list ul li a {
    gap: 8px;
  }
}
.products-link-list .link-list ul li a svg {
  transition: all 0.2s linear;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}
.products-link-list .link-list ul li a:hover svg {
  transform: translateX(5px);
}
.products-link-list .link-list ul li span {
  flex: 0 0 auto;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--Website-blue-primary, #007AFF);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-right: 4px;
}
@media (width <= 1600px) {
  .products-link-list .link-list ul li span {
    margin-right: 8px;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 1.1px;
  }
}
.products-link-list .link-list__btn {
  padding-top: 0;
  display: flex;
  justify-content: center;
  margin-bottom: calc(100px - 2rem);
}
@media (width <= 600px) {
  .products-link-list .link-list__btn {
    margin-bottom: 0;
  }
}
.products-link-list .link-list__btn a {
  padding: 20px 32px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-wrap: wrap;
}
@media (width <= 767px) {
  .products-link-list .link-list__btn a {
    padding: 0.75rem 1rem;
    letter-spacing: 0px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 81.25rem) {
  .section__intro--products .block-right {
    margin-right: 0;
    width: 100%;
  }
  .products__wrap {
    flex-direction: column-reverse;
  }
  .chart-paper {
    min-width: auto;
  }
  .chart-paper__title {
    font-size: 16px;
    line-height: 20px;
  }
}
.section__intro--products h3 {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 140%;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 32px;
}

.section__intro--products .tender__block-left .tender__text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
}
.section__intro--products .tender__block-left .tender__text p a {
  color: var(--Website-cyan, #14FFF2);
}

@media only screen and (max-width: 112.5em) {
  .section__intro--products h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }
}
.stats__volatility {
  white-space: nowrap;
}

.chart-paper__footer {
  width: 100%;
  padding: 0 2rem 2rem;
}
@media (width <= 767px) {
  .chart-paper__footer {
    padding: 0 1rem 1rem;
  }
}

.chart-paper__buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}
.chart-paper__buttons a {
  width: 100%;
}

.chart-paper__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid var(--website-blue-medium, #4fa7ff);
  flex-grow: 1;
}

.chart-paper__button span {
  color: var(--white);
  font-size: 15px;
  font-family: "Open Sans";
  line-height: 28px;
  letter-spacing: 1.5px;
}

@media only screen and (max-width: 36.313rem) {
  .chart-paper {
    gap: 12px;
  }
  .chart-paper__buttons {
    flex-direction: column;
    gap: 12px;
  }
  .chart-paper__button {
    width: 100%;
  }
  .chart-paper__button span {
    font-size: 12px;
    line-height: 20px;
  }
}
.page__navigation {
  display: flex;
  align-items: center;
  gap: 0.25rem 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.page__navigation-page {
  color: var(--cyan);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
}

.page__navigation-category {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
}

.page-chart-paper {
  gap: 0;
  padding: 0;
  border-radius: 24px;
  border: 1px solid var(--website-blue-dark, #163170);
  background: var(--website-blue-dark, #163170);
  box-shadow: 0px 20px 100px 0px rgba(200, 209, 255, 0.12), 0px 4px 16px 0px rgba(200, 209, 255, 0.12);
}

.page-chart-paper__header {
  position: relative;
}

.page-chart__img {
  position: relative;
  width: 100%;
  height: 100%;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

@media only screen and (max-width: 31.625rem) {
  .page-chart__img {
    height: 175px;
  }
}
.page-chart-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.chart-title__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chart-title__text h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.chart-title__text p {
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 1.5px;
}

.page-chart-paper__footer {
  display: flex;
  flex-direction: column;
  padding: 28px 48px 52px;
  gap: 1.5rem;
}

.page-chart-paper__footer .page-chart-paper__footer-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  font-family: Open Sans;
  line-height: 32px;
}

.page-chart__data {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px 40px;
}

.page-chart__item {
  display: flex;
  flex-direction: column;
}

.page-chart__item .chart-data-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 300;
  font-family: Open Sans;
  line-height: 24px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.page-chart__item .chart-data-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 32px;
  font-family: Open Sans;
  letter-spacing: 2px;
}

@media only screen and (min-width: 112.5rem) {
  .page-chart__data {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7.625rem;
}

.page__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.375rem;
}

.section__intro--page a.play {
  color: var(--white);
}

.section__intro--page .btn-secondary {
  color: var(--dark-blue);
}

.section__intro--page a.play:hover {
  color: var(--dark-blue);
}

.section__intro--page .btn-secondary:hover {
  color: var(--white);
}

.section__intro--page a.play,
.section__intro--page .btn-secondary {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

@media only screen and (max-width: 48rem) {
  .page__wrap {
    gap: 2rem;
  }
}
@media only screen and (max-width: 112.5rem) {
  .section__intro--page .block-right {
    margin-right: -35%;
    width: 75%;
  }
  .section__intro--page a.play,
  .section__intro--page .btn-secondary {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
}
@media only screen and (max-width: 100.5rem) {
  .section__intro--page .block-right {
    margin-right: -20%;
    width: 60%;
  }
}
@media only screen and (max-width: 81.25rem) {
  .section__intro--page .block-right {
    margin-right: 0;
    width: 100%;
  }
}
.bottom-block {
  display: flex;
  width: 100%;
  gap: 1.5rem;
}

.bottom-block__statistic {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  gap: 1rem;
  padding: 3.75rem 3rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 251, 251, 0.12) 0%, rgba(255, 251, 251, 0.03) 100%);
  backdrop-filter: blur(24px);
}

.statistic__value {
  color: #fff;
  text-align: center;
  font-size: 80px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 6.4px;
  text-transform: uppercase;
}

.statistic__desc {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

@media only screen and (max-width: 112.5rem) {
  .statistic__value {
    font-size: 60px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 100.5rem) {
  .page-chart__data {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 81.25rem) {
  .page__wrap {
    gap: 3rem;
  }
  .page__block-left {
    width: 60%;
  }
  .bottom-block__statistic {
    padding: 2rem 1.5rem;
  }
  .page__navigation-page,
  .page__navigation-category {
    font-size: 12px;
  }
  .chart-title__text h4 {
    font-size: 18px;
  }
  .chart-title__text p {
    font-size: 12px;
  }
  .page-chart-paper__footer .page-chart-paper__footer-title {
    font-size: 20px;
  }
  .page-chart__item .chart-data-title {
    font-size: 12px;
  }
  .page-chart__item .chart-data-desc {
    font-size: 15px;
  }
}
@media only screen and (max-width: 54.75rem) {
  .statistic__value {
    font-size: 40px;
    line-height: 20px;
  }
  .statistic__desc {
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
  }
}
@media only screen and (max-width: 48rem) {
  .bottom-block {
    flex-direction: column;
  }
  .page-container {
    gap: 3.5rem;
  }
  .section__intro--page {
    padding: 6rem 0 18rem;
  }
  .page__block-left {
    width: 100%;
  }
}
@media only screen and (max-width: 38rem) {
  .page-chart__data {
    grid-template-columns: 1fr;
  }
}
.page-section__product .product__item {
  padding-top: 3rem;
}

.page-section__product .tabs__products .tabs__nav {
  display: none;
}

.page-section__product .product__img img {
  width: 47.313rem;
}

.page-section__product .product__inner a {
  border-radius: var(--border-radius-xs);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

@media only screen and (max-width: 112.5rem) {
  .page-section__product .product__inner a {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.5px;
  }
}
.page-section__product .product__inner a:hover {
  color: var(--blue-dark);
}

@media only screen and (max-width: 37.5em) {
  .page-section__product .product__img img {
    width: 100%;
    height: auto;
  }
  .page-section__product .product__item {
    gap: 4rem;
  }
}
.page-section__statistic {
  padding: 0 0 18.25rem;
}

.page-section__statistic h4 {
  max-width: 400px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 44px;
  text-transform: uppercase;
}

.statistic__item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

@media only screen and (max-width: 112.5rem) {
  .page-section__statistic h4 {
    max-width: 272px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media only screen and (max-width: 56.25rem) {
  .page-section__statistic .statistic__list {
    flex-direction: column;
    gap: 5rem;
    align-items: center;
  }
  .page-section__statistic h4 {
    max-width: 400px;
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.page-section__statistic .faq-block-top {
  flex-direction: column;
  gap: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(90, 156, 255, 0.16);
  backdrop-filter: blur(120px);
}

.page-section__statistic .faq-block-text {
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.page-section__statistic .faq-block-text .faq-block-title,
.page-section__statistic .faq-block-text .faq-block-subtitle {
  max-width: 65rem;
}

.page-section__statistic .faq-block-top {
  top: -11rem;
}

@media only screen and (max-width: 112.5em) {
  .page-section__statistic .faq-block-top {
    top: -8rem;
  }
  .page-section__product .section__product {
    padding: 4rem 0 17rem;
  }
}
.page-section__solutions {
  padding: 0 0 12.5rem;
}

.page-section__solutions .quote.comas::before {
  left: 80%;
  top: 50%;
  transform: translateY(-50%);
}

.page-section__solutions .quote p {
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 2.4px;
  margin: 0;
}

.page-section__solutions .quote__text {
  gap: 1.5rem;
  max-width: 100%;
}

@media only screen and (max-width: 112.5em) {
  .page-section__solutions .quote.comas::before {
    left: 60%;
  }
  .page-section__solutions .quote p {
    font-size: 16px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 56.25em) {
  .page-section__solutions .quote.comas::before {
    left: 60%;
  }
}
@media only screen and (max-width: 40em) {
  .page-section__solutions .quote.comas::before {
    left: 30%;
  }
}
.page-section__solutions .team__slider-wrap {
  margin-top: 0;
  margin-bottom: 0;
}

.page-section__solutions .team__slider-wrap .swiper-button-prev,
.page-section__solutions .team__slider-wrap .swiper-button-next {
  top: 25%;
}

@media only screen and (max-width: 112.5em) {
  .page-section__solutions .team__slider-wrap .swiper-button-prev,
  .page-section__solutions .team__slider-wrap .swiper-button-next {
    top: 30%;
  }
}
.page-section__solutions .swiper-button-prev,
.page-section__solutions .swiper-button-next {
  width: 3rem;
  height: 7.75rem;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  top: 37%;
}

@media only screen and (max-width: 112.5em) {
  .page-section__solutions .swiper-button-prev,
  .page-section__solutions .swiper-button-next {
    width: 1rem;
  }
}
.page-section__solutions .beyond-slider-wrap .beyond-slider .beyond-slide p {
  margin: 0;
  text-align: left;
}

.page-section__solutions .beyond-slider-wrap .beyond-slider .beyond-slide {
  align-items: center;
}

@media only screen and (max-width: 112.5em) {
  .page-section__solutions h2 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
}
.page-section__solutions p {
  margin: 0;
}

.beyond-slide-data {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  max-width: 340px;
}

.beyond-slide-category {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.beyond-slide-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 2px;
}

.beyond-slide-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 24px;
}

@media only screen and (max-width: 112.5em) {
  .beyond-slide-category {
    font-size: 12px;
    line-height: 28px;
  }
  .beyond-slide-title {
    font-size: 15px;
    line-height: 36px;
  }
  .beyond-slide-desc {
    font-size: 12px;
    line-height: 24px;
  }
}
.page-section__solutions .team__slider-wrap .beyond-slide.swiper-slide .beyond-slide-img img {
  max-width: 21.25rem;
}

.page-section__solutions .beyond-slider-wrap .beyond-slider {
  max-width: 100%;
}

@media only screen and (max-width: 112.5em) {
  .page-section__solutions .team__slider-wrap .beyond-slide.swiper-slide .beyond-slide-img img {
    max-width: 16.875rem;
  }
}
@media only screen and (max-width: 31.25em) {
  .page-section__solutions .team__slider-wrap .beyond-slide.swiper-slide .beyond-slide-img img {
    max-width: 13.5rem;
  }
}
a.download {
  gap: 0.75rem;
  border-color: var(--cyan);
  border-width: 0.125rem;
  color: var(--cyan);
}

a.download::before {
  height: 1.5rem;
  width: 1.5rem;
  content: "";
  transition: 0.25s;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 14L11.6464 14.3536L12 14.7071L12.3536 14.3536L12 14ZM12.5 5C12.5 4.72386 12.2761 4.5 12 4.5C11.7239 4.5 11.5 4.72386 11.5 5L12.5 5ZM6.64645 9.35355L11.6464 14.3536L12.3536 13.6464L7.35355 8.64645L6.64645 9.35355ZM12.3536 14.3536L17.3536 9.35355L16.6464 8.64645L11.6464 13.6464L12.3536 14.3536ZM12.5 14L12.5 5L11.5 5L11.5 14L12.5 14Z' fill='%23082B5F'/%3E%3Cpath d='M5 16L5 17C5 18.1046 5.89543 19 7 19L17 19C18.1046 19 19 18.1046 19 17V16' stroke='%23082B5F'/%3E%3C/svg%3E%0A");
}

a.download:hover::before {
  filter: brightness(0) invert(1);
}

.section__intro--page a.play::before {
  height: 1.5rem;
  width: 1.5rem;
  content: "";
  transition: 0.25s;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 8L16 12L10 16V8Z' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
}

.product__text-inner {
  position: relative;
}

.product__text-inner::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  border-radius: 32px;
  background: #082B5F;
  filter: blur(30px);
  z-index: -1;
}

.page-section__solutions .beyond-slider-wrap .beyond-slider .beyond-slide-category {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.page-section__solutions .beyond-slider-wrap .beyond-slider .beyond-slide-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 2px;
  text-transform: capitalize;
}

.page-section__solutions .beyond-slider-wrap .beyond-slider .beyond-slide-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

@media only screen and (min-width: 112.5em) {
  .page-section__statistic .statistic__item {
    width: 18.75rem;
    height: 18.75rem;
  }
}
.page-section__product .video__wrap {
  width: 100%;
  max-height: fit-content;
  margin-top: 3rem;
  border-radius: 1.5rem;
}

@media only screen and (min-width: 112.5em) {
  .page-section__product .product__img img {
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-section__product .product__img img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 48em) {
  .page-section__product {
    padding: 4rem 0 11rem;
  }
}
.product__inner .video__wrap {
  margin-bottom: 3rem;
}

@media only screen and (max-width: 112.5em) {
  .contact-us__inner {
    flex-wrap: wrap;
  }
}
.contact-us__inner {
  align-items: flex-start;
}

.logo__footer img {
  height: auto;
  max-width: 296px;
}

.header__inner .logo {
  min-width: 160px;
}

@media only screen and (max-width: 65.625em) {
  .container-header .header__inner > .login {
    display: none;
  }
  .nav {
    height: calc(var(--vh, 1vh) * 100 - 5rem);
  }
}
.footer__bottom {
  align-items: flex-end;
}

.section__product-reusable {
  background: linear-gradient(145deg, #012D6E -6.15%, #0149B5 60.34%);
}

.section__product-reusable .product__item {
  padding-top: 0;
}

.section__product-reusable .product__text .product__text-inner {
  max-width: 40rem;
}

.section__product-reusable .product__text .product__text-inner::after {
  display: none;
}

.content-slider-item {
  margin-bottom: 64px;
}

@media only screen and (max-width: 112.5em) {
  .content-slider-item {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 48em) {
  .content-slider-item {
    margin-bottom: 20px;
  }
}
.section__intro {
  padding: 6rem 0 2rem;
}

.section__intro.alternative-visible-image {
  padding: 8rem 0;
}
@media only screen and (max-width: 56.25em) {
  .section__intro.alternative-visible-image {
    padding: 6rem 0;
  }
}

.section__intro.width-fit-content {
  padding-block: 8.6rem 7.5rem;
}
.section__intro.width-fit-content .container {
  max-width: 1570px;
}
@media (max-width: 1800px) {
  .section__intro.width-fit-content .container {
    max-width: 992px;
  }
}
.section__intro.width-fit-content .container .tender__wrap {
  gap: 2.538rem;
}
.section__intro.width-fit-content h4 {
  margin-bottom: 2rem;
}
.section__intro.width-fit-content h1 {
  letter-spacing: 0.8px;
  margin-bottom: 2rem;
}
.section__intro.width-fit-content p {
  letter-spacing: 1.05px;
}
.section__intro.width-fit-content .tender__block-left {
  padding-top: 10px;
}
.section__intro.width-fit-content .tender__img img {
  width: fit-content;
}

.ticker {
  margin-bottom: 2rem;
}

.tender__img {
  height: 47.5rem;
}

.section__company .company-slider .swiper-slide {
  max-width: 10rem;
}

.section__company .company-slider .swiper-slide img {
  max-height: 2.625rem;
}

.section__company .line-img {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.section__statistic {
  padding: 4rem 0 4.75rem;
}

.section__statistic .statistic__title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}

.statistic__list {
  justify-content: center;
}

.statistic__item {
  width: 20rem;
  height: 20rem;
}

.statistic__item p {
  font-size: 4rem;
}

.section__product {
  padding: 4rem 0 12rem;
}

.section__product .tabs__products .tabs__nav {
  gap: 3rem;
}

.product__item {
  gap: 6rem;
  padding-top: 8rem;
}

.product__text .product__text-inner h3 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}

.section__faq .faq-block-top {
  padding: 2.5rem 3rem;
  border-radius: 1rem;
  top: 0;
  transform: translateY(-50%);
}

.section__faq .faq-block-text .faq-block-title {
  font-size: 2rem;
}

.section__faq .faq__title {
  margin: 5rem auto 2.75rem;
  font-size: 2.25rem;
}

.accordion-item .accordion-item__head {
  padding: 2rem 0 2rem 6.5rem;
  font-size: 20px;
}

.footer {
  padding: 2rem 0;
}

.footer__top {
  margin-bottom: 2rem;
}

.footer__bottom {
  padding-top: 1.5rem;
}

.logo__footer img {
  max-width: 270px;
  margin-top: 0.5rem;
}

.footer__nav h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer__nav ul {
  gap: 1rem;
}

.footer__nav p {
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.footer__nav ul li a {
  font-size: 0.875rem;
}

.section__faq .faq-block-top--products {
  padding: 2.125rem 5rem;
  top: 0;
  transform: translateY(-50%);
}

.page-section__solutions {
  padding: 0 0 4.5rem;
}

.page__navigation-page {
  white-space: nowrap;
}

.page-section__product .product__inner .product__item:first-child {
  padding-top: 4rem;
}

.section__statistic .view-products {
  transition: 0.2s;
}

.section__statistic .view-products.hide {
  height: 0;
  overflow: hidden;
}

.accordion-item.active .accordion-item__head:first-child,
.accordion-item.active .accordion-item__head:last-child {
  margin-bottom: 0;
}

.accordion-text p:first-child,
.accordion-text p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1800px) {
  .section__faq .faq-block-top--products {
    padding: 2rem 4rem;
    gap: 1.5rem;
  }
  .container-header {
    max-width: 87.5rem;
  }
  .nav ul {
    gap: 1.5rem;
  }
  .nav ul li a {
    white-space: nowrap;
  }
  .content-block h2 {
    margin-bottom: 1.25rem;
  }
  .content-block p {
    margin-bottom: 1rem;
  }
  .section__statistic .statistic__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .product__text .product__text-inner h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .section__faq .faq-block-text .faq-block-title {
    font-size: 1.5rem;
  }
  .tender__img {
    height: 38.5rem;
  }
  .tender__img img {
    width: 66.25rem;
  }
  .section__company h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    padding: 0 1rem;
  }
  .section__statistic {
    padding: 2rem 0 3rem;
  }
  .statistic__item {
    width: 16rem;
    height: 16rem;
  }
  .statistic__list {
    margin-bottom: 1rem;
  }
  .statistic__item p {
    font-size: 3rem;
    line-height: 4.5rem;
  }
  .product__item {
    gap: 4rem;
    padding-top: 4rem;
  }
  .product__img {
    height: 37rem;
  }
  .section__faq {
    padding: 0 0 5.25rem;
  }
  .section__faq .faq-block-top {
    padding: 1.5rem 3rem;
    border-radius: 1rem;
  }
  .section__faq .faq-block-text .faq-block-subtitle {
    font-size: 0.875rem;
  }
  .section__faq .faq__title {
    margin: 3rem auto 1.75rem;
    font-size: 1.875rem;
  }
  .accordion-item .accordion-item__head {
    font-size: 18px;
    line-height: 18px;
  }
  .footer__top {
    grid-template-columns: repeat(4, 1fr);
  }
  .logo__footer img {
    height: auto;
    max-width: 199px;
    margin-top: 0.7rem;
  }
  .section__company .line-img {
    margin-top: 0;
    margin-bottom: 0;
  }
  .accordion-item .accordion-item__head {
    padding: 2rem 2rem 2rem 3.5rem;
  }
  .page-container {
    gap: 3rem;
  }
  .section__about {
    padding: 3.5rem 0 0;
  }
  .about__text .about__link {
    margin-top: 9.75rem;
    margin-bottom: 5.5rem;
  }
  .about__img {
    transform: translate(31%, -26%);
  }
  .section__solutions {
    padding: 8.875rem 0 4.5rem;
  }
  .section__solutions {
    padding: 8.875rem 0 6.5rem;
  }
  .section__solutions h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
  }
  .about__text .about__link h3 {
    font-size: 2.5rem;
    margin-bottom: 2.625rem;
  }
  .about__text .about__link ul {
    gap: 1.5rem;
  }
  .contact-us__inner {
    flex-wrap: nowrap;
    gap: 2rem;
  }
  .contact-us__form {
    padding: 2rem 1.5rem;
  }
}
@media screen and (max-width: 900px) and (min-width: 768px) {
  .statistic__item {
    width: 13rem;
    height: 13rem;
  }
  .statistic__item p {
    font-size: 2.5rem;
  }
  .tabs__nav {
    flex-direction: column;
    gap: 0 !important;
    margin-bottom: 0.25rem !important;
  }
  .section__product .tabs__products .tabs__nav .tab {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
  }
  .product__inner .product__item:first-child {
    padding-top: 2rem;
  }
  .tender__img img {
    width: 50rem;
  }
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__img {
    transform: translate(18%, -26%);
  }
  .section__intro .title__intro.center-side h1 {
    font-size: 2.5rem;
  }
  .about__inner .about__item:nth-child(odd) {
    flex-direction: column;
    margin-top: 2rem;
    gap: 2rem;
  }
  .about__inner.right .about__item:nth-child(odd) {
    flex-direction: column;
    margin-top: 2rem;
    gap: 2rem;
  }
  .about__text {
    width: 100%;
  }
  .about__text .about__text-inner p:first-child {
    padding-bottom: 0;
    height: 0;
  }
  .contact-us__inner {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .contact-us__form {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 768px) and (min-width: 576px) {
  .section__intro {
    padding: 5rem 0 2rem;
  }
  .section__company h3 {
    font-size: 1.25rem;
    padding: 0 1rem;
  }
  .product__text .product__text-inner h3 {
    font-size: 1.5rem;
    padding: 0;
  }
  .accordion-item .accordion-item__head {
    font-size: 1rem;
    line-height: 1.5;
  }
  .accordion-item .accordion-item__head {
    padding: 1rem 3.5rem;
  }
  .product__item {
    gap: 2rem;
    padding-top: 2rem;
  }
  .product__img {
    height: auto;
  }
  .product__inner .product__item:first-child {
    padding-top: 4rem;
  }
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
  .section__faq .faq__title {
    margin: 2rem auto 2rem;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .tender__img {
    height: auto;
  }
  .tender__img img {
    width: 43rem;
  }
  .section__intro.width-fit-content .tender__img img {
    width: 100%;
  }
  .page-chart-paper__footer {
    padding: 1.385rem;
  }
  .section__intro .title__intro.center-side h1 {
    font-size: 2rem;
  }
  .about__inner.right .about__item:nth-child(odd) {
    flex-direction: column;
    margin-top: 2rem;
    gap: 2rem;
  }
  .about__img {
    transform: translate(18%, -26%);
  }
  .about__text {
    width: 100%;
  }
  .about__text .about__text-inner p:first-child {
    padding-bottom: 0;
    height: 0;
  }
  .about__text .about__link {
    margin-top: 3.75rem;
    margin-bottom: 4.5rem;
  }
}
@media screen and (max-width: 576px) {
  .header {
    padding: 1.5rem 0;
  }
  .product__img {
    height: auto;
  }
  .tender__img {
    height: auto;
  }
  .tender__img img {
    width: 30rem;
  }
  .footer__top {
    grid-template-columns: auto;
  }
  .section__intro {
    padding: 5rem 0 4rem;
  }
  .section__intro.width-fit-content .tender__img img {
    width: 100%;
  }
  .section__intro.alternative-visible-image {
    padding: 5rem 0 4rem;
  }
  .section__intro .title__intro.center-side h1 {
    font-size: 1.875rem;
  }
  .about__text .about__text-inner p:first-child {
    padding-bottom: 0;
    height: 0;
  }
  .about__img {
    transform: translate(18%, -26%);
  }
  .about__item {
    gap: 0;
  }
  .product__inner .product__item:first-child {
    padding-top: 2rem;
  }
  .product__item {
    gap: 1.5rem;
  }
  .section__faq .faq__title {
    line-height: 1.5;
    font-size: 1.5rem;
    margin-top: 0;
  }
  .product__text .product__text-inner a {
    margin-bottom: 0;
  }
  .about__text .about__link {
    margin-top: 2.75rem;
    margin-bottom: 4.5rem;
  }
  .section__solutions {
    padding: 8.875rem 0 3.5rem;
  }
}
/* 30.11.2023  */
.section__company {
  border-top: 2px solid rgba(177, 199, 239, 0.16);
  padding: 2rem 0;
  background-color: var(--bg-section-products);
}
.section__company h3 {
  margin-bottom: 2rem;
  text-transform: none;
}
.section__company.variant-two {
  position: relative;
  padding-block: 6.25rem 0;
  background: transparent;
  z-index: 0;
}
@media (max-width: 1800px) {
  .section__company.variant-two {
    padding-block: 5.25rem 0;
  }
}
@media (max-width: 991px) {
  .section__company.variant-two {
    padding-block: 4rem 0;
  }
}
.section__company.variant-two h4 {
  color: var(--Website-white, var(--Grays-White, #FFF));
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 800;
  line-height: 140%;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  max-width: 1522px;
  margin: 0 auto 3.75rem;
}
@media (max-width: 1800px) {
  .section__company.variant-two h4 {
    max-width: 992px;
    font-size: 2rem;
    margin: 0 auto 3rem;
  }
}
@media (max-width: 991px) {
  .section__company.variant-two h4 {
    font-size: 1.5rem;
    margin: 0 auto 2rem;
  }
}
.section__company.variant-two .company-slider {
  overflow: hidden;
  width: 100%;
  max-width: 1522px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 11.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 1800px) {
  .section__company.variant-two .company-slider {
    max-width: 992px;
    height: 9rem;
  }
}
.section__company.variant-two .company-slider .swiper-slide {
  max-height: 3rem;
  max-width: 100%;
}
@media (max-width: 1800px) {
  .section__company.variant-two .company-slider .swiper-slide {
    max-height: 2.5rem;
  }
}
.section__company.variant-two .company-slider .swiper-slide img {
  max-height: 3rem;
}
@media (max-width: 1800px) {
  .section__company.variant-two .company-slider .swiper-slide img {
    max-height: 2.5rem;
  }
}
@media (min-width: 992px) {
  .section__company.variant-two .company-slider.static .swiper-wrapper {
    justify-content: space-between;
  }
  .section__company.variant-two .company-slider.static .swiper-slide {
    margin: 0;
    max-height: 3rem;
    max-width: fit-content;
  }
}
@media (min-width: 992px) and (max-width: 1800px) {
  .section__company.variant-two .company-slider.static .swiper-slide {
    max-height: 2.5rem;
  }
}
@media (min-width: 992px) {
  .section__company.variant-two .company-slider.static .swiper-slide img {
    max-height: 3rem;
  }
}
@media (min-width: 992px) and (max-width: 1800px) {
  .section__company.variant-two .company-slider.static .swiper-slide img {
    max-height: 2.5rem;
  }
}

.section__grows .slider-container {
  max-width: 100%;
}

.section__product-reusable {
  padding: 4.25rem 0;
}

.section__product-reusable .product__item {
  padding: 0;
}

.section__product-reusable .product__inner .product__item:first-child {
  padding: 0;
}

.section__product-reusable .product__text .product__text-inner {
  max-width: 100%;
}

.section__grows {
  padding: 3rem 0;
}

.section__quote {
  padding: 4rem 0 6rem;
}

.section__grows .grows__title h2 {
  margin-bottom: 1rem;
  font-size: 3rem;
}

.section__grows .content-slider-item {
  margin-bottom: 32px;
}

.section__product-reusable .product__text-inner h2,
.section__faq-reusable .faq__title {
  font-size: 3rem;
}

.section__grows .features__wrapper {
  margin-bottom: 2rem;
}

.quote-img {
  max-width: 13rem;
}

.feature-item h3 {
  color: #14FFF2;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
}

@media only screen and (min-width: 120.063em) {
  .section__grows .grows__title h2 {
    margin-bottom: 1.5rem;
  }
  .section__grows .slider-container .content__image {
    width: 53.75rem;
  }
  .section__grows .slider-container .content__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
@media only screen and (max-width: 120.063em) {
  .section__grows .slider-container .content__image {
    width: 45.75rem;
  }
  .section__grows .slider-container .content__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
@media only screen and (max-width: 112.5em) {
  .section__grows,
  .section__quote,
  .section__faq-reusable,
  .section__product-reusable {
    padding: 3rem 0;
  }
  .section__grows .slider-container .content__image {
    width: 45.75rem;
  }
  .section__grows .tabs__nav .tab__active::after {
    height: 0.125rem;
  }
  .section__grows .tabs__nav .tab {
    line-height: 2rem;
  }
  .quote-img {
    max-width: 6rem;
  }
  .section__grows .slider-container .grows__title h2 {
    font-size: 2.625rem;
  }
  .feature-item {
    padding: 2rem 1.5rem;
  }
  .feature-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0;
  }
  .feature-item h3 {
    font-size: 1rem;
  }
  .feature-item p {
    font-size: 0.75rem;
  }
  .section__grows .slider-container .grows__title h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
  }
  .section__product-reusable .product__text-inner h2,
  .section__faq-reusable .faq__title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .quote-img {
    align-self: center;
    max-width: 7rem;
  }
  .section__grows .tabs__nav {
    margin-bottom: 1rem !important;
  }
  .section__grows .slider-container .grows__title h2 {
    font-size: 1.75rem;
  }
  .section__grows .features__wrapper {
    margin-bottom: 1rem;
    gap: 1rem;
  }
  .section__grows .tabs__nav .tab__active {
    line-height: 1.5rem;
  }
  .section__grows .tabs__nav .tab__active::after {
    bottom: 0.25rem;
  }
}
@media only screen and (max-width: 48em) {
  .section__grows .tabs__nav .tab__active {
    line-height: 2rem;
  }
  .section__grows .tabs__nav .tab__active::after {
    bottom: 0;
  }
}
@media only screen and (max-width: 36em) {
  .section__grows,
  .section__quote,
  .section__faq-reusable,
  .section__product-reusable {
    padding: 2rem 0;
  }
}
.btn-secondary {
  white-space: nowrap;
}

.section__product-reusable .product__text .product__text-inner ul li {
  font-size: 1.5rem;
}

.section__grows .bg__image svg {
  left: 50%;
  transform: translate(-50%, -39%);
  width: 120%;
}

@media only screen and (max-width: 112.5em) {
  .bg__image.test-intro-screen svg {
    top: auto;
    bottom: 47%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 1800px;
  }
  .section__product-reusable .product__img img {
    width: 59.25rem;
  }
  .section__product-reusable .product__text .product__text-inner ul li {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .section__product-reusable {
    padding: 3.5rem 0;
  }
  .section__product-reusable .product__img img {
    width: 43rem;
  }
}
@media only screen and (min-width: 2000px) {
  .bg__image.test-intro-screen:before {
    content: "";
    width: 100%;
    height: 8.5rem;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(138.93deg, #012d6e 14.42%, #0149b5 100.04%);
    z-index: 1;
  }
  .bg__image.test-intro-screen svg {
    top: auto;
    bottom: 55%;
    transform: translateY(50%);
  }
}
/* 05.12.2023 */
/* Intro block without image */
.section__intro .title__intro.without-image__content {
  max-width: 50rem;
  padding: 5.75rem 0 7.25rem;
}

.section__intro .without-image__content h1 b {
  color: #14FFF2;
}

.section__intro.biggest {
  display: flex;
  align-items: center;
  padding: 7.6rem 0 2.4rem;
  min-height: 65vh;
}
@media (max-width: 1800px) {
  .section__intro.biggest {
    padding: 6rem 0 2rem;
  }
}
@media (max-width: 1600px) {
  .section__intro.biggest {
    padding: 6rem 0 2rem;
  }
}
@media (max-width: 580px) {
  .section__intro.biggest {
    padding: 5rem 0 2rem;
  }
}
.section__intro.biggest .container {
  max-width: 1535px;
}
@media (max-width: 1800px) {
  .section__intro.biggest .container {
    max-width: 87.5rem;
  }
}
.section__intro.biggest .bg__image.bg:before {
  display: none;
}
.section__intro.biggest .title__intro.without-image__content {
  max-width: 44rem;
}
.section__intro.biggest .title__intro.without-image__content h1 {
  color: var(--Grays-White, #FFF);
  font-family: "Open Sans", sans-serif;
  font-size: 3.4rem;
  font-style: normal;
  font-weight: 800;
  line-height: 125%;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1.5px;
}
@media (width <= 1800px) {
  .section__intro.biggest .title__intro.without-image__content h1 {
    font-size: 3rem;
    line-height: 120%;
    margin-bottom: 0.5rem;
  }
}
@media (width <= 768px) {
  .section__intro.biggest .title__intro.without-image__content h1 {
    font-size: 2rem;
    line-height: 120%;
  }
}
.section__intro.biggest .title__intro.without-image__content h2 {
  color: var(--Grays-White, #FFF);
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 800;
  line-height: 166.667%;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}
@media (width <= 1280px) {
  .section__intro.biggest .title__intro.without-image__content h2 {
    font-size: 1rem;
  }
}
@media (width <= 768px) {
  .section__intro.biggest .title__intro.without-image__content h2 {
    font-size: 1.25rem;
    line-height: 130%;
  }
}
.section__intro.biggest .title__intro.without-image__content p {
  margin-block: 2.5rem;
  color: var(--Grays-White, #FFF);
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.125rem;
}
@media (width <= 1280px) {
  .section__intro.biggest .title__intro.without-image__content p {
    font-size: 1rem;
    line-height: 120%;
  }
}
@media (width <= 768px) {
  .section__intro.biggest .title__intro.without-image__content p {
    margin-block: 1.5rem;
  }
}

@media only screen and (max-width: 1920px) {
  .section__intro .title__intro.without-image__content {
    padding: 5.75rem 0 7.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .section__intro .without-image__content {
    padding: 1rem 0;
  }
}
.section__text-slider {
  background: transparent;
}

.text-slider__content h3 {
  color: #FFF;
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.text-slider__content h3 b {
  color: #14FFF2;
}

.text-slider__content h3 em {
  text-decoration: line-through;
  font-style: normal;
}

.text-slider__content p {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2.4px;
}

.text-slider__content p b {
  display: inline-block;
  color: #1C3D70;
  font-style: normal;
  font-weight: 700;
  background: #14fff2;
  padding: 0px 8px;
  border-radius: 2px;
}

.section__text-slider .text-slider__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 71.75rem;
}

.text-slider__container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.section__text-slider.section__company .company-slider {
  user-select: none;
  cursor: pointer;
  padding: 0 2.875rem;
  position: relative;
  height: auto;
}

.section__text-slider.section__company .company-slider .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: linear;
  width: auto;
}

.section__text-slider.section__company .company-slider .swiper-slide {
  width: auto;
  transition: 0.2s;
  display: flex;
  align-items: center;
  max-height: 72px;
  height: 72px;
}

.section__text-slider.section__company .company-slider .swiper-slide img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.slider-container-high {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3.75rem 0;
}

@media only screen and (max-width: 112.5em) {
  .text-slider__content h3 {
    font-size: 1.75rem;
  }
  .text-slider__content p {
    font-size: 1rem;
  }
  .text-slider__content p b {
    padding: 0 0.25rem;
  }
  .text-slider__container {
    gap: 2rem;
  }
  .slider-container-high {
    padding: 2.5rem 0;
  }
  .section__text-slider.section__company .company-slider .swiper-slide {
    max-height: 56px;
    height: 56px;
  }
}
@media only screen and (max-width: 48em) {
  .text-slider__content p {
    font-size: 0.75rem;
  }
  .slider-container-high {
    padding: 1rem 0;
  }
  .section__text-slider.section__company .company-slider .swiper-slide {
    max-height: 16px;
    height: 16px;
  }
}
.section__info-quote {
  position: relative;
  padding-bottom: 11rem;
  margin-top: 12rem;
}

.section__info-quote .bg__image {
  background: #082B5F;
}

.section__info-quote .quote-block-top {
  transform: translateY(-50%);
}

.section__info-quote .info-quote__container {
  display: flex;
  gap: 4.25rem;
}

.section__info-quote .info-quote__container .title-with-button {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 35%;
}

.section__info-quote .info-quote__container .title-with-button h2 {
  color: #FFF;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.section__info-quote .info-quote__container .text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 65%;
}

.section__info-quote .info-quote__container .text-block p {
  color: #FFF;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.54;
  letter-spacing: 1.04px;
}

.section__info-quote .info-quote__container .text-block ul {
  color: #FFF;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.54;
  letter-spacing: 1.04px;
}

.section__info-quote .info-quote__container .text-block ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.section__info-quote .info-quote__container .text-block ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFF;
  margin-left: 2.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 1.6px;
}

.section__info-quote .info-quote__container .text-block ul li::before {
  position: absolute;
  left: -24px;
  top: 8px;
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 2.5rem;
  border: 1px solid #14FFF2;
  background: #14FFF2;
}

.section__info-quote .info-quote__container .text-block h4 {
  color: #FFF;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.54;
  letter-spacing: 0.96px;
  text-transform: none;
}

.quote-item,
.quote {
  border-radius: 2rem;
}

@media only screen and (max-width: 1920px) {
  .section__intro .title__intro.without-image__content {
    padding: 0.75rem 0 2.25rem;
  }
}
@media only screen and (max-width: 112.5em) {
  .section__info-quote {
    padding-bottom: 3rem;
    margin-top: 10rem;
  }
  .section__info-quote .info-quote__container .title-with-button {
    gap: 2rem;
  }
  .section__info-quote .info-quote__container .title-with-button h2 {
    font-size: 1.75rem;
  }
  .section__info-quote .info-quote__container .text-block h4 {
    font-size: 1.125rem;
  }
  .section__info-quote .info-quote__container .text-block ul li {
    margin-left: 1.5rem;
    font-size: 0.875rem;
  }
  .section__info-quote .info-quote__container .text-block ul li::before {
    width: 0.25rem;
    height: 0.25rem;
    left: -18px;
    top: 10px;
  }
}
@media only screen and (max-width: 48em) {
  .section__info-quote {
    margin-top: 13rem;
  }
  .section__info-quote .info-quote__container {
    flex-direction: column;
    gap: 2.5rem;
  }
  .section__info-quote .info-quote__container .title-with-button {
    width: 100%;
    align-items: center;
  }
  .section__info-quote .info-quote__container .title-with-button h2 {
    font-size: 1.75rem;
    text-align: center;
  }
  .section__info-quote .info-quote__container .text-block {
    width: 100%;
  }
  .section__intro .title__intro.without-image__content {
    padding: 0;
  }
  .section__intro .title__intro.without-image__content h1 {
    font-size: 2rem;
    line-height: 1.5;
  }
  .section__intro .title__intro.without-image__content p {
    font-size: 1rem;
    line-height: 1.75rem;
  }
}
/* section pricing new */
.section__pricing.section__pricing-reusable .bg__image {
  background: linear-gradient(107deg, #022E6F 9.24%, #0247B0 86.94%);
}

.section__pricing-reusable {
  padding: 10rem 0 14rem;
}

.section__pricing-reusable .price-list__plan-bottom {
  height: auto;
}

.section__pricing-reusable .price-list__plan-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.section__pricing-reusable .price-list__plan-title .price-list__plan-icon {
  width: 3rem;
  height: 3rem;
}

.section__pricing-reusable .price-list__plan-title .price-list__plan-heading {
  display: flex;
  flex-direction: column;
}

.section__pricing-reusable .price-list__plan-title .price-list__plan-heading h4 {
  color: var(--white);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 3.84px;
  text-transform: uppercase;
}

@media only screen and (max-width: 86.25em) {
  .section__pricing-reusable .price-list__plan-title .price-list__plan-heading h4 {
    font-size: 16px;
  }
}
.section__pricing-reusable .price-list__plan-title .price-list__plan-heading h3 {
  color: var(--cyan);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1, 25;
  text-transform: uppercase;
}

.section__pricing-reusable .price-list__plan-title .price-list__plan-icon img {
  width: 100%;
  height: 100%;
}

.section__pricing-reusable .price-list__plan-wrapper.with-bg {
  padding: 0 1.5rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border: 1px solid #292E40;
  background: #163170;
}

.section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__options-list {
  border-top: solid 1px rgba(255, 255, 255, 0.1019607843);
}

.section__pricing-reusable .price-list__plan-wrapper .price-list__options-list .price-list__option-item {
  height: 3.75rem;
}

.section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__options-list .price-list__option-item {
  border: none;
  font-weight: 700;
  color: #fff;
}

.section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__options-list .price-list__option-item:nth-child(odd) {
  background: #163170;
}

.section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__options-list .price-list__option-item:nth-child(even) {
  background: #1A377C;
}

.section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-header-info {
  gap: 12px;
}

.section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 20px;
}

.section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-description h3 {
  color: #14FFF2;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.28px;
  text-transform: uppercase;
}

.section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-description p {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0;
}

.section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
}

.section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-bottom a {
  width: 100%;
  height: 72px;
}

.section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-bottom a b {
  color: var(--cyan);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  padding-left: 6px;
  transition: 0.2s;
}

.section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-bottom a:hover b {
  color: var(--blue-dark);
}

.section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-bottom a.btn-secondary {
  letter-spacing: 3px;
  border-radius: var(--border-radius-s);
}

.section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-bottom p {
  height: 16px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
}

@media only screen and (min-width: 120em) {
  .section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-bottom a {
    padding: 16px 28px;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 1.8px;
  }
}
@media only screen and (max-width: 120em) {
  .section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-bottom a b {
    font-size: 18px;
  }
}
@media only screen and (max-width: 86.25em) {
  .section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-bottom a.btn-primary, .section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-bottom a.btn-secondary {
    font-size: 0.625rem;
    padding: 0.625rem 0.75rem;
  }
  .section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-bottom a {
    height: 60px;
  }
  .section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-bottom p {
    font-size: 10px;
  }
}
.price-list__plan-wrapper-with-bg {
  display: grid;
  align-items: stretch;
  gap: 1.5rem;
}

.section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list__plan-wrapper:nth-child(1) .price-list__color-line {
  background: #00C868;
}

.section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list__plan-wrapper:nth-child(2) .price-list__color-line {
  background: #007AFF;
}

.section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list__plan-wrapper:nth-child(3) .price-list__color-line {
  background: #F6B54A;
}

.section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list__plan-wrapper {
  display: flex;
  flex-direction: column;
}

.section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list__plan-header-wrapper {
  flex: 1;
}

.section__pricing-reusable .price-list__wrapper {
  overflow-x: hidden;
}

.section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo {
  width: 100%;
  display: flex;
  padding: 24px 40px;
  justify-content: space-between;
  align-items: center;
  background: #007AFF;
  grid-area: 1/-1/1/1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1446' height='88' fill='none'%3E%3Cg opacity='.16'%3E%3Cg clip-path='url(%23a)'%3E%3Cmask id='b' width='169' height='123' x='-1' y='-3' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M167.817-2.95h-168v122.001h168v-122Z'/%3E%3C/mask%3E%3Cg fill='%23fff' mask='url(%23b)'%3E%3Cpath d='M163.812 93.855c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-5.421 0-9.655-1.81-13.75-3.559-4.076-1.74-7.924-3.389-12.913-3.389-4.99 0-8.841 1.648-12.914 3.39-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.99 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.84-1.649 12.913-3.39c4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.181 0 4.344-.323 6.614-.988l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM163.812 83.429c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.742-7.924-3.39-12.914-3.39-4.989 0-8.841 1.648-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.742-7.925-3.39-12.914-3.39s-8.841 1.648-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-5.421 0-9.655-1.809-13.75-3.558-4.076-1.742-7.924-3.39-12.913-3.39-4.99 0-8.841 1.648-12.914 3.39-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.99 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389s8.84-1.648 12.913-3.39c4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389 2.176 0 4.34-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076ZM163.812 73.009c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-5.421 0-9.655-1.809-13.75-3.558-4.076-1.741-7.924-3.39-12.913-3.39-4.99 0-8.841 1.649-12.914 3.39-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.99 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.925 3.389 12.914 3.389s8.84-1.648 12.913-3.39c4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.557 13.749-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.925 3.389 12.914 3.389 2.176 0 4.34-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076ZM163.812 62.587c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-5.421 0-9.655-1.809-13.75-3.558-4.076-1.741-7.924-3.39-12.913-3.39-4.99 0-8.841 1.649-12.914 3.39-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.99 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389s8.84-1.648 12.913-3.39c4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.557 13.749-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389 2.181 0 4.344-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076ZM163.812 52.163c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.389-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.389c-4.094 1.75-8.328 3.558-13.75 3.558-5.421 0-9.655-1.809-13.75-3.558-4.076-1.741-7.924-3.389-12.913-3.389-4.99 0-8.841 1.648-12.914 3.389-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.351-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.99 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389s8.84-1.648 12.913-3.389c4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.389c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389 2.181 0 4.344-.322 6.614-.987l.598 2.033c-2.469.725-4.828 1.076-7.212 1.076ZM163.812 41.741c-5.426 0-9.656-1.808-13.75-3.558-4.077-1.741-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.557-13.75 3.557-5.422 0-9.656-1.808-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.557-13.75 3.557-5.421 0-9.655-1.808-13.75-3.558-4.076-1.741-7.924-3.389-12.913-3.389-4.99 0-8.841 1.648-12.914 3.39-4.094 1.749-8.328 3.557-13.75 3.557-2.384 0-4.743-.351-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.99 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.84-1.649 12.913-3.39c4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.181 0 4.344-.323 6.614-.988l.598 2.033c-2.469.725-4.828 1.076-7.212 1.076ZM163.812 31.322c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-5.421 0-9.655-1.81-13.75-3.559-4.076-1.74-7.924-3.389-12.913-3.389-4.99 0-8.841 1.648-12.914 3.39-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.99 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.84-1.649 12.913-3.39c4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.181 0 4.344-.323 6.614-.988l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM163.812 20.896c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-5.421 0-9.655-1.81-13.75-3.559-4.076-1.74-7.924-3.389-12.913-3.389-4.99 0-8.841 1.648-12.914 3.39-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.99 0 8.841-1.648 12.914-3.389 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.84-1.649 12.913-3.39c4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.176 0 4.34-.323 6.614-.988l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM163.812 10.476c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.388-12.914-3.388-4.989 0-8.841 1.647-12.913 3.388-4.094 1.75-8.328 3.559-13.75 3.559-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.388-12.914-3.388S74.98 5.176 70.907 6.917c-4.094 1.75-8.328 3.559-13.75 3.559-5.421 0-9.655-1.81-13.75-3.559-4.076-1.74-7.924-3.388-12.913-3.388-4.99 0-8.841 1.647-12.914 3.388-4.094 1.75-8.328 3.559-13.75 3.559-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.666 4.438.987 6.614.987 4.99 0 8.841-1.647 12.914-3.388 4.094-1.75 8.328-3.559 13.75-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.388 12.914 3.388s8.84-1.647 12.913-3.388c4.094-1.75 8.328-3.559 13.75-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.388 12.914 3.388s8.841-1.647 12.914-3.388c4.094-1.75 8.328-3.559 13.749-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.388 12.914 3.388 2.176 0 4.34-.321 6.614-.987l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM163.812.054c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39C66.813-1.754 62.58.054 57.157.054c-5.421 0-9.655-1.809-13.75-3.558-4.076-1.741-7.924-3.39-12.913-3.39-4.99 0-8.841 1.649-12.914 3.39C13.486-1.754 9.252.054 3.83.054c-2.38 0-4.739-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.99 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389s8.84-1.648 12.913-3.39c4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389 2.176 0 4.34-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076Z'/%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23c)'%3E%3Cmask id='d' width='169' height='123' x='167' y='-3' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M335.817-2.95h-168v122.001h168v-122Z'/%3E%3C/mask%3E%3Cg fill='%23fff' mask='url(%23d)'%3E%3Cpath d='M331.812 93.855c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.749 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.181 0 4.344-.323 6.614-.988l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM331.812 83.429c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.742-7.924-3.39-12.914-3.39-4.989 0-8.841 1.648-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.742-7.925-3.39-12.914-3.39s-8.841 1.648-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.742-7.925-3.39-12.914-3.39s-8.841 1.648-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389 2.176 0 4.34-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076ZM331.812 73.009c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.557 13.749-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.925 3.389 12.914 3.389 2.176 0 4.34-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076ZM331.812 62.587c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.557 13.749-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389 2.181 0 4.344-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076ZM331.812 52.163c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.389-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.389c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.389c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.351-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.389c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389 2.181 0 4.344-.322 6.614-.987l.598 2.033c-2.469.725-4.828 1.076-7.212 1.076ZM331.812 41.741c-5.426 0-9.656-1.808-13.75-3.558-4.077-1.741-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.557-13.75 3.557-5.422 0-9.656-1.808-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.557-13.749 3.557-5.422 0-9.656-1.808-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.557-13.75 3.557-2.384 0-4.743-.351-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.181 0 4.344-.323 6.614-.988l.598 2.033c-2.469.725-4.828 1.076-7.212 1.076ZM331.812 31.322c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.749 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.181 0 4.344-.323 6.614-.988l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM331.812 20.896c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.749 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.176 0 4.34-.323 6.614-.988l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM331.812 10.476c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.388-12.914-3.388-4.989 0-8.841 1.647-12.913 3.388-4.094 1.75-8.328 3.559-13.75 3.559-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.388-12.914-3.388s-8.841 1.647-12.914 3.388c-4.094 1.75-8.328 3.559-13.749 3.559-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.388-12.914-3.388s-8.841 1.647-12.914 3.388c-4.094 1.75-8.328 3.559-13.75 3.559-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.666 4.438.987 6.614.987 4.989 0 8.841-1.647 12.914-3.388 4.094-1.75 8.328-3.559 13.75-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.924 3.388 12.914 3.388 4.989 0 8.841-1.647 12.913-3.388 4.094-1.75 8.328-3.559 13.75-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.388 12.914 3.388s8.841-1.647 12.914-3.388c4.094-1.75 8.328-3.559 13.749-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.388 12.914 3.388 2.176 0 4.34-.321 6.614-.987l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM331.812.054c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.38 0-4.739-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389 2.176 0 4.34-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076Z'/%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23e)'%3E%3Cmask id='f' width='169' height='123' x='335' y='-3' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M503.817-2.95h-168v122.001h168v-122Z'/%3E%3C/mask%3E%3Cg fill='%23fff' mask='url(%23f)'%3E%3Cpath d='M499.812 93.855c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.749 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.181 0 4.344-.323 6.614-.988l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM499.812 83.429c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.742-7.924-3.39-12.914-3.39-4.989 0-8.841 1.648-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.742-7.925-3.39-12.914-3.39s-8.841 1.648-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.742-7.925-3.39-12.914-3.39s-8.841 1.648-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389 2.176 0 4.34-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076ZM499.812 73.009c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.557 13.749-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.925 3.389 12.914 3.389 2.176 0 4.34-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076ZM499.812 62.587c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.557 13.749-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389 2.181 0 4.344-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076ZM499.812 52.163c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.389-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.389c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.389c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.351-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.389c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389 2.181 0 4.344-.322 6.614-.987l.598 2.033c-2.469.725-4.828 1.076-7.212 1.076ZM499.812 41.741c-5.426 0-9.656-1.808-13.75-3.558-4.077-1.741-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.557-13.75 3.557-5.422 0-9.656-1.808-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.557-13.749 3.557-5.422 0-9.656-1.808-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.557-13.75 3.557-2.384 0-4.743-.351-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.181 0 4.344-.323 6.614-.988l.598 2.033c-2.469.725-4.828 1.076-7.212 1.076ZM499.812 31.322c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.749 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.181 0 4.344-.323 6.614-.988l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM499.812 20.896c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.749 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.176 0 4.34-.323 6.614-.988l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM499.812 10.476c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.388-12.914-3.388-4.989 0-8.841 1.647-12.913 3.388-4.094 1.75-8.328 3.559-13.75 3.559-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.388-12.914-3.388s-8.841 1.647-12.914 3.388c-4.094 1.75-8.328 3.559-13.749 3.559-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.388-12.914-3.388s-8.841 1.647-12.914 3.388c-4.094 1.75-8.328 3.559-13.75 3.559-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.666 4.438.987 6.614.987 4.989 0 8.841-1.647 12.914-3.388 4.094-1.75 8.328-3.559 13.75-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.924 3.388 12.914 3.388 4.989 0 8.841-1.647 12.913-3.388 4.094-1.75 8.328-3.559 13.75-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.388 12.914 3.388s8.841-1.647 12.914-3.388c4.094-1.75 8.328-3.559 13.749-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.388 12.914 3.388 2.176 0 4.34-.321 6.614-.987l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM499.812.054c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.38 0-4.739-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389 2.176 0 4.34-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076Z'/%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23g)'%3E%3Cmask id='h' width='169' height='123' x='503' y='-3' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M671.817-2.95h-168v122.001h168v-122Z'/%3E%3C/mask%3E%3Cg fill='%23fff' mask='url(%23h)'%3E%3Cpath d='M667.812 93.855c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.749 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.181 0 4.344-.323 6.614-.988l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM667.812 83.429c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.742-7.924-3.39-12.914-3.39-4.989 0-8.841 1.648-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.742-7.925-3.39-12.914-3.39s-8.841 1.648-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.742-7.925-3.39-12.914-3.39s-8.841 1.648-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389 2.176 0 4.34-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076ZM667.812 73.009c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.557 13.749-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.925 3.389 12.914 3.389 2.176 0 4.34-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076ZM667.812 62.587c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.557 13.749-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389 2.181 0 4.344-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076ZM667.812 52.163c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.389-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.389c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.389c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.351-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.389c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389 2.181 0 4.344-.322 6.614-.987l.598 2.033c-2.469.725-4.828 1.076-7.212 1.076ZM667.812 41.741c-5.426 0-9.656-1.808-13.75-3.558-4.077-1.741-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.557-13.75 3.557-5.422 0-9.656-1.808-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.557-13.749 3.557-5.422 0-9.656-1.808-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.557-13.75 3.557-2.384 0-4.743-.351-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.181 0 4.344-.323 6.614-.988l.598 2.033c-2.469.725-4.828 1.076-7.212 1.076ZM667.812 31.322c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.749 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.181 0 4.344-.323 6.614-.988l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM667.812 20.896c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.749 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.176 0 4.34-.323 6.614-.988l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM667.812 10.476c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.388-12.914-3.388-4.989 0-8.841 1.647-12.913 3.388-4.094 1.75-8.328 3.559-13.75 3.559-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.388-12.914-3.388s-8.841 1.647-12.914 3.388c-4.094 1.75-8.328 3.559-13.749 3.559-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.388-12.914-3.388s-8.841 1.647-12.914 3.388c-4.094 1.75-8.328 3.559-13.75 3.559-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.666 4.438.987 6.614.987 4.989 0 8.841-1.647 12.914-3.388 4.094-1.75 8.328-3.559 13.75-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.924 3.388 12.914 3.388 4.989 0 8.841-1.647 12.913-3.388 4.094-1.75 8.328-3.559 13.75-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.388 12.914 3.388s8.841-1.647 12.914-3.388c4.094-1.75 8.328-3.559 13.749-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.388 12.914 3.388 2.176 0 4.34-.321 6.614-.987l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM667.812.054c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.38 0-4.739-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389 2.176 0 4.34-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076Z'/%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23i)'%3E%3Cmask id='j' width='169' height='123' x='671' y='-3' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M839.817-2.95h-168v122.001h168v-122Z'/%3E%3C/mask%3E%3Cg fill='%23fff' mask='url(%23j)'%3E%3Cpath d='M835.812 93.855c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.749 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.181 0 4.344-.323 6.614-.988l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM835.812 83.429c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.742-7.924-3.39-12.914-3.39-4.989 0-8.841 1.648-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.742-7.925-3.39-12.914-3.39s-8.841 1.648-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.742-7.925-3.39-12.914-3.39s-8.841 1.648-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389 2.176 0 4.34-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076ZM835.812 73.009c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.557 13.749-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.925 3.389 12.914 3.389 2.176 0 4.34-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076ZM835.812 62.587c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.557 13.749-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389 2.181 0 4.344-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076ZM835.812 52.163c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.389-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.389c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.389c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.351-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.389c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389 2.181 0 4.344-.322 6.614-.987l.598 2.033c-2.469.725-4.828 1.076-7.212 1.076ZM835.812 41.741c-5.426 0-9.656-1.808-13.75-3.558-4.077-1.741-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.557-13.75 3.557-5.422 0-9.656-1.808-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.557-13.749 3.557-5.422 0-9.656-1.808-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.557-13.75 3.557-2.384 0-4.743-.351-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.181 0 4.344-.323 6.614-.988l.598 2.033c-2.469.725-4.828 1.076-7.212 1.076ZM835.812 31.322c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.749 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.181 0 4.344-.323 6.614-.988l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM835.812 20.896c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.749 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39 2.176 0 4.34-.323 6.614-.988l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM835.812 10.476c-5.426 0-9.656-1.81-13.75-3.559-4.077-1.74-7.924-3.388-12.914-3.388-4.989 0-8.841 1.647-12.913 3.388-4.094 1.75-8.328 3.559-13.75 3.559-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.388-12.914-3.388s-8.841 1.647-12.914 3.388c-4.094 1.75-8.328 3.559-13.749 3.559-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.388-12.914-3.388s-8.841 1.647-12.914 3.388c-4.094 1.75-8.328 3.559-13.75 3.559-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.666 4.438.987 6.614.987 4.989 0 8.841-1.647 12.914-3.388 4.094-1.75 8.328-3.559 13.75-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.924 3.388 12.914 3.388 4.989 0 8.841-1.647 12.913-3.388 4.094-1.75 8.328-3.559 13.75-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.388 12.914 3.388s8.841-1.647 12.914-3.388c4.094-1.75 8.328-3.559 13.749-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.388 12.914 3.388 2.176 0 4.34-.321 6.614-.987l.598 2.034c-2.469.724-4.828 1.076-7.212 1.076ZM835.812.054c-5.426 0-9.656-1.809-13.75-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.38 0-4.739-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389 2.176 0 4.34-.322 6.614-.987l.598 2.033c-2.469.724-4.828 1.076-7.212 1.076Z'/%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23k)'%3E%3Cmask id='l' width='169' height='123' x='839' y='-3' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M1007.82-2.95H839.817v122.001h168.003v-122Z'/%3E%3C/mask%3E%3Cg fill='%23fff' mask='url(%23l)'%3E%3Cpath d='M1003.81 93.855c-5.424 0-9.654-1.81-13.748-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.749 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.912 3.39 2.18 0 4.35-.323 6.62-.988l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1003.81 83.429c-5.424 0-9.654-1.809-13.748-3.558-4.077-1.742-7.924-3.39-12.914-3.39-4.989 0-8.841 1.648-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.742-7.925-3.39-12.914-3.39s-8.841 1.648-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.742-7.925-3.39-12.914-3.39s-8.841 1.648-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.912 3.389 2.18 0 4.34-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076ZM1003.81 73.009c-5.424 0-9.654-1.809-13.748-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.557 13.749-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.74 7.925 3.389 12.912 3.389 2.18 0 4.34-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076ZM1003.81 62.587c-5.424 0-9.654-1.809-13.748-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.557 13.75-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.557 13.749-3.557 5.422 0 9.656 1.808 13.75 3.558 4.077 1.741 7.925 3.389 12.912 3.389 2.18 0 4.35-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076ZM1003.81 52.163c-5.424 0-9.654-1.809-13.748-3.558-4.077-1.741-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.389-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.389c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.389c-4.094 1.75-8.328 3.558-13.75 3.558-2.384 0-4.743-.351-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.389c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.389 12.912 3.389 2.18 0 4.35-.322 6.62-.987l.59 2.033c-2.46.725-4.82 1.076-7.21 1.076ZM1003.81 41.741c-5.424 0-9.654-1.808-13.748-3.558-4.077-1.741-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.557-13.75 3.557-5.422 0-9.656-1.808-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.557-13.749 3.557-5.422 0-9.656-1.808-13.75-3.558-4.077-1.741-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.557-13.75 3.557-2.384 0-4.743-.351-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.912 3.39 2.18 0 4.35-.323 6.62-.988l.59 2.033c-2.46.725-4.82 1.076-7.21 1.076ZM1003.81 31.322c-5.424 0-9.654-1.81-13.748-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.749 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.75 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.75 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.912 3.39 2.18 0 4.35-.323 6.62-.988l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1003.81 20.896c-5.424 0-9.654-1.81-13.748-3.559-4.077-1.74-7.924-3.389-12.914-3.389-4.989 0-8.841 1.648-12.913 3.39-4.094 1.749-8.328 3.558-13.75 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.749 3.558-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.389-12.914-3.389s-8.841 1.648-12.914 3.39c-4.094 1.749-8.328 3.558-13.75 3.558-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.389 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.924 3.39 12.914 3.39 4.989 0 8.841-1.649 12.913-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.914 3.39s8.841-1.649 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.809 13.75 3.558 4.077 1.741 7.925 3.39 12.912 3.39 2.18 0 4.34-.323 6.62-.988l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1003.81 10.476c-5.424 0-9.654-1.81-13.748-3.559-4.077-1.74-7.924-3.388-12.914-3.388-4.989 0-8.841 1.647-12.913 3.388-4.094 1.75-8.328 3.559-13.75 3.559-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.388-12.914-3.388s-8.841 1.647-12.914 3.388c-4.094 1.75-8.328 3.559-13.749 3.559-5.422 0-9.656-1.81-13.75-3.559-4.077-1.74-7.925-3.388-12.914-3.388s-8.841 1.647-12.914 3.388c-4.094 1.75-8.328 3.559-13.75 3.559-2.384 0-4.743-.352-7.212-1.076l.598-2.034c2.274.666 4.438.987 6.614.987 4.989 0 8.841-1.647 12.914-3.388 4.094-1.75 8.328-3.559 13.75-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.924 3.388 12.914 3.388 4.989 0 8.841-1.647 12.913-3.388 4.094-1.75 8.328-3.559 13.75-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.388 12.914 3.388s8.841-1.647 12.914-3.388c4.094-1.75 8.328-3.559 13.749-3.559 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.388 12.912 3.388 2.18 0 4.34-.321 6.62-.987l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1003.81.054c-5.424 0-9.654-1.809-13.748-3.558-4.077-1.741-7.924-3.39-12.914-3.39-4.989 0-8.841 1.649-12.913 3.39-4.094 1.75-8.328 3.558-13.75 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.749 3.558-5.422 0-9.656-1.809-13.75-3.558-4.077-1.741-7.925-3.39-12.914-3.39s-8.841 1.649-12.914 3.39c-4.094 1.75-8.328 3.558-13.75 3.558-2.38 0-4.739-.352-7.212-1.076l.598-2.033c2.274.665 4.438.987 6.614.987 4.989 0 8.841-1.648 12.914-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.924 3.389 12.914 3.389 4.989 0 8.841-1.648 12.913-3.39 4.094-1.749 8.328-3.558 13.75-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.914 3.389s8.841-1.648 12.914-3.39c4.094-1.749 8.328-3.558 13.749-3.558 5.422 0 9.656 1.81 13.75 3.559 4.077 1.74 7.925 3.389 12.912 3.389 2.18 0 4.34-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076Z'/%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23m)'%3E%3Cmask id='n' width='169' height='123' x='1007' y='-3' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M1175.82-2.95h-168v122.001h168v-122Z'/%3E%3C/mask%3E%3Cg fill='%23fff' mask='url(%23n)'%3E%3Cpath d='M1171.81 93.855c-5.42 0-9.65-1.81-13.75-3.559-4.07-1.74-7.92-3.389-12.91-3.389s-8.84 1.648-12.92 3.39c-4.09 1.749-8.32 3.558-13.75 3.558-5.42 0-9.65-1.81-13.74-3.559-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.1 1.749-8.33 3.558-13.75 3.558s-9.66-1.81-13.75-3.559c-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.09 1.749-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.034c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.389 4.1-1.75 8.33-3.558 13.75-3.558 5.43 0 9.66 1.809 13.75 3.558 4.08 1.741 7.93 3.39 12.92 3.39s8.84-1.649 12.91-3.39c4.1-1.75 8.33-3.558 13.75-3.558s9.66 1.809 13.75 3.558c4.08 1.741 7.93 3.39 12.91 3.39 4.99 0 8.85-1.649 12.92-3.39 4.09-1.75 8.33-3.558 13.75-3.558s9.65 1.809 13.75 3.558c4.08 1.741 7.92 3.39 12.91 3.39 2.18 0 4.35-.323 6.62-.988l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1171.81 83.429c-5.42 0-9.65-1.809-13.75-3.558-4.07-1.742-7.92-3.39-12.91-3.39s-8.84 1.648-12.92 3.39c-4.09 1.75-8.32 3.558-13.75 3.558-5.42 0-9.65-1.809-13.74-3.558-4.08-1.742-7.93-3.39-12.92-3.39s-8.84 1.648-12.91 3.39c-4.1 1.75-8.33 3.558-13.75 3.558s-9.66-1.809-13.75-3.558c-4.08-1.742-7.93-3.39-12.92-3.39s-8.84 1.648-12.91 3.39c-4.09 1.75-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.39 4.1-1.749 8.33-3.558 13.75-3.558 5.43 0 9.66 1.81 13.75 3.559 4.08 1.74 7.93 3.389 12.92 3.389s8.84-1.648 12.91-3.39c4.1-1.749 8.33-3.558 13.75-3.558s9.66 1.81 13.75 3.559c4.08 1.74 7.93 3.389 12.91 3.389 4.99 0 8.85-1.648 12.92-3.39 4.09-1.749 8.33-3.558 13.75-3.558s9.65 1.81 13.75 3.559c4.08 1.74 7.92 3.389 12.91 3.389 2.18 0 4.34-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076ZM1171.81 73.009c-5.42 0-9.65-1.809-13.75-3.558-4.07-1.741-7.92-3.39-12.91-3.39s-8.84 1.649-12.92 3.39c-4.09 1.75-8.32 3.558-13.75 3.558-5.42 0-9.65-1.809-13.74-3.558-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.1 1.75-8.33 3.558-13.75 3.558s-9.66-1.809-13.75-3.558c-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.09 1.75-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.39 4.1-1.749 8.33-3.557 13.75-3.557 5.43 0 9.66 1.808 13.75 3.558 4.08 1.74 7.93 3.389 12.92 3.389s8.84-1.648 12.91-3.39c4.1-1.749 8.33-3.557 13.75-3.557s9.66 1.808 13.75 3.558c4.08 1.74 7.93 3.389 12.91 3.389 4.99 0 8.85-1.648 12.92-3.39 4.09-1.749 8.33-3.557 13.75-3.557s9.65 1.808 13.75 3.558c4.08 1.74 7.92 3.389 12.91 3.389 2.18 0 4.34-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076ZM1171.81 62.587c-5.42 0-9.65-1.809-13.75-3.558-4.07-1.741-7.92-3.39-12.91-3.39s-8.84 1.649-12.92 3.39c-4.09 1.75-8.32 3.558-13.75 3.558-5.42 0-9.65-1.809-13.74-3.558-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.1 1.75-8.33 3.558-13.75 3.558s-9.66-1.809-13.75-3.558c-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.09 1.75-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.39 4.1-1.749 8.33-3.557 13.75-3.557 5.43 0 9.66 1.808 13.75 3.558 4.08 1.741 7.93 3.389 12.92 3.389s8.84-1.648 12.91-3.39c4.1-1.749 8.33-3.557 13.75-3.557s9.66 1.808 13.75 3.558c4.08 1.741 7.93 3.389 12.91 3.389 4.99 0 8.85-1.648 12.92-3.39 4.09-1.749 8.33-3.557 13.75-3.557s9.65 1.808 13.75 3.558c4.08 1.741 7.92 3.389 12.91 3.389 2.18 0 4.35-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076ZM1171.81 52.163c-5.42 0-9.65-1.809-13.75-3.558-4.07-1.741-7.92-3.389-12.91-3.389s-8.84 1.648-12.92 3.389c-4.09 1.75-8.32 3.558-13.75 3.558-5.42 0-9.65-1.809-13.74-3.558-4.08-1.741-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.389c-4.1 1.75-8.33 3.558-13.75 3.558s-9.66-1.809-13.75-3.558c-4.08-1.741-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.389c-4.09 1.75-8.33 3.558-13.75 3.558-2.38 0-4.74-.351-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.389 4.1-1.75 8.33-3.558 13.75-3.558 5.43 0 9.66 1.809 13.75 3.558 4.08 1.741 7.93 3.389 12.92 3.389s8.84-1.648 12.91-3.389c4.1-1.75 8.33-3.558 13.75-3.558s9.66 1.809 13.75 3.558c4.08 1.741 7.93 3.389 12.91 3.389 4.99 0 8.85-1.648 12.92-3.389 4.09-1.75 8.33-3.558 13.75-3.558s9.65 1.809 13.75 3.558c4.08 1.741 7.92 3.389 12.91 3.389 2.18 0 4.35-.322 6.62-.987l.59 2.033c-2.46.725-4.82 1.076-7.21 1.076ZM1171.81 41.741c-5.42 0-9.65-1.808-13.75-3.558-4.07-1.741-7.92-3.389-12.91-3.389s-8.84 1.648-12.92 3.39c-4.09 1.749-8.32 3.557-13.75 3.557-5.42 0-9.65-1.808-13.74-3.558-4.08-1.741-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.1 1.749-8.33 3.557-13.75 3.557s-9.66-1.808-13.75-3.558c-4.08-1.741-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.09 1.749-8.33 3.557-13.75 3.557-2.38 0-4.74-.351-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.389 4.1-1.75 8.33-3.558 13.75-3.558 5.43 0 9.66 1.809 13.75 3.558 4.08 1.741 7.93 3.39 12.92 3.39s8.84-1.649 12.91-3.39c4.1-1.75 8.33-3.558 13.75-3.558s9.66 1.809 13.75 3.558c4.08 1.741 7.93 3.39 12.91 3.39 4.99 0 8.85-1.649 12.92-3.39 4.09-1.75 8.33-3.558 13.75-3.558s9.65 1.809 13.75 3.558c4.08 1.741 7.92 3.39 12.91 3.39 2.18 0 4.35-.323 6.62-.988l.59 2.033c-2.46.725-4.82 1.076-7.21 1.076ZM1171.81 31.322c-5.42 0-9.65-1.81-13.75-3.559-4.07-1.74-7.92-3.389-12.91-3.389s-8.84 1.648-12.92 3.39c-4.09 1.749-8.32 3.558-13.75 3.558-5.42 0-9.65-1.81-13.74-3.559-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.1 1.749-8.33 3.558-13.75 3.558s-9.66-1.81-13.75-3.559c-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.09 1.749-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.034c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.389 4.1-1.75 8.33-3.558 13.75-3.558 5.43 0 9.66 1.809 13.75 3.558 4.08 1.741 7.93 3.39 12.92 3.39s8.84-1.649 12.91-3.39c4.1-1.75 8.33-3.558 13.75-3.558s9.66 1.809 13.75 3.558c4.08 1.741 7.93 3.39 12.91 3.39 4.99 0 8.85-1.649 12.92-3.39 4.09-1.75 8.33-3.558 13.75-3.558s9.65 1.809 13.75 3.558c4.08 1.741 7.92 3.39 12.91 3.39 2.18 0 4.35-.323 6.62-.988l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1171.81 20.896c-5.42 0-9.65-1.81-13.75-3.559-4.07-1.74-7.92-3.389-12.91-3.389s-8.84 1.648-12.92 3.39c-4.09 1.749-8.32 3.558-13.75 3.558-5.42 0-9.65-1.81-13.74-3.559-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.1 1.749-8.33 3.558-13.75 3.558s-9.66-1.81-13.75-3.559c-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.09 1.749-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.034c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.389 4.1-1.749 8.33-3.558 13.75-3.558 5.43 0 9.66 1.809 13.75 3.558 4.08 1.741 7.93 3.39 12.92 3.39s8.84-1.649 12.91-3.39c4.1-1.749 8.33-3.558 13.75-3.558s9.66 1.809 13.75 3.558c4.08 1.741 7.93 3.39 12.91 3.39 4.99 0 8.85-1.649 12.92-3.39 4.09-1.749 8.33-3.558 13.75-3.558s9.65 1.809 13.75 3.558c4.08 1.741 7.92 3.39 12.91 3.39 2.18 0 4.34-.323 6.62-.988l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1171.81 10.476c-5.42 0-9.65-1.81-13.75-3.559-4.07-1.74-7.92-3.388-12.91-3.388s-8.84 1.647-12.92 3.388c-4.09 1.75-8.32 3.559-13.75 3.559-5.42 0-9.65-1.81-13.74-3.559-4.08-1.74-7.93-3.388-12.92-3.388s-8.84 1.647-12.91 3.388c-4.1 1.75-8.33 3.559-13.75 3.559s-9.66-1.81-13.75-3.559c-4.08-1.74-7.93-3.388-12.92-3.388s-8.84 1.647-12.91 3.388c-4.09 1.75-8.33 3.559-13.75 3.559-2.38 0-4.74-.352-7.21-1.076l.6-2.034c2.27.666 4.43.987 6.61.987 4.99 0 8.84-1.647 12.91-3.388 4.1-1.75 8.33-3.559 13.75-3.559 5.43 0 9.66 1.81 13.75 3.559 4.08 1.74 7.93 3.388 12.92 3.388s8.84-1.647 12.91-3.388c4.1-1.75 8.33-3.559 13.75-3.559s9.66 1.81 13.75 3.559c4.08 1.74 7.93 3.388 12.91 3.388 4.99 0 8.85-1.647 12.92-3.388 4.09-1.75 8.33-3.559 13.75-3.559s9.65 1.81 13.75 3.559c4.08 1.74 7.92 3.388 12.91 3.388 2.18 0 4.34-.321 6.62-.987l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1171.81.054c-5.42 0-9.65-1.809-13.75-3.558-4.07-1.741-7.92-3.39-12.91-3.39s-8.84 1.649-12.92 3.39c-4.09 1.75-8.32 3.558-13.75 3.558-5.42 0-9.65-1.809-13.74-3.558-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.1 1.75-8.33 3.558-13.75 3.558s-9.66-1.809-13.75-3.558c-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.09 1.75-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.39 4.1-1.749 8.33-3.558 13.75-3.558 5.43 0 9.66 1.81 13.75 3.559 4.08 1.74 7.93 3.389 12.92 3.389s8.84-1.648 12.91-3.39c4.1-1.749 8.33-3.558 13.75-3.558s9.66 1.81 13.75 3.559c4.08 1.74 7.93 3.389 12.91 3.389 4.99 0 8.85-1.648 12.92-3.39 4.09-1.749 8.33-3.558 13.75-3.558s9.65 1.81 13.75 3.559c4.08 1.74 7.92 3.389 12.91 3.389 2.18 0 4.34-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076Z'/%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23o)'%3E%3Cmask id='p' width='169' height='123' x='1175' y='-3' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M1343.82-2.95h-168v122.001h168v-122Z'/%3E%3C/mask%3E%3Cg fill='%23fff' mask='url(%23p)'%3E%3Cpath d='M1339.81 93.855c-5.42 0-9.65-1.81-13.75-3.559-4.07-1.74-7.92-3.389-12.91-3.389s-8.84 1.648-12.92 3.39c-4.09 1.749-8.32 3.558-13.75 3.558-5.42 0-9.65-1.81-13.74-3.559-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.1 1.749-8.33 3.558-13.75 3.558s-9.66-1.81-13.75-3.559c-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.09 1.749-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.034c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.389 4.1-1.75 8.33-3.558 13.75-3.558 5.43 0 9.66 1.809 13.75 3.558 4.08 1.741 7.93 3.39 12.92 3.39s8.84-1.649 12.91-3.39c4.1-1.75 8.33-3.558 13.75-3.558s9.66 1.809 13.75 3.558c4.08 1.741 7.93 3.39 12.91 3.39 4.99 0 8.85-1.649 12.92-3.39 4.09-1.75 8.33-3.558 13.75-3.558s9.65 1.809 13.75 3.558c4.08 1.741 7.92 3.39 12.91 3.39 2.18 0 4.35-.323 6.62-.988l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1339.81 83.429c-5.42 0-9.65-1.809-13.75-3.558-4.07-1.742-7.92-3.39-12.91-3.39s-8.84 1.648-12.92 3.39c-4.09 1.75-8.32 3.558-13.75 3.558-5.42 0-9.65-1.809-13.74-3.558-4.08-1.742-7.93-3.39-12.92-3.39s-8.84 1.648-12.91 3.39c-4.1 1.75-8.33 3.558-13.75 3.558s-9.66-1.809-13.75-3.558c-4.08-1.742-7.93-3.39-12.92-3.39s-8.84 1.648-12.91 3.39c-4.09 1.75-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.39 4.1-1.749 8.33-3.558 13.75-3.558 5.43 0 9.66 1.81 13.75 3.559 4.08 1.74 7.93 3.389 12.92 3.389s8.84-1.648 12.91-3.39c4.1-1.749 8.33-3.558 13.75-3.558s9.66 1.81 13.75 3.559c4.08 1.74 7.93 3.389 12.91 3.389 4.99 0 8.85-1.648 12.92-3.39 4.09-1.749 8.33-3.558 13.75-3.558s9.65 1.81 13.75 3.559c4.08 1.74 7.92 3.389 12.91 3.389 2.18 0 4.34-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076ZM1339.81 73.009c-5.42 0-9.65-1.809-13.75-3.558-4.07-1.741-7.92-3.39-12.91-3.39s-8.84 1.649-12.92 3.39c-4.09 1.75-8.32 3.558-13.75 3.558-5.42 0-9.65-1.809-13.74-3.558-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.1 1.75-8.33 3.558-13.75 3.558s-9.66-1.809-13.75-3.558c-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.09 1.75-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.39 4.1-1.749 8.33-3.557 13.75-3.557 5.43 0 9.66 1.808 13.75 3.558 4.08 1.74 7.93 3.389 12.92 3.389s8.84-1.648 12.91-3.39c4.1-1.749 8.33-3.557 13.75-3.557s9.66 1.808 13.75 3.558c4.08 1.74 7.93 3.389 12.91 3.389 4.99 0 8.85-1.648 12.92-3.39 4.09-1.749 8.33-3.557 13.75-3.557s9.65 1.808 13.75 3.558c4.08 1.74 7.92 3.389 12.91 3.389 2.18 0 4.34-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076ZM1339.81 62.587c-5.42 0-9.65-1.809-13.75-3.558-4.07-1.741-7.92-3.39-12.91-3.39s-8.84 1.649-12.92 3.39c-4.09 1.75-8.32 3.558-13.75 3.558-5.42 0-9.65-1.809-13.74-3.558-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.1 1.75-8.33 3.558-13.75 3.558s-9.66-1.809-13.75-3.558c-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.09 1.75-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.39 4.1-1.749 8.33-3.557 13.75-3.557 5.43 0 9.66 1.808 13.75 3.558 4.08 1.741 7.93 3.389 12.92 3.389s8.84-1.648 12.91-3.39c4.1-1.749 8.33-3.557 13.75-3.557s9.66 1.808 13.75 3.558c4.08 1.741 7.93 3.389 12.91 3.389 4.99 0 8.85-1.648 12.92-3.39 4.09-1.749 8.33-3.557 13.75-3.557s9.65 1.808 13.75 3.558c4.08 1.741 7.92 3.389 12.91 3.389 2.18 0 4.35-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076ZM1339.81 52.163c-5.42 0-9.65-1.809-13.75-3.558-4.07-1.741-7.92-3.389-12.91-3.389s-8.84 1.648-12.92 3.389c-4.09 1.75-8.32 3.558-13.75 3.558-5.42 0-9.65-1.809-13.74-3.558-4.08-1.741-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.389c-4.1 1.75-8.33 3.558-13.75 3.558s-9.66-1.809-13.75-3.558c-4.08-1.741-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.389c-4.09 1.75-8.33 3.558-13.75 3.558-2.38 0-4.74-.351-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.389 4.1-1.75 8.33-3.558 13.75-3.558 5.43 0 9.66 1.809 13.75 3.558 4.08 1.741 7.93 3.389 12.92 3.389s8.84-1.648 12.91-3.389c4.1-1.75 8.33-3.558 13.75-3.558s9.66 1.809 13.75 3.558c4.08 1.741 7.93 3.389 12.91 3.389 4.99 0 8.85-1.648 12.92-3.389 4.09-1.75 8.33-3.558 13.75-3.558s9.65 1.809 13.75 3.558c4.08 1.741 7.92 3.389 12.91 3.389 2.18 0 4.35-.322 6.62-.987l.59 2.033c-2.46.725-4.82 1.076-7.21 1.076ZM1339.81 41.741c-5.42 0-9.65-1.808-13.75-3.558-4.07-1.741-7.92-3.389-12.91-3.389s-8.84 1.648-12.92 3.39c-4.09 1.749-8.32 3.557-13.75 3.557-5.42 0-9.65-1.808-13.74-3.558-4.08-1.741-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.1 1.749-8.33 3.557-13.75 3.557s-9.66-1.808-13.75-3.558c-4.08-1.741-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.09 1.749-8.33 3.557-13.75 3.557-2.38 0-4.74-.351-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.389 4.1-1.75 8.33-3.558 13.75-3.558 5.43 0 9.66 1.809 13.75 3.558 4.08 1.741 7.93 3.39 12.92 3.39s8.84-1.649 12.91-3.39c4.1-1.75 8.33-3.558 13.75-3.558s9.66 1.809 13.75 3.558c4.08 1.741 7.93 3.39 12.91 3.39 4.99 0 8.85-1.649 12.92-3.39 4.09-1.75 8.33-3.558 13.75-3.558s9.65 1.809 13.75 3.558c4.08 1.741 7.92 3.39 12.91 3.39 2.18 0 4.35-.323 6.62-.988l.59 2.033c-2.46.725-4.82 1.076-7.21 1.076ZM1339.81 31.322c-5.42 0-9.65-1.81-13.75-3.559-4.07-1.74-7.92-3.389-12.91-3.389s-8.84 1.648-12.92 3.39c-4.09 1.749-8.32 3.558-13.75 3.558-5.42 0-9.65-1.81-13.74-3.559-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.1 1.749-8.33 3.558-13.75 3.558s-9.66-1.81-13.75-3.559c-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.09 1.749-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.034c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.389 4.1-1.75 8.33-3.558 13.75-3.558 5.43 0 9.66 1.809 13.75 3.558 4.08 1.741 7.93 3.39 12.92 3.39s8.84-1.649 12.91-3.39c4.1-1.75 8.33-3.558 13.75-3.558s9.66 1.809 13.75 3.558c4.08 1.741 7.93 3.39 12.91 3.39 4.99 0 8.85-1.649 12.92-3.39 4.09-1.75 8.33-3.558 13.75-3.558s9.65 1.809 13.75 3.558c4.08 1.741 7.92 3.39 12.91 3.39 2.18 0 4.35-.323 6.62-.988l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1339.81 20.896c-5.42 0-9.65-1.81-13.75-3.559-4.07-1.74-7.92-3.389-12.91-3.389s-8.84 1.648-12.92 3.39c-4.09 1.749-8.32 3.558-13.75 3.558-5.42 0-9.65-1.81-13.74-3.559-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.1 1.749-8.33 3.558-13.75 3.558s-9.66-1.81-13.75-3.559c-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.09 1.749-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.034c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.389 4.1-1.749 8.33-3.558 13.75-3.558 5.43 0 9.66 1.809 13.75 3.558 4.08 1.741 7.93 3.39 12.92 3.39s8.84-1.649 12.91-3.39c4.1-1.749 8.33-3.558 13.75-3.558s9.66 1.809 13.75 3.558c4.08 1.741 7.93 3.39 12.91 3.39 4.99 0 8.85-1.649 12.92-3.39 4.09-1.749 8.33-3.558 13.75-3.558s9.65 1.809 13.75 3.558c4.08 1.741 7.92 3.39 12.91 3.39 2.18 0 4.34-.323 6.62-.988l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1339.81 10.476c-5.42 0-9.65-1.81-13.75-3.559-4.07-1.74-7.92-3.388-12.91-3.388s-8.84 1.647-12.92 3.388c-4.09 1.75-8.32 3.559-13.75 3.559-5.42 0-9.65-1.81-13.74-3.559-4.08-1.74-7.93-3.388-12.92-3.388s-8.84 1.647-12.91 3.388c-4.1 1.75-8.33 3.559-13.75 3.559s-9.66-1.81-13.75-3.559c-4.08-1.74-7.93-3.388-12.92-3.388s-8.84 1.647-12.91 3.388c-4.09 1.75-8.33 3.559-13.75 3.559-2.38 0-4.74-.352-7.21-1.076l.6-2.034c2.27.666 4.43.987 6.61.987 4.99 0 8.84-1.647 12.91-3.388 4.1-1.75 8.33-3.559 13.75-3.559 5.43 0 9.66 1.81 13.75 3.559 4.08 1.74 7.93 3.388 12.92 3.388s8.84-1.647 12.91-3.388c4.1-1.75 8.33-3.559 13.75-3.559s9.66 1.81 13.75 3.559c4.08 1.74 7.93 3.388 12.91 3.388 4.99 0 8.85-1.647 12.92-3.388 4.09-1.75 8.33-3.559 13.75-3.559s9.65 1.81 13.75 3.559c4.08 1.74 7.92 3.388 12.91 3.388 2.18 0 4.34-.321 6.62-.987l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1339.81.054c-5.42 0-9.65-1.809-13.75-3.558-4.07-1.741-7.92-3.39-12.91-3.39s-8.84 1.649-12.92 3.39c-4.09 1.75-8.32 3.558-13.75 3.558-5.42 0-9.65-1.809-13.74-3.558-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.1 1.75-8.33 3.558-13.75 3.558s-9.66-1.809-13.75-3.558c-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.09 1.75-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.39 4.1-1.749 8.33-3.558 13.75-3.558 5.43 0 9.66 1.81 13.75 3.559 4.08 1.74 7.93 3.389 12.92 3.389s8.84-1.648 12.91-3.39c4.1-1.749 8.33-3.558 13.75-3.558s9.66 1.81 13.75 3.559c4.08 1.74 7.93 3.389 12.91 3.389 4.99 0 8.85-1.648 12.92-3.39 4.09-1.749 8.33-3.558 13.75-3.558s9.65 1.81 13.75 3.559c4.08 1.74 7.92 3.389 12.91 3.389 2.18 0 4.34-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076Z'/%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23q)'%3E%3Cmask id='r' width='169' height='123' x='1343' y='-3' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M1511.82-2.95h-168v122.001h168v-122Z'/%3E%3C/mask%3E%3Cg fill='%23fff' mask='url(%23r)'%3E%3Cpath d='M1507.81 93.855c-5.42 0-9.65-1.81-13.75-3.559-4.07-1.74-7.92-3.389-12.91-3.389s-8.84 1.648-12.92 3.39c-4.09 1.749-8.32 3.558-13.75 3.558-5.42 0-9.65-1.81-13.74-3.559-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.1 1.749-8.33 3.558-13.75 3.558s-9.66-1.81-13.75-3.559c-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.09 1.749-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.034c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.389 4.1-1.75 8.33-3.558 13.75-3.558 5.43 0 9.66 1.809 13.75 3.558 4.08 1.741 7.93 3.39 12.92 3.39s8.84-1.649 12.91-3.39c4.1-1.75 8.33-3.558 13.75-3.558s9.66 1.809 13.75 3.558c4.08 1.741 7.93 3.39 12.91 3.39 4.99 0 8.85-1.649 12.92-3.39 4.09-1.75 8.33-3.558 13.75-3.558s9.65 1.809 13.75 3.558c4.08 1.741 7.92 3.39 12.91 3.39 2.18 0 4.35-.323 6.62-.988l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1507.81 83.429c-5.42 0-9.65-1.809-13.75-3.558-4.07-1.742-7.92-3.39-12.91-3.39s-8.84 1.648-12.92 3.39c-4.09 1.75-8.32 3.558-13.75 3.558-5.42 0-9.65-1.809-13.74-3.558-4.08-1.742-7.93-3.39-12.92-3.39s-8.84 1.648-12.91 3.39c-4.1 1.75-8.33 3.558-13.75 3.558s-9.66-1.809-13.75-3.558c-4.08-1.742-7.93-3.39-12.92-3.39s-8.84 1.648-12.91 3.39c-4.09 1.75-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.39 4.1-1.749 8.33-3.558 13.75-3.558 5.43 0 9.66 1.81 13.75 3.559 4.08 1.74 7.93 3.389 12.92 3.389s8.84-1.648 12.91-3.39c4.1-1.749 8.33-3.558 13.75-3.558s9.66 1.81 13.75 3.559c4.08 1.74 7.93 3.389 12.91 3.389 4.99 0 8.85-1.648 12.92-3.39 4.09-1.749 8.33-3.558 13.75-3.558s9.65 1.81 13.75 3.559c4.08 1.74 7.92 3.389 12.91 3.389 2.18 0 4.34-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076ZM1507.81 73.009c-5.42 0-9.65-1.809-13.75-3.558-4.07-1.741-7.92-3.39-12.91-3.39s-8.84 1.649-12.92 3.39c-4.09 1.75-8.32 3.558-13.75 3.558-5.42 0-9.65-1.809-13.74-3.558-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.1 1.75-8.33 3.558-13.75 3.558s-9.66-1.809-13.75-3.558c-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.09 1.75-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.39 4.1-1.749 8.33-3.557 13.75-3.557 5.43 0 9.66 1.808 13.75 3.558 4.08 1.74 7.93 3.389 12.92 3.389s8.84-1.648 12.91-3.39c4.1-1.749 8.33-3.557 13.75-3.557s9.66 1.808 13.75 3.558c4.08 1.74 7.93 3.389 12.91 3.389 4.99 0 8.85-1.648 12.92-3.39 4.09-1.749 8.33-3.557 13.75-3.557s9.65 1.808 13.75 3.558c4.08 1.74 7.92 3.389 12.91 3.389 2.18 0 4.34-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076ZM1507.81 62.587c-5.42 0-9.65-1.809-13.75-3.558-4.07-1.741-7.92-3.39-12.91-3.39s-8.84 1.649-12.92 3.39c-4.09 1.75-8.32 3.558-13.75 3.558-5.42 0-9.65-1.809-13.74-3.558-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.1 1.75-8.33 3.558-13.75 3.558s-9.66-1.809-13.75-3.558c-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.09 1.75-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.39 4.1-1.749 8.33-3.557 13.75-3.557 5.43 0 9.66 1.808 13.75 3.558 4.08 1.741 7.93 3.389 12.92 3.389s8.84-1.648 12.91-3.39c4.1-1.749 8.33-3.557 13.75-3.557s9.66 1.808 13.75 3.558c4.08 1.741 7.93 3.389 12.91 3.389 4.99 0 8.85-1.648 12.92-3.39 4.09-1.749 8.33-3.557 13.75-3.557s9.65 1.808 13.75 3.558c4.08 1.741 7.92 3.389 12.91 3.389 2.18 0 4.35-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076ZM1507.81 52.163c-5.42 0-9.65-1.809-13.75-3.558-4.07-1.741-7.92-3.389-12.91-3.389s-8.84 1.648-12.92 3.389c-4.09 1.75-8.32 3.558-13.75 3.558-5.42 0-9.65-1.809-13.74-3.558-4.08-1.741-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.389c-4.1 1.75-8.33 3.558-13.75 3.558s-9.66-1.809-13.75-3.558c-4.08-1.741-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.389c-4.09 1.75-8.33 3.558-13.75 3.558-2.38 0-4.74-.351-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.389 4.1-1.75 8.33-3.558 13.75-3.558 5.43 0 9.66 1.809 13.75 3.558 4.08 1.741 7.93 3.389 12.92 3.389s8.84-1.648 12.91-3.389c4.1-1.75 8.33-3.558 13.75-3.558s9.66 1.809 13.75 3.558c4.08 1.741 7.93 3.389 12.91 3.389 4.99 0 8.85-1.648 12.92-3.389 4.09-1.75 8.33-3.558 13.75-3.558s9.65 1.809 13.75 3.558c4.08 1.741 7.92 3.389 12.91 3.389 2.18 0 4.35-.322 6.62-.987l.59 2.033c-2.46.725-4.82 1.076-7.21 1.076ZM1507.81 41.741c-5.42 0-9.65-1.808-13.75-3.558-4.07-1.741-7.92-3.389-12.91-3.389s-8.84 1.648-12.92 3.39c-4.09 1.749-8.32 3.557-13.75 3.557-5.42 0-9.65-1.808-13.74-3.558-4.08-1.741-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.1 1.749-8.33 3.557-13.75 3.557s-9.66-1.808-13.75-3.558c-4.08-1.741-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.09 1.749-8.33 3.557-13.75 3.557-2.38 0-4.74-.351-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.389 4.1-1.75 8.33-3.558 13.75-3.558 5.43 0 9.66 1.809 13.75 3.558 4.08 1.741 7.93 3.39 12.92 3.39s8.84-1.649 12.91-3.39c4.1-1.75 8.33-3.558 13.75-3.558s9.66 1.809 13.75 3.558c4.08 1.741 7.93 3.39 12.91 3.39 4.99 0 8.85-1.649 12.92-3.39 4.09-1.75 8.33-3.558 13.75-3.558s9.65 1.809 13.75 3.558c4.08 1.741 7.92 3.39 12.91 3.39 2.18 0 4.35-.323 6.62-.988l.59 2.033c-2.46.725-4.82 1.076-7.21 1.076ZM1507.81 31.322c-5.42 0-9.65-1.81-13.75-3.559-4.07-1.74-7.92-3.389-12.91-3.389s-8.84 1.648-12.92 3.39c-4.09 1.749-8.32 3.558-13.75 3.558-5.42 0-9.65-1.81-13.74-3.559-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.1 1.749-8.33 3.558-13.75 3.558s-9.66-1.81-13.75-3.559c-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.09 1.749-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.034c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.389 4.1-1.75 8.33-3.558 13.75-3.558 5.43 0 9.66 1.809 13.75 3.558 4.08 1.741 7.93 3.39 12.92 3.39s8.84-1.649 12.91-3.39c4.1-1.75 8.33-3.558 13.75-3.558s9.66 1.809 13.75 3.558c4.08 1.741 7.93 3.39 12.91 3.39 4.99 0 8.85-1.649 12.92-3.39 4.09-1.75 8.33-3.558 13.75-3.558s9.65 1.809 13.75 3.558c4.08 1.741 7.92 3.39 12.91 3.39 2.18 0 4.35-.323 6.62-.988l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1507.81 20.896c-5.42 0-9.65-1.81-13.75-3.559-4.07-1.74-7.92-3.389-12.91-3.389s-8.84 1.648-12.92 3.39c-4.09 1.749-8.32 3.558-13.75 3.558-5.42 0-9.65-1.81-13.74-3.559-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.1 1.749-8.33 3.558-13.75 3.558s-9.66-1.81-13.75-3.559c-4.08-1.74-7.93-3.389-12.92-3.389s-8.84 1.648-12.91 3.39c-4.09 1.749-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.034c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.389 4.1-1.749 8.33-3.558 13.75-3.558 5.43 0 9.66 1.809 13.75 3.558 4.08 1.741 7.93 3.39 12.92 3.39s8.84-1.649 12.91-3.39c4.1-1.749 8.33-3.558 13.75-3.558s9.66 1.809 13.75 3.558c4.08 1.741 7.93 3.39 12.91 3.39 4.99 0 8.85-1.649 12.92-3.39 4.09-1.749 8.33-3.558 13.75-3.558s9.65 1.809 13.75 3.558c4.08 1.741 7.92 3.39 12.91 3.39 2.18 0 4.34-.323 6.62-.988l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1507.81 10.476c-5.42 0-9.65-1.81-13.75-3.559-4.07-1.74-7.92-3.388-12.91-3.388s-8.84 1.647-12.92 3.388c-4.09 1.75-8.32 3.559-13.75 3.559-5.42 0-9.65-1.81-13.74-3.559-4.08-1.74-7.93-3.388-12.92-3.388s-8.84 1.647-12.91 3.388c-4.1 1.75-8.33 3.559-13.75 3.559s-9.66-1.81-13.75-3.559c-4.08-1.74-7.93-3.388-12.92-3.388s-8.84 1.647-12.91 3.388c-4.09 1.75-8.33 3.559-13.75 3.559-2.38 0-4.74-.352-7.21-1.076l.6-2.034c2.27.666 4.43.987 6.61.987 4.99 0 8.84-1.647 12.91-3.388 4.1-1.75 8.33-3.559 13.75-3.559 5.43 0 9.66 1.81 13.75 3.559 4.08 1.74 7.93 3.388 12.92 3.388s8.84-1.647 12.91-3.388c4.1-1.75 8.33-3.559 13.75-3.559s9.66 1.81 13.75 3.559c4.08 1.74 7.93 3.388 12.91 3.388 4.99 0 8.85-1.647 12.92-3.388 4.09-1.75 8.33-3.559 13.75-3.559s9.65 1.81 13.75 3.559c4.08 1.74 7.92 3.388 12.91 3.388 2.18 0 4.34-.321 6.62-.987l.59 2.034c-2.46.724-4.82 1.076-7.21 1.076ZM1507.81.054c-5.42 0-9.65-1.809-13.75-3.558-4.07-1.741-7.92-3.39-12.91-3.39s-8.84 1.649-12.92 3.39c-4.09 1.75-8.32 3.558-13.75 3.558-5.42 0-9.65-1.809-13.74-3.558-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.1 1.75-8.33 3.558-13.75 3.558s-9.66-1.809-13.75-3.558c-4.08-1.741-7.93-3.39-12.92-3.39s-8.84 1.649-12.91 3.39c-4.09 1.75-8.33 3.558-13.75 3.558-2.38 0-4.74-.352-7.21-1.076l.6-2.033c2.27.665 4.43.987 6.61.987 4.99 0 8.84-1.648 12.91-3.39 4.1-1.749 8.33-3.558 13.75-3.558 5.43 0 9.66 1.81 13.75 3.559 4.08 1.74 7.93 3.389 12.92 3.389s8.84-1.648 12.91-3.39c4.1-1.749 8.33-3.558 13.75-3.558s9.66 1.81 13.75 3.559c4.08 1.74 7.93 3.389 12.91 3.389 4.99 0 8.85-1.648 12.92-3.39 4.09-1.749 8.33-3.558 13.75-3.558s9.65 1.81 13.75 3.559c4.08 1.74 7.92 3.389 12.91 3.389 2.18 0 4.34-.322 6.62-.987l.59 2.033c-2.46.724-4.82 1.076-7.21 1.076Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0-3h168v122H0z'/%3E%3C/clipPath%3E%3CclipPath id='c'%3E%3Cpath fill='%23fff' d='M168-3h168v122H168z'/%3E%3C/clipPath%3E%3CclipPath id='e'%3E%3Cpath fill='%23fff' d='M336-3h168v122H336z'/%3E%3C/clipPath%3E%3CclipPath id='g'%3E%3Cpath fill='%23fff' d='M504-3h168v122H504z'/%3E%3C/clipPath%3E%3CclipPath id='i'%3E%3Cpath fill='%23fff' d='M672-3h168v122H672z'/%3E%3C/clipPath%3E%3CclipPath id='k'%3E%3Cpath fill='%23fff' d='M840-3h168v122H840z'/%3E%3C/clipPath%3E%3CclipPath id='m'%3E%3Cpath fill='%23fff' d='M1008-3h168v122h-168z'/%3E%3C/clipPath%3E%3CclipPath id='o'%3E%3Cpath fill='%23fff' d='M1176-3h168v122h-168z'/%3E%3C/clipPath%3E%3CclipPath id='q'%3E%3Cpath fill='%23fff' d='M1344-3h168v122h-168z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  gap: 30px;
}
.section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo .price-list-promo__title {
  color: var(--white);
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}
.section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo .price-list-promo__subtitle {
  color: var(--white);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-right: 30px;
}
.section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo .price-list-promo__link {
  border-radius: 8px;
  padding: 16px 32px;
  letter-spacing: 3.2px;
}

@media only screen and (max-width: 1920px) {
  .section__pricing-reusable {
    padding: 6.25rem 0;
  }
}
@media only screen and (max-width: 119.938em) {
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list__plan-wrapper {
    min-width: 350px;
    width: 400px;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo .price-list-promo__title {
    font-size: 32px;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo .price-list-promo__subtitle {
    font-size: 18px;
  }
}
@media only screen and (max-width: 112.5em) {
  .section__pricing-reusable {
    padding: 3rem 0;
  }
  .section__pricing-reusable .price-list__plan-wrapper {
    width: 300px;
    min-width: 300px;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list__plan-wrapper {
    min-width: 350px;
    width: 350px;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg,
  .section__pricing-reusable .price-list__wrapper {
    gap: 1rem;
  }
  .section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-description h3 {
    font-size: 24px;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo {
    gap: 20px;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo .price-list-promo__title {
    font-size: 26px;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo .price-list-promo__subtitle {
    font-size: 16px;
  }
}
@media only screen and (max-width: 93.75em) {
  .price-list__option-item {
    height: 3rem;
  }
  .section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-description h3 {
    font-size: 1.25rem;
  }
  .section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-description p {
    font-size: 0.75rem;
  }
  .section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-header-info {
    gap: 0.375rem;
    height: 100%;
    justify-content: space-between;
  }
  .section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-description {
    margin-bottom: 0.625rem;
  }
  .section__pricing-reusable .price-list__plan-wrapper.with-bg {
    padding: 0 0.5rem 0.5rem;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list__plan-wrapper {
    min-width: 300px;
    width: 300px;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo {
    gap: 20px;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo .price-list-promo__title {
    font-size: 22px;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo .price-list-promo__subtitle {
    font-size: 14px;
    margin-right: 20px;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo .price-list-promo__link {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
}
@media only screen and (max-width: 86.25em) {
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list__plan-wrapper {
    min-width: 260px;
    width: 260px;
  }
  .section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-description p {
    font-size: 0.625rem;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo {
    padding: 24px 32px;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo .price-list-promo__title {
    font-size: 18px;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo .price-list-promo__subtitle {
    font-size: 12px;
    margin-right: 0;
  }
  .section__pricing-reusable .price-list__plan-wrapper-with-bg .price-list-promo .price-list-promo__link {
    font-size: 12px;
    letter-spacing: 1.2px;
    padding: 10px 18px;
  }
}
@media only screen and (max-width: 80em) {
  .section__pricing-reusable .price-list__plan-wrapper {
    width: 200px;
    min-width: 200px;
    padding-left: 0;
  }
  .section__pricing-reusable .price-list__plan-wrapper .price-list__options-list .price-list__option-item {
    height: 2rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  .section__pricing-reusable .price-list__wrapper {
    gap: 0;
  }
}
@media only screen and (max-width: 67.5em) {
  .section__pricing-reusable .price-list__wrapper {
    overflow-x: auto;
  }
}
@media only screen and (max-width: 48em) {
  .section__pricing-reusable .price-list__plan-wrapper.with-bg .price-list__plan-description p {
    font-size: 12px;
  }
  .section__pricing-reusable .price-list__plan-title {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
  }
  .section__pricing-reusable .price-list__plan-title .price-list__plan-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
/* quote_block */
.section__info-quote {
  padding: 10rem 0;
  margin: 0;
}

@media only screen and (max-width: 112.5em) {
  .section__info-quote {
    padding: 5rem 0;
  }
}
@media only screen and (max-width: 48em) {
  .section__info-quote {
    padding: 2rem 0;
  }
}
.section__quote .quote-flex {
  height: 100%;
  width: 100%;
}

.section__quote .quote-description {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section__quote .swiper-slide {
  height: auto;
}

.section__quote .quote-item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  box-sizing: border-box;
  padding: 60px 60px 48px;
  max-width: 1320px;
  margin: 0 auto;
  background-image: url("../img/bgFaq.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section__quote .quote-img {
  display: flex;
  align-items: center;
  width: 3.75rem;
  height: 3.75rem;
}

.section__quote .quote-description__text .author {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: 2.4px;
}

.section__quote .quote-description__text .position {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  opacity: 0.8;
}

.section__quote .quote-content {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: space-between;
  height: 100%;
  gap: 3.5rem;
}

.section__quote .quote-content::before {
  display: none;
}

.section__quote .quote-content::after {
  content: "";
  position: absolute;
  width: 12.5rem;
  height: 10.5rem;
  right: 0;
  top: 0;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg width='232' height='192' viewBox='0 0 232 192' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M174 100.087C174 95.6817 170.429 92.1102 166.023 92.1102L147.177 92.1102C142.772 92.1102 139.2 88.5387 139.2 84.1331L139.2 7.97716C139.2 3.57152 142.772 5.25151e-05 147.177 5.44425e-05L224.023 8.80627e-05C228.429 8.99902e-05 232 3.57156 232 7.97719L232 69.7051C232 142.201 203.954 182.627 147.861 190.984C143.233 191.673 139.2 187.976 139.2 183.297L139.2 163.525C139.2 159.94 141.624 156.859 144.95 155.524C164.317 147.749 174 129.931 174 102.068L174 100.087ZM34.8001 100.087C34.8001 95.6816 31.2286 92.1102 26.823 92.1102L7.9772 92.1102C3.57156 92.1102 9.02954e-05 88.5387 9.21911e-05 84.1331L0.000124961 7.9771C0.000126857 3.57146 3.5716 -8.38525e-06 7.97722 -6.45778e-06L84.823 2.71624e-05C89.2286 2.90899e-05 92.8001 3.5715 92.8001 7.97713L92.8001 69.705C92.8001 142.201 64.7538 182.627 8.66127 190.984C4.03329 191.673 4.75078e-05 187.976 4.95212e-05 183.297L5.80289e-05 163.525C5.95715e-05 159.94 2.4236 156.859 5.7505 155.523C25.1169 147.749 34.8001 129.931 34.8001 102.068L34.8001 100.087Z' fill='white' fill-opacity='0.1'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.section__quote-between-sections .js-swiper-quotes {
  margin-bottom: -250px;
}

.section__quote-between-sections + * {
  padding-top: 350px;
}

.section__quote .quote-content .quote-title p {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #FFF;
  font-size: 26px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.54;
  letter-spacing: 2.08px;
}

.section__quote .quote-content .quote-title {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section__quote .quote-description__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section__quote .quote-description__text .author {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 2.4px;
}

.section__quote .quote-description__text .position {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.btn-circle.btn-circle__quote {
  width: 3.25rem;
  min-width: 3.25rem;
  height: 3.25rem;
  border: 0.25rem solid var(--cyan);
  border-radius: 50%;
  font-size: 28px;
  text-align: center;
  letter-spacing: 0.35rem;
  line-height: 1.43;
  font-weight: 700;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  padding: 7rem;
  text-transform: uppercase;
}

.btn-circle.btn-circle__quote::after {
  content: "";
  position: relative;
  min-width: 12px;
  min-height: 12px;
  top: 42px;
  left: 4px;
  border-top: 0.15rem solid var(--cyan);
  border-right: 0.15rem solid var(--cyan);
  transform: rotate(45deg);
  transition: 0.2s;
}

.btn-circle.btn-circle__quote:hover {
  color: var(--white);
}

.btn-circle.btn-circle__quote:hover::after {
  border-top: 0.1rem solid var(--white);
  border-right: 0.1rem solid var(--white);
}

.btn-link-with-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #14FFF2;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 2.64px;
  text-transform: uppercase;
}

.btn-link-with-arrow::after {
  content: "";
  min-width: 24px;
  min-height: 24px;
  transition: 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M26.668 16L27.3751 15.2929L28.0822 16L27.3751 16.7071L26.668 16ZM6.66797 17C6.11568 17 5.66797 16.5523 5.66797 16C5.66797 15.4477 6.11568 15 6.66797 15V17ZM19.3751 7.29289L27.3751 15.2929L25.9609 16.7071L17.9609 8.70711L19.3751 7.29289ZM27.3751 16.7071L19.3751 24.7071L17.9609 23.2929L25.9609 15.2929L27.3751 16.7071ZM26.668 17H6.66797V15H26.668V17Z' fill='%2314FFF2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(0px);
}

.btn-link-with-arrow:hover::after {
  transform: translateX(6px);
}

.quote-img img {
  height: auto;
  width: 100%;
}

.section__quote .swiper-pagination {
  margin: 3.5rem auto 3rem;
}

@media only screen and (max-width: 112.5em) {
  .section__quote-between-sections + * {
    padding-top: 250px;
  }
  .section__quote .quote-item {
    max-width: 1296px;
    height: 100%;
  }
  .section__quote {
    padding: 3rem 0 4.5rem;
  }
  .section__quote .swiper-pagination {
    margin-bottom: 2rem;
  }
  .section__quote .quote-item {
    padding: 3.75rem;
  }
  .section__quote .quote-content .quote-title {
    gap: 12px;
  }
  .section__quote .quote-content .quote-title p {
    font-size: 26px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.54;
    letter-spacing: 2.08px;
  }
  .section__quote .quote-img {
    width: 3.75rem;
    height: 3.75rem;
  }
  .section__quote .quote-description__text .author {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.17;
    letter-spacing: 2.4px;
  }
  .section__quote .quote-description__text .position {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 1.6px;
  }
  .section__quote .quote-content::after {
    width: 10.5rem;
    height: 8.75rem;
  }
  .btn-link-with-arrow {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
  }
  .btn-link-with-arrow::after {
    min-width: 16px;
    min-height: 16px;
    top: 26px;
  }
  .btn-circle.btn-circle__quote {
    padding: 5rem;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 4px;
  }
  .btn-circle.btn-circle__quote::after {
    top: 28px;
  }
}
@media only screen and (max-width: 112.5em) {
  .section__quote .quote-item {
    max-width: 996px;
    height: 100%;
    padding: 2rem 2.75rem;
    gap: 1rem;
  }
  .section__quote {
    padding: 3rem 0 4.5rem;
  }
  .section__quote .quote-content::after {
    width: 10.5rem;
    height: 8.75rem;
  }
  .section__quote .swiper-pagination {
    margin-bottom: 2rem;
  }
  .section__quote .quote-content .quote-title p {
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1.6px;
  }
  .section__quote .quote-img {
    width: 2.5rem;
    height: 2.5rem;
  }
  .section__quote .quote-description__text {
    gap: 0;
  }
  .section__quote .quote-description__text .author {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 2px;
  }
  .section__quote .quote-description__text .position {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: 1.4px;
  }
  .btn-link-with-arrow {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
  }
  .btn-link-with-arrow::after {
    min-width: 16px;
    min-height: 16px;
    top: 26px;
  }
  .btn-circle.btn-circle__quote {
    padding: 4rem;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 4px;
  }
  .btn-circle.btn-circle__quote::after {
    top: 20px;
    min-width: 8px;
    min-height: 8px;
  }
}
@media only screen and (max-width: 56.25em) {
  .section__quote .quote-item {
    padding: 2.5rem 3rem;
    border-radius: 24px;
  }
  .section__quote .quote-content .quote-title p {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 1.28px;
  }
  .section__quote .quote-img {
    width: 2.5rem;
    height: 2.5rem;
  }
  .section__quote .quote-description__text .author {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1.8px;
  }
  .section__quote .quote-content::after {
    width: 8.75rem;
    height: 5.25rem;
  }
  .btn-link-with-arrow {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
  }
  .section__quote {
    padding: 3rem 0 4.5rem;
  }
  .section__quote .swiper-pagination {
    margin-bottom: 2rem;
  }
  .swiper-pagination .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
  }
  .swiper-pagination .swiper-pagination-bullet-active {
    width: 1rem;
    height: 1rem;
  }
  .section__quote .quote-content .quote-title {
    gap: 8px;
  }
}
@media only screen and (max-width: 48em) {
  .section__quote .quote-item {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 1.5rem;
    border-radius: 16px;
  }
  .section__quote .quote-content .quote-title p {
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 1.04px;
    gap: 1rem;
  }
  .section__quote .quote-img {
    width: 2.25rem;
    height: 2.25rem;
  }
  .section__quote .quote-description__text .author {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.71;
    letter-spacing: 1.4px;
  }
  .section__quote .quote-description__text .position {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 1.1px;
  }
  .section__quote .quote-content::after {
    width: 8.75rem;
    height: 5.25rem;
  }
  .btn-link-with-arrow {
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1.56px;
    text-transform: uppercase;
  }
  .btn-link-with-arrow::after {
    min-width: 20px;
    min-height: 20px;
  }
  .section__quote .quote-description__text {
    gap: 0;
  }
}
.section__quote .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
}

.section__quote .slider-container {
  max-width: 100%;
}

@media only screen and (max-width: 48em) {
  .section__quote .on-mobile-show {
    display: flex;
  }
  .section__quote .on-desktop-show {
    display: none;
  }
}
@media only screen and (min-width: 48em) {
  .section__quote .on-mobile-show {
    display: none;
  }
  .section__quote .on-desktop-show {
    display: flex;
  }
}
/* fixes 12.12.2023 */
.section__product-reusable .product__text .product__text-inner ul li::before {
  min-width: 8px;
  min-height: 8px;
}

.gform_wrapper .top_label li.gfield.gfield_error.gf_left_half {
  margin-right: 0 !important;
}

.gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half,
.gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_right_half {
  padding-right: 16px !important;
}

.gform_legacy_markup_wrapper li.gfield.gfield_error {
  padding-top: 17px !important;
}

.gform_legacy_markup_wrapper ul.gform_fields li.gfield.gfield_error + li.gfield.gfield_error {
  margin-top: 0 !important;
}

@media only screen and (max-width: 640px) {
  .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half,
  .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_right_half {
    padding-right: 0 !important;
  }
}
.section__text-slider .companies-wrapper {
  display: flex;
  gap: 68px;
  align-items: center;
  justify-content: space-between;
  max-width: 1760px;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  width: 1760px;
}

.section__text-slider .company-wrapper {
  max-height: 72px;
  width: auto;
}

.section__text-slider .company-wrapper img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1920px) {
  .section__text-slider .companies-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 1800px) {
  .section__text-slider .companies-wrapper {
    gap: 32px;
    padding: 30px 0;
  }
}
@media only screen and (max-width: 1200px) {
  .section__text-slider .companies-wrapper {
    gap: 16px;
    padding: 30px 0;
  }
}
@media only screen and (max-width: 768px) {
  .section__text-slider .companies-wrapper {
    gap: 16px;
    padding: 16px 0;
  }
  .section__text-slider .companies-wrapper > :nth-child(n+5) {
    display: none;
  }
}
/* fixes 13.12.2023 */
.section__product-reusable .product__text .product__text-inner ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFF;
  margin-left: 1.75rem;
}

.section__product-reusable .product__text .product__text-inner ul li::before {
  position: absolute;
  left: -24px;
  top: 10px;
}

.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

@media only screen and (max-width: 112.5em) {
  .feature-icon {
    padding: 8px;
  }
}
/* h1 rebuilding */
.heading-small {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
}

@media only screen and (max-width: 112.5em) {
  .heading-small {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.heading-medium {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  line-height: 112.5%;
  font-weight: 800;
  font-size: 4rem;
  text-transform: uppercase;
  color: var(--white);
}
@media only screen and (max-width: 112.5em) {
  .heading-medium {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.heading-big {
  font-weight: 800;
  font-size: 5rem;
  line-height: 6.25rem;
  text-transform: uppercase;
  color: var(--white);
}

@media only screen and (max-width: 112.5em) {
  .heading-big {
    font-size: 3rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading-big {
    font-size: 2rem;
  }
}
/* 15.12.2023 popup form restyling */
.popup-container.primary {
  padding: 48px 60px;
  max-width: 700px;
  max-height: 92vh;
}

@media only screen and (max-width: 48em) {
  .popup-container.primary {
    padding: 28px 30px;
  }
}
.popup-container.primary > p {
  margin: 0 !important;
}

.popup-container.primary .gform_legacy_markup_wrapper {
  margin: 0;
}

.popup-container.primary .gform_legacy_markup_wrapper .gform_heading {
  margin: 0;
}

.popup-container.primary .gform_legacy_markup_wrapper .gform_heading .gform_title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 1.8px !important;
  margin: 0;
}

.popup-container.primary .gform_legacy_markup_wrapper .gform_heading .gform_description {
  margin: 0;
}

.popup-container.primary .gform_legacy_markup_wrapper .gform-body .gform_fields {
  display: flex;
  flex-direction: column;
}

.popup-container.primary .gform_legacy_markup_wrapper .gform-body .gform_fields .gfield {
  width: 100%;
}

.popup-container.primary .gform_legacy_markup_wrapper .gform-body .gform_fields .gfield--type-select .gfield_select {
  color: #B3B7C4;
  background: transparent;
  -webkit-appearance: none;
  cursor: pointer;
}

.popup-container.primary .gform_legacy_markup_wrapper .gform-body .gform_fields .gfield--type-select .ginput_container {
  position: relative;
}

.popup-container.primary .gform_legacy_markup_wrapper .gform-body .gform_fields .gfield--type-select .ginput_container::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M12 6L8 10L4 6' stroke='%23B3B7C4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.gform_submission_error {
  line-height: 1.5rem;
}

.popup-container.primary .gform_legacy_markup_wrapper .validation_error {
  display: none;
}

.popup-container.primary .gform_legacy_markup_wrapper li.gfield.gfield_error {
  padding-top: 0px !important;
}

@media screen and (max-height: 1079px) {
  .popup-container.primary {
    padding: 28px 30px;
  }
  .popup-container.primary .gform_legacy_markup_wrapper .gform_heading .gform_title {
    display: none;
  }
  .popup-container.primary .gform_legacy_markup_wrapper input,
  .popup-container.primary .gform_legacy_markup_wrapper select,
  .popup-container.primary .gform_legacy_markup_wrapper textarea {
    padding: 16px !important;
  }
  .popup-container.primary .gform_legacy_markup_wrapper .gfield_description.gfield_validation_message {
    font-size: 0.75rem;
  }
}
@media screen and (max-height: 900px) {
  .popup-container.primary .gform_legacy_markup_wrapper input,
  .popup-container.primary .gform_legacy_markup_wrapper select,
  .popup-container.primary .gform_legacy_markup_wrapper textarea {
    padding: 16px !important;
  }
  .popup-container.primary .gform_legacy_markup_wrapper .gform-body .gform_fields .gfield h4 {
    font-size: 1rem;
    line-height: 1.5;
  }
  .popup-container.primary .gform_legacy_markup_wrapper .gform-body .gform_fields .gfield {
    margin-top: 8px;
  }
  .popup-container.primary .gform_legacy_markup_wrapper .gform-body .gform_fields .gfield .gfield_checkbox .gfield-choice-input {
    width: 16px;
    height: 16px;
  }
  .popup-container.primary .gform_legacy_markup_wrapper .gfield_checkbox li label,
  .gform_legacy_markup_wrapper .gfield_radio li label {
    font-size: 0.625rem;
  }
  .popup-container.primary .gform_legacy_markup_wrapper .gform_footer {
    padding: 0;
    margin: 16px 0 0;
  }
}
@media screen and (max-height: 730px) {
  .popup-container.primary .gform_legacy_markup_wrapper input,
  .popup-container.primary .gform_legacy_markup_wrapper select,
  .popup-container.primary .gform_legacy_markup_wrapper textarea {
    padding: 10px !important;
    padding: 10px;
  }
  .popup-container.primary .gform_legacy_markup_wrapper .gfield_description.gfield_validation_message {
    font-size: 0.625rem;
  }
}
@media screen and (max-height: 680px) {
  .popup-container.primary {
    padding: 16px;
  }
  .popup-container.primary .gform_legacy_markup_wrapper .gform-body .gform_fields .gfield {
    margin-top: 6px;
  }
}
.section__quote .quote-description.quote-description__long-image {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.section__quote .quote-description.quote-description__long-image .quote-img {
  max-width: 148px;
  width: 100%;
  /* 	height: 3.25rem; */
}

@media only screen and (max-width: 112.5em) {
  .section__quote .quote-description.quote-description__long-image .quote-img {
    max-width: 100px;
    /* 		height: 3.25rem; */
  }
}
@media only screen and (max-width: 56.25em) {
  .section__quote .quote-description.quote-description__long-image .quote-img {
    /* 		height: 1.125rem; */
    max-width: 80px;
    align-self: flex-end;
  }
}
@media only screen and (max-width: 65.625em) {
  .nav ul li {
    width: 18.5rem;
  }
}
@media only screen and (max-width: 36.5em) {
  .nav ul li {
    width: 17.5rem;
  }
}
@media only screen and (max-width: 93.75em) {
  .header__inner {
    gap: 1.5rem;
    justify-content: space-between;
  }
  .header__inner-wrap {
    gap: 1rem;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 78.125em) and (min-width: 65.625em) {
  .nav ul li {
    font-size: 0.688rem;
  }
  .header__inner {
    gap: 1rem;
  }
  .nav ul {
    gap: 0.75rem;
  }
  .header__inner .logo {
    min-width: 80px;
  }
}
.dropdown-item__link a {
  text-transform: none;
}

.gform_legacy_markup_wrapper {
  margin: 0;
}

.contact-us__form .gform_legacy_markup_wrapper ul li.gfield {
  margin-top: 12px;
}

.gform_legacy_markup_wrapper .gform_footer input.gform_button {
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 24px !important;
  letter-spacing: 3.2px;
  color: #00206C;
}

.gform_legacy_markup_wrapper {
  margin-bottom: 0px !important;
  margin-top: 0px !important;
}
/*# sourceMappingURL=style.min.css.map */
