@font-face {
  font-family: Ppneuemontrealmono;
  src: url('../fonts/PPNeueMontrealMono-Regular.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Ppneuemontreal;
  src: url('../fonts/PPNeueMontreal-Regular.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --text-blsck: #111;
  --black: #1c1c20;
  --silver: #c7c7c7;
  --is__blue: #2a5ee9;
  --dark-grey: #9f9f9f;
  --is__dark-blue: #140af0;
  --is__blue--hover: #3d70f8;
  --is__light-grey: #f4f4f8;
  --white: white;
  --soft-gray: #b9b9b9;
  --white-40p: #fff6;
  --header--black: #111;
  --header--white: white;
  --text--secondarty: #9e9ead;
  --gray-light-mode--primary: #a0a0aa;
  --is__purple: #cd78f0;
  --text--secondary-upd: #82828c;
  --white-60p: #fff9;
  --dark-silver: #7c7c7c;
  --header--header-background: #fff;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--text-blsck);
  font-family: Ppneuemontreal, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
}

h1 {
  letter-spacing: -.306667rem;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Ppneuemontreal, sans-serif;
  font-size: 7.66667rem;
  font-weight: 400;
  line-height: 84%;
}

h2 {
  letter-spacing: -.175rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5rem;
  font-weight: 400;
  line-height: 92%;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

h5 {
  color: #4f4f4f;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
}

p {
  margin-bottom: 10px;
}

a {
  color: var(--black);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

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

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.navbar {
  z-index: 30;
  background-color: #0006;
  width: 100%;
  position: fixed;
}

.navbar.black {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: #0006;
}

.section-wrp {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.section-wrp.nav-wrp {
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.section-wrp.nav-wrp.new {
  align-items: flex-start;
  padding-top: 30px;
}

.btn {
  text-align: center;
  background-color: #2a5ee9;
  border-radius: 45px;
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: 210px;
  height: 65px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 22px;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.btn:hover {
  background-color: #386bf5;
}

.btn.btn-small {
  letter-spacing: .23px;
  text-transform: uppercase;
  min-width: auto;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 12px;
  line-height: 20px;
}

.logo {
  flex: none;
  width: 130px;
  height: auto;
}

.main-s3-card-note {
  opacity: .4;
  color: #000;
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
}

.main-s3-card-note.is__career-page {
  color: #fff;
}

.footer {
  align-items: flex-start;
  width: 100%;
  display: block;
  position: relative;
}

.footer-wrp {
  color: #9f9f9f;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 50px 24px;
  display: flex;
  position: relative;
}

.footer-logo {
  width: 130px;
  display: flex;
}

.footer-logo.services-footer-logo {
  width: 110px;
}

.contact-txt {
  color: var(--silver);
  padding-right: 50px;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
}

.contact-txt.footer-txt-mob-order {
  margin-bottom: 20px;
}

.contact-txt.footer-txt-mob-order.is__hide {
  opacity: 0;
  pointer-events: none;
}

.cmm-div {
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  display: flex;
  position: relative;
}

.smm-link {
  background-color: #f0f0f0;
  border-radius: 20px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  text-decoration: none;
  display: flex;
}

.smm-icon {
  flex: none;
  width: 13px;
}

.slide-smm-link {
  background-color: #ededed;
  border-radius: 40px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-bottom: 11px;
  display: flex;
}

.side-smm-icon {
  width: 16px;
}

.footer-logo-div {
  grid-row-gap: 32px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.brand {
  align-items: center;
  padding-left: 0;
  display: flex;
}

.nav-menu-mob-div {
  display: none;
}

.mob-menu-wrp {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: none;
}

.nav-link-mob {
  color: #000;
  letter-spacing: .23px;
  text-transform: uppercase;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.menu-close {
  display: none;
}

.side-smm-link-on-black {
  background-color: #262626;
  border-radius: 40px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-bottom: 11px;
  display: flex;
}

.black {
  background-color: #000;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.mix {
  grid-column-gap: 16px;
  grid-row-gap: 4px;
  flex-direction: column;
  grid-template-rows: minmax(auto, .25fr) minmax(auto, auto) minmax(auto, auto);
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 10%;
  display: flex;
}

.mix.new-post {
  grid-column-gap: 16px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1px;
  grid-auto-columns: 1fr;
  display: grid;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.image-56 {
  object-fit: cover;
  border-radius: 100px;
  width: 100px;
  max-width: none;
  height: 100px;
}

.div-block-28 {
  color: #adadad;
  flex-direction: row;
  justify-content: center;
  width: 100px;
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 14px;
  display: flex;
}

.text-block-16 {
  margin-top: 10px;
  font-family: Manrope, sans-serif;
  font-weight: 800;
}

.section-8 {
  width: 600px;
  margin-top: 140px;
  margin-left: auto;
  margin-right: auto;
}

.search-2 {
  margin-top: 52px;
  display: block;
}

.div-block-30 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.search-result-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 50px;
  display: flex;
}

.text-block-17 {
  font-family: Manrope, sans-serif;
  font-size: 30px;
  font-weight: 600;
}

.empty-state-2 {
  text-align: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.heading-9 {
  color: #000;
  justify-content: flex-start;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  font-family: Manrope, sans-serif;
  font-size: 100px;
  font-weight: 800;
  line-height: 100px;
  display: flex;
}

.search-result-list {
  display: block;
}

.heading-12 {
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 30px;
  line-height: 40px;
}

.text-block-22 {
  color: #9f9f9f;
  font-family: Manrope, sans-serif;
  font-size: 22px;
  line-height: 30px;
}

.image-61 {
  border-radius: 30px;
}

.link-block-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  align-items: center;
  text-decoration: none;
  display: grid;
}

.author-page-heading {
  letter-spacing: .1rem;
  font-size: 35px;
  font-weight: 400;
  line-height: 45px;
}

.smm-menu-blog-copy {
  z-index: 20;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  position: static;
  inset: 28% 6% 0% auto;
}

.author-info {
  z-index: 20;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  position: relative;
  inset: 0% auto 0% 0%;
}

.div-block-36 {
  z-index: 0;
  justify-content: space-between;
  width: 1124px;
  margin-top: 140px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: fixed;
  inset: 0%;
}

.div-block-42 {
  flex-direction: column;
  align-items: center;
  width: auto;
  display: flex;
}

.footer-copy {
  background-color: #fff;
  position: absolute;
  inset: auto 0% 0%;
}

.div-block-44 {
  width: 1124px;
  margin: 114px auto 40px;
}

.articles-template__sharing-buttons {
  display: flex;
}

.div-block-51 {
  margin-bottom: 60px;
}

.search-input-copy {
  color: #fff;
  background-color: #000;
  border-radius: 50px;
  width: 1124px;
  height: 50px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: 0;
  padding-left: 65px;
  padding-right: 58px;
  font-size: 18px;
  display: none;
  box-shadow: 1px 0 6px #3b3b3b;
}

.search-button-copy {
  z-index: 50;
  background-color: #0000;
  background-image: url('../images/search.webp');
  background-position: 0 0;
  background-size: cover;
  border-radius: 20px;
  width: 40px;
  height: 35px;
  margin-left: 10px;
  display: none;
  position: relative;
  top: -46px;
  left: 8px;
}

.button-4-copy {
  z-index: 5;
  text-align: left;
  background-color: #0000;
  background-image: url('../images/search.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 70px;
  justify-content: flex-start;
  width: 40px;
  height: 40px;
  padding: 0 21px;
  display: flex;
  position: static;
  left: 0;
}

.search-btn-div {
  z-index: 10;
  justify-content: flex-end;
  width: 1124px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: fixed;
  inset: auto 0% 12%;
}

.footer-copy {
  position: static;
  inset: auto 0% 0%;
}

.body-2 {
  height: 100%;
}

.smm-link-hbr {
  background-color: #f0f0f0;
  background-image: url('../images/Group-355.svg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 20px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  text-decoration: none;
  display: flex;
}

.case-item-div {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  color: var(--black);
  grid-template-rows: auto;
  grid-template-columns: 350px 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 30px;
  text-decoration: none;
  display: grid;
}

.cases-collection-list {
  grid-column-gap: 2rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tel-html {
  margin-bottom: 20px;
  padding-right: 50px;
  text-decoration: none;
}

.footer-info-div {
  flex-direction: column;
  display: flex;
}

.tel-html-mob {
  text-decoration: none;
}

.side-smm-icon-tg {
  width: 16px;
  margin-right: 3px;
}

.smm-link-tg-new {
  background-color: #ededed;
  border-radius: 40px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: .75rem;
  display: flex;
}

.nav-link-mob-giga {
  color: #000;
  letter-spacing: .23px;
  text-transform: uppercase;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.footer__partner-logo-wrapper {
  width: 120px;
  min-width: 120px;
  position: absolute;
  inset: auto 0% -137px auto;
}

.footer__partner-logo-wrapper.is__russoft {
  bottom: -50px;
}

.footer__partner-logo {
  width: 100%;
  position: static;
  inset: auto 0% -80px auto;
}

.reviews__link {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 120%;
}

.reviews__link.is__career-page {
  color: #fff;
  text-transform: none;
  margin-top: 15px;
}

.new-section.is__overflow-hidden {
  overflow: hidden;
}

.new-section.is__overflow-hidden.is__background-color-blue {
  background-color: #2a5ee9;
}

.new-section.is__with-indent {
  margin-top: 12.5rem;
}

.new-section.is__blue-cover-section {
  background-color: var(--is__blue);
  margin-top: 80px;
}

.new-section.is__background-color-black {
  background-color: var(--text-blsck);
}

.new-section.background-color-dark-grey {
  background-color: #111;
}

.new-section.overflow-clip {
  overflow: clip;
}

.new-section.services-page-cover {
  z-index: 2;
  position: relative;
}

.new-container {
  max-width: 1600px;
  padding-left: 24px;
  padding-right: 24px;
}

.new-body {
  color: var(--black);
  font-size: .875rem;
  line-height: 140%;
}

.navbar__layout-wrapper {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0000;
  width: 100%;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar__brand {
  width: 10.625rem;
}

.navbar__logo {
  width: 100%;
  height: 100%;
}

.navbar__wapper {
  justify-content: space-between;
  align-items: center;
  padding-top: 1.4375rem;
  padding-bottom: 1.4375rem;
  display: flex;
}

.navbar__links-wrapper {
  align-items: center;
  display: flex;
}

.navbar__navlink {
  text-transform: uppercase;
  align-items: center;
  margin: -1rem;
  padding: 1rem;
  font-size: .75rem;
  font-weight: 700;
  line-height: 100%;
  display: flex;
}

.ui-kit {
  margin-top: 300px;
  display: block;
}

.navbar__navlinks-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  display: grid;
}

.navbar__dropdown-toogle {
  text-transform: uppercase;
  align-items: center;
  margin: -1rem;
  padding: 1rem;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
}

.navbar__dropdown-list {
  background-color: #0000;
  display: block;
  overflow: hidden;
}

.navbar__dropdown-links-wrapper {
  grid-row-gap: .5rem;
  flex-direction: column;
  margin-top: 1rem;
  display: flex;
  overflow: visible;
}

.navbar__dropdown-links {
  color: var(--black);
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none;
}

.navbar__dropdown-arrow {
  justify-content: center;
  align-items: center;
  width: .75rem;
  height: .75rem;
  margin-left: .5rem;
  display: flex;
}

.new-link {
  color: var(--black);
  text-decoration: none;
}

.new-link.is__navbar-phone-link {
  color: var(--dark-grey);
  margin-left: 3rem;
  margin-right: 3rem;
  font-size: 1rem;
  font-weight: 700;
}

.is__button {
  background-color: var(--is__blue);
  color: #fff;
  text-transform: uppercase;
  border-radius: 2.5rem;
  padding: 1.1875rem 2rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 120%;
}

.is__button.is__full-width {
  justify-content: center;
  align-items: center;
  width: 100%;
  font-weight: 400;
  display: flex;
}

.is__button.is__load-more-button {
  justify-content: center;
  align-items: center;
  width: 27.5rem;
  margin-top: 5rem;
  text-decoration: none;
  display: flex;
}

.is__button.is__vacancy-button {
  text-transform: capitalize;
  justify-content: center;
  align-items: center;
  width: 20rem;
  font-weight: 700;
  display: flex;
}

.is__button.is__form-button {
  text-transform: none;
  width: 27.5rem;
  height: 4rem;
  margin-top: 5rem;
  font-size: 1.25rem;
}

.is__button.is__dark-blue-button {
  background-color: var(--is__dark-blue);
  transition: all .3s;
}

.is__button.is__dark-blue-button:hover {
  background-color: var(--is__blue);
}

.navbar__smm-link {
  background-color: #f4f4f8;
  border-radius: 50%;
  width: 3.375rem;
  height: 3.375rem;
  margin-left: 1rem;
}

.html-embed-10 {
  width: 100%;
  height: 100%;
  display: flex;
}

.career__cover-layout {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15.625rem;
  display: flex;
}

.career__page-heading {
  letter-spacing: -1px;
  margin-bottom: 2.25rem;
  font-size: 4.375rem;
  line-height: 110%;
}

.is__text-size-big {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 140%;
}

.is__text-size-big.is__text-color-grey {
  color: var(--dark-grey);
  font-weight: 400;
}

.is__text-size-big.is__text-color-grey.is__cover-subtitle {
  max-width: 42.5rem;
  font-weight: 400;
}

.is__text-size-big.is__text-color-grey.is__info-title {
  margin-right: .5rem;
}

.is__text-size-big.is__text-color-grey.is__tallent-subtitle {
  margin-top: 2.25rem;
}

.is__text-size-big.is__text-color-grey.is__recriation-subtitle {
  max-width: 57.5rem;
  margin-top: 2.25rem;
}

.is__text-size-big.is__ratinf-subtitle {
  color: #fff;
  text-transform: none;
  margin-top: 2rem;
  font-weight: 400;
}

.is__text-size-big.is__text-color-blue {
  color: var(--is__blue);
}

.is__text-size-big.is__stories-cover-description {
  opacity: .6;
  max-width: 50rem;
  margin-top: 1.5rem;
}

.is__button-wrapper {
  justify-content: center;
  width: 20.9375rem;
  margin-top: 3.75rem;
  display: flex;
}

.is__button-wrapper.is__recriation-button {
  width: 27.5rem;
}

.career__cover-illustration-wrapper {
  z-index: 2;
  width: 100%;
  margin-top: 5rem;
  position: relative;
}

.career__cover-illustration {
  width: 100%;
}

.career__cover-illustration.is__postion-absolute {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.rating__card-wrapper {
  color: #ffffff80;
  text-align: center;
  text-transform: uppercase;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.rating__icon {
  width: 7.625rem;
  margin-bottom: .75rem;
}

.is__text-size-normal {
  font-size: 1rem;
}

.is__text-size-normal.is__weight-extrabold {
  font-weight: 800;
}

.is__text-size-normal.is__weight-medium {
  font-weight: 500;
}

.rating__swiper-layout {
  width: 100%;
  margin-top: 6.125rem;
  margin-bottom: 6.125rem;
  overflow: hidden;
}

.about__layout-wrapper {
  align-items: flex-start;
  display: flex;
}

.about__heading-wrapper {
  width: 50%;
}

.about__content-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 50%;
  display: grid;
}

.is__h2-heading {
  color: var(--black);
  letter-spacing: -1px;
  font-size: 4.375rem;
  font-weight: 400;
  line-height: 110%;
}

.about__point-wrapper {
  align-items: flex-start;
  display: flex;
}

.about__arrow-bullit {
  flex: none;
  width: 5rem;
  margin-right: 2.3125rem;
  display: flex;
  position: relative;
  top: .5rem;
}

.about__arrow-bullit.is__only-mobile {
  display: none;
}

.is__text-size-large {
  font-size: 1.75rem;
  line-height: 140%;
}

.is__text-size-large.is__weight-bold {
  font-weight: 400;
}

.is__text-size-large.is__weight-bold.is__vacancies-name {
  margin-bottom: 1rem;
  font-weight: 400;
}

.is__text-size-large.is__weight-bold.is__stories__card-description {
  margin-bottom: 1rem;
}

.is__text-size-large.is__weight-bold.is__story-description {
  color: var(--dark-grey);
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.is__text-size-large.is__weight-bold.is__mobile-size-normal {
  font-weight: 400;
}

.vacancies__layout-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.vacancies__swiper-layout {
  width: 100%;
  margin-top: 5rem;
}

.vacancies__swiper-wrapper {
  overflow: hidden;
}

.vacancies__card-wrapper {
  color: var(--black);
  text-align: left;
  text-transform: none;
  background-color: #f4f4f8;
  border-radius: 1.875rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 26.25rem;
  padding: 2.5rem 1.5rem;
  display: flex;
}

.vacancies__info-wrapper {
  align-items: center;
  display: flex;
}

.vacancies__button {
  color: var(--is__blue);
  align-items: center;
  margin: -1rem;
  padding: 1rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.vacancies__button:hover {
  color: var(--is__blue--hover);
}

.button__arrow {
  width: 1.3125rem;
  height: 1.3125rem;
  margin-left: .5rem;
  display: flex;
}

.why__layout-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.why__card-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: 17.5rem;
  grid-auto-rows: 17.5rem;
  width: 100%;
  margin-top: 5rem;
}

.why__card {
  background-color: var(--is__light-grey);
  border-radius: 1.875rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 2rem 3rem 2.5rem 2rem;
  display: flex;
}

.why__card-icon {
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
}

.why__card-heading-wrapper {
  grid-row-gap: .25rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.why__image {
  border-radius: 1.875rem;
  width: 100%;
  height: 100%;
}

.tallent__layout-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.tallent__heading-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 59rem;
  display: flex;
}

.tallent__cards-grid {
  grid-column-gap: 2.5rem;
  grid-template-rows: auto;
  width: 100%;
  margin-top: 5rem;
}

.tallent__card {
  z-index: 2;
  border-radius: 1.875rem;
  position: relative;
  overflow: hidden;
}

.tallent__card-imge {
  z-index: 1;
  position: relative;
}

.tallent__card-link {
  z-index: 1;
  background-color: var(--is__light-grey);
  color: var(--black);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2.625rem 2rem 3rem;
  text-decoration: none;
  display: flex;
  position: relative;
}

.is__text-size-greate {
  letter-spacing: -1px;
  font-size: 2.5rem;
  line-height: 100%;
}

.is__text-size-greate.is__weight-bold {
  font-weight: 400;
}

.is__text-size-greate.is__weight-bold.is__stories-card-name {
  width: 50%;
  font-weight: 400;
}

.tallent__card-link-arrow-wrapper {
  background-color: var(--is__blue);
  border-radius: 50%;
  width: 3.25rem;
  height: 3.25rem;
}

.tallent__card-arrow-icon {
  width: 100%;
  height: 100%;
  display: flex;
}

.recriation__layout-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.recriation__image {
  border-radius: 1.875rem;
  width: 100%;
  margin-top: 5rem;
}

.smi__layout-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.smi__swiper-wrapper {
  overflow: hidden;
}

.smi__swiper-layout {
  width: 100%;
  margin-top: 5rem;
  overflow: hidden;
}

.smi__card {
  flex-direction: column;
  justify-content: space-between;
  height: 16.875rem;
  text-decoration: none;
  display: flex;
}

.smi__card-logo {
  height: 2.5rem;
  margin-bottom: 1.25rem;
}

.smi-pagination {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 3.25rem;
  display: flex;
}

.events__cover-layout {
  color: #fff;
  flex-direction: column;
  align-items: center;
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
  display: flex;
}

.events__cover-layout.is__align-start {
  align-items: flex-start;
}

.is__h1-heading {
  letter-spacing: -1px;
  font-size: 4.375rem;
  line-height: 110%;
}

.is__h1-heading.is__big {
  font-family: Manrope, sans-serif;
  font-size: 6.875rem;
  font-weight: 600;
}

.is__h1-heading.is__large-heading {
  letter-spacing: -.35rem;
  font-family: Manrope, sans-serif;
  font-size: 8.75rem;
  font-weight: 600;
  line-height: 100%;
}

.events__swiper-layout {
  width: 100%;
  overflow: hidden;
}

.events__swiper-wrapper {
  margin-top: 5rem;
}

.events__image {
  object-fit: cover;
  border-radius: 1.875rem;
  width: 100%;
}

.events-pagination {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 3.25rem;
  display: flex;
}

.events__swiper-heading-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 57.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.events__swiper-wrapper-2, .events__swiper-wrapper-3 {
  margin-top: 5rem;
}

.events-pagination-2, .events-pagination-3 {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 3.25rem;
  display: flex;
}

.footer__wrapper {
  margin-top: 12.5rem;
}

.stories__collection-list {
  grid-column-gap: 2.5rem;
  grid-row-gap: 3.75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.stories__collection-item {
  background-color: var(--is__light-grey);
  border-radius: 1.875rem;
  flex-direction: column;
  justify-content: space-between;
  height: 32.5rem;
  padding: 2.625rem 3rem 2rem 2rem;
  display: flex;
}

.stories__card-avatar {
  object-fit: cover;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.75rem;
}

.story__layout-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.story__rich-text {
  font-size: 1.25rem;
  line-height: 140%;
}

.story__content-wrapper {
  max-width: 57.5rem;
}

.story__links-wrapper {
  grid-row-gap: 1rem;
  flex-direction: column;
  display: none;
}

.story__social-link {
  background-color: var(--is__light-grey);
  border-radius: 50%;
  width: 3.375rem;
  height: 3.375rem;
}

.story__social-icon {
  width: 100%;
  height: 100%;
  display: flex;
}

.story__other-story-wrapper {
  flex-direction: column;
  align-items: center;
  margin-bottom: 12.5rem;
  display: flex;
}

.story__other-story-cards-wrapper {
  margin-top: 5rem;
}

.story__heading-wrapper {
  text-align: center;
  max-width: 57.5rem;
}

.vacancies-list__layout-wrapper {
  margin-top: 6.875rem;
}

.vacancies-list__form {
  background-color: #0000;
}

.categories-list__item {
  margin-bottom: 5.625rem;
}

.is__empty-state {
  background-color: #ddd0;
  display: block;
}

.vacancies__iitem {
  border-top: 1px solid #c7c7c74d;
}

.vacancies__iitem:last-child {
  border-bottom: 1px solid #c7c7c74d;
}

.vacancies__description-wrapper {
  grid-column-gap: 1.5625rem;
  grid-row-gap: 16px;
  color: var(--black);
  grid-template-rows: auto;
  grid-template-columns: 31.5rem max-content 1fr 30rem;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  text-decoration: none;
  display: grid;
}

.vacancy-description__layout-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.vacancy-description__wrapper {
  width: 57.5rem;
}

.vacancy-description__description-path {
  margin-bottom: 3.875rem;
}

.vacancies-description__-requirements-path {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
  display: flex;
}

.vacancies-description__-requirements-tags-wrapper {
  margin-top: 1rem;
}

.vacancies-description__-tag-text {
  background-color: var(--is__light-grey);
  color: var(--black);
  text-transform: lowercase;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .5rem 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 140%;
  display: flex;
}

.vacancy__button-wrapper {
  margin-top: 2rem;
  margin-bottom: 7.625rem;
}

.vacancy__rich-text {
  margin-top: 2rem;
}

.vacancies-list__filters-wrapper {
  margin-bottom: 6.875rem;
}

.categories-list__link {
  color: var(--black);
  width: 100%;
  text-decoration: none;
}

.vacancy-description__form-block {
  width: 57.5rem;
  margin-top: 8.75rem;
  margin-bottom: 12.5rem;
}

.vacancy-description__inputs-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 4.375rem;
  display: grid;
}

.vacancy-description__input {
  color: var(--black);
  border: 2px solid #c7c7c74d;
  border-radius: 12px;
  height: 4.875rem;
  margin-bottom: 0;
  padding-left: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 140%;
}

.vacancy-description__input:focus {
  border-color: var(--is__blue--hover);
}

.vacancy-description__input::placeholder {
  color: var(--silver);
  font-size: 1.5rem;
}

.vacancy-description__input.is__upload-input {
  border-style: dashed;
  padding-left: 0;
}

.vacancy-description__load-default {
  width: 100%;
  height: 100%;
}

.vacancy-description__upload-button {
  color: var(--is__blue);
  background-color: #0000;
  border: 1px solid #0000;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding-left: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
}

.vacancy-description__upload-button.is__success-state {
  justify-content: space-between;
}

.vacancy-description__form-checkbox-field {
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.vacancy-description__form-checkbox {
  background-image: url('../images/checkbox-default.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-style: none;
  border-radius: 0;
  flex: none;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0;
  margin-left: 0;
}

.vacancy-description__form-checkbox.w--redirected-checked {
  background-color: #0000;
  background-image: url('../images/checkbox-checked.svg');
  border-style: none;
  border-radius: 0;
}

.vacancy-description__form-checkbox.w--redirected-focus {
  box-shadow: none;
}

.vacancy-description__form-checkbox-label {
  color: var(--silver);
  margin-bottom: 0;
  margin-left: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.is__text-color-blue {
  color: var(--is__blue);
}

.error-state {
  margin-top: 0;
  font-size: 1rem;
  position: relative;
  top: 3.4375rem;
}

.categories-list__vacancy-layout, .vacancies__collection-list-wrapper {
  margin-top: 1.5rem;
}

.is__vacancies-nest-wrapper {
  display: none;
}

.vacancies-list__dropdown {
  width: 31.25rem;
}

.vacancies-list__dropdown-toogle {
  color: var(--dark-grey);
  background-color: #f4f4f8;
  border-radius: .75rem;
  justify-content: space-between;
  align-items: center;
  height: 3.625rem;
  padding: 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  display: flex;
}

.vacancies-list__dropdown-list {
  background-color: #0000;
  border-radius: .75rem;
  display: block;
  overflow: hidden;
}

.select-field {
  display: none;
}

.vacancies-list-dropdown-link {
  background-color: #0000;
  padding-top: .9375rem;
  padding-bottom: .9375rem;
  padding-left: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  transition: all .2s;
}

.vacancies-list-dropdown-link:hover, .vacancies-list-dropdown-link.w--current {
  color: var(--is__blue);
}

.vacancies-list__dropdown-arrow {
  display: flex;
}

.vacancies-list__dropdown-content-wrapper {
  background-color: var(--is__light-grey);
  border-radius: .75rem;
  max-height: 18.75rem;
  margin-top: .25rem;
  overflow: auto;
}

.vacancies__description-headings {
  grid-column-gap: 1.5625rem;
  grid-row-gap: 16px;
  color: var(--black);
  grid-template-rows: auto;
  grid-template-columns: 31.5rem 30rem 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  text-decoration: none;
  display: none;
}

.is__text-size-largest {
  font-size: 5.625rem;
  font-weight: 600;
  line-height: 110%;
}

.is__text-massive {
  letter-spacing: -.045rem;
  font-size: 3rem;
  line-height: 130%;
}

.is__text-massive.is__weight-semibold strong {
  color: var(--dark-grey);
  font-weight: 600;
}

.is__text-massive.is__weight-semibold.is__hide, .is__text-massive.is__weight-semibold.is__only-mobile {
  display: none;
}

.story__avatar-image {
  width: 27.1rem;
  margin-bottom: 4.375rem;
}

.story__avatar-image.is__only-mobile {
  display: none;
}

.text-color-grey {
  color: var(--dark-grey);
  font-weight: 400;
}

.text-color-grey.text-opacity-50 {
  opacity: .5;
}

.text-color-grey.subheading {
  text-transform: lowercase;
  font-family: Ppneuemontrealmono, sans-serif;
  position: absolute;
  inset: 0% auto auto 0%;
}

.text-color-grey.no-link-text {
  text-transform: lowercase;
  font-family: Ppneuemontrealmono, sans-serif;
  font-size: 1rem;
  text-decoration: none;
}

.text-color-grey.no-link-text.text-capitalaze-none {
  text-transform: lowercase;
  font-family: Ppneuemontreal, sans-serif;
}

.text-color-grey.section-subtitle-desktop-absolute {
  letter-spacing: -.02rem;
  text-transform: lowercase;
  font-family: Ppneuemontrealmono, sans-serif;
  line-height: 132%;
  position: absolute;
}

.text-color-grey.wrap-no-wrap {
  white-space: nowrap;
}

.text-color-grey.monospace-text.no-wrap {
  flex: none;
}

.is__text-size-grand {
  letter-spacing: -.0625rem;
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 110%;
  display: block;
}

.is__text-size-hefty {
  letter-spacing: -.0625rem;
  font-size: 4.375rem;
  font-weight: 600;
  line-height: 110%;
}

.show-all__buttun {
  color: var(--black);
  align-items: center;
  text-decoration: none;
  display: flex;
}

.navbar-all__layout-wrapper {
  z-index: 99999;
  background-color: #fff;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-all__layout {
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.navbar-all__logo-wrapper {
  z-index: 2;
  position: relative;
}

.navbar-all__logo-icon {
  width: 10.625rem;
  display: flex;
}

.navbar-all__links-wrapper {
  grid-column-gap: 1.5rem;
  align-items: center;
  display: flex;
}

.navbar-all__content-wrapper {
  grid-column-gap: 3.13rem;
  align-items: center;
  display: flex;
}

.navbar-all__link {
  letter-spacing: .03125rem;
  text-transform: uppercase;
  margin: -1rem;
  padding: 1rem;
  font-size: .75rem;
  transition: all .3s;
  display: block;
}

.navbar-all__link:hover {
  opacity: .5;
}

.navbar-all__link.is__no-hover:hover {
  opacity: 1;
}

.navbar-all__menu-button {
  z-index: 50;
  cursor: pointer;
  width: 2.375rem;
  height: 2.375rem;
  position: relative;
}

.navbar-all__menu-icon {
  opacity: 1;
  width: 100%;
  height: 100%;
  display: flex;
}

.navbar-all__dropdown-toogle {
  padding: 0;
}

.navbar-all__dropdown {
  z-index: 0;
  margin-left: 0;
  margin-right: 0;
}

.navbar-all__dropdown.is__hide {
  display: none;
}

.navbar-all__dropdown-list {
  z-index: 9000;
  background-color: #ddd0;
  border: 1px #000;
  padding-left: 2rem;
  display: block;
  left: -2rem;
  overflow: hidden;
}

.navbar-all__dropdown-links-wrapper {
  grid-row-gap: 2rem;
  background-color: #fff;
  border-radius: 1.625rem;
  flex-direction: column;
  align-items: flex-start;
  margin: 2rem 2rem 10rem;
  padding: 2rem 1.5rem;
  display: flex;
  position: relative;
  left: -2rem;
}

.navbar-all__secondary-dropdown-list {
  background-color: #0000;
  padding-left: 0;
  display: block;
  position: relative;
  left: 0;
  overflow: hidden;
}

.navbar-all__secondary-dropdown {
  margin-left: 0;
  margin-right: 0;
}

.navbar-all__secondary-dropdown-toogle {
  cursor: pointer;
  padding: 0;
}

.navbar-all__secondary-dropdown-links-wrapper {
  grid-row-gap: 2rem;
  background-color: #fff;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 2rem;
  padding-top: 2rem;
  padding-left: 1.5rem;
  display: flex;
  position: relative;
  left: -2rem;
}

.navbar-all__blind-layout {
  z-index: 1;
  background-color: #fff;
  width: 100%;
  height: 0;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.navbar-all__blind-links {
  grid-row-gap: 2.5rem;
  margin-top: 15vh;
}

.navbar-all__blind-footer {
  color: #9f9f9f;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 5vh;
  display: flex;
  position: relative;
}

.navbar-all__blind-content-wrapper {
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding-bottom: 6.25vh;
  display: flex;
}

.is__anchor-trigger {
  position: absolute;
  inset: -10rem auto auto 0%;
}

.navbar__social-links-wrapper {
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  display: flex;
  position: relative;
}

.navbar__info-wrapper {
  flex-direction: column;
  display: flex;
}

.navbar__buttons-wrapper {
  align-items: center;
  display: flex;
}

.case__lama-table-heading, .case__lama-table {
  width: 100%;
}

.case-lama-table-mobile {
  display: none;
}

.services__cover-layout {
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100vh;
  transition: all .25s;
  display: flex;
}

.services-tasks__layout {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  align-items: flex-start;
  margin-top: 10rem;
  display: flex;
  position: relative;
  overflow: clip;
}

.services__section-sticky-heading-wrapper {
  color: var(--black);
  width: 49%;
  padding-right: 5rem;
  position: sticky;
  top: 1rem;
}

.services__section-sticky-heading-wrapper.no-sticky {
  position: static;
}

.services__section-right-side-wrapper {
  flex: 1;
  max-width: 50%;
}

.services__first-screen-layout {
  background-color: #000;
  height: 100vh;
  position: relative;
}

.page-heading {
  max-width: 90%;
}

.page-heading.full-width {
  max-width: 100%;
}

.services__cover-links-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: 3.33333rem;
  display: flex;
}

.services__cover-link {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  letter-spacing: -.18px;
  justify-content: center;
  align-items: center;
  width: 22.25rem;
  height: 6.66667rem;
  font-size: 1.33333rem;
  font-weight: 400;
  line-height: 130%;
  transition: all .35s;
  display: flex;
}

.services__cover-link:hover {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.services__cover-link.mobile-hide:hover {
  text-decoration: underline;
}

.services__cover-link.empty-box {
  pointer-events: none;
}

.services__cover-link-devider {
  background-color: #fff;
  width: 1px;
  height: 2rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

.section-heading {
  font-size: 5rem;
  font-weight: 400;
  line-height: 92%;
}

.section-heading.heading-width-50 {
  width: 110%;
}

.section-heading.first-block-heading {
  width: 80%;
}

.services-task__count-text {
  color: var(--dark-grey);
  font-family: Ppneuemontrealmono, sans-serif;
  font-weight: 400;
  line-height: 140%;
}

.new-ui-kit {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 150px;
  display: block;
}

.text-size-16 {
  letter-spacing: -.16px;
  margin-bottom: 0;
  font-size: 1.33333rem;
  line-height: 140%;
}

.text-size-16.text-weight-semibold.text-color-dark-blue {
  color: var(--is__dark-blue);
}

.text-size-16.text-color-soft-gray {
  color: var(--soft-gray);
}

.text-size-16.text-size-medium {
  font-weight: 500;
}

.text-size-16.text-size-medium.underline-trail {
  position: relative;
  overflow: visible;
}

.text-size-16.is-list {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: .2rem;
  padding-left: 2.33333rem;
  line-height: 140%;
  display: flex;
}

.text-size-18 {
  font-size: 1.5rem;
}

.text-size-20 {
  font-size: 1.66667rem;
  line-height: 140%;
}

.text-size-22 {
  font-size: 1.83333rem;
  line-height: 140%;
}

.text-size-24 {
  letter-spacing: -.02rem;
  font-size: 2rem;
  line-height: 112%;
  transition: color .3s;
}

.text-size-24.text-color-black {
  color: var(--text-blsck);
}

.text-size-24.text-color-black.no-link-text {
  text-decoration: none;
}

.text-size-24.margin-right {
  margin-right: .333333rem;
}

.text-size-24.margin-left {
  margin-left: .333333rem;
}

.section-container {
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section-container.cover-container {
  z-index: 1;
  position: relative;
}

.text-size-48 {
  letter-spacing: -.12rem;
  font-size: 4rem;
  line-height: 100%;
}

.text-size-48.text-weight-semibold.with-indent {
  text-indent: 24.5rem;
}

.text-size-48.text-weight-semibold.is__text-indent, .text-size-48.text-weight-semibold.review-text {
  text-indent: 24.75rem;
}

.text-size-48.indent-text {
  text-indent: 24.8333rem;
}

.services__marquee-layout {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  margin-top: 6.66667rem;
  margin-bottom: 6.66667rem;
  overflow: hidden;
}

.services__marquee-layout:where(.w-variant-264dda01-7efc-c69a-2101-8fad268904b9) {
  margin-bottom: 0;
}

.services__marquee-content.scroll {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: row;
  flex: none;
  align-items: center;
  display: flex;
}

.services__marquee-logo {
  height: 4.16667rem;
}

.services__stack-item-wrapper {
  border-top: 1px solid #111;
  padding-top: 1.41667rem;
  padding-bottom: 6.66667rem;
}

.services__stack-item-wrapper.last-item-no-bottom-margin {
  padding-bottom: 0;
}

.services__stack-heading {
  justify-content: space-between;
  margin-bottom: 3.33333rem;
  display: flex;
}

.text-size-34 {
  letter-spacing: -.0566667rem;
  font-size: 2.83333rem;
  line-height: 100%;
}

.text-size-34.text-weight-semibold.mobile-size-24.underline-trail {
  position: relative;
}

.text-size-34.talant-item-heading {
  margin-top: .666667rem;
}

.services__page-rich-text {
  color: var(--dark-grey);
  margin-top: -2rem;
  font-weight: 400;
}

.services__page-rich-text p {
  color: var(--text-blsck);
  max-width: 40rem;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 140%;
}

.services__page-rich-text h2 {
  line-height: 126%;
}

.services__page-rich-text h3 {
  color: var(--text-blsck);
  letter-spacing: -.48px;
  max-width: 39.1667rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 112%;
}

.services__page-rich-text strong {
  color: var(--dark-grey);
  margin-bottom: 1rem;
  font-family: Ppneuemontrealmono, sans-serif;
  font-weight: 400;
  line-height: 140%;
  display: block;
}

.services__page-rich-text em {
  color: var(--dark-grey);
  border: 1px solid #9f9f9f;
  border-radius: .333333rem;
  margin: 0 0 .166667rem;
  padding: .333333rem 1.16667rem;
  font-family: Ppneuemontrealmono, sans-serif;
  font-size: 1rem;
  font-style: normal;
  line-height: 140%;
  display: inline-block;
}

.services__page-rich-text.text-color-white {
  color: var(--white);
  margin-top: 5.33333rem;
}

.services__page-rich-text h1 {
  color: var(--white);
  letter-spacing: -.306667rem;
  font-family: Ppneuemontreal, sans-serif;
  font-size: 7.66667rem;
  font-weight: 400;
  line-height: 98%;
}

.services__page-rich-text figure {
  margin-bottom: 0;
}

.services__page-rich-text ol {
  color: var(--text-blsck);
}

.services__page-rich-text ul {
  color: var(--text-blsck);
  margin-bottom: 0;
  padding-left: 1.5rem;
}

.services__page-rich-text.padding-top {
  padding-top: 2rem;
}

.services__page-rich-text.padding-top a {
  color: var(--is__dark-blue);
}

.services__page-rich-text.padding-top a:hover {
  color: var(--is__blue--hover);
}

.services__page-rich-text.home-page-cases-tags {
  margin-top: 0;
}

.services__page-rich-text a {
  color: var(--is__dark-blue);
  transition: color .3s;
}

.services__page-rich-text a:hover {
  color: var(--is__blue--hover);
}

.services__about-layout {
  margin-top: 15rem;
  position: relative;
}

.services__about-svg {
  color: var(--is__dark-blue);
  display: flex;
}

.services__about-svg.mobile-svg {
  display: none;
}

.services__about-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 6.66667rem;
}

.services__about-grid-item {
  border-left: 1px solid #111;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 27.5rem;
  padding-left: 1rem;
  display: flex;
}

.text-size-92 {
  letter-spacing: -.306667rem;
  font-size: 7.66667rem;
  font-weight: 400;
  line-height: 84%;
}

.text-size-92.services__tabs-heading {
  text-align: center;
  width: 90%;
  margin-top: 3.33333rem;
  font-weight: 400;
}

.text-size-92.talants-heading {
  width: 80%;
}

.services__about-strength {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

.services__about-avatars {
  width: 18.3333rem;
}

.stack-subheading {
  margin-bottom: 1rem;
}

.text-size-12 {
  font-size: 1rem;
  line-height: 140%;
}

.text-size-12.text-color-grey.services__award-modal-year-text {
  margin-bottom: .666667rem;
}

.services-why__layout {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  align-items: flex-start;
  margin-top: 15rem;
  display: flex;
  position: relative;
}

.services-steps__layout {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  align-items: flex-start;
  margin-top: 10rem;
  display: flex;
  position: relative;
  overflow: clip;
}

.services-steps__layout.custome-indent-layout {
  margin-top: 0;
  margin-bottom: 15rem;
}

.services_award-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #ddd0;
  border-top: 1px solid #111;
  grid-template-rows: auto;
  grid-template-columns: 73.5rem 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  display: grid;
}

.services_award-item.w--current {
  background-color: #ddd0;
}

.services_award-item.main-page-awards {
  grid-template-columns: 73.5rem 1fr;
}

.services_award-heading-wrapper {
  grid-column-gap: .333333rem;
  grid-row-gap: .333333rem;
  letter-spacing: -.175rem;
  padding-top: 1.66667rem;
  padding-bottom: 1.66667rem;
  font-size: 5rem;
  font-weight: 400;
  line-height: 96%;
  display: flex;
}

.superscript {
  color: var(--dark-grey);
  letter-spacing: 0;
  background-color: #f4f4f8;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  font-family: Ppneuemontrealmono, sans-serif;
  font-size: 1rem;
  line-height: 140%;
  display: flex;
}

.services__award-count {
  flex: none;
  display: flex;
}

.services__award-arrow {
  opacity: 0;
  width: 2.83333rem;
  height: 2.83333rem;
  transition: opacity .3s;
}

.services__award-medals {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  opacity: 0;
  align-items: center;
  transition: opacity .3s;
  display: none;
}

.services__award-medal {
  border-radius: 50%;
  width: 1.33333rem;
  height: 1.33333rem;
}

.services__award-medal.gold-medal {
  background-image: url('../images/gold.webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.services__award-medal.silver-medal {
  background-image: url('../images/silver.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.services__award-medal.bronze-medal {
  background-image: url('../images/bronze.webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.services__awards-tabs-content {
  z-index: 99999;
  background-color: #00000080;
  flex-direction: column;
  align-items: flex-end;
  display: none;
  position: fixed;
  inset: 0%;
}

.services_awards-tabs {
  margin-top: 1.66667rem;
}

.services__awards-tab-pane {
  width: 100%;
  height: 100vh;
  position: relative;
}

.services__award-modal-heading {
  letter-spacing: -1.36px;
  border-top: 1px solid #111;
  margin-bottom: 5rem;
  padding-top: .666667rem;
  font-size: 2.83333rem;
  font-weight: 400;
  line-height: 110%;
}

.services__award-modal-year-layout {
  border-bottom: 1px solid #111;
  margin-bottom: 3.33333rem;
  display: block;
}

.services__award-modal-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-top: 1px solid #111;
  grid-template-rows: auto;
  grid-template-columns: 30.6667rem 14.3333rem 14.3333rem max-content;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 1.66667rem;
  padding-bottom: 1.66667rem;
  display: grid;
}

.services__awards-modal-content {
  z-index: 1;
  justify-content: flex-end;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.services__award-modal-close {
  z-index: 2;
  color: var(--white);
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  position: static;
  inset: 1rem auto auto 26rem;
}

.services__award-modal-close-icon {
  width: 100%;
  height: 100%;
}

.services__cases-layout {
  border-top: 1px #111;
  margin-top: 15rem;
}

.services__cases-heading-wrapper {
  border-top: 1px solid #000;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1.66667rem;
  display: flex;
}

.services__cases-description {
  white-space: nowrap;
  margin-top: -.333333rem;
  font-weight: 400;
}

.services__cases-description p {
  letter-spacing: .02rem;
  white-space: normal;
  max-width: 90%;
  margin-top: .333333rem;
  margin-bottom: 0;
  font-family: Ppneuemontrealmono, sans-serif;
  font-size: 1rem;
  line-height: 132%;
}

.services__cases-description strong {
  letter-spacing: -2.4px;
  font-family: Ppneuemontreal, sans-serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 90%;
}

.services__cases-description em {
  letter-spacing: -.24px;
  font-family: Ppneuemontreal, sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 16%;
}

.services__cases-description.full-width blockquote {
  white-space: normal;
  border-left-style: none;
  max-width: 70%;
  margin-top: .333333rem;
  margin-bottom: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 140%;
}

.tabs__layout {
  color: var(--white);
  flex-direction: column;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
}

.nap-gif {
  border-radius: 50%;
  width: 8.33333rem;
  height: 8.33333rem;
  margin-bottom: 1.66667rem;
  overflow: hidden;
}

.nap-gif.no-indents {
  margin-bottom: 0;
}

.services__tabs-subheading {
  text-align: center;
  max-width: 30.3333rem;
  font-family: Ppneuemontrealmono, sans-serif;
  font-weight: 400;
}

.services__tabs {
  width: 100%;
  margin-top: 10rem;
}

.services__tabs-menu {
  border-bottom: 1px solid #fff;
  justify-content: space-between;
  display: flex;
}

.services__tab-link {
  color: var(--dark-grey);
  letter-spacing: -.16px;
  text-transform: lowercase;
  background-color: #ddd0;
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 6.66667rem;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.33333rem;
  line-height: 130%;
  transition: color .2s;
  display: flex;
}

.services__tab-link:hover {
  color: var(--white);
}

.services__tab-link.w--current {
  color: var(--white);
  background-color: #ddd0;
}

.services__tabs-devider {
  background-color: #fff;
  width: 1px;
  height: 2rem;
  position: absolute;
  inset: auto auto 0% 0%;
}

.services__tab-content {
  grid-column-gap: 10.1667rem;
  grid-row-gap: 10.1667rem;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 3.33333rem;
  display: flex;
}

.servicxes__tab-pane-heading-wrapper {
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  width: 38.8333rem;
  display: flex;
}

.footer__layout {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 24.5rem max-content 1fr;
  grid-auto-columns: 1fr;
  margin-top: 5rem;
  margin-bottom: 3.33333rem;
  display: grid;
}

.footer__logo {
  width: 12.1667rem;
  height: 1.08333rem;
  display: flex;
}

.footer__links-wrapper {
  grid-column-gap: 1.66667rem;
  grid-row-gap: 1.66667rem;
  color: var(--dark-grey);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer__social-links-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.footer__social-links {
  grid-column-gap: .666667rem;
  grid-row-gap: .666667rem;
  align-items: center;
  display: flex;
}

.footer__social-link {
  background-color: #f4f4f8;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
}

.footer__social-link-icon {
  width: 100%;
  height: 100%;
}

.footer__partner-wrapper {
  width: 9.75rem;
}

.footer__partner-image {
  width: 100%;
}

.services__cases-button {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  align-items: center;
  margin: -1rem;
  padding: 1rem;
  font-weight: 400;
  transition: all .3s;
  display: flex;
}

.services__cases-button:hover {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.services__cases-button.mobile-hide {
  flex: none;
}

.services__page-rich-text-white {
  color: var(--white);
  width: 30.6667rem;
}

.services__page-rich-text-white p {
  max-width: 30.6667rem;
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 140%;
}

.services__page-rich-text-white h2 {
  line-height: 126%;
}

.services__page-rich-text-white h3 {
  color: var(--text-blsck);
  letter-spacing: -.48px;
  max-width: 39.1667rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 126%;
}

.services__page-rich-text-white strong {
  color: var(--dark-grey);
  font-weight: 500;
  line-height: 140%;
}

.services__page-rich-text-white em {
  color: var(--dark-grey);
  border: 1px solid #9f9f9f;
  border-radius: .333333rem;
  margin-bottom: .25rem;
  margin-right: .25rem;
  padding: .333333rem 1.16667rem;
  font-family: Ppneuemontrealmono, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: inline-block;
}

.services__page-rich-text-white h1 {
  color: var(--white);
  letter-spacing: -6.44px;
  font-family: Manrope, sans-serif;
  font-size: 7.66667rem;
  font-weight: 600;
  line-height: 98%;
}

.services__page-rich-text-white img {
  margin-top: 1rem;
}

.services__page-rich-text-white ul {
  margin-bottom: 0;
  padding-left: 0;
}

.services__page-rich-text-white li {
  background-image: url('../images/list-marker.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 1.25rem 1.25rem;
  margin-bottom: .666667rem;
  padding-left: 2.91667rem;
}

.text-size-14 {
  font-size: 1.16667rem;
}

.text-size-14.text-color-grey {
  font-family: Ppneuemontrealmono, sans-serif;
  font-weight: 400;
}

.services-stack__layout {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  align-items: flex-start;
  margin-top: 10rem;
  margin-bottom: 15rem;
  display: flex;
  position: relative;
}

.services__cover-video-wrapper {
  z-index: 0;
  height: 100vh;
  display: block;
  position: absolute;
  inset: 0%;
}

.services__cover-video-wrapper.services-page-video {
  z-index: 1;
  display: block;
}

.services__cover-video {
  height: 100%;
}

.services__swiper-wrapper {
  display: none;
}

.services__swiper-tabs-rich-text {
  color: var(--dark-grey);
}

.services__swiper-tabs-rich-text p {
  color: var(--text-blsck);
  max-width: 38.8333rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 140%;
}

.services__swiper-tabs-rich-text h2 {
  line-height: 126%;
}

.services__swiper-tabs-rich-text h3 {
  color: var(--text-blsck);
  letter-spacing: -.48px;
  max-width: 39.1667rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 126%;
}

.services__swiper-tabs-rich-text strong {
  color: var(--dark-grey);
  font-weight: 500;
  line-height: 140%;
}

.services__swiper-tabs-rich-text em {
  color: var(--dark-grey);
  border: 1px solid #9f9f9f;
  border-radius: .333333rem;
  margin-bottom: .25rem;
  margin-right: .25rem;
  padding: .333333rem 1.16667rem;
  font-size: 1rem;
  font-style: normal;
  line-height: 150%;
  display: inline-block;
}

.services__swiper-tabs-rich-text h1 {
  color: var(--white);
  letter-spacing: -6.44px;
  font-family: Manrope, sans-serif;
  font-size: 7.66667rem;
  font-weight: 600;
  line-height: 98%;
}

.services__swiper-tabs-rich-text img {
  margin-top: 1rem;
}

.services__marquee {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  justify-content: flex-start;
  display: flex;
}

.services__about-icon-wrapper {
  margin-top: 15rem;
}

.form-input {
  color: var(--white);
  letter-spacing: -.16px;
  background-color: #fff0;
  border: 1px solid #f000;
  border-bottom-color: #fff;
  height: 3.75rem;
  margin-bottom: 2.33333rem;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-size: 1.33333rem;
  line-height: 130%;
}

.form-input:active {
  color: var(--white);
  border-bottom-color: #fff;
}

.form-input:focus {
  color: var(--white);
  border-style: none none solid;
  border-color: #000 #000 #fff;
}

.form-input::placeholder {
  color: var(--white-40p);
  letter-spacing: -.16px;
  font-size: 1.33333rem;
  line-height: 130%;
}

.form__submit-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.33333rem;
  color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.form__submit {
  background-color: var(--is__dark-blue);
  letter-spacing: -.0133333rem;
  text-transform: lowercase;
  height: 4.33333rem;
  padding: 0 2.66667rem;
  font-size: 1.33333rem;
  font-weight: 600;
  line-height: 150%;
  transition: color .3s, background-color .3s;
}

.form__submit:hover {
  color: var(--white);
  background-color: #1a3df4;
}

.form__submit.black-theme {
  background-color: var(--is__dark-blue);
  color: var(--white);
  letter-spacing: -.0133333rem;
  text-transform: none;
  border-style: none;
  border-radius: 0;
  height: 4.33333rem;
  padding-left: 2.66667rem;
  padding-right: 2.66667rem;
  font-size: 1.33333rem;
  font-weight: 400;
  line-height: 150%;
}

.form__submit.black-theme:hover {
  background-color: var(--white);
  color: var(--is__dark-blue);
  text-align: right;
}

.services__cover-video-blackout {
  pointer-events: none;
  background-color: #0000004d;
  display: block;
  position: absolute;
  inset: 0%;
}

.body-new {
  color: var(--black);
  font-size: 1vw;
  line-height: 140%;
}

.body-new.article-template {
  z-index: 1;
  display: block;
  position: relative;
}

.body-new.test {
  background-color: #8f8f8f;
}

.services-page__layout {
  margin-top: 12.5rem;
  padding-bottom: 1.66667rem;
}

.services-page-heading-wrapper {
  grid-column-gap: 2.66667rem;
  grid-row-gap: 2.66667rem;
  color: var(--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1rem;
  display: flex;
}

.services-page__cover-image {
  flex: none;
  align-self: flex-end;
  width: 17.5rem;
}

.services-page__services-layout {
  margin-top: -2rem;
  padding-top: 7rem;
  position: relative;
}

.services-page__services-layout.hide {
  display: none;
}

.services-page__services-list-wrapper {
  margin-top: 1rem;
}

.services-page__services-list {
  border-bottom: 1px solid #000;
}

.services-page__services-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-top: 1px solid #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 1.66667rem;
  padding-bottom: 1.66667rem;
  display: grid;
  position: relative;
}

.services-page__tags {
  display: none;
}

.services-page__tags p {
  color: var(--dark-grey);
  border: 1px solid #9f9f9f80;
  border-radius: .333333rem;
  margin-bottom: .166667rem;
  margin-right: .166667rem;
  padding: .333333rem 1.16667rem;
  display: inline-block;
}

.services-page__services-link {
  z-index: 500;
  grid-column-gap: 3.08333rem;
  grid-row-gap: 3.08333rem;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.sevices-page__services-link-arrow {
  width: 2.83333rem;
  height: 2.83333rem;
  transition: opacity .3s;
}

.services-page__services-link-image {
  object-fit: cover;
  width: 13.3333rem;
  height: 16.6667rem;
  transition: opacity .3s;
  display: none;
}

.services__award-background {
  z-index: 0;
  width: 100vh;
  display: block;
  position: absolute;
  inset: 0%;
}

.services__awards-wrapper {
  z-index: 1;
  background-color: #fff;
  flex: none;
  height: 100vh;
  padding: 2rem 2rem 2.5rem;
  position: relative;
  overflow: auto;
}

.servoces__whiteout-layout {
  pointer-events: none;
  background-image: linear-gradient(#fff0 20%, #fff 77%);
  width: 50%;
  height: 100%;
  position: absolute;
  top: auto;
  left: 0%;
  right: auto;
}

.services__stack-tags {
  flex-wrap: wrap;
  display: flex;
}

.services__tag-text {
  color: var(--dark-grey);
  border: 1px solid #9f9f9f80;
  border-radius: .333333rem;
  margin-bottom: .166667rem;
  margin-right: .166667rem;
  padding: .333333rem 1.16667rem;
  font-family: Ppneuemontrealmono, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
}

.services__stack-manual-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.services__numbers-text-wrapper {
  border-top: 1px solid #000;
  padding-top: 1.66667rem;
}

.services__numbers-texts-grid {
  grid-column-gap: 3.33333rem;
  grid-row-gap: 3.33333rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-page__blog-collection-wrapper {
  height: 100%;
}

.blog-page__blog-collection-wrapper.mobile-horizontal-scroll {
  margin-top: 1.33333rem;
}

.blog-page__blog-collection-list {
  grid-column-gap: 2rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: grid;
}

.blog-page__blog-item {
  width: 100%;
}

.blog-page__cover-article-card {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.blog-page__cover-article-card.is__template {
  padding-top: 11.33rem;
  padding-bottom: 0;
}

.blog-page__cover-article-image {
  object-fit: cover;
  flex: 1;
  width: 100%;
  height: 100%;
}

.blog-page__cover-article-image.is__template-page-preview {
  flex: none;
  height: 45rem;
  margin-top: 1.41667rem;
}

.blog-page__author-avatar {
  border-radius: 50%;
  width: 4.16667rem;
  height: 4.16667rem;
}

.blog-page__author-wrapper {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  max-width: 50%;
  display: flex;
}

.text-tag {
  color: var(--dark-grey);
  letter-spacing: -.02rem;
  border: 1px solid #9f9f9f80;
  border-radius: .333333rem;
  justify-content: center;
  align-items: center;
  padding: .333333rem 1.16667rem;
  font-family: Ppneuemontrealmono, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 132%;
  display: flex;
}

.text-tag.nowrap-text {
  white-space: nowrap;
}

.text-tag.blue-link {
  color: var(--is__dark-blue);
  border-color: #140af0;
  transition: color .3s, background-color .3s;
}

.text-tag.blue-link:hover {
  background-color: var(--is__dark-blue);
  color: var(--white);
}

.text-tag.blue-link.hide {
  display: none;
}

.text-tag.color-white {
  color: var(--white);
  border-color: #fff;
}

.blog-page__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-page__image-wrapper {
  width: 100%;
  margin-bottom: 2rem;
}

.blog-page__image-wrapper.recomented-article-image-wrapper {
  height: 27.5rem;
}

.blog-page__article-card {
  position: relative;
}

.blog-page__cover-data-wrapper {
  color: var(--dark-grey);
  align-items: center;
  margin-bottom: .666667rem;
  font-family: Ppneuemontrealmono, sans-serif;
  display: flex;
}

.blog-page__cover-text-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 2rem;
  display: flex;
}

.page-heading-small {
  letter-spacing: -.25rem;
  font-size: 5rem;
  line-height: 96%;
}

.page-heading-small.phone-h2-48 {
  letter-spacing: -2.1px;
  line-height: 92%;
}

.page-heading-small.case-page-heading {
  max-width: 90%;
}

.blog-page__cover-info-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 3.08333rem;
  display: flex;
}

.blog-page__cover-tags-collection-list {
  grid-column-gap: .166667rem;
  grid-row-gap: .166667rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.blog-page__avtor-name-wrapper {
  margin-left: 1rem;
  line-height: 140%;
}

.services__awards-close-button-wrapper {
  flex: 1;
  justify-content: flex-end;
  padding-top: 1rem;
  padding-right: 1rem;
  display: flex;
  position: relative;
}

.link-with-mark {
  vertical-align: top;
  font-family: Ppneuemontrealmono, sans-serif;
  font-weight: 400;
  transition: background-color .3s, padding .3s;
  display: block;
}

.link-with-mark:hover {
  background-image: url('../images/__.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 1.75rem;
}

.blog-page__article-card-tags-wrapper {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 1.66667rem;
  display: flex;
}

.text-size-60 {
  letter-spacing: -.175rem;
  font-size: 5rem;
  line-height: 96%;
}

.text-size-60.text-weight-semibold {
  font-weight: 400;
}

.text-size-60.text-weight-semibold.modal-form-heading {
  position: sticky;
  top: 8.33333rem;
}

.text-size-60.text-weight-semibold.mobile-h2 {
  line-height: 92%;
}

.services__expert-layout {
  margin-top: 15rem;
  margin-bottom: 15rem;
}

.services__expert-items-layout {
  border-bottom: 1px solid #000;
  margin-top: 1rem;
  transition: color .3s;
}

.services__expert-items-layout.bottom-no-border {
  border-bottom-style: none;
}

.services__expert-item {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border-top: 1px solid #000;
  grid-template-rows: auto;
  grid-template-columns: 73.5rem 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-top: 1.66667rem;
  padding-bottom: 1.66667rem;
  display: grid;
  position: relative;
}

.services__expert-item-tags {
  grid-column-gap: .166667rem;
  grid-row-gap: .166667rem;
  opacity: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  transition: opacity .3s;
  display: flex;
}

.services__cover-image {
  pointer-events: none;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-page__articles {
  margin-top: 5.16667rem;
  padding-top: 2rem;
}

.page__filters-layout {
  z-index: 50;
  background-color: #fff;
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.blog-page__filters-form {
  grid-column-gap: .166667rem;
  grid-row-gap: .166667rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.blog-page__filters-form-bloc {
  margin-bottom: 0;
}

.blog-page__radio-button-field {
  margin-bottom: 0;
  padding-left: 0;
}

.blog-page__radio-button {
  display: none;
}

.blog-page__radio-button-label {
  border: 1px solid #111;
  border-radius: .333333rem;
  margin-bottom: 0;
  padding: .333333rem 1.16667rem;
  font-family: Ppneuemontrealmono, sans-serif;
  font-weight: 400;
  line-height: 140%;
}

.blog-pge__next-button {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: #1d2ff4;
  letter-spacing: -.16px;
  background-color: #fafafa00;
  border-style: none;
  justify-content: center;
  margin: -2rem;
  padding: 2rem;
  font-size: 1.33333rem;
  line-height: 130%;
  transition: all .35s;
  display: flex;
}

.blog-pge__next-button:hover {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.blog-page__previous-button {
  display: none;
}

.blog-page__pagination {
  padding-top: 6.66667rem;
}

.blog-page__newslatter-layout {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: var(--white-40p);
  background-color: #111;
  align-items: flex-start;
  margin-top: 2.33333rem;
  margin-bottom: 2.66667rem;
  padding: 2.66667rem 1.66667rem;
  display: flex;
}

.blog-page__newletter-form-block {
  flex: none;
  width: 50%;
  margin-bottom: 0;
}

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

.article__layout {
  z-index: 1;
  position: relative;
}

.article-template__content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 5rem;
  display: grid;
  position: relative;
}

.article-template__toc-wrapper {
  flex: none;
  width: 14.3333rem;
  position: sticky;
  top: 2rem;
}

.article-template__anchors-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
  display: flex;
}

.article-template__anchor {
  font-size: 1rem;
}

.article-template__toc-link {
  color: var(--soft-gray);
  letter-spacing: -.24px;
  font-family: Ppneuemontrealmono, sans-serif;
  line-height: 132%;
  transition: all .3s;
}

.article-template__toc-link:hover {
  color: var(--text-blsck);
  text-decoration: none;
}

.article-template__toc-link.w--current {
  color: var(--text-blsck);
  background-image: url('../images/toc-icon.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 1.33333rem 1.33333rem;
  padding-left: 2rem;
  text-decoration: none;
}

.article-template__rich-text {
  color: var(--text-blsck);
  letter-spacing: -.0133333rem;
  flex-direction: column;
  align-items: flex-start;
  width: 63.3333rem;
  margin-top: 4rem;
  padding-left: 8.16667rem;
  font-size: 1.33333rem;
  line-height: 150%;
  display: flex;
}

.article-template__rich-text p {
  width: 47rem;
  margin-bottom: 1.25rem;
}

.article-template__rich-text a {
  color: var(--is__dark-blue);
  text-decoration: underline;
}

.article-template__rich-text h2 {
  color: var(--text-blsck);
  letter-spacing: -.113333rem;
  max-width: 47rem;
  margin-bottom: 2.66667rem;
  font-size: 2.83333rem;
  font-weight: 400;
  line-height: 110%;
}

.article-template__rich-text h3 {
  color: var(--text-blsck);
  letter-spacing: -.04rem;
  max-width: 47rem;
  margin-bottom: 1.33333rem;
  font-size: 2rem;
  line-height: 120%;
}

.article-template__rich-text figure {
  min-width: 63.3333rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
  display: block;
  position: relative;
  left: -8.16667rem;
}

.article-template__rich-text ul {
  max-width: 47rem;
  margin-top: 0;
  margin-bottom: 1.66667rem;
  padding-left: 1.66667rem;
}

.article-template__rich-text blockquote {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px #111;
  width: 47rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2.79167rem 0 2.79167rem 0;
  font-size: 2rem;
  line-height: 126%;
  display: block;
  position: relative;
}

.article-template__rich-text sub {
  color: var(--dark-grey);
  margin-top: 2.29167rem;
  font-family: Ppneuemontrealmono, sans-serif;
  font-size: 1rem;
  line-height: 140%;
  display: flex;
}

.article-template__rich-text sup {
  letter-spacing: -.04rem;
  border-left: 1px solid #111;
  padding-left: 2rem;
  font-size: 2rem;
  line-height: 126%;
  display: block;
  top: 0;
}

.article-template__rich-text figcaption {
  color: var(--dark-grey);
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 140%;
}

.article-template__rich-text ol {
  max-width: 47rem;
  margin-bottom: 1.66667rem;
  padding-left: 1.66667rem;
}

.article-template__rich-text strong {
  font-weight: 400;
}

.services-page__blackout {
  opacity: .7;
  pointer-events: none;
  background-color: #fff;
  position: absolute;
  inset: 0%;
}

.form__checkbox-field {
  align-items: flex-start;
  max-width: 28.5rem;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.form__checkboxes-wrapper {
  grid-column-gap: 1.33333rem;
  grid-row-gap: 1.33333rem;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2.5rem;
  display: flex;
}

.form__checkboxes-wrapper.no-margin {
  margin-top: 0;
}

.form__checkbox-link {
  color: var(--white);
  text-decoration: none;
}

.form__checkbox {
  flex: none;
  width: 1.16667rem;
  height: 1.16667rem;
  margin-top: 2px;
  margin-left: 0;
  margin-right: .666667rem;
}

.form__checkbox.w--redirected-checked {
  background-color: #3898ec00;
  background-image: url('../images/check-icon.svg');
  background-position: 0 0;
  background-size: cover;
  border-color: #fff;
}

.form__checkbox.w--redirected-focus {
  box-shadow: none;
}

.form__checkbox-label {
  color: var(--white-40p);
  font-weight: 400;
}

.article-template__article-text-wrapper {
  width: 63.3333rem;
  position: relative;
  left: -8.3rem;
}

.article-template__description-wrapper {
  padding-left: 8.16667rem;
  padding-right: 8.16667rem;
}

.article-template__links-wrapper {
  border-top: 1px solid #000;
  justify-content: space-between;
  display: flex;
}

.article-template__service-layout {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: var(--text-blsck);
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 47rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-decoration: none;
  display: flex;
  position: relative;
}

.article-template__service-icon {
  width: 3.33333rem;
  height: 1.5rem;
  position: absolute;
  inset: 2rem 0% auto auto;
}

.article-template__service-name {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.article-template__recomented-layout {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 5rem;
  margin-bottom: 5rem;
  display: flex;
}

.article-template__recomented-collection-list-wrapper {
  width: 47rem;
  display: flex;
}

.article-template__recomented-collection-list, .article-template__recomented-collection-list-item {
  width: 100%;
}

.blog-page__item-link {
  display: block;
  position: absolute;
  inset: 0%;
}

.fs-cc-banner2_component {
  z-index: 999;
  color: #fff;
  background-color: #111;
  border-radius: 0;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 1.66667rem 1.38889rem 1.66667rem 1.66667rem;
  font-size: 1rem;
  display: none;
}

.fs-cc-banner2_container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.fs-cc__heading {
  font-variation-settings: "wght" 558;
  font-weight: 500;
  line-height: 140%;
}

.fs-cc-banner2_button {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #111;
  border: 1px solid #fff;
  border-radius: 0;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  padding: .833333rem 3.33333rem;
  font-size: .916667rem;
  font-weight: 700;
  transition: color .3s, background-color .3s;
  display: flex;
}

.fs-cc-banner2_button:hover {
  color: #111;
  background-color: #fff;
}

.underline-link {
  text-decoration: underline;
}

.cookies-wrapper {
  z-index: 999999;
  padding-bottom: .833333rem;
  padding-left: .833333rem;
  padding-right: .833333rem;
  position: fixed;
  inset: auto 0% 0%;
}

.hidden-input {
  display: block;
}

.error-message {
  color: red;
  background-color: #0000;
}

.form__success-message {
  background-color: #ddd0;
}

.article-template__link-block {
  z-index: 5;
  display: block;
  position: absolute;
  inset: 0%;
}

.header {
  z-index: 9999;
  background-color: var(--white);
  width: 100%;
  position: fixed;
}

.header:where(.w-variant-07924d3f-5eee-0528-a12f-05fb975ded88), .header:where(.w-variant-7861cf41-767c-6637-06e6-3631ab22794b), .navbar-layout {
  background-color: #0000;
}

.navbar-layout:where(.w-variant-7861cf41-767c-6637-06e6-3631ab22794b) {
  color: var(--white);
}

.navbar-wrapper {
  z-index: 1;
  color: var(--header--black);
  justify-content: space-between;
  align-items: center;
  padding-top: 1.58333rem;
  padding-bottom: 1.58333rem;
  display: flex;
  position: relative;
}

.navbar-wrapper:where(.w-variant-7861cf41-767c-6637-06e6-3631ab22794b) {
  color: var(--white);
}

.navbar-brand {
  color: inherit;
  width: 12.0833rem;
}

.navbar-content-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.navbar-links-wrapper {
  grid-column-gap: 3.33333rem;
  grid-row-gap: 3.33333rem;
  justify-content: flex-start;
  align-items: center;
  margin-right: 3.33333rem;
  display: flex;
}

.navbar-link-default-state {
  letter-spacing: -.0133333rem;
  font-size: 1.33333rem;
  line-height: 150%;
  display: block;
}

.navbar-link-default-state.underline-trail {
  position: relative;
}

.navbar-link-default-state.underline-trail.llm-link {
  justify-content: flex-end;
  align-items: flex-start;
}

.navbar-brand-icon {
  display: block;
}

.navbar-menu-button {
  cursor: pointer;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  display: flex;
}

.navbar-menu-button.w--open {
  background-color: #c8c8c800;
}

.navbar-menu-button-line-up {
  background-color: var(--header--black);
  pointer-events: none;
  width: 100%;
  height: 2px;
  padding-bottom: 0;
}

.navbar-menu-button-line-up:where(.w-variant-7861cf41-767c-6637-06e6-3631ab22794b) {
  background-color: var(--header--white);
}

.navbar-menu-icon-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.navbar-menu-button-line-down {
  background-color: var(--header--black);
  pointer-events: none;
  width: 100%;
  height: 2px;
  padding-bottom: 0;
}

.navbar-menu-button-line-down:where(.w-variant-7861cf41-767c-6637-06e6-3631ab22794b) {
  background-color: var(--white);
}

.navbar-nav-menu {
  z-index: 0;
  height: 0;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.navbar-nav-menu-background-video-wrapper {
  z-index: 0;
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.navbar-nav-menu-background-video {
  z-index: 0;
  height: 100%;
  display: none;
  position: relative;
}

.navbar-open-modal {
  color: var(--white);
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.navbar-nav-link {
  letter-spacing: -.175rem;
  color: inherit;
  margin-top: -.9rem;
  padding: .5rem 1.33333rem;
  font-size: 5rem;
  line-height: 92%;
  transition-property: color;
  transition-duration: .3s;
  transition-timing-function: ease;
  position: relative;
  overflow: hidden;
}

.navbar-nav-link:hover {
  color: var(--black);
}

.navbar-background-video-overlay {
  z-index: 1;
  background-color: #000000b3;
  display: none;
  position: absolute;
  inset: 0%;
}

.navbar-modal-main-links-layout {
  grid-column-gap: .666667rem;
  grid-row-gap: .666667rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
  left: -1.33333rem;
}

.navbar-open-modal-grid {
  grid-column-gap: 12.1667rem;
  grid-row-gap: 3.33333rem;
  grid-template-rows: 1fr 6.16667rem 10.25rem auto 1fr auto;
  grid-template-columns: 1fr max-content 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  padding-top: 1.66667rem;
  padding-bottom: 1.66667rem;
  display: grid;
}

.navbar-secondary-links-wrapper {
  grid-column-gap: .333333rem;
  grid-row-gap: .333333rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 1.33333rem;
  line-height: 130%;
  display: flex;
}

.navbar-secondary-links-wrapper.links-box {
  margin-top: -1.66667rem;
}

.navbar-secondary-links-layout {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.navbar-secondary-links-layout.hide {
  display: none;
}

.navbar-social-links-wrapper {
  grid-column-gap: .333333rem;
  grid-row-gap: .333333rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.navbar-social-links-wrapper.menu-links {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.navbar-social-link {
  width: 2rem;
  height: 2rem;
  transition: opacity .3s;
}

.navbar-social-link:hover {
  opacity: .5;
}

.navbar-nav-menu-background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.navbar-open-modal-copywriting {
  z-index: 1;
  color: var(--silver);
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 1.66667rem;
  right: auto;
  overflow: visible;
}

.test-page-wrapper {
  background-color: #ccc8c8;
  height: 800vh;
  position: static;
}

.test-section {
  color: var(--header--white);
  background-color: #818181;
  height: 100vh;
  margin-top: 100vh;
}

.square-button {
  z-index: 9000;
  background-color: var(--is__dark-blue);
  pointer-events: auto;
  perspective-origin: 100%;
  transform-origin: 100%;
  color: var(--white);
  letter-spacing: -.0133333rem;
  cursor: pointer;
  padding: 1.16667rem 2.66667rem;
  font-size: 1.33333rem;
  line-height: 150%;
  transition: color .3s, background-color .3s;
  position: fixed;
  inset: auto auto 1.66667rem 2rem;
  overflow: hidden;
}

.square-button.menu-button {
  position: absolute;
}

.square-button.menu-button.none {
  display: none;
}

.modal-form-layout {
  background-color: #fff;
}

.modal-form-layout.remodal {
  height: 100vh;
  max-height: 100vh;
}

.modal-form-layout.report-modal {
  display: flex;
}

.modal-form-layout.report-modal.remodal {
  height: 100vh;
  max-height: 100vh;
}

.modal-form-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.modal-form-header {
  z-index: 2;
  justify-content: flex-end;
  align-items: center;
  padding-top: 1.58333rem;
  padding-bottom: 1.58333rem;
  display: flex;
  position: relative;
  inset: 0% 0% auto;
}

.modal-form-close-button {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
}

.modal-form-box {
  z-index: 0;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #030303;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  display: grid;
  position: relative;
}

.modal-form-block-layout {
  width: 47rem;
}

.modal-form-block {
  margin-bottom: 8.33333rem;
}

.modal-form {
  grid-column-gap: 2.33333rem;
  grid-row-gap: 2.33333rem;
  color: var(--text--secondarty);
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.modal-form.report-form {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
}

.modal-form-input {
  letter-spacing: -.16px;
  background-color: #fff0;
  border: 1px #000;
  border-bottom-style: solid;
  flex: none;
  height: 4.33333rem;
  margin-bottom: 0;
  padding-top: 1.58333rem;
  padding-bottom: 1rem;
  padding-left: 0;
  font-size: 1.33333rem;
  line-height: 130%;
}

.modal-form-input:active {
  border-bottom-color: #fff;
}

.modal-form-input:focus {
  border-style: none none solid;
  border-color: black black var(--is__dark-blue);
}

.modal-form-input::placeholder {
  letter-spacing: -.16px;
  font-size: 1.33333rem;
  font-weight: 400;
  line-height: 130%;
}

.modal-form-input.text-area {
  height: 7.5rem;
  min-height: 7.5rem;
  max-height: 7.5rem;
}

.modal-form-input-wrapper {
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.modal-form-input-wrapper.text-area-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.modal-form-input-wrapper.is-hide {
  display: none;
}

.modal-form-input-wrapper.no-hover {
  pointer-events: auto;
}

.modal-form-label {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  pointer-events: auto;
  color: var(--text--secondarty);
  letter-spacing: -.0133333rem;
  justify-content: center;
  align-items: center;
  font-size: 1.33333rem;
  line-height: 130%;
  transition: margin .5s;
  display: flex;
  position: absolute;
  inset: auto auto auto 0%;
}

.modal-form-label.text-area-label {
  top: 1rem;
}

.modal-form-label.text-area-label.label-up {
  margin-top: -1rem;
}

.modal-form-label.label-up {
  margin-top: -3rem;
  font-size: 1rem;
}

.label-name {
  transition: margin .4s;
}

.modal-form-inputs-wrapper {
  grid-column-gap: 2.33333rem;
  grid-row-gap: 2.33333rem;
  justify-content: space-between;
  display: flex;
}

.modal-form-text-area-description {
  margin-top: .333333rem;
  line-height: 140%;
}

.modal-form-checkbox-text {
  color: var(--text-blsck);
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
}

.modal-form-checkbox-field {
  color: var(--black);
  text-align: left;
  align-items: flex-start;
  max-width: 36rem;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.modal-form__checkbox-link {
  text-decoration: underline;
}

.modal-form__checkbox {
  border-color: var(--black);
  flex: none;
  width: 1.16667rem;
  height: 1.16667rem;
  margin-top: 2px;
  margin-left: 0;
  margin-right: .666667rem;
}

.modal-form__checkbox.w--redirected-checked {
  border-color: var(--black);
  background-color: #3898ec00;
  background-image: url('../images/Checkbox-icon.svg');
  background-position: 0 0;
  background-size: cover;
}

.modal-form__checkbox.w--redirected-focus {
  box-shadow: none;
}

.modal-form__checkboxes-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.modal-form__submit {
  background-color: var(--is__dark-blue);
  letter-spacing: -.0133333rem;
  text-transform: lowercase;
  height: 4.33333rem;
  padding: 0 2.66667rem;
  font-size: 1.33333rem;
  line-height: 150%;
  transition: color .3s, background-color .3s;
}

.modal-form__submit:hover {
  color: var(--is__dark-blue);
  background-color: #f4f4f8;
}

.modal-container {
  height: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.modal-form__submit-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.33333rem;
  color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.new-case-cover-layout {
  padding-top: 11.3333rem;
  padding-bottom: 2rem;
}

.new-case-cover-tags-layout {
  grid-column-gap: .166667rem;
  grid-row-gap: .166667rem;
  margin-top: 3.66667rem;
  display: flex;
}

.full-width-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.full-width-image.cover-position-top {
  object-position: 50% 0%;
}

.full-width-image.mockup-box {
  background-color: #f2f2f6;
  justify-content: center;
  align-items: center;
  display: flex;
}

.new-case-image-layout {
  width: 100%;
  height: 55rem;
  overflow: hidden;
}

.new-case-image-layout.two-image-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 50rem;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 50rem;
  grid-auto-columns: 1fr;
  height: auto;
  display: grid;
}

.new-case-image-layout.two-image-grid.margin-top-180-180 {
  margin-top: 15rem;
}

.new-case-image-layout.two-row-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: 50rem 50rem;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: auto;
  display: grid;
}

.new-case-image-layout.cover-image {
  height: 55rem;
}

.new-case-image-layout.margin-top-180180 {
  margin-top: 15rem;
}

.new-case-default-box {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.new-case-default-box.margin-top-120-180 {
  margin-top: 10rem;
}

.new-case-default-box.margin-top-180-180 {
  margin-top: 15rem;
}

.new-case-default-box.row-gap-80 {
  grid-column-gap: 6.66667rem;
  grid-row-gap: 6.66667rem;
}

.new-case-default-box.row-gap-80.margin-top-120-120 {
  margin-top: 10rem;
}

.new-case-indent-heading-layout {
  position: relative;
}

.new-case-default-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  width: 100%;
  display: grid;
}

.new-case-default-grid.row-gap-80 {
  grid-row-gap: 6.66667rem;
}

.new-case-default-grid.row-gap-80.margin-top-120-120 {
  margin-top: 10rem;
}

.new-case-default-grid.row-gap-80.margin-top-120-120.margin-bottom-120-120 {
  margin-bottom: 10rem;
}

.new-case-default-grid.row-gap-80.margin-top-180-180 {
  margin-top: 15rem;
}

.new-case-default-grid.margin-top-120-120 {
  margin-top: 10rem;
}

.new-case-default-grid.margin-top-180-180 {
  margin-top: 15rem;
}

.new-case-default-grid.margin-top-180-180.margin-bottom-180-180 {
  margin-bottom: 15rem;
}

.new-case-numbers-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.new-case-numbers-card {
  grid-column-gap: .333333rem;
  grid-row-gap: .333333rem;
  border-top: 1px solid #000;
  flex-flow: column;
  padding-top: 1.66667rem;
  padding-right: 3rem;
  display: flex;
}

.new-case_awards-tabs {
  width: 100%;
}

.new-case-review-layout {
  grid-column-gap: 3.33333rem;
  grid-row-gap: 3.33333rem;
  flex-flow: column;
  display: flex;
  position: relative;
}

.new-case-review-layout.margin-top-180-180 {
  margin-top: 15rem;
}

.new-case-review-layout.margin-top-120-180 {
  margin-top: 12rem;
}

.new-case-review-avatar {
  border: 1px #cfcfcf;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
}

.review-avatar-image {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.review-name-layout {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: none;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.review-name-wrapper {
  max-width: 18.5rem;
}

.new-cases-grid-item {
  border-top: 1px solid #111;
  width: 100%;
  padding-top: 1.41667rem;
}

.new-cases-grid-item-heading {
  justify-content: space-between;
  margin-bottom: 3.33333rem;
  display: flex;
}

.new-cases-grid-item-heading.reverse-flex {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.new-cases-grid-tems-tags {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: block;
}

.new-case-timeline-layout {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.new-case-timeline-layout-item {
  border-top: 1px solid #111;
  width: 100%;
  padding-top: 1.33333rem;
}

.new-case-timeline-description {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  line-height: 140%;
  display: grid;
}

.new-case-footer-layout {
  grid-column-gap: 1rem;
  grid-row-gap: 3.33333rem;
  border-top: 1px solid #111;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 1.66667rem;
  display: grid;
}

.new-case-footer-arrow {
  opacity: 0;
  flex: none;
  width: 3.33333rem;
  height: 2.66667rem;
  margin-left: 3.66667rem;
  transition: opacity .3s;
}

.new-case-footer-name-layout {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.new-case-services-layout {
  border-bottom: 1px solid #000;
  flex-direction: column;
  display: flex;
}

.new-case-award-layout {
  grid-column-gap: 1.33333rem;
  grid-row-gap: 1.33333rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.new-case-award-layout.margin-top-120-120 {
  margin-top: 10rem;
}

.new-case-items-layout {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.new-case-item-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-top: 1px solid #111;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 2rem;
  padding-right: 8.16667rem;
  display: flex;
}

.new-case-footer-image-wrapper {
  justify-content: center;
  align-items: flex-start;
  height: 33.3333rem;
  overflow: hidden;
}

.new-case-award-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #ddd0;
  border-top: 1px solid #111;
  grid-template-rows: auto;
  grid-template-columns: 73.5rem 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  display: grid;
}

.new-case-award-item.w--current {
  background-color: #ddd0;
  grid-template-columns: 73.5rem 1fr;
}

.new-case-full-width-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.new-cases-metric-icon {
  width: 4.58333rem;
  height: 4.58333rem;
}

.contacts-layout {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 11.33rem;
  padding-bottom: 10rem;
  display: flex;
}

.subheading-image {
  border-radius: 50%;
  width: 8.33333rem;
  height: 8.33333rem;
}

.contacts-subheading-wrapper {
  grid-column-gap: 1.66667rem;
  grid-row-gap: 1.66667rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 3.33333rem;
  display: flex;
}

.text-color-light-grey {
  color: var(--gray-light-mode--primary);
}

.text-color-light-grey.footer-copywriting-text, .text-color-light-grey.footer-licenze-text {
  font-family: Ppneuemontrealmono, sans-serif;
}

.contacts-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 5rem;
  display: grid;
}

.contacts-contacts-items-layout {
  grid-column-gap: 2.33333rem;
  grid-row-gap: 2.33333rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.contacts-contact-item {
  grid-column-gap: .666667rem;
  grid-row-gap: .666667rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.contacts-emails-wrapper {
  grid-column-gap: .333333rem;
  grid-row-gap: .333333rem;
  flex-flow: column;
  display: flex;
}

.contacts-addresses-layout {
  width: 100%;
  margin-top: 10rem;
}

.contacts-address-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-top: 1px solid var(--header--black);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center start;
  padding-top: 1.66667rem;
  padding-bottom: 1.66667rem;
  transition: color .3ms;
  display: grid;
  position: relative;
}

.contscts-address-item-arrow-wrapper {
  grid-column-gap: .666667rem;
  grid-row-gap: .666667rem;
  opacity: 0;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.contacts-address-arrow {
  width: 2.83333rem;
  height: 2.83333rem;
}

.contacts-page-heading {
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.contacts-page-heading-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding-left: 8rem;
  padding-right: 8rem;
  display: flex;
}

.footer-layout {
  grid-column-gap: 1.33333rem;
  grid-row-gap: 6.66667rem;
  grid-template-rows: auto auto;
  grid-template-columns: 49.8% 1fr max-content;
  grid-auto-columns: 1fr;
  padding-top: 1rem;
  padding-bottom: 1.4rem;
  display: grid;
}

.footer-logos-layout {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-logo-1 {
  width: 5.41667rem;
}

.footer-logo-2 {
  width: 7.41667rem;
}

.footer-contacts-links-layout {
  grid-column-gap: .666667rem;
  grid-row-gap: .666667rem;
  flex-flow: column;
  display: flex;
}

.footer-small-link-wrapper {
  grid-column-gap: .166667rem;
  grid-row-gap: .166667rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-links-layout {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-social-linx-box {
  width: 2rem;
  height: 2rem;
  transition: opacity .3s;
}

.footer-social-linx-box:hover {
  opacity: .5;
}

.grey-span {
  color: var(--gray-light-mode--primary);
  text-decoration: line-through;
}

.blog-cover-layout {
  grid-column-gap: 1.33333rem;
  grid-row-gap: 1.33333rem;
  flex-flow: column;
  margin-top: 12rem;
  padding-top: .666667rem;
  display: flex;
}

.cases-cover-layout {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5rem;
  padding-top: 11.33rem;
  display: flex;
}

.cases-collection-list-wrapper {
  margin-top: 2rem;
  margin-bottom: 12rem;
}

.cases-collection-list-wrapper.home-cases {
  margin-top: 5rem;
  margin-bottom: 0;
}

.case-card-layout {
  grid-column-gap: 1.66667rem;
  grid-row-gap: 1.66667rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.case-card-cube {
  z-index: 1;
  perspective: 250rem;
  width: 47vw;
  height: 27.5vw;
  position: relative;
  overflow: hidden;
}

.cube-wrapper {
  transform-style: preserve-3d;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cube-face-1 {
  z-index: 5;
  transform-style: preserve-3d;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  transform: translate3d(0, 0, 23.5vw);
}

.full-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cube-face-2 {
  z-index: 4;
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
  transform: translate3d(23.5vw, 0, 0)rotateX(0)rotateY(90deg)rotateZ(0);
}

.new-cases-lama-table {
  background-color: #fff;
  border-radius: 1.25rem;
  flex: none;
  width: 49.5rem;
  height: 40rem;
  padding: 1.875rem;
  overflow: hidden;
}

.new-cases-lam-table-layout {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  background-color: #f2f2f6;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.new-case__lama-table-image {
  border-radius: 1rem;
  width: 23.75rem;
}

.new-case__lama-table-wrapper {
  height: 31rem;
  margin-top: .3125rem;
  overflow: auto;
}

.radios-animation {
  grid-column-gap: .166667rem;
  grid-row-gap: .166667rem;
  flex-flow: wrap;
  display: flex;
}

.footer-layout-wrapper {
  margin-top: 15rem;
}

.case-card-link {
  z-index: 2;
  position: absolute;
  inset: 0%;
}

.new-cases-grid-item-heading-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-bottom: 3.33333rem;
  display: grid;
}

.cases-dashboard-image {
  border-radius: 1rem;
  height: 38.3333rem;
  overflow: hidden;
}

.cases-dashboard-image.small-image {
  height: 26.6667rem;
}

._404-cover-layout {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  padding-top: 11.6667rem;
  display: flex;
}

._404-video-wrapper {
  flex: 0 auto;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  padding-left: 8.16667rem;
  padding-right: 8.16667rem;
  display: flex;
  overflow: hidden;
}

._404-button-layout {
  margin-top: 1.66667rem;
  margin-bottom: 3.33333rem;
}

.braskets-button {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: var(--is__dark-blue);
  font-size: 1.33333rem;
  transition: all .25s;
  display: flex;
}

.braskets-button:hover {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.braskets-button.text-color-purple {
  color: var(--is__purple);
}

.braskets-button.services-link {
  margin-top: 1.66667rem;
}

.reviews-layout {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 50%;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 9.66333rem;
  padding-bottom: 10rem;
  display: grid;
}

.reviews__page-heading-layout {
  grid-column-gap: 1.66667rem;
  grid-row-gap: 1.66667rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 7.99667rem;
}

.reviews-reviews-layout {
  grid-column-gap: 6.66667rem;
  grid-row-gap: 6.66667rem;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 1.66667rem;
  padding-left: 1.33333rem;
  display: flex;
}

.svg {
  width: 1.66667rem;
  height: 1.66667rem;
  display: flex;
}

.reviews-review-card-devider {
  grid-column-gap: 1.66667rem;
  grid-row-gap: 1.66667rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.reviews-review-card-devider-line {
  background-color: #111;
  flex: 1;
  height: 1px;
}

.reviews-review-card-text-wrapper {
  border-bottom: 1px solid #111;
  padding-top: 1.33333rem;
  padding-bottom: 2rem;
}

.reviews-review-card-person-layout {
  justify-content: space-between;
  align-items: center;
  padding-top: 1.66667rem;
  display: flex;
}

.reviews-review-card-person-layout.home-page-review {
  padding-top: 3.33333rem;
}

.reviews-review-logo.review-1-logo, .reviews-review-logo.review-2-logo, .reviews-review-logo.review-2-logo {
  width: 7.5rem;
}

.reviews-review-logo.review-3-logo {
  width: 4.58333rem;
}

.reviews-review-logo.review-4-logo {
  width: 7.08333rem;
}

.reviews-review-logo.review-5-logo {
  width: 5.41667rem;
}

.reviews-review-logo.review-6-logo {
  width: 8.1rem;
}

.reviews-review-logo.hoff-logo {
  width: 3.83333rem;
}

.reviews-review-logo.magnit-logo {
  width: 9.66667rem;
}

.reviews-review-logo.rolf-logo {
  width: 7.33333rem;
}

.reviews-review-logo.uvelka-logo {
  width: 5.41667rem;
}

.reviews-review-logo.kari-logo {
  width: 4.58333rem;
}

.reviews-review-logo.lama-logo {
  width: 6.33333rem;
}

.reviews-review-logo.akbars-logo {
  width: 10.1667rem;
}

.reviews-review-logo.lizing-logo {
  width: 10.0833rem;
}

.reviews-review-logo.cotton-logo {
  width: 10.3333rem;
}

.reviews-review-logo.lapochka-logo {
  width: 9.5rem;
}

.footer-indent-wrapper {
  padding-top: 10rem;
}

.home-cover-layout {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 11.3333rem;
  display: flex;
}

.home-cover-tags-layout {
  margin-top: 3.66667rem;
  overflow: hidden;
}

.home-cover-tags-wrapper {
  grid-column-gap: .166667rem;
  grid-row-gap: .166667rem;
  flex-flow: row;
  flex: none;
  display: flex;
}

.after-cover-video-layout {
  width: 100%;
  height: 56.25rem;
  margin-top: 2rem;
  overflow: clip;
}

.home-about-layout {
  padding-top: 10rem;
  padding-bottom: 12rem;
}

.section-description-layout {
  position: relative;
}

.default-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.default-grid.home-about-grid {
  margin-top: 6.66667rem;
}

.default-grid.two-rows-gap-40 {
  grid-row-gap: 3.33333rem;
}

.brackets-text {
  color: var(--gray-light-mode--primary);
  letter-spacing: -.02rem;
  text-transform: lowercase;
  font-family: Ppneuemontrealmono, sans-serif;
  line-height: 132%;
}

.brackets-text.position-absolute {
  position: absolute;
  inset: 0% auto auto 0%;
}

.brackets-text.capitalize-none {
  text-transform: none;
}

.home-about-point-box {
  border-top: 1px solid #111;
  flex: none;
  padding-top: 2rem;
}

.home-about-point-header-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.home-about-points-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.home-about-button-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
  display: flex;
}

.home-about-tags-wrapper {
  grid-column-gap: .166667rem;
  grid-row-gap: .166667rem;
  flex-flow: wrap;
  display: flex;
}

.home-blog-layout {
  padding-top: 15rem;
}

.home-clients-layout {
  padding-top: 15rem;
  padding-left: 2em;
  padding-right: 2em;
}

.tabs__layout-2 {
  color: #fff;
  flex-direction: column;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
}

.services__tab-link-2 {
  color: #9f9f9f;
  letter-spacing: -.16px;
  text-transform: lowercase;
  background-color: #ddd0;
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 6.66667rem;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.33333rem;
  line-height: 130%;
  transition: color .2s;
  display: flex;
}

.services__tab-link-2:hover {
  color: #fff;
}

.services__tab-link-2.w--current {
  color: #fff;
  background-color: #ddd0;
}

.margin-top-120120 {
  margin-top: 10rem;
}

.solutions-page-heading {
  width: 80%;
}

.home-review-layout {
  margin-top: 15rem;
  position: relative;
}

.reviews-navigation-box {
  z-index: 5;
  color: var(--gray-light-mode--primary);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: center;
  height: 5rem;
  position: absolute;
  inset: auto auto 0% 0%;
}

.reviews-navigation-box.position-relative {
  position: static;
}

.home-reviews-fraction {
  justify-content: center;
  align-items: center;
  width: 3.33333rem;
  height: 5rem;
  display: flex;
}

.home-review-button-next, .home-review-button-prev {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 100%;
  display: flex;
}

.home-cases-layout {
  margin-top: 15rem;
}

.monospace-text {
  letter-spacing: -.24px;
  font-family: Ppneuemontrealmono, sans-serif;
  font-weight: 400;
  line-height: 132%;
}

.monospace-text.test-color-light-grey {
  color: var(--text--secondary-upd);
  flex: none;
}

.monospace-text.text-color-grey.order-1 {
  flex: none;
}

.solutions-layout {
  margin-top: 1.33333rem;
}

.solution-item-layout {
  color: var(--white);
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.solution-item-layout.roll-up-state {
  border-top: 1px solid #111;
  height: auto;
}

.solution-item-layout.second-solution.roll-up-state, .solution-item-layout.third-solution.roll-up-state, .solution-item-layout.fourth-solution.roll-up-state, .solution-item-layout.fifth-solution.roll-up-state {
  border-top-style: none;
}

.solution-item-heading {
  padding-top: 1.66667rem;
  padding-bottom: 1.66667rem;
  padding-left: 2rem;
  overflow: hidden;
}

.solution-item-content {
  z-index: 1;
  flex: 1;
  position: relative;
}

.solution-item-content.solution-page {
  color: var(--white);
}

.solution-item-tags {
  grid-column-gap: .166667rem;
  grid-row-gap: .166667rem;
  justify-content: flex-start;
  align-items: center;
  transition: opacity .3s;
  display: flex;
  position: absolute;
  left: 2rem;
}

.solution-item-links-wrapper {
  z-index: 2;
  grid-column-gap: 3.33333rem;
  grid-row-gap: 3.33333rem;
  background-color: var(--text-blsck);
  color: var(--white);
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 26.5rem;
  height: 100%;
  padding-bottom: 1.66667rem;
  padding-left: 2rem;
  padding-right: 2rem;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.solution-item-links-wrapper.solution-page {
  grid-column-gap: 1.66667rem;
  grid-row-gap: 1.66667rem;
  height: auto;
  min-height: 100vh;
  padding-bottom: 2.91667rem;
  position: relative;
}

.solution-item-links-wrapper.main-page-solution {
  grid-column-gap: 1.66667rem;
  grid-row-gap: 1.66667rem;
  padding-bottom: 2.91667rem;
}

.solution-item-link-box {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.solution-item-solution-links-box {
  z-index: 5;
  grid-column-gap: .333333rem;
  grid-row-gap: .333333rem;
  pointer-events: auto;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 26.5rem;
  height: 100%;
  padding-left: 2rem;
  display: flex;
  position: absolute;
  inset: 0% 0 auto auto;
}

.solution-heading-background {
  z-index: -1;
  pointer-events: none;
  position: absolute;
  inset: 0%;
}

.about-cover-layout {
  padding-top: 10.6633rem;
}

.nap-video {
  z-index: 50;
  border-radius: 50%;
  width: 8.33333rem;
  height: 8.33333rem;
  position: relative;
}

.about-cover-numbers-layout {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 5rem;
  display: grid;
}

.about-cover-number-boxes {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 16.3333rem 16.3333rem 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about-cover-number-box {
  grid-column-gap: 2.41667rem;
  grid-row-gap: 2.41667rem;
  border-left: 1px solid #111;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 1rem;
  display: flex;
}

.about-cover-number-box.borders-white {
  border-left-color: var(--white);
}

.specials-layout {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
}

.leaders-layout {
  grid-column-gap: 2rem;
  grid-row-gap: 5rem;
  border-top: 1px solid #111;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1.66667rem;
  margin-bottom: 15rem;
  padding-top: 1.66667rem;
  position: relative;
}

.leaders-card-photo {
  object-fit: cover;
  width: 100%;
  height: 26.6667rem;
}

.leaders-card {
  cursor: pointer;
}

.leaders-photo-name-box {
  grid-column-gap: .333333rem;
  grid-row-gap: .333333rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1rem;
  display: flex;
}

.talants-layout {
  color: var(--white);
  text-align: center;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 13.3333rem;
  display: flex;
}

.talants-preview-box {
  grid-column-gap: 1.66667rem;
  grid-row-gap: 1.66667rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 3.33333rem;
  display: flex;
}

.talants-item {
  border-top: 1px solid var(--white);
  width: 100%;
  padding-top: 1.66667rem;
  padding-bottom: 1.66667rem;
}

.talants-item.second-item {
  padding-bottom: 10rem;
}

.talants-item-svg {
  width: 21.9167rem;
}

.talants-heading-box {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.talants-item-content-box {
  margin-top: 6.66667rem;
}

.talants-item-text-box {
  text-align: left;
  padding-left: 1rem;
}

.talants-item-text-box.second-item {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 1rem;
  display: flex;
}

.talants-item-numbers {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 3.33333rem;
  margin-bottom: 3.33333rem;
}

.talants-item-numbers.second-item {
  grid-template-columns: 1fr 1fr;
}

.talants-items {
  padding-top: 13.3333rem;
}

.talants-item-second-svg {
  width: 13rem;
}

.awards-layout {
  border-bottom: 1px solid #000;
  flex-direction: column;
  display: flex;
}

.awards-component-layout {
  padding-top: 10rem;
}

.talants-image-box {
  width: 47rem;
  height: 46.6667rem;
  overflow: hidden;
}

.about-offices-heading-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.about-offices-layout {
  margin-top: 15rem;
  position: relative;
}

.about-ofice-info-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 3.33333rem;
  display: grid;
}

.about-oficelinks-box {
  grid-column-gap: .333333rem;
  grid-row-gap: .333333rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1rem;
  display: flex;
}

.about-oficelinks-box.about-page {
  margin-top: .5rem;
}

.modal-form-heading-box {
  grid-column-gap: 1.66667rem;
  grid-row-gap: 1.66667rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.home-cover-marque {
  grid-column-gap: .166667rem;
  grid-row-gap: .166667rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.modal-success {
  z-index: 1;
  background-color: var(--white);
  opacity: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: static;
  inset: 0%;
}

.modal-success-heading-box {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2.66667rem;
  margin-bottom: 2rem;
  display: flex;
}

.home-page-heading {
  line-height: 84%;
}

.after-cover-video {
  display: block;
}

.leaders-mobile-heading-wrapper {
  display: none;
}

.solutions-cover-layout {
  margin-bottom: 1.66667rem;
  padding-top: 11.33rem;
}

.solutions-cover-tags-layout {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1.66667rem;
  display: flex;
}

.solutions-cover-tags {
  grid-column-gap: .166667rem;
  grid-row-gap: .166667rem;
  display: flex;
}

.solutions-cover-logos {
  width: 9.16667rem;
}

.solutions-blog-layout {
  grid-column-gap: 1.66667rem;
  grid-row-gap: 1.66667rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 10rem;
  display: flex;
}

.solutions-animation-layout {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.solution-item-blackout {
  z-index: 0;
  pointer-events: none;
  background-color: #000;
  width: 100%;
  height: 100%;
  transition: opacity .2s;
  position: absolute;
  inset: 0%;
}

.press-cover-layout {
  grid-column-gap: 1.66667rem;
  grid-row-gap: 1.66667rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 11.3rem;
  display: flex;
}

.press-contacts-layout {
  margin-top: 6.66667rem;
}

.name-layout {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.press-about-layout {
  grid-column-gap: 10rem;
  grid-row-gap: 10rem;
  flex-flow: column;
  padding-top: 10rem;
  display: flex;
}

.press-about-description {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 7.5rem;
  display: flex;
}

.press-theme-layout {
  grid-column-gap: 2rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 15rem;
  display: grid;
}

.press-theme-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-top: 1px solid #111;
  flex-flow: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.press-branding-load-layout {
  margin-bottom: 15rem;
  display: none;
}

.press-branding-load-icon {
  width: 2rem;
  height: 2rem;
}

.press-branding-load-item {
  border-top: 1px solid #111;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.66667rem;
  padding-bottom: 1.66667rem;
  transition: color .3s;
  display: flex;
}

.press-branding-load-item:hover {
  color: var(--text-blsck);
}

.press-branding-load-items-box {
  border-bottom: 1px solid #111;
  margin-top: 1.66667rem;
  transition: color .3s;
}

.press-branding-load-items-box:hover {
  color: #b8b8b8;
}

.press-smi-layout {
  margin-bottom: 10rem;
}

.press-articles-collection-list {
  grid-column-gap: 2rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.press-articles-collection-item-content {
  border-top: 1px solid #111;
  width: 100%;
  padding-top: 1.66667rem;
  padding-bottom: 3.33333rem;
}

.press-articles-collection-item-logo {
  height: 2.66667rem;
  margin-bottom: 3.33333rem;
}

.press-articles-collection-item-date {
  margin-bottom: .666667rem;
  display: flex;
}

.press-page__pagination {
  justify-content: flex-start;
  align-items: center;
  padding-top: 0;
}

.solutions-first-screen {
  z-index: 0;
  position: static;
  top: 0;
}

.services-hero {
  background-image: url('../images/service-page-cover_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100vh;
  margin-bottom: 5rem;
  display: flex;
}

.solution-item-image {
  z-index: -1;
  object-fit: cover;
  width: 73.5rem;
  height: 100%;
  transition: opacity .3s;
  position: absolute;
}

.solution-item-image.is-video {
  display: block;
}

.review-link {
  transition: color .3s;
}

.review-link:hover {
  color: var(--is__dark-blue);
}

.solution-item-border {
  background-color: var(--text-blsck);
  width: 100%;
  height: 1px;
  transition: opacity .3s;
  position: absolute;
  inset: 0% 0% auto;
}

.link-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.solution-heading {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.code-embed {
  width: 100%;
  height: 100%;
  display: none;
}

.loader__layout-wrapper {
  z-index: 9999;
  background-color: var(--text-blsck);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.loader__lottie-wrapper {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.preloader-lottie-animation {
  width: 11.6667rem;
}

.loader__progress-wrapper {
  position: absolute;
  inset: 0% 0% auto;
}

.loader__progress {
  background-color: var(--white);
  width: 0%;
  height: .357143rem;
}

.loader__trigger {
  width: 0;
  height: 0;
  position: absolute;
  inset: 0% auto auto 0%;
}

.solutions-videos-box {
  background-color: var(--text-blsck);
  width: 73.5rem;
}

.solution-content-box {
  z-index: 0;
  opacity: 1;
  width: 100%;
  min-height: 100vh;
  position: sticky;
  top: 0;
}

.solution-content-box.first-solution {
  z-index: 1;
  position: sticky;
  top: 0;
}

.solution-content-box.second-solution {
  z-index: 3;
  position: sticky;
  top: 0%;
}

.solution-content-box.third-solution {
  z-index: 2;
  position: sticky;
  top: 0%;
}

.solution-content-box.fourth-solution {
  z-index: 4;
  position: sticky;
  top: 0%;
}

.solutions-points-box {
  flex: none;
}

.solutions-page-sections-box {
  z-index: 1;
  background-color: var(--white);
  position: relative;
}

.solution-page-mobile-solutions-layout {
  display: none;
}

.footer-social-links-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.main__cases-mobile-button, .solutions-open-icon {
  display: none;
}

.blog-page-author {
  font-size: 1.33333rem;
  line-height: 140%;
}

.bio-modal-layout {
  z-index: 99999;
  background-color: #00000080;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  display: none;
  position: fixed;
  inset: 0%;
}

.bio-modal-close {
  z-index: 2;
  color: var(--white);
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  padding: 1rem;
  display: block;
  position: static;
  inset: 1rem auto auto 26rem;
}

.bio-modal-close-icon {
  width: 100%;
  height: 100%;
}

.bio-content-box {
  z-index: 1;
  background-color: #fff;
  flex-flow: column;
  flex: none;
  width: 75.4167rem;
  height: 100svh;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.bio-close-button-box {
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 1rem;
  padding-right: 1rem;
  display: flex;
}

.bio-content-swiper-layout {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.bio-modal-devider-box {
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.bio-modal-devider {
  background-color: var(--black);
  width: 100%;
  height: 1px;
}

.bio-modal-swiper-box {
  z-index: 0;
  flex: none;
  height: 100%;
  padding-bottom: 7rem;
  position: relative;
}

.bio-modal-swiper, .bio-modal-swiper-wrapper, .bio-modal-swiper-slide {
  height: 100%;
}

.bio-swiper-navigation-layout {
  z-index: 1;
  border-top: 1px solid var(--black);
  background-color: #fff;
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  min-height: 5rem;
  max-height: 5rem;
  margin-left: 2rem;
  margin-right: 2rem;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.bio-swiper-arrow-prev, .bio-swiper-arrow-next {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
}

.swiper-pagination-box {
  flex: none;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.bio-swiper-pagination {
  color: var(--text--secondarty);
  font-family: Ppneuemontrealmono, sans-serif;
  font-size: 1rem;
}

.bio-swiper-slide-content {
  border: 1px #000;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 1rem 2rem 1.25rem;
  display: flex;
}

.bio-photo-box {
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.bio-info-layout {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  padding-right: 3.5rem;
  display: flex;
}

.bio-photo {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.bio-name-box {
  grid-column-gap: .666667rem;
  grid-row-gap: .666667rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.bio-info-content-layout {
  grid-column-gap: 3.33333rem;
  grid-row-gap: 3.33333rem;
  flex-flow: column;
  display: flex;
}

.bio-info-box {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.leader-cards-wrapper.swiper-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.leader-heding-box {
  display: block;
}

.square-button-mask-box {
  justify-content: center;
  align-items: center;
  transition: width .25s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.square-button-mask {
  background-color: var(--white);
  color: var(--is__dark-blue);
  justify-content: center;
  align-items: center;
  width: 15rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hiddens-inputs {
  display: none;
}

.report-form-inputs-box {
  grid-column-gap: 2.33333rem;
  grid-row-gap: 2.33333rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.report-form-description-box {
  grid-column-gap: 1.33333rem;
  grid-row-gap: 1.33333rem;
  color: var(--header--black);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.list-layout {
  letter-spacing: -.16px;
  margin-bottom: 0;
  padding-left: 1.5rem;
  font-size: 1.33333rem;
  line-height: 140%;
}

.solution-report-buttons-box {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  white-space: nowrap;
  display: flex;
}

.no-scipt-embed {
  display: none;
}

.services-list {
  grid-column-gap: .333333rem;
  grid-row-gap: .333333rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: .666667rem;
  padding-left: 2.2rem;
  list-style-type: square;
  display: flex;
}

.services-buttons-box {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  margin-top: .666667rem;
  display: flex;
}

.services-buttons-box.no-margin {
  margin-top: 0;
}

.services-tempate-video-box {
  height: 50rem;
  margin-top: 15rem;
}

.text-color-secondary {
  color: var(--text--secondarty);
}

.scroll-trigger {
  display: none;
}

.dark-blue-link {
  color: var(--is__dark-blue);
}

@media screen and (min-width: 1280px) {
  .section-wrp {
    padding-left: 0;
    padding-right: 0;
  }

  .footer {
    width: 1124px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-wrp {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-txt, .contact-txt.footer-txt-mob-order {
    padding-right: 40px;
    font-size: 16px;
    line-height: 22px;
  }

  .cmm-div {
    align-items: flex-start;
    margin-top: 0;
  }

  .smm-link {
    width: 30px;
    height: 30px;
  }

  .smm-icon {
    width: 14px;
  }

  .slide-smm-link {
    cursor: pointer;
    width: 45px;
    height: 45px;
  }

  .side-smm-icon {
    width: 20px;
  }

  .mix {
    grid-column-gap: 16px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-bottom: 10%;
    display: grid;
  }

  .mix.new-post {
    grid-template-rows: auto;
  }

  .image-56 {
    width: 120px;
    height: 120px;
  }

  .div-block-28 {
    margin-top: 5px;
    font-size: 18px;
  }

  .text-block-16 {
    font-family: Manrope, sans-serif;
    font-size: 18px;
  }

  .section-8 {
    margin-top: 120px;
  }

  .smm-menu-blog-copy {
    left: 2%;
    padding-bottom: 0;
    display: flex;
    position: sticky;
    inset: 16% 6% 0% auto;
  }

  .text-block-24 {
    font-family: Manrope, sans-serif;
  }

  .author-info {
    justify-content: flex-start;
    padding-bottom: 0;
    display: flex;
    position: sticky;
    top: 16%;
    left: 6%;
  }

  .div-block-36 {
    z-index: 0;
    width: 1124px;
    margin-top: 120px;
    display: flex;
    position: fixed;
    inset: 0%;
  }

  .search-input-copy {
    width: 1124px;
    display: none;
  }

  .search-button-copy {
    display: none;
    top: -45px;
  }

  .button-4-copy {
    width: 50px;
    height: 50px;
    position: static;
    left: 8px;
  }

  .search-btn-div {
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 38px;
    bottom: 5%;
    right: 0%;
  }

  .footer-copy {
    position: static;
  }

  .div-block-53 {
    z-index: 10;
    position: relative;
  }

  .smm-link-hbr {
    width: 30px;
    height: 30px;
  }

  .case-item-div {
    margin-bottom: 30px;
  }

  .side-smm-icon-tg {
    width: 15px;
  }

  .smm-link-tg-new {
    cursor: pointer;
    width: 35px;
    height: 35px;
  }

  .new-container {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }

  .text-color-grey {
    color: var(--dark-grey);
  }

  .text-color-grey.text-opacity-50 {
    opacity: .5;
  }

  .text-color-grey.subheading {
    position: absolute;
    inset: 0% auto auto 0%;
  }

  .navbar__social-links-wrapper {
    align-items: flex-start;
    margin-top: 0;
  }

  .section-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .text-size-48 {
    letter-spacing: -2.4px;
    font-size: 4rem;
    line-height: 100%;
  }

  .text-size-48.text-weight-semibold {
    font-weight: 400;
  }

  .text-size-48.text-weight-semibold.with-indent {
    text-indent: 24.5rem;
    font-weight: 400;
  }

  .services__marquee-layout {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 6.66667rem;
    display: flex;
    overflow: hidden;
  }

  .services__marquee-content {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    flex: none;
    justify-content: flex-start;
    align-items: center;
    width: 329rem;
    display: flex;
  }

  .services__marquee-content.scroll {
    width: auto;
  }

  .services__marquee-logo {
    height: 4.16667rem;
  }

  .services-page-css {
    overflow: hidden;
  }

  .services__page-rich-text.home-page-cases-tags {
    margin-top: 0;
  }

  .brackets-text {
    text-transform: lowercase;
  }

  .solution-item-solution-links-box {
    right: 0;
  }
}

@media screen and (min-width: 1440px) {
  .navbar {
    align-items: center;
    display: flex;
  }

  .section-wrp {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-wrp {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer-logo.services-footer-logo {
    width: 130px;
  }

  .contact-txt {
    padding-right: 26px;
    font-size: 15px;
    line-height: 21px;
  }

  .contact-txt.footer-txt-mob-order {
    padding-right: 26px;
  }

  .smm-link {
    width: 40px;
    height: 40px;
  }

  .smm-icon {
    width: 18px;
  }

  .slide-smm-link {
    width: 50px;
    height: 50px;
  }

  .side-smm-icon {
    width: 20px;
  }

  .side-smm-link-on-black {
    width: 41px;
    height: 41px;
  }

  .image-56 {
    width: 120px;
    height: 120px;
  }

  .div-block-28 {
    font-size: 20px;
  }

  .text-block-16 {
    font-family: Manrope, sans-serif;
    font-size: 22px;
    line-height: 30px;
  }

  .section-8 {
    width: 700px;
    margin-top: 120px;
  }

  .text-block-17 {
    font-family: Manrope, sans-serif;
    font-size: 40px;
    font-weight: 600;
  }

  .heading-9 {
    justify-content: center;
    margin-bottom: 70px;
    display: flex;
  }

  .smm-menu-blog-copy {
    left: 3%;
    margin-right: 10px;
    padding-bottom: 0;
    padding-left: 0;
    display: flex;
    position: static;
    inset: 14% 11% 0% auto;
  }

  .author-info {
    justify-content: flex-start;
    padding-bottom: 0;
    padding-left: 0;
    display: flex;
    position: static;
    top: 13%;
    left: 10%;
  }

  .div-block-36 {
    width: 1145px;
    margin-top: 126px;
    position: fixed;
    inset: 0%;
  }

  .div-block-44 {
    margin-top: 55px;
  }

  .search-input-copy {
    border-radius: 100px;
    width: 1124px;
    height: auto;
    padding: 16px 35px 16px 61px;
    font-size: 18px;
    display: none;
  }

  .search-button-copy {
    height: 40px;
    display: none;
    top: -51px;
    left: 6px;
  }

  .button-4-copy {
    width: 50px;
    height: 50px;
    left: 5px;
  }

  .search-btn-div {
    padding-bottom: 10px;
    bottom: 7%;
  }

  .smm-link-hbr {
    width: 40px;
    height: 40px;
  }

  .side-smm-icon-tg {
    width: 15px;
  }

  .smm-link-tg-new {
    width: 35px;
    height: 35px;
  }

  .footer__partner-logo-wrapper, .footer__partner-logo {
    bottom: -120px;
  }

  .vacancies__description-wrapper {
    grid-template-columns: 40rem max-content 1fr 20rem;
  }

  .text-size-48.text-weight-semibold.is__text-indent {
    font-weight: 400;
  }

  .text-size-92.services__tabs-heading {
    width: 85%;
  }

  .article-template__rich-text sub {
    font-family: Ppneuemontrealmono, sans-serif;
  }

  .case-card-cube {
    width: 47.2vw;
    min-width: 100%;
  }

  .cube-wrapper {
    transform: none;
  }

  .cube-face-1 {
    transform: translate3d(0, 0, 23.6vw);
  }

  .cube-face-2 {
    transform: translate3d(23.6vw, 0, 0)rotateX(0)rotateY(90deg)rotateZ(0);
  }

  .reviews__page-heading-layout {
    width: 90%;
  }
}

@media screen and (min-width: 1920px) {
  h2 {
    flex-direction: column;
    justify-content: center;
    font-size: 70px;
    line-height: 80px;
    display: flex;
  }

  h3 {
    font-size: 50px;
    line-height: 60px;
  }

  h4 {
    font-size: 30px;
    line-height: 40px;
  }

  .navbar.black {
    font-family: Manrope, sans-serif;
  }

  .section-wrp {
    width: 1476px;
    padding-left: 0;
    padding-right: 0;
  }

  .section-wrp.nav-wrp {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-wrp.nav-wrp.new {
    padding-top: 35px;
  }

  .btn {
    min-width: 280px;
    height: 86px;
    padding-left: 55px;
    padding-right: 55px;
    font-size: 30px;
    line-height: 44px;
  }

  .btn.btn-small {
    height: 54px;
    padding-left: 30px;
    padding-right: 30px;
    font-family: Manrope, sans-serif;
    font-size: 16px;
  }

  .logo {
    width: 170px;
    font-family: Manrope, sans-serif;
  }

  .main-s3-card-note {
    font-size: 16px;
  }

  .footer {
    width: 1476px;
    display: flex;
  }

  .footer-wrp {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .footer-logo, .footer-logo.services-footer-logo {
    width: 170px;
  }

  .contact-txt {
    color: var(--silver);
    padding-right: 60px;
    font-family: Manrope, sans-serif;
    font-size: 20px;
    line-height: 29px;
    text-decoration: none;
  }

  .contact-txt.footer-txt-mob-order {
    font-family: Manrope, sans-serif;
    font-size: 20px;
    line-height: 28px;
  }

  .smm-link {
    border-radius: 40px;
    width: 50px;
    height: 50px;
  }

  .smm-icon {
    width: 25px;
  }

  .slide-smm-link {
    text-align: center;
    width: 65px;
    height: 65px;
    margin-bottom: 16px;
  }

  .side-smm-icon {
    text-align: center;
    width: 25px;
  }

  .nav-link-mob {
    font-size: 16px;
  }

  .side-smm-link-on-black {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }

  .black {
    background-color: #000;
  }

  .mix {
    grid-row-gap: 0px;
    grid-template-rows: auto minmax(max-content, 1fr) auto;
  }

  .mix.new-post {
    grid-template-rows: auto minmax(max-content, 1fr);
    grid-template-columns: 1fr .5fr;
  }

  .image-56 {
    width: 150px;
    height: 150px;
  }

  .div-block-28 {
    margin-top: 15px;
  }

  .text-block-16 {
    margin-top: 30px;
    font-size: 32px;
    line-height: 43px;
  }

  .section-8 {
    width: 800px;
    margin-top: 140px;
  }

  .search-2 {
    margin-top: 79px;
  }

  .search-result-item {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr .5fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .heading-9 {
    color: #0a0a0a;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    font-family: Manrope, sans-serif;
    font-size: 140px;
    font-weight: 800;
    line-height: 140px;
  }

  .smm-menu-blog-copy {
    padding-bottom: 824px;
    padding-left: 0;
    left: 12%;
  }

  .heading-12 {
    margin-bottom: 10px;
    font-family: Manrope, sans-serif;
    font-size: 40px;
    line-height: 50px;
  }

  .text-block-22 {
    font-family: Manrope, sans-serif;
    font-size: 32px;
    line-height: 40px;
  }

  .link-block-3 {
    align-items: center;
    width: 1476px;
  }

  .author-page-heading {
    font-family: Manrope, sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
  }

  .smm-menu-blog-copy {
    justify-content: flex-start;
    margin-right: 40px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    display: none;
    position: static;
    inset: 12% 12% 0% auto;
  }

  .text-block-24 {
    color: #9f9f9f;
    font-size: 24px;
  }

  .author-info {
    justify-content: flex-start;
    margin-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    position: static;
    top: 12%;
    left: 10%;
  }

  .div-block-36 {
    width: 1550px;
    margin-top: 140px;
    position: fixed;
    inset: 0% 0% auto;
  }

  .div-block-42 {
    width: 250px;
  }

  .footer-copy {
    margin-top: 0;
    position: static;
    inset: auto 0% 0%;
  }

  .div-block-44 {
    width: 1476px;
  }

  .search-input-copy {
    width: 1476px;
    height: 70px;
    padding-top: 19px;
    padding-bottom: 19px;
    padding-left: 91px;
    font-size: 24px;
    display: none;
  }

  .search-button-copy {
    z-index: 50;
    width: 54px;
    height: 54px;
    display: none;
    position: relative;
    top: -64px;
    left: 17px;
  }

  .button-4-copy {
    z-index: 50;
    background-color: #3898ec00;
    background-image: url('../images/search.webp');
    background-position: 50%;
    background-size: cover;
    border-radius: 70px;
    width: 70px;
    height: 70px;
    padding: 0;
    display: block;
    position: relative;
    bottom: 0;
    left: -2px;
    box-shadow: 0 0 0 -20px #000;
  }

  .search-btn-div {
    width: 1476px;
    padding-bottom: 57px;
    display: flex;
    bottom: 2%;
  }

  .footer-copy {
    display: flex;
    position: static;
  }

  .smm-link-hbr {
    border-radius: 40px;
    width: 50px;
    height: 50px;
  }

  .case-item-div {
    grid-column-gap: 40px;
    grid-template-columns: 440px 1fr;
    margin-bottom: 40px;
  }

  .side-smm-icon-tg {
    text-align: center;
    width: 20px;
  }

  .smm-link-tg-new {
    text-align: center;
    width: 45px;
    height: 45px;
  }

  .nav-link-mob-giga {
    font-size: 16px;
  }

  .page-wrapper {
    overflow: clip;
  }

  .footer__partner-logo-wrapper {
    width: 150px;
    min-width: 150px;
    bottom: -185px;
  }

  .footer__partner-logo-wrapper.is__russoft {
    bottom: -70px;
  }

  .footer__partner-logo {
    width: 150px;
    bottom: -150px;
  }

  .new-section.services-page-cover {
    z-index: 1;
  }

  .vacancies__description-wrapper {
    grid-template-columns: 31.5rem max-content 1fr 30rem;
  }

  .vacancies-list-dropdown-link {
    font-weight: 400;
  }

  .text-color-grey.no-link-text {
    text-transform: lowercase;
    font-family: Ppneuemontrealmono, sans-serif;
  }

  .navbar-all__layout-wrapper {
    position: fixed;
    inset: 0% 0% auto;
  }

  .navbar-all__logo-icon {
    width: 170px;
  }

  .text-size-16 {
    letter-spacing: -.16px;
    font-size: 1.33333rem;
    line-height: 130%;
  }

  .text-size-16.services__madal-award-name-text {
    max-width: 26.6667rem;
  }

  .services__page-rich-text h3 {
    line-height: 112%;
  }

  .text-size-12.text-color-grey.services__award-modal-year-text {
    margin-bottom: .666667rem;
  }

  .services_award-item {
    background-color: #ddd0;
    padding: 0;
  }

  .services_award-item.w--current {
    background-color: #0000;
  }

  .services__awards-tabs-content {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
  }

  .services__award-modal-heading {
    border-top: 1px solid #111;
    margin-bottom: 5rem;
    padding-top: .666667rem;
  }

  .services__award-modal-year-layout {
    border-bottom: 1px solid #111;
    margin-bottom: 3.33333rem;
  }

  .services__award-modal-item {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    border-top: 1px solid #111;
    grid-template-rows: auto;
    grid-template-columns: 30.6667rem 14.3333rem 14.3333rem max-content;
    grid-auto-columns: 1fr;
    width: 100%;
    padding-top: 1.66667rem;
    padding-bottom: 1.66667rem;
    padding-right: 0;
    display: grid;
  }

  .services__award-modal-close {
    left: 24rem;
  }

  .servoces__whiteout-layout {
    bottom: 0;
  }

  .article-template__service-name {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    display: flex;
  }

  .hidden-input {
    color: var(--black);
  }

  .navbar-open-modal-grid {
    height: 100%;
    position: relative;
  }

  .full-width-image {
    box-sizing: border-box;
  }

  .new-case-image-layout {
    height: auto;
  }

  .new-case-image-layout.margin-top-180180.lama-table {
    height: 50rem;
  }

  .new-case-default-grid {
    align-items: start;
  }

  .new-case-footer-name-layout {
    width: 100%;
  }

  .new-case-services-layout {
    margin-top: 0;
  }

  .new-case-award-item {
    background-color: #ddd0;
    padding: 0;
  }

  .new-case-award-item.w--current {
    background-color: #0000;
  }

  .case-card-cube {
    perspective: 317rem;
    width: 47.5vw;
  }

  .cube-face-1 {
    transform: translate3d(0, 0, 23.75vw);
  }

  .cube-face-2 {
    transform: translate3d(23.75vw, 0, 0)rotateX(0)rotateY(90deg)rotateZ(0);
  }

  ._404-cover-layout {
    justify-content: flex-start;
    align-items: center;
    padding-top: 11.6667rem;
  }

  ._404-video-wrapper {
    flex: 1;
  }

  .brackets-text.capitalize-none {
    text-transform: none;
  }

  .about-cover-layout {
    padding-top: 4.33333rem;
  }

  .nap-video {
    border-radius: 50%;
    width: 8.33333rem;
    height: 8.33333rem;
  }

  .about-cover-numbers-layout {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 5rem;
    margin-bottom: 2rem;
    display: grid;
  }

  .about-cover-number-boxes {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 16.3333rem 16.3333rem 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .about-cover-number-box {
    grid-column-gap: 2.41667rem;
    grid-row-gap: 2.41667rem;
    border-left: 1px solid #111;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 1rem;
    display: flex;
  }

  .awards-layout {
    margin-top: 0;
  }

  .press-page__pagination {
    padding-top: 0;
  }

  .blog-page-author {
    font-size: 1.33333rem;
    line-height: 141%;
  }

  .bio-modal-layout {
    display: flex;
  }

  .bio-modal-close {
    left: 24rem;
  }

  .bio-content-swiper-layout {
    justify-content: space-between;
    align-items: stretch;
  }

  .bio-swiper-navigation-layout {
    flex: none;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 70px;
    line-height: 70px;
  }

  h2, h3 {
    font-size: 40px;
    line-height: 45px;
  }

  h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .section-wrp.nav-wrp {
    flex: none;
  }

  .section-wrp.nav-wrp.new {
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .btn {
    min-width: auto;
    height: 52px;
    font-size: 17px;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-wrp {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-logo {
    width: 110px;
  }

  .contact-txt {
    padding-right: 40px;
  }

  .contact-txt.footer-txt-mob-order {
    order: 0;
    width: 100%;
    margin-top: 20px;
  }

  .nav-menu-mob-div {
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
  }

  .nav-menu-mob-txt {
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 15px;
  }

  .nav-menu-smm-div {
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    display: flex;
  }

  .nav-menu-smm-link {
    background-color: #000;
    border-radius: 30px;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    margin-left: 3px;
    margin-right: 3px;
    padding: 0;
    display: flex;
  }

  .nav-menu-smm-icon {
    width: 16px;
  }

  .mob-menu-wrp {
    z-index: 50;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    text-align: center;
    background-color: #ffffff6e;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 60px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    display: none;
    position: fixed;
    inset: 0%;
    overflow: auto;
  }

  .mob-menu-link-div {
    flex-direction: column;
  }

  .nav-link-mob {
    text-align: center;
    text-transform: none;
    justify-content: center;
    align-items: center;
    height: 60px;
    font-size: 40px;
    line-height: 65px;
    display: flex;
  }

  .menu-close {
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    margin-left: auto;
    margin-right: 10px;
    display: flex;
  }

  .menu-close.w--open {
    z-index: 20;
    background-color: #0000;
  }

  .mob-menu-spacer {
    width: 100%;
    height: 140px;
  }

  .menu-btn-line-close {
    background-color: #000;
    border-radius: 2px;
    width: 15px;
    height: 2px;
    margin-top: 1.5px;
    margin-bottom: 1.5px;
    padding: 0;
    transform: translate(0, 2px)rotate(45deg);
  }

  .menu-btn-line-close._2 {
    transform: translate(0, -3px)rotate(-45deg);
  }

  .mob-menu-spacer-2 {
    width: 100%;
    height: 40px;
    padding: 0;
  }

  .mix {
    grid-template-rows: auto minmax(auto, 1fr) auto;
    padding-bottom: 40px;
  }

  .mix.new-post {
    grid-template-columns: 1fr;
  }

  .section-8 {
    width: auto;
    margin-left: 240px;
    margin-right: 50px;
  }

  .text-block-17 {
    font-size: 25px;
  }

  .heading-9 {
    font-size: 70px;
    line-height: 80px;
  }

  .smm-menu-blog-copy {
    padding-left: 2%;
    display: flex;
  }

  .heading-12, .text-block-22 {
    margin-bottom: 10px;
  }

  .link-block-3 {
    grid-template-columns: 1fr;
  }

  .author-page-heading {
    font-size: 25px;
    font-weight: 700;
    line-height: 35px;
  }

  .smm-menu-blog-copy {
    justify-content: center;
    height: 250vh;
    padding-bottom: 124px;
    padding-left: 0%;
    display: flex;
    inset: 10% auto 0% 8%;
  }

  .author-info {
    padding-left: 0%;
    display: flex;
    left: 4%;
  }

  .div-block-36 {
    flex-direction: column;
    align-items: center;
    width: 120px;
    margin-left: 30px;
  }

  .div-block-44 {
    width: auto;
    margin-left: 30px;
    margin-right: 30px;
  }

  .articles-template__sharing-buttons {
    width: 100%;
  }

  .search-input-copy {
    width: auto;
    max-width: 100%;
    display: none;
  }

  .button-4-copy {
    margin-right: 30px;
    left: 31px;
  }

  .search-btn-div {
    width: auto;
  }

  .footer-copy {
    position: static;
  }

  .case-item-div {
    grid-column-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 229px 1fr;
    margin-bottom: 20px;
  }

  .cases-collection-list {
    margin-left: 20px;
    margin-right: 20px;
  }

  .cases-collection-list.main-page {
    margin-left: 0;
    margin-right: 0;
  }

  .tel-html {
    flex: none;
    margin-bottom: 0;
    padding-right: 50px;
  }

  .footer-info-div {
    flex-direction: row;
    align-items: center;
  }

  .tel-html-mob {
    flex: none;
    margin-bottom: 0;
    padding-right: 0;
  }

  .nav-menu-smm-link-copy {
    background-color: #000;
    border-radius: 30px;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    margin-left: 3px;
    margin-right: 3px;
    padding: 0;
    display: none;
  }

  .smm-link-tg-new {
    display: none;
  }

  .nav-link-mob-giga {
    text-align: center;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    height: 60px;
    font-size: 40px;
    line-height: 65px;
    display: flex;
  }

  .footer__partner-logo-wrapper {
    bottom: -50%;
    right: -150px;
  }

  .footer__partner-logo-wrapper.is__russoft {
    bottom: 0;
    right: -314px;
  }

  .footer__partner-logo {
    bottom: -50%;
    right: -150px;
  }

  .navbar-all__logo-icon {
    width: 110px;
  }

  .navbar-all__blind-footer {
    flex-flow: column;
  }

  .navbar__info-wrapper {
    flex-direction: row;
    align-items: center;
  }

  .services__page-rich-text.home-page-cases-tags {
    margin-top: 0;
  }

  .article-template__article-text-wrapper {
    left: -5rem;
  }

  .new-case-footer-arrow {
    opacity: 1;
  }

  .cube-face-1 {
    position: relative;
    transform: none;
  }

  .cube-face-2 {
    display: none;
    transform: translate3d(19vw, 0, 0)rotateX(0)rotateY(90deg)rotateZ(0);
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
    line-height: 45px;
  }

  h2, h3 {
    font-size: 30px;
    line-height: 35px;
  }

  h4 {
    font-size: 17px;
    line-height: 22px;
  }

  .btn.btn-small {
    height: 32px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 10px;
  }

  .footer-wrp {
    place-content: stretch flex-start;
    padding-bottom: 80px;
  }

  .footer-logo, .footer-logo.services-footer-logo {
    width: 90px;
  }

  .contact-txt {
    margin-bottom: 20px;
  }

  .cmm-div {
    order: 1;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 60px;
  }

  .smm-link {
    width: 35px;
    height: 35px;
    margin-left: 0;
    margin-right: 5px;
  }

  .smm-icon {
    width: 18px;
  }

  .slide-smm-link {
    width: 50px;
    height: 50px;
    margin-bottom: 5%;
    margin-right: 5%;
  }

  .side-smm-icon {
    width: 20px;
  }

  .footer-logo-div {
    order: -1;
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .mob-menu-wrp {
    display: none;
  }

  .menu-close {
    margin-right: 5px;
  }

  .section-8 {
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
  }

  .text-block-17 {
    font-size: 20px;
  }

  .heading-9 {
    margin-bottom: 0;
    font-size: 50px;
    line-height: 60px;
  }

  .smm-menu-blog-copy {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: auto;
    padding-bottom: 0;
    padding-left: 0;
    inset: auto 0% 0%;
  }

  .heading-12 {
    margin-bottom: 11px;
  }

  .text-block-22 {
    margin-bottom: 10px;
  }

  .smm-menu-blog-copy {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: auto;
    padding-bottom: 0;
    padding-left: 0;
    position: fixed;
    inset: auto 0% 0%;
  }

  .author-info {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    padding-bottom: 0;
    padding-left: 0;
    position: static;
    inset: 15% auto 0% 5%;
  }

  .div-block-36 {
    align-items: flex-start;
    width: auto;
    margin-top: 88px;
    margin-left: 30px;
    margin-right: 30px;
    position: static;
  }

  .div-block-51 {
    margin-bottom: 40px;
  }

  .search-input-copy {
    width: 350px;
  }

  .search-button-copy {
    width: 35px;
    height: 35px;
  }

  .button-4-copy {
    justify-content: flex-end;
    display: flex;
    left: 0;
  }

  .footer-copy {
    position: static;
  }

  .smm-link-hbr {
    width: 35px;
    height: 35px;
    margin-left: 0;
    margin-right: 5px;
  }

  .case-item-div {
    grid-column-gap: 0px;
    background-color: #f4f4f8;
    border-radius: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: auto;
  }

  .tel-html-mob {
    padding-right: 0;
  }

  .side-smm-icon-tg {
    width: 20px;
  }

  .smm-link-tg-new {
    width: 50px;
    height: 50px;
    margin-bottom: 5%;
    margin-right: 5%;
  }

  .footer__partner-logo-wrapper {
    bottom: -80px;
    right: auto;
  }

  .footer__partner-logo-wrapper.is__russoft {
    bottom: -131px;
    right: auto;
  }

  .footer__partner-logo {
    bottom: -80px;
    right: auto;
  }

  .navbar-all__logo-icon {
    width: 90px;
  }

  .navbar-all__blind-footer {
    place-content: stretch flex-start;
    padding-bottom: 80px;
  }

  .navbar__social-links-wrapper {
    order: 1;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 60px;
  }

  .blog-page__blog-collection-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .article-template__content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .article-template__toc-wrapper {
    width: auto;
    position: static;
  }

  .article-template__rich-text {
    width: auto;
    padding-left: 0;
  }

  .article-template__rich-text p {
    width: auto;
  }

  .article-template__rich-text figure {
    left: 0;
  }

  .article-template__rich-text ul {
    max-width: none;
  }

  .article-template__rich-text blockquote {
    width: auto;
  }

  .article-template__rich-text ol {
    max-width: none;
  }

  .article-template__article-text-wrapper {
    flex-direction: column;
    justify-content: center;
    width: auto;
    display: flex;
    position: static;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    letter-spacing: -.442748rem;
    font-size: 14.7583rem;
    line-height: 96%;
  }

  h2 {
    letter-spacing: -.610687rem;
    line-height: 35px;
  }

  h3 {
    line-height: 40px;
  }

  .section-wrp {
    flex-wrap: nowrap;
    align-content: space-between;
    display: block;
  }

  .section-wrp.nav-wrp.new {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo {
    width: 90px;
  }

  .footer-wrp {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 150px;
  }

  .footer-logo {
    width: 90px;
    display: inline-block;
  }

  .contact-txt {
    padding-right: 0;
    font-size: 12px;
    line-height: 15px;
  }

  .contact-txt.footer-txt-mob-order {
    margin-top: 10px;
  }

  .contact-txt.footer-txt-mob-order.is__hide {
    display: none;
  }

  .cmm-div {
    justify-content: center;
    margin-top: 20px;
  }

  .smm-icon {
    width: 14px;
  }

  .slide-smm-link {
    width: 50px;
    height: 50px;
  }

  .side-smm-icon {
    width: 20px;
  }

  .footer-logo-div {
    display: block;
  }

  .mob-menu-wrp {
    display: none;
  }

  .mix {
    margin-bottom: -353px;
    padding-bottom: 0;
  }

  .mix.new-post {
    padding-left: 0;
    padding-right: 0;
  }

  .section-8 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .text-block-17 {
    font-size: 18px;
  }

  .heading-9 {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 40px;
    line-height: 50px;
  }

  .heading-12 {
    margin-bottom: 15px;
  }

  .text-block-22 {
    margin-bottom: 14px;
  }

  .author-page-heading {
    font-size: 20px;
    line-height: 28px;
  }

  .smm-menu-blog-copy {
    text-align: center;
    width: 100%;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    bottom: 0%;
  }

  .author-info {
    text-align: center;
    width: auto;
    height: auto;
    margin-left: 0;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    bottom: 0%;
  }

  .div-block-36 {
    margin-top: 72px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .div-block-44 {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }

  .articles-template__sharing-buttons {
    position: absolute;
    inset: auto 0% 0%;
  }

  .div-block-51 {
    margin-bottom: 20px;
  }

  .search-input-copy {
    width: auto;
    height: 40px;
    padding-left: 57px;
    font-size: 14px;
    display: none;
  }

  .search-button-copy {
    display: none;
    left: 48px;
  }

  .button-4-copy {
    width: 45px;
    height: 45px;
    padding-left: 0;
    top: auto;
    left: 14px;
  }

  .search-btn-div {
    bottom: 7%;
  }

  .footer-copy {
    justify-content: center;
    display: flex;
    position: static;
  }

  .case-item-div {
    margin-bottom: 374px;
  }

  .cases-collection-list {
    grid-column-gap: 20.3562rem;
    grid-row-gap: 20.3562rem;
    flex-flow: column;
    grid-template-rows: auto;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .tel-html {
    justify-content: center;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
  }

  .footer-info-div {
    flex-direction: column;
  }

  .tel-html-mob {
    justify-content: center;
    padding-right: 0;
    display: block;
  }

  .side-smm-icon-tg {
    width: 20px;
  }

  .smm-link-tg-new {
    width: 50px;
    height: 50px;
  }

  .footer__partner-logo-wrapper {
    bottom: -100px;
  }

  .footer__partner-logo-wrapper.is__russoft {
    bottom: -175px;
  }

  .footer__partner-logo {
    bottom: -100px;
  }

  .new-section.is__with-indent {
    margin-top: 21.3333rem;
  }

  .new-section.is__with-indent.is__mobile-no-indent {
    margin-top: 0;
  }

  .new-section.is__blue-cover-section {
    margin-top: 72px;
  }

  .new-section.is__blue-cover-section.is__mobile-hide {
    display: none;
  }

  .new-container {
    padding-left: 5.33333rem;
    padding-right: 5.33333rem;
  }

  .new-body {
    font-size: 3.73333rem;
  }

  .is__button.is__full-width {
    text-transform: none;
    border-radius: 8rem;
    height: 12.8rem;
    padding: 0;
    font-size: 4.26667rem;
  }

  .is__button.is__vacancy-button {
    border-radius: 8rem;
    width: auto;
    height: 12.8rem;
    font-size: 4.26667rem;
    font-weight: 600;
  }

  .is__button.is__form-button {
    border-radius: 10.6667rem;
    width: 100%;
    height: 12.8rem;
    margin-top: 10.6667rem;
    font-size: 4.26667rem;
    font-weight: 600;
  }

  .is__button.is__dark-blue-button {
    display: none;
  }

  .career__cover-layout {
    text-align: left;
    align-items: flex-start;
    margin-top: 41rem;
    padding-top: 10.6667rem;
  }

  .career__page-heading {
    margin-bottom: 6.4rem;
    font-size: 8.53333rem;
  }

  .is__text-size-big {
    font-size: 4.26667rem;
    line-height: 130%;
  }

  .is__text-size-big.is__text-color-grey.is__cover-subtitle {
    max-width: none;
  }

  .is__text-size-big.is__text-color-grey.is__tallent-subtitle {
    margin-top: 6.4rem;
  }

  .is__text-size-big.is__text-color-grey.is__recriation-subtitle {
    max-width: none;
    margin-top: 6.4rem;
  }

  .is__text-size-big.is__ratinf-subtitle {
    margin-top: 4.26667rem;
  }

  .is__text-size-big.is__text-color-blue.is__vacancies-name {
    order: -1;
    font-size: 5.33333rem;
  }

  .is__text-size-big.is__stories-cover-description {
    max-width: none;
    margin-top: 6.4rem;
  }

  .is__button-wrapper, .is__button-wrapper.is__recriation-button {
    width: 100%;
    margin-top: 10.6667rem;
  }

  .career__cover-illustration-wrapper {
    margin-top: 85.3333rem;
  }

  .career__cover-illustration {
    display: none;
  }

  .rating__icon {
    width: 29.3333rem;
    margin-bottom: 3.2rem;
  }

  .is__text-size-normal {
    font-size: 4.26667rem;
  }

  .is__text-size-normal.is__weight-extrabold {
    font-size: 3.73333rem;
    font-weight: 600;
  }

  .is__text-size-normal.is__weight-medium.is__city-name {
    color: var(--dark-grey);
  }

  .is__text-size-normal.is__weight-medium.is__position-name {
    order: -1;
  }

  .rating__swiper-layout {
    margin-top: 21.3333rem;
    margin-bottom: 21.3333rem;
  }

  .about__layout-wrapper {
    flex-direction: column;
  }

  .about__heading-wrapper {
    width: auto;
  }

  .about__content-wrapper {
    grid-row-gap: 5.33333rem;
    width: auto;
    margin-top: 10.6667rem;
  }

  .is__h2-heading {
    letter-spacing: 0;
    font-size: 8.53333rem;
  }

  .about__arrow-bullit {
    width: 3.73333rem;
    margin-right: 2.13333rem;
  }

  .about__arrow-bullit.is__only-mobile {
    display: flex;
  }

  .about__arrow-bullit.is__only-desktop {
    display: none;
  }

  .is__text-size-large {
    font-size: 6.4rem;
  }

  .is__text-size-large.is__weight-bold.is__vacancies-name {
    margin-bottom: 3.2rem;
  }

  .is__text-size-large.is__weight-bold.is__stories__card-description {
    margin-bottom: 3.2rem;
    font-size: 4.26667rem;
    line-height: 130%;
  }

  .is__text-size-large.is__weight-bold.is__story-description {
    margin-top: 10.6667rem;
    margin-bottom: 5rem;
    font-size: 4.26667rem;
    line-height: 130%;
  }

  .is__text-size-large.is__weight-bold.is__mobile-size-normal {
    font-size: 4.26667rem;
    line-height: 130%;
  }

  .vacancies__layout-wrapper {
    align-items: flex-start;
  }

  .vacancies__swiper-layout {
    margin-top: 10.6667rem;
  }

  .vacancies__card-wrapper {
    height: 98.1333rem;
    padding: 10.6667rem 6.4rem;
  }

  .vacancies__info-wrapper.is__first {
    margin-bottom: 1.06667rem;
  }

  .button__arrow {
    width: 5.6rem;
    height: 5.6rem;
    margin-left: 1.06667rem;
  }

  .why__card-grid {
    grid-row-gap: 5.33333rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    margin-top: 10.6667rem;
  }

  .why__card {
    border-radius: 5.33333rem;
    height: 98.1333rem;
    padding: 23.7333rem 6.4rem 10.6667rem;
  }

  .why__card-icon {
    width: 13.3333rem;
    height: 13.3333rem;
  }

  .why__card-heading-wrapper {
    grid-row-gap: 3.2rem;
  }

  .why__image {
    border-radius: 5.33333rem;
    height: 78.6667rem;
  }

  .tallent__heading-wrapper {
    text-align: left;
    align-items: flex-start;
    max-width: none;
  }

  .tallent__cards-grid {
    grid-row-gap: 5.33333rem;
    grid-template-columns: 1fr;
    margin-top: 10.6667rem;
  }

  .tallent__card {
    border-radius: 5.33333rem;
  }

  .tallent__card-imge {
    width: 100%;
  }

  .tallent__card-link {
    padding: 6.4rem;
  }

  .is__text-size-greate.is__weight-bold {
    font-size: 6.4rem;
  }

  .tallent__card-link-arrow-wrapper {
    width: 10.6667rem;
    height: 10.6667rem;
  }

  .recriation__layout-wrapper {
    text-align: left;
    align-items: flex-start;
  }

  .recriation__image {
    object-fit: cover;
    border-radius: 5.33333rem;
    height: 48rem;
    margin-top: 10.6667rem;
  }

  .smi__layout-wrapper {
    align-items: flex-start;
  }

  .smi__swiper-layout {
    margin-top: 10.6667rem;
  }

  .smi__card {
    height: 40rem;
  }

  .smi__card-logo {
    height: 8rem;
    margin-bottom: 3.2rem;
  }

  .smi-pagination {
    margin-top: 6.4rem;
  }

  .events__cover-layout {
    padding-top: 34.5rem;
  }

  .events__cover-layout.is__align-start {
    padding-top: 10.6667rem;
    padding-bottom: 10.6667rem;
  }

  .is__h1-heading {
    font-size: 8.53333rem;
  }

  .is__h1-heading.is__vacancies-list-page-heading {
    width: 70%;
  }

  .is__h1-heading.is__big {
    font-size: 8.2rem;
    line-height: 120%;
  }

  .events__swiper-layout.is__first {
    padding-top: 32rem;
  }

  .events__swiper-wrapper {
    margin-top: 10.6667rem;
  }

  .events__image {
    border-radius: 5.33333rem;
    height: 48rem;
  }

  .events-pagination {
    margin-top: 6.4rem;
  }

  .events__swiper-heading-wrapper {
    text-align: left;
    align-items: flex-start;
    max-width: none;
  }

  .stories__collection-list {
    grid-column-gap: 2.5rem;
    grid-row-gap: 5.33333rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .stories__collection-item {
    border-radius: 5.33333rem;
    height: 98.1333rem;
    padding: 10.6667rem 6.4rem;
  }

  .stories__card-avatar {
    object-fit: cover;
    width: 16rem;
    height: 16rem;
    margin-bottom: 2.13333rem;
  }

  .story__layout-wrapper {
    padding-top: 20rem;
  }

  .story__rich-text {
    font-size: 4.26667rem;
  }

  .story__content-wrapper, .story__heading-wrapper {
    max-width: none;
  }

  .categories-list__item {
    margin-bottom: 10.6667rem;
  }

  .vacancies__iitem {
    border: 1px solid #0000001f;
  }

  .vacancies__iitem:last-child {
    border-bottom-color: #c7c7c74d;
  }

  .vacancies__description-wrapper {
    grid-column-gap: 1.5625rem;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    align-items: flex-start;
    padding: 6.4rem 6.4px 6.4rem 6.4rem;
    display: grid;
  }

  .vacancy-description__layout-wrapper {
    flex-direction: column;
    margin-top: 10rem;
  }

  .vacancy-description__wrapper {
    width: auto;
  }

  .vacancies-description__-requirements-layout-wrapper {
    margin-top: 21.3333rem;
  }

  .vacancies-description__-requirements-path {
    margin-bottom: 6.4rem;
  }

  .vacancies-description__-requirements-tags-wrapper {
    margin-top: 3.2rem;
  }

  .vacancies-description__-tag-text {
    border-radius: 2.13333rem;
    padding: 2.13333rem 4.26667rem;
    font-size: 4.26667rem;
  }

  .vacancy__button-wrapper {
    margin-top: 6.4rem;
    margin-bottom: 10.6667rem;
  }

  .vacancy__rich-text {
    margin-top: 3.2rem;
  }

  .vacancy-description__form-block {
    width: auto;
    margin-top: 21.3333rem;
    margin-bottom: 21.3333rem;
  }

  .vacancy-description__inputs-wrapper {
    grid-row-gap: 5.33333rem;
  }

  .vacancy-description__input {
    border-radius: 8px;
    height: 12.8rem;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 4.26667rem;
    font-size: 4.26667rem;
    font-weight: 600;
    line-height: 100%;
    display: block;
  }

  .vacancy-description__input::placeholder {
    font-size: 4.26667rem;
  }

  .vacancy-description__upload-button {
    padding-left: 4.26667rem;
    font-size: 4.26667rem;
    font-weight: 600;
  }

  .vacancy-description__form-checkbox-field {
    align-items: flex-start;
    margin-top: 6.4rem;
  }

  .vacancy-description__form-checkbox {
    width: 4.8rem;
    height: 4.8rem;
    position: relative;
    top: .7rem;
  }

  .vacancy-description__form-checkbox.w--redirected-checked {
    margin-top: 0;
    margin-left: 0;
  }

  .vacancy-description__form-checkbox-label {
    margin-left: 4.26667rem;
    font-size: 4.26667rem;
    font-weight: 600;
  }

  .categories-list__vacancy-layout {
    margin-top: 6.4rem;
  }

  .vacancies-list__dropdown {
    width: 100%;
  }

  .vacancies-list__dropdown-toogle {
    height: 12.8rem;
    padding-left: 4.26667rem;
    padding-right: 4.26667rem;
    font-size: 4.26667rem;
    font-weight: 600;
  }

  .vacancies-list-dropdown-link {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 4.26667rem;
    font-size: 4.26667rem;
  }

  .vacancies-list-dropdown-link.w--current {
    font-size: 4.26667rem;
  }

  .vacancies-list__dropdown-content-wrapper {
    max-height: 80rem;
    margin-top: 2.13333rem;
  }

  .vacancies__collection-list {
    grid-row-gap: 5.33333rem;
    flex-direction: column;
    display: flex;
  }

  .vacancies__description-headings {
    flex-direction: column;
    align-items: flex-start;
    padding: 6.4rem 6.4px 6.4rem 6.4rem;
    display: none;
  }

  .is__text-size-largest {
    font-size: 12.8rem;
  }

  .is__text-massive.is__weight-semibold {
    font-size: 6.4rem;
  }

  .is__text-massive.is__weight-semibold.is__only-mobile {
    display: block;
  }

  .story__avatar-image {
    margin-bottom: 15rem;
  }

  .story__avatar-image.is__only-desktop {
    display: none;
  }

  .story__avatar-image.is__only-mobile {
    width: 100%;
    display: block;
  }

  .text-color-grey {
    letter-spacing: normal;
  }

  .text-color-grey.subheading {
    margin-bottom: 4.07125rem;
    position: static;
  }

  .text-color-grey.no-link-text {
    font-size: 3.05344rem;
  }

  .text-color-grey.section-subtitle-desktop-absolute {
    position: relative;
  }

  .is__text-size-grand, .is__text-size-hefty {
    font-size: 12.8rem;
  }

  .navbar-all__layout {
    padding-top: 4.26667rem;
    padding-bottom: 4.26667rem;
  }

  .navbar-all__logo-icon {
    width: 90px;
    display: inline-block;
  }

  .navbar-all__links-wrapper {
    display: none;
  }

  .navbar-all__menu-button {
    width: 7rem;
    height: 7rem;
  }

  .navbar-all__menu-icon {
    width: 7rem;
  }

  .navbar-all__blind-links {
    grid-column-gap: 5.33333rem;
    grid-row-gap: 7rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 21.3333rem;
  }

  .navbar-all__blind-footer {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
    display: none;
  }

  .services__dropdown {
    background-color: var(--is__light-grey);
    border-radius: 4.53333rem;
    width: 100%;
    padding-bottom: 4.26667rem;
    font-size: 4.26667rem;
    line-height: 140%;
  }

  .navbar__social-links-wrapper {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar__info-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .case-lama-table-mobile {
    background-color: #fff;
    border-radius: 4.26667rem;
    padding-left: 4.26667rem;
    padding-right: 4.26667rem;
    display: block;
    position: relative;
    overflow: visible;
  }

  .div-block-113 {
    z-index: 0;
    border-radius: 4.26667rem;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    inset: 0 auto auto 0%;
    overflow: auto;
  }

  .case__table-heading {
    z-index: 1;
    width: 125.867rem;
    max-width: none;
    position: absolute;
    inset: 0% auto auto 0%;
    overflow: auto;
  }

  .image-120 {
    z-index: 0;
    width: 130.133rem;
    max-width: none;
    display: block;
    position: absolute;
    inset: 0% auto auto 0%;
    overflow: visible;
  }

  .case__table-headings-wrapper {
    height: 189rem;
    display: block;
    position: relative;
    overflow: auto;
  }

  .case__lama-heading {
    margin-top: 5.33333rem;
    margin-bottom: 5.33333rem;
  }

  .services__cover-layout {
    height: auto;
    margin-top: 31.5522rem;
  }

  .services-tasks__layout {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-direction: column;
    margin-top: 30.5344rem;
  }

  .services__section-sticky-heading-wrapper {
    width: auto;
    margin-bottom: 15.2672rem;
    padding-right: 0;
    position: static;
  }

  .services__section-right-side-wrapper {
    width: 100%;
    max-width: none;
  }

  .services__first-screen-layout {
    background-color: #0000;
    height: auto;
  }

  .page-heading {
    letter-spacing: -.442748rem;
    font-size: 14.7583rem;
    line-height: 96%;
  }

  .services__cover-links-wrapper {
    justify-content: center;
    margin-top: 6.10687rem;
    display: none;
  }

  .services__cover-link {
    color: var(--is__dark-blue);
    width: auto;
    height: auto;
    font-size: 4.07125rem;
  }

  .services__cover-link.mobile-hide, .services__cover-link-devider.mobile-hide {
    display: none;
  }

  .section-heading {
    color: var(--text-blsck);
    letter-spacing: -.610687rem;
    font-size: 12.2137rem;
    line-height: 100%;
  }

  .services-task__count-text {
    letter-spacing: 0;
    font-size: 3.05344rem;
  }

  .text-size-16 {
    font-size: 4.07125rem;
  }

  .text-size-16.services__madal-award-name-text {
    line-height: 129%;
  }

  .text-size-16.aligb-right {
    text-align: right;
  }

  .text-size-16.mobile-line-height-140 {
    line-height: 140%;
  }

  .text-size-16.is-list {
    padding-left: 6rem;
  }

  .text-size-24 {
    letter-spacing: -.24px;
    font-size: 6.10687rem;
    line-height: 112%;
  }

  .text-size-24.mobile-line-height-112 {
    letter-spacing: -.0610687rem;
    font-family: Ppneuemontreal, sans-serif;
    line-height: 112%;
  }

  .section-container {
    padding-left: 4.07125rem;
    padding-right: 4.07125rem;
  }

  .section-container.mobile-no-padding {
    padding-left: 0;
    padding-right: 0;
  }

  .text-size-48 {
    letter-spacing: -1.36px;
    font-size: 8.6514rem;
    line-height: 110%;
  }

  .text-size-48.text-weight-semibold.with-indent, .text-size-48.text-weight-semibold.is__text-indent {
    text-indent: 0;
  }

  .text-size-48.text-weight-semibold.review-text {
    letter-spacing: -.48px;
    text-indent: 0;
    font-size: 6.10687rem;
    font-weight: 500;
    line-height: 126%;
  }

  .text-size-48.indent-text.mobile-no-indent {
    letter-spacing: -.24px;
    text-indent: 0;
    font-size: 6.10687rem;
  }

  .text-size-48.indent-text.mobile-no-indent-34 {
    letter-spacing: -.68px;
    text-indent: 0;
    line-height: 100%;
  }

  .services__marquee-layout {
    grid-column-gap: 10rem;
    grid-row-gap: 10rem;
    margin-top: 20.3562rem;
    margin-bottom: 20.3562rem;
  }

  .services__marquee-content.scroll {
    grid-column-gap: 10rem;
    grid-row-gap: 10rem;
  }

  .services__marquee-logo {
    height: 12.7226rem;
  }

  .services__stack-item-wrapper {
    width: 100%;
    padding-top: 4.3257rem;
    padding-bottom: 20.3562rem;
  }

  .services__stack-heading {
    letter-spacing: -1.36px;
    margin-bottom: 10.1781rem;
  }

  .text-size-34 {
    font-size: 8.6514rem;
    line-height: 110%;
  }

  .text-size-34.text-weight-semibold.mobile-size-24 {
    letter-spacing: -.48px;
    font-size: 6.10687rem;
    font-weight: 400;
    line-height: 112%;
  }

  .text-size-34.talant-item-heading {
    margin-top: 2.03562rem;
  }

  .services__page-rich-text {
    margin-top: -6.10687rem;
  }

  .services__page-rich-text p {
    max-width: none;
    font-size: 3.05344rem;
  }

  .services__page-rich-text h3 {
    max-width: 95%;
    margin-bottom: 3.05344rem;
    font-size: 6.10687rem;
    line-height: 120%;
  }

  .services__page-rich-text strong {
    margin-bottom: 12px;
  }

  .services__page-rich-text em {
    border-radius: 1.06667rem;
    margin-bottom: .508906rem;
    margin-right: 0;
    padding: 1.01781rem 3.56234rem;
    font-size: 3.05344rem;
    line-height: 140%;
  }

  .services__page-rich-text h1 {
    color: var(--text-blsck);
    letter-spacing: -1.74px;
    font-family: Ppneuemontreal, sans-serif;
    font-size: 14.2494rem;
    font-weight: 400;
    line-height: 96%;
  }

  .services__page-rich-text ul {
    padding-left: 4rem;
  }

  .services__page-rich-text.home-page-cases-tags, .services__page-rich-text.no-margin {
    margin-top: 0;
  }

  .services__about-layout {
    margin-top: 45.8015rem;
  }

  .services__about-svg {
    flex: none;
    width: 254.453rem;
  }

  .services__about-svg.mobile-svg {
    display: block;
  }

  .services__about-grid {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .services__about-grid-item {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
    border-bottom: 1px solid #000;
    border-left-style: none;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    height: 37.659rem;
    padding-bottom: 4.07125rem;
    padding-left: 0;
  }

  .text-size-92 {
    letter-spacing: -.442748rem;
    font-size: 14.7583rem;
    line-height: 96%;
  }

  .text-size-92.services__tabs-heading {
    margin-top: 10.1781rem;
  }

  .services__about-strength {
    grid-column-gap: .508906rem;
    grid-row-gap: .508906rem;
    width: 50%;
  }

  .text-color-dark-blue {
    font-style: normal;
  }

  .services__about-avatars {
    width: 43.0025rem;
  }

  .stack-subheading {
    margin-bottom: 3.05344rem;
  }

  .text-size-12.text-color-grey.services__award-modal-year-text {
    margin-bottom: 2.03562rem;
    font-size: 3.05344rem;
  }

  .services-why__layout {
    flex-direction: column;
    margin-top: 45.8015rem;
  }

  .services-steps__layout {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-direction: column;
    margin-top: 30.5344rem;
  }

  .services-steps__layout.custome-indent-layout {
    margin-top: 0;
    margin-bottom: 30.5344rem;
  }

  .services_award-item, .services_award-item.w--current {
    grid-template-columns: 73.5rem 1fr;
  }

  .services_award-heading-wrapper {
    grid-column-gap: 2.03562rem;
    grid-row-gap: 2.03562rem;
    letter-spacing: -.68px;
    padding-top: 5.08906rem;
    padding-bottom: 5.08906rem;
    font-size: 8.6514rem;
  }

  .superscript {
    width: 6.10687rem;
    height: 6.10687rem;
    font-size: 3.05344rem;
    top: .3rem;
  }

  .superscript.gold-app-number {
    top: 4.9rem;
    left: -20rem;
  }

  .services__award-count {
    align-items: center;
    display: flex;
  }

  .services__award-arrow {
    opacity: 1;
    width: 8.14249rem;
    height: 8.14249rem;
    margin-top: 4.4rem;
  }

  .services__award-medals {
    display: none;
  }

  .services__award-medal {
    width: 4.07125rem;
    height: 4.07125rem;
  }

  .services__awards-tabs-content {
    align-items: center;
  }

  .services_awards-tabs {
    margin-top: 4.98906rem;
  }

  .services__awards-tab-pane {
    width: 100%;
    padding-top: 0;
  }

  .services__award-modal-heading {
    letter-spacing: 0;
    background-color: #fff;
    border-top-style: none;
    border-bottom: 1px solid #000;
    width: 100%;
    margin-bottom: 15.2672rem;
    padding-top: 12.7226rem;
    padding-bottom: 1.01781rem;
    font-size: 3.05344rem;
    font-weight: 500;
    position: sticky;
    top: 0;
  }

  .services__award-modal-year-layout {
    width: 100%;
    margin-bottom: 10.1781rem;
  }

  .services__award-modal-year-layout.is__last-item {
    margin-bottom: 25rem;
  }

  .services__award-modal-item {
    grid-column-gap: 2.03562rem;
    grid-row-gap: 2.03562rem;
    grid-template-rows: auto auto;
    grid-template-columns: 63.6132rem 1fr;
    grid-auto-flow: column;
    align-content: center;
    justify-items: stretch;
    padding-top: 5.34351rem;
    padding-bottom: 5.34351rem;
  }

  .services__awards-modal-content {
    background-color: #fff;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .services__award-modal-close {
    color: var(--black);
    width: 6.10687rem;
    height: 6.10687rem;
    position: fixed;
    inset: 4.07125rem 4.07125rem auto auto;
  }

  .services__cases-layout {
    border-top-style: none;
    margin-top: 45.8015rem;
    padding-bottom: 15.2672rem;
    position: relative;
  }

  .services__cases-heading-wrapper {
    border-top-style: none;
    padding-top: 0;
  }

  .services__cases-description {
    white-space: normal;
    width: 50%;
    margin-top: -1rem;
  }

  .services__cases-description p {
    letter-spacing: 0;
    white-space: normal;
    max-width: 100%;
    margin-top: 1.01781rem;
    font-size: 3.05344rem;
    line-height: 140%;
  }

  .services__cases-description strong {
    letter-spacing: -3.1px;
    font-size: 14.5rem;
  }

  .services__cases-description em {
    letter-spacing: -.48px;
    font-size: 6.10687rem;
    line-height: 126%;
  }

  .services__cases-description.full-width {
    width: auto;
  }

  .services__cases-description.full-width blockquote {
    max-width: 100%;
    margin-top: 1.01781rem;
    font-size: 3.05344rem;
    line-height: 140%;
  }

  .tabs__layout {
    padding-top: 30.5344rem;
    padding-bottom: 15rem;
  }

  .nap-gif {
    z-index: 2;
    width: 20.3562rem;
    height: 20.3562rem;
    margin-bottom: 4.58015rem;
    position: relative;
  }

  .nap-gif.no-indents {
    width: 25.4453rem;
    height: 25.4453rem;
  }

  .services__tabs-subheading {
    max-width: 82.1883rem;
  }

  .services__tabs {
    display: none;
  }

  .footer__layout {
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-top: 20.3562rem;
    margin-bottom: 20.3562rem;
    display: flex;
  }

  .footer__logo {
    width: 36.6412rem;
    height: auto;
  }

  .footer__links-wrapper {
    grid-column-gap: 5.08906rem;
    grid-row-gap: 5.08906rem;
    margin-top: 11.1959rem;
  }

  .footer__social-links-wrapper {
    grid-column-gap: 10.1781rem;
    grid-row-gap: 10.1781rem;
    align-items: center;
    margin-top: 15.7761rem;
  }

  .footer__social-links {
    grid-column-gap: 2.05497rem;
    grid-row-gap: 2.05497rem;
  }

  .footer__social-link {
    width: 9.16031rem;
    height: 9.16031rem;
  }

  .footer__partner-wrapper {
    width: 29.771rem;
  }

  .services__cases-button {
    position: absolute;
    inset: auto auto 0% 0%;
  }

  .services__cases-button.mobile-hide {
    display: none;
  }

  .text-size-14 {
    font-size: 3.56234rem;
  }

  .footer__year-span {
    display: block;
  }

  .services-stack__layout {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-direction: column;
    margin-top: 30.5344rem;
    margin-bottom: 45.8015rem;
  }

  .services__cover-video-wrapper {
    height: 132.316rem;
    margin-top: 20.3562rem;
    display: block;
    position: relative;
  }

  .services__cover-video-wrapper.services-page-video {
    z-index: -1;
    flex: none;
    width: 100%;
    height: auto;
    margin-top: 0;
    display: block;
    position: absolute;
    inset: 0%;
  }

  .services__swiper-wrapper {
    width: 100%;
    margin-top: 25.4453rem;
    display: block;
    position: relative;
  }

  .services__tabs-swiper-slide {
    height: 100%;
  }

  .services__swiper-slide-content {
    background-color: #111;
    position: relative;
  }

  .services__swiper-tabs-rich-text {
    color: var(--white);
    margin-top: 20.3562rem;
    font-weight: 400;
  }

  .services__swiper-tabs-rich-text p {
    color: var(--white);
    max-width: none;
    margin-bottom: 3.05344rem;
    font-size: 3.05344rem;
  }

  .services__swiper-tabs-rich-text h2 {
    letter-spacing: -.68px;
    line-height: 100%;
  }

  .services__swiper-tabs-rich-text h3 {
    color: var(--white);
    letter-spacing: -.68px;
    max-width: 95%;
    margin-bottom: 8.14249rem;
    font-size: 8.6514rem;
    font-weight: 400;
    line-height: 100%;
  }

  .services__swiper-tabs-rich-text em {
    border-radius: 1.06667rem;
    margin-bottom: .508906rem;
    margin-right: 0;
    padding: 1.01781rem 3.56234rem;
    font-size: 3.05344rem;
  }

  .services__swiper-tabs-rich-text h1 {
    color: var(--text-blsck);
    letter-spacing: -4.06px;
    font-size: 14.7583rem;
    line-height: 96%;
  }

  .services__swiper-tabs-rich-text img {
    margin-top: 14.9rem;
  }

  .services__swiper-tabs-rich-text figure {
    margin-bottom: 0;
    top: -9.16031rem;
  }

  .services__swiper-tabs-rich-text ul {
    margin-bottom: 0;
    padding-left: 0;
  }

  .services__swiper-tabs-rich-text li {
    background-image: url('../images/list-marker.svg');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 3.81679rem;
    margin-bottom: 2.03562rem;
    padding-left: 6.87023rem;
  }

  .services__swiper-tabs-heading-wrapper {
    border-bottom: 1px solid #fff;
    padding-top: 5.08906rem;
    padding-bottom: 5.08906rem;
    font-size: 4.07125rem;
    position: relative;
  }

  .services__swiper-arrows-wrapper {
    z-index: 5;
    background-color: #111;
    align-items: center;
    display: flex;
    position: absolute;
    inset: 2.79898rem 0% auto auto;
  }

  .services__swiper-prev-button, .services__swiper-next-button {
    width: 15.2672rem;
    height: 9.66921rem;
  }

  .services__swiper-heading-devider {
    background-color: #fff;
    width: 1px;
    height: 6.10687rem;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    inset: auto auto 0% 50%;
  }

  .services__marquee {
    grid-column-gap: 10rem;
    grid-row-gap: 10rem;
  }

  .services__about-icon-wrapper {
    align-items: center;
    margin-top: 33.0789rem;
    display: flex;
    overflow: hidden;
  }

  .services__about-marquee {
    grid-column-gap: 6.5rem;
    grid-row-gap: 6.5rem;
    align-items: center;
    display: flex;
  }

  .form-input {
    height: 11.4504rem;
    margin-bottom: 7.12468rem;
    font-size: 4.07125rem;
  }

  .form-input::placeholder {
    font-size: 4.07125rem;
  }

  .form__submit-wrapper {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
    flex-direction: column;
    align-items: stretch;
    margin-top: 7rem;
  }

  .form__submit-wrapper.newsletter-submit-wrapper {
    margin-top: 0;
  }

  .form__submit {
    border-radius: 10.1781rem;
    height: 12.7226rem;
    margin-top: 3.56234rem;
    font-size: 3.56234rem;
    line-height: 100%;
  }

  .form__submit.black-theme {
    height: 13.2316rem;
    font-size: 4.07125rem;
  }

  .swiper__pagination-wrapper {
    color: var(--dark-grey);
    align-items: center;
    font-size: 3.56234rem;
    display: flex;
    position: static;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .services__pagination {
    z-index: 50;
    color: var(--dark-grey);
    justify-content: center;
    align-items: center;
    font-family: Ppneuemontrealmono, sans-serif;
    display: flex;
    position: absolute;
    top: 25.4453rem;
  }

  .services__swiper-pagination {
    width: 50px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .body-new {
    font-size: 3.05344rem;
  }

  .services-page__layout {
    margin-top: 31.5522rem;
    padding-bottom: 5.08906rem;
  }

  .services-page-heading-wrapper {
    grid-column-gap: 10.1781rem;
    grid-row-gap: 10.1781rem;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 3.05344rem;
    padding-left: 4.07125rem;
    padding-right: 4.07125rem;
  }

  .services-page__cover-image {
    align-self: flex-start;
    width: 41.2214rem;
    margin-top: 10.1781rem;
  }

  .services-page__services-layout {
    padding-top: 15.2672rem;
    padding-left: 4.07125rem;
    padding-right: 4.07125rem;
  }

  .services-page__services-list-wrapper {
    margin-top: 3.05344rem;
  }

  .services-page__services-item {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
    grid-template-rows: auto;
    grid-template-columns: 90%;
    padding-top: 5.08906rem;
    padding-bottom: 5.08906rem;
  }

  .services-page__tags {
    width: 90%;
  }

  .services-page__tags p {
    border-radius: 1.01781rem;
    margin-bottom: .508906rem;
    margin-right: .508906rem;
    padding: 1.01781rem 3.56234rem;
    font-size: 3.05344rem;
    line-height: 140%;
  }

  .services-page__services-link {
    justify-content: flex-end;
    align-items: flex-start;
  }

  .sevices-page__services-link-arrow {
    width: 8.14249rem;
    height: 8.14249rem;
    display: flex;
    position: relative;
    top: 5.08906rem;
  }

  .services__award-background {
    display: none;
  }

  .services__awards-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    padding-top: 0;
    display: flex;
    overflow: auto;
  }

  .servoces__whiteout-layout {
    display: none;
  }

  .services__stack-tags {
    grid-column-gap: .508906rem;
    grid-row-gap: .508906rem;
  }

  .services__tag-text {
    border-radius: 4px;
    padding: 1.01781rem 3.56234rem;
    font-size: 3.05344rem;
  }

  .services__stack-manual-grid {
    grid-column-gap: 6.10687rem;
    grid-row-gap: 6.10687rem;
    grid-template-columns: 1fr;
  }

  .inventory-management-stack {
    width: 100%;
  }

  .services__numbers-texts-grid {
    grid-row-gap: 10.1781rem;
  }

  .blog-page__blog-collection-wrapper.mobile-horizontal-scroll {
    width: 100%;
    margin-top: 4.07125rem;
    padding-left: 4.07125rem;
    padding-right: 4.07125rem;
    overflow: auto;
  }

  .blog-page__blog-collection-list {
    grid-row-gap: 15.2672rem;
    grid-template-columns: 1fr;
  }

  .blog-page__blog-collection-list.mobile-horizontal-scroll {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
    grid-template-rows: auto;
    grid-template-columns: 76.3359rem 76.3359rem 76.3359rem 76.3359rem;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .blog-page__blog-item {
    flex: none;
  }

  .blog-page__cover-article-card.is__template {
    padding-top: 30.33rem;
  }

  .blog-page__cover-article-image.is__template-page-preview {
    height: 86.514rem;
    margin-top: 6.10687rem;
  }

  .blog-page__author-avatar {
    flex: none;
    width: 15.2672rem;
    height: 15.2672rem;
  }

  .blog-page__author-wrapper {
    max-width: none;
  }

  .text-tag {
    border-radius: 1.01781rem;
    padding: 1.01781rem 3.56234rem;
    font-size: 3.05344rem;
  }

  .blog-page__image-wrapper {
    margin-bottom: 4.07125rem;
  }

  .blog-page__image-wrapper.recomented-article-image-wrapper {
    height: 57.7608rem;
  }

  .blog-page__cover-data-wrapper {
    margin-bottom: 2.03562rem;
    font-size: 3.05344rem;
    line-height: 140%;
  }

  .blog-page__cover-text-wrapper {
    flex: 0 auto;
    margin-top: 6.10687rem;
  }

  .page-heading-small {
    letter-spacing: -.346056rem;
    font-size: 8.6514rem;
    line-height: 100%;
  }

  .page-heading-small.phone-h2-48 {
    letter-spacing: -2.4px;
    font-size: 12.2137rem;
  }

  .blog-page__cover-info-wrapper {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
    flex-flow: row-reverse wrap-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 5.08906rem;
  }

  .blog-page__cover-tags-collection-list {
    grid-column-gap: .508906rem;
    grid-row-gap: .508906rem;
  }

  .blog-page__avtor-name-wrapper {
    margin-left: 3.05344rem;
  }

  .link-with-mark:hover {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    padding-left: 0;
  }

  .blog-page__article-card-tags-wrapper {
    margin-top: 3.05344rem;
  }

  .text-size-60 {
    letter-spacing: -2.4px;
    font-size: 12.2137rem;
    line-height: 110%;
  }

  .text-size-60.text-weight-semibold {
    letter-spacing: -.68px;
    font-size: 8.6514rem;
    line-height: 100%;
  }

  .text-size-60.text-weight-semibold.modal-form-heading {
    letter-spacing: -.610687rem;
    max-width: 90%;
    font-size: 12.2137rem;
    position: static;
  }

  .text-size-60.text-weight-semibold.mobile-h2 {
    font-size: 12.2137rem;
  }

  .text-size-60.mobile-34 {
    letter-spacing: -.68px;
    font-size: 8.6514rem;
  }

  .text-size-60.mobile-60 {
    letter-spacing: -2.1px;
    font-size: 15.2672rem;
    line-height: 92%;
  }

  .services__expert-layout {
    margin-top: 30.5344rem;
  }

  .services__expert-items-layout {
    margin-top: 3.05344rem;
    margin-bottom: 45.8015rem;
  }

  .services__expert-item {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
    grid-template-rows: auto;
    grid-template-columns: 90%;
    padding-top: 5.08906rem;
    padding-bottom: 5.08906rem;
  }

  .services__expert-item-tags {
    grid-column-gap: .508906rem;
    grid-row-gap: .508906rem;
    opacity: 1;
  }

  .services__swiper-heading {
    text-transform: lowercase;
    max-width: 50%;
  }

  .blog-page__articles-layout {
    padding-left: 4.07125rem;
    padding-right: 4.07125rem;
  }

  .blog-page__articles {
    grid-column-gap: 0px;
    flex-direction: column;
    margin-top: 15.2672rem;
    margin-bottom: 30.5344rem;
    padding-top: 6.10687rem;
  }

  .page__filters-layout {
    z-index: 5;
    width: 100%;
    padding-top: 7.63359rem;
    padding-bottom: 7.63359rem;
    display: block;
    position: sticky;
    top: 0;
    overflow: hidden;
  }

  .blog-page__filters-form {
    z-index: 0;
    grid-column-gap: .508906rem;
    grid-row-gap: .508906rem;
    flex-wrap: nowrap;
    width: 100vw;
    padding-left: 4.07125rem;
    padding-right: 4.07125rem;
    display: flex;
    position: relative;
    overflow: auto;
  }

  .blog-page__filters-form-bloc {
    z-index: 4;
    width: 100%;
    position: relative;
  }

  .blog-page__radio-button-label {
    white-space: nowrap;
    border-radius: 1.01781rem;
    padding: 1.01781rem 3.56234rem;
    font-size: 3.05344rem;
  }

  .blog-pge__next-button {
    margin: -10px;
    padding: 10px;
    font-size: 4.07125rem;
  }

  .blog-page__pagination {
    justify-content: flex-start;
    margin-top: 15.2672rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .blog-page__newslatter-layout {
    grid-column-gap: 10.687rem;
    grid-row-gap: 10.687rem;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    padding: 15.2672rem 4.07125rem 15.4123rem;
  }

  .blog-page__newletter-form-block {
    width: 100%;
  }

  .article-template__content-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: 15.2672rem;
    padding-bottom: 20.3562rem;
    display: flex;
  }

  .article-template__toc-wrapper {
    width: 100%;
    position: static;
  }

  .article-template__anchors-wrapper {
    letter-spacing: -.16px;
    margin-bottom: 15.2672rem;
    font-size: 4.07125rem;
    line-height: 130%;
  }

  .article-template__anchor {
    font-size: 4.07125rem;
  }

  .article-template__toc-link:hover {
    color: var(--dark-grey);
    text-decoration: none;
  }

  .article-template__rich-text {
    letter-spacing: -.0407125rem;
    width: auto;
    margin-top: 12.2137rem;
    padding-left: 0;
    font-size: 4.07125rem;
    line-height: 130%;
  }

  .article-template__rich-text p {
    width: auto;
    margin-bottom: 5.08906rem;
    font-size: 4.07125rem;
    line-height: 150%;
  }

  .article-template__rich-text h2 {
    max-width: none;
    margin-bottom: 8.14249rem;
    font-size: 8.6514rem;
  }

  .article-template__rich-text h3 {
    letter-spacing: -.122137rem;
    max-width: none;
    margin-bottom: 3.05344rem;
    font-size: 6.10687rem;
    line-height: 126%;
  }

  .article-template__rich-text figure {
    min-width: auto;
    margin-top: 9.16031rem;
    margin-bottom: 9.16031rem;
    left: 0;
  }

  .article-template__rich-text ul {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
    max-width: none;
    margin-bottom: 5.08906rem;
    padding-left: 4.8rem;
    display: flex;
  }

  .article-template__rich-text blockquote {
    width: 100%;
    margin-top: 5.08906rem;
    margin-bottom: 12.2137rem;
    padding-top: 8.14249rem;
    padding-bottom: 8.14249rem;
    font-size: 6.10687rem;
  }

  .article-template__rich-text sub {
    margin-top: 5.08906rem;
    font-size: 3.05344rem;
  }

  .article-template__rich-text sup {
    margin-top: 9.16031rem;
    margin-bottom: 9.16031rem;
    padding-left: 3.05344rem;
    font-size: 6.10687rem;
    line-height: 126%;
  }

  .article-template__rich-text figcaption {
    margin-top: 3.05344rem;
  }

  .article-template__rich-text ol {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
    max-width: none;
    margin-bottom: 5.08906rem;
    padding-left: 4.8rem;
    display: flex;
  }

  .form__checkbox-field {
    max-width: none;
  }

  .form__checkboxes-wrapper {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
    margin-top: 6.10687rem;
  }

  .form__checkbox {
    width: 4.07125rem;
    height: 4.07125rem;
    margin-right: 2.03562rem;
  }

  .article-template__article-text-wrapper {
    width: auto;
    position: static;
  }

  .article-template__description-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .article-template__links-wrapper {
    grid-column-gap: 1.01781rem;
    grid-row-gap: 1.01781rem;
    border-top-style: none;
    margin-top: 0;
  }

  .article-template__service-layout {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    margin-top: 9.16031rem;
    margin-bottom: 9.16031rem;
    padding-top: 6.10687rem;
    padding-bottom: 6.10687rem;
  }

  .article-template__service-icon {
    width: 10.1781rem;
    height: auto;
    display: flex;
    top: auto;
    bottom: 6.10687rem;
  }

  .article-template__service-name {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .article-template__recomented-layout {
    grid-column-gap: 12.2137rem;
    grid-row-gap: 12.2137rem;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 30.5344rem;
  }

  .article-template__recomented-collection-list-wrapper {
    width: auto;
  }

  .fs-cc-banner2_component {
    padding: 4.07125rem 4.07125rem 12rem;
    bottom: 4.26667rem;
    right: auto;
  }

  .fs-cc-banner2_container {
    flex-direction: column;
    justify-content: flex-start;
  }

  .fs-cc__heading {
    margin-bottom: 4.07125rem;
    font-size: 3.05344rem;
    line-height: 140%;
  }

  .fs-cc-banner2_button {
    width: 100%;
    height: 8.90585rem;
    font-size: 2.79898rem;
  }

  .cookies-wrapper {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .header {
    z-index: 9899;
    background-color: var(--white);
    position: fixed;
    inset: 0% 0% auto;
  }

  .header:where(.w-variant-07924d3f-5eee-0528-a12f-05fb975ded88), .navbar-layout:where(.w-variant-07924d3f-5eee-0528-a12f-05fb975ded88) {
    background-color: #0000;
  }

  .navbar-wrapper {
    padding-top: 5.08906rem;
    padding-bottom: 5.08906rem;
  }

  .navbar-wrapper:where(.w-variant-07924d3f-5eee-0528-a12f-05fb975ded88) {
    color: var(--white);
  }

  .navbar-brand {
    width: 36.8957rem;
  }

  .navbar-links-wrapper {
    display: none;
  }

  .navbar-menu-button {
    width: 9.16031rem;
    height: 9.16031rem;
  }

  .navbar-menu-button-line-up:where(.w-variant-07924d3f-5eee-0528-a12f-05fb975ded88) {
    background-color: var(--white);
  }

  .navbar-menu-icon-wrapper {
    grid-column-gap: 1.52672rem;
    grid-row-gap: 1.52672rem;
  }

  .navbar-menu-button-line-down:where(.w-variant-07924d3f-5eee-0528-a12f-05fb975ded88) {
    background-color: var(--white);
  }

  .navbar-nav-menu-background-video-wrapper {
    height: 100%;
  }

  .navbar-nav-menu-background-video {
    height: 120vh;
  }

  .navbar-open-modal {
    flex-flow: column;
    display: flex;
    overflow: visible;
  }

  .navbar-nav-link {
    letter-spacing: -3px;
    font-size: 15.2672rem;
  }

  .navbar-nav-link:hover {
    color: var(--is__light-grey);
  }

  .navbar-modal-main-links-layout {
    grid-column-gap: 1.01781rem;
    grid-row-gap: 1.01781rem;
  }

  .navbar-open-modal-grid {
    grid-column-gap: 0rem;
    grid-row-gap: 9.16031rem;
    grid-template-rows: max-content min-content min-content max-content max-content;
    grid-template-columns: 1fr 1fr;
    place-items: start center;
    width: 100%;
    padding: 20rem 4.07125rem 0;
  }

  .navbar-secondary-links-wrapper {
    grid-column-gap: 2.03562rem;
    grid-row-gap: 2.03562rem;
  }

  .navbar-secondary-links-layout {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
  }

  .navbar-secondary-links-layout.mobile-hide {
    display: none;
  }

  .navbar-social-links-wrapper {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
    margin-bottom: 7.12468rem;
  }

  .navbar-social-links-wrapper.no-indent {
    margin-top: 0;
  }

  .navbar-social-links-wrapper.menu-links {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
    margin-top: 0;
  }

  .navbar-social-link {
    flex: 0 auto;
    width: 6.15385rem;
    height: 6.15385rem;
  }

  .navbar-open-modal-copywriting {
    justify-content: flex-start;
    align-items: flex-end;
    padding-left: 0;
    padding-right: 4.07125rem;
    position: relative;
    bottom: 14rem;
  }

  .square-button {
    z-index: 9890;
    letter-spacing: 0;
    justify-content: center;
    align-items: center;
    height: 12.2137rem;
    padding: 0 6.743rem;
    font-size: 4.07125rem;
    line-height: 150%;
    display: flex;
    bottom: 5.08906rem;
    left: auto;
    right: 4.07125rem;
  }

  .square-button:hover {
    background-color: var(--is__dark-blue);
    color: var(--is__light-grey);
  }

  .square-button.menu-button {
    position: relative;
    bottom: 0;
    right: 0;
  }

  .navbar-link {
    letter-spacing: -.0407125rem;
    font-size: 4.07125rem;
    line-height: 130%;
  }

  .modal-form-header {
    padding-top: 5.08906rem;
    padding-bottom: 5.08906rem;
    position: static;
  }

  .modal-form-header.position-absilote {
    position: absolute;
  }

  .modal-form-close-button {
    width: 8.14249rem;
    height: 8.14249rem;
  }

  .modal-form-box {
    flex-flow: column;
    grid-template-columns: 1fr;
    padding-top: 5.08906rem;
  }

  .modal-form-block-layout {
    width: 100%;
    margin-top: 8.14249rem;
  }

  .modal-form {
    grid-column-gap: 4.58015rem;
    grid-row-gap: 4.58015rem;
  }

  .modal-form-input {
    height: 13.2316rem;
    font-size: 4.07125rem;
  }

  .modal-form-input::placeholder {
    font-size: 4.07125rem;
  }

  .modal-form-input.text-area {
    height: 22.9008rem;
    min-height: 22.9008rem;
    max-height: 22.9008rem;
  }

  .modal-form-input-wrapper {
    justify-content: center;
    align-items: flex-start;
  }

  .modal-form-label {
    font-size: 4.07125rem;
  }

  .modal-form-inputs-wrapper {
    flex-flow: column;
  }

  .modal-form-text-area-description {
    margin-top: 1.01781rem;
    font-size: 3.05344rem;
    line-height: 140%;
  }

  .modal-form-checkbox-text {
    font-size: 3.05344rem;
  }

  .modal-form-checkbox-field {
    max-width: 77rem;
  }

  .modal-form__checkbox {
    width: 4.07125rem;
    height: 4.07125rem;
    margin-right: 2.03562rem;
  }

  .modal-form__checkboxes-wrapper {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
  }

  .modal-form__submit {
    letter-spacing: 0;
    width: 44.0204rem;
    height: 13.2316rem;
    padding-left: 6.87023rem;
    padding-right: 6.87023rem;
    font-size: 4.07125rem;
    line-height: 150%;
  }

  .modal-container {
    padding-left: 0;
    padding-right: 0;
  }

  .modal-form__submit-wrapper {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 2.54453rem;
  }

  .new-case-cover-layout {
    padding-top: 15.2672rem;
    padding-bottom: 6.10687rem;
  }

  .new-case-cover-tags-layout {
    grid-column-gap: .508906rem;
    grid-row-gap: .508906rem;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 5.08906rem;
  }

  .new-case-image-layout {
    height: 66.1578rem;
  }

  .new-case-image-layout.two-image-grid {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
    grid-template-rows: 66.1578rem 94.1476rem;
    grid-template-columns: 1fr;
    grid-auto-rows: 94.1476rem;
    grid-auto-flow: row;
    height: auto;
  }

  .new-case-image-layout.two-image-grid.margin-top-180-180 {
    margin-top: 45.8015rem;
  }

  .new-case-image-layout.two-image-grid.margin-top-180-180.custome-height-grid {
    grid-template-rows: 66.1578rem 94.1476rem 94.1476rem 66.1578rem;
  }

  .new-case-image-layout.two-image-grid.margin-top-180-180.mobile-sqare-images {
    grid-template-rows: 94.1476rem 94.1476rem;
  }

  .new-case-image-layout.two-image-grid.margin-top-180-180.reverse-grid {
    grid-template-columns: 1fr;
  }

  .new-case-image-layout.two-image-grid.only-two-image {
    grid-template-rows: 94.1476rem 94.1476rem;
  }

  .new-case-image-layout.two-image-grid.horizontal-images {
    grid-template-rows: 66.1578rem 66.1578rem;
  }

  .new-case-image-layout.two-image-grid.square-images {
    grid-template-rows: 94.1476rem 94.1476rem;
  }

  .new-case-image-layout.two-row-grid {
    grid-column-gap: 6.10687rem;
    grid-row-gap: 6.10687rem;
    grid-template-rows: 94.1476rem 94.1476rem;
  }

  .new-case-image-layout.two-row-grid.horizontal-images {
    grid-template-rows: 66.1578rem 66.1578rem;
  }

  .new-case-image-layout.margin-top-180180 {
    margin-top: 45.8015rem;
  }

  .new-case-image-layout.margin-top-180180.lama-table {
    height: 399rem;
  }

  .new-case-default-box {
    grid-column-gap: 15.2672rem;
    grid-row-gap: 15.2672rem;
  }

  .new-case-default-box.margin-top-120-180, .new-case-default-box.margin-top-180-180 {
    margin-top: 45.8015rem;
    margin-bottom: 0;
  }

  .new-case-default-box.row-gap-80 {
    grid-column-gap: 15.2672rem;
    grid-row-gap: 15.2672rem;
  }

  .new-case-default-box.row-gap-80.margin-top-120-120 {
    margin-top: 30.5344rem;
  }

  .new-case-indent-heading-layout {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .new-case-default-grid {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .new-case-default-grid.row-gap-80 {
    grid-row-gap: 15.2672rem;
  }

  .new-case-default-grid.row-gap-80.margin-top-120-120 {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 15.2672rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-top: 30.5344rem;
    display: flex;
  }

  .new-case-default-grid.row-gap-80.margin-top-180-180 {
    margin-top: 45.8015rem;
  }

  .new-case-default-grid.margin-top-120-120 {
    margin-top: 30.5344rem;
  }

  .new-case-default-grid.margin-top-180-180 {
    margin-top: 45.8015rem;
  }

  .new-case-default-grid.review-name-grid {
    margin-top: 5.08906rem;
  }

  .new-case-numbers-grid {
    grid-row-gap: 10.1781rem;
  }

  .new-case-numbers-card {
    grid-column-gap: 1.01781rem;
    grid-row-gap: 1.01781rem;
    padding-top: 5.08906rem;
  }

  .new-case-review-layout {
    grid-column-gap: 4.06545rem;
    grid-row-gap: 4.06545rem;
    margin-top: 45.8015rem;
  }

  .new-case-review-layout.margin-top-180-180 {
    margin-top: 45.8015rem;
  }

  .new-case-review-layout.margin-top-120-180 {
    margin-top: 30.5344rem;
  }

  .new-case-review-avatar {
    flex: none;
    width: 15.2672rem;
    height: 15.2672rem;
  }

  .review-name-layout {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
    flex: 0 auto;
  }

  .review-name-wrapper {
    max-width: none;
  }

  .new-cases-grid-item {
    width: 100%;
    margin-top: 5.08906rem;
    padding-top: 4.3257rem;
    padding-bottom: 0;
  }

  .new-cases-grid-item-heading {
    letter-spacing: -1.36px;
    margin-bottom: 10.1781rem;
  }

  .new-cases-grid-item-heading.reverse-flex {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
    flex-flow: column-reverse wrap-reverse;
    margin-bottom: 6.10687rem;
  }

  .new-cases-grid-item-heading.reverse-flex.mobile-half-width {
    width: 50%;
  }

  .new-cases-grid-tems-tags {
    grid-column-gap: 6.10687rem;
    grid-row-gap: 6.10687rem;
    grid-template-columns: 1fr;
  }

  .new-case-timeline-layout {
    width: 100%;
    margin-top: 12.2137rem;
  }

  .new-case-timeline-layout-item {
    width: 100%;
    padding-top: 4.3257rem;
    padding-bottom: 0;
  }

  .new-case-timeline-description {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
    grid-template-columns: 1fr;
  }

  .new-case-timeline-description.custom-flex {
    grid-column-gap: 8.14249rem;
    grid-row-gap: 8.14249rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    display: grid;
  }

  .new-case-footer-layout {
    grid-row-gap: 4.07125rem;
    flex-flow: column;
    padding-top: 5.08906rem;
    padding-bottom: 0;
    display: flex;
  }

  .new-case-footer-arrow {
    width: 8.6514rem;
    height: 9rem;
  }

  .new-case-award-layout {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
  }

  .new-case-award-layout.margin-top-120-120 {
    margin-top: 30.5344rem;
  }

  .new-case-items-layout {
    grid-column-gap: 6.10687rem;
    grid-row-gap: 6.10687rem;
    margin-top: 15.2672rem;
  }

  .new-case-item-wrapper {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
    padding-top: 6.10687rem;
  }

  .new-case-footer-image-wrapper {
    height: 86.514rem;
    margin-top: 8.6514rem;
  }

  .new-case-award-item, .new-case-award-item.w--current {
    grid-template-columns: 73.5rem 1fr;
  }

  .new-case-full-width-video {
    height: 100%;
  }

  .new-cases-metric-icon {
    width: 10.1781rem;
    height: 10.1781rem;
  }

  .contacts-layout {
    padding-top: 34.2672rem;
    padding-bottom: 30.5344rem;
  }

  .subheading-image {
    width: 25.4453rem;
    height: 25.4453rem;
  }

  .contacts-subheading-wrapper {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
    margin-bottom: 10.1781rem;
  }

  .text-color-light-grey.footer-copywriting-text {
    position: relative;
    top: -6px;
  }

  .text-color-light-grey.footer-licenze-text {
    position: relative;
  }

  .contacts-grid {
    margin-top: 20.3562rem;
    padding-left: 4.07125rem;
    padding-right: 4.07125rem;
    display: flex;
  }

  .contacts-contacts-items-layout {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 10.4326rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .contacts-contact-item {
    width: 100%;
  }

  .contacts-emails-wrapper {
    grid-column-gap: 1.01781rem;
    grid-row-gap: 1.01781rem;
  }

  .contacts-addresses-layout {
    margin-top: 30.5344rem;
    padding-left: 4.07125rem;
    padding-right: 4.07125rem;
  }

  .contacts-address-item {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 5.08906rem;
    padding-bottom: 5.08906rem;
    display: grid;
  }

  .contscts-address-item-arrow-wrapper {
    opacity: 1;
    justify-content: flex-start;
    align-items: flex-start;
    top: 6.743rem;
  }

  .contacts-address-arrow {
    display: none;
  }

  .contacts-page-heading {
    width: 100%;
  }

  .contacts-page-heading-wrapper {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-layout {
    grid-row-gap: 12px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    padding-top: 4.07125rem;
    padding-bottom: 12px;
  }

  .footer-logos-layout {
    grid-column-gap: 1.7rem;
    grid-row-gap: 1.7rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .footer-logo-1 {
    width: 19.3384rem;
  }

  .footer-logo-2 {
    order: -1;
    width: 26.2087rem;
  }

  .footer-contacts-links-layout {
    grid-column-gap: 2.03562rem;
    grid-row-gap: 2.03562rem;
  }

  .footer-small-link-wrapper {
    grid-column-gap: 1.01781rem;
    grid-row-gap: 1.01781rem;
  }

  .footer-links-layout {
    grid-column-gap: 10.1781rem;
    grid-row-gap: 10.1781rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-social-linx-box {
    width: 6.10687rem;
    height: 6.10687rem;
  }

  .blog-cover-layout {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
    margin-top: 0;
    padding-top: 34.2672rem;
    padding-left: 4.07125rem;
    padding-right: 4.07125rem;
  }

  .cases-cover-layout {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15.2672rem;
    padding-top: 34.2672rem;
    padding-left: 4.07125rem;
  }

  .cases-collection-list-wrapper {
    margin-top: 0;
    margin-bottom: 30.5344rem;
  }

  .cases-collection-list-wrapper.home-cases {
    margin-top: 15.2672rem;
  }

  .case-card-layout {
    grid-column-gap: 5.08906rem;
    grid-row-gap: 5.08906rem;
  }

  .case-card-cube {
    width: 100%;
    height: 86.514rem;
  }

  .cube-wrapper {
    width: 100%;
    height: 100%;
  }

  .cube-face-1 {
    transform: none;
  }

  .cube-face-2 {
    display: none;
    transform: translate3d(0, 0, -30vw)rotateX(-90deg)rotateY(0)rotateZ(0);
  }

  .new-cases-lama-table {
    border-radius: 20px;
    width: 100%;
    height: 100rem;
    padding: 20px;
    display: none;
  }

  .new-cases-lam-table-layout {
    flex-direction: column;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .new-case__lama-table-image {
    border-radius: 20px;
    width: 100%;
  }

  .new-case__lama-table-wrapper {
    height: 78rem;
    margin-top: 5px;
  }

  .radios-animation {
    grid-column-gap: .508906rem;
    grid-row-gap: .508906rem;
    flex-flow: wrap-reverse;
    flex: none;
  }

  .footer-layout-wrapper {
    margin-top: 45.8015rem;
  }

  .new-cases-grid-item-heading-grid {
    letter-spacing: -1.36px;
    margin-bottom: 10.1781rem;
  }

  .new-cases-grid-item-heading-grid.custom-flex {
    grid-column-gap: 8.14249rem;
    grid-row-gap: 8.14249rem;
  }

  .cases-dashboard-image {
    height: 47rem;
  }

  .cases-dashboard-image.small-image {
    height: 55rem;
  }

  ._404-cover-layout {
    height: 100svh;
    padding-top: 47.8372rem;
  }

  ._404-video-wrapper {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  ._404-button-layout {
    margin-top: 5.08906rem;
    margin-bottom: 10.1781rem;
  }

  .braskets-button {
    font-size: 4.07125rem;
    line-height: 140%;
  }

  ._404-heading-wrapper {
    text-align: center;
    width: 80%;
  }

  .reviews-layout {
    flex-flow: column;
    padding-top: 34.2672rem;
    padding-bottom: 30.5344rem;
    display: flex;
  }

  .reviews__page-heading-layout {
    grid-column-gap: 5.08906rem;
    grid-row-gap: 5.08906rem;
    width: 100%;
    position: static;
  }

  .reviews-reviews-layout {
    grid-column-gap: 20.3562rem;
    grid-row-gap: 20.3562rem;
    max-width: none;
    padding-top: 20.3562rem;
    padding-left: 0;
  }

  .svg {
    width: 5.08906rem;
    height: 5.08906rem;
  }

  .reviews-review-card-devider {
    grid-column-gap: 5.08906rem;
    grid-row-gap: 5.08906rem;
  }

  .reviews-review-card-text-wrapper {
    padding-top: 4.07125rem;
    padding-bottom: 6.10687rem;
    line-height: 140%;
  }

  .reviews-review-card-person-layout {
    width: 100%;
    padding-top: 5.08906rem;
  }

  .reviews-review-card-person-layout.home-page-review {
    padding-top: 0;
  }

  .reviews-review-logo {
    flex: none;
  }

  .reviews-review-logo.review-1-logo {
    width: 22.9008rem;
  }

  .reviews-review-logo.review-2-logo {
    width: 25.4453rem;
  }

  .reviews-review-logo.review-3-logo {
    width: 13.9949rem;
  }

  .reviews-review-logo.review-4-logo {
    width: 21.6285rem;
  }

  .reviews-review-logo.review-5-logo {
    width: 16.5394rem;
  }

  .reviews-review-logo.review-6-logo {
    width: 22.9008rem;
  }

  .reviews-review-logo.hoff-logo {
    flex: none;
    width: 11.7048rem;
    margin-left: 23rem;
  }

  .reviews-review-logo.magnit-logo {
    flex: none;
    width: 25.4453rem;
    margin-left: 1rem;
  }

  .reviews-review-logo.rolf-logo {
    flex: none;
    width: 22.3919rem;
    margin-left: 10rem;
  }

  .reviews-review-logo.uvelka-logo {
    width: 16.5394rem;
    margin-left: 15rem;
  }

  .reviews-review-logo.kari-logo {
    width: 13.9949rem;
    margin-left: 15rem;
  }

  .reviews-review-logo.lama-logo {
    width: 19.3384rem;
    margin-left: 5rem;
  }

  .reviews-review-logo.akbars-logo, .reviews-review-logo.lizing-logo {
    width: 25.4453rem;
  }

  .reviews-review-logo.cotton-logo {
    width: 28.2443rem;
    margin-left: 5rem;
  }

  .reviews-review-logo.lapochka-logo {
    width: 25.4453rem;
  }

  .mobile-flex-span {
    display: inline-flex;
  }

  .footer-indent-wrapper {
    padding-top: 20.3562rem;
  }

  .home-cover-layout {
    padding-top: 34.2672rem;
  }

  .home-cover-tags-layout {
    margin-top: 10.1781rem;
  }

  .home-cover-tags-wrapper {
    grid-column-gap: .508906rem;
    grid-row-gap: .508906rem;
  }

  .after-cover-video-layout {
    height: 86.514rem;
    margin-top: 5.08906rem;
  }

  .home-about-layout {
    padding-top: 30.5344rem;
    padding-bottom: 55.9796rem;
  }

  .section-description-layout {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .section-description-layout.clients-layout {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
    flex-flow: column;
    padding-left: 4.07125rem;
    padding-right: 4.07125rem;
    display: flex;
  }

  .default-grid {
    grid-column-gap: 6.10687rem;
    grid-row-gap: 6.10687rem;
    flex-flow: column;
    display: flex;
  }

  .default-grid.home-about-grid {
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 20.3562rem;
    display: block;
  }

  .default-grid.mobile-one-column {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .default-grid.two-rows-gap-40 {
    grid-row-gap: 10.1781rem;
  }

  .default-grid.mobile-gap-80 {
    grid-column-gap: 20.3562rem;
    grid-row-gap: 20.3562rem;
  }

  .brackets-text {
    font-size: 3.05344rem;
  }

  .brackets-text.position-absolute.mobile-static {
    position: static;
  }

  .brackets-text.mobile-hide {
    display: none;
  }

  .home-about-point-box {
    padding-top: 6.10687rem;
  }

  .home-about-point-header-wrapper {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
  }

  .home-about-points-wrapper {
    grid-column-gap: 6.10687rem;
    grid-row-gap: 6.10687rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .home-about-button-wrapper {
    grid-column-gap: 6.10687rem;
    grid-row-gap: 6.10687rem;
    margin-top: 6.10687rem;
  }

  .home-about-tags-wrapper {
    grid-column-gap: .508906rem;
    grid-row-gap: .508906rem;
  }

  .home-blog-layout {
    padding-top: 45.8015rem;
    overflow: clip;
  }

  .home-clients-layout {
    padding-top: 45.8015rem;
  }

  .tabs__layout-2 {
    padding-top: 30.5344rem;
    padding-bottom: 15rem;
  }

  .services__pagination-2 {
    z-index: 50;
    color: #9f9f9f;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 25.4453rem;
  }

  .swiper__pagination-wrapper-2 {
    color: #9f9f9f;
    align-items: center;
    font-size: 3.56234rem;
    display: flex;
    position: static;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .solutions-page-heading {
    color: var(--black);
    width: auto;
  }

  .home-review-layout {
    margin-top: 45.8015rem;
  }

  .home-reviews-list-wrapper {
    margin-top: 4.07125rem;
  }

  .home-reviews-list-wrapper.swiper {
    width: 100%;
    margin-top: 4.07125rem;
  }

  .home-reviews-collection-list.swiper-wrapper {
    flex-flow: row;
    display: flex;
  }

  .home-reviews-card-contant {
    grid-column-gap: 7.12468rem;
    grid-row-gap: 7.12468rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .reviews-navigation-box {
    grid-template-columns: max-content max-content max-content;
    height: auto;
    margin-top: 10.1781rem;
    position: relative;
  }

  .reviews-navigation-box.position-relative {
    margin-top: 0;
  }

  .reviews-navigation-box.position-relative.only-pagination {
    display: block;
  }

  .home-reviews-fraction {
    width: 9.16031rem;
    font-size: 3.05344rem;
  }

  .home-review-button-next {
    width: 10.1781rem;
    display: none;
  }

  .home-review-button-next.mobile-show {
    display: block;
  }

  .home-review-button-prev {
    width: 10.1781rem;
    display: none;
  }

  .home-review-button-prev.mobile-show {
    display: block;
  }

  .home-cases-layout {
    margin-top: 25.4453rem;
  }

  .monospace-text {
    font-size: 3.05344rem;
  }

  .monospace-text.test-color-light-grey {
    color: var(--text--secondary-upd);
    line-height: 140%;
  }

  .monospace-text.test-color-light-grey.layout-heading-mobule-indent {
    margin-left: 4.07125rem;
  }

  .monospace-text.text-color-grey-secondary {
    color: var(--text--secondary-upd);
  }

  .solutions-layout {
    border-bottom: 1px solid #111;
    margin-top: 4.07125rem;
  }

  .solution-item-layout {
    height: 100svh;
  }

  .solution-item-layout.first-solution, .solution-item-layout.second-solution, .solution-item-layout.third-solution, .solution-item-layout.fourth-solution, .solution-item-layout.fifth-solution {
    height: auto;
  }

  .solution-item-heading {
    justify-content: space-between;
    align-items: center;
    padding: 5.08906rem 4.07125rem;
    display: flex;
    position: relative;
  }

  .solution-item-content.solution-page {
    position: absolute;
  }

  .solution-item-tags {
    grid-column-gap: .508906rem;
    grid-row-gap: .508906rem;
    flex-flow: wrap;
    width: 100%;
    padding-left: 4.07125rem;
    left: 0;
  }

  .solution-item-links-wrapper {
    grid-column-gap: 10.1781rem;
    grid-row-gap: 10.1781rem;
    align-self: flex-end;
    width: 100%;
    height: auto;
    padding: 10.1781rem 4.07125rem 20.3562rem;
    display: flex;
    top: auto;
    bottom: 0%;
  }

  .solution-item-links-wrapper.solution-page {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    min-height: auto;
    padding-top: 8.90585rem;
    padding-bottom: 30.5344rem;
    padding-left: 4.07125rem;
    position: static;
  }

  .solution-item-links-wrapper.solution-page.two-solution-item {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .solution-item-links-wrapper.main-page-solution {
    grid-column-gap: 5.08906rem;
    grid-row-gap: 5.08906rem;
    margin-top: 101.781rem;
    padding-top: 10.1781rem;
    padding-bottom: 20.3562rem;
    position: static;
  }

  .solution-item-links-wrapper.main-page-solution.two-solution-item {
    grid-column-gap: 10.1781rem;
    grid-row-gap: 10.1781rem;
  }

  .solution-item-link-box {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .solution-item-solution-links-box, .solution-heading-background {
    display: none;
  }

  .about-cover-layout {
    padding-top: 34.2672rem;
  }

  .nap-video {
    width: 25.4453rem;
    height: 25.4453rem;
  }

  .nap-video.about-us-cover-gif {
    display: block;
    position: absolute;
  }

  .about-cover-numbers-layout {
    grid-template-rows: auto auto;
    margin-top: 15.2672rem;
    display: block;
  }

  .about-cover-number-boxes {
    grid-row-gap: 15.2672rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .about-cover-number-box {
    grid-column-gap: 7.37913rem;
    grid-row-gap: 7.37913rem;
    padding-left: 3.05344rem;
  }

  .about-cover-number-box.borders-white {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
    border-bottom: 1px solid #fff;
    border-left-style: none;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-end;
    padding-top: 3.05344rem;
    padding-bottom: 3.05344rem;
    padding-left: 0;
    display: grid;
  }

  .specials-layout {
    grid-column-gap: 15.2672rem;
    grid-row-gap: 15.2672rem;
    padding-top: 30.5344rem;
    padding-bottom: 30.5344rem;
  }

  .leaders-layout {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 4.07125rem;
    border-top-style: none;
    margin-bottom: 45.8015rem;
    padding-top: 0;
    padding-left: 4.07125rem;
    padding-right: 4.07125rem;
  }

  .leaders-card-photo {
    height: 81.4249rem;
  }

  .leaders-card {
    flex-flow: column;
    flex: none;
    width: 59.7964rem;
    display: flex;
    position: relative;
  }

  .leaders-card.swiper-slide {
    width: auto;
  }

  .leaders-photo-name-box {
    grid-column-gap: 1.01781rem;
    grid-row-gap: 1.01781rem;
    max-width: 90%;
    margin-top: 3.05344rem;
  }

  .talants-layout {
    padding-top: 30.5344rem;
  }

  .talants-preview-box {
    grid-column-gap: 5.08906rem;
    grid-row-gap: 5.08906rem;
    margin-bottom: 10.1781rem;
  }

  .talants-item {
    padding-top: 5.08906rem;
    padding-bottom: 30.5344rem;
  }

  .talants-item.second-item {
    padding-bottom: 30.5344rem;
  }

  .talants-item-svg {
    width: 43.257rem;
  }

  .talants-item-content-box {
    margin-top: 15.2672rem;
  }

  .talants-item-text-box {
    padding-left: 0;
  }

  .talants-item-numbers {
    flex-flow: column;
    margin-top: 10.1781rem;
    margin-bottom: 10.1781rem;
    display: flex;
  }

  .talants-items {
    padding-top: 30.5344rem;
  }

  .talants-item-second-svg {
    width: 32.57rem;
  }

  .awards-component-layout {
    padding-top: 30.5344rem;
  }

  .talants-image-box {
    order: -1;
    width: 100%;
    height: 137.405rem;
  }

  .about-offices-layout {
    margin-top: 45.8015rem;
  }

  .about-ofice-info-grid {
    grid-column-gap: 4.07125rem;
    grid-row-gap: 10.1781rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 10.1781rem;
  }

  .about-oficelinks-box {
    grid-column-gap: 1.01781rem;
    grid-row-gap: 1.01781rem;
    margin-top: 3.05344rem;
  }

  .about-oficelinks-box.about-page {
    margin-top: 0;
  }

  .modal-form-heading-box {
    grid-column-gap: 5.08906rem;
    grid-row-gap: 5.08906rem;
  }

  .home-cover-marque {
    grid-column-gap: .508906rem;
    grid-row-gap: .508906rem;
    margin-left: -347.8%;
  }

  .modal-success {
    opacity: 1;
  }

  .modal-success-heading-box {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
    margin-top: 5.08906rem;
    margin-bottom: 6.10687rem;
  }

  .home-page-heading {
    font-size: 12.2137rem;
  }

  .after-cover-video {
    height: 100%;
  }

  .leaders-mobile-heading-wrapper {
    grid-column-gap: 5.08906rem;
    grid-row-gap: 5.08906rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5.08906rem;
    padding-left: 4.07125rem;
    padding-right: 4.07125rem;
    display: flex;
  }

  .heading-devider {
    background-color: #111;
    width: 100%;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .solutions-cover-layout {
    margin-bottom: 5rem;
    padding-top: 19rem;
  }

  .solutions-cover-tags-layout {
    grid-column-gap: 11.1959rem;
    grid-row-gap: 11.1959rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 11.1959rem;
  }

  .solutions-cover-tags {
    grid-column-gap: .508906rem;
    grid-row-gap: .508906rem;
    flex-flow: wrap;
  }

  .solutions-cover-logos {
    width: 21.883rem;
  }

  .solutions-blog-layout {
    grid-column-gap: 5.08906rem;
    grid-row-gap: 5.08906rem;
    padding-top: 30.5344rem;
    overflow: clip;
  }

  .solutions-animation-layout {
    flex-flow: column;
    display: none;
  }

  .press-cover-layout {
    grid-column-gap: 5.08906rem;
    grid-row-gap: 5.08906rem;
    padding-top: 34.2672rem;
  }

  .press-contacts-layout {
    margin-top: 20.3562rem;
  }

  .name-layout {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
  }

  .press-about-layout {
    grid-column-gap: 30.5344rem;
    grid-row-gap: 30.5344rem;
    padding-top: 30.5344rem;
  }

  .press-about-description {
    grid-column-gap: 6.10687rem;
    grid-row-gap: 6.10687rem;
    padding-right: 0;
  }

  .press-theme-layout {
    grid-template-columns: 1fr;
    margin-bottom: 45.8015rem;
  }

  .press-theme-item {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
    padding-top: 6.10687rem;
    padding-bottom: 6.10687rem;
  }

  .press-branding-load-layout {
    margin-bottom: 45.8015rem;
  }

  .press-branding-load-icon {
    width: 6.10687rem;
    height: 6.10687rem;
  }

  .press-branding-load-item {
    padding-top: 5.08906rem;
    padding-bottom: 5.08906rem;
  }

  .press-branding-load-items-box {
    margin-top: 5.08906rem;
  }

  .press-smi-layout {
    margin-bottom: 30.5344rem;
  }

  .press-articles-collection-list {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .press-articles-collection-item-content {
    padding-top: 5.08906rem;
    padding-bottom: 10.1781rem;
  }

  .press-articles-collection-item-logo {
    height: 8.14249rem;
    margin-bottom: 10.1781rem;
  }

  .press-articles-collection-item-date {
    margin-bottom: 2.03562rem;
  }

  .press-page__pagination {
    justify-content: flex-start;
    margin-top: 5.08906rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .solutions-first-screen {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100svh;
    display: flex;
  }

  .services-hero {
    height: 100svh;
    margin-bottom: 10.1781rem;
    position: relative;
  }

  .solution-item-image {
    width: 100%;
    height: 80vh;
  }

  .solution-item-image.solution-page {
    height: 100%;
    position: absolute;
  }

  .preloader-lottie-animation {
    width: 16rem;
  }

  .loader__progress-wrapper {
    display: none;
  }

  .loader__progress {
    height: 1.33333rem;
  }

  .solution-content-box {
    height: 101.781rem;
    min-height: auto;
    position: relative;
  }

  .solution-content-box.first-solution, .solution-content-box.second-solution, .solution-content-box.third-solution {
    position: relative;
  }

  .solution-content-box.fourth-solution {
    position: relative;
    top: 0%;
  }

  .solution-page-mobile-solutions-layout {
    display: block;
  }

  .solution-page-mobile-solution-box {
    flex-flow: column;
    display: flex;
  }

  .solution-button-box {
    margin-top: 8px;
  }

  .footer-social-links-wrapper {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
    margin-bottom: 7.12468rem;
  }

  .main__cases-mobile-button {
    justify-content: flex-start;
    align-items: center;
    margin-top: 10.1781rem;
    display: flex;
  }

  .solutions-open-icon {
    opacity: 0;
    pointer-events: none;
    flex: none;
    width: 6.10687rem;
    height: 6.10687rem;
    display: block;
    position: absolute;
    right: 4.07125rem;
  }

  .blog-page-author {
    font-size: 4.07125rem;
  }

  .bio-modal-layout {
    background-color: var(--white);
    flex-flow: column;
    align-items: center;
    height: 100vh;
  }

  .bio-modal-close {
    color: var(--black);
    width: 6.10687rem;
    height: 6.10687rem;
    padding: 0;
  }

  .bio-content-box {
    flex-direction: column;
    flex: none;
    justify-content: flex-start;
    width: 100%;
    height: 100vh;
    padding-top: 0;
    display: flex;
  }

  .bio-close-button-box {
    position: absolute;
    inset: 3rem 4.07125rem auto auto;
  }

  .bio-content-swiper-layout {
    height: 100%;
  }

  .bio-modal-devider-box {
    z-index: 1;
    background-color: #fff;
    flex: none;
    padding-top: 12.7226rem;
    padding-left: 4.07125rem;
    padding-right: 4.07125rem;
    position: relative;
    inset: 0% 0% auto;
  }

  .bio-modal-swiper-box {
    z-index: 0;
    flex: 0 auto;
    height: 100%;
    padding-bottom: 0;
    position: relative;
  }

  .bio-swiper-navigation-layout {
    z-index: 3;
    background-color: #fff;
    height: auto;
    min-height: auto;
    max-height: none;
    margin-left: 4.07125rem;
    margin-right: 4.07125rem;
    padding-top: 3.05344rem;
    padding-bottom: 3.05344rem;
    position: absolute;
    inset: auto 0% 0%;
  }

  .bio-swiper-arrow-prev, .bio-swiper-arrow-next {
    width: 9.16031rem;
    height: 9.16031rem;
  }

  .bio-swiper-pagination {
    font-size: 3.05344rem;
  }

  .bio-swiper-slide-content {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    padding-top: 3.05344rem;
    padding-left: 4.07125rem;
    padding-right: 4.07125rem;
    overflow: auto;
  }

  .bio-photo-box {
    flex: none;
    order: -1;
    width: 100%;
    height: 105.556rem;
    max-height: none;
  }

  .bio-info-layout {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-top: 5.08906rem;
    padding-bottom: 5.08906rem;
    padding-right: 0;
  }

  .bio-name-box {
    grid-column-gap: 2.03562rem;
    grid-row-gap: 2.03562rem;
    margin-bottom: 10.1781rem;
  }

  .bio-info-content-layout {
    grid-column-gap: 10.1781rem;
    grid-row-gap: 10.1781rem;
  }

  .bio-info-box {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
  }

  .leader-cards-wrapper.swiper-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    width: 100%;
    display: flex;
  }

  .leader-thumbs-layout.swiper {
    width: 100%;
  }

  .report-form-inputs-box {
    grid-column-gap: 7.12468rem;
    grid-row-gap: 7.12468rem;
    margin-bottom: 3.33rem;
  }

  .report-form-description-box {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
  }

  .list-layout {
    padding-left: 5rem;
    font-size: 4.07125rem;
  }

  .report-form-description-text {
    max-width: 95%;
  }

  .solution-report-buttons-box {
    grid-column-gap: 3.05344rem;
    grid-row-gap: 3.05344rem;
  }

  .services-list {
    padding-left: 6rem;
  }

  .services-tempate-video-box {
    height: 132.316rem;
    margin-top: 45.8015rem;
  }

  .scroll-trigger {
    pointer-events: none;
    width: 0;
    height: 107.8rem;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
    position: absolute;
    inset: 0% auto auto 0%;
  }
}

#w-node-_80adab52-5a5c-389f-bc84-05c9e9d66a39-e9d66a09 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: start;
}

#w-node-_26273e71-7005-aa12-727f-7ef36fb5a19f-e9d66a09 {
  grid-area: 3 / 2 / 4 / 3;
  align-self: auto;
}

#w-node-_80adab52-5a5c-389f-bc84-05c9e9d66a43-e9d66a09 {
  grid-area: 2 / 3 / 5 / 4;
  align-self: start;
}

#w-node-_80adab52-5a5c-389f-bc84-05c9e9d66a50-e9d66a09 {
  grid-area: 4 / 2 / 5 / 3;
  align-self: auto;
}

#w-node-_80adab52-5a5c-389f-bc84-05c9e9d66a5d-e9d66a09 {
  grid-area: 5 / 3 / 6 / 4;
  align-self: start;
}

#w-node-_80adab52-5a5c-389f-bc84-05c9e9d66a2f-e9d66a09 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: start;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb1f4-96cbb216 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb210-96cbb216 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb212-96cbb216 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb221-96cbb216 {
  justify-self: end;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb23e-96cbb216 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb247-96cbb216 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb251-96cbb216 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb259-96cbb216 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb262-96cbb216 {
  grid-area: 3 / 2 / 4 / 3;
  align-self: auto;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb26a-96cbb216 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb271-96cbb216 {
  grid-area: 4 / 2 / 5 / 3;
  align-self: auto;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb279-96cbb216 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb28a-96cbb216, #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb28b-96cbb216 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb28d-96cbb216 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb2a8-96cbb216 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb2aa-96cbb216 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb2b0-96cbb216 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb2b8-96cbb216, #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb2c1-96cbb216, #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb2ca-96cbb216, #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb2d3-96cbb216 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb2de-96cbb216 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-e4b9906d-421d-4bb2-d17e-6ea04a043980-4a043979 {
  justify-self: stretch;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f326-96cbb219 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f340-96cbb219, #w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f342-96cbb219 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f34a-96cbb219 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f353-96cbb219 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f360-96cbb219 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f368-96cbb219 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f379-96cbb219 {
  grid-area: 3 / 2 / 4 / 3;
  align-self: auto;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f381-96cbb219, #w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f38d-96cbb219 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f38f-96cbb219 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f394-96cbb219 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f3a9-96cbb219 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f3ad-96cbb219, #w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f3af-96cbb219 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f3b2-96cbb219, #w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f3d4-96cbb219 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f3f1-96cbb219 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f3f3-96cbb219, #w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f3f5-96cbb219, #w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f3f8-96cbb219 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f3fe-96cbb219 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f413-96cbb219, #w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f41e-96cbb219 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f426-96cbb219 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f439-96cbb219 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_89268863-2679-5862-0caa-5df02fd96596-2fd96593 {
  align-self: start;
}

#w-node-_89268863-2679-5862-0caa-5df02fd96599-2fd96593 {
  justify-self: start;
}

#w-node-_89268863-2679-5862-0caa-5df02fd965a2-2fd96593 {
  justify-self: end;
}

#w-node-_89268863-2679-5862-0caa-5df02fd965af-2fd96593 {
  grid-area: 2 / 3 / 3 / 4;
  place-self: end;
}

#w-node-_4031b15e-26b3-8eaa-2d78-1369accc604a-2fd96593 {
  grid-area: 2 / 2 / 3 / 3;
  justify-self: start;
}

#w-node-d6f9c69c-04ab-2805-6315-8bc4c73c9b39-96cbb250, #w-node-_14a19aae-d7b0-4d8c-35be-1acdde696007-96cbb250, #w-node-_7dc36f71-67e8-c064-fc3f-8009f209ccfe-96cbb250, #w-node-_175586a7-9482-41b7-57fe-d01aa0430f00-96cbb250, #w-node-cefa7d74-8762-5a4f-357e-dee24395c8da-96cbb250, #w-node-ed4910fc-758a-a9cc-972a-d8e093de764f-96cbb250, #w-node-_7fd44f0d-f30b-7cce-4691-d8c44d9c893d-96cbb250 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_734df0b3-121e-f622-3515-a9aa89b1a942-96cbb250 {
  grid-area: 1 / 2 / 3 / 3;
}

#w-node-_451ea4a7-980a-b020-63de-c7270bdc938c-96cbb250, #w-node-_635b584b-93ce-f16c-f6b8-841429c70ef2-96cbb250 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79fbab1c-372f-78d7-8cbe-893a015c6ab6-96cbb271 {
  justify-self: center;
}

#w-node-_02cf142d-2058-9b11-257b-bef02b181b2d-96cbb29c, #w-node-cf3ea481-e1ce-95df-578e-1e8e0ac39710-96cbb29c, #w-node-_20c48938-781d-058f-f36e-6dc44a234d7f-96cbb29c, #w-node-da3a5fcb-18ab-7f16-23e0-578f934cea51-96cbb29c, #w-node-_3cb7e109-166b-027a-f1dd-416780b8f27e-96cbb29c, #w-node-_3cb7e109-166b-027a-f1dd-416780b8f281-96cbb29c, #w-node-_3cb7e109-166b-027a-f1dd-416780b8f284-96cbb29c, #w-node-_4801544e-673f-e41d-da0a-3d320c0e242f-96cbb29c, #w-node-_4801544e-673f-e41d-da0a-3d320c0e243d-96cbb29c, #w-node-_4801544e-673f-e41d-da0a-3d320c0e244d-96cbb29c, #w-node-_4801544e-673f-e41d-da0a-3d320c0e2459-96cbb29c, #w-node-_4801544e-673f-e41d-da0a-3d320c0e246b-96cbb29c, #w-node-_4801544e-673f-e41d-da0a-3d320c0e249f-96cbb29c, #w-node-_4801544e-673f-e41d-da0a-3d320c0e24ab-96cbb29c, #w-node-_4801544e-673f-e41d-da0a-3d320c0e24ae-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d19-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d1b-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d27-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d29-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d37-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d39-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d43-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d45-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d55-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d57-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d61-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d63-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d6f-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d71-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d7b-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d7d-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d89-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d8b-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d95-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d98-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d9b-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325d9e-96cbb29c, #w-node-a4c5c230-3f82-aca1-93d8-8e49f4325da0-96cbb29c, #w-node-c5a8c73f-2a11-c20c-2885-c31384d84bc0-96cbb29c, #w-node-_4e68c6e7-1264-213d-ed2a-2840098e417f-96cbb29c, #w-node-_0ac4a8ff-dd6d-ee4e-74bf-ac3386aaafe5-96cbb29c, #w-node-b3564821-1186-0d22-cf81-a3b73979bf54-96cbb29c, #w-node-_6aeb364e-a73c-8db8-2b86-887c75d41ceb-96cbb29c, #w-node-_6aeb364e-a73c-8db8-2b86-887c75d41cf3-96cbb29c, #w-node-_6aeb364e-a73c-8db8-2b86-887c75d41cfb-96cbb29c, #w-node-_1b5e8af6-da94-7fad-67c3-61a7b92721e7-96cbb29c, #w-node-_1b5e8af6-da94-7fad-67c3-61a7b92721ed-96cbb29c, #w-node-_7f4b0cd4-21ac-7c3e-aacf-863016d407ea-96cbb29c, #w-node-_1b5e8af6-da94-7fad-67c3-61a7b92721f3-96cbb29c, #w-node-_1b5e8af6-da94-7fad-67c3-61a7b92721f9-96cbb29c, #w-node-_92ede223-4828-b22a-d0ad-c31a29d4cbe2-96cbb29c, #w-node-_922240d8-c208-72bf-d5b1-74efcfbf63a2-96cbb29c, #w-node-_1b5e8af6-da94-7fad-67c3-61a7b9272206-96cbb29c, #w-node-_1b5e8af6-da94-7fad-67c3-61a7b927220c-96cbb29c, #w-node-_1b5e8af6-da94-7fad-67c3-61a7b9272212-96cbb29c, #w-node-_2ee6d64e-0406-61e7-9e31-9b8a68291a65-96cbb29c, #w-node-_2ee6d64e-0406-61e7-9e31-9b8a68291a6b-96cbb29c, #w-node-_2ee6d64e-0406-61e7-9e31-9b8a68291a71-96cbb29c, #w-node-_2ee6d64e-0406-61e7-9e31-9b8a68291a77-96cbb29c, #w-node-fb847dc1-67db-95fb-0f66-b6f1f21bc50d-96cbb29c, #w-node-_79d55e1d-f495-9ad9-716f-3cdddb6eab26-96cbb29c, #w-node-_53870e6f-7958-5950-714c-aa9bde859d74-96cbb29c, #w-node-_2ee6d64e-0406-61e7-9e31-9b8a68291a84-96cbb29c, #w-node-_2ee6d64e-0406-61e7-9e31-9b8a68291a8a-96cbb29c, #w-node-_2ee6d64e-0406-61e7-9e31-9b8a68291a90-96cbb29c, #w-node-_9b804851-6306-145a-3a36-948613cd2063-96cbb29c, #w-node-_9b804851-6306-145a-3a36-948613cd2069-96cbb29c, #w-node-_9b804851-6306-145a-3a36-948613cd206f-96cbb29c, #w-node-_9b804851-6306-145a-3a36-948613cd2082-96cbb29c, #w-node-_9b804851-6306-145a-3a36-948613cd2088-96cbb29c, #w-node-_9b804851-6306-145a-3a36-948613cd208e-96cbb29c, #w-node-_647e2539-780a-d122-927f-e4bdefdb87d4-96cbb29c, #w-node-_647e2539-780a-d122-927f-e4bdefdb87e0-96cbb29c, #w-node-_647e2539-780a-d122-927f-e4bdefdb87ea-96cbb29c, #w-node-_4202c588-4839-7183-1bfd-a53fc58d8ce4-96cbb29c, #w-node-d44b3d57-2b17-ed03-780f-24403c5cf000-96cbb29c, #w-node-_6b7dc495-fe3f-c277-06f9-9dd020742697-96cbb29c, #w-node-ad3cd5c6-370f-0c0d-2ba4-44351624dfde-96cbb29c, #w-node-_36d63bcb-dfca-2e0a-4fdf-ba28aa01211a-96cbb29c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f38b2d0b-d972-44ff-225a-35d24494b82e-96cbb29c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f38b2d0b-d972-44ff-225a-35d24494b831-96cbb29c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f38b2d0b-d972-44ff-225a-35d24494b83e-96cbb29c {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f38b2d0b-d972-44ff-225a-35d24494b841-96cbb29c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f38b2d0b-d972-44ff-225a-35d24494b859-96cbb29c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f38b2d0b-d972-44ff-225a-35d24494b85c-96cbb29c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f38b2d0b-d972-44ff-225a-35d24494b865-96cbb29c {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f38b2d0b-d972-44ff-225a-35d24494b868-96cbb29c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b0854eb5-1f38-b8be-e288-8671b8cc32c4-96cbb29c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b0854eb5-1f38-b8be-e288-8671b8cc32c7-96cbb29c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b0854eb5-1f38-b8be-e288-8671b8cc32f7-96cbb29c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b0854eb5-1f38-b8be-e288-8671b8cc32fa-96cbb29c, #w-node-_95c4ea60-3971-aae1-ed93-36a58c961824-96cbb29c, #w-node-_54fefdc8-1f33-3d4b-1e66-bc121a52d9f4-96cbb29c, #w-node-e48ed569-ba76-6eee-1a22-cdc3537d28cc-96cbb29c, #w-node-_5ce35999-b1d8-5c37-8648-62e545e4c0ea-96cbb29c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab3340e-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3341a-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33425-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3342f-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33439-eab333fd {
  justify-self: end;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab3344a-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33452-eab333fd, #w-node-_5f403718-5186-c597-6dce-7cd6f8410019-eab333fd, #w-node-_5f403718-5186-c597-6dce-7cd6f8410021-eab333fd {
  justify-self: start;
}

#w-node-_5f403718-5186-c597-6dce-7cd6f8410029-eab333fd {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_5f403718-5186-c597-6dce-7cd6f841002b-eab333fd {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: start;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab334f4-eab333fd {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab334f6-eab333fd {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab334fa-eab333fd {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-d36e0ba4-dc5a-4e46-bc0a-d06abc3e03b9-eab333fd {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab33500-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33506-eab333fd, #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a51-eab333fd {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a53-eab333fd {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a57-eab333fd {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a59-eab333fd {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a5d-eab333fd {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a5f-eab333fd {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a63-eab333fd, #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a68-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33513-eab333fd {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab33515-eab333fd {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab33519-eab333fd {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab3351b-eab333fd {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab33527-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3352c-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33531-eab333fd {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab33533-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334b7-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334bf-eab333fd {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab334e1-eab333fd {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab334e3-eab333fd {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab33544-eab333fd {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab33546-eab333fd {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab33557-eab333fd {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_099777fb-9c03-b6e0-bd62-455ceab33559-eab333fd {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_4220812c-3f6d-dcab-22e5-d105b2e13b8c-96cbb2a2, #w-node-e7be8c91-d06c-001b-79fa-d54a8d7acfbd-96cbb2a2, #w-node-_2ad7a09a-f5f8-0751-27a1-ebf2cfde709e-96cbb2a2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e9059-96cbb2af {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e9079-96cbb2af {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e9082-96cbb2af {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e9090-96cbb2af {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e909c-96cbb2af {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e90a4-96cbb2af {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e90ab-96cbb2af {
  grid-area: 3 / 2 / 4 / 3;
  align-self: auto;
}

#w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e90b3-96cbb2af {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e90ca-96cbb2af {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e90cc-96cbb2af {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e90d2-96cbb2af {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e90e3-96cbb2af, #w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e90ec-96cbb2af {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e90f7-96cbb2af {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf5567b9-96cbb2b0 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf5567d0-96cbb2b0, #w-node-a08ad61d-a277-1d2d-235a-2e2ddf5567da-96cbb2b0 {
  justify-self: end;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf55680a-96cbb2b0 {
  grid-area: 1 / 4 / 2 / 5;
  align-self: center;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf556812-96cbb2b0 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf55681c-96cbb2b0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_7d8a5506-e556-c81c-eadd-05620f4ffc4b-96cbb2b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf55681d-96cbb2b0 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf556820-96cbb2b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf556837-96cbb2b0 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf55683f-96cbb2b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf556828-96cbb2b0 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf556842-96cbb2b0 {
  grid-area: 4 / 2 / 5 / 3;
  align-self: auto;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf55684a-96cbb2b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf556861-96cbb2b0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf556862-96cbb2b0 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf556865-96cbb2b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf556890-96cbb2b0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf556892-96cbb2b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf556898-96cbb2b0 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf5568b5-96cbb2b0, #w-node-a08ad61d-a277-1d2d-235a-2e2ddf5568be-96cbb2b0, #w-node-a08ad61d-a277-1d2d-235a-2e2ddf5568c7-96cbb2b0 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf5568cf-96cbb2b0 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-a08ad61d-a277-1d2d-235a-2e2ddf5568e2-96cbb2b0 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_669e22ad-d698-7211-058d-c0a2ee69b658-96cbb2ff {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_669e22ad-d698-7211-058d-c0a2ee69b683-96cbb2ff {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_669e22ad-d698-7211-058d-c0a2ee69b68a-96cbb2ff {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_669e22ad-d698-7211-058d-c0a2ee69b695-96cbb2ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_669e22ad-d698-7211-058d-c0a2ee69b69f-96cbb2ff {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_669e22ad-d698-7211-058d-c0a2ee69b6a7-96cbb2ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_669e22ad-d698-7211-058d-c0a2ee69b6ae-96cbb2ff {
  grid-area: 3 / 2 / 4 / 3;
  align-self: auto;
}

#w-node-_669e22ad-d698-7211-058d-c0a2ee69b6b6-96cbb2ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_669e22ad-d698-7211-058d-c0a2ee69b6cb-96cbb2ff {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_669e22ad-d698-7211-058d-c0a2ee69b6cd-96cbb2ff, #w-node-_669e22ad-d698-7211-058d-c0a2ee69b6fe-96cbb2ff, #w-node-_669e22ad-d698-7211-058d-c0a2ee69b6ff-96cbb2ff, #w-node-_669e22ad-d698-7211-058d-c0a2ee69b701-96cbb2ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_669e22ad-d698-7211-058d-c0a2ee69b707-96cbb2ff {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_669e22ad-d698-7211-058d-c0a2ee69b719-96cbb2ff, #w-node-_669e22ad-d698-7211-058d-c0a2ee69b724-96cbb2ff, #w-node-_669e22ad-d698-7211-058d-c0a2ee69b737-96cbb2ff, #w-node-_669e22ad-d698-7211-058d-c0a2ee69b740-96cbb2ff {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_669e22ad-d698-7211-058d-c0a2ee69b74b-96cbb2ff {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_1458522e-d617-0692-6375-5569158f3d6d-96cbb317, #w-node-_1458522e-d617-0692-6375-5569158f3d9e-96cbb317 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_1458522e-d617-0692-6375-5569158f3da9-96cbb317 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1458522e-d617-0692-6375-5569158f3db6-96cbb317 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: auto;
}

#w-node-_1458522e-d617-0692-6375-5569158f3dbe-96cbb317 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1458522e-d617-0692-6375-5569158f3dd4-96cbb317 {
  grid-area: 3 / 2 / 4 / 3;
  align-self: auto;
}

#w-node-_1458522e-d617-0692-6375-5569158f3ddc-96cbb317, #w-node-_1458522e-d617-0692-6375-5569158f3ded-96cbb317 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1458522e-d617-0692-6375-5569158f3df3-96cbb317 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_1458522e-d617-0692-6375-5569158f3e06-96cbb317 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1458522e-d617-0692-6375-5569158f3e08-96cbb317, #w-node-_1458522e-d617-0692-6375-5569158f3e0a-96cbb317, #w-node-_1458522e-d617-0692-6375-5569158f3e0c-96cbb317, #w-node-_1458522e-d617-0692-6375-5569158f3e17-96cbb317 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1458522e-d617-0692-6375-5569158f3e19-96cbb317 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1458522e-d617-0692-6375-5569158f3e1b-96cbb317, #w-node-_1458522e-d617-0692-6375-5569158f3e1d-96cbb317, #w-node-_1458522e-d617-0692-6375-5569158f3e1f-96cbb317 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1458522e-d617-0692-6375-5569158f3e27-96cbb317 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_1458522e-d617-0692-6375-5569158f3e3a-96cbb317 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498dcf-96cbb35c {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498dd6-96cbb35c {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498de8-96cbb35c {
  justify-self: end;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498e0f-96cbb35c, #w-node-fb119664-2e15-8cdd-71a9-78a16c498e17-96cbb35c {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498e1a-96cbb35c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498e22-96cbb35c {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498e2a-96cbb35c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498e31-96cbb35c {
  grid-area: 3 / 2 / 4 / 3;
  align-self: auto;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498e39-96cbb35c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498e40-96cbb35c {
  grid-area: 4 / 2 / 5 / 3;
  align-self: auto;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498e48-96cbb35c, #w-node-fb119664-2e15-8cdd-71a9-78a16c498e5a-96cbb35c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498e84-96cbb35c {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_02e118cf-d8f4-5c6c-e384-eaceb6b266d1-96cbb35c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498e86-96cbb35c {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498e88-96cbb35c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498e8c-96cbb35c {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498e96-96cbb35c, #w-node-fb119664-2e15-8cdd-71a9-78a16c498ea1-96cbb35c, #w-node-fb119664-2e15-8cdd-71a9-78a16c498eac-96cbb35c {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-fb119664-2e15-8cdd-71a9-78a16c498eb7-96cbb35c {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e499f-96cbb37d {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e49db-96cbb37d {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e49dc-96cbb37d {
  grid-area: 1 / 1 / 2 / 3;
  align-self: auto;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e49dd-96cbb37d {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e49ec-96cbb37d {
  justify-self: end;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a1c-96cbb37d {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a28-96cbb37d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a33-96cbb37d {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a3b-96cbb37d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a42-96cbb37d {
  grid-area: 3 / 2 / 4 / 3;
  align-self: auto;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a4a-96cbb37d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a5d-96cbb37d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: auto;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a5f-96cbb37d, #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4aa1-96cbb37d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a84-96cbb37d {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a9f-96cbb37d {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4ab0-96cbb37d {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-bd8d8840-b509-35af-8d42-8986cfe3363d-96cbb37e, #w-node-bd8d8840-b509-35af-8d42-8986cfe33673-96cbb37e {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-bd8d8840-b509-35af-8d42-8986cfe33680-96cbb37e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-bd8d8840-b509-35af-8d42-8986cfe33682-96cbb37e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bd8d8840-b509-35af-8d42-8986cfe3368c-96cbb37e {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-bd8d8840-b509-35af-8d42-8986cfe33694-96cbb37e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bd8d8840-b509-35af-8d42-8986cfe33699-96cbb37e {
  grid-area: 3 / 2 / 4 / 3;
  align-self: auto;
}

#w-node-bd8d8840-b509-35af-8d42-8986cfe336a1-96cbb37e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bd8d8840-b509-35af-8d42-8986cfe336a4-96cbb37e {
  grid-area: 4 / 2 / 5 / 3;
  align-self: auto;
}

#w-node-bd8d8840-b509-35af-8d42-8986cfe336ac-96cbb37e, #w-node-bd8d8840-b509-35af-8d42-8986cfe336bd-96cbb37e, #w-node-bd8d8840-b509-35af-8d42-8986cfe336e4-96cbb37e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bd8d8840-b509-35af-8d42-8986cfe336ea-96cbb37e {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-bd8d8840-b509-35af-8d42-8986cfe336fd-96cbb37e, #w-node-bd8d8840-b509-35af-8d42-8986cfe33706-96cbb37e, #w-node-bd8d8840-b509-35af-8d42-8986cfe3370f-96cbb37e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-bd8d8840-b509-35af-8d42-8986cfe33717-96cbb37e {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-bd8d8840-b509-35af-8d42-8986cfe3372a-96cbb37e {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b48984f3-96cbb37f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b489852b-96cbb37f {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b489852c-96cbb37f {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b4898534-96cbb37f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b4898542-96cbb37f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b489854a-96cbb37f {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b4898552-96cbb37f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b4898557-96cbb37f {
  grid-area: 3 / 2 / 4 / 3;
  align-self: auto;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b489855f-96cbb37f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b4898572-96cbb37f {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b4898573-96cbb37f {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b4898576-96cbb37f, #w-node-_83b50718-7869-01cd-73e9-01d6b48985a3-96cbb37f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b48985a9-96cbb37f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b48985c4-96cbb37f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b48985cc-96cbb37f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b48985df-96cbb37f {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e3127-f29e3122, #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e3129-f29e3122, #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e312b-f29e3122, #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e312d-f29e3122, #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e312f-f29e3122, #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e3131-f29e3122, #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e3133-f29e3122, #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e3135-f29e3122, #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e3139-f29e3122, #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e3137-f29e3122, #w-node-e8012d91-42df-da2a-8fca-db1c47be51f6-f29e3122, #w-node-_33899824-3fe7-c972-fbb1-51a0a2ef9bf0-f29e3122, #w-node-_72ac25aa-e954-bc22-081e-3eae6ad6d7f5-f29e3122 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e313d-f29e3122 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-_3bbb80a5-5c9a-f5a7-e91e-70b009966428-96cbb39a, #w-node-ea593006-af34-e28a-bd9b-167910cac14e-96cbb39a, #w-node-_9c1c2374-c95b-53b0-7996-180dfc4432b8-96cbb39a, #w-node-bcfb7882-ebba-eb69-207b-ce8eb96f9d6e-96cbb39a, #w-node-a68a2e3f-34a0-fe30-d5ea-7d4e2eed07ee-96cbb39a, #w-node-_5911eb9d-1297-945d-63c1-bb8b99f5e2a9-96cbb39a, #w-node-_5911eb9d-1297-945d-63c1-bb8b99f5e2aa-96cbb39a, #w-node-_6374feaa-70a4-5cf0-dcf6-bcbc856ef9bf-96cbb39a, #w-node-e21436a4-f94e-a2ae-157e-fbef9e1a8a7c-96cbb39a, #w-node-_042815a9-742d-ee6c-73d3-c7441731cf1d-96cbb39a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3bdd6947-766e-dbc6-e7ff-4fe6140b7017-590096a0 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-c38d8cd0-6086-323a-9961-981321ddd267-590096a0 {
  justify-self: end;
}

#w-node-_6e86a8d8-4ba8-6489-b4f7-87193c5e5a56-590096a0 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-fe51f08b-a0f2-ceb3-0f03-b9490f383152-590096a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_82232129-b35a-c6a4-eae1-03dc7e16bddc-590096a0 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_82232129-b35a-c6a4-eae1-03dc7e16bdf6-590096a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca039-590096a0 {
  grid-area: 3 / 2 / 4 / 3;
  align-self: auto;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca041-590096a0, #w-node-be8b8984-ffcb-c1f1-b6c4-cbf2d30d7ea3-590096a0, #w-node-_49c6838e-d964-5431-7602-11dd8f79eb47-590096a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb49-590096a0 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb5e-590096a0 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ff386ea0-9db0-1f88-583d-cb63c2023038-590096a0, #w-node-_3bdd6947-766e-dbc6-e7ff-4fe6140b7017-19b2a5e8 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_65b856d9-975f-1922-25a6-248aeda420a4-19b2a5e8 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-fd9b2c95-e300-eb51-1dc5-b2371a6e0861-19b2a5e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6e86a8d8-4ba8-6489-b4f7-87193c5e5a56-19b2a5e8 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_26a9a09e-1733-035e-464a-3e6d69927d18-19b2a5e8 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-fe51f08b-a0f2-ceb3-0f03-b9490f383152-19b2a5e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3fd88cc6-c4f7-3f36-361b-ad47a386264a-19b2a5e8 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_3fd88cc6-c4f7-3f36-361b-ad47a3862652-19b2a5e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_82232129-b35a-c6a4-eae1-03dc7e16bddc-19b2a5e8 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_82232129-b35a-c6a4-eae1-03dc7e16bdf6-19b2a5e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca039-19b2a5e8 {
  grid-area: 4 / 2 / 5 / 3;
  align-self: auto;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca041-19b2a5e8, #w-node-f5813477-9e84-c18f-5f01-93a3a5f4d667-19b2a5e8, #w-node-be8b8984-ffcb-c1f1-b6c4-cbf2d30d7ea3-19b2a5e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2ea93efd-9fac-dc9d-9f0c-7ab5deedf2ac-19b2a5e8 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb47-19b2a5e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb49-19b2a5e8 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb5e-19b2a5e8 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ff386ea0-9db0-1f88-583d-cb63c2023038-19b2a5e8 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-db3a2247-8ea9-c007-472c-4211abcb476a-19b2a5e8 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_97794c02-dfad-ba5d-818e-218e9f4142df-4f76dff0 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_286638ac-7f89-e0b4-d938-fb6cf537ebec-4f76dff0, #w-node-_0af12be8-5f18-b87d-d582-9bab5f53aae0-4f76dff0, #w-node-_075d08d7-ddfd-f12f-8112-d04cc9364b13-4f76dff0 {
  align-self: center;
}

#w-node-_3bdd6947-766e-dbc6-e7ff-4fe6140b7017-213f9032 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_71f4c1fb-69ba-85ef-fd8a-ac1579a944a6-213f9032 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f3473f47-25f1-a793-00f7-1258dd3eb5f0-213f9032 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_606e79c5-ad0f-52fb-cf13-67875052f911-213f9032 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-fe51f08b-a0f2-ceb3-0f03-b9490f383152-213f9032 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_907ea753-3556-b7c3-a753-12c3afdd80f9-213f9032 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_907ea753-3556-b7c3-a753-12c3afdd8101-213f9032 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_82232129-b35a-c6a4-eae1-03dc7e16bddc-213f9032 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_82232129-b35a-c6a4-eae1-03dc7e16bdf6-213f9032 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bdb31af1-3de6-3b31-ca2c-5199d519fd16-213f9032 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-bdb31af1-3de6-3b31-ca2c-5199d519fd17-213f9032 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-d26a81c6-83bf-db9e-ced2-d3cf7db2f130-213f9032 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83d3536d-4ce3-5c63-bf23-776cd9dc3724-213f9032 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb47-213f9032 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb49-213f9032 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb5e-213f9032 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ac9944ec-6552-1490-7239-7a6973176629-213f9032 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4a635695-69f7-2d72-6116-a842c6372645-213f9032 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1d251025-4cd7-254b-108e-769fa9092177-213f9032 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-db3a2247-8ea9-c007-472c-4211abcb476a-213f9032 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_8c388ebf-2a76-a54e-c980-214fbcd36508-91459f35, #w-node-e68c85af-76f5-a9e8-b97e-4e54a12f5d3c-91459f35, #w-node-_37cc0b59-7135-d8a8-0440-b16478cbf95c-91459f35, #w-node-b5cdf2a1-edff-078b-6e2b-3fc2d9baf3f1-91459f35, #w-node-_27ac385e-4ef2-af42-1332-d58a2cc16575-91459f35, #w-node-_87f77ec7-90aa-f90f-6ab0-42109d2b3968-91459f35, #w-node-_69eea020-4964-091a-d672-4cda9f399f49-91459f35, #w-node-_6928d19b-1386-8c4e-6a6c-27dd4a2aeb5c-91459f35, #w-node-_2e89b5ce-2761-5870-f4d3-f871da321007-91459f35 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_0f678718-0613-581f-8b5f-06e45736e9f9-91459f35, #w-node-ce2ed8e2-9977-f430-31b5-60982b906b0a-91459f35 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6e37b4b2-63c8-fce2-67ec-67f206a336b9-91459f35 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_1633e36d-0555-6778-a8c8-3324da014ab2-e77ad3e7, #w-node-_6d605b76-5531-b4d0-72c7-d9b0e4970c25-e77ad3e7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a2002ef-bf55-ab42-757d-6fd0939ee1f3-e77ad3e7 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_6ed9417c-414e-d1a9-8774-db74efb048af-e77ad3e7, #w-node-_6ed9417c-414e-d1a9-8774-db74efb04878-e77ad3e7, #w-node-_1633e36d-0555-6778-a8c8-3324da014ab2-403878de, #w-node-_6d605b76-5531-b4d0-72c7-d9b0e4970c25-403878de {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a2002ef-bf55-ab42-757d-6fd0939ee1f3-403878de {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_6ed9417c-414e-d1a9-8774-db74efb04878-403878de, #w-node-_6ed9417c-414e-d1a9-8774-db74efb048af-403878de, #w-node-_1633e36d-0555-6778-a8c8-3324da014ab2-995fc60f, #w-node-_6d605b76-5531-b4d0-72c7-d9b0e4970c25-995fc60f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a2002ef-bf55-ab42-757d-6fd0939ee1f3-995fc60f {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_21f0ab65-69b0-32aa-03b1-f9b55437784d-995fc60f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_21f0ab65-69b0-32aa-03b1-f9b554377859-995fc60f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_21f0ab65-69b0-32aa-03b1-f9b554377861-995fc60f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_21f0ab65-69b0-32aa-03b1-f9b554377866-995fc60f {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_21f0ab65-69b0-32aa-03b1-f9b55437786e-995fc60f, #w-node-_6ed9417c-414e-d1a9-8774-db74efb048af-995fc60f, #w-node-_6ed9417c-414e-d1a9-8774-db74efb04878-995fc60f, #w-node-_1633e36d-0555-6778-a8c8-3324da014ab2-195ab0ec {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_248a13c0-6508-0877-fb81-18c03e495d0f-195ab0ec {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_6ed9417c-414e-d1a9-8774-db74efb04878-195ab0ec, #w-node-edbd1e4d-33c9-8828-db42-ce5494246f15-195ab0ec, #w-node-_6ed9417c-414e-d1a9-8774-db74efb048af-195ab0ec, #w-node-c93b1134-b55b-0783-5cc5-6027f67dd907-195ab0ec, #w-node-_1633e36d-0555-6778-a8c8-3324da014ab2-3e0d6349, #w-node-_6d605b76-5531-b4d0-72c7-d9b0e4970c25-3e0d6349, #w-node-_21f0ab65-69b0-32aa-03b1-f9b55437784d-3e0d6349 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_21f0ab65-69b0-32aa-03b1-f9b554377859-3e0d6349 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_21f0ab65-69b0-32aa-03b1-f9b554377861-3e0d6349, #w-node-_6ed9417c-414e-d1a9-8774-db74efb04878-3e0d6349 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_08b92316-3f06-8aa4-8458-733c8ca98d29-3a0dee09 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_4557a991-21d1-f0a9-d21b-612a1399490b-3a0dee09, #w-node-_9559d763-5887-7028-3bb9-ad64ea140a84-3a0dee09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4708af86-e72d-7b1e-c442-ab95f73e32d0-3a0dee09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-_5ac2ad94-ee5a-b068-0c6f-32ee408e2f0f-3a0dee09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c126f487-5c7e-f670-9838-93e797610863-3a0dee09 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_3526b6b4-f47d-3971-0b09-da80083f11d4-3a0dee09 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-_326cbb93-5859-7ecd-ff69-795a82be303a-3a0dee09 {
  grid-area: 2 / 4 / 3 / 5;
}

#w-node-_822dbed2-9a30-fb87-ecef-4418e68d31d3-3a0dee09 {
  grid-area: 3 / 3 / 4 / 4;
  align-self: auto;
}

#w-node-bc33c63e-6ac5-e958-ddf8-3f0916b2430b-3a0dee09 {
  grid-area: 3 / 4 / 4 / 5;
}

#w-node-_3bafbefb-9aa4-a985-fd24-5e4f153109cf-3a0dee09, #w-node-_5b6cdf2c-4054-8d38-75e1-1b356cb446a1-3a0dee09 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f72a6eb0-67a7-dda6-112f-4383ff2fc58c-3a0dee09 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: start;
}

#w-node-_22119599-c07c-64ab-2f87-4660815c1aec-3a0dee09, #w-node-_22119599-c07c-64ab-2f87-4660815c1aef-3a0dee09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_398810b1-1933-8410-31c5-030c8efe2d40-3a0dee09, #w-node-_23f4773b-6d5b-a5bb-90da-43be6a081aaf-725f9f98 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_1b874137-66d9-51c1-6248-43f7135fae27-49493261 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_034a851e-43c8-230f-1008-c39dd826418a-49493261 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_888b3e23-72f3-4408-6611-32e91c4d8927-49493261 {
  place-self: start;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b48984f3-f8b02dbd {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-dd26ce14-4072-9c3b-98af-62982902ae50-f8b02dbd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b489852b-f8b02dbd {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b489852c-f8b02dbd {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b4898542-f8b02dbd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b489854a-f8b02dbd {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b4898552-f8b02dbd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b4898572-f8b02dbd {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b4898573-f8b02dbd {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b4898576-f8b02dbd, #w-node-_83b50718-7869-01cd-73e9-01d6b48985a3-f8b02dbd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b48985a9-f8b02dbd {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b48985c4-f8b02dbd {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_40be7111-bf24-23e2-b4d4-7719c826d8fb-f8b02dbd {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_83b50718-7869-01cd-73e9-01d6b48985df-f8b02dbd {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_1458522e-d617-0692-6375-5569158f3d6d-2e1b9a0e {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_1458522e-d617-0692-6375-5569158f3da9-2e1b9a0e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1458522e-d617-0692-6375-5569158f3db6-2e1b9a0e {
  grid-area: 2 / 2 / 3 / 3;
  align-self: auto;
}

#w-node-_1458522e-d617-0692-6375-5569158f3dbe-2e1b9a0e, #w-node-_1458522e-d617-0692-6375-5569158f3ded-2e1b9a0e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1458522e-d617-0692-6375-5569158f3df3-2e1b9a0e, #w-node-_1458522e-d617-0692-6375-5569158f3e27-2e1b9a0e {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-cc1efd2f-fe21-e50f-554c-f49dc1ddce69-2e1b9a0e {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_3bdd6947-766e-dbc6-e7ff-4fe6140b7017-57950a72, #w-node-_2f9cc00d-3d03-2107-eb6f-7e99b669d2ef-57950a72 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_65b856d9-975f-1922-25a6-248aeda420a4-57950a72 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-fd9b2c95-e300-eb51-1dc5-b2371a6e0861-57950a72 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6e86a8d8-4ba8-6489-b4f7-87193c5e5a56-57950a72 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-fe51f08b-a0f2-ceb3-0f03-b9490f383152-57950a72 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca039-57950a72 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: auto;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca041-57950a72 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_26a9a09e-1733-035e-464a-3e6d69927d18-57950a72 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb47-57950a72 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb49-57950a72 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb5e-57950a72 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ff386ea0-9db0-1f88-583d-cb63c2023038-57950a72 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_61bd519a-a75f-59ac-5baa-402505dccc34-57950a72 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db3a2247-8ea9-c007-472c-4211abcb476a-57950a72 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_3bdd6947-766e-dbc6-e7ff-4fe6140b7017-c9262caa, #w-node-_2f9cc00d-3d03-2107-eb6f-7e99b669d2ef-c9262caa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_65b856d9-975f-1922-25a6-248aeda420a4-c9262caa {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-fd9b2c95-e300-eb51-1dc5-b2371a6e0861-c9262caa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6e86a8d8-4ba8-6489-b4f7-87193c5e5a56-c9262caa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-fe51f08b-a0f2-ceb3-0f03-b9490f383152-c9262caa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca039-c9262caa {
  grid-area: 2 / 2 / 3 / 3;
  align-self: auto;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca041-c9262caa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_26a9a09e-1733-035e-464a-3e6d69927d18-c9262caa {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb47-c9262caa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb49-c9262caa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb5e-c9262caa {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ff386ea0-9db0-1f88-583d-cb63c2023038-c9262caa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_61bd519a-a75f-59ac-5baa-402505dccc34-c9262caa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db3a2247-8ea9-c007-472c-4211abcb476a-c9262caa {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_3bdd6947-766e-dbc6-e7ff-4fe6140b7017-dad74b93, #w-node-_2f9cc00d-3d03-2107-eb6f-7e99b669d2ef-dad74b93 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_65b856d9-975f-1922-25a6-248aeda420a4-dad74b93 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-fd9b2c95-e300-eb51-1dc5-b2371a6e0861-dad74b93, #w-node-fe51f08b-a0f2-ceb3-0f03-b9490f383152-dad74b93 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca039-dad74b93 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: auto;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca041-dad74b93 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_26a9a09e-1733-035e-464a-3e6d69927d18-dad74b93 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb47-dad74b93 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb49-dad74b93 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb5e-dad74b93 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ff386ea0-9db0-1f88-583d-cb63c2023038-dad74b93 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_61bd519a-a75f-59ac-5baa-402505dccc34-dad74b93 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db3a2247-8ea9-c007-472c-4211abcb476a-dad74b93 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_3bdd6947-766e-dbc6-e7ff-4fe6140b7017-114c300b, #w-node-_2f9cc00d-3d03-2107-eb6f-7e99b669d2ef-114c300b {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_65b856d9-975f-1922-25a6-248aeda420a4-114c300b {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-fd9b2c95-e300-eb51-1dc5-b2371a6e0861-114c300b, #w-node-fe51f08b-a0f2-ceb3-0f03-b9490f383152-114c300b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca039-114c300b {
  grid-area: 2 / 2 / 3 / 3;
  align-self: auto;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca041-114c300b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_26a9a09e-1733-035e-464a-3e6d69927d18-114c300b {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb47-114c300b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb49-114c300b {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb5e-114c300b {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ff386ea0-9db0-1f88-583d-cb63c2023038-114c300b {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_61bd519a-a75f-59ac-5baa-402505dccc34-114c300b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db3a2247-8ea9-c007-472c-4211abcb476a-114c300b {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_3bdd6947-766e-dbc6-e7ff-4fe6140b7017-69ea915f, #w-node-_2f9cc00d-3d03-2107-eb6f-7e99b669d2ef-69ea915f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_65b856d9-975f-1922-25a6-248aeda420a4-69ea915f {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-fd9b2c95-e300-eb51-1dc5-b2371a6e0861-69ea915f, #w-node-fe51f08b-a0f2-ceb3-0f03-b9490f383152-69ea915f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca039-69ea915f {
  grid-area: 2 / 2 / 3 / 3;
  align-self: auto;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca041-69ea915f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_26a9a09e-1733-035e-464a-3e6d69927d18-69ea915f {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb47-69ea915f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb49-69ea915f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb5e-69ea915f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ff386ea0-9db0-1f88-583d-cb63c2023038-69ea915f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_61bd519a-a75f-59ac-5baa-402505dccc34-69ea915f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db3a2247-8ea9-c007-472c-4211abcb476a-69ea915f {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_3bdd6947-766e-dbc6-e7ff-4fe6140b7017-3cccdf44, #w-node-_2f9cc00d-3d03-2107-eb6f-7e99b669d2ef-3cccdf44 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_65b856d9-975f-1922-25a6-248aeda420a4-3cccdf44 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-fd9b2c95-e300-eb51-1dc5-b2371a6e0861-3cccdf44, #w-node-fe51f08b-a0f2-ceb3-0f03-b9490f383152-3cccdf44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca039-3cccdf44 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: auto;
}

#w-node-e1948f53-4b34-11d2-adab-b583784ca041-3cccdf44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_26a9a09e-1733-035e-464a-3e6d69927d18-3cccdf44 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb47-3cccdf44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb49-3cccdf44 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_49c6838e-d964-5431-7602-11dd8f79eb5e-3cccdf44 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ff386ea0-9db0-1f88-583d-cb63c2023038-3cccdf44 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_61bd519a-a75f-59ac-5baa-402505dccc34-3cccdf44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db3a2247-8ea9-c007-472c-4211abcb476a-3cccdf44 {
  grid-area: 2 / 1 / 3 / 3;
}

@media screen and (min-width: 1920px) {
  #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb221-96cbb216 {
    justify-self: end;
  }

  #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb230-96cbb216, #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb232-96cbb216, #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb234-96cbb216 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb236-96cbb216 {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb23e-96cbb216 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab3340e-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3341a-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33425-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3342f-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33439-eab333fd {
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33448-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3344a-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3344c-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab3344e-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33450-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33452-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33454-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33456-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_5f403718-5186-c597-6dce-7cd6f8410017-eab333fd, #w-node-_5f403718-5186-c597-6dce-7cd6f8410019-eab333fd, #w-node-_5f403718-5186-c597-6dce-7cd6f841001b-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5f403718-5186-c597-6dce-7cd6f841001d-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_5f403718-5186-c597-6dce-7cd6f841001f-eab333fd, #w-node-_5f403718-5186-c597-6dce-7cd6f8410021-eab333fd, #w-node-_5f403718-5186-c597-6dce-7cd6f8410023-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5f403718-5186-c597-6dce-7cd6f8410025-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_5f403718-5186-c597-6dce-7cd6f8410027-eab333fd, #w-node-_5f403718-5186-c597-6dce-7cd6f8410029-eab333fd, #w-node-_5f403718-5186-c597-6dce-7cd6f841002b-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33462-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33464-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33466-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33468-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab3346a-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3346c-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3346e-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33470-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33472-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33474-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33476-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33478-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab3347a-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3347c-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3347e-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33480-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33482-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33484-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33486-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33488-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab3348a-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3348c-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3348e-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33490-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334f2-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334f4-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334f6-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334f8-eab333fd {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334fa-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d36e0ba4-dc5a-4e46-bc0a-d06abc3e03b9-eab333fd {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334fe-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33500-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33504-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33506-eab333fd, #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a4f-eab333fd, #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a51-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a53-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a55-eab333fd {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a57-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a59-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a5b-eab333fd, #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a5d-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a5f-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a61-eab333fd, #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a63-eab333fd, #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a66-eab333fd, #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a68-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33511-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33513-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33515-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33517-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33519-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab3351b-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab3351d-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3351f-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33521-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33523-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33525-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33527-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3352a-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3352c-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3352f-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33531-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33533-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab3349f-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334a1-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334a3-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334a7-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334a9-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334ab-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334ad-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334af-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334b1-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334b3-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334b5-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334b7-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334b9-eab333fd {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334bb-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334bd-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334bf-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334c4-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334c6-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334c8-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334ca-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334cc-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334ce-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334d0-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334d2-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334d4-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334d6-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334d8-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334da-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334df-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334e1-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334e3-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33542-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33544-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33555-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33557-eab333fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33559-eab333fd {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-a08ad61d-a277-1d2d-235a-2e2ddf5567d0-96cbb2b0, #w-node-a08ad61d-a277-1d2d-235a-2e2ddf5567da-96cbb2b0 {
    justify-self: end;
  }

  #w-node-a08ad61d-a277-1d2d-235a-2e2ddf5567e9-96cbb2b0, #w-node-a08ad61d-a277-1d2d-235a-2e2ddf5567eb-96cbb2b0, #w-node-a08ad61d-a277-1d2d-235a-2e2ddf5567ed-96cbb2b0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a08ad61d-a277-1d2d-235a-2e2ddf5567ef-96cbb2b0 {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-a08ad61d-a277-1d2d-235a-2e2ddf5567fe-96cbb2b0, #w-node-a08ad61d-a277-1d2d-235a-2e2ddf556800-96cbb2b0, #w-node-a08ad61d-a277-1d2d-235a-2e2ddf556802-96cbb2b0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a08ad61d-a277-1d2d-235a-2e2ddf556804-96cbb2b0 {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-a08ad61d-a277-1d2d-235a-2e2ddf556806-96cbb2b0, #w-node-a08ad61d-a277-1d2d-235a-2e2ddf556808-96cbb2b0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a08ad61d-a277-1d2d-235a-2e2ddf55680a-96cbb2b0 {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498de8-96cbb35c {
    justify-self: end;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498df7-96cbb35c, #w-node-fb119664-2e15-8cdd-71a9-78a16c498df9-96cbb35c, #w-node-fb119664-2e15-8cdd-71a9-78a16c498dfb-96cbb35c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498dff-96cbb35c {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498e01-96cbb35c, #w-node-fb119664-2e15-8cdd-71a9-78a16c498e03-96cbb35c, #w-node-fb119664-2e15-8cdd-71a9-78a16c498e05-96cbb35c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498e07-96cbb35c {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498e09-96cbb35c, #w-node-fb119664-2e15-8cdd-71a9-78a16c498e0b-96cbb35c, #w-node-fb119664-2e15-8cdd-71a9-78a16c498e0d-96cbb35c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498e0f-96cbb35c {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498e11-96cbb35c {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498e13-96cbb35c, #w-node-fb119664-2e15-8cdd-71a9-78a16c498e15-96cbb35c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498e17-96cbb35c {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e49ec-96cbb37d {
    justify-self: end;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e49fb-96cbb37d, #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e49fd-96cbb37d, #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e49ff-96cbb37d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a01-96cbb37d {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a06-96cbb37d, #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a08-96cbb37d, #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a0a-96cbb37d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a0c-96cbb37d {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a0e-96cbb37d, #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a10-96cbb37d, #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a12-96cbb37d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a14-96cbb37d {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }

  #w-node-c38d8cd0-6086-323a-9961-981321ddd267-590096a0 {
    justify-self: end;
  }

  #w-node-c38d8cd0-6086-323a-9961-981321ddd319-590096a0, #w-node-c38d8cd0-6086-323a-9961-981321ddd31b-590096a0, #w-node-c38d8cd0-6086-323a-9961-981321ddd31d-590096a0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c38d8cd0-6086-323a-9961-981321ddd31f-590096a0 {
    grid-area: 1 / 4 / 2 / 5;
    justify-self: end;
  }
}

@media screen and (min-width: 1280px) {
  #w-node-bd8d8840-b509-35af-8d42-8986cfe336a4-96cbb37e {
    grid-area: 4 / 2 / 5 / 3;
    align-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d9657caf-9db4-4465-695e-4e9522d202e9-e9d66a09 {
    grid-area: 3 / 2 / 4 / 3;
    place-self: start;
  }

  #w-node-_1820651a-1115-4911-7f74-9beea2c44b0e-e9d66a09 {
    align-self: end;
  }

  #w-node-_80adab52-5a5c-389f-bc84-05c9e9d66a39-e9d66a09 {
    grid-area: 2 / 2 / 3 / 3;
    place-self: start;
  }

  #w-node-_26273e71-7005-aa12-727f-7ef36fb5a19f-e9d66a09 {
    grid-row: 4 / 5;
    place-self: start;
  }

  #w-node-_80adab52-5a5c-389f-bc84-05c9e9d66a43-e9d66a09 {
    grid-area: 1 / 1 / 2 / 3;
    place-self: end start;
  }

  #w-node-_80adab52-5a5c-389f-bc84-05c9e9d66a50-e9d66a09 {
    grid-area: 3 / 1 / 4 / 2;
    place-self: start;
  }

  #w-node-_80adab52-5a5c-389f-bc84-05c9e9d66a5d-e9d66a09 {
    grid-area: 2 / 1 / 3 / 2;
    place-self: start;
  }

  #w-node-_80adab52-5a5c-389f-bc84-05c9e9d66a2f-e9d66a09 {
    grid-area: 2 / 2 / 3 / 3;
    place-self: start;
  }

  #w-node-_80adab52-5a5c-389f-bc84-05c9e9d66a6a-e9d66a09 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb210-96cbb216 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb221-96cbb216 {
    align-self: start;
  }

  #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb234-96cbb216 {
    justify-self: end;
  }

  #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb236-96cbb216 {
    place-self: center end;
  }

  #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb28a-96cbb216 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb28b-96cbb216 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_6a13baeb-d64d-11e5-570f-b666cdcbb2a8-96cbb216 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f3a2-96cbb219 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f3ad-96cbb219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3d499de3-21eb-6b5c-8911-7df5cf69f3f1-96cbb219 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_89268863-2679-5862-0caa-5df02fd96596-2fd96593 {
    grid-area: 1 / 2 / 2 / 3;
    place-self: start end;
  }

  #w-node-_89268863-2679-5862-0caa-5df02fd96599-2fd96593 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_89268863-2679-5862-0caa-5df02fd965a2-2fd96593 {
    grid-area: 2 / 1 / 3 / 2;
    place-self: start;
  }

  #w-node-_89268863-2679-5862-0caa-5df02fd965af-2fd96593 {
    grid-area: 4 / 1 / 5 / 2;
    place-self: center start;
  }

  #w-node-_4031b15e-26b3-8eaa-2d78-1369accc604a-2fd96593 {
    grid-area: 3 / 1 / 4 / 2;
    place-self: auto start;
  }

  #w-node-_734df0b3-121e-f622-3515-a9aa89b1a942-96cbb250 {
    grid-area: 4 / 1 / 5 / 2;
    align-self: auto;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab3340e-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3341a-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33425-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3342f-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33439-eab333fd {
    align-self: start;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab3344a-eab333fd {
    justify-self: start;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab3344c-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3344e-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33454-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33456-eab333fd {
    justify-self: end;
  }

  #w-node-_5f403718-5186-c597-6dce-7cd6f8410019-eab333fd {
    justify-self: start;
  }

  #w-node-_5f403718-5186-c597-6dce-7cd6f841001b-eab333fd, #w-node-_5f403718-5186-c597-6dce-7cd6f841001d-eab333fd, #w-node-_5f403718-5186-c597-6dce-7cd6f8410023-eab333fd, #w-node-_5f403718-5186-c597-6dce-7cd6f8410025-eab333fd {
    justify-self: end;
  }

  #w-node-_5f403718-5186-c597-6dce-7cd6f8410029-eab333fd {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_5f403718-5186-c597-6dce-7cd6f841002b-eab333fd {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33466-eab333fd {
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33468-eab333fd {
    place-self: center end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab3346e-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33470-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33476-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33478-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3347e-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33480-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33486-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33488-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3348e-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33490-eab333fd {
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334f4-eab333fd {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334f6-eab333fd {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334f8-eab333fd {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334fa-eab333fd {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
  }

  #w-node-d36e0ba4-dc5a-4e46-bc0a-d06abc3e03b9-eab333fd {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33500-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33506-eab333fd, #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a51-eab333fd {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
  }

  #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a53-eab333fd {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }

  #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a55-eab333fd {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a57-eab333fd {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
  }

  #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a59-eab333fd {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }

  #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a5d-eab333fd {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
  }

  #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a5f-eab333fd {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }

  #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a63-eab333fd, #w-node-accab424-3923-3eaf-74dc-0c1ee4fc9a68-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33513-eab333fd {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33515-eab333fd {
    grid-area: 2 / 2 / 3 / 3;
    place-self: center end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33517-eab333fd {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33519-eab333fd {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab3351b-eab333fd {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33521-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33523-eab333fd {
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33527-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab3352c-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab33531-eab333fd {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33533-eab333fd {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334a3-eab333fd {
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334a7-eab333fd {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334ad-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334af-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334b5-eab333fd {
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334b7-eab333fd {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334bd-eab333fd {
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334bf-eab333fd {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334c8-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334ca-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334d0-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334d2-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334d8-eab333fd, #w-node-_099777fb-9c03-b6e0-bd62-455ceab334da-eab333fd {
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334e1-eab333fd {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab334e3-eab333fd {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33544-eab333fd {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33546-eab333fd {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33557-eab333fd {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
  }

  #w-node-_099777fb-9c03-b6e0-bd62-455ceab33559-eab333fd {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }

  #City.w-node-_01bc94a3-3d87-36f0-0759-6176f4310e2d-96cbb2a2 {
    align-self: center;
  }

  #w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e9079-96cbb2af {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_3e0a11b6-9f4f-81ee-a224-cf3e338e90ca-96cbb2af {
    grid-column-end: 2;
  }

  #w-node-a08ad61d-a277-1d2d-235a-2e2ddf5567ed-96cbb2b0 {
    justify-self: end;
  }

  #w-node-a08ad61d-a277-1d2d-235a-2e2ddf5567ef-96cbb2b0 {
    place-self: center end;
  }

  #w-node-a08ad61d-a277-1d2d-235a-2e2ddf556802-96cbb2b0, #w-node-a08ad61d-a277-1d2d-235a-2e2ddf556804-96cbb2b0, #w-node-a08ad61d-a277-1d2d-235a-2e2ddf55680a-96cbb2b0 {
    justify-self: end;
  }

  #w-node-a08ad61d-a277-1d2d-235a-2e2ddf55681c-96cbb2b0, #w-node-a08ad61d-a277-1d2d-235a-2e2ddf556861-96cbb2b0, #w-node-a08ad61d-a277-1d2d-235a-2e2ddf556890-96cbb2b0 {
    grid-column-end: 2;
  }

  #w-node-_669e22ad-d698-7211-058d-c0a2ee69b683-96cbb2ff {
    grid-area: 3 / 1 / 4 / 2;
    align-self: auto;
  }

  #w-node-_669e22ad-d698-7211-058d-c0a2ee69b6cb-96cbb2ff {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_669e22ad-d698-7211-058d-c0a2ee69b6fe-96cbb2ff {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498dd6-96cbb35c {
    grid-column-end: 2;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498de8-96cbb35c {
    align-self: start;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498dfb-96cbb35c {
    justify-self: end;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498dff-96cbb35c {
    grid-area: 2 / 2 / 3 / 3;
    place-self: center end;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498e05-96cbb35c {
    justify-self: end;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498e07-96cbb35c {
    place-self: center end;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498e0d-96cbb35c {
    justify-self: end;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498e0f-96cbb35c {
    grid-area: 2 / 2 / 3 / 3;
    place-self: center end;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498e15-96cbb35c {
    justify-self: end;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498e17-96cbb35c {
    grid-area: 2 / 2 / 3 / 3;
    place-self: center end;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498e84-96cbb35c {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-fb119664-2e15-8cdd-71a9-78a16c498e86-96cbb35c {
    grid-column-end: 2;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e49db-96cbb37d {
    grid-area: 3 / 1 / 4 / 2;
    align-self: auto;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e49dc-96cbb37d {
    grid-column-end: 2;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e49dd-96cbb37d {
    grid-row: 4 / 5;
    grid-column-end: 2;
    align-self: auto;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e49ec-96cbb37d {
    align-self: start;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e49ff-96cbb37d {
    justify-self: end;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a01-96cbb37d {
    place-self: center end;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a0a-96cbb37d {
    justify-self: end;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a0c-96cbb37d {
    place-self: center end;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a12-96cbb37d {
    justify-self: end;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a14-96cbb37d {
    place-self: center end;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a5c-96cbb37d {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_10c46f8c-e38e-0a0e-32bd-3a98683e4a5d-96cbb37d {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_83b50718-7869-01cd-73e9-01d6b489852b-96cbb37f, #w-node-_83b50718-7869-01cd-73e9-01d6b4898572-96cbb37f {
    grid-column-end: 2;
  }

  #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e312d-f29e3122 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e312f-f29e3122 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e3131-f29e3122 {
    grid-area: 2 / 2 / 3 / 3;
    align-self: auto;
  }

  #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e3133-f29e3122 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e3135-f29e3122 {
    grid-area: 5 / 2 / 7 / 3;
  }

  #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e3139-f29e3122 {
    grid-area: 4 / 1 / 5 / 2;
    align-self: auto;
  }

  #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e3137-f29e3122 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-e8012d91-42df-da2a-8fca-db1c47be51f6-f29e3122 {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-_33899824-3fe7-c972-fbb1-51a0a2ef9bf0-f29e3122 {
    grid-area: 7 / 1 / 8 / 2;
  }

  #w-node-_72ac25aa-e954-bc22-081e-3eae6ad6d7f5-f29e3122 {
    grid-area: 3 / 2 / 5 / 3;
  }

  #w-node-_32f42c14-5ef3-2d32-4cc9-fbebf29e3143-f29e3122 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-c38d8cd0-6086-323a-9961-981321ddd267-590096a0 {
    align-self: start;
  }

  #w-node-c38d8cd0-6086-323a-9961-981321ddd31d-590096a0 {
    justify-self: end;
  }

  #w-node-c38d8cd0-6086-323a-9961-981321ddd31f-590096a0 {
    place-self: center end;
  }

  #w-node-_65b856d9-975f-1922-25a6-248aeda420a4-19b2a5e8, #w-node-_26a9a09e-1733-035e-464a-3e6d69927d18-19b2a5e8 {
    grid-column-end: 2;
  }

  #w-node-_3fd88cc6-c4f7-3f36-361b-ad47a386264a-19b2a5e8, #w-node-_82232129-b35a-c6a4-eae1-03dc7e16bddc-19b2a5e8, #w-node-e1948f53-4b34-11d2-adab-b583784ca039-19b2a5e8 {
    grid-column: 1 / 2;
  }

  #w-node-_2ea93efd-9fac-dc9d-9f0c-7ab5deedf2ac-19b2a5e8 {
    grid-column-end: 2;
  }

  #w-node-_118206c9-555d-32df-f395-42c35c4522a0-4f76dff0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0f522070-c058-6e24-6612-84ad64c42fe9-4f76dff0 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_4d958946-4d1f-bfc2-9c14-66a3328ede84-4f76dff0 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-f3473f47-25f1-a793-00f7-1258dd3eb5f0-213f9032 {
    grid-row: 3 / 4;
    grid-column-end: 2;
  }

  #w-node-e2aea4e2-f48b-3c78-a3d1-4eb0205b24fb-213f9032 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-bdb31af1-3de6-3b31-ca2c-5199d519fd16-213f9032, #w-node-bdb31af1-3de6-3b31-ca2c-5199d519fd17-213f9032 {
    grid-column-end: 2;
  }

  #w-node-e68c85af-76f5-a9e8-b97e-4e54a12f5d3c-91459f35, #w-node-_37cc0b59-7135-d8a8-0440-b16478cbf95c-91459f35, #w-node-b5cdf2a1-edff-078b-6e2b-3fc2d9baf3f1-91459f35, #w-node-_27ac385e-4ef2-af42-1332-d58a2cc16575-91459f35, #w-node-_87f77ec7-90aa-f90f-6ab0-42109d2b3968-91459f35, #w-node-_69eea020-4964-091a-d672-4cda9f399f49-91459f35, #w-node-_6928d19b-1386-8c4e-6a6c-27dd4a2aeb5c-91459f35, #w-node-_2e89b5ce-2761-5870-f4d3-f871da321007-91459f35, #w-node-_21f0ab65-69b0-32aa-03b1-f9b554377859-995fc60f, #w-node-_21f0ab65-69b0-32aa-03b1-f9b554377866-995fc60f, #w-node-_21f0ab65-69b0-32aa-03b1-f9b554377859-3e0d6349 {
    grid-column: 1 / 2;
  }

  #w-node-_59c47641-1141-52b0-9cc0-eef16b083ed4-3a0dee09 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-c1216759-249a-85bf-a144-a798cfb17703-3a0dee09 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_93ed1b25-b39e-5d94-fccc-56d40e16fcda-3a0dee09 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_1b874137-66d9-51c1-6248-43f7135fae27-49493261 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_83b50718-7869-01cd-73e9-01d6b489852b-f8b02dbd, #w-node-_83b50718-7869-01cd-73e9-01d6b4898572-f8b02dbd {
    grid-column-end: 2;
  }

  #w-node-_11e92c99-a1dc-d399-be83-43f5a61cc9b8-2e1b9a0e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_65b856d9-975f-1922-25a6-248aeda420a4-57950a72 {
    grid-column-end: 2;
  }

  #w-node-e1948f53-4b34-11d2-adab-b583784ca039-57950a72 {
    grid-column: 1 / 2;
  }

  #w-node-_26a9a09e-1733-035e-464a-3e6d69927d18-57950a72, #w-node-_65b856d9-975f-1922-25a6-248aeda420a4-c9262caa {
    grid-column-end: 2;
  }

  #w-node-e1948f53-4b34-11d2-adab-b583784ca039-c9262caa {
    grid-column: 1 / 2;
  }

  #w-node-_26a9a09e-1733-035e-464a-3e6d69927d18-c9262caa, #w-node-_65b856d9-975f-1922-25a6-248aeda420a4-dad74b93 {
    grid-column-end: 2;
  }

  #w-node-e1948f53-4b34-11d2-adab-b583784ca039-dad74b93 {
    grid-column: 1 / 2;
  }

  #w-node-_26a9a09e-1733-035e-464a-3e6d69927d18-dad74b93, #w-node-_65b856d9-975f-1922-25a6-248aeda420a4-114c300b {
    grid-column-end: 2;
  }

  #w-node-e1948f53-4b34-11d2-adab-b583784ca039-114c300b {
    grid-column: 1 / 2;
  }

  #w-node-_26a9a09e-1733-035e-464a-3e6d69927d18-114c300b, #w-node-_65b856d9-975f-1922-25a6-248aeda420a4-69ea915f {
    grid-column-end: 2;
  }

  #w-node-e1948f53-4b34-11d2-adab-b583784ca039-69ea915f {
    grid-column: 1 / 2;
  }

  #w-node-_26a9a09e-1733-035e-464a-3e6d69927d18-69ea915f, #w-node-_65b856d9-975f-1922-25a6-248aeda420a4-3cccdf44 {
    grid-column-end: 2;
  }

  #w-node-e1948f53-4b34-11d2-adab-b583784ca039-3cccdf44 {
    grid-column: 1 / 2;
  }

  #w-node-_26a9a09e-1733-035e-464a-3e6d69927d18-3cccdf44 {
    grid-column-end: 2;
  }
}


@font-face {
  font-family: 'Ppneuemontrealmono';
  src: url('../fonts/PPNeueMontrealMono-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}